zammad.pot 383 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257122581225912260
  1. msgid ""
  2. msgstr ""
  3. "Project-Id-Version: zammad\n"
  4. "POT-Creation-Date: \n"
  5. "PO-Revision-Date: \n"
  6. "Last-Translator: \n"
  7. "Language-Team: \n"
  8. "Language: en_US\n"
  9. "MIME-Version: 1.0\n"
  10. "Content-Type: text/plain; charset=UTF-8\n"
  11. "Content-Transfer-Encoding: 8bit\n"
  12. #. Default date format to use for the current locale.
  13. #. These placeholders are supported:
  14. #. - 'dd' - 2-digit day
  15. #. - 'd' - day
  16. #. - 'mm' - 2-digit month
  17. #. - 'm' - month
  18. #. - 'yyyy' - year
  19. #. - 'yy' - last 2 digits of year
  20. #. - 'SS' - 2-digit second
  21. #. - 'MM' - 2-digit minute
  22. #. - 'HH' - 2-digit hour (24h)
  23. #. - 'l' - hour (12h)
  24. #. - 'P' - Meridian indicator ('am' or 'pm')
  25. msgid "FORMAT_DATE"
  26. msgstr "mm/dd/yyyy"
  27. #. Default date/time format to use for the current locale.
  28. #. These placeholders are supported:
  29. #. - 'dd' - 2-digit day
  30. #. - 'd' - day
  31. #. - 'mm' - 2-digit month
  32. #. - 'm' - month
  33. #. - 'yyyy' - year
  34. #. - 'yy' - last 2 digits of year
  35. #. - 'SS' - 2-digit second
  36. #. - 'MM' - 2-digit minute
  37. #. - 'HH' - 2-digit hour (24h)
  38. #. - 'l' - hour (12h)
  39. #. - 'P' - Meridian indicator ('am' or 'pm')
  40. msgid "FORMAT_DATETIME"
  41. msgstr "mm/dd/yyyy l:MM P"
  42. #: app/frontend/shared/components/Form/fields/FieldDate/FieldDateTimeInput.vue
  43. msgid " to "
  44. msgstr ""
  45. #: db/seeds/settings.rb
  46. msgid "\"Database\" stores all attachments in the database (not recommended for storing large amounts of data). \"Filesystem\" stores the data in the filesystem. You can switch between the modules even on a system that is already in production without any loss of data."
  47. msgstr ""
  48. #: app/assets/javascripts/app/views/telegram/bot_add.jst.eco
  49. #: app/assets/javascripts/app/views/telegram/bot_edit.jst.eco
  50. msgid "%s API Token"
  51. msgstr ""
  52. #: app/assets/javascripts/app/views/integration/exchange_wizard.jst.eco
  53. #: app/assets/javascripts/app/views/integration/ldap_wizard.jst.eco
  54. msgid "%s Attribute"
  55. msgstr ""
  56. #: app/assets/javascripts/app/views/integration/ldap_wizard.jst.eco
  57. msgid "%s Group"
  58. msgstr ""
  59. #: app/assets/javascripts/app/views/import/freshdesk.jst.eco
  60. #: app/assets/javascripts/app/views/import/kayako.jst.eco
  61. #: app/assets/javascripts/app/views/import/otrs.jst.eco
  62. #: app/assets/javascripts/app/views/import/zendesk.jst.eco
  63. msgid "%s Migration"
  64. msgstr ""
  65. #: app/assets/javascripts/app/views/integration/ldap_wizard.jst.eco
  66. msgid "%s Role"
  67. msgstr ""
  68. #: app/assets/javascripts/app/views/import/freshdesk.jst.eco
  69. #: app/assets/javascripts/app/views/import/kayako.jst.eco
  70. #: app/assets/javascripts/app/views/import/zendesk.jst.eco
  71. msgid "%s URL"
  72. msgstr ""
  73. #: app/assets/javascripts/app/lib/app_post/pretty_date.coffee
  74. msgid "%s ago"
  75. msgstr ""
  76. #: app/assets/javascripts/app/models/data_privacy_task.coffee
  77. msgid "%s completed data privacy task to delete user ID |%s|"
  78. msgstr ""
  79. #: app/assets/javascripts/app/models/ticket_article.coffee
  80. msgid "%s created article for |%s|"
  81. msgstr ""
  82. #: app/assets/javascripts/app/models/data_privacy_task.coffee
  83. msgid "%s created data privacy task to delete user ID |%s|"
  84. msgstr ""
  85. #: app/assets/javascripts/app/models/group.coffee
  86. msgid "%s created group |%s|"
  87. msgstr ""
  88. #: app/assets/javascripts/app/models/organization.coffee
  89. msgid "%s created organization |%s|"
  90. msgstr ""
  91. #: app/assets/javascripts/app/models/role.coffee
  92. msgid "%s created role |%s|"
  93. msgstr ""
  94. #: app/assets/javascripts/app/models/ticket.coffee
  95. msgid "%s created ticket |%s|"
  96. msgstr ""
  97. #: app/assets/javascripts/app/models/user.coffee
  98. msgid "%s created user |%s|"
  99. msgstr ""
  100. #: app/assets/javascripts/app/views/import/freshdesk.jst.eco
  101. #: app/assets/javascripts/app/views/import/kayako.jst.eco
  102. #: app/assets/javascripts/app/views/import/zendesk.jst.eco
  103. msgid "%s credentials"
  104. msgstr ""
  105. #: app/frontend/shared/i18n/dates.ts
  106. msgid "%s days ago"
  107. msgstr ""
  108. #: app/assets/javascripts/app/models/user.coffee
  109. msgid "%s ended switch to |%s|!"
  110. msgstr ""
  111. #: app/assets/javascripts/app/views/integration/exchange_last_import.jst.eco
  112. #: app/assets/javascripts/app/views/integration/exchange_summary.jst.eco
  113. msgid "%s folders"
  114. msgstr ""
  115. #: app/assets/javascripts/app/views/integration/ldap_last_import.jst.eco
  116. #: app/assets/javascripts/app/views/integration/ldap_summary.jst.eco
  117. msgid "%s groups to %s roles assignments"
  118. msgstr ""
  119. #: app/frontend/shared/i18n/dates.ts
  120. msgid "%s hours ago"
  121. msgstr ""
  122. #: app/assets/javascripts/app/views/channel/email_account_overview.jst.eco
  123. #: app/assets/javascripts/app/views/channel/sms_account_overview.jst.eco
  124. #: app/assets/javascripts/app/views/google/list.jst.eco
  125. #: app/assets/javascripts/app/views/microsoft365/list.jst.eco
  126. msgid "%s is inactive, please select an active one."
  127. msgstr ""
  128. #: app/frontend/shared/i18n/dates.ts
  129. msgid "%s minutes ago"
  130. msgstr ""
  131. #: app/frontend/shared/i18n/dates.ts
  132. msgid "%s months ago"
  133. msgstr ""
  134. #: app/assets/javascripts/app/views/generic/object_import/imported.jst.eco
  135. msgid "%s object(s) have been created."
  136. msgstr ""
  137. #: app/assets/javascripts/app/views/generic/object_import/imported.jst.eco
  138. msgid "%s object(s) have been updated."
  139. msgstr ""
  140. #: app/assets/javascripts/app/views/generic/object_import/imported.jst.eco
  141. msgid "%s object(s) were deleted."
  142. msgstr ""
  143. #: app/assets/javascripts/app/views/generic/object_import/import_try.jst.eco
  144. msgid "%s object(s) will be created."
  145. msgstr ""
  146. #: app/assets/javascripts/app/views/generic/object_import/import_try.jst.eco
  147. msgid "%s object(s) will be deleted."
  148. msgstr ""
  149. #: app/assets/javascripts/app/views/generic/object_import/import_try.jst.eco
  150. msgid "%s object(s) will be updated."
  151. msgstr ""
  152. #: app/assets/javascripts/app/views/dashboard/stats/ticket_in_process.jst.eco
  153. msgid "%s of my tickets are currently in process."
  154. msgstr ""
  155. #: app/assets/javascripts/app/views/dashboard/stats/ticket_escalation.jst.eco
  156. msgid "%s of my tickets escalated."
  157. msgstr ""
  158. #: app/assets/javascripts/app/views/ticket_overview/batch_overlay_user_group.jst.eco
  159. msgid "%s people"
  160. msgstr ""
  161. #: app/assets/javascripts/app/views/channel/email_account_overview.jst.eco
  162. msgid "%s recommends using OAuth. %s announced it's going to drop Basic Authentication support in the future."
  163. msgstr ""
  164. #: app/assets/javascripts/app/controllers/agent_ticket_merge.coffee
  165. msgid "%s required!"
  166. msgstr ""
  167. #: app/assets/javascripts/app/models/user.coffee
  168. msgid "%s started a new session"
  169. msgstr ""
  170. #: app/assets/javascripts/app/views/import/freshdesk.jst.eco
  171. #: app/assets/javascripts/app/views/import/kayako.jst.eco
  172. msgid "%s subdomain"
  173. msgstr ""
  174. #: app/assets/javascripts/app/models/user.coffee
  175. msgid "%s switched to |%s|!"
  176. msgstr ""
  177. #: app/frontend/apps/mobile/components/Organization/OrganizationItem.vue
  178. #: app/frontend/apps/mobile/components/User/UserItem.vue
  179. msgid "%s tickets"
  180. msgstr ""
  181. #: app/assets/javascripts/app/models/ticket_article.coffee
  182. msgid "%s updated article for |%s|"
  183. msgstr ""
  184. #: app/assets/javascripts/app/models/data_privacy_task.coffee
  185. msgid "%s updated data privacy task to delete user ID |%s|"
  186. msgstr ""
  187. #: app/assets/javascripts/app/models/group.coffee
  188. msgid "%s updated group |%s|"
  189. msgstr ""
  190. #: app/assets/javascripts/app/models/organization.coffee
  191. msgid "%s updated organization |%s|"
  192. msgstr ""
  193. #: app/assets/javascripts/app/models/role.coffee
  194. msgid "%s updated role |%s|"
  195. msgstr ""
  196. #: app/assets/javascripts/app/models/ticket.coffee
  197. msgid "%s updated ticket |%s|"
  198. msgstr ""
  199. #: app/assets/javascripts/app/models/user.coffee
  200. msgid "%s updated user |%s|"
  201. msgstr ""
  202. #: app/assets/javascripts/app/views/integration/exchange_last_import.jst.eco
  203. #: app/assets/javascripts/app/views/integration/exchange_summary.jst.eco
  204. #: app/assets/javascripts/app/views/integration/ldap_last_import.jst.eco
  205. #: app/assets/javascripts/app/views/integration/ldap_summary.jst.eco
  206. msgid "%s user to %s user"
  207. msgstr ""
  208. #: app/frontend/shared/i18n/dates.ts
  209. msgid "%s weeks ago"
  210. msgstr ""
  211. #: app/frontend/shared/i18n/dates.ts
  212. msgid "%s years ago"
  213. msgstr ""
  214. #: app/assets/javascripts/app/views/dashboard/stats/ticket_in_process.jst.eco
  215. msgid "%s% are currently in process"
  216. msgstr ""
  217. #: app/assets/javascripts/app/views/dashboard/stats/ticket_reopen.jst.eco
  218. msgid "%s% have been reopened"
  219. msgstr ""
  220. #: app/assets/javascripts/app/models/data_privacy_task.coffee
  221. msgid "** Data Privacy ** helps you to delete and verify the removal of existing data from the system.\n\nIt can be used to delete tickets, organizations, and users. The owner assignment will be unset in case the deleted user is an agent.\n\nData Privacy tasks will be executed every 10 minutes. The execution might take some additional time depending on the number of objects that will be deleted."
  222. msgstr ""
  223. #: app/assets/javascripts/app/models/sla.coffee
  224. msgid "** Service Level Agreements **, abbreviated ** SLAs **, help you to meet specific response times for your customers' requests. This way you can define goals such as answering every inquiry within eight hours. If you are at risk of missing this target, Zammad will alert you.\n\nYou can define targets for three different metrics: ** response time ** (time between the creation of a ticket and the first reaction of an agent), ** update time ** (time between a customer's request and an agent's reaction), and ** solution time ** (time between creating and closing a ticket).\n\nAny escalated tickets (i.e. tickets that have missed the defined target) are displayed in a separate view in your overviews. You can also configure ** email notifications **."
  225. msgstr ""
  226. #: db/seeds/settings.rb
  227. msgid "1 day"
  228. msgstr ""
  229. #: app/frontend/shared/i18n/dates.ts
  230. msgid "1 day ago"
  231. msgstr ""
  232. #: db/seeds/settings.rb
  233. msgid "1 hour"
  234. msgstr ""
  235. #: app/frontend/shared/i18n/dates.ts
  236. msgid "1 hour ago"
  237. msgstr ""
  238. #: db/seeds/ticket_priorities.rb
  239. msgid "1 low"
  240. msgstr ""
  241. #: app/frontend/shared/i18n/dates.ts
  242. msgid "1 minute ago"
  243. msgstr ""
  244. #: app/frontend/shared/i18n/dates.ts
  245. msgid "1 month ago"
  246. msgstr ""
  247. #: db/seeds/settings.rb
  248. msgid "1 week"
  249. msgstr ""
  250. #: app/frontend/shared/i18n/dates.ts
  251. msgid "1 week ago"
  252. msgstr ""
  253. #: app/frontend/shared/i18n/dates.ts
  254. msgid "1 year ago"
  255. msgstr ""
  256. #: db/seeds/settings.rb
  257. msgid "2 hours"
  258. msgstr ""
  259. #: db/seeds/settings.rb
  260. msgid "2 lower case and 2 upper case characters"
  261. msgstr ""
  262. #: db/seeds/ticket_priorities.rb
  263. msgid "2 normal"
  264. msgstr ""
  265. #: db/seeds/settings.rb
  266. msgid "2 weeks"
  267. msgstr ""
  268. #: db/seeds/ticket_priorities.rb
  269. msgid "3 high"
  270. msgstr ""
  271. #: db/seeds/settings.rb
  272. msgid "3 weeks"
  273. msgstr ""
  274. #: db/seeds/settings.rb
  275. msgid "4 weeks"
  276. msgstr ""
  277. #: app/assets/javascripts/app/models/calendar.coffee
  278. msgid "A **calendar** is needed to calculate escalations based on business hours and to send out escalation notifications.\n\nDefine a **\"standard\"** calendar which is valid system-wide. The escalation notifications will only be sent to your agents during the defined business hours.\n\nIf you have customers with different business hours, you can create multiple calendars. Tickets are linked to calendars using **SLAs**."
  279. msgstr ""
  280. #: app/controllers/getting_started_controller.rb
  281. msgid "A URL looks like this: https://zammad.example.com"
  282. msgstr ""
  283. #: db/seeds/settings.rb
  284. msgid "A list of active import backends that gets scheduled automatically."
  285. msgstr ""
  286. #: app/assets/javascripts/app/controllers/_plugin/session_taken_over.coffee
  287. msgid "A new session was created with your account. This session will be stopped to prevent a conflict."
  288. msgstr ""
  289. #: app/assets/javascripts/app/controllers/_plugin/maintenance.coffee
  290. msgid "A new version of Zammad is available, please reload your browser."
  291. msgstr ""
  292. #: app/frontend/shared/composables/useAppMaintenanceCheck.ts
  293. msgid "A newer version of the app is available. Please reload at your earliest."
  294. msgstr ""
  295. #: app/assets/javascripts/app/controllers/_integration/clearbit.coffee
  296. msgid "A powerful service to get more information about your customers."
  297. msgstr ""
  298. #: app/assets/javascripts/app/controllers/_integration/cti.coffee
  299. msgid "A queue is required!"
  300. msgstr ""
  301. #: app/assets/javascripts/app/controllers/_integration/slack.coffee
  302. msgid "A team communication tool for the 21st century. Compatible with tools like %s."
  303. msgstr ""
  304. #: app/assets/javascripts/app/views/dashboard/first_steps_test_ticket_finish.jst.eco
  305. msgid "A test ticket has been created, you can find it in your overview \"%s\" %l."
  306. msgstr ""
  307. #: app/assets/javascripts/app/controllers/_integration/cti.coffee
  308. msgid "A user is required!"
  309. msgstr ""
  310. #: app/assets/javascripts/app/controllers/api.coffee
  311. #: app/assets/javascripts/app/views/api.jst.eco
  312. #: db/seeds/permissions.rb
  313. msgid "API"
  314. msgstr ""
  315. #: app/assets/javascripts/app/controllers/_integration/clearbit.coffee
  316. msgid "API Key"
  317. msgstr ""
  318. #: db/seeds/settings.rb
  319. msgid "API Password Access"
  320. msgstr ""
  321. #: app/assets/javascripts/app/views/integration/placetel.jst.eco
  322. msgid "API Token"
  323. msgstr ""
  324. #: db/seeds/settings.rb
  325. msgid "API Token Access"
  326. msgstr ""
  327. #: app/assets/javascripts/app/views/import/freshdesk.jst.eco
  328. #: app/assets/javascripts/app/views/import/zendesk.jst.eco
  329. #: app/assets/javascripts/app/views/integration/github.jst.eco
  330. #: app/assets/javascripts/app/views/integration/gitlab.jst.eco
  331. #: app/assets/javascripts/app/views/integration/idoit.jst.eco
  332. msgid "API token"
  333. msgstr ""
  334. #: app/frontend/apps/mobile/modules/account/views/AccountOverview.vue
  335. msgid "About"
  336. msgstr ""
  337. #: db/seeds/permissions.rb
  338. msgid "Access to %s"
  339. msgstr ""
  340. #: db/seeds/permissions.rb
  341. msgid "Access to Agent Tickets based on Group Access"
  342. msgstr ""
  343. #: db/seeds/permissions.rb
  344. msgid "Access to Customer Tickets based on current_user and organization"
  345. msgstr ""
  346. #: app/assets/javascripts/app/views/channel/sms_account_overview.jst.eco
  347. #: app/frontend/apps/mobile/modules/account/routes.ts
  348. #: app/frontend/apps/mobile/modules/account/views/AccountAvatar.vue
  349. msgid "Account"
  350. msgstr ""
  351. #: app/models/channel/driver/sms/twilio.rb
  352. msgid "Account SID"
  353. msgstr ""
  354. #: app/assets/javascripts/app/controllers/ticket_zoom/time_accounting.coffee
  355. msgid "Account Time"
  356. msgstr ""
  357. #: app/assets/javascripts/app/controllers/_channel/email.coffee
  358. #: app/assets/javascripts/app/controllers/getting_started/channel_email.coffee
  359. #: app/controllers/channels_email_controller.rb
  360. msgid "Account already exists!"
  361. msgstr ""
  362. #: app/assets/javascripts/app/controllers/_plugin/user_signup_check.coffee
  363. msgid "Account not verified"
  364. msgstr ""
  365. #: app/assets/javascripts/app/models/ticket.coffee
  366. #: app/assets/javascripts/app/views/ticket_zoom/time_unit.jst.eco
  367. #: app/assets/javascripts/app/views/time_accounting/index.jst.eco
  368. msgid "Accounted Time"
  369. msgstr ""
  370. #: app/assets/javascripts/app/controllers/_channel/email.coffee
  371. #: app/assets/javascripts/app/controllers/_channel/google.coffee
  372. #: app/assets/javascripts/app/controllers/_channel/microsoft365.coffee
  373. #: app/assets/javascripts/app/controllers/_channel/sms.coffee
  374. #: app/assets/javascripts/app/views/facebook/index.jst.eco
  375. #: app/assets/javascripts/app/views/facebook/list.jst.eco
  376. #: app/assets/javascripts/app/views/google/index.jst.eco
  377. #: app/assets/javascripts/app/views/google/list.jst.eco
  378. #: app/assets/javascripts/app/views/microsoft365/index.jst.eco
  379. #: app/assets/javascripts/app/views/microsoft365/list.jst.eco
  380. #: app/assets/javascripts/app/views/twitter/index.jst.eco
  381. #: app/assets/javascripts/app/views/twitter/list.jst.eco
  382. msgid "Accounts"
  383. msgstr ""
  384. #: app/assets/javascripts/app/controllers/_application_controller/table.coffee
  385. #: app/assets/javascripts/app/controllers/_ui_element/_application_selector.coffee
  386. #: app/assets/javascripts/app/controllers/_ui_element/ticket_perform_action.coffee
  387. #: app/assets/javascripts/app/models/core_workflow.coffee
  388. #: app/assets/javascripts/app/views/api.jst.eco
  389. #: app/assets/javascripts/app/views/calendar/holiday_selector.jst.eco
  390. #: app/assets/javascripts/app/views/generic/actions.jst.eco
  391. #: app/assets/javascripts/app/views/integration/clearbit.jst.eco
  392. #: app/assets/javascripts/app/views/integration/cti.jst.eco
  393. #: app/assets/javascripts/app/views/integration/exchange_wizard.jst.eco
  394. #: app/assets/javascripts/app/views/integration/ldap_wizard.jst.eco
  395. #: app/assets/javascripts/app/views/integration/placetel.jst.eco
  396. #: app/assets/javascripts/app/views/integration/sipgate.jst.eco
  397. #: app/assets/javascripts/app/views/object_manager/attribute/multi_tree_select.jst.eco
  398. #: app/assets/javascripts/app/views/object_manager/attribute/multiselect.jst.eco
  399. #: app/assets/javascripts/app/views/object_manager/attribute/select.jst.eco
  400. #: app/assets/javascripts/app/views/object_manager/attribute/tree_select.jst.eco
  401. #: app/assets/javascripts/app/views/object_manager/index.jst.eco
  402. #: app/assets/javascripts/app/views/package.jst.eco
  403. #: app/assets/javascripts/app/views/session.jst.eco
  404. #: app/assets/javascripts/app/views/tag/table.jst.eco
  405. #: app/assets/javascripts/app/views/translation/list.jst.eco
  406. #: app/assets/javascripts/app/views/translation/todo.jst.eco
  407. #: app/assets/javascripts/app/views/twitter/account_edit.jst.eco
  408. msgid "Action"
  409. msgstr ""
  410. #: app/assets/javascripts/app/models/macro.coffee
  411. #: app/assets/javascripts/app/views/integration/smime_list.jst.eco
  412. msgid "Actions"
  413. msgstr ""
  414. #: db/seeds/settings.rb
  415. msgid "Activate the recursive processing of ticket triggers."
  416. msgstr ""
  417. #: db/seeds/settings.rb
  418. msgid "Activates lost password feature for users."
  419. msgstr ""
  420. #: app/assets/javascripts/app/controllers/_integration/ldap.coffee
  421. #: app/assets/javascripts/app/models/chat.coffee
  422. #: app/assets/javascripts/app/models/core_workflow.coffee
  423. #: app/assets/javascripts/app/models/email_address.coffee
  424. #: app/assets/javascripts/app/models/group.coffee
  425. #: app/assets/javascripts/app/models/job.coffee
  426. #: app/assets/javascripts/app/models/ldap_source.coffee
  427. #: app/assets/javascripts/app/models/macro.coffee
  428. #: app/assets/javascripts/app/models/object_manager_attribute.coffee
  429. #: app/assets/javascripts/app/models/overview.coffee
  430. #: app/assets/javascripts/app/models/postmaster_filter.coffee
  431. #: app/assets/javascripts/app/models/report_profile.js.coffee
  432. #: app/assets/javascripts/app/models/role.coffee
  433. #: app/assets/javascripts/app/models/signature.coffee
  434. #: app/assets/javascripts/app/models/text_module.coffee
  435. #: app/assets/javascripts/app/models/ticket_priority.coffee
  436. #: app/assets/javascripts/app/models/ticket_state.coffee
  437. #: app/assets/javascripts/app/models/trigger.coffee
  438. #: app/assets/javascripts/app/models/webhook.coffee
  439. #: app/assets/javascripts/app/views/calendar/holiday_selector.jst.eco
  440. #: app/assets/javascripts/app/views/generic/sla_times.jst.eco
  441. #: app/assets/javascripts/app/views/integration/ldap_wizard.jst.eco
  442. #: db/seeds/object_manager_attributes.rb
  443. msgid "Active"
  444. msgstr ""
  445. #: app/assets/javascripts/app/controllers/chat.coffee
  446. #: app/assets/javascripts/app/views/customer_chat/chat_header.jst.eco
  447. msgid "Active Agents"
  448. msgstr ""
  449. #: app/assets/javascripts/app/views/time_accounting/index.jst.eco
  450. msgid "Activity"
  451. msgstr ""
  452. #: app/assets/javascripts/app/views/dashboard.jst.eco
  453. msgid "Activity Stream"
  454. msgstr ""
  455. #: app/assets/javascripts/app/views/channel/sms_account_overview.jst.eco
  456. msgid "Adapter"
  457. msgstr ""
  458. #: app/assets/javascripts/app/controllers/_integration/smime.coffee
  459. #: app/assets/javascripts/app/views/calendar/holiday_selector.jst.eco
  460. #: app/assets/javascripts/app/views/channel/email_account_overview.jst.eco
  461. #: app/assets/javascripts/app/views/channel/topics.jst.eco
  462. #: app/assets/javascripts/app/views/generic/application_selector_row.jst.eco
  463. #: app/assets/javascripts/app/views/generic/postmaster_match.jst.eco
  464. #: app/assets/javascripts/app/views/generic/postmaster_set_row.jst.eco
  465. #: app/assets/javascripts/app/views/generic/ticket_perform_action/row.jst.eco
  466. #: app/assets/javascripts/app/views/google/list.jst.eco
  467. #: app/assets/javascripts/app/views/integration/clearbit.jst.eco
  468. #: app/assets/javascripts/app/views/integration/cti.jst.eco
  469. #: app/assets/javascripts/app/views/integration/exchange_wizard.jst.eco
  470. #: app/assets/javascripts/app/views/integration/ldap_wizard.jst.eco
  471. #: app/assets/javascripts/app/views/integration/placetel.jst.eco
  472. #: app/assets/javascripts/app/views/integration/sipgate.jst.eco
  473. #: app/assets/javascripts/app/views/knowledge_base/public_menu_form_item.jst.eco
  474. #: app/assets/javascripts/app/views/knowledge_base/sidebar/attachments.jst.eco
  475. #: app/assets/javascripts/app/views/knowledge_base/sidebar/generic_list.jst.eco
  476. #: app/assets/javascripts/app/views/knowledge_base/sidebar/linked_tickets.jst.eco
  477. #: app/assets/javascripts/app/views/microsoft365/list.jst.eco
  478. #: app/assets/javascripts/app/views/object_manager/attribute/multiselect.jst.eco
  479. #: app/assets/javascripts/app/views/object_manager/attribute/select.jst.eco
  480. #: app/assets/javascripts/app/views/profile/linked_accounts.jst.eco
  481. #: app/assets/javascripts/app/views/tag/index.jst.eco
  482. #: app/frontend/shared/form/i18n/locales.ts
  483. msgid "Add"
  484. msgstr ""
  485. #: app/assets/javascripts/app/views/facebook/list.jst.eco
  486. #: app/assets/javascripts/app/views/google/list.jst.eco
  487. #: app/assets/javascripts/app/views/microsoft365/list.jst.eco
  488. #: app/assets/javascripts/app/views/twitter/list.jst.eco
  489. msgid "Add Account"
  490. msgstr ""
  491. #: app/assets/javascripts/app/views/telegram/index.jst.eco
  492. msgid "Add Bot"
  493. msgstr ""
  494. #: app/assets/javascripts/app/controllers/_integration/smime.coffee
  495. #: app/assets/javascripts/app/views/integration/smime.jst.eco
  496. msgid "Add Certificate"
  497. msgstr ""
  498. #: app/assets/javascripts/app/views/link/ticket/list.jst.eco
  499. msgid "Add Link"
  500. msgstr ""
  501. #: app/assets/javascripts/app/controllers/_integration/smime.coffee
  502. #: app/assets/javascripts/app/views/integration/smime.jst.eco
  503. msgid "Add Private Key"
  504. msgstr ""
  505. #: app/assets/javascripts/app/views/knowledge_base/sidebar/tags.jst.eco
  506. #: app/assets/javascripts/app/views/widget/tag.jst.eco
  507. msgid "Add Tag"
  508. msgstr ""
  509. #: app/assets/javascripts/app/controllers/_channel/telegram.coffee
  510. msgid "Add Telegram Bot"
  511. msgstr ""
  512. #: app/assets/javascripts/app/views/organization_profile/object.jst.eco
  513. #: app/assets/javascripts/app/views/user_profile/object.jst.eco
  514. #: app/assets/javascripts/app/views/widget/organization.jst.eco
  515. #: app/assets/javascripts/app/views/widget/user.jst.eco
  516. msgid "Add a Note"
  517. msgstr ""
  518. #: app/assets/javascripts/app/controllers/_profile/token_access.coffee
  519. #: app/assets/javascripts/app/views/profile/token_access.jst.eco
  520. msgid "Add a Personal Access Token"
  521. msgstr ""
  522. #: app/assets/javascripts/app/views/profile/calendar_subscriptions.jst.eco
  523. msgid "Add alarm to pending reminder and escalated tickets."
  524. msgstr ""
  525. #: app/assets/javascripts/app/views/channel/form.jst.eco
  526. msgid "Add attachment option to upload."
  527. msgstr ""
  528. #: app/frontend/shared/components/Form/fields/FieldEditor/useEditorActions.ts
  529. msgid "Add bullet list"
  530. msgstr ""
  531. #: app/frontend/shared/components/Form/fields/FieldEditor/useEditorActions.ts
  532. msgid "Add first level heading"
  533. msgstr ""
  534. #: app/frontend/shared/components/Form/fields/FieldEditor/useEditorActions.ts
  535. msgid "Add image"
  536. msgstr ""
  537. #: app/frontend/shared/components/Form/fields/FieldEditor/useEditorActions.ts
  538. msgid "Add link"
  539. msgstr ""
  540. #: app/frontend/shared/components/Form/fields/FieldEditor/useEditorActions.ts
  541. msgid "Add ordered list"
  542. msgstr ""
  543. #: app/frontend/shared/components/Form/fields/FieldEditor/useEditorActions.ts
  544. msgid "Add second level heading"
  545. msgstr ""
  546. #: db/seeds/settings.rb
  547. msgid "Add sender initials to end of a tweet."
  548. msgstr ""
  549. #: app/frontend/shared/components/Form/fields/FieldEditor/useEditorActions.ts
  550. msgid "Add third level heading"
  551. msgstr ""
  552. #: app/assets/javascripts/app/controllers/_channel/chat.coffee
  553. msgid "Add this class to a button on your page that should open the chat."
  554. msgstr ""
  555. #: app/controllers/first_steps_controller.rb
  556. msgid "Additional Channels"
  557. msgstr ""
  558. #: db/seeds/settings.rb
  559. msgid "Additional follow-up detection"
  560. msgstr ""
  561. #: db/seeds/object_manager_attributes.rb
  562. msgid "Address"
  563. msgstr ""
  564. #: db/seeds/settings.rb
  565. msgid "Address of the proxy server for http and https resources."
  566. msgstr ""
  567. #: app/assets/javascripts/app/controllers/_default_navbar.coffee
  568. #: db/seeds/roles.rb
  569. msgid "Admin"
  570. msgstr ""
  571. #: db/seeds/permissions.rb
  572. msgid "Admin Interface"
  573. msgstr ""
  574. #: app/assets/javascripts/app/views/getting_started/admin.jst.eco
  575. msgid "Administrator Account"
  576. msgstr ""
  577. #: app/controllers/users_controller.rb
  578. msgid "Administrator account already created"
  579. msgstr ""
  580. #: app/assets/javascripts/app/models/macro.coffee
  581. msgid "Advance to next ticket from overview"
  582. msgstr ""
  583. #: app/assets/javascripts/app/views/package.jst.eco
  584. msgid "After installing, updating, or uninstalling packages the following commands need to be executed on the server:"
  585. msgstr ""
  586. #: app/assets/javascripts/app/views/session.jst.eco
  587. msgid "Age"
  588. msgstr ""
  589. #: app/assets/javascripts/app/views/popover/ticket.jst.eco
  590. #: app/assets/javascripts/app/views/time_accounting/by_activity.jst.eco
  591. #: app/assets/javascripts/app/views/time_accounting/by_ticket.jst.eco
  592. #: app/controllers/time_accountings_controller.rb
  593. #: db/seeds/roles.rb
  594. #: db/seeds/ticket_article_senders.rb
  595. msgid "Agent"
  596. msgstr ""
  597. #: db/seeds/settings.rb
  598. msgid "Agent Name"
  599. msgstr ""
  600. #: db/seeds/settings.rb
  601. msgid "Agent Name + FromSeparator + System Address Display Name"
  602. msgstr ""
  603. #: db/seeds/settings.rb
  604. msgid "Agent idle timeout"
  605. msgstr ""
  606. #: app/models/role.rb
  607. #: app/models/user.rb
  608. msgid "Agent limit exceeded, please check your account settings."
  609. msgstr ""
  610. #: app/assets/javascripts/app/views/integration/cti.jst.eco
  611. msgid "Agents"
  612. msgstr ""
  613. #: app/assets/javascripts/app/views/profile/calendar_subscriptions.jst.eco
  614. msgid "Alarm"
  615. msgstr ""
  616. #: app/assets/javascripts/app/views/profile/notification.jst.eco
  617. msgid "All Tickets"
  618. msgstr ""
  619. #: app/assets/javascripts/app/controllers/_ui_element/ticket_perform_action.coffee
  620. msgid "All agents"
  621. msgstr ""
  622. #: public/assets/chat/views/waiting.eco
  623. msgid "All colleagues are busy."
  624. msgstr ""
  625. #: app/assets/javascripts/app/views/profile/devices.jst.eco
  626. msgid "All computers and browsers that have access to your Zammad appear here."
  627. msgstr ""
  628. #: app/assets/javascripts/app/controllers/_ui_element/object_manager_attribute.coffee
  629. msgid "Allow future"
  630. msgstr ""
  631. #: app/assets/javascripts/app/controllers/_ui_element/object_manager_attribute.coffee
  632. msgid "Allow past"
  633. msgstr ""
  634. #: app/assets/javascripts/app/views/tag/index.jst.eco
  635. msgid "Allow users to add new tags."
  636. msgstr ""
  637. #: db/seeds/settings.rb
  638. msgid "Allow users to create new tags."
  639. msgstr ""
  640. #: db/seeds/settings.rb
  641. msgid "Allow using one email address for multiple users."
  642. msgstr ""
  643. #: app/assets/javascripts/app/models/chat.coffee
  644. msgid "Allow websites (separated by ;)"
  645. msgstr ""
  646. #: app/assets/javascripts/app/views/profile/notification.jst.eco
  647. msgid "Also notify via email"
  648. msgstr ""
  649. #: db/seeds/settings.rb
  650. msgid "Alternative FQDN for callbacks if you operate Zammad in an internal network."
  651. msgstr ""
  652. #: app/helpers/knowledge_base_breadcrumb_helper.rb
  653. #: app/helpers/knowledge_base_public_page_title_helper.rb
  654. msgid "Alternative Translations"
  655. msgstr ""
  656. #: app/assets/javascripts/app/views/customer_chat/setting.jst.eco
  657. msgid "Alternative name"
  658. msgstr ""
  659. #: app/assets/javascripts/app/views/generic/object_import/index.jst.eco
  660. msgid "Alternatively, you can use the Zammad API to import data."
  661. msgstr ""
  662. #: app/assets/javascripts/app/controllers/ticket_zoom/article_calendar_view.coffee
  663. msgid "An error has occurred"
  664. msgstr ""
  665. #: app/frontend/shared/server/apollo/handler/BaseHandler.ts
  666. msgid "An error occured during the operation. Please contact your administrator."
  667. msgstr ""
  668. #: app/assets/javascripts/app/views/integration/exchange_last_import.jst.eco
  669. #: app/assets/javascripts/app/views/integration/ldap_last_import.jst.eco
  670. msgid "An error occurred: %s"
  671. msgstr ""
  672. #: app/assets/javascripts/app/controllers/_integration/check_mk.coffee
  673. #: app/assets/javascripts/app/controllers/_integration/icinga.coffee
  674. #: app/assets/javascripts/app/controllers/_integration/monit.coffee
  675. #: app/assets/javascripts/app/controllers/_integration/nagios.coffee
  676. msgid "An open-source monitoring tool."
  677. msgstr ""
  678. #: app/assets/javascripts/app/views/integration/exchange_wizard.jst.eco
  679. #: app/assets/javascripts/app/views/integration/ldap_wizard.jst.eco
  680. msgid "Analyzing entries with given configuration…"
  681. msgstr ""
  682. #: app/assets/javascripts/app/views/integration/exchange_wizard.jst.eco
  683. #: app/assets/javascripts/app/views/integration/ldap_wizard.jst.eco
  684. msgid "Analyzing structure…"
  685. msgstr ""
  686. #: app/assets/javascripts/app/models/ticket.coffee
  687. msgid "Another ticket was merged into ticket |%s|"
  688. msgstr ""
  689. #: app/assets/javascripts/app/controllers/_ui_element/richtext_additions/link_answer_button.coffee
  690. msgid "Answer"
  691. msgstr ""
  692. #: app/assets/javascripts/app/controllers/knowledge_base/sidebar/answers.coffee
  693. msgid "Answers"
  694. msgstr ""
  695. #: app/assets/javascripts/app/lib/app_post/iconset_picker.coffee
  696. msgid "Anticon"
  697. msgstr ""
  698. #: app/assets/javascripts/app/controllers/_ui_element/postmaster_match.coffee
  699. msgid "Any recipient"
  700. msgstr ""
  701. #: db/seeds/settings.rb
  702. msgid "App ID"
  703. msgstr ""
  704. #: db/seeds/settings.rb
  705. msgid "App Secret"
  706. msgstr ""
  707. #: db/seeds/settings.rb
  708. msgid "App Tenant ID"
  709. msgstr ""
  710. #: db/seeds/settings.rb
  711. msgid "App Version"
  712. msgstr ""
  713. #: app/assets/javascripts/app/controllers/_channel/facebook.coffee
  714. #: app/assets/javascripts/app/controllers/_channel/google.coffee
  715. #: app/assets/javascripts/app/controllers/_channel/microsoft365.coffee
  716. #: app/assets/javascripts/app/controllers/_channel/twitter.coffee
  717. msgid "App could not be verified."
  718. msgstr ""
  719. #: db/seeds/settings.rb
  720. msgid "App credentials for Facebook."
  721. msgstr ""
  722. #: db/seeds/settings.rb
  723. msgid "App credentials for Twitter."
  724. msgstr ""
  725. #: app/assets/javascripts/app/controllers/api.coffee
  726. msgid "Application"
  727. msgstr ""
  728. #: db/seeds/settings.rb
  729. msgid "Application secret"
  730. msgstr ""
  731. #: app/assets/javascripts/app/views/api.jst.eco
  732. msgid "Applications"
  733. msgstr ""
  734. #: app/assets/javascripts/app/views/widget/template.jst.eco
  735. msgid "Apply"
  736. msgstr ""
  737. #: app/assets/javascripts/app/views/ticket_shared_draft_modal.coffee
  738. msgid "Apply Draft"
  739. msgstr ""
  740. #: app/assets/javascripts/app/views/ticket_shared_draft_modal.coffee
  741. msgid "Apply Shared Draft"
  742. msgstr ""
  743. #: app/assets/javascripts/app/controllers/_ui_element/basedate.coffee
  744. #: app/assets/javascripts/app/controllers/report.coffee
  745. #: app/assets/javascripts/app/controllers/time_accounting.coffee
  746. #: app/frontend/shared/components/Form/fields/FieldDate/FieldDateTimeInput.vue
  747. msgid "Apr"
  748. msgstr ""
  749. #: app/assets/javascripts/app/controllers/_ui_element/basedate.coffee
  750. #: app/frontend/shared/components/Form/fields/FieldDate/FieldDateTimeInput.vue
  751. msgid "April"
  752. msgstr ""
  753. #: app/assets/javascripts/app/controllers/knowledge_base/content_controller.coffee
  754. msgid "Archive"
  755. msgstr ""
  756. #: app/assets/javascripts/app/controllers/knowledge_base/content_can_be_published_form.coffee
  757. msgid "Archived"
  758. msgstr ""
  759. #: app/assets/javascripts/app/views/popover/kb_generic.jst.eco
  760. msgid "Archived at"
  761. msgstr ""
  762. #: app/assets/javascripts/app/controllers/knowledge_base/content_controller.coffee
  763. msgid "Are you sure you want to reload? You have unsaved changes that will get lost"
  764. msgstr ""
  765. #: app/assets/javascripts/app/controllers/_channel/email.coffee
  766. #: app/assets/javascripts/app/controllers/_channel/facebook.coffee
  767. #: app/assets/javascripts/app/controllers/_channel/google.coffee
  768. #: app/assets/javascripts/app/controllers/_channel/microsoft365.coffee
  769. #: app/assets/javascripts/app/controllers/_channel/telegram.coffee
  770. #: app/assets/javascripts/app/controllers/_channel/twitter.coffee
  771. #: app/assets/javascripts/app/controllers/_profile/token_access.coffee
  772. #: app/assets/javascripts/app/controllers/data_privacy.coffee
  773. #: app/assets/javascripts/app/controllers/maintenance.coffee
  774. #: app/assets/javascripts/app/controllers/ticket_zoom/article_action/delete.coffee
  775. #: app/assets/javascripts/app/controllers/widget/template.coffee
  776. #: app/assets/javascripts/app/views/ticket_shared_draft_modal.coffee
  777. msgid "Are you sure?"
  778. msgstr ""
  779. #: app/assets/javascripts/app/controllers/_ui_element/_application_selector.coffee
  780. #: app/assets/javascripts/app/controllers/_ui_element/ticket_perform_action.coffee
  781. msgid "Article"
  782. msgstr ""
  783. #: db/seeds/settings.rb
  784. msgid "Article - visibility confirmation dialog"
  785. msgstr ""
  786. #: lib/excel_sheet/ticket.rb
  787. msgid "Article Count"
  788. msgstr ""
  789. #: app/models/ticket.rb
  790. msgid "Article could not be created. An unsupported key other than 'article.note' was provided."
  791. msgstr ""
  792. #: app/assets/javascripts/app/controllers/ticket_zoom/article_action/delete.coffee
  793. msgid "Article could not be deleted."
  794. msgstr ""
  795. #: app/assets/javascripts/app/models/ticket.coffee
  796. msgid "Article#"
  797. msgstr ""
  798. #: db/seeds/object_manager_attributes.rb
  799. msgid "Assign Follow-Ups"
  800. msgstr ""
  801. #: app/assets/javascripts/app/models/group.coffee
  802. #: db/seeds/object_manager_attributes.rb
  803. msgid "Assign follow-up to latest agent again."
  804. msgstr ""
  805. #: app/assets/javascripts/app/models/group.coffee
  806. msgid "Assign follow-ups"
  807. msgstr ""
  808. #: app/assets/javascripts/app/controllers/_integration/ldap.coffee
  809. msgid "Assign signup roles"
  810. msgstr ""
  811. #: db/seeds/object_manager_attributes.rb
  812. msgid "Assign users based on user domain."
  813. msgstr ""
  814. #: app/assets/javascripts/app/views/dashboard/stats/ticket_load_measure.jst.eco
  815. msgid "Assigned"
  816. msgstr ""
  817. #: app/assets/javascripts/app/views/ticket_zoom/sidebar_git_issue.jst.eco
  818. msgid "Assignee"
  819. msgstr ""
  820. #: db/seeds/object_manager_attributes.rb
  821. msgid "Assignment Timeout"
  822. msgstr ""
  823. #: app/assets/javascripts/app/models/_application_model.coffee
  824. #: app/assets/javascripts/app/models/group.coffee
  825. msgid "Assignment timeout"
  826. msgstr ""
  827. #: app/assets/javascripts/app/models/group.coffee
  828. #: db/seeds/object_manager_attributes.rb
  829. msgid "Assignment timeout in minutes if assigned agent is not working on it. Ticket will be shown as unassigend."
  830. msgstr ""
  831. #: app/models/user.rb
  832. msgid "At least one identifier (firstname, lastname, phone or email) for user is required."
  833. msgstr ""
  834. #: app/models/object_manager/attribute.rb
  835. msgid "At least one letter is required"
  836. msgstr ""
  837. #: app/models/postmaster_filter.rb
  838. msgid "At least one match rule is required, but none was provided."
  839. msgstr ""
  840. #: app/assets/javascripts/app/controllers/widget/ticket_bulk_form.coffee
  841. msgid "At least one object must be selected."
  842. msgstr ""
  843. #: app/models/role.rb
  844. #: app/models/user.rb
  845. msgid "At least one user needs to have admin permissions."
  846. msgstr ""
  847. #: app/assets/javascripts/app/lib/app_post/utils.coffee
  848. msgid "Attached"
  849. msgstr ""
  850. #: app/assets/javascripts/app/views/generic/attachments.jst.eco
  851. #: app/views/knowledge_base/public/answers/show.html.erb
  852. msgid "Attached Files"
  853. msgstr ""
  854. #: app/assets/javascripts/app/lib/app_post/utils.coffee
  855. msgid "Attachment"
  856. msgstr ""
  857. #: db/seeds/settings.rb
  858. msgid "Attachment - Search for follow-up also in attachments."
  859. msgstr ""
  860. #: app/assets/javascripts/app/controllers/ticket_zoom/sidebar_article_attachments.coffee
  861. #: app/assets/javascripts/app/views/knowledge_base/_answer_attachments.jst.eco
  862. #: app/assets/javascripts/app/views/knowledge_base/sidebar/attachments.jst.eco
  863. msgid "Attachments"
  864. msgstr ""
  865. #: app/assets/javascripts/app/views/generic/calender_preview.jst.eco
  866. msgid "Attendees"
  867. msgstr ""
  868. #: app/assets/javascripts/app/views/import/kayako.jst.eco
  869. msgid "Attention: These will also be your login and password after the import is completed."
  870. msgstr ""
  871. #: app/assets/javascripts/app/views/import/freshdesk.jst.eco
  872. #: app/assets/javascripts/app/views/import/zendesk.jst.eco
  873. msgid "Attention: These will be your login and password after the import is completed."
  874. msgstr ""
  875. #: app/assets/javascripts/app/controllers/object_manager.coffee
  876. msgid "Attribute"
  877. msgstr ""
  878. #: app/assets/javascripts/app/controllers/_integration/ldap.coffee
  879. msgid "Attribute '%s' is required in the mapping"
  880. msgstr ""
  881. #: app/controllers/users_controller.rb
  882. msgid "Attribute 'email' required!"
  883. msgstr ""
  884. #: app/models/object_manager/attribute.rb
  885. msgid "Attribute not editable!"
  886. msgstr ""
  887. #: app/assets/javascripts/app/controllers/ticket_overview.coffee
  888. #: app/assets/javascripts/app/models/overview.coffee
  889. msgid "Attributes"
  890. msgstr ""
  891. #: app/assets/javascripts/app/controllers/_ui_element/basedate.coffee
  892. #: app/assets/javascripts/app/controllers/report.coffee
  893. #: app/assets/javascripts/app/controllers/time_accounting.coffee
  894. #: app/frontend/shared/components/Form/fields/FieldDate/FieldDateTimeInput.vue
  895. msgid "Aug"
  896. msgstr ""
  897. #: app/assets/javascripts/app/controllers/_ui_element/basedate.coffee
  898. #: app/frontend/shared/components/Form/fields/FieldDate/FieldDateTimeInput.vue
  899. msgid "August"
  900. msgstr ""
  901. #: app/assets/javascripts/app/controllers/_manage/security.coffee
  902. msgid "Authentication"
  903. msgstr ""
  904. #: app/controllers/import_otrs_controller.rb
  905. #: lib/email_helper/probe.rb
  906. msgid "Authentication failed!"
  907. msgstr ""
  908. #: lib/email_helper/probe.rb
  909. msgid "Authentication failed, invalid credentials!"
  910. msgstr ""
  911. #: lib/email_helper/probe.rb
  912. msgid "Authentication failed, username incorrect!"
  913. msgstr ""
  914. #: lib/email_helper/probe.rb
  915. msgid "Authentication not possible (not offered by the service)"
  916. msgstr ""
  917. #: app/controllers/application_controller/authenticates.rb
  918. #: app/graphql/gql/context/current_user_aware.rb
  919. #: app/policies/pundit_policy.rb
  920. #: lib/user_context.rb
  921. msgid "Authentication required"
  922. msgstr ""
  923. #: db/seeds/settings.rb
  924. msgid "Authentication via %s"
  925. msgstr ""
  926. #: app/controllers/application_controller/handles_errors.rb
  927. msgid "Authorization failed"
  928. msgstr ""
  929. #: app/assets/javascripts/app/controllers/_manage/ticket.coffee
  930. #: app/assets/javascripts/app/views/settings/ticket_auto_assignment.jst.eco
  931. #: db/seeds/settings.rb
  932. msgid "Auto Assignment"
  933. msgstr ""
  934. #: app/assets/javascripts/app/controllers/getting_started/auto_wizard.coffee
  935. msgid "Auto Wizard"
  936. msgstr ""
  937. #: db/seeds/settings.rb
  938. msgid "Auto close"
  939. msgstr ""
  940. #: app/assets/javascripts/app/controllers/_integration/clearbit.coffee
  941. msgid "Auto create"
  942. msgstr ""
  943. #: db/seeds/settings.rb
  944. msgid "Auto-close state"
  945. msgstr ""
  946. #: db/seeds/settings.rb
  947. msgid "Automatic account link on initial logon"
  948. msgstr ""
  949. #: app/assets/javascripts/app/controllers/_integration/clearbit.coffee
  950. msgid "Automatically enrich your customers and organizations with fresh, up-to-date intel. Map data directly to object fields."
  951. msgstr ""
  952. #: app/assets/javascripts/app/controllers/_channel/chat.coffee
  953. msgid "Automatically loads the chat.css file. If you want to use your own css, just set it to false."
  954. msgstr ""
  955. #: app/assets/javascripts/app/models/overview.coffee
  956. msgid "Available for the following roles"
  957. msgstr ""
  958. #: db/seeds/settings.rb
  959. msgid "Available types for a new ticket"
  960. msgstr ""
  961. #: app/assets/javascripts/app/controllers/_profile/avatar.coffee
  962. #: app/assets/javascripts/app/views/customer_chat/setting.jst.eco
  963. #: app/assets/javascripts/app/views/profile/avatar.jst.eco
  964. #: app/assets/javascripts/app/views/profile/imageCropper.jst.eco
  965. #: app/frontend/apps/mobile/modules/account/routes.ts
  966. #: app/frontend/apps/mobile/modules/account/views/AccountAvatar.vue
  967. #: app/frontend/apps/mobile/modules/account/views/AccountOverview.vue
  968. #: db/seeds/permissions.rb
  969. msgid "Avatar"
  970. msgstr ""
  971. #: app/assets/javascripts/app/views/dashboard/stats/ticket_load_measure.jst.eco
  972. msgid "Average: %s"
  973. msgstr ""
  974. #: app/assets/javascripts/app/views/dashboard/stats/ticket_waiting_time.jst.eco
  975. msgid "Average: %s minutes"
  976. msgstr ""
  977. #: app/assets/javascripts/app/views/dashboard/stats/ticket_in_process.jst.eco
  978. #: app/assets/javascripts/app/views/dashboard/stats/ticket_reopen.jst.eco
  979. msgid "Average: %s%"
  980. msgstr ""
  981. #: db/seeds/settings.rb
  982. msgid "BCC address for all outgoing emails"
  983. msgstr ""
  984. #: app/assets/javascripts/app/views/generic/object_search/item_organization_members.jst.eco
  985. msgid "Back"
  986. msgstr ""
  987. #: app/assets/javascripts/app/views/widget/switch_back_to_user.jst.eco
  988. msgid "Back to my view"
  989. msgstr ""
  990. #: app/assets/javascripts/app/views/integration/ldap.jst.eco
  991. msgid "Back to overview"
  992. msgstr ""
  993. #: app/assets/javascripts/app/views/knowledge_base/reader.jst.eco
  994. msgid "Back to search results"
  995. msgstr ""
  996. #: app/assets/javascripts/app/views/channel/chat.jst.eco
  997. msgid "Background color"
  998. msgstr ""
  999. #: app/assets/javascripts/app/controllers/import_freshdesk.coffee
  1000. #: app/assets/javascripts/app/controllers/import_kayako.coffee
  1001. #: app/assets/javascripts/app/controllers/import_otrs.coffee
  1002. #: app/assets/javascripts/app/controllers/import_zendesk.coffee
  1003. msgid "Background process did not start or has not finished! Please contact your support."
  1004. msgstr ""
  1005. #: app/models/report.rb
  1006. msgid "Backlog"
  1007. msgstr ""
  1008. #: app/assets/javascripts/app/controllers/_manage/branding.coffee
  1009. #: app/assets/javascripts/app/controllers/_manage/security.coffee
  1010. #: app/assets/javascripts/app/controllers/_manage/system.coffee
  1011. #: app/assets/javascripts/app/controllers/_manage/ticket.coffee
  1012. msgid "Base"
  1013. msgstr ""
  1014. #: app/assets/javascripts/app/views/integration/ldap.jst.eco
  1015. #: app/assets/javascripts/app/views/integration/ldap_wizard.jst.eco
  1016. msgid "Base DN"
  1017. msgstr ""
  1018. #: app/assets/javascripts/app/views/import/otrs.jst.eco
  1019. msgid "Base Objects"
  1020. msgstr ""
  1021. #: app/assets/javascripts/app/controllers/_ui_element/postmaster_match.coffee
  1022. msgid "Basic Settings"
  1023. msgstr ""
  1024. #: app/assets/javascripts/app/lib/base/jquery.textmodule.js
  1025. msgid "Before you mention a user, please select a group."
  1026. msgstr ""
  1027. #: app/assets/javascripts/app/controllers/ticket_zoom/article_action/email_reply.coffee
  1028. msgid "Begin forwarded message"
  1029. msgstr ""
  1030. #: db/seeds/settings.rb
  1031. msgid "Beginner"
  1032. msgstr ""
  1033. #: app/assets/javascripts/app/views/integration/ldap.jst.eco
  1034. #: app/assets/javascripts/app/views/integration/ldap_wizard.jst.eco
  1035. msgid "Bind Password"
  1036. msgstr ""
  1037. #: app/assets/javascripts/app/views/integration/ldap.jst.eco
  1038. #: app/assets/javascripts/app/views/integration/ldap_wizard.jst.eco
  1039. msgid "Bind User"
  1040. msgstr ""
  1041. #: db/seeds/settings.rb
  1042. msgid "Block Notifications"
  1043. msgstr ""
  1044. #: app/assets/javascripts/app/views/integration/cti.jst.eco
  1045. #: app/assets/javascripts/app/views/integration/placetel.jst.eco
  1046. #: app/assets/javascripts/app/views/integration/sipgate.jst.eco
  1047. msgid "Block caller IDs based on sender caller ID."
  1048. msgstr ""
  1049. #: app/assets/javascripts/app/models/chat.coffee
  1050. msgid "Blocked IPs (separated by ;)"
  1051. msgstr ""
  1052. #: app/assets/javascripts/app/models/chat.coffee
  1053. msgid "Blocked countries"
  1054. msgstr ""
  1055. #: app/assets/javascripts/app/controllers/ticket_zoom/highlighter.coffee
  1056. msgid "Blue"
  1057. msgstr ""
  1058. #: app/assets/javascripts/app/controllers/_ui_element/postmaster_match.coffee
  1059. #: app/assets/javascripts/app/models/knowledge_base_answer_translation.coffee
  1060. #: app/assets/javascripts/app/views/generic/ticket_perform_action/article.jst.eco
  1061. #: app/assets/javascripts/app/views/generic/ticket_perform_action/notification.jst.eco
  1062. #: app/assets/javascripts/app/views/widget/payload_example.jst.eco
  1063. msgid "Body"
  1064. msgstr ""
  1065. #: db/seeds/settings.rb
  1066. msgid "Body - Search for follow-up also in mail body."
  1067. msgstr ""
  1068. #: app/assets/javascripts/app/controllers/_ui_element/object_manager_attribute.coffee
  1069. msgid "Boolean field"
  1070. msgstr ""
  1071. #: app/assets/javascripts/app/views/telegram/index.jst.eco
  1072. msgid "Bots"
  1073. msgstr ""
  1074. #: app/assets/javascripts/app/controllers/_manage/branding.coffee
  1075. #: app/controllers/first_steps_controller.rb
  1076. #: db/seeds/permissions.rb
  1077. msgid "Branding"
  1078. msgstr ""
  1079. #: app/assets/javascripts/app/views/session.jst.eco
  1080. msgid "Browser"
  1081. msgstr ""
  1082. #: app/assets/javascripts/app/lib/mixins/ticket_mass_updatable.coffee
  1083. msgid "Bulk action executed!"
  1084. msgstr ""
  1085. #: app/assets/javascripts/app/lib/mixins/ticket_mass_updatable.coffee
  1086. msgid "Bulk action failed"
  1087. msgstr ""
  1088. #: app/assets/javascripts/app/controllers/widget/ticket_bulk_form.coffee
  1089. msgid "Bulk action stopped by error(s): %s!"
  1090. msgstr ""
  1091. #: app/assets/javascripts/app/views/generic/object_import/index.jst.eco
  1092. msgid "Bulk import allows you to create and update many records at once."
  1093. msgstr ""
  1094. #: app/assets/javascripts/app/models/calendar.coffee
  1095. #: app/assets/javascripts/app/views/calendar/index.jst.eco
  1096. msgid "Business Hours"
  1097. msgstr ""
  1098. #: app/views/knowledge_base/public/show_alternatives.html.erb
  1099. msgid "But it's only available in these languages:"
  1100. msgstr ""
  1101. #: db/seeds/settings.rb
  1102. msgid "By default, the follow-up check is done via the subject of an email. This setting lets you add more fields for which the follow-up check will be executed."
  1103. msgstr ""
  1104. #: app/assets/javascripts/app/views/integration/placetel.jst.eco
  1105. msgid "By mapping your agents' Placetel SIP users to their Zammad user accounts, Zammad can support your agents by opening either a new ticket dialogue or the user profile upon picking up a new call."
  1106. msgstr ""
  1107. #: app/assets/javascripts/app/views/integration/sipgate.jst.eco
  1108. msgid "By mapping your agents' sipgate users to their Zammad user accounts, Zammad can support your agents by opening either a new ticket dialogue or the user profile upon picking up a new call."
  1109. msgstr ""
  1110. #: app/assets/javascripts/app/controllers/_ui_element/postmaster_match.coffee
  1111. #: app/assets/javascripts/app/controllers/agent_ticket_create.coffee
  1112. #: app/assets/javascripts/app/models/ticket_article.coffee
  1113. #: app/assets/javascripts/app/views/ticket_zoom/article_new.jst.eco
  1114. #: app/assets/javascripts/app/views/ticket_zoom/article_view.jst.eco
  1115. #: db/seeds/object_manager_attributes.rb
  1116. msgid "CC"
  1117. msgstr ""
  1118. #: app/assets/javascripts/app/controllers/_integration/idoit.coffee
  1119. msgid "CMDB to document complex relations of your network components."
  1120. msgstr ""
  1121. #: app/assets/javascripts/app/controllers/_channel/chat.coffee
  1122. msgid "CSS font-size with a unit like 12px, 1.5em. If left undefined it inherits the font-size of the website."
  1123. msgstr ""
  1124. #: app/assets/javascripts/app/controllers/cti.coffee
  1125. #: db/seeds/permissions.rb
  1126. msgid "CTI"
  1127. msgstr ""
  1128. #: app/assets/javascripts/app/controllers/_integration/cti.coffee
  1129. #: app/controllers/cti_controller.rb
  1130. msgid "CTI (generic)"
  1131. msgstr ""
  1132. #: db/seeds/settings.rb
  1133. msgid "CTI Token"
  1134. msgstr ""
  1135. #: db/seeds/settings.rb
  1136. msgid "CTI config"
  1137. msgstr ""
  1138. #: db/seeds/settings.rb
  1139. msgid "CTI customer last activity"
  1140. msgstr ""
  1141. #: db/seeds/settings.rb
  1142. msgid "CTI integration"
  1143. msgstr ""
  1144. #: app/assets/javascripts/app/controllers/_profile/calendar_subscriptions.coffee
  1145. #: app/assets/javascripts/app/controllers/_ui_element/_application_selector.coffee
  1146. #: app/assets/javascripts/app/controllers/calendar.coffee
  1147. #: app/assets/javascripts/app/models/sla.coffee
  1148. #: app/assets/javascripts/app/views/calendar/index.jst.eco
  1149. #: app/assets/javascripts/app/views/profile/calendar_subscriptions.jst.eco
  1150. #: app/assets/javascripts/app/views/sla/index.jst.eco
  1151. #: db/seeds/permissions.rb
  1152. msgid "Calendar"
  1153. msgstr ""
  1154. #: app/assets/javascripts/app/controllers/calendar.coffee
  1155. #: db/seeds/permissions.rb
  1156. msgid "Calendars"
  1157. msgstr ""
  1158. #: app/assets/javascripts/app/views/integration/cti.jst.eco
  1159. #: app/assets/javascripts/app/views/integration/placetel.jst.eco
  1160. #: app/assets/javascripts/app/views/integration/sipgate.jst.eco
  1161. msgid "Call Settings"
  1162. msgstr ""
  1163. #: app/assets/javascripts/app/controllers/cti.coffee
  1164. msgid "Call from %s for %s"
  1165. msgstr ""
  1166. #: app/assets/javascripts/app/models/application.coffee
  1167. msgid "Callback URL"
  1168. msgstr ""
  1169. #: app/assets/javascripts/app/controllers/_integration/cti.coffee
  1170. #: app/assets/javascripts/app/controllers/_integration/placetel.coffee
  1171. #: app/assets/javascripts/app/controllers/_integration/sipgate_io.coffee
  1172. msgid "Caller ID of outbound calls can be changed as well."
  1173. msgstr ""
  1174. #: app/assets/javascripts/app/views/integration/cti.jst.eco
  1175. #: app/assets/javascripts/app/views/integration/placetel.jst.eco
  1176. #: app/assets/javascripts/app/views/integration/sipgate.jst.eco
  1177. msgid "Caller ID to block"
  1178. msgstr ""
  1179. #: app/assets/javascripts/app/views/integration/cti.jst.eco
  1180. msgid "Caller Log Filter"
  1181. msgstr ""
  1182. #: app/assets/javascripts/app/views/cti/index.jst.eco
  1183. msgid "Caller log"
  1184. msgstr ""
  1185. #: app/assets/javascripts/app/controllers/_profile/avatar.coffee
  1186. #: app/assets/javascripts/app/views/profile/avatar.jst.eco
  1187. #: app/frontend/apps/mobile/modules/account/views/AccountAvatar.vue
  1188. msgid "Camera"
  1189. msgstr ""
  1190. #: app/assets/javascripts/app/views/channel/chat.jst.eco
  1191. msgid "Can be in any CSS color format."
  1192. msgstr ""
  1193. #: app/assets/javascripts/app/controllers/getting_started/agent.coffee
  1194. msgid "Can't create user!"
  1195. msgstr ""
  1196. #: app/controllers/application_controller/renders_models.rb
  1197. msgid "Can't delete, object has references."
  1198. msgstr ""
  1199. #: app/controllers/application_controller/authenticates.rb
  1200. msgid "Can't find User for Token"
  1201. msgstr ""
  1202. #: app/models/ticket/number.rb
  1203. msgid "Can't generate new ticket number!"
  1204. msgstr ""
  1205. #: app/models/ticket.rb
  1206. msgid "Can't merge ticket with itself!"
  1207. msgstr ""
  1208. #: lib/sessions/event/spool.rb
  1209. msgid "Can't send spool, session not authenticated"
  1210. msgstr ""
  1211. #: app/assets/javascripts/app/controllers/_profile/password.coffee
  1212. #: app/assets/javascripts/app/controllers/password_reset_verify.coffee
  1213. msgid "Can't update password, your entered passwords do not match. Please try again!"
  1214. msgstr ""
  1215. #: app/assets/javascripts/app/controllers/ticket_zoom/article_action/email_reply.coffee
  1216. #: app/assets/javascripts/app/controllers/ticket_zoom/article_action/twitter_reply.coffee
  1217. #: app/assets/javascripts/app/controllers/ticket_zoom/article_new.coffee
  1218. #: app/assets/javascripts/app/views/integration/exchange_certificate_issue.jst.eco
  1219. #: app/assets/javascripts/app/views/integration/exchange_wizard.jst.eco
  1220. #: app/assets/javascripts/app/views/integration/ldap_wizard.jst.eco
  1221. #: app/assets/javascripts/app/views/knowledge_base/scheduled_widget.jst.eco
  1222. #: app/assets/javascripts/app/views/widget/invite_user.jst.eco
  1223. #: app/frontend/apps/mobile/components/CommonSectionPopup/CommonSectionPopup.vue
  1224. #: app/frontend/apps/mobile/modules/search/views/SearchOverview.vue
  1225. msgid "Cancel"
  1226. msgstr ""
  1227. #: app/assets/javascripts/app/controllers/_application_controller/_modal.coffee
  1228. #: app/assets/javascripts/app/views/agent_ticket_create.jst.eco
  1229. #: app/assets/javascripts/app/views/agent_user_create.jst.eco
  1230. #: app/assets/javascripts/app/views/customer_ticket_create.jst.eco
  1231. #: app/assets/javascripts/app/views/password/reset.jst.eco
  1232. #: app/assets/javascripts/app/views/password/reset_change.jst.eco
  1233. #: app/assets/javascripts/app/views/password/reset_sent.jst.eco
  1234. #: app/assets/javascripts/app/views/signup.jst.eco
  1235. msgid "Cancel & Go Back"
  1236. msgstr ""
  1237. #: app/assets/javascripts/app/views/generic/attachment.jst.eco
  1238. #: app/assets/javascripts/app/views/ticket_zoom/article_new.jst.eco
  1239. msgid "Cancel Upload"
  1240. msgstr ""
  1241. #: app/assets/javascripts/app/controllers/knowledge_base/delete_action.coffee
  1242. msgid "Cannot delete category"
  1243. msgstr ""
  1244. #: app/policies/ticket_policy.rb
  1245. msgid "Cannot follow-up on a closed ticket. Please create a new ticket."
  1246. msgstr ""
  1247. #: app/assets/javascripts/app/controllers/knowledge_base/sidebar/categories.coffee
  1248. msgid "Categories"
  1249. msgstr ""
  1250. #: app/assets/javascripts/app/models/knowledge_base_answer.coffee
  1251. #: app/assets/javascripts/app/views/popover/kb_generic.jst.eco
  1252. msgid "Category"
  1253. msgstr ""
  1254. #: app/assets/javascripts/app/models/knowledge_base.coffee
  1255. msgid "Category page layout"
  1256. msgstr ""
  1257. #: lib/secure_mailing/smime/incoming.rb
  1258. msgid "Certificate for verification could not be found."
  1259. msgstr ""
  1260. #: app/assets/javascripts/app/views/integration/smime.jst.eco
  1261. msgid "Certificates & Private Keys"
  1262. msgstr ""
  1263. #: app/assets/javascripts/app/models/group.coffee
  1264. #: app/assets/javascripts/app/views/generic/login_preview.jst.eco
  1265. #: app/assets/javascripts/app/views/integration/exchange.jst.eco
  1266. #: app/assets/javascripts/app/views/integration/ldap.jst.eco
  1267. msgid "Change"
  1268. msgstr ""
  1269. #: db/seeds/permissions.rb
  1270. msgid "Change %s"
  1271. msgstr ""
  1272. #: app/assets/javascripts/app/controllers/ticket_customer.coffee
  1273. #: app/assets/javascripts/app/controllers/ticket_zoom/sidebar_customer.coffee
  1274. #: app/assets/javascripts/app/controllers/ticket_zoom/sidebar_ticket.coffee
  1275. msgid "Change Customer"
  1276. msgstr ""
  1277. #: app/assets/javascripts/app/controllers/ticket_zoom/sidebar_idoit.coffee
  1278. msgid "Change Objects"
  1279. msgstr ""
  1280. #: app/assets/javascripts/app/views/profile/password.jst.eco
  1281. msgid "Change Your Password"
  1282. msgstr ""
  1283. #: app/assets/javascripts/app/views/generic/history.jst.eco
  1284. #: app/assets/javascripts/app/views/knowledge_base/sidebar/generic_list.jst.eco
  1285. msgid "Change order"
  1286. msgstr ""
  1287. #: app/assets/javascripts/app/views/object_manager/index.jst.eco
  1288. msgid "Changed"
  1289. msgstr ""
  1290. #: app/assets/javascripts/app/views/object_manager/index.jst.eco
  1291. #: app/views/mailer/ticket_update/cs.html.erb
  1292. #: app/views/mailer/ticket_update/de.html.erb
  1293. #: app/views/mailer/ticket_update/en.html.erb
  1294. #: app/views/mailer/ticket_update/es.html.erb
  1295. #: app/views/mailer/ticket_update/fr.html.erb
  1296. #: app/views/mailer/ticket_update/it.html.erb
  1297. #: app/views/mailer/ticket_update/pt-br.html.erb
  1298. #: app/views/mailer/ticket_update/ru.html.erb
  1299. #: app/views/mailer/ticket_update/zh-cn.html.erb
  1300. #: app/views/mailer/ticket_update/zh-tw.html.erb
  1301. msgid "Changes"
  1302. msgstr ""
  1303. #: app/assets/javascripts/app/controllers/knowledge_base/permissions_dialog.coffee
  1304. msgid "Changes could not be loaded."
  1305. msgstr ""
  1306. #: app/assets/javascripts/app/controllers/knowledge_base/permissions_dialog.coffee
  1307. #: app/assets/javascripts/app/views/knowledge_base/base_form.coffee
  1308. msgid "Changes could not be saved."
  1309. msgstr ""
  1310. #: app/assets/javascripts/app/views/object_manager/index.jst.eco
  1311. msgid "Changes were made that require a database update."
  1312. msgstr ""
  1313. #: app/assets/javascripts/app/controllers/_channel/email.coffee
  1314. #: app/assets/javascripts/app/controllers/_channel/google.coffee
  1315. #: app/assets/javascripts/app/controllers/_channel/microsoft365.coffee
  1316. #: app/assets/javascripts/app/controllers/_integration/slack.coffee
  1317. #: app/assets/javascripts/app/models/email_address.coffee
  1318. #: app/assets/javascripts/app/models/postmaster_filter.coffee
  1319. #: app/assets/javascripts/app/views/ticket_zoom/article_view.jst.eco
  1320. msgid "Channel"
  1321. msgstr ""
  1322. #: db/seeds/permissions.rb
  1323. msgid "Channel - Chat"
  1324. msgstr ""
  1325. #: db/seeds/permissions.rb
  1326. msgid "Channel - Email"
  1327. msgstr ""
  1328. #: db/seeds/permissions.rb
  1329. msgid "Channel - Facebook"
  1330. msgstr ""
  1331. #: db/seeds/permissions.rb
  1332. msgid "Channel - Form"
  1333. msgstr ""
  1334. #: db/seeds/permissions.rb
  1335. msgid "Channel - Google"
  1336. msgstr ""
  1337. #: db/seeds/permissions.rb
  1338. msgid "Channel - Microsoft 365"
  1339. msgstr ""
  1340. #: db/seeds/permissions.rb
  1341. msgid "Channel - SMS"
  1342. msgstr ""
  1343. #: db/seeds/permissions.rb
  1344. msgid "Channel - Telegram"
  1345. msgstr ""
  1346. #: db/seeds/permissions.rb
  1347. msgid "Channel - Twitter"
  1348. msgstr ""
  1349. #: db/seeds/permissions.rb
  1350. msgid "Channel - Web"
  1351. msgstr ""
  1352. #: app/assets/javascripts/app/views/dashboard/stats/ticket_channel_distribution.jst.eco
  1353. msgid "Channel Distribution"
  1354. msgstr ""
  1355. #: app/assets/javascripts/app/controllers/manage.coffee
  1356. msgid "Channels"
  1357. msgstr ""
  1358. #: app/assets/javascripts/app/controllers/_channel/chat.coffee
  1359. #: app/assets/javascripts/app/controllers/chat.coffee
  1360. #: app/assets/javascripts/app/views/channel/chat.jst.eco
  1361. #: app/controllers/first_steps_controller.rb
  1362. #: db/seeds/permissions.rb
  1363. msgid "Chat"
  1364. msgstr ""
  1365. #: app/assets/javascripts/app/views/channel/topics.jst.eco
  1366. msgid "Chat ID"
  1367. msgstr ""
  1368. #: app/assets/javascripts/app/views/channel/chat.jst.eco
  1369. msgid "Chat Title"
  1370. msgstr ""
  1371. #: public/assets/chat/chat-no-jquery.coffee
  1372. #: public/assets/chat/chat.coffee
  1373. msgid "Chat closed by %s"
  1374. msgstr ""
  1375. #: app/assets/javascripts/app/controllers/chat.coffee
  1376. msgid "Chat not answered, automatically set to offline."
  1377. msgstr ""
  1378. #: app/assets/javascripts/app/controllers/_channel/chat.coffee
  1379. msgid "Chats"
  1380. msgstr ""
  1381. #: app/assets/javascripts/app/controllers/chat.coffee
  1382. #: app/assets/javascripts/app/views/customer_chat/chat_header.jst.eco
  1383. msgid "Chatting Customers"
  1384. msgstr ""
  1385. #: db/seeds/schedulers.rb
  1386. msgid "Check 'Channel' streams."
  1387. msgstr ""
  1388. #: db/seeds/schedulers.rb
  1389. msgid "Check channels."
  1390. msgstr ""
  1391. #: lib/search_index_backend.rb
  1392. msgid "Check the response and payload for detailed information:"
  1393. msgstr ""
  1394. #: app/assets/javascripts/app/views/object_manager/attribute/multiselect.jst.eco
  1395. #: app/assets/javascripts/app/views/object_manager/attribute/select.jst.eco
  1396. msgid "Check this box if you want to customise how options are sorted. If the box is not checked, values are sorted in alphabetical order."
  1397. msgstr ""
  1398. #: app/assets/javascripts/app/controllers/_integration/check_mk.coffee
  1399. msgid "Checkmk"
  1400. msgstr ""
  1401. #: db/seeds/settings.rb
  1402. msgid "Checkmk integration"
  1403. msgstr ""
  1404. #: db/seeds/settings.rb
  1405. msgid "Checkmk token"
  1406. msgstr ""
  1407. #: db/seeds/settings.rb
  1408. msgid "Checksum"
  1409. msgstr ""
  1410. #: app/assets/javascripts/app/controllers/widget/link/ticket.coffee
  1411. msgid "Child"
  1412. msgstr ""
  1413. #: app/assets/javascripts/app/views/widget/template.jst.eco
  1414. msgid "Choose attributes and then save them as a new template."
  1415. msgstr ""
  1416. #: app/assets/javascripts/app/views/twitter/account_edit.jst.eco
  1417. msgid "Choose if retweets should also be converted to tickets."
  1418. msgstr ""
  1419. #: app/assets/javascripts/app/views/facebook/account_edit.jst.eco
  1420. msgid "Choose the Group to which page posts will get added."
  1421. msgstr ""
  1422. #: app/assets/javascripts/app/views/twitter/account_edit.jst.eco
  1423. msgid "Choose the group to which direct messages will get added."
  1424. msgstr ""
  1425. #: app/assets/javascripts/app/views/twitter/account_edit.jst.eco
  1426. msgid "Choose the group to which mentions will get added."
  1427. msgstr ""
  1428. #: app/assets/javascripts/app/views/telegram/bot_add.jst.eco
  1429. #: app/assets/javascripts/app/views/telegram/bot_edit.jst.eco
  1430. msgid "Choose the group to which messages will get added."
  1431. msgstr ""
  1432. #: app/assets/javascripts/app/views/profile/language.jst.eco
  1433. msgid "Choose your language."
  1434. msgstr ""
  1435. #: app/assets/javascripts/app/views/password/reset_change.jst.eco
  1436. msgid "Choose your new password."
  1437. msgstr ""
  1438. #: app/assets/javascripts/app/models/user.coffee
  1439. msgid "Christmas holiday"
  1440. msgstr ""
  1441. #: db/seeds/object_manager_attributes.rb
  1442. msgid "City"
  1443. msgstr ""
  1444. #: db/seeds/schedulers.rb
  1445. msgid "Clean up 'Cti::Log'."
  1446. msgstr ""
  1447. #: db/seeds/schedulers.rb
  1448. msgid "Clean up 'HttpLog'."
  1449. msgstr ""
  1450. #: db/seeds/schedulers.rb
  1451. msgid "Clean up ActiveJob locks."
  1452. msgstr ""
  1453. #: db/seeds/schedulers.rb
  1454. msgid "Clean up cache."
  1455. msgstr ""
  1456. #: db/seeds/schedulers.rb
  1457. msgid "Clean up closed sessions."
  1458. msgstr ""
  1459. #: db/seeds/schedulers.rb
  1460. msgid "Clean up dead sessions."
  1461. msgstr ""
  1462. #: db/seeds/schedulers.rb
  1463. msgid "Clean up expired sessions."
  1464. msgstr ""
  1465. #: app/frontend/shared/components/Form/fields/FieldDate/FieldDateTimeInput.vue
  1466. msgid "Clear"
  1467. msgstr ""
  1468. #: app/frontend/shared/components/CommonInputSearch/CommonInputSearch.vue
  1469. msgid "Clear Search"
  1470. msgstr ""
  1471. #: app/frontend/shared/components/Form/fields/FieldSelect/FieldSelectInput.vue
  1472. #: app/frontend/shared/components/Form/fields/FieldTreeSelect/FieldTreeSelectInput.vue
  1473. msgid "Clear Selection"
  1474. msgstr ""
  1475. #: app/assets/javascripts/app/controllers/_integration/clearbit.coffee
  1476. #: app/assets/javascripts/app/views/integration/clearbit.jst.eco
  1477. msgid "Clearbit"
  1478. msgstr ""
  1479. #: db/seeds/settings.rb
  1480. msgid "Clearbit config"
  1481. msgstr ""
  1482. #: db/seeds/settings.rb
  1483. msgid "Clearbit integration"
  1484. msgstr ""
  1485. #: app/views/knowledge_base/public/not_found.html.erb
  1486. msgid "Click here"
  1487. msgstr ""
  1488. #: app/assets/javascripts/app/views/integration/idoit.jst.eco
  1489. #: db/seeds/settings.rb
  1490. msgid "Client ID"
  1491. msgstr ""
  1492. #: db/seeds/settings.rb
  1493. msgid "Client Secret"
  1494. msgstr ""
  1495. #: app/assets/javascripts/app/models/application.coffee
  1496. msgid "Clients"
  1497. msgstr ""
  1498. #: app/assets/javascripts/app/controllers/_application_controller/table.coffee
  1499. msgid "Clone"
  1500. msgstr ""
  1501. #: app/assets/javascripts/app/controllers/_application_controller/_modal_generic_description.coffee
  1502. #: app/assets/javascripts/app/controllers/_application_controller/_modal_generic_error_modal.coffee
  1503. #: app/assets/javascripts/app/controllers/_plugin/maintenance.coffee
  1504. #: app/assets/javascripts/app/controllers/_settings/area_proxy.coffee
  1505. #: app/assets/javascripts/app/controllers/widget/error_modal.coffee
  1506. #: app/assets/javascripts/app/controllers/widget/import_result.coffee
  1507. msgid "Close"
  1508. msgstr ""
  1509. #: db/seeds/macros.rb
  1510. msgid "Close & Tag as Spam"
  1511. msgstr ""
  1512. #: lib/excel_sheet/ticket.rb
  1513. msgid "Close Diff In Min"
  1514. msgstr ""
  1515. #: lib/excel_sheet/ticket.rb
  1516. msgid "Close Escalation At"
  1517. msgstr ""
  1518. #: lib/excel_sheet/ticket.rb
  1519. msgid "Close In Min"
  1520. msgstr ""
  1521. #: db/seeds/schedulers.rb
  1522. msgid "Close chat sessions where participants are offline."
  1523. msgstr ""
  1524. #: app/assets/javascripts/app/controllers/_plugin/keyboard_shortcuts.coffee
  1525. msgid "Close current tab"
  1526. msgstr ""
  1527. #: app/assets/javascripts/app/models/macro.coffee
  1528. #: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco
  1529. #: db/seeds/settings.rb
  1530. msgid "Close tab"
  1531. msgstr ""
  1532. #: app/assets/javascripts/app/models/macro.coffee
  1533. #: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco
  1534. #: db/seeds/settings.rb
  1535. msgid "Close tab on ticket close"
  1536. msgstr ""
  1537. #: app/assets/javascripts/app/views/widget/ticket_stats_frequency.jst.eco
  1538. #: app/models/report.rb
  1539. msgid "Closed"
  1540. msgstr ""
  1541. #: app/assets/javascripts/app/views/time_accounting/by_ticket.jst.eco
  1542. #: lib/excel_sheet/ticket.rb
  1543. msgid "Closed At"
  1544. msgstr ""
  1545. #: app/assets/javascripts/app/controllers/widget/ticket_stats.coffee
  1546. #: app/assets/javascripts/app/controllers/widget/user.coffee
  1547. msgid "Closed Tickets"
  1548. msgstr ""
  1549. #: app/assets/javascripts/app/models/ticket.coffee
  1550. msgid "Closing time"
  1551. msgstr ""
  1552. #: db/seeds/settings.rb
  1553. msgid "Color representation of the open ticket indicator in the sidebar."
  1554. msgstr ""
  1555. #: app/assets/javascripts/app/controllers/widget/ticket_bulk_form.coffee
  1556. msgid "Comment"
  1557. msgstr ""
  1558. #: app/models/report.rb
  1559. msgid "Communication"
  1560. msgstr ""
  1561. #: app/assets/javascripts/app/views/getting_started/base.jst.eco
  1562. msgid "Company Inc."
  1563. msgstr ""
  1564. #: app/assets/javascripts/app/controllers/_plugin/translation_support.coffee
  1565. msgid "Complete translations"
  1566. msgstr ""
  1567. #: app/assets/javascripts/app/views/data_privacy/index.jst.eco
  1568. msgid "Completed Tasks"
  1569. msgstr ""
  1570. #: public/assets/chat/views/chat.eco
  1571. msgid "Compose your message…"
  1572. msgstr ""
  1573. #: app/assets/javascripts/app/controllers/_manage/ticket_auto_assignment.coffee
  1574. #: app/assets/javascripts/app/controllers/time_accounting.coffee
  1575. #: app/assets/javascripts/app/models/job.coffee
  1576. #: app/assets/javascripts/app/models/trigger.coffee
  1577. msgid "Conditions for affected objects"
  1578. msgstr ""
  1579. #: app/assets/javascripts/app/models/overview.coffee
  1580. msgid "Conditions for shown Tickets"
  1581. msgstr ""
  1582. #: app/assets/javascripts/app/controllers/widget/placeholder.coffee
  1583. msgid "Config"
  1584. msgstr ""
  1585. #: app/assets/javascripts/app/controllers/_plugin/maintenance.coffee
  1586. msgid "Config has changed"
  1587. msgstr ""
  1588. #: app/assets/javascripts/app/views/import/otrs.jst.eco
  1589. #: app/assets/javascripts/app/views/integration/exchange_wizard.jst.eco
  1590. #: app/assets/javascripts/app/views/integration/ldap_wizard.jst.eco
  1591. #: app/controllers/first_steps_controller.rb
  1592. msgid "Configuration"
  1593. msgstr ""
  1594. #: app/assets/javascripts/app/views/knowledge_base/server_snippet.jst.eco
  1595. msgid "Configuration for %s"
  1596. msgstr ""
  1597. #: app/assets/javascripts/app/views/integration/exchange.jst.eco
  1598. #: app/assets/javascripts/app/views/integration/ldap.jst.eco
  1599. msgid "Configure"
  1600. msgstr ""
  1601. #: app/assets/javascripts/app/views/facebook/list.jst.eco
  1602. #: app/assets/javascripts/app/views/google/list.jst.eco
  1603. #: app/assets/javascripts/app/views/microsoft365/list.jst.eco
  1604. #: app/assets/javascripts/app/views/twitter/list.jst.eco
  1605. msgid "Configure App"
  1606. msgstr ""
  1607. #: app/assets/javascripts/app/controllers/getting_started/base.coffee
  1608. msgid "Configure Basic Settings"
  1609. msgstr ""
  1610. #: app/assets/javascripts/app/controllers/_plugin/keyboard_shortcuts.coffee
  1611. msgid "Confirm/submit dialog"
  1612. msgstr ""
  1613. #: app/assets/javascripts/app/controllers/_application_controller/_modal_generic_confirm.coffee
  1614. #: app/assets/javascripts/app/controllers/_application_controller/_modal_generic_destroy_confirm.coffee
  1615. #: app/assets/javascripts/app/controllers/tag.coffee
  1616. #: app/assets/javascripts/app/controllers/taskbar_widget.coffee
  1617. #: app/assets/javascripts/app/views/agent_ticket_view/bulk.jst.eco
  1618. msgid "Confirmation"
  1619. msgstr ""
  1620. #: app/assets/javascripts/app/views/knowledge_base/delete.coffee
  1621. msgid "Confirmation failed."
  1622. msgstr ""
  1623. #: lib/search_index_backend.rb
  1624. msgid "Conflicting date ranges"
  1625. msgstr ""
  1626. #: app/controllers/reports_controller.rb
  1627. msgid "Conflicting date ranges. Please check your selected report profile."
  1628. msgstr ""
  1629. #: app/assets/javascripts/app/views/channel/email_account_wizard.jst.eco
  1630. #: app/assets/javascripts/app/views/getting_started/email.jst.eco
  1631. #: app/assets/javascripts/app/views/integration/exchange_wizard.jst.eco
  1632. #: app/assets/javascripts/app/views/integration/ldap_wizard.jst.eco
  1633. msgid "Connect"
  1634. msgstr ""
  1635. #: app/assets/javascripts/app/controllers/getting_started/channel.coffee
  1636. #: app/assets/javascripts/app/controllers/getting_started/channel_email_pre_configured.coffee
  1637. #: app/assets/javascripts/app/views/getting_started/channel.jst.eco
  1638. #: app/assets/javascripts/app/views/getting_started/email_pre_configured.jst.eco
  1639. msgid "Connect Channels"
  1640. msgstr ""
  1641. #: app/assets/javascripts/app/controllers/_channel/facebook.coffee
  1642. #: app/assets/javascripts/app/views/facebook/index.jst.eco
  1643. msgid "Connect Facebook App"
  1644. msgstr ""
  1645. #: app/assets/javascripts/app/controllers/_channel/google.coffee
  1646. #: app/assets/javascripts/app/views/google/index.jst.eco
  1647. msgid "Connect Google App"
  1648. msgstr ""
  1649. #: app/assets/javascripts/app/controllers/_channel/microsoft365.coffee
  1650. #: app/assets/javascripts/app/views/microsoft365/index.jst.eco
  1651. msgid "Connect Microsoft 365 App"
  1652. msgstr ""
  1653. #: app/assets/javascripts/app/controllers/_channel/twitter.coffee
  1654. #: app/assets/javascripts/app/views/twitter/index.jst.eco
  1655. msgid "Connect Twitter App"
  1656. msgstr ""
  1657. #: public/assets/chat/views/loader.eco
  1658. msgid "Connecting"
  1659. msgstr ""
  1660. #: app/assets/javascripts/app/views/integration/exchange_wizard.jst.eco
  1661. #: app/assets/javascripts/app/views/integration/ldap_wizard.jst.eco
  1662. msgid "Connecting …"
  1663. msgstr ""
  1664. #: public/assets/chat/chat-no-jquery.coffee
  1665. #: public/assets/chat/chat.coffee
  1666. msgid "Connection lost"
  1667. msgstr ""
  1668. #: public/assets/chat/chat-no-jquery.coffee
  1669. #: public/assets/chat/chat.coffee
  1670. msgid "Connection re-established"
  1671. msgstr ""
  1672. #: lib/search_index_backend.rb
  1673. msgid "Connection refused"
  1674. msgstr ""
  1675. #: app/controllers/import_freshdesk_controller.rb
  1676. #: app/controllers/import_otrs_controller.rb
  1677. #: app/controllers/import_zendesk_controller.rb
  1678. #: lib/email_helper/probe.rb
  1679. msgid "Connection refused!"
  1680. msgstr ""
  1681. #: app/assets/javascripts/app/controllers/_settings/area_proxy.coffee
  1682. msgid "Connection test successful"
  1683. msgstr ""
  1684. #: app/assets/javascripts/app/models/knowledge_base_answer.coffee
  1685. #: app/assets/javascripts/app/models/text_module.coffee
  1686. #: app/assets/javascripts/app/views/integration/placetel.jst.eco
  1687. msgid "Content"
  1688. msgstr ""
  1689. #: app/assets/javascripts/app/controllers/idoit_object_selector.coffee
  1690. msgid "Content could not be loaded."
  1691. msgstr ""
  1692. #: app/models/store.rb
  1693. msgid "Content preview could not be generated."
  1694. msgstr ""
  1695. #: app/assets/javascripts/app/controllers/knowledge_base/content_controller.coffee
  1696. msgid "Content was changed since loading"
  1697. msgstr ""
  1698. #: app/assets/javascripts/app/models/core_workflow.coffee
  1699. msgid "Context"
  1700. msgstr ""
  1701. #: app/assets/javascripts/app/views/channel/email_account_wizard.jst.eco
  1702. #: app/assets/javascripts/app/views/channel/email_notification_wizard.jst.eco
  1703. #: app/assets/javascripts/app/views/getting_started/agent.jst.eco
  1704. #: app/assets/javascripts/app/views/getting_started/email.jst.eco
  1705. #: app/assets/javascripts/app/views/getting_started/email_notification.jst.eco
  1706. #: app/assets/javascripts/app/views/integration/exchange_wizard.jst.eco
  1707. #: app/assets/javascripts/app/views/integration/ldap_wizard.jst.eco
  1708. msgid "Continue"
  1709. msgstr ""
  1710. #: app/assets/javascripts/app/views/import/otrs.jst.eco
  1711. msgid "Continue anyway"
  1712. msgstr ""
  1713. #: app/assets/javascripts/app/controllers/_plugin/maintenance.coffee
  1714. #: app/assets/javascripts/app/controllers/_plugin/session_taken_over.coffee
  1715. #: app/assets/javascripts/app/controllers/_plugin/session_timeout.coffee
  1716. msgid "Continue session"
  1717. msgstr ""
  1718. #: app/frontend/apps/mobile/modules/login/views/Login.vue
  1719. msgid "Continue to desktop app"
  1720. msgstr ""
  1721. #: app/assets/javascripts/app/views/translation/index.jst.eco
  1722. msgid "Contributing Translations"
  1723. msgstr ""
  1724. #: lib/sessions/event/chat_transfer.rb
  1725. msgid "Conversation is transferred into another chat. Please stay tuned."
  1726. msgstr ""
  1727. #: app/assets/javascripts/app/views/twitter/list.jst.eco
  1728. msgid "Conversion of retweets into tickets is turned off."
  1729. msgstr ""
  1730. #: app/assets/javascripts/app/controllers/_application_controller/_base.coffee
  1731. msgid "Copied to clipboard!"
  1732. msgstr ""
  1733. #: app/assets/javascripts/app/controllers/_plugin/electron_events.coffee
  1734. msgid "Copy"
  1735. msgstr ""
  1736. #: app/assets/javascripts/app/controllers/_plugin/keyboard_shortcuts.coffee
  1737. msgid "Copy current object number (e. g. Ticket#) to clipboard"
  1738. msgstr ""
  1739. #: app/assets/javascripts/app/controllers/_application_controller/_base.coffee
  1740. msgid "Copy to clipboard: Ctrl+C, Enter"
  1741. msgstr ""
  1742. #: db/seeds/permissions.rb
  1743. msgid "Core Workflow"
  1744. msgstr ""
  1745. #: db/seeds/settings.rb
  1746. msgid "Core Workflow Ajax Mode"
  1747. msgstr ""
  1748. #: app/assets/javascripts/app/controllers/core_workflow.coffee
  1749. msgid "Core Workflows"
  1750. msgstr ""
  1751. #: app/assets/javascripts/app/controllers/core_workflow.coffee
  1752. #: app/assets/javascripts/app/models/core_workflow.coffee
  1753. msgid "Core Workflows are actions or constraints on selections in forms. Depending on an action, it is possible to hide or restrict fields or to change the obligation to fill them in."
  1754. msgstr ""
  1755. #: app/assets/javascripts/app/views/tag/table.jst.eco
  1756. msgid "Count"
  1757. msgstr ""
  1758. #: app/assets/javascripts/app/views/integration/exchange_last_import.jst.eco
  1759. #: app/assets/javascripts/app/views/integration/exchange_wizard.jst.eco
  1760. #: app/assets/javascripts/app/views/integration/ldap_last_import.jst.eco
  1761. #: app/assets/javascripts/app/views/integration/ldap_wizard.jst.eco
  1762. msgid "Counting entries. This may take a while."
  1763. msgstr ""
  1764. #: db/seeds/object_manager_attributes.rb
  1765. msgid "Country"
  1766. msgstr ""
  1767. #: app/assets/javascripts/app/controllers/_dashboard/first_steps_clues.coffee
  1768. #: app/assets/javascripts/app/controllers/_profile/token_access.coffee
  1769. #: app/assets/javascripts/app/controllers/knowledge_base/add_form.coffee
  1770. #: app/assets/javascripts/app/models/group.coffee
  1771. #: app/assets/javascripts/app/views/agent_ticket_create.jst.eco
  1772. #: app/assets/javascripts/app/views/agent_user_create.jst.eco
  1773. #: app/assets/javascripts/app/views/customer_ticket_create.jst.eco
  1774. #: app/assets/javascripts/app/views/getting_started/admin.jst.eco
  1775. #: app/assets/javascripts/app/views/object_manager/index.jst.eco
  1776. #: app/assets/javascripts/app/views/profile/token_access.jst.eco
  1777. #: app/assets/javascripts/app/views/translation/todo.jst.eco
  1778. #: app/assets/javascripts/app/views/widget/shared_draft.jst.eco
  1779. msgid "Create"
  1780. msgstr ""
  1781. #: app/assets/javascripts/app/controllers/getting_started/admin.coffee
  1782. msgid "Create Admin"
  1783. msgstr ""
  1784. #: lib/excel_sheet/ticket.rb
  1785. msgid "Create Channel"
  1786. msgstr ""
  1787. #: app/assets/javascripts/app/views/knowledge_base/new_controller.coffee
  1788. msgid "Create Knowledge Base"
  1789. msgstr ""
  1790. #: app/controllers/first_steps_controller.rb
  1791. msgid "Create Macros"
  1792. msgstr ""
  1793. #: app/controllers/first_steps_controller.rb
  1794. msgid "Create Text Modules"
  1795. msgstr ""
  1796. #: app/assets/javascripts/app/models/text_module.coffee
  1797. msgid "Create Text Modules to **spend less time writing responses**. Text Modules can include smart variables like the user's name or email address.\n\nExamples of snippets are:\n\n* Hello Mrs. #{ticket.customer.lastname},\n* Hello Mr. #{ticket.customer.lastname},\n* Hello #{ticket.customer.firstname},\n* My name is #{user.firstname},\n\nOf course, you can also use multi-line snippets.\n\nAvailable objects are:\n* ticket (e.g. ticket.state, ticket.group)\n* ticket.customer (e.g. ticket.customer.firstname, ticket.customer.lastname)\n* ticket.owner (e.g. ticket.owner.firstname, ticket.owner.lastname)\n* ticket.organization (e.g. ticket.organization.name)\n* user (e.g. user.firstname, user.email)\n\nTo select placeholders from a list, just enter \"::\"."
  1798. msgstr ""
  1799. #: app/controllers/first_steps_controller.rb
  1800. msgid "Create a Test Ticket"
  1801. msgstr ""
  1802. #: app/assets/javascripts/app/views/widget/shared_draft.jst.eco
  1803. msgid "Create a shared draft"
  1804. msgstr ""
  1805. #: app/assets/javascripts/app/controllers/knowledge_base/reader_controller.coffee
  1806. msgid "Create a translation"
  1807. msgstr ""
  1808. #: db/seeds/permissions.rb
  1809. msgid "Create and set up %s"
  1810. msgstr ""
  1811. #: app/assets/javascripts/app/views/signup.jst.eco
  1812. msgid "Create my account"
  1813. msgstr ""
  1814. #: app/assets/javascripts/app/lib/app_post/user_organization_autocompletion.coffee
  1815. msgid "Create new Customer"
  1816. msgstr ""
  1817. #: app/assets/javascripts/app/lib/app_post/_object_organization_autocompletion.coffee
  1818. msgid "Create new object"
  1819. msgstr ""
  1820. #: app/assets/javascripts/app/views/generic/object_import/index.jst.eco
  1821. msgid "Create new records"
  1822. msgstr ""
  1823. #: app/assets/javascripts/app/controllers/_integration/clearbit.coffee
  1824. msgid "Create organizations automatically if record has one."
  1825. msgstr ""
  1826. #: app/assets/javascripts/app/models/sla.coffee
  1827. msgid "Create rules that single out the tickets for the Service Level Agreement."
  1828. msgstr ""
  1829. #: app/assets/javascripts/app/views/customer_not_ticket_exists.jst.eco
  1830. msgid "Create your first ticket"
  1831. msgstr ""
  1832. #: app/assets/javascripts/app/models/application.coffee
  1833. #: app/assets/javascripts/app/models/calendar.coffee
  1834. #: app/assets/javascripts/app/models/chat.coffee
  1835. #: app/assets/javascripts/app/models/chat_sessions.coffee
  1836. #: app/assets/javascripts/app/models/data_privacy_task.coffee
  1837. #: app/assets/javascripts/app/models/job.coffee
  1838. #: app/assets/javascripts/app/models/ldap_source.coffee
  1839. #: app/assets/javascripts/app/models/overview.coffee
  1840. #: app/assets/javascripts/app/models/postmaster_filter.coffee
  1841. #: app/assets/javascripts/app/models/role.coffee
  1842. #: app/assets/javascripts/app/models/signature.coffee
  1843. #: app/assets/javascripts/app/models/sla.coffee
  1844. #: app/assets/javascripts/app/models/ticket_article.coffee
  1845. #: app/assets/javascripts/app/models/ticket_priority.coffee
  1846. #: app/assets/javascripts/app/models/ticket_state.coffee
  1847. #: app/assets/javascripts/app/views/agent_ticket_view/detail.jst.eco
  1848. #: app/assets/javascripts/app/views/integration/smime_list.jst.eco
  1849. #: app/assets/javascripts/app/views/popover/ticket.jst.eco
  1850. #: app/assets/javascripts/app/views/profile/token_access.jst.eco
  1851. #: app/assets/javascripts/app/views/widget/ticket_stats_frequency.jst.eco
  1852. #: app/models/report.rb
  1853. msgid "Created"
  1854. msgstr ""
  1855. #: app/assets/javascripts/app/views/time_accounting/by_activity.jst.eco
  1856. #: app/assets/javascripts/app/views/time_accounting/by_ticket.jst.eco
  1857. #: lib/excel_sheet/ticket.rb
  1858. msgid "Created At"
  1859. msgstr ""
  1860. #: app/assets/javascripts/app/models/knowledge_base_answer_translation.coffee
  1861. #: app/assets/javascripts/app/models/organization.coffee
  1862. #: app/assets/javascripts/app/models/ticket.coffee
  1863. #: app/assets/javascripts/app/models/user.coffee
  1864. #: app/assets/javascripts/app/views/customer_chat/chat_window.jst.eco
  1865. #: app/assets/javascripts/app/views/widget/http_log.jst.eco
  1866. #: app/assets/javascripts/app/views/widget/http_log_show.jst.eco
  1867. #: app/controllers/time_accountings_controller.rb
  1868. #: app/frontend/apps/mobile/modules/ticket/views/TicketOverview.vue
  1869. msgid "Created at"
  1870. msgstr ""
  1871. #: app/assets/javascripts/app/models/calendar.coffee
  1872. #: app/assets/javascripts/app/models/chat.coffee
  1873. #: app/assets/javascripts/app/models/chat_sessions.coffee
  1874. #: app/assets/javascripts/app/models/data_privacy_task.coffee
  1875. #: app/assets/javascripts/app/models/job.coffee
  1876. #: app/assets/javascripts/app/models/ldap_source.coffee
  1877. #: app/assets/javascripts/app/models/organization.coffee
  1878. #: app/assets/javascripts/app/models/overview.coffee
  1879. #: app/assets/javascripts/app/models/postmaster_filter.coffee
  1880. #: app/assets/javascripts/app/models/role.coffee
  1881. #: app/assets/javascripts/app/models/signature.coffee
  1882. #: app/assets/javascripts/app/models/sla.coffee
  1883. #: app/assets/javascripts/app/models/ticket.coffee
  1884. #: app/assets/javascripts/app/models/ticket_article.coffee
  1885. #: app/assets/javascripts/app/models/user.coffee
  1886. msgid "Created by"
  1887. msgstr ""
  1888. #: app/models/report.rb
  1889. msgid "Creation Channels"
  1890. msgstr ""
  1891. #: app/assets/javascripts/app/controllers/core_workflow.coffee
  1892. msgid "Creation mask"
  1893. msgstr ""
  1894. #: app/assets/javascripts/app/controllers/_profile/avatar.coffee
  1895. msgid "Crop Image"
  1896. msgstr ""
  1897. #: app/assets/javascripts/app/views/monitoring.jst.eco
  1898. msgid "Current Status"
  1899. msgstr ""
  1900. #: app/assets/javascripts/app/views/monitoring.jst.eco
  1901. msgid "Current Token"
  1902. msgstr ""
  1903. #: app/assets/javascripts/app/controllers/_ui_element/ticket_perform_action.coffee
  1904. #: app/assets/javascripts/app/models/signature.coffee
  1905. #: app/assets/javascripts/app/models/text_module.coffee
  1906. msgid "Current User"
  1907. msgstr ""
  1908. #: app/assets/javascripts/app/controllers/_profile/password.coffee
  1909. msgid "Current password"
  1910. msgstr ""
  1911. #: app/controllers/users_controller.rb
  1912. msgid "Current password is wrong!"
  1913. msgstr ""
  1914. #: app/controllers/users_controller.rb
  1915. msgid "Current password needed!"
  1916. msgstr ""
  1917. #: app/controllers/application_controller/has_user.rb
  1918. msgid "Current user has no permission to use 'From'/'X-On-Behalf-Of'!"
  1919. msgstr ""
  1920. #: app/assets/javascripts/app/controllers/ticket_overview.coffee
  1921. #: app/frontend/apps/mobile/modules/ticket/views/TicketOverview.vue
  1922. msgid "Currently no overview is assigned to your roles. Please contact your administrator."
  1923. msgstr ""
  1924. #: app/assets/javascripts/app/controllers/_ui_element/core_workflow_condition.coffee
  1925. msgid "Custom"
  1926. msgstr ""
  1927. #: app/assets/javascripts/app/controllers/_manage/knowledge_base.coffee
  1928. #: app/assets/javascripts/app/models/knowledge_base.coffee
  1929. msgid "Custom URL"
  1930. msgstr ""
  1931. #: lib/knowledge_base/server_snippet.rb
  1932. msgid "Custom address is not set"
  1933. msgstr ""
  1934. #: app/assets/javascripts/app/controllers/_application_controller/form.coffee
  1935. #: app/assets/javascripts/app/controllers/_ui_element/_application_selector.coffee
  1936. #: app/assets/javascripts/app/controllers/_ui_element/core_workflow_condition.coffee
  1937. #: app/assets/javascripts/app/controllers/_ui_element/postmaster_set.coffee
  1938. #: app/assets/javascripts/app/controllers/_ui_element/ticket_perform_action.coffee
  1939. #: app/assets/javascripts/app/controllers/agent_ticket_create/sidebar_customer.coffee
  1940. #: app/assets/javascripts/app/controllers/ticket_customer.coffee
  1941. #: app/assets/javascripts/app/controllers/ticket_zoom/sidebar_customer.coffee
  1942. #: app/assets/javascripts/app/controllers/widget/user.coffee
  1943. #: app/assets/javascripts/app/models/ticket.coffee
  1944. #: app/assets/javascripts/app/views/agent_ticket_view/detail.jst.eco
  1945. #: app/assets/javascripts/app/views/popover/ticket.jst.eco
  1946. #: app/assets/javascripts/app/views/time_accounting/by_activity.jst.eco
  1947. #: app/assets/javascripts/app/views/time_accounting/by_customer.jst.eco
  1948. #: app/assets/javascripts/app/views/time_accounting/by_ticket.jst.eco
  1949. #: app/assets/javascripts/app/views/time_accounting/index.jst.eco
  1950. #: app/controllers/time_accountings_controller.rb
  1951. #: db/seeds/object_manager_attributes.rb
  1952. #: db/seeds/roles.rb
  1953. #: db/seeds/ticket_article_senders.rb
  1954. #: lib/excel_sheet/ticket.rb
  1955. msgid "Customer"
  1956. msgstr ""
  1957. #: app/assets/javascripts/app/controllers/chat.coffee
  1958. #: app/assets/javascripts/app/views/customer_chat/index.jst.eco
  1959. msgid "Customer Chat"
  1960. msgstr ""
  1961. #: db/seeds/settings.rb
  1962. msgid "Customer selection based on sender and receiver list"
  1963. msgstr ""
  1964. #: app/assets/javascripts/app/views/data_privacy/preview.jst.eco
  1965. msgid "Customer tickets of the user will get deleted on execution of the task. No rollback possible."
  1966. msgstr ""
  1967. #: app/assets/javascripts/app/models/organization.coffee
  1968. #: db/seeds/object_manager_attributes.rb
  1969. msgid "Customers in the organization can view each other's items."
  1970. msgstr ""
  1971. #: app/assets/javascripts/app/controllers/_plugin/electron_events.coffee
  1972. msgid "Cut"
  1973. msgstr ""
  1974. #: app/assets/javascripts/app/controllers/_dashboard/first_steps_clues.coffee
  1975. #: app/assets/javascripts/app/controllers/_plugin/keyboard_shortcuts.coffee
  1976. #: app/assets/javascripts/app/controllers/dashboard.coffee
  1977. #: app/assets/javascripts/app/controllers/package.coffee
  1978. msgid "Dashboard"
  1979. msgstr ""
  1980. #: app/assets/javascripts/app/controllers/data_privacy.coffee
  1981. #: app/assets/javascripts/app/views/data_privacy/index.jst.eco
  1982. #: db/seeds/permissions.rb
  1983. msgid "Data Privacy"
  1984. msgstr ""
  1985. #: app/assets/javascripts/app/controllers/data_privacy.coffee
  1986. msgid "DataPrivacyTask"
  1987. msgstr ""
  1988. #: app/assets/javascripts/app/controllers/data_privacy.coffee
  1989. msgid "DataPrivacyTasks"
  1990. msgstr ""
  1991. #: db/seeds/settings.rb
  1992. msgid "Database"
  1993. msgstr ""
  1994. #: app/assets/javascripts/app/views/object_manager/index.jst.eco
  1995. msgid "Database Update Required"
  1996. msgstr ""
  1997. #: app/assets/javascripts/app/controllers/knowledge_base/content_can_be_published_form.coffee
  1998. #: app/assets/javascripts/app/views/calendar/holiday_selector.jst.eco
  1999. msgid "Date"
  2000. msgstr ""
  2001. #: app/assets/javascripts/app/views/translation/list.jst.eco
  2002. msgid "Date & Time"
  2003. msgstr ""
  2004. #: app/assets/javascripts/app/controllers/_ui_element/object_manager_attribute.coffee
  2005. msgid "Date & time field"
  2006. msgstr ""
  2007. #: db/seeds/settings.rb
  2008. msgid "Date (Year.Month.Day.SystemID.Counter)"
  2009. msgstr ""
  2010. #: app/assets/javascripts/app/controllers/_ui_element/object_manager_attribute.coffee
  2011. msgid "Date field"
  2012. msgstr ""
  2013. #: app/assets/javascripts/app/views/generic/timer.jst.eco
  2014. #: app/assets/javascripts/app/views/report/time_range_picker.jst.eco
  2015. msgid "Day"
  2016. msgstr ""
  2017. #: app/assets/javascripts/app/controllers/_ui_element/time_range.coffee
  2018. msgid "Day(s)"
  2019. msgstr ""
  2020. #: app/assets/javascripts/app/views/generic/timeplan.jst.eco
  2021. msgid "Days"
  2022. msgstr ""
  2023. #: app/assets/javascripts/app/controllers/_ui_element/basedate.coffee
  2024. #: app/assets/javascripts/app/controllers/report.coffee
  2025. #: app/assets/javascripts/app/controllers/time_accounting.coffee
  2026. #: app/frontend/shared/components/Form/fields/FieldDate/FieldDateTimeInput.vue
  2027. msgid "Dec"
  2028. msgstr ""
  2029. #: app/assets/javascripts/app/controllers/_ui_element/basedate.coffee
  2030. #: app/frontend/shared/components/Form/fields/FieldDate/FieldDateTimeInput.vue
  2031. msgid "December"
  2032. msgstr ""
  2033. #: app/assets/javascripts/app/controllers/ticket_zoom/article_view.coffee
  2034. msgid "Decryption failed!"
  2035. msgstr ""
  2036. #: app/assets/javascripts/app/controllers/ticket_zoom/article_view.coffee
  2037. msgid "Decryption was successful."
  2038. msgstr ""
  2039. #: app/assets/javascripts/app/controllers/_ui_element/object_manager_attribute.coffee
  2040. #: app/assets/javascripts/app/views/calendar/index.jst.eco
  2041. #: app/assets/javascripts/app/views/channel/chat.jst.eco
  2042. #: app/assets/javascripts/app/views/generic/multi_locales.jst.eco
  2043. #: app/assets/javascripts/app/views/object_manager/attribute/boolean.jst.eco
  2044. #: app/assets/javascripts/app/views/object_manager/attribute/multiselect.jst.eco
  2045. #: app/assets/javascripts/app/views/object_manager/attribute/select.jst.eco
  2046. #: db/seeds/settings.rb
  2047. msgid "Default"
  2048. msgstr ""
  2049. #: app/assets/javascripts/app/views/integration/smime.jst.eco
  2050. msgid "Default Behavior"
  2051. msgstr ""
  2052. #: db/seeds/settings.rb
  2053. msgid "Default Screen"
  2054. msgstr ""
  2055. #: app/assets/javascripts/app/models/role.coffee
  2056. msgid "Default at Signup"
  2057. msgstr ""
  2058. #: db/seeds/settings.rb
  2059. msgid "Default calendar tickets subscriptions"
  2060. msgstr ""
  2061. #: app/assets/javascripts/app/views/integration/cti.jst.eco
  2062. #: app/assets/javascripts/app/views/integration/placetel.jst.eco
  2063. #: app/assets/javascripts/app/views/integration/sipgate.jst.eco
  2064. msgid "Default caller ID for outbound calls."
  2065. msgstr ""
  2066. #: app/assets/javascripts/app/controllers/_ui_element/object_manager_attribute.coffee
  2067. msgid "Default time diff (hours)"
  2068. msgstr ""
  2069. #: app/assets/javascripts/app/controllers/_ui_element/object_manager_attribute.coffee
  2070. msgid "Default time diff (minutes)"
  2071. msgstr ""
  2072. #: db/seeds/settings.rb
  2073. msgid "Default type for a new ticket"
  2074. msgstr ""
  2075. #: app/assets/javascripts/app/views/settings/ticket_auto_assignment.jst.eco
  2076. #: db/seeds/settings.rb
  2077. msgid "Define an exception of \"automatic assignment\" for certain users (e.g. executives)."
  2078. msgstr ""
  2079. #: db/seeds/settings.rb
  2080. msgid "Define max. attachment size for Elasticsearch."
  2081. msgstr ""
  2082. #: db/seeds/settings.rb
  2083. msgid "Define max. payload size for Elasticsearch."
  2084. msgstr ""
  2085. #: db/seeds/settings.rb
  2086. msgid "Define pipeline name for Elasticsearch."
  2087. msgstr ""
  2088. #: db/seeds/settings.rb
  2089. msgid "Define postmaster filter to check if follow-ups get created (based on admin settings)."
  2090. msgstr ""
  2091. #: db/seeds/settings.rb
  2092. msgid "Define postmaster filter to import archive mailboxes."
  2093. msgstr ""
  2094. #: db/seeds/settings.rb
  2095. msgid "Define postmaster filter."
  2096. msgstr ""
  2097. #: app/assets/javascripts/app/views/integration/cti.jst.eco
  2098. msgid "Define queues or call destinations (whatever fits your PBX) and map your agents to it. By this, Zammad can support your agents by showing them only relevant call entries and notifications."
  2099. msgstr ""
  2100. #: db/seeds/settings.rb
  2101. msgid "Defines Elasticsearch index name."
  2102. msgstr ""
  2103. #: db/seeds/settings.rb
  2104. msgid "Defines Freshdesk endpoint authentication API key."
  2105. msgstr ""
  2106. #: db/seeds/settings.rb
  2107. msgid "Defines HTTP basic auth password of Elasticsearch."
  2108. msgstr ""
  2109. #: db/seeds/settings.rb
  2110. msgid "Defines HTTP basic auth user of Elasticsearch."
  2111. msgstr ""
  2112. #: db/seeds/settings.rb
  2113. msgid "Defines HTTP basic authentication password (only if OTRS is protected via HTTP basic auth)."
  2114. msgstr ""
  2115. #: db/seeds/settings.rb
  2116. msgid "Defines HTTP basic authentication user (only if OTRS is protected via HTTP basic auth)."
  2117. msgstr ""
  2118. #: db/seeds/settings.rb
  2119. msgid "Defines Kayako endpoint authentication password."
  2120. msgstr ""
  2121. #: db/seeds/settings.rb
  2122. msgid "Defines Kayako endpoint authentication user."
  2123. msgstr ""
  2124. #: db/seeds/settings.rb
  2125. msgid "Defines OTRS endpoint authentication key."
  2126. msgstr ""
  2127. #: db/seeds/settings.rb
  2128. msgid "Defines Zendesk endpoint authentication API key."
  2129. msgstr ""
  2130. #: db/seeds/settings.rb
  2131. msgid "Defines Zendesk endpoint authentication user."
  2132. msgstr ""
  2133. #: db/seeds/settings.rb
  2134. msgid "Defines a Freshdesk endpoint to import users, tickets, states, and articles."
  2135. msgstr ""
  2136. #: db/seeds/settings.rb
  2137. msgid "Defines a Kayako endpoint to import users, tickets, states, and articles."
  2138. msgstr ""
  2139. #: db/seeds/settings.rb
  2140. msgid "Defines a Zendesk endpoint to import users, tickets, states, and articles."
  2141. msgstr ""
  2142. #: db/seeds/settings.rb
  2143. msgid "Defines a dashboard stats backend that gets scheduled automatically."
  2144. msgstr ""
  2145. #: db/seeds/settings.rb
  2146. msgid "Defines a limit for how many tickets can be created via web form from one IP address per day."
  2147. msgstr ""
  2148. #: db/seeds/settings.rb
  2149. msgid "Defines a limit for how many tickets can be created via web form from one IP address per hour."
  2150. msgstr ""
  2151. #: db/seeds/settings.rb
  2152. msgid "Defines a limit for how many tickets can be created via web form per day."
  2153. msgstr ""
  2154. #: db/seeds/settings.rb
  2155. msgid "Defines after how many failed logins accounts will be deactivated."
  2156. msgstr ""
  2157. #: db/seeds/settings.rb
  2158. msgid "Defines an OTRS endpoint to import users, tickets, states, and articles."
  2159. msgstr ""
  2160. #: db/seeds/settings.rb
  2161. msgid "Defines attachment extensions which will be ignored by Elasticsearch."
  2162. msgstr ""
  2163. #: db/seeds/settings.rb
  2164. msgid "Defines endpoint of Elasticsearch."
  2165. msgstr ""
  2166. #: db/seeds/settings.rb
  2167. msgid "Defines groups for which a customer can create tickets via web interface. \"-\" means all groups are available."
  2168. msgstr ""
  2169. #: db/seeds/settings.rb
  2170. msgid "Defines how the From field of emails (sent from answers and email tickets) should look like."
  2171. msgstr ""
  2172. #: db/seeds/settings.rb
  2173. msgid "Defines how the last customer contact time of tickets should be calculated."
  2174. msgstr ""
  2175. #: db/seeds/settings.rb
  2176. msgid "Defines how to reach websocket server. \"websocket\" is default on production, \"websocketPort\" is for CI"
  2177. msgstr ""
  2178. #: db/seeds/settings.rb
  2179. msgid "Defines if Checkmk (https://checkmk.com/) is enabled or not."
  2180. msgstr ""
  2181. #: db/seeds/settings.rb
  2182. msgid "Defines if Clearbit (http://www.clearbit.com) is enabled or not."
  2183. msgstr ""
  2184. #: db/seeds/settings.rb
  2185. msgid "Defines if Exchange is enabled or not."
  2186. msgstr ""
  2187. #: db/seeds/settings.rb
  2188. msgid "Defines if Icinga (http://www.icinga.org) is enabled or not."
  2189. msgstr ""
  2190. #: db/seeds/settings.rb
  2191. msgid "Defines if Knowledge Base navbar button is enabled for users without Knowledge Base permission."
  2192. msgstr ""
  2193. #: db/seeds/settings.rb
  2194. msgid "Defines if Knowledge Base navbar button is enabled."
  2195. msgstr ""
  2196. #: db/seeds/settings.rb
  2197. msgid "Defines if LDAP is enabled or not."
  2198. msgstr ""
  2199. #: db/seeds/settings.rb
  2200. msgid "Defines if Monit (https://mmonit.com/monit/) is enabled or not."
  2201. msgstr ""
  2202. #: db/seeds/settings.rb
  2203. msgid "Defines if Nagios (http://www.nagios.org) is enabled or not."
  2204. msgstr ""
  2205. #: db/seeds/settings.rb
  2206. msgid "Defines if Placetel (http://www.placetel.de) is enabled or not."
  2207. msgstr ""
  2208. #: db/seeds/settings.rb
  2209. msgid "Defines if S/MIME encryption is enabled or not."
  2210. msgstr ""
  2211. #: db/seeds/settings.rb
  2212. msgid "Defines if Slack (http://www.slack.org) is enabled or not."
  2213. msgstr ""
  2214. #: db/seeds/settings.rb
  2215. msgid "Defines if a customer can create tickets via the web interface."
  2216. msgstr ""
  2217. #: db/seeds/settings.rb
  2218. msgid "Defines if application is in init mode."
  2219. msgstr ""
  2220. #: db/seeds/settings.rb
  2221. msgid "Defines if application is used as online service."
  2222. msgstr ""
  2223. #: db/seeds/settings.rb
  2224. msgid "Defines if generic CTI integration is enabled or not."
  2225. msgstr ""
  2226. #: db/seeds/settings.rb
  2227. msgid "Defines if sipgate.io (http://www.sipgate.io) is enabled or not."
  2228. msgstr ""
  2229. #: db/seeds/settings.rb
  2230. msgid "Defines if the GitHub (http://www.github.com) integration is enabled or not."
  2231. msgstr ""
  2232. #: db/seeds/settings.rb
  2233. msgid "Defines if the GitLab (http://www.gitlab.com) integration is enabled or not."
  2234. msgstr ""
  2235. #: db/seeds/settings.rb
  2236. msgid "Defines if the agent has to accept a confirmation dialog when changing the article visibility to \"public\"."
  2237. msgstr ""
  2238. #: db/seeds/settings.rb
  2239. msgid "Defines if the application is in developer mode (all users have the same password and password reset will work without email delivery)."
  2240. msgstr ""
  2241. #: db/seeds/settings.rb
  2242. msgid "Defines if the core workflow communication should run over ajax instead of websockets."
  2243. msgstr ""
  2244. #: db/seeds/settings.rb
  2245. msgid "Defines if the email should be displayed in the result of the user/organization widget."
  2246. msgstr ""
  2247. #: db/seeds/settings.rb
  2248. msgid "Defines if the i-doit (https://www.i-doit.org/) integration is enabled or not."
  2249. msgstr ""
  2250. #: db/seeds/settings.rb
  2251. msgid "Defines if tickets can be created via web form."
  2252. msgstr ""
  2253. #: db/seeds/settings.rb
  2254. msgid "Defines if tickets should be closed if service is recovered."
  2255. msgstr ""
  2256. #: db/seeds/settings.rb
  2257. msgid "Defines karma levels."
  2258. msgstr ""
  2259. #: db/seeds/settings.rb
  2260. msgid "Defines postmaster filter for filters managed via admin interface."
  2261. msgstr ""
  2262. #: db/seeds/settings.rb
  2263. msgid "Defines postmaster filter to check if email has been created by Zammad itself and will set the article sender."
  2264. msgstr ""
  2265. #: db/seeds/settings.rb
  2266. msgid "Defines postmaster filter to check if the email is a self-created notification email, then ignore it to prevent email loops."
  2267. msgstr ""
  2268. #: db/seeds/settings.rb
  2269. msgid "Defines postmaster filter to handle secure mailing."
  2270. msgstr ""
  2271. #: db/seeds/settings.rb
  2272. msgid "Defines postmaster filter to identify Jira mails for correct follow-ups."
  2273. msgstr ""
  2274. #: db/seeds/settings.rb
  2275. msgid "Defines postmaster filter to identify ServiceNow mails for correct follow-ups."
  2276. msgstr ""
  2277. #: db/seeds/settings.rb
  2278. msgid "Defines postmaster filter to identify auto responses to prevent auto replies from Zammad."
  2279. msgstr ""
  2280. #: db/seeds/settings.rb
  2281. msgid "Defines postmaster filter to identify follow-up ticket for merged tickets."
  2282. msgstr ""
  2283. #: db/seeds/settings.rb
  2284. msgid "Defines postmaster filter to identify follow-ups (based on admin settings)."
  2285. msgstr ""
  2286. #: db/seeds/settings.rb
  2287. msgid "Defines postmaster filter to identify out-of-office emails for follow-up detection and keeping current ticket state."
  2288. msgstr ""
  2289. #: db/seeds/settings.rb
  2290. msgid "Defines postmaster filter to identify postmaster bounces; and disables sending notification if delivery fails permanently."
  2291. msgstr ""
  2292. #: db/seeds/settings.rb
  2293. msgid "Defines postmaster filter to identify postmaster bounces; and handles them as follow-up of the original tickets"
  2294. msgstr ""
  2295. #: db/seeds/settings.rb
  2296. msgid "Defines postmaster filter to identify postmaster bounces; and reopens tickets if delivery fails permanently."
  2297. msgstr ""
  2298. #: db/seeds/settings.rb
  2299. msgid "Defines postmaster filter to identify sender user."
  2300. msgstr ""
  2301. #: db/seeds/settings.rb
  2302. msgid "Defines postmaster filter to manage Icinga (http://www.icinga.org) emails."
  2303. msgstr ""
  2304. #: db/seeds/settings.rb
  2305. msgid "Defines postmaster filter to manage Monit (https://mmonit.com/monit/) emails."
  2306. msgstr ""
  2307. #: db/seeds/settings.rb
  2308. msgid "Defines postmaster filter to manage Nagios (http://www.nagios.org) emails."
  2309. msgstr ""
  2310. #: db/seeds/settings.rb
  2311. msgid "Defines postmaster filter to remove X-Zammad headers from untrustworthy sources."
  2312. msgstr ""
  2313. #: db/seeds/settings.rb
  2314. msgid "Defines postmaster filter to set the owner (based on group follow up assignment)."
  2315. msgstr ""
  2316. #: db/seeds/settings.rb
  2317. msgid "Defines postmaster filter to set the sender/from of emails based on reply-to header."
  2318. msgstr ""
  2319. #: db/seeds/settings.rb
  2320. msgid "Defines postmaster filter which sets the articles visibility to internal if it is a rely to an internal article or the last outgoing email is internal."
  2321. msgstr ""
  2322. #: db/seeds/settings.rb
  2323. msgid "Defines postmaster filter."
  2324. msgstr ""
  2325. #: db/seeds/settings.rb
  2326. msgid "Defines pretty date format."
  2327. msgstr ""
  2328. #: db/seeds/settings.rb
  2329. msgid "Defines searchable models."
  2330. msgstr ""
  2331. #: db/seeds/settings.rb
  2332. msgid "Defines sync transaction backend."
  2333. msgstr ""
  2334. #: db/seeds/settings.rb
  2335. msgid "Defines the CSS font information for HTML emails."
  2336. msgstr ""
  2337. #: db/seeds/settings.rb
  2338. msgid "Defines the CTI config."
  2339. msgstr ""
  2340. #: db/seeds/settings.rb
  2341. msgid "Defines the Checkmk token for allowing updates."
  2342. msgstr ""
  2343. #: db/seeds/settings.rb
  2344. msgid "Defines the Clearbit config."
  2345. msgstr ""
  2346. #: db/seeds/settings.rb
  2347. msgid "Defines the Exchange config."
  2348. msgstr ""
  2349. #: db/seeds/settings.rb
  2350. msgid "Defines the HTTP protocol of your instance."
  2351. msgstr ""
  2352. #: db/seeds/settings.rb
  2353. msgid "Defines the Placetel config."
  2354. msgstr ""
  2355. #: db/seeds/settings.rb
  2356. msgid "Defines the S/MIME config."
  2357. msgstr ""
  2358. #: db/seeds/settings.rb
  2359. msgid "Defines the Slack config."
  2360. msgstr ""
  2361. #: db/seeds/settings.rb
  2362. msgid "Defines the agent limit."
  2363. msgstr ""
  2364. #: db/seeds/settings.rb
  2365. msgid "Defines the backend for geo IP lookups. Also shows location of an IP address if it is traceable."
  2366. msgstr ""
  2367. #: db/seeds/settings.rb
  2368. msgid "Defines the backend for geo calendar lookups. Used for initial calendar succession."
  2369. msgstr ""
  2370. #: db/seeds/settings.rb
  2371. msgid "Defines the backend for geo location lookups to store geo locations for addresses."
  2372. msgstr ""
  2373. #: db/seeds/settings.rb
  2374. msgid "Defines the backend for user and organization image lookups."
  2375. msgstr ""
  2376. #: db/seeds/settings.rb
  2377. msgid "Defines the default calendar tickets subscription settings."
  2378. msgstr ""
  2379. #: db/seeds/settings.rb
  2380. msgid "Defines the default screen."
  2381. msgstr ""
  2382. #: db/seeds/settings.rb
  2383. msgid "Defines the default system language."
  2384. msgstr ""
  2385. #: db/seeds/settings.rb
  2386. msgid "Defines the default system timezone."
  2387. msgstr ""
  2388. #: db/seeds/settings.rb
  2389. msgid "Defines the default visibility for new notes."
  2390. msgstr ""
  2391. #: db/seeds/settings.rb
  2392. msgid "Defines the duration of customer activity (in seconds) on a call until the user profile dialog is shown."
  2393. msgstr ""
  2394. #: db/seeds/settings.rb
  2395. msgid "Defines the fully qualified domain name of the system. This setting is used as a variable, #{setting.fqdn} which is found in all forms of messaging used by the application, to build links to the tickets within your system."
  2396. msgstr ""
  2397. #: db/seeds/settings.rb
  2398. msgid "Defines the group of created tickets."
  2399. msgstr ""
  2400. #: db/seeds/settings.rb
  2401. msgid "Defines the group of tickets created via web form."
  2402. msgstr ""
  2403. #: db/seeds/settings.rb
  2404. msgid "Defines the i-doit config."
  2405. msgstr ""
  2406. #: db/seeds/settings.rb
  2407. msgid "Defines the karma levels."
  2408. msgstr ""
  2409. #: db/seeds/settings.rb
  2410. msgid "Defines the log levels for various logging actions of the Sequencer."
  2411. msgstr ""
  2412. #: db/seeds/settings.rb
  2413. msgid "Defines the logo of the application, shown in the web interface."
  2414. msgstr ""
  2415. #: db/seeds/settings.rb
  2416. msgid "Defines the maximum accepted email size in MB."
  2417. msgstr ""
  2418. #: db/seeds/settings.rb
  2419. msgid "Defines the name of the application, shown in the web interface, tabs, and title bar of the web browser."
  2420. msgstr ""
  2421. #: db/seeds/settings.rb
  2422. msgid "Defines the port of the websocket server."
  2423. msgstr ""
  2424. #: db/seeds/settings.rb
  2425. msgid "Defines the random application secret."
  2426. msgstr ""
  2427. #: db/seeds/settings.rb
  2428. msgid "Defines the searchable models."
  2429. msgstr ""
  2430. #: db/seeds/settings.rb
  2431. msgid "Defines the sender email address of Icinga emails."
  2432. msgstr ""
  2433. #: db/seeds/settings.rb
  2434. msgid "Defines the sender email address of Nagios emails."
  2435. msgstr ""
  2436. #: db/seeds/settings.rb
  2437. msgid "Defines the sender email address of the service emails."
  2438. msgstr ""
  2439. #: db/seeds/settings.rb
  2440. msgid "Defines the sender of email notifications."
  2441. msgstr ""
  2442. #: db/seeds/settings.rb
  2443. msgid "Defines the separator between the agent's real name and the given group email address."
  2444. msgstr ""
  2445. #: db/seeds/settings.rb
  2446. msgid "Defines the session timeout for inactivity of users. Based on the assigned permissions the highest timeout value will be used, otherwise the default."
  2447. msgstr ""
  2448. #: db/seeds/settings.rb
  2449. msgid "Defines the sipgate.io config."
  2450. msgstr ""
  2451. #: db/seeds/settings.rb
  2452. msgid "Defines the state of auto-closed tickets."
  2453. msgstr ""
  2454. #: db/seeds/settings.rb
  2455. msgid "Defines the system identifier. Every ticket number contains this ID. This ensures that only tickets which belong to your system will be processed as follow-ups (useful when communicating between two instances of Zammad)."
  2456. msgstr ""
  2457. #: db/seeds/settings.rb
  2458. msgid "Defines the tab behaviour after a ticket action."
  2459. msgstr ""
  2460. #: db/seeds/settings.rb
  2461. msgid "Defines the timeframe during which a self-created note can be deleted."
  2462. msgstr ""
  2463. #: db/seeds/settings.rb
  2464. msgid "Defines the token for Placetel."
  2465. msgstr ""
  2466. #: db/seeds/settings.rb
  2467. msgid "Defines the transaction backend to detect customer signatures in emails."
  2468. msgstr ""
  2469. #: db/seeds/settings.rb
  2470. msgid "Defines the transaction backend to execute triggers."
  2471. msgstr ""
  2472. #: db/seeds/settings.rb
  2473. msgid "Defines the transaction backend to send agent notifications."
  2474. msgstr ""
  2475. #: db/seeds/settings.rb
  2476. msgid "Defines the transaction backend which creates the karma score."
  2477. msgstr ""
  2478. #: db/seeds/settings.rb
  2479. msgid "Defines the transaction backend which detects caller IDs in objects and stores them for CTI lookups."
  2480. msgstr ""
  2481. #: db/seeds/settings.rb
  2482. msgid "Defines the transaction backend which posts messages to Slack (http://www.slack.com)."
  2483. msgstr ""
  2484. #: db/seeds/settings.rb
  2485. msgid "Defines the transaction backend which will enrich customer and organization information from Clearbit (http://www.clearbit.com)."
  2486. msgstr ""
  2487. #: db/seeds/settings.rb
  2488. msgid "Defines transaction backend."
  2489. msgstr ""
  2490. #: app/assets/javascripts/app/controllers/_application_controller/table.coffee
  2491. #: app/assets/javascripts/app/controllers/_manage/knowledge_base.coffee
  2492. #: app/assets/javascripts/app/controllers/data_privacy.coffee
  2493. #: app/assets/javascripts/app/controllers/knowledge_base/delete_action.coffee
  2494. #: app/assets/javascripts/app/controllers/user.coffee
  2495. #: app/assets/javascripts/app/controllers/user_profile.coffee
  2496. #: app/assets/javascripts/app/views/calendar/index.jst.eco
  2497. #: app/assets/javascripts/app/views/channel/email_account_overview.jst.eco
  2498. #: app/assets/javascripts/app/views/channel/sms_account_overview.jst.eco
  2499. #: app/assets/javascripts/app/views/channel/topics.jst.eco
  2500. #: app/assets/javascripts/app/views/facebook/list.jst.eco
  2501. #: app/assets/javascripts/app/views/generic/multi_locales.jst.eco
  2502. #: app/assets/javascripts/app/views/google/list.jst.eco
  2503. #: app/assets/javascripts/app/views/integration/smime_list.jst.eco
  2504. #: app/assets/javascripts/app/views/knowledge_base/public_menu_form_item.jst.eco
  2505. #: app/assets/javascripts/app/views/microsoft365/list.jst.eco
  2506. #: app/assets/javascripts/app/views/object_manager/index.jst.eco
  2507. #: app/assets/javascripts/app/views/profile/devices.jst.eco
  2508. #: app/assets/javascripts/app/views/profile/token_access.jst.eco
  2509. #: app/assets/javascripts/app/views/session.jst.eco
  2510. #: app/assets/javascripts/app/views/sla/index.jst.eco
  2511. #: app/assets/javascripts/app/views/tag/table.jst.eco
  2512. #: app/assets/javascripts/app/views/telegram/index.jst.eco
  2513. #: app/assets/javascripts/app/views/twitter/list.jst.eco
  2514. #: app/assets/javascripts/app/views/widget/template.jst.eco
  2515. #: app/assets/javascripts/app/views/widget/text_module.jst.eco
  2516. #: app/frontend/apps/mobile/modules/account/views/AccountAvatar.vue
  2517. msgid "Delete"
  2518. msgstr ""
  2519. #: app/assets/javascripts/app/controllers/_profile/avatar.coffee
  2520. msgid "Delete Avatar?"
  2521. msgstr ""
  2522. #: app/assets/javascripts/app/controllers/ticket_zoom/sidebar_customer.coffee
  2523. msgid "Delete Customer"
  2524. msgstr ""
  2525. #: app/assets/javascripts/app/views/generic/attachment_item.jst.eco
  2526. msgid "Delete File"
  2527. msgstr ""
  2528. #: app/assets/javascripts/app/views/knowledge_base/delete.coffee
  2529. msgid "Delete Knowledge Base"
  2530. msgstr ""
  2531. #: app/assets/javascripts/app/views/data_privacy/tasks.jst.eco
  2532. msgid "Delete User"
  2533. msgstr ""
  2534. #: app/assets/javascripts/app/controllers/knowledge_base/delete_action.coffee
  2535. msgid "Delete all child categories and answers, then try again."
  2536. msgstr ""
  2537. #: app/assets/javascripts/app/views/generic/object_import/index.jst.eco
  2538. msgid "Delete all existing records first."
  2539. msgstr ""
  2540. #: db/seeds/schedulers.rb
  2541. msgid "Delete obsolete classic IMAP backup."
  2542. msgstr ""
  2543. #: db/seeds/schedulers.rb
  2544. msgid "Delete old 'RecentView' entries."
  2545. msgstr ""
  2546. #: db/seeds/schedulers.rb
  2547. msgid "Delete old activity stream entries."
  2548. msgstr ""
  2549. #: db/seeds/schedulers.rb
  2550. msgid "Delete old online notification entries."
  2551. msgstr ""
  2552. #: db/seeds/schedulers.rb
  2553. msgid "Delete old stats store entries."
  2554. msgstr ""
  2555. #: db/seeds/schedulers.rb
  2556. msgid "Delete old token entries."
  2557. msgstr ""
  2558. #: db/seeds/schedulers.rb
  2559. msgid "Delete old upload cache entries."
  2560. msgstr ""
  2561. #: app/assets/javascripts/app/controllers/data_privacy.coffee
  2562. msgid "Delete organization?"
  2563. msgstr ""
  2564. #: app/assets/javascripts/app/views/generic/object_import/index.jst.eco
  2565. msgid "Delete records"
  2566. msgstr ""
  2567. #: app/assets/javascripts/app/views/data_privacy/tasks.jst.eco
  2568. msgid "Deleted Organization"
  2569. msgstr ""
  2570. #: app/assets/javascripts/app/views/data_privacy/tasks.jst.eco
  2571. msgid "Deleted tickets (%s in total)"
  2572. msgstr ""
  2573. #: app/assets/javascripts/app/controllers/data_privacy.coffee
  2574. msgid "Deletion Task"
  2575. msgstr ""
  2576. #: app/assets/javascripts/app/controllers/knowledge_base/delete_action.coffee
  2577. msgid "Deletion failed."
  2578. msgstr ""
  2579. #: app/assets/javascripts/app/views/ticket_zoom/article_view_delivery_failed.jst.eco
  2580. msgid "Delivery failed"
  2581. msgstr ""
  2582. #: db/seeds/object_manager_attributes.rb
  2583. msgid "Department"
  2584. msgstr ""
  2585. #: app/assets/javascripts/app/controllers/_application_controller/_modal_generic_description.coffee
  2586. #: app/assets/javascripts/app/views/calendar/holiday_selector.jst.eco
  2587. #: app/assets/javascripts/app/views/calendar/index.jst.eco
  2588. #: app/assets/javascripts/app/views/channel/chat.jst.eco
  2589. #: app/assets/javascripts/app/views/data_privacy/index.jst.eco
  2590. #: app/assets/javascripts/app/views/generic/admin/index.jst.eco
  2591. #: app/assets/javascripts/app/views/integration/clearbit.jst.eco
  2592. #: app/assets/javascripts/app/views/integration/cti.jst.eco
  2593. #: app/assets/javascripts/app/views/integration/index.jst.eco
  2594. #: app/assets/javascripts/app/views/integration/placetel.jst.eco
  2595. #: app/assets/javascripts/app/views/integration/sipgate.jst.eco
  2596. #: app/assets/javascripts/app/views/settings/form.jst.eco
  2597. #: app/assets/javascripts/app/views/sla/index.jst.eco
  2598. msgid "Description"
  2599. msgstr ""
  2600. #: app/assets/javascripts/app/views/channel/chat.jst.eco
  2601. #: app/assets/javascripts/app/views/channel/form.jst.eco
  2602. msgid "Designer"
  2603. msgstr ""
  2604. #: app/assets/javascripts/app/controllers/_channel/email.coffee
  2605. #: app/assets/javascripts/app/controllers/_channel/google.coffee
  2606. #: app/assets/javascripts/app/controllers/_channel/microsoft365.coffee
  2607. #: app/assets/javascripts/app/views/channel/email_account_overview.jst.eco
  2608. #: app/assets/javascripts/app/views/google/list.jst.eco
  2609. #: app/assets/javascripts/app/views/microsoft365/list.jst.eco
  2610. #: app/models/channel/driver/sms/message_bird.rb
  2611. #: app/models/channel/driver/sms/twilio.rb
  2612. msgid "Destination Group"
  2613. msgstr ""
  2614. #: app/assets/javascripts/app/views/integration/cti.jst.eco
  2615. #: app/assets/javascripts/app/views/integration/placetel.jst.eco
  2616. #: app/assets/javascripts/app/views/integration/sipgate.jst.eco
  2617. msgid "Destination caller ID"
  2618. msgstr ""
  2619. #: app/assets/javascripts/app/views/integration/cti.jst.eco
  2620. msgid "Destination caller ID or queue"
  2621. msgstr ""
  2622. #: db/seeds/settings.rb
  2623. msgid "Developer System"
  2624. msgstr ""
  2625. #: app/assets/javascripts/app/views/integration/placetel.jst.eco
  2626. msgid "Device"
  2627. msgstr ""
  2628. #: app/assets/javascripts/app/controllers/_profile/devices.coffee
  2629. #: app/assets/javascripts/app/views/profile/devices.jst.eco
  2630. #: db/seeds/permissions.rb
  2631. msgid "Devices"
  2632. msgstr ""
  2633. #: app/assets/javascripts/app/views/profile/language.jst.eco
  2634. msgid "Did you know? You can help translating %s at:"
  2635. msgstr ""
  2636. #: db/seeds/settings.rb
  2637. msgid "Digit required"
  2638. msgstr ""
  2639. #: app/assets/javascripts/app/views/twitter/list.jst.eco
  2640. msgid "Direct Messages"
  2641. msgstr ""
  2642. #: app/assets/javascripts/app/views/twitter/account_edit.jst.eco
  2643. msgid "Direct Messages Group"
  2644. msgstr ""
  2645. #: app/assets/javascripts/app/views/profile/calendar_subscriptions.jst.eco
  2646. msgid "Direct URL"
  2647. msgstr ""
  2648. #: app/assets/javascripts/app/views/widget/http_log.jst.eco
  2649. #: app/assets/javascripts/app/views/widget/http_log_show.jst.eco
  2650. msgid "Direction"
  2651. msgstr ""
  2652. #: app/assets/javascripts/app/views/channel/email_account_overview.jst.eco
  2653. #: app/assets/javascripts/app/views/channel/sms_account_overview.jst.eco
  2654. #: app/assets/javascripts/app/views/facebook/list.jst.eco
  2655. #: app/assets/javascripts/app/views/google/list.jst.eco
  2656. #: app/assets/javascripts/app/views/microsoft365/list.jst.eco
  2657. #: app/assets/javascripts/app/views/profile/out_of_office.jst.eco
  2658. #: app/assets/javascripts/app/views/telegram/index.jst.eco
  2659. #: app/assets/javascripts/app/views/twitter/list.jst.eco
  2660. msgid "Disable"
  2661. msgstr ""
  2662. #: app/assets/javascripts/app/models/job.coffee
  2663. msgid "Disable Notifications"
  2664. msgstr ""
  2665. #: app/assets/javascripts/app/controllers/_profile/avatar.coffee
  2666. msgid "Discard"
  2667. msgstr ""
  2668. #: app/assets/javascripts/app/controllers/taskbar_widget.coffee
  2669. #: app/assets/javascripts/app/views/object_manager/index.jst.eco
  2670. msgid "Discard Changes"
  2671. msgstr ""
  2672. #: app/assets/javascripts/app/views/knowledge_base/content.jst.eco
  2673. #: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco
  2674. msgid "Discard your unsaved changes."
  2675. msgstr ""
  2676. #: app/assets/javascripts/app/models/object_manager_attribute.coffee
  2677. #: app/assets/javascripts/app/views/object_manager/attribute/boolean.jst.eco
  2678. #: app/assets/javascripts/app/views/object_manager/attribute/multiselect.jst.eco
  2679. #: app/assets/javascripts/app/views/object_manager/attribute/select.jst.eco
  2680. #: app/assets/javascripts/app/views/object_manager/index.jst.eco
  2681. msgid "Display"
  2682. msgstr ""
  2683. #: app/assets/javascripts/app/models/email_address.coffee
  2684. msgid "Display name"
  2685. msgstr ""
  2686. #: app/assets/javascripts/app/controllers/_ui_element/ticket_perform_action.coffee
  2687. msgid "Do not encrypt email"
  2688. msgstr ""
  2689. #: app/assets/javascripts/app/controllers/_ui_element/ticket_perform_action.coffee
  2690. msgid "Do not sign email"
  2691. msgstr ""
  2692. #: app/assets/javascripts/app/views/settings/proxy.jst.eco
  2693. msgid "Do not use the proxy for the following hosts."
  2694. msgstr ""
  2695. #: app/assets/javascripts/app/controllers/knowledge_base/delete_action.coffee
  2696. #: app/assets/javascripts/app/controllers/knowledge_base/sidebar/attachments.coffee
  2697. msgid "Do you really want to delete \"%s\"?"
  2698. msgstr ""
  2699. #: app/assets/javascripts/app/views/ticket_shared_draft_modal.coffee
  2700. msgid "Do you really want to delete this draft?"
  2701. msgstr ""
  2702. #: app/assets/javascripts/app/controllers/_application_controller/_modal_generic_destroy_confirm.coffee
  2703. #: app/assets/javascripts/app/controllers/tag.coffee
  2704. msgid "Do you really want to delete this object?"
  2705. msgstr ""
  2706. #: app/assets/javascripts/app/controllers/_application_controller/article_public_confirm.coffee
  2707. msgid "Do you really want to set the visibility of this article to \"public\"?"
  2708. msgstr ""
  2709. #: db/seeds/object_manager_attributes.rb
  2710. msgid "Domain"
  2711. msgstr ""
  2712. #: db/seeds/object_manager_attributes.rb
  2713. msgid "Domain based assignment"
  2714. msgstr ""
  2715. #: app/assets/javascripts/app/views/channel/form.jst.eco
  2716. msgid "Don't load CSS for form. You need to generate your own CSS for the form."
  2717. msgstr ""
  2718. #: app/assets/javascripts/app/controllers/_integration/ldap.coffee
  2719. msgid "Don't synchronize"
  2720. msgstr ""
  2721. #: app/frontend/apps/mobile/components/CommonDialog/CommonDialog.vue
  2722. #: app/frontend/apps/mobile/modules/home/views/FavoriteTicketOverviewsEdit.vue
  2723. msgid "Done"
  2724. msgstr ""
  2725. #: app/assets/javascripts/app/controllers/ticket_zoom/article_image_view.coffee
  2726. msgid "Download"
  2727. msgstr ""
  2728. #: app/assets/javascripts/app/views/import/otrs.jst.eco
  2729. msgid "Download %s Migration Plugin"
  2730. msgstr ""
  2731. #: app/assets/javascripts/app/views/report/download_button.jst.eco
  2732. msgid "Download %s record(s)"
  2733. msgstr ""
  2734. #: app/assets/javascripts/app/views/integration/smime_list.jst.eco
  2735. msgid "Download Certificate"
  2736. msgstr ""
  2737. #: app/assets/javascripts/app/views/integration/smime_list.jst.eco
  2738. msgid "Download Private Key"
  2739. msgstr ""
  2740. #: app/assets/javascripts/app/views/import/otrs.jst.eco
  2741. msgid "Download and install the %s Migration Plugin on your %s instance."
  2742. msgstr ""
  2743. #: app/assets/javascripts/app/controllers/knowledge_base/content_can_be_published_form.coffee
  2744. #: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco
  2745. msgid "Draft"
  2746. msgstr ""
  2747. #: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco
  2748. msgid "Draft available"
  2749. msgstr ""
  2750. #: app/assets/javascripts/app/controllers/_application_controller/reorder_modal.coffee
  2751. msgid "Drag to reorder"
  2752. msgstr ""
  2753. #: app/assets/javascripts/app/views/generic/attachment.jst.eco
  2754. #: app/assets/javascripts/app/views/knowledge_base/sidebar/attachments.jst.eco
  2755. #: app/assets/javascripts/app/views/ticket_zoom/article_new.jst.eco
  2756. msgid "Drop files here"
  2757. msgstr ""
  2758. #: app/assets/javascripts/app/controllers/login.coffee
  2759. msgid "Due to inactivity, you have been automatically logged out."
  2760. msgstr ""
  2761. #: app/assets/javascripts/app/controllers/_plugin/session_timeout.coffee
  2762. msgid "Due to inactivity, you will be automatically logged out within the next 30 seconds."
  2763. msgstr ""
  2764. #: app/assets/javascripts/app/views/cti/caller_log.jst.eco
  2765. msgid "Duration"
  2766. msgstr ""
  2767. #: app/assets/javascripts/app/models/user.coffee
  2768. msgid "Easter holiday"
  2769. msgstr ""
  2770. #: app/assets/javascripts/app/controllers/organization_profile.coffee
  2771. #: app/assets/javascripts/app/controllers/tag.coffee
  2772. #: app/assets/javascripts/app/controllers/user_profile.coffee
  2773. #: app/assets/javascripts/app/views/calendar/index.jst.eco
  2774. #: app/assets/javascripts/app/views/channel/email_account_overview.jst.eco
  2775. #: app/assets/javascripts/app/views/channel/sms_account_overview.jst.eco
  2776. #: app/assets/javascripts/app/views/facebook/list.jst.eco
  2777. #: app/assets/javascripts/app/views/google/list.jst.eco
  2778. #: app/assets/javascripts/app/views/knowledge_base/navigation.jst.eco
  2779. #: app/assets/javascripts/app/views/knowledge_base/public_menu_manager.jst.eco
  2780. #: app/assets/javascripts/app/views/microsoft365/list.jst.eco
  2781. #: app/assets/javascripts/app/views/sla/index.jst.eco
  2782. #: app/assets/javascripts/app/views/telegram/index.jst.eco
  2783. #: app/assets/javascripts/app/views/twitter/list.jst.eco
  2784. #: app/assets/javascripts/app/views/widget/text_module.jst.eco
  2785. #: app/frontend/apps/mobile/modules/home/views/Home.vue
  2786. msgid "Edit"
  2787. msgstr ""
  2788. #: app/assets/javascripts/app/controllers/agent_ticket_create/sidebar_customer.coffee
  2789. #: app/assets/javascripts/app/controllers/ticket_zoom/sidebar_customer.coffee
  2790. msgid "Edit Customer"
  2791. msgstr ""
  2792. #: app/assets/javascripts/app/controllers/agent_ticket_create/sidebar_organization.coffee
  2793. #: app/assets/javascripts/app/controllers/ticket_zoom/sidebar_organization.coffee
  2794. msgid "Edit Organization"
  2795. msgstr ""
  2796. #: app/assets/javascripts/app/controllers/core_workflow.coffee
  2797. msgid "Edit mask"
  2798. msgstr ""
  2799. #: db/seeds/settings.rb
  2800. msgid "Elasticsearch Attachment Extensions"
  2801. msgstr ""
  2802. #: db/seeds/settings.rb
  2803. msgid "Elasticsearch Attachment Size"
  2804. msgstr ""
  2805. #: db/seeds/settings.rb
  2806. msgid "Elasticsearch Endpoint Index"
  2807. msgstr ""
  2808. #: db/seeds/settings.rb
  2809. msgid "Elasticsearch Endpoint Password"
  2810. msgstr ""
  2811. #: db/seeds/settings.rb
  2812. msgid "Elasticsearch Endpoint URL"
  2813. msgstr ""
  2814. #: db/seeds/settings.rb
  2815. msgid "Elasticsearch Endpoint User"
  2816. msgstr ""
  2817. #: db/seeds/settings.rb
  2818. msgid "Elasticsearch Pipeline Name"
  2819. msgstr ""
  2820. #: db/seeds/settings.rb
  2821. msgid "Elasticsearch Total Payload Size"
  2822. msgstr ""
  2823. #: lib/search_index_backend.rb
  2824. msgid "Elasticsearch is not reachable. It's possible that it's not running. Please check whether it is installed."
  2825. msgstr ""
  2826. #: app/controllers/reports_controller.rb
  2827. msgid "Elasticsearch needs to be configured!"
  2828. msgstr ""
  2829. #: app/assets/javascripts/app/controllers/_channel/email.coffee
  2830. #: app/assets/javascripts/app/controllers/_ui_element/ticket_perform_action.coffee
  2831. #: app/assets/javascripts/app/controllers/agent_ticket_create.coffee
  2832. #: app/assets/javascripts/app/controllers/getting_started/channel.coffee
  2833. #: app/assets/javascripts/app/models/email_address.coffee
  2834. #: app/assets/javascripts/app/models/group.coffee
  2835. #: app/assets/javascripts/app/models/user.coffee
  2836. #: app/assets/javascripts/app/views/getting_started/email.jst.eco
  2837. #: app/assets/javascripts/app/views/import/kayako.jst.eco
  2838. #: app/assets/javascripts/app/views/import/zendesk.jst.eco
  2839. #: db/seeds/object_manager_attributes.rb
  2840. msgid "Email"
  2841. msgstr ""
  2842. #: app/models/report.rb
  2843. msgid "Email (in)"
  2844. msgstr ""
  2845. #: app/models/report.rb
  2846. msgid "Email (out)"
  2847. msgstr ""
  2848. #: db/seeds/settings.rb
  2849. msgid "Email - full quote"
  2850. msgstr ""
  2851. #: db/seeds/settings.rb
  2852. msgid "Email - quote header"
  2853. msgstr ""
  2854. #: db/seeds/settings.rb
  2855. msgid "Email - subject field"
  2856. msgstr ""
  2857. #: app/assets/javascripts/app/controllers/getting_started/channel_email.coffee
  2858. #: app/assets/javascripts/app/views/channel/email_account_wizard.jst.eco
  2859. #: app/assets/javascripts/app/views/getting_started/email.jst.eco
  2860. msgid "Email Account"
  2861. msgstr ""
  2862. #: app/assets/javascripts/app/views/channel/email_account_overview.jst.eco
  2863. msgid "Email Accounts"
  2864. msgstr ""
  2865. #: app/assets/javascripts/app/controllers/_channel/email.coffee
  2866. #: app/assets/javascripts/app/controllers/_channel/google.coffee
  2867. #: app/assets/javascripts/app/controllers/_channel/microsoft365.coffee
  2868. #: app/assets/javascripts/app/views/channel/email_account_overview.jst.eco
  2869. #: app/assets/javascripts/app/views/google/list.jst.eco
  2870. #: app/assets/javascripts/app/views/microsoft365/list.jst.eco
  2871. msgid "Email Address"
  2872. msgstr ""
  2873. #: app/assets/javascripts/app/views/channel/email_account_wizard.jst.eco
  2874. #: app/assets/javascripts/app/views/getting_started/email.jst.eco
  2875. msgid "Email Inbound"
  2876. msgstr ""
  2877. #: app/assets/javascripts/app/views/channel/email_account_overview.jst.eco
  2878. #: app/assets/javascripts/app/views/channel/email_notification_wizard.jst.eco
  2879. #: app/assets/javascripts/app/views/getting_started/email_notification.jst.eco
  2880. msgid "Email Notification"
  2881. msgstr ""
  2882. #: app/assets/javascripts/app/controllers/getting_started/email_notification.coffee
  2883. msgid "Email Notifications"
  2884. msgstr ""
  2885. #: app/assets/javascripts/app/views/channel/email_account_wizard.jst.eco
  2886. #: app/assets/javascripts/app/views/getting_started/email.jst.eco
  2887. msgid "Email Outbound"
  2888. msgstr ""
  2889. #: app/assets/javascripts/app/controllers/email_verify.coffee
  2890. msgid "Email could not be verified. Please contact your administrator."
  2891. msgstr ""
  2892. #: app/assets/javascripts/app/controllers/_channel/email.coffee
  2893. #: app/assets/javascripts/app/controllers/getting_started/channel_email.coffee
  2894. msgid "Email sending and receiving could not be verified. Please check your settings."
  2895. msgstr ""
  2896. #: app/assets/javascripts/app/controllers/user_profile.coffee
  2897. msgid "Email sent to \"%s\". Please let the user verify their email account."
  2898. msgstr ""
  2899. #: app/assets/javascripts/app/controllers/signup.coffee
  2900. msgid "Email sent to \"%s\". Please verify your email account."
  2901. msgstr ""
  2902. #: app/assets/javascripts/app/views/knowledge_base/public_menu_manager.jst.eco
  2903. #: app/assets/javascripts/app/views/knowledge_base/search_field_panel.jst.eco
  2904. #: app/assets/javascripts/app/views/twitter/account_edit.jst.eco
  2905. msgid "Empty"
  2906. msgstr ""
  2907. #: app/assets/javascripts/app/views/channel/email_account_overview.jst.eco
  2908. #: app/assets/javascripts/app/views/channel/sms_account_overview.jst.eco
  2909. #: app/assets/javascripts/app/views/facebook/list.jst.eco
  2910. #: app/assets/javascripts/app/views/google/list.jst.eco
  2911. #: app/assets/javascripts/app/views/microsoft365/list.jst.eco
  2912. #: app/assets/javascripts/app/views/profile/out_of_office.jst.eco
  2913. #: app/assets/javascripts/app/views/telegram/index.jst.eco
  2914. #: app/assets/javascripts/app/views/twitter/list.jst.eco
  2915. msgid "Enable"
  2916. msgstr ""
  2917. #: db/seeds/settings.rb
  2918. msgid "Enable Chat"
  2919. msgstr ""
  2920. #: app/assets/javascripts/app/views/api.jst.eco
  2921. #: db/seeds/settings.rb
  2922. msgid "Enable REST API access using the username/email address and password for the authentication user."
  2923. msgstr ""
  2924. #: app/assets/javascripts/app/views/api.jst.eco
  2925. msgid "Enable REST API using tokens (not username/email address and password). All users need to create their own access tokens in the user profile."
  2926. msgstr ""
  2927. #: db/seeds/settings.rb
  2928. msgid "Enable REST API using tokens (not username/email address and password). Each user needs to create its own access tokens in user profile."
  2929. msgstr ""
  2930. #: db/seeds/settings.rb
  2931. msgid "Enable Ticket creation"
  2932. msgstr ""
  2933. #: db/seeds/settings.rb
  2934. msgid "Enable auto assignment for following matching tickets."
  2935. msgstr ""
  2936. #: app/assets/javascripts/app/views/settings/ticket_auto_assignment.jst.eco
  2937. msgid "Enable automatic assignment the first time an agent opens a ticket."
  2938. msgstr ""
  2939. #: app/assets/javascripts/app/views/channel/form.jst.eco
  2940. msgid "Enable debugging for implementation."
  2941. msgstr ""
  2942. #: db/seeds/settings.rb
  2943. msgid "Enable if you want a timestamped reply header to be automatically inserted in front of quoted messages."
  2944. msgstr ""
  2945. #: db/seeds/settings.rb
  2946. msgid "Enable if you want to quote the full email in your answer. The quoted email will be put at the end of your answer. If you just want to quote a certain phrase, just mark the text and press reply (this feature is always available)."
  2947. msgstr ""
  2948. #: app/assets/javascripts/app/views/maintenance.jst.eco
  2949. msgid "Enable or disable the maintenance mode of Zammad. If enabled, _all non-administrators get logged out_ and _only administrators can start a new session_."
  2950. msgstr ""
  2951. #: db/seeds/settings.rb
  2952. msgid "Enable or disable the maintenance mode of Zammad. If enabled, all non-administrators get logged out and only administrators can start a new session."
  2953. msgstr ""
  2954. #: db/seeds/settings.rb
  2955. msgid "Enable ticket auto assignment."
  2956. msgstr ""
  2957. #: app/assets/javascripts/app/views/time_accounting/index.jst.eco
  2958. msgid "Enable time accounting for following matching tickets."
  2959. msgstr ""
  2960. #: db/seeds/settings.rb
  2961. msgid "Enable time accounting for these tickets."
  2962. msgstr ""
  2963. #: db/seeds/settings.rb
  2964. msgid "Enable time accounting."
  2965. msgstr ""
  2966. #: app/assets/javascripts/app/controllers/_plugin/keyboard_shortcuts.coffee
  2967. msgid "Enable/disable inline translations"
  2968. msgstr ""
  2969. #: db/seeds/settings.rb
  2970. msgid "Enable/disable online chat."
  2971. msgstr ""
  2972. #: app/assets/javascripts/app/views/customer_chat/setting.jst.eco
  2973. msgid "Enabled"
  2974. msgstr ""
  2975. #: db/seeds/settings.rb
  2976. msgid "Enables a sidebar to show an overview of all attachments."
  2977. msgstr ""
  2978. #: db/seeds/settings.rb
  2979. msgid "Enables button for user authentication via %s. The button will redirect to /auth/sso on user interaction."
  2980. msgstr ""
  2981. #: app/assets/javascripts/app/controllers/_channel/chat.coffee
  2982. msgid "Enables console logging."
  2983. msgstr ""
  2984. #: db/seeds/settings.rb
  2985. msgid "Enables preview of attachments."
  2986. msgstr ""
  2987. #: db/seeds/settings.rb
  2988. msgid "Enables priority icons in ticket overviews."
  2989. msgstr ""
  2990. #: db/seeds/settings.rb
  2991. msgid "Enables the automatic linking of an existing account on initial login via a third party application. If this is disabled, an existing user must first log into Zammad and then link his \"Third Party\" account to his Zammad account via Profile -> Linked Accounts."
  2992. msgstr ""
  2993. #: db/seeds/settings.rb
  2994. msgid "Enables user authentication via %s."
  2995. msgstr ""
  2996. #: db/seeds/settings.rb
  2997. msgid "Enables user authentication via %s. Register your app first at [%s](%s)."
  2998. msgstr ""
  2999. #: db/seeds/settings.rb
  3000. msgid "Enables user authentication via GitHub."
  3001. msgstr ""
  3002. #: db/seeds/settings.rb
  3003. msgid "Enables user authentication via GitLab."
  3004. msgstr ""
  3005. #: db/seeds/settings.rb
  3006. msgid "Enables user authentication via Google."
  3007. msgstr ""
  3008. #: db/seeds/settings.rb
  3009. msgid "Enables user authentication via LinkedIn."
  3010. msgstr ""
  3011. #: db/seeds/settings.rb
  3012. msgid "Enables user authentication via Microsoft 365."
  3013. msgstr ""
  3014. #: db/seeds/settings.rb
  3015. msgid "Enables user authentication via SAML."
  3016. msgstr ""
  3017. #: db/seeds/settings.rb
  3018. msgid "Enables user authentication via Weibo."
  3019. msgstr ""
  3020. #: db/seeds/settings.rb
  3021. msgid "Enables users to create their own account via web interface."
  3022. msgstr ""
  3023. #: app/assets/javascripts/app/lib/app_post/utils.coffee
  3024. msgid "Enclosed"
  3025. msgstr ""
  3026. #: app/assets/javascripts/app/lib/app_post/utils.coffee
  3027. msgid "Enclosure"
  3028. msgstr ""
  3029. #: app/assets/javascripts/app/views/agent_ticket_create.jst.eco
  3030. #: app/assets/javascripts/app/views/ticket_zoom/article_new.jst.eco
  3031. msgid "Encrypt"
  3032. msgstr ""
  3033. #: app/assets/javascripts/app/controllers/_ui_element/ticket_perform_action.coffee
  3034. msgid "Encrypt email (if not possible, discard notification)"
  3035. msgstr ""
  3036. #: app/assets/javascripts/app/controllers/_ui_element/ticket_perform_action.coffee
  3037. msgid "Encrypt email (if not possible, send notification anyway)"
  3038. msgstr ""
  3039. #: app/assets/javascripts/app/views/ticket_zoom/article_view.jst.eco
  3040. msgid "Encrypted"
  3041. msgstr ""
  3042. #: app/assets/javascripts/app/views/integration/smime_group.jst.eco
  3043. #: app/assets/javascripts/app/views/ticket_zoom/article_view.jst.eco
  3044. msgid "Encryption"
  3045. msgstr ""
  3046. #: app/assets/javascripts/app/models/webhook.coffee
  3047. #: app/assets/javascripts/app/views/integration/check_mk.jst.eco
  3048. #: app/assets/javascripts/app/views/integration/cti.jst.eco
  3049. #: app/assets/javascripts/app/views/integration/exchange.jst.eco
  3050. #: app/assets/javascripts/app/views/integration/exchange_wizard.jst.eco
  3051. #: app/assets/javascripts/app/views/integration/github.jst.eco
  3052. #: app/assets/javascripts/app/views/integration/gitlab.jst.eco
  3053. #: app/assets/javascripts/app/views/integration/idoit.jst.eco
  3054. #: app/assets/javascripts/app/views/integration/placetel.jst.eco
  3055. msgid "Endpoint"
  3056. msgstr ""
  3057. #: app/assets/javascripts/app/views/integration/cti.jst.eco
  3058. #: app/assets/javascripts/app/views/integration/placetel.jst.eco
  3059. #: app/assets/javascripts/app/views/integration/sipgate.jst.eco
  3060. msgid "Endpoint Settings"
  3061. msgstr ""
  3062. #: db/seeds.rb
  3063. msgid "English (United States)"
  3064. msgstr ""
  3065. #: app/assets/javascripts/app/views/ticket_zoom/article_new.jst.eco
  3066. msgid "Enter Note or"
  3067. msgstr ""
  3068. #: app/assets/javascripts/app/controllers/_profile/out_of_office.coffee
  3069. #: app/assets/javascripts/app/controllers/ticket_customer.coffee
  3070. #: db/seeds/object_manager_attributes.rb
  3071. msgid "Enter Person or Organization/Company"
  3072. msgstr ""
  3073. #: app/assets/javascripts/app/views/integration/smime_private_key_add.jst.eco
  3074. msgid "Enter Private Key Secret"
  3075. msgstr ""
  3076. #: app/assets/javascripts/app/views/ticket_zoom/title.jst.eco
  3077. msgid "Enter Title…"
  3078. msgstr ""
  3079. #: app/assets/javascripts/app/views/import/freshdesk.jst.eco
  3080. #: app/assets/javascripts/app/views/import/kayako.jst.eco
  3081. #: app/assets/javascripts/app/views/import/zendesk.jst.eco
  3082. msgid "Enter credentials"
  3083. msgstr ""
  3084. #: app/frontend/shared/components/Form/fields/FieldEditor/useEditorActions.ts
  3085. msgid "Enter link URL"
  3086. msgstr ""
  3087. #: app/assets/javascripts/app/views/import/freshdesk.jst.eco
  3088. #: app/assets/javascripts/app/views/import/kayako.jst.eco
  3089. msgid "Enter the Subdomain of your %s system"
  3090. msgstr ""
  3091. #: app/assets/javascripts/app/views/import/zendesk.jst.eco
  3092. msgid "Enter the URL of your %s system"
  3093. msgstr ""
  3094. #: app/assets/javascripts/app/views/import/otrs.jst.eco
  3095. msgid "Enter the link provided by the plugin at the end of the installation to link the two systems"
  3096. msgstr ""
  3097. #: app/assets/javascripts/app/controllers/_ui_element/timezone.coffee
  3098. msgid "Enter time zone"
  3099. msgstr ""
  3100. #: app/assets/javascripts/app/views/import/freshdesk.jst.eco
  3101. msgid "Enter your %s API token gained from your account profile settings."
  3102. msgstr ""
  3103. #: app/assets/javascripts/app/views/facebook/app_config.jst.eco
  3104. #: app/assets/javascripts/app/views/google/app_config.jst.eco
  3105. #: app/assets/javascripts/app/views/microsoft365/app_config.jst.eco
  3106. #: app/assets/javascripts/app/views/telegram/bot_add.jst.eco
  3107. #: app/assets/javascripts/app/views/telegram/bot_edit.jst.eco
  3108. #: app/assets/javascripts/app/views/twitter/app_config.jst.eco
  3109. msgid "Enter your %s App Keys"
  3110. msgstr ""
  3111. #: app/assets/javascripts/app/views/import/kayako.jst.eco
  3112. msgid "Enter your email address and password from your %s account which should be used for the import."
  3113. msgstr ""
  3114. #: app/assets/javascripts/app/views/import/zendesk.jst.eco
  3115. msgid "Enter your email address and the %s API token gained from your admin interface."
  3116. msgstr ""
  3117. #: app/assets/javascripts/app/controllers/password_reset.coffee
  3118. msgid "Enter your username or email address"
  3119. msgstr ""
  3120. #: app/assets/javascripts/app/controllers/_application_controller/_modal_generic_error_modal.coffee
  3121. #: app/assets/javascripts/app/controllers/_profile/out_of_office.coffee
  3122. #: app/assets/javascripts/app/controllers/_settings/area_proxy.coffee
  3123. #: app/assets/javascripts/app/controllers/ticket_zoom.coffee
  3124. #: app/assets/javascripts/app/controllers/widget/error_modal.coffee
  3125. msgid "Error"
  3126. msgstr ""
  3127. #: app/frontend/apps/mobile/modules/error/views/Error.vue
  3128. msgid "Error - %s"
  3129. msgstr ""
  3130. #: app/controllers/getting_started_controller.rb
  3131. msgid "Error during execution of auto wizard."
  3132. msgstr ""
  3133. #: db/seeds/overviews.rb
  3134. msgid "Escalated Tickets"
  3135. msgstr ""
  3136. #: lib/excel_sheet/ticket.rb
  3137. msgid "Escalation At"
  3138. msgstr ""
  3139. #: app/assets/javascripts/app/lib/app_post/popover_provider/escalation_popover_provider.coffee
  3140. #: app/assets/javascripts/app/views/sla/index.jst.eco
  3141. msgid "Escalation Times"
  3142. msgstr ""
  3143. #: app/assets/javascripts/app/models/ticket.coffee
  3144. msgid "Escalation at"
  3145. msgstr ""
  3146. #: app/assets/javascripts/app/models/ticket.coffee
  3147. msgid "Escalation at (Close Time)"
  3148. msgstr ""
  3149. #: app/assets/javascripts/app/models/ticket.coffee
  3150. msgid "Escalation at (First Response Time)"
  3151. msgstr ""
  3152. #: app/assets/javascripts/app/models/ticket.coffee
  3153. msgid "Escalation at (Update Time)"
  3154. msgstr ""
  3155. #: db/seeds/settings.rb
  3156. msgid "Evangelist"
  3157. msgstr ""
  3158. #: app/assets/javascripts/app/models/knowledge_base.coffee
  3159. msgid "Every category in your knowledge base should be given a unique icon for maximum visual clarity. Each set below provides a wide range of icons to choose from, but beware: You can't mix and match different icons from different sets. Choose carefully!"
  3160. msgstr ""
  3161. #: app/assets/javascripts/app/models/trigger.coffee
  3162. msgid "Every time a customer creates a new ticket, they automatically receive a confirmation email to assure them that their issue has been submitted successfully. This behavior is built into Zammad, but it’s also highly customizable, and you can set up other automated actions just like it.\n\nMaybe you want to set a higher priority on any ticket with the word “urgent” in the title. Maybe you want to avoid sending auto-reply emails to customers from certain organizations. Maybe you want mark a ticket as “pending” whenever someone adds an internal note to a ticket.\n\nWhatever it is, you can do it with triggers: actions that watch tickets for certain changes, and then fire off whenever those changes occur."
  3163. msgstr ""
  3164. #: app/assets/javascripts/app/views/api.jst.eco
  3165. msgid "Example"
  3166. msgstr ""
  3167. #: app/assets/javascripts/app/views/generic/object_import/index.jst.eco
  3168. msgid "Example CSV file for download."
  3169. msgstr ""
  3170. #: app/assets/javascripts/app/controllers/webhook.coffee
  3171. #: app/assets/javascripts/app/controllers/widget/payload_example.coffee
  3172. msgid "Example Payload"
  3173. msgstr ""
  3174. #: app/assets/javascripts/app/views/integration/check_mk.jst.eco
  3175. msgid "Examples"
  3176. msgstr ""
  3177. #: app/assets/javascripts/app/controllers/_manage/ticket_auto_assignment.coffee
  3178. msgid "Excepted users"
  3179. msgstr ""
  3180. #: app/assets/javascripts/app/controllers/_integration/exchange.coffee
  3181. #: app/assets/javascripts/app/views/integration/exchange.jst.eco
  3182. #: app/assets/javascripts/app/views/integration/exchange_wizard.jst.eco
  3183. msgid "Exchange"
  3184. msgstr ""
  3185. #: db/seeds/settings.rb
  3186. msgid "Exchange config"
  3187. msgstr ""
  3188. #: db/seeds/settings.rb
  3189. msgid "Exchange integration"
  3190. msgstr ""
  3191. #: app/assets/javascripts/app/controllers/_integration/exchange.coffee
  3192. msgid "Exchange integration for contacts management."
  3193. msgstr ""
  3194. #: app/assets/javascripts/app/models/job.coffee
  3195. #: app/assets/javascripts/app/models/trigger.coffee
  3196. msgid "Execute changes on objects"
  3197. msgstr ""
  3198. #: db/seeds/schedulers.rb
  3199. msgid "Execute import jobs."
  3200. msgstr ""
  3201. #: db/seeds/schedulers.rb
  3202. msgid "Execute planned jobs."
  3203. msgstr ""
  3204. #: app/assets/javascripts/app/controllers/_ui_element/_application_selector.coffee
  3205. msgid "Execution Time"
  3206. msgstr ""
  3207. #: app/assets/javascripts/app/views/integration/ldap_wizard.jst.eco
  3208. #: db/seeds/settings.rb
  3209. msgid "Expert"
  3210. msgstr ""
  3211. #: app/assets/javascripts/app/controllers/_ui_element/postmaster_match.coffee
  3212. msgid "Expert Settings"
  3213. msgstr ""
  3214. #: app/assets/javascripts/app/views/channel/email_account_wizard.jst.eco
  3215. msgid "Experts"
  3216. msgstr ""
  3217. #: app/assets/javascripts/app/views/integration/smime_list.jst.eco
  3218. #: app/assets/javascripts/app/views/profile/token_access.jst.eco
  3219. #: app/assets/javascripts/app/views/profile/token_access_create.jst.eco
  3220. msgid "Expires"
  3221. msgstr ""
  3222. #: app/assets/javascripts/app/controllers/search.coffee
  3223. msgid "Extended Search"
  3224. msgstr ""
  3225. #: lib/search_index_backend.rb
  3226. msgid "Extract zammad-attachment information from arrays"
  3227. msgstr ""
  3228. #: app/assets/javascripts/app/controllers/_channel/facebook.coffee
  3229. #: app/assets/javascripts/app/controllers/_profile/linked_accounts.coffee
  3230. #: app/assets/javascripts/app/views/facebook/index.jst.eco
  3231. #: app/assets/javascripts/app/views/facebook/list.jst.eco
  3232. #: app/controllers/first_steps_controller.rb
  3233. msgid "Facebook"
  3234. msgstr ""
  3235. #: app/assets/javascripts/app/controllers/_channel/facebook.coffee
  3236. msgid "Facebook Account"
  3237. msgstr ""
  3238. #: db/seeds/settings.rb
  3239. msgid "Facebook App Credentials"
  3240. msgstr ""
  3241. #: app/assets/javascripts/app/views/data_privacy/index.jst.eco
  3242. msgid "Failed Tasks"
  3243. msgstr ""
  3244. #: app/controllers/channels_google_controller.rb
  3245. #: app/controllers/channels_microsoft365_controller.rb
  3246. msgid "Failed to find backup on channel!"
  3247. msgstr ""
  3248. #: app/assets/javascripts/app/controllers/_channel/google.coffee
  3249. #: app/assets/javascripts/app/controllers/_channel/microsoft365.coffee
  3250. msgid "Failed to roll back the migration of the channel!"
  3251. msgstr ""
  3252. #: app/assets/javascripts/app/controllers/user_profile.coffee
  3253. msgid "Failed to send email to \"%s\". Please contact an administrator."
  3254. msgstr ""
  3255. #: db/seeds/object_manager_attributes.rb
  3256. msgid "Fax"
  3257. msgstr ""
  3258. #: app/assets/javascripts/app/controllers/chat.coffee
  3259. msgid "Feature disabled!"
  3260. msgstr ""
  3261. #: app/controllers/integration/check_mk_controller.rb
  3262. #: app/controllers/integration/cti_controller.rb
  3263. #: app/controllers/integration/placetel_controller.rb
  3264. #: app/controllers/integration/sipgate_controller.rb
  3265. msgid "Feature is disabled, please contact your administrator!"
  3266. msgstr ""
  3267. #: app/controllers/integration/cti_controller.rb
  3268. #: app/controllers/integration/placetel_controller.rb
  3269. #: app/controllers/integration/sipgate_controller.rb
  3270. msgid "Feature not configured, please contact your admin!"
  3271. msgstr ""
  3272. #: app/controllers/users_controller.rb
  3273. msgid "Feature not enabled!"
  3274. msgstr ""
  3275. #: app/assets/javascripts/app/controllers/_ui_element/basedate.coffee
  3276. #: app/assets/javascripts/app/controllers/report.coffee
  3277. #: app/assets/javascripts/app/controllers/time_accounting.coffee
  3278. #: app/frontend/shared/components/Form/fields/FieldDate/FieldDateTimeInput.vue
  3279. msgid "Feb"
  3280. msgstr ""
  3281. #: app/assets/javascripts/app/controllers/_ui_element/basedate.coffee
  3282. #: app/frontend/shared/components/Form/fields/FieldDate/FieldDateTimeInput.vue
  3283. msgid "February"
  3284. msgstr ""
  3285. #: app/assets/javascripts/app/views/channel/form.jst.eco
  3286. msgid "Feedback"
  3287. msgstr ""
  3288. #: app/assets/javascripts/app/views/channel/form.jst.eco
  3289. msgid "Feedback Form"
  3290. msgstr ""
  3291. #: app/assets/javascripts/app/controllers/_settings/area_logo.coffee
  3292. #: app/assets/javascripts/app/controllers/getting_started/base.coffee
  3293. msgid "File too big, max. %s MB allowed."
  3294. msgstr ""
  3295. #: db/seeds/settings.rb
  3296. msgid "Filesystem"
  3297. msgstr ""
  3298. #: app/assets/javascripts/app/controllers/_channel/email.coffee
  3299. #: app/assets/javascripts/app/controllers/_channel/google.coffee
  3300. #: app/assets/javascripts/app/controllers/_channel/microsoft365.coffee
  3301. #: app/assets/javascripts/app/models/report_profile.js.coffee
  3302. #: app/assets/javascripts/app/views/sla/index.jst.eco
  3303. msgid "Filter"
  3304. msgstr ""
  3305. #: app/assets/javascripts/app/views/search/index.jst.eco
  3306. msgid "Find what you're looking for, e.g. \"search phrase\""
  3307. msgstr ""
  3308. #: app/assets/javascripts/app/views/integration/smime_list.jst.eco
  3309. msgid "Fingerprint"
  3310. msgstr ""
  3311. #: app/assets/javascripts/app/views/dashboard/first_steps_clues_content.jst.eco
  3312. #: app/assets/javascripts/app/views/getting_started/email_pre_configured.jst.eco
  3313. msgid "Finish"
  3314. msgstr ""
  3315. #: lib/excel_sheet/ticket.rb
  3316. msgid "First Response At"
  3317. msgstr ""
  3318. #: lib/excel_sheet/ticket.rb
  3319. msgid "First Response Diff In Min"
  3320. msgstr ""
  3321. #: lib/excel_sheet/ticket.rb
  3322. msgid "First Response Escalation At"
  3323. msgstr ""
  3324. #: lib/excel_sheet/ticket.rb
  3325. msgid "First Response In Min"
  3326. msgstr ""
  3327. #: app/assets/javascripts/app/views/generic/sla_times.jst.eco
  3328. #: app/assets/javascripts/app/views/popover/escalation.jst.eco
  3329. #: app/assets/javascripts/app/views/sla/index.jst.eco
  3330. msgid "First Response Time"
  3331. msgstr ""
  3332. #: app/models/report.rb
  3333. msgid "First Solution"
  3334. msgstr ""
  3335. #: app/assets/javascripts/app/views/dashboard.jst.eco
  3336. msgid "First Steps"
  3337. msgstr ""
  3338. #: app/assets/javascripts/app/models/user.coffee
  3339. #: db/seeds/object_manager_attributes.rb
  3340. msgid "First name"
  3341. msgstr ""
  3342. #: app/assets/javascripts/app/models/ticket.coffee
  3343. msgid "First response"
  3344. msgstr ""
  3345. #: app/assets/javascripts/app/views/channel/email_account_overview.jst.eco
  3346. msgid "Fixed Email Accounts"
  3347. msgstr ""
  3348. #: app/assets/javascripts/app/views/channel/chat.jst.eco
  3349. msgid "Flat Design"
  3350. msgstr ""
  3351. #: app/assets/javascripts/app/controllers/_channel/email.coffee
  3352. #: app/assets/javascripts/app/controllers/_channel/google.coffee
  3353. #: app/assets/javascripts/app/controllers/_channel/microsoft365.coffee
  3354. #: app/assets/javascripts/app/controllers/getting_started/channel_email.coffee
  3355. #: app/assets/javascripts/app/views/channel/email_account_overview.jst.eco
  3356. #: app/assets/javascripts/app/views/integration/exchange.jst.eco
  3357. msgid "Folder"
  3358. msgstr ""
  3359. #: app/assets/javascripts/app/views/integration/exchange.jst.eco
  3360. #: app/assets/javascripts/app/views/integration/exchange_wizard.jst.eco
  3361. msgid "Folders"
  3362. msgstr ""
  3363. #: app/assets/javascripts/app/models/group.coffee
  3364. #: db/seeds/object_manager_attributes.rb
  3365. msgid "Follow-up for closed ticket possible or not."
  3366. msgstr ""
  3367. #: app/assets/javascripts/app/models/group.coffee
  3368. #: db/seeds/object_manager_attributes.rb
  3369. msgid "Follow-up possible"
  3370. msgstr ""
  3371. #: app/assets/javascripts/app/lib/app_post/iconset_picker.coffee
  3372. msgid "Font Awesome"
  3373. msgstr ""
  3374. #: app/assets/javascripts/app/views/channel/chat.jst.eco
  3375. msgid "Font size"
  3376. msgstr ""
  3377. #: app/assets/javascripts/app/controllers/knowledge_base/public_menu_manager.coffee
  3378. msgid "Footer Menu"
  3379. msgstr ""
  3380. #: app/assets/javascripts/app/models/knowledge_base.coffee
  3381. msgid "Footer Note"
  3382. msgstr ""
  3383. #: app/assets/javascripts/app/views/dashboard.jst.eco
  3384. msgid "For example, recently changed tickets, users, or organizations."
  3385. msgstr ""
  3386. #: app/assets/javascripts/app/views/profile/token_access_created.jst.eco
  3387. msgid "For security reasons, the API token is shown only once. You'll need to save it somewhere secure before continuing."
  3388. msgstr ""
  3389. #: app/frontend/shared/router/guards/before/permission.ts
  3390. msgid "Forbidden"
  3391. msgstr ""
  3392. #: app/assets/javascripts/app/views/login.jst.eco
  3393. #: app/frontend/apps/mobile/modules/login/views/Login.vue
  3394. #: app/models/form_schema/form/mobile/login.rb
  3395. msgid "Forgot password?"
  3396. msgstr ""
  3397. #: app/assets/javascripts/app/views/password/reset.jst.eco
  3398. msgid "Forgot your password?"
  3399. msgstr ""
  3400. #: app/assets/javascripts/app/controllers/_channel/form.coffee
  3401. #: app/assets/javascripts/app/views/channel/form.jst.eco
  3402. msgid "Form"
  3403. msgstr ""
  3404. #: app/assets/javascripts/app/models/object_manager_attribute.coffee
  3405. msgid "Format"
  3406. msgstr ""
  3407. #: app/assets/javascripts/app/controllers/_plugin/keyboard_shortcuts.coffee
  3408. msgid "Format as //strikethrough//"
  3409. msgstr ""
  3410. #: app/assets/javascripts/app/controllers/_plugin/keyboard_shortcuts.coffee
  3411. msgid "Format as _underlined_"
  3412. msgstr ""
  3413. #: app/assets/javascripts/app/controllers/_plugin/keyboard_shortcuts.coffee
  3414. msgid "Format as h1 heading"
  3415. msgstr ""
  3416. #: app/assets/javascripts/app/controllers/_plugin/keyboard_shortcuts.coffee
  3417. msgid "Format as h2 heading"
  3418. msgstr ""
  3419. #: app/assets/javascripts/app/controllers/_plugin/keyboard_shortcuts.coffee
  3420. msgid "Format as h3 heading"
  3421. msgstr ""
  3422. #: app/assets/javascripts/app/controllers/_plugin/keyboard_shortcuts.coffee
  3423. msgid "Format as ordered list"
  3424. msgstr ""
  3425. #: app/assets/javascripts/app/controllers/_plugin/keyboard_shortcuts.coffee
  3426. msgid "Format as unordered list"
  3427. msgstr ""
  3428. #: app/assets/javascripts/app/controllers/_plugin/keyboard_shortcuts.coffee
  3429. msgid "Format as |bold|"
  3430. msgstr ""
  3431. #: app/assets/javascripts/app/controllers/_plugin/keyboard_shortcuts.coffee
  3432. msgid "Format as ||italic||"
  3433. msgstr ""
  3434. #: app/assets/javascripts/app/views/widget/ticket_stats_frequency.jst.eco
  3435. msgid "Frequency"
  3436. msgstr ""
  3437. #: app/assets/javascripts/app/controllers/import_freshdesk.coffee
  3438. msgid "Freshdesk"
  3439. msgstr ""
  3440. #: app/assets/javascripts/app/controllers/_ui_element/basedate.coffee
  3441. #: app/frontend/shared/components/Form/fields/FieldDate/FieldDateTimeInput.vue
  3442. msgid "Fri"
  3443. msgstr ""
  3444. #: app/assets/javascripts/app/controllers/_ui_element/basedate.coffee
  3445. #: app/assets/javascripts/app/controllers/_ui_element/timer.coffee
  3446. #: app/assets/javascripts/app/lib/app_post/business_hours.coffee
  3447. #: app/assets/javascripts/app/views/calendar/index.jst.eco
  3448. #: app/frontend/shared/components/Form/fields/FieldDate/FieldDateTimeInput.vue
  3449. msgid "Friday"
  3450. msgstr ""
  3451. #: app/assets/javascripts/app/controllers/_ui_element/postmaster_match.coffee
  3452. #: app/assets/javascripts/app/models/ticket_article.coffee
  3453. #: app/assets/javascripts/app/views/cti/caller_log.jst.eco
  3454. #: app/assets/javascripts/app/views/generic/calender_preview.jst.eco
  3455. #: app/assets/javascripts/app/views/profile/out_of_office.jst.eco
  3456. #: app/assets/javascripts/app/views/ticket_zoom/article_view.jst.eco
  3457. msgid "From"
  3458. msgstr ""
  3459. #: app/assets/javascripts/app/controllers/_manage/system.coffee
  3460. msgid "Frontend"
  3461. msgstr ""
  3462. #: app/assets/javascripts/app/models/group.coffee
  3463. msgid "Full"
  3464. msgstr ""
  3465. #: app/assets/javascripts/app/views/getting_started/email.jst.eco
  3466. msgid "Full Name"
  3467. msgstr ""
  3468. #: db/seeds/settings.rb
  3469. msgid "Fully Qualified Domain Name"
  3470. msgstr ""
  3471. #: app/assets/javascripts/app/controllers/_ui_element/object_manager_attribute.coffee
  3472. msgid "GET"
  3473. msgstr ""
  3474. #: app/assets/javascripts/app/views/integration/ldap.jst.eco
  3475. msgid "GID"
  3476. msgstr ""
  3477. #: app/models/channel/driver/sms/massenversand.rb
  3478. msgid "Gateway"
  3479. msgstr ""
  3480. #: app/assets/javascripts/app/controllers/ticket_zoom.coffee
  3481. #: app/assets/javascripts/app/lib/app_post/ajax.coffee
  3482. msgid "General communication error, maybe internet is not available!"
  3483. msgstr ""
  3484. #: db/seeds/schedulers.rb
  3485. msgid "Generate 'Session' data."
  3486. msgstr ""
  3487. #: app/assets/javascripts/app/controllers/api.coffee
  3488. msgid "Generate Access Token for |%s|"
  3489. msgstr ""
  3490. #: app/assets/javascripts/app/controllers/api.coffee
  3491. msgid "Generate Token"
  3492. msgstr ""
  3493. #: db/seeds/schedulers.rb
  3494. msgid "Generate user-based stats."
  3495. msgstr ""
  3496. #: app/assets/javascripts/app/controllers/_integration/cti.coffee
  3497. msgid "Generic API to integrate VoIP service provider with real-time push."
  3498. msgstr ""
  3499. #: db/seeds/settings.rb
  3500. msgid "Geo Calendar Service"
  3501. msgstr ""
  3502. #: db/seeds/settings.rb
  3503. msgid "Geo IP Service"
  3504. msgstr ""
  3505. #: db/seeds/settings.rb
  3506. msgid "Geo Location Service"
  3507. msgstr ""
  3508. #: app/assets/javascripts/app/controllers/getting_started.coffee
  3509. msgid "Get Started"
  3510. msgstr ""
  3511. #: app/assets/javascripts/app/views/api.jst.eco
  3512. msgid "Getting an Access Token"
  3513. msgstr ""
  3514. #: app/assets/javascripts/app/controllers/_integration/github.coffee
  3515. #: app/assets/javascripts/app/controllers/_profile/linked_accounts.coffee
  3516. msgid "GitHub"
  3517. msgstr ""
  3518. #: db/seeds/settings.rb
  3519. msgid "GitHub App Credentials"
  3520. msgstr ""
  3521. #: db/seeds/settings.rb
  3522. msgid "GitHub config"
  3523. msgstr ""
  3524. #: db/seeds/settings.rb
  3525. msgid "GitHub integration"
  3526. msgstr ""
  3527. #: lib/github/http_client.rb
  3528. msgid "GitHub request failed! Please have a look at the log file for details"
  3529. msgstr ""
  3530. #: app/assets/javascripts/app/controllers/_integration/gitlab.coffee
  3531. #: app/assets/javascripts/app/controllers/_profile/linked_accounts.coffee
  3532. msgid "GitLab"
  3533. msgstr ""
  3534. #: db/seeds/settings.rb
  3535. msgid "GitLab App Credentials"
  3536. msgstr ""
  3537. #: db/seeds/settings.rb
  3538. msgid "GitLab config"
  3539. msgstr ""
  3540. #: db/seeds/settings.rb
  3541. msgid "GitLab integration"
  3542. msgstr ""
  3543. #: lib/gitlab/http_client.rb
  3544. msgid "GitLab request failed! Please have a look at the log file for details"
  3545. msgstr ""
  3546. #: app/assets/javascripts/app/views/google/index.jst.eco
  3547. #: app/assets/javascripts/app/views/google/list.jst.eco
  3548. msgid "Gmail"
  3549. msgstr ""
  3550. #: app/assets/javascripts/app/views/agent_ticket_view/bulk.jst.eco
  3551. #: app/assets/javascripts/app/views/channel/email_account_wizard.jst.eco
  3552. #: app/assets/javascripts/app/views/getting_started/admin.jst.eco
  3553. #: app/assets/javascripts/app/views/getting_started/channel.jst.eco
  3554. #: app/assets/javascripts/app/views/getting_started/email.jst.eco
  3555. #: app/assets/javascripts/app/views/getting_started/email_notification.jst.eco
  3556. #: app/assets/javascripts/app/views/getting_started/email_pre_configured.jst.eco
  3557. #: app/assets/javascripts/app/views/import/freshdesk.jst.eco
  3558. #: app/assets/javascripts/app/views/import/index.jst.eco
  3559. #: app/assets/javascripts/app/views/import/kayako.jst.eco
  3560. #: app/assets/javascripts/app/views/import/otrs.jst.eco
  3561. #: app/assets/javascripts/app/views/import/zendesk.jst.eco
  3562. #: app/assets/javascripts/app/views/integration/exchange_wizard.jst.eco
  3563. #: app/assets/javascripts/app/views/integration/ldap_wizard.jst.eco
  3564. #: app/assets/javascripts/app/views/signup/verify.jst.eco
  3565. msgid "Go Back"
  3566. msgstr ""
  3567. #: app/assets/javascripts/app/views/telegram/bot_add.jst.eco
  3568. #: app/assets/javascripts/app/views/telegram/bot_edit.jst.eco
  3569. msgid "Goodbye message"
  3570. msgstr ""
  3571. #: app/assets/javascripts/app/controllers/_channel/google.coffee
  3572. #: app/assets/javascripts/app/controllers/_profile/linked_accounts.coffee
  3573. msgid "Google"
  3574. msgstr ""
  3575. #: db/seeds/settings.rb
  3576. msgid "Google App Credentials"
  3577. msgstr ""
  3578. #: db/seeds/settings.rb
  3579. msgid "Google Maps"
  3580. msgstr ""
  3581. #: app/assets/javascripts/app/controllers/ticket_zoom/highlighter.coffee
  3582. msgid "Green"
  3583. msgstr ""
  3584. #: app/assets/javascripts/app/views/customer_chat/setting.jst.eco
  3585. msgid "Greeting"
  3586. msgstr ""
  3587. #: app/assets/javascripts/app/controllers/_integration/slack.coffee
  3588. #: app/assets/javascripts/app/controllers/_ui_element/core_workflow_condition.coffee
  3589. #: app/assets/javascripts/app/controllers/_ui_element/postmaster_set.coffee
  3590. #: app/assets/javascripts/app/controllers/group.coffee
  3591. #: app/assets/javascripts/app/models/ticket.coffee
  3592. #: app/assets/javascripts/app/views/agent_ticket_view/detail.jst.eco
  3593. #: app/assets/javascripts/app/views/channel/sms_account_overview.jst.eco
  3594. #: app/assets/javascripts/app/views/generic/permission.jst.eco
  3595. #: app/assets/javascripts/app/views/generic/user_permission_group.jst.eco
  3596. #: app/assets/javascripts/app/views/integration/smime_group.jst.eco
  3597. #: app/assets/javascripts/app/views/popover/ticket.jst.eco
  3598. #: app/assets/javascripts/app/views/profile/notification.jst.eco
  3599. #: app/assets/javascripts/app/views/telegram/index.jst.eco
  3600. #: app/assets/javascripts/app/views/twitter/account_edit.jst.eco
  3601. #: app/assets/javascripts/app/views/twitter/list.jst.eco
  3602. #: app/views/mailer/ticket_create/cs.html.erb
  3603. #: app/views/mailer/ticket_create/de.html.erb
  3604. #: app/views/mailer/ticket_create/en.html.erb
  3605. #: app/views/mailer/ticket_create/es.html.erb
  3606. #: app/views/mailer/ticket_create/fr.html.erb
  3607. #: app/views/mailer/ticket_create/it.html.erb
  3608. #: app/views/mailer/ticket_create/pl.html.erb
  3609. #: app/views/mailer/ticket_create/pt-br.html.erb
  3610. #: app/views/mailer/ticket_create/ru.html.erb
  3611. #: app/views/mailer/ticket_create/zh-cn.html.erb
  3612. #: app/views/mailer/ticket_create/zh-tw.html.erb
  3613. #: app/views/slack/ticket_create/en.md.erb
  3614. #: app/views/slack/ticket_create/fr.md.erb
  3615. #: app/views/slack/ticket_create/pt-br.md.erb
  3616. #: app/views/slack/ticket_create/zh-cn.md.erb
  3617. #: app/views/slack/ticket_create/zh-tw.md.erb
  3618. #: db/seeds/object_manager_attributes.rb
  3619. #: db/seeds/settings.rb
  3620. #: lib/excel_sheet/ticket.rb
  3621. msgid "Group"
  3622. msgstr ""
  3623. #: app/assets/javascripts/app/controllers/_ui_element/core_workflow_condition.coffee
  3624. msgid "Group (change)"
  3625. msgstr ""
  3626. #: app/assets/javascripts/app/controllers/_ui_element/core_workflow_condition.coffee
  3627. msgid "Group (create)"
  3628. msgstr ""
  3629. #: app/assets/javascripts/app/controllers/_ui_element/core_workflow_condition.coffee
  3630. msgid "Group (full)"
  3631. msgstr ""
  3632. #: app/assets/javascripts/app/controllers/_ui_element/core_workflow_condition.coffee
  3633. msgid "Group (overview)"
  3634. msgstr ""
  3635. #: app/assets/javascripts/app/controllers/_ui_element/core_workflow_condition.coffee
  3636. msgid "Group (read)"
  3637. msgstr ""
  3638. #: app/assets/javascripts/app/views/integration/ldap.jst.eco
  3639. msgid "Group Filter"
  3640. msgstr ""
  3641. #: app/assets/javascripts/app/controllers/_integration/ldap.coffee
  3642. msgid "Group information could not be retrieved, please check your bind user permissions."
  3643. msgstr ""
  3644. #: app/models/channel/driver/sms/base.rb
  3645. msgid "Group is invalid!"
  3646. msgstr ""
  3647. #: app/models/channel/driver/sms/base.rb
  3648. msgid "Group needed in channel definition!"
  3649. msgstr ""
  3650. #: app/assets/javascripts/app/views/channel/form.jst.eco
  3651. #: db/seeds/settings.rb
  3652. msgid "Group selection for Ticket creation"
  3653. msgstr ""
  3654. #: db/seeds/settings.rb
  3655. msgid "Group selection for ticket creation"
  3656. msgstr ""
  3657. #: app/assets/javascripts/app/controllers/ticket_overview.coffee
  3658. #: app/assets/javascripts/app/models/overview.coffee
  3659. msgid "Grouping by"
  3660. msgstr ""
  3661. #: app/assets/javascripts/app/controllers/ticket_overview.coffee
  3662. #: app/assets/javascripts/app/models/overview.coffee
  3663. msgid "Grouping order"
  3664. msgstr ""
  3665. #: app/assets/javascripts/app/controllers/group.coffee
  3666. #: app/assets/javascripts/app/models/macro.coffee
  3667. #: app/assets/javascripts/app/models/text_module.coffee
  3668. #: app/assets/javascripts/app/views/import/freshdesk.jst.eco
  3669. #: app/assets/javascripts/app/views/import/kayako.jst.eco
  3670. #: app/assets/javascripts/app/views/import/zendesk.jst.eco
  3671. #: db/seeds/permissions.rb
  3672. msgid "Groups"
  3673. msgstr ""
  3674. #: app/assets/javascripts/app/controllers/group.coffee
  3675. msgid "Groups are …"
  3676. msgstr ""
  3677. #: app/assets/javascripts/app/models/webhook.coffee
  3678. msgid "HMAC SHA1 Signature Token"
  3679. msgstr ""
  3680. #: db/seeds/settings.rb
  3681. msgid "HTML Email CSS Font"
  3682. msgstr ""
  3683. #: app/assets/javascripts/app/controllers/widget/http_log.coffee
  3684. msgid "HTTP Log"
  3685. msgstr ""
  3686. #: db/seeds/settings.rb
  3687. msgid "HTTP type"
  3688. msgstr ""
  3689. #: db/seeds/schedulers.rb
  3690. msgid "Handle data privacy tasks."
  3691. msgstr ""
  3692. #: app/assets/javascripts/app/models/job.coffee
  3693. msgid "Has processed"
  3694. msgstr ""
  3695. #: app/assets/javascripts/app/views/integration/smime_list.jst.eco
  3696. msgid "Hash"
  3697. msgstr ""
  3698. #: app/assets/javascripts/app/views/telegram/bot_add.jst.eco
  3699. #: app/assets/javascripts/app/views/telegram/bot_edit.jst.eco
  3700. msgid "Have a nice day."
  3701. msgstr ""
  3702. #: app/assets/javascripts/app/views/widget/payload_example.jst.eco
  3703. msgid "Header"
  3704. msgstr ""
  3705. #: app/assets/javascripts/app/models/knowledge_base.coffee
  3706. msgid "Header Color"
  3707. msgstr ""
  3708. #: app/assets/javascripts/app/models/knowledge_base.coffee
  3709. msgid "Header Link Color"
  3710. msgstr ""
  3711. #: app/assets/javascripts/app/controllers/knowledge_base/public_menu_manager.coffee
  3712. msgid "Header Menu"
  3713. msgstr ""
  3714. #: app/assets/javascripts/app/views/monitoring.jst.eco
  3715. msgid "Health Check"
  3716. msgstr ""
  3717. #: app/assets/javascripts/app/views/monitoring.jst.eco
  3718. msgid "Health information can be retrieved as JSON using:"
  3719. msgstr ""
  3720. #: app/assets/javascripts/app/views/channel/chat.jst.eco
  3721. msgid "Hello! I need help with your product."
  3722. msgstr ""
  3723. #: app/assets/javascripts/app/views/customer_chat/setting.jst.eco
  3724. msgid "Hello, my name is %s, what can I do for you?"
  3725. msgstr ""
  3726. #: app/assets/javascripts/app/controllers/_plugin/translation_support.coffee
  3727. msgid "Help to improve Zammad!"
  3728. msgstr ""
  3729. #: app/assets/javascripts/app/views/knowledge_base/public_menu_manager.jst.eco
  3730. msgid "Here you can add further links to your public FAQ page, which will be displayed either in the header or footer."
  3731. msgstr ""
  3732. #: app/assets/javascripts/app/controllers/_dashboard/first_steps_clues.coffee
  3733. msgid "Here you can create new tickets. Also, if you have the permission, you can create new customers and organizations."
  3734. msgstr ""
  3735. #: app/assets/javascripts/app/controllers/customer_ticket_create.coffee
  3736. msgid "Here you can create one."
  3737. msgstr ""
  3738. #: app/assets/javascripts/app/controllers/_dashboard/first_steps_clues.coffee
  3739. msgid "Here you can search for tickets, customers, and organizations. Use the asterisk §*§ to find anything, e.g. §smi*§ or §rosent*l§. You also can use ||quotation marks|| for searching phrases: §\"some phrase\"§."
  3740. msgstr ""
  3741. #: app/assets/javascripts/app/controllers/_dashboard/first_steps_clues.coffee
  3742. msgid "Here you can sign out, change the frontend language, and see your last viewed items."
  3743. msgstr ""
  3744. #: app/assets/javascripts/app/views/object_manager/attribute.jst.eco
  3745. msgid "Here you define which authorization has access to the attribute."
  3746. msgstr ""
  3747. #: app/assets/javascripts/app/controllers/_dashboard/first_steps_clues.coffee
  3748. msgid "Here you find your ticket overviews for open, assigned, and escalated tickets."
  3749. msgstr ""
  3750. #: app/assets/javascripts/app/controllers/_dashboard/first_steps_clues.coffee
  3751. msgid "Here you see a quick overview of your and other agents' performance."
  3752. msgstr ""
  3753. #: app/assets/javascripts/app/views/dashboard.jst.eco
  3754. msgid "Here you will find the latest activities of your system."
  3755. msgstr ""
  3756. #: db/seeds/settings.rb
  3757. msgid "Hero"
  3758. msgstr ""
  3759. #: app/assets/javascripts/app/views/channel/chat.jst.eco
  3760. msgid "Hi! Which one of our products?"
  3761. msgstr ""
  3762. #: app/assets/javascripts/app/controllers/_application_controller/_modal_generic_history.coffee
  3763. #: app/assets/javascripts/app/controllers/organization_profile.coffee
  3764. #: app/assets/javascripts/app/controllers/ticket_zoom/sidebar_ticket.coffee
  3765. #: app/assets/javascripts/app/controllers/user_profile.coffee
  3766. msgid "History"
  3767. msgstr ""
  3768. #: app/assets/javascripts/app/models/calendar.coffee
  3769. #: app/assets/javascripts/app/views/calendar/index.jst.eco
  3770. msgid "Holidays"
  3771. msgstr ""
  3772. #: app/assets/javascripts/app/models/calendar.coffee
  3773. msgid "Holidays iCalendar Feed"
  3774. msgstr ""
  3775. #: app/frontend/apps/mobile/modules/home/routes.ts
  3776. #: app/frontend/apps/mobile/modules/home/views/FavoriteTicketOverviewsEdit.vue
  3777. #: app/frontend/apps/mobile/modules/home/views/Home.vue
  3778. msgid "Home"
  3779. msgstr ""
  3780. #: app/assets/javascripts/app/controllers/_channel/email.coffee
  3781. #: app/assets/javascripts/app/controllers/getting_started/channel_email.coffee
  3782. #: app/assets/javascripts/app/controllers/getting_started/email_notification.coffee
  3783. #: app/assets/javascripts/app/views/channel/email_account_overview.jst.eco
  3784. #: app/assets/javascripts/app/views/integration/ldap_wizard.jst.eco
  3785. msgid "Host"
  3786. msgstr ""
  3787. #: app/assets/javascripts/app/views/integration/check_mk.jst.eco
  3788. msgid "Host Notification"
  3789. msgstr ""
  3790. #: app/controllers/import_otrs_controller.rb
  3791. msgid "Host found, but it seems to be no OTRS installation!"
  3792. msgstr ""
  3793. #: app/controllers/import_otrs_controller.rb
  3794. msgid "Host found, but no OTRS migrator is installed!"
  3795. msgstr ""
  3796. #: lib/email_helper/probe.rb
  3797. msgid "Host not reachable!"
  3798. msgstr ""
  3799. #: app/controllers/import_freshdesk_controller.rb
  3800. #: app/controllers/import_kayako_controller.rb
  3801. #: app/controllers/import_otrs_controller.rb
  3802. #: app/controllers/import_zendesk_controller.rb
  3803. #: lib/email_helper/probe.rb
  3804. msgid "Hostname not found!"
  3805. msgstr ""
  3806. #: app/assets/javascripts/app/views/generic/timer.jst.eco
  3807. msgid "Hour"
  3808. msgstr ""
  3809. #: app/assets/javascripts/app/controllers/_ui_element/time_range.coffee
  3810. msgid "Hour(s)"
  3811. msgstr ""
  3812. #: app/assets/javascripts/app/views/generic/timeplan.jst.eco
  3813. msgid "Hours"
  3814. msgstr ""
  3815. #: app/views/layouts/knowledge_base.html.erb
  3816. msgid "How can we help you? Search for an answer or a topic…"
  3817. msgstr ""
  3818. #: app/assets/javascripts/app/controllers/_dashboard/stats/ticket_waiting_time.coffee
  3819. msgid "How long did each customer have to wait, on average, to get a response from you today?"
  3820. msgstr ""
  3821. #: app/assets/javascripts/app/controllers/_dashboard/stats/ticket_escalation.coffee
  3822. msgid "How many escalated tickets do you have open? (Mr. Bubbles gets grumpy if you have too many…)"
  3823. msgstr ""
  3824. #: app/assets/javascripts/app/controllers/_dashboard/stats/ticket_channel_distribution.coffee
  3825. msgid "How many of your tickets are coming from email, phone, Twitter, or Facebook? (Shows percentages for both inbound and outbound tickets.)"
  3826. msgstr ""
  3827. #: app/assets/javascripts/app/controllers/_dashboard/stats/ticket_reopen.coffee
  3828. msgid "How many of your tickets have been re-opened after being marked “closed”?"
  3829. msgstr ""
  3830. #: app/controllers/first_steps_controller.rb
  3831. msgid "How to use it"
  3832. msgstr ""
  3833. #: app/assets/javascripts/app/views/integration/idoit_object_result.jst.eco
  3834. #: app/assets/javascripts/app/views/ticket_zoom/sidebar_idoit.jst.eco
  3835. msgid "ID"
  3836. msgstr ""
  3837. #: db/seeds/settings.rb
  3838. msgid "IDP SSO target URL"
  3839. msgstr ""
  3840. #: db/seeds/settings.rb
  3841. msgid "IDP certificate"
  3842. msgstr ""
  3843. #: db/seeds/settings.rb
  3844. msgid "IDP certificate fingerprint"
  3845. msgstr ""
  3846. #: lib/email_helper.rb
  3847. msgid "IMAP"
  3848. msgstr ""
  3849. #: app/assets/javascripts/app/controllers/_integration/icinga.coffee
  3850. msgid "Icinga"
  3851. msgstr ""
  3852. #: db/seeds/settings.rb
  3853. msgid "Icinga integration"
  3854. msgstr ""
  3855. #: app/assets/javascripts/app/models/knowledge_base_category.coffee
  3856. msgid "Icon"
  3857. msgstr ""
  3858. #: app/assets/javascripts/app/models/knowledge_base.coffee
  3859. msgid "Icon & Link Color"
  3860. msgstr ""
  3861. #: app/assets/javascripts/app/models/knowledge_base.coffee
  3862. msgid "Icon Set"
  3863. msgstr ""
  3864. #: app/assets/javascripts/app/controllers/_integration/slack.coffee
  3865. msgid "Icon URL"
  3866. msgstr ""
  3867. #: app/assets/javascripts/app/controllers/_channel/chat.coffee
  3868. msgid "Identifier of the chat topic."
  3869. msgstr ""
  3870. #: db/seeds/settings.rb
  3871. msgid "Idle timeout in seconds until agent is set offline automatically."
  3872. msgstr ""
  3873. #: app/assets/javascripts/app/controllers/_integration/ldap.coffee
  3874. msgid "If a user is found in two (or more) configured LDAP sources, the last synchronisation will win."
  3875. msgstr ""
  3876. #: app/assets/javascripts/app/controllers/_channel/chat.coffee
  3877. msgid "If left empty, the host gets auto-detected - in this case %s. The auto-detection reads out the host from the <script> tag. If you don't include it via a <script> tag you need to specify the host."
  3878. msgstr ""
  3879. #: app/assets/javascripts/app/controllers/_integration/check_mk.coffee
  3880. #: app/assets/javascripts/app/controllers/_integration/icinga.coffee
  3881. #: app/assets/javascripts/app/controllers/_integration/monit.coffee
  3882. #: app/assets/javascripts/app/controllers/_integration/nagios.coffee
  3883. msgid "If the host and service have recovered, the ticket can be closed automatically."
  3884. msgstr ""
  3885. #: db/seeds/settings.rb
  3886. msgid "If the sender is an agent, set the first user in the recipient list as the customer."
  3887. msgstr ""
  3888. #: db/seeds/settings.rb
  3889. msgid "If this regex matches, no notification will be sent by the sender."
  3890. msgstr ""
  3891. #: app/assets/javascripts/app/views/password/reset_sent.jst.eco
  3892. msgid "If you don't receive instructions within a minute or two, check your email's spam and junk filters, or try resending your request."
  3893. msgstr ""
  3894. #: app/assets/javascripts/app/controllers/_plugin/user_signup_check.coffee
  3895. #: app/assets/javascripts/app/views/signup/verify.jst.eco
  3896. msgid "If you don't see the email, check other places it might be, like your junk, spam, social, or other folders."
  3897. msgstr ""
  3898. #: app/assets/javascripts/app/views/settings/storage_provider.jst.eco
  3899. msgid "If you want to move already stored attachments from one backend to another, you need to execute the following via console."
  3900. msgstr ""
  3901. #: app/assets/javascripts/app/views/channel/chat.jst.eco
  3902. msgid "If you want to open the chat by clicking a button, set the option §show§ to §false§ and add the class §open-zammad-chat§ to the button."
  3903. msgstr ""
  3904. #: app/assets/javascripts/app/views/translation/index.jst.eco
  3905. msgid "If you want to translate it via the translation table, just go ahead below."
  3906. msgstr ""
  3907. #: app/assets/javascripts/app/views/getting_started/email_pre_configured.jst.eco
  3908. msgid "If you want to use additional email addresses, you can configure them later."
  3909. msgstr ""
  3910. #: db/seeds/settings.rb
  3911. msgid "Ignore Escalation/SLA Information"
  3912. msgstr ""
  3913. #: app/assets/javascripts/app/controllers/_ui_element/postmaster_set.coffee
  3914. msgid "Ignore Message"
  3915. msgstr ""
  3916. #: db/seeds/settings.rb
  3917. msgid "Ignore escalation/SLA information for import."
  3918. msgstr ""
  3919. #: db/seeds/settings.rb
  3920. msgid "Ignore system_id"
  3921. msgstr ""
  3922. #: app/assets/javascripts/app/controllers/_ui_element/richtext_additions/insert_image_button.coffee
  3923. msgid "Image"
  3924. msgstr ""
  3925. #: db/seeds/settings.rb
  3926. msgid "Image Service"
  3927. msgstr ""
  3928. #: app/assets/javascripts/app/controllers/import.coffee
  3929. #: app/assets/javascripts/app/controllers/import_freshdesk.coffee
  3930. #: app/assets/javascripts/app/controllers/import_otrs.coffee
  3931. #: app/assets/javascripts/app/controllers/import_zendesk.coffee
  3932. #: app/assets/javascripts/app/controllers/organization.coffee
  3933. #: app/assets/javascripts/app/controllers/text_module.coffee
  3934. #: app/assets/javascripts/app/controllers/user.coffee
  3935. #: app/assets/javascripts/app/controllers/widget/import.coffee
  3936. #: app/assets/javascripts/app/controllers/widget/import_result.coffee
  3937. #: app/assets/javascripts/app/controllers/widget/import_try_result.coffee
  3938. msgid "Import"
  3939. msgstr ""
  3940. #: app/assets/javascripts/app/views/integration/exchange_wizard.jst.eco
  3941. msgid "Import %s"
  3942. msgstr ""
  3943. #: app/controllers/import_otrs_controller.rb
  3944. msgid "Import API key could not be extracted from URL."
  3945. msgstr ""
  3946. #: db/seeds/settings.rb
  3947. msgid "Import API key for requesting the Freshdesk API"
  3948. msgstr ""
  3949. #: db/seeds/settings.rb
  3950. msgid "Import API key for requesting the Zendesk API"
  3951. msgstr ""
  3952. #: db/seeds/settings.rb
  3953. msgid "Import Backend"
  3954. msgstr ""
  3955. #: db/seeds/settings.rb
  3956. msgid "Import Backends"
  3957. msgstr ""
  3958. #: db/seeds/settings.rb
  3959. msgid "Import Endpoint"
  3960. msgstr ""
  3961. #: db/seeds/settings.rb
  3962. msgid "Import Key"
  3963. msgstr ""
  3964. #: db/seeds/settings.rb
  3965. msgid "Import Mode"
  3966. msgstr ""
  3967. #: db/seeds/settings.rb
  3968. msgid "Import Password for HTTP basic authentication"
  3969. msgstr ""
  3970. #: db/seeds/settings.rb
  3971. msgid "Import Password for requesting the Kayako API"
  3972. msgstr ""
  3973. #: db/seeds/settings.rb
  3974. msgid "Import User for HTTP basic authentication"
  3975. msgstr ""
  3976. #: db/seeds/settings.rb
  3977. msgid "Import User for requesting the Kayako API"
  3978. msgstr ""
  3979. #: db/seeds/settings.rb
  3980. msgid "Import User for requesting the Zendesk API"
  3981. msgstr ""
  3982. #: app/assets/javascripts/app/views/channel/email_account_wizard.jst.eco
  3983. #: app/assets/javascripts/app/views/getting_started/email.jst.eco
  3984. msgid "Import as archive: |No notifications are sent|, the |tickets are closed|, and original timestamps are used. You can still find them in Zammad using the search."
  3985. msgstr ""
  3986. #: app/assets/javascripts/app/views/channel/email_account_wizard.jst.eco
  3987. #: app/assets/javascripts/app/views/getting_started/email.jst.eco
  3988. msgid "Import as regular: |Notifications are sent| and the |tickets are open| - you can find the tickets in the overview of open tickets."
  3989. msgstr ""
  3990. #: app/assets/javascripts/app/views/import/index.jst.eco
  3991. msgid "Import from"
  3992. msgstr ""
  3993. #: app/assets/javascripts/app/controllers/widget/import_result.coffee
  3994. msgid "Imported"
  3995. msgstr ""
  3996. #: app/assets/javascripts/app/controllers/_channel/email.coffee
  3997. #: app/assets/javascripts/app/controllers/getting_started/channel_email.coffee
  3998. msgid "In addition, we have found emails in your mailbox that are older than %s weeks. You can import such emails as an \"archive\", which means that no notifications are sent and the tickets have the status \"closed\". However, you can find them in Zammad anytime using the search function."
  3999. msgstr ""
  4000. #: app/assets/javascripts/app/views/channel/email_account_wizard.jst.eco
  4001. #: app/assets/javascripts/app/views/getting_started/email.jst.eco
  4002. msgid "In addition, we have found emails in your mailbox that are older than %s weeks. You can import such emails as an \"archive\", which means that no notifications are sent and the tickets have the status \"closed\". However, you can find them in Zammad anytime using the search function. "
  4003. msgstr ""
  4004. #: app/assets/javascripts/app/views/integration/placetel.jst.eco
  4005. msgid "In order for Zammad to access %s, the %s API token must be stored here"
  4006. msgstr ""
  4007. #: app/assets/javascripts/app/controllers/_integration/ldap.coffee
  4008. msgid "In order to be able to influence the desired behaviour in this regard, you can influence the order of the LDAP sources via drag & drop."
  4009. msgstr ""
  4010. #: app/assets/javascripts/app/views/channel/email_account_overview.jst.eco
  4011. #: app/assets/javascripts/app/views/channel/sms_account_overview.jst.eco
  4012. #: app/assets/javascripts/app/views/dashboard/stats/ticket_channel_distribution.jst.eco
  4013. #: app/assets/javascripts/app/views/google/list.jst.eco
  4014. #: app/assets/javascripts/app/views/integration/cti.jst.eco
  4015. #: app/assets/javascripts/app/views/integration/placetel.jst.eco
  4016. #: app/assets/javascripts/app/views/integration/sipgate.jst.eco
  4017. #: app/assets/javascripts/app/views/microsoft365/list.jst.eco
  4018. msgid "Inbound"
  4019. msgstr ""
  4020. #: app/assets/javascripts/app/controllers/agent_ticket_create.coffee
  4021. #: app/assets/javascripts/app/views/navigation/menu_cti_ringing.jst.eco
  4022. msgid "Inbound Call"
  4023. msgstr ""
  4024. #: db/seeds/object_manager_attributes.rb
  4025. msgid "Incident"
  4026. msgstr ""
  4027. #: app/assets/javascripts/app/views/generic/ticket_perform_action/notification.jst.eco
  4028. msgid "Include attachments of the article?"
  4029. msgstr ""
  4030. #: app/frontend/apps/mobile/modules/home/views/FavoriteTicketOverviewsEdit.vue
  4031. msgid "Included ticket overviews"
  4032. msgstr ""
  4033. #: app/assets/javascripts/app/views/integration/smime_list.jst.eco
  4034. msgid "Including private key."
  4035. msgstr ""
  4036. #: app/controllers/import_freshdesk_controller.rb
  4037. #: app/controllers/import_kayako_controller.rb
  4038. #: app/controllers/import_zendesk_controller.rb
  4039. msgid "Incomplete credentials"
  4040. msgstr ""
  4041. #: db/seeds/settings.rb
  4042. msgid "Increment (SystemID.Counter)"
  4043. msgstr ""
  4044. #: app/assets/javascripts/app/views/integration/exchange_last_import.jst.eco
  4045. #: app/assets/javascripts/app/views/integration/ldap_last_import.jst.eco
  4046. msgid "Info: %s"
  4047. msgstr ""
  4048. #: app/views/mailer/ticket_create/cs.html.erb
  4049. #: app/views/mailer/ticket_create/de.html.erb
  4050. #: app/views/mailer/ticket_create/en.html.erb
  4051. #: app/views/mailer/ticket_create/es.html.erb
  4052. #: app/views/mailer/ticket_create/fr.html.erb
  4053. #: app/views/mailer/ticket_create/it.html.erb
  4054. #: app/views/mailer/ticket_create/pl.html.erb
  4055. #: app/views/mailer/ticket_create/pt-br.html.erb
  4056. #: app/views/mailer/ticket_create/ru.html.erb
  4057. #: app/views/mailer/ticket_create/zh-cn.html.erb
  4058. #: app/views/mailer/ticket_create/zh-tw.html.erb
  4059. #: app/views/mailer/ticket_escalation/cs.html.erb
  4060. #: app/views/mailer/ticket_escalation/de.html.erb
  4061. #: app/views/mailer/ticket_escalation/en.html.erb
  4062. #: app/views/mailer/ticket_escalation/es.html.erb
  4063. #: app/views/mailer/ticket_escalation/fr.html.erb
  4064. #: app/views/mailer/ticket_escalation/it.html.erb
  4065. #: app/views/mailer/ticket_escalation/pl.html.erb
  4066. #: app/views/mailer/ticket_escalation/pt-br.html.erb
  4067. #: app/views/mailer/ticket_escalation/ru.html.erb
  4068. #: app/views/mailer/ticket_escalation/zh-cn.html.erb
  4069. #: app/views/mailer/ticket_escalation/zh-tw.html.erb
  4070. #: app/views/mailer/ticket_escalation_warning/cs.html.erb
  4071. #: app/views/mailer/ticket_escalation_warning/de.html.erb
  4072. #: app/views/mailer/ticket_escalation_warning/en.html.erb
  4073. #: app/views/mailer/ticket_escalation_warning/es.html.erb
  4074. #: app/views/mailer/ticket_escalation_warning/fr.html.erb
  4075. #: app/views/mailer/ticket_escalation_warning/it.html.erb
  4076. #: app/views/mailer/ticket_escalation_warning/pl.html.erb
  4077. #: app/views/mailer/ticket_escalation_warning/pt-br.html.erb
  4078. #: app/views/mailer/ticket_escalation_warning/ru.html.erb
  4079. #: app/views/mailer/ticket_escalation_warning/zh-cn.html.erb
  4080. #: app/views/mailer/ticket_escalation_warning/zh-tw.html.erb
  4081. #: app/views/mailer/ticket_reminder_reached/cs.html.erb
  4082. #: app/views/mailer/ticket_reminder_reached/de.html.erb
  4083. #: app/views/mailer/ticket_reminder_reached/en.html.erb
  4084. #: app/views/mailer/ticket_reminder_reached/es.html.erb
  4085. #: app/views/mailer/ticket_reminder_reached/fr.html.erb
  4086. #: app/views/mailer/ticket_reminder_reached/it.html.erb
  4087. #: app/views/mailer/ticket_reminder_reached/pt-br.html.erb
  4088. #: app/views/mailer/ticket_reminder_reached/ru.html.erb
  4089. #: app/views/mailer/ticket_reminder_reached/zh-cn.html.erb
  4090. #: app/views/mailer/ticket_reminder_reached/zh-tw.html.erb
  4091. #: app/views/mailer/ticket_update/cs.html.erb
  4092. #: app/views/mailer/ticket_update/de.html.erb
  4093. #: app/views/mailer/ticket_update/en.html.erb
  4094. #: app/views/mailer/ticket_update/es.html.erb
  4095. #: app/views/mailer/ticket_update/fr.html.erb
  4096. #: app/views/mailer/ticket_update/it.html.erb
  4097. #: app/views/mailer/ticket_update/pt-br.html.erb
  4098. #: app/views/mailer/ticket_update/ru.html.erb
  4099. #: app/views/mailer/ticket_update/zh-cn.html.erb
  4100. #: app/views/mailer/ticket_update/zh-tw.html.erb
  4101. msgid "Information"
  4102. msgstr ""
  4103. #: app/models/store.rb
  4104. msgid "Inline content could not be generated."
  4105. msgstr ""
  4106. #: app/assets/javascripts/app/views/translation/index.jst.eco
  4107. msgid "Inline translation"
  4108. msgstr ""
  4109. #: app/frontend/shared/components/Form/fields/FieldEditor/useEditorActions.ts
  4110. msgid "Insert text from Knowledge Base article"
  4111. msgstr ""
  4112. #: app/frontend/shared/components/Form/fields/FieldEditor/useEditorActions.ts
  4113. msgid "Insert text from text module"
  4114. msgstr ""
  4115. #: app/assets/javascripts/app/views/channel/chat.jst.eco
  4116. msgid "Insert the widget code into the source code of every page the chat shall be visible on. It should be placed at the end of the page's source code before the §</body>§ closing tag."
  4117. msgstr ""
  4118. #: app/assets/javascripts/app/controllers/_plugin/keyboard_shortcuts.coffee
  4119. msgid "Inserts a horizontal rule"
  4120. msgstr ""
  4121. #: app/assets/javascripts/app/controllers/_plugin/keyboard_shortcuts.coffee
  4122. msgid "Inserts a mention for a user"
  4123. msgstr ""
  4124. #: app/assets/javascripts/app/controllers/_plugin/keyboard_shortcuts.coffee
  4125. msgid "Inserts knowledge base answer"
  4126. msgstr ""
  4127. #: app/assets/javascripts/app/controllers/_plugin/keyboard_shortcuts.coffee
  4128. msgid "Inserts text module"
  4129. msgstr ""
  4130. #: app/assets/javascripts/app/views/package.jst.eco
  4131. msgid "Install Package"
  4132. msgstr ""
  4133. #: app/assets/javascripts/app/views/package.jst.eco
  4134. msgid "Installed"
  4135. msgstr ""
  4136. #: app/assets/javascripts/app/controllers/_ui_element/object_manager_attribute.coffee
  4137. msgid "Integer field"
  4138. msgstr ""
  4139. #: app/assets/javascripts/app/controllers/integrations.coffee
  4140. #: db/seeds/permissions.rb
  4141. msgid "Integrations"
  4142. msgstr ""
  4143. #: db/seeds/settings.rb
  4144. msgid "Intermediate"
  4145. msgstr ""
  4146. #: app/assets/javascripts/app/controllers/_ui_element/postmaster_set.coffee
  4147. #: app/assets/javascripts/app/controllers/knowledge_base/content_can_be_published_form.coffee
  4148. #: app/assets/javascripts/app/controllers/knowledge_base/content_controller.coffee
  4149. msgid "Internal"
  4150. msgstr ""
  4151. #: app/models/import_job.rb
  4152. msgid "Interrupted by a restart of the background worker process. Please restart manually or wait until the next execution time."
  4153. msgstr ""
  4154. #: app/controllers/first_steps_controller.rb
  4155. msgid "Intro"
  4156. msgstr ""
  4157. #: app/controllers/integration/cti_controller.rb
  4158. #: app/controllers/integration/placetel_controller.rb
  4159. #: app/controllers/integration/sipgate_controller.rb
  4160. msgid "Invalid 'direction'!"
  4161. msgstr ""
  4162. #: app/controllers/application_controller/authenticates.rb
  4163. msgid "Invalid BasicAuth credentials"
  4164. msgstr ""
  4165. #: lib/github/credentials.rb
  4166. msgid "Invalid GitHub GraphQL API token"
  4167. msgstr ""
  4168. #: lib/github/linked_issue.rb
  4169. msgid "Invalid GitHub issue link format"
  4170. msgstr ""
  4171. #: lib/gitlab/credentials.rb
  4172. msgid "Invalid GitLab GraphQL API token"
  4173. msgstr ""
  4174. #: lib/gitlab/linked_issue.rb
  4175. msgid "Invalid GitLab issue link format"
  4176. msgstr ""
  4177. #: app/controllers/getting_started_controller.rb
  4178. msgid "Invalid auto wizard file."
  4179. msgstr ""
  4180. #: app/controllers/long_polling_controller.rb
  4181. msgid "Invalid client_id in receive loop!"
  4182. msgstr ""
  4183. #: app/controllers/long_polling_controller.rb
  4184. msgid "Invalid client_id received!"
  4185. msgstr ""
  4186. #: app/controllers/tickets_controller.rb
  4187. msgid "Invalid link structure"
  4188. msgstr ""
  4189. #: app/controllers/tickets_controller.rb
  4190. msgid "Invalid link structure (Object → LinkType)"
  4191. msgstr ""
  4192. #: app/controllers/tickets_controller.rb
  4193. msgid "Invalid link structure (Object)"
  4194. msgstr ""
  4195. #: lib/external_credential/twitter.rb
  4196. msgid "Invalid oauth_token given!"
  4197. msgstr ""
  4198. #: lib/password_policy/min_length.rb
  4199. msgid "Invalid password, it must be at least %s characters long!"
  4200. msgstr ""
  4201. #: lib/password_policy/max_length.rb
  4202. msgid "Invalid password, it must be shorter than %s characters!"
  4203. msgstr ""
  4204. #: lib/password_policy/digit.rb
  4205. msgid "Invalid password, it must contain at least 1 digit!"
  4206. msgstr ""
  4207. #: lib/password_policy/special_character.rb
  4208. msgid "Invalid password, it must contain at least 1 special character!"
  4209. msgstr ""
  4210. #: lib/password_policy/upper_and_lower_case_characters.rb
  4211. msgid "Invalid password, it must contain at least 2 lowercase and 2 uppercase characters!"
  4212. msgstr ""
  4213. #: app/controllers/settings_controller.rb
  4214. msgid "Invalid payload, need data:image in logo param"
  4215. msgstr ""
  4216. #: lib/knowledge_base/permissions_update.rb
  4217. msgid "Invalid permissions, do not lock yourself out."
  4218. msgstr ""
  4219. #: app/models/concerns/checks_condition_validation.rb
  4220. msgid "Invalid ticket selector conditions"
  4221. msgstr ""
  4222. #: app/controllers/integration/cti_controller.rb
  4223. #: app/controllers/integration/placetel_controller.rb
  4224. #: app/controllers/integration/sipgate_controller.rb
  4225. msgid "Invalid token, please contact your admin!"
  4226. msgstr ""
  4227. #: app/assets/javascripts/app/controllers/_ui_element/richtext_additions/popup_video.coffee
  4228. msgid "Invalid video URL"
  4229. msgstr ""
  4230. #: app/assets/javascripts/app/controllers/getting_started/agent.coffee
  4231. msgid "Invitation sent!"
  4232. msgstr ""
  4233. #: app/assets/javascripts/app/views/getting_started/agent.jst.eco
  4234. #: app/assets/javascripts/app/views/widget/invite_user.jst.eco
  4235. msgid "Invite"
  4236. msgstr ""
  4237. #: app/assets/javascripts/app/controllers/getting_started/agent.coffee
  4238. msgid "Invite Agents"
  4239. msgstr ""
  4240. #: app/assets/javascripts/app/controllers/_dashboard/first_steps.coffee
  4241. #: app/assets/javascripts/app/views/getting_started/agent.jst.eco
  4242. msgid "Invite Colleagues"
  4243. msgstr ""
  4244. #: app/assets/javascripts/app/controllers/_dashboard/first_steps.coffee
  4245. msgid "Invite Customer"
  4246. msgstr ""
  4247. #: app/controllers/first_steps_controller.rb
  4248. msgid "Invite agents/colleagues to help working on tickets"
  4249. msgstr ""
  4250. #: app/controllers/first_steps_controller.rb
  4251. msgid "Invite customers to create issues in Zammad"
  4252. msgstr ""
  4253. #: app/assets/javascripts/app/lib/app_post/iconset_picker.coffee
  4254. msgid "Ionicons"
  4255. msgstr ""
  4256. #: app/assets/javascripts/app/controllers/ticket_overview.coffee
  4257. msgid "Items per page"
  4258. msgstr ""
  4259. #: app/assets/javascripts/app/controllers/_ui_element/basedate.coffee
  4260. #: app/assets/javascripts/app/controllers/report.coffee
  4261. #: app/assets/javascripts/app/controllers/time_accounting.coffee
  4262. #: app/frontend/shared/components/Form/fields/FieldDate/FieldDateTimeInput.vue
  4263. msgid "Jan"
  4264. msgstr ""
  4265. #: app/assets/javascripts/app/controllers/_ui_element/basedate.coffee
  4266. #: app/frontend/shared/components/Form/fields/FieldDate/FieldDateTimeInput.vue
  4267. msgid "January"
  4268. msgstr ""
  4269. #: app/assets/javascripts/app/views/integration/exchange_last_import.jst.eco
  4270. #: app/assets/javascripts/app/views/integration/ldap_last_import.jst.eco
  4271. msgid "Job is waiting to get started…"
  4272. msgstr ""
  4273. #: app/assets/javascripts/app/views/channel/chat.jst.eco
  4274. msgid "John Smith"
  4275. msgstr ""
  4276. #: app/assets/javascripts/app/views/signup.jst.eco
  4277. msgid "Join %s"
  4278. msgstr ""
  4279. #: app/assets/javascripts/app/controllers/_ui_element/basedate.coffee
  4280. #: app/assets/javascripts/app/controllers/report.coffee
  4281. #: app/assets/javascripts/app/controllers/time_accounting.coffee
  4282. #: app/frontend/shared/components/Form/fields/FieldDate/FieldDateTimeInput.vue
  4283. msgid "Jul"
  4284. msgstr ""
  4285. #: app/assets/javascripts/app/controllers/_ui_element/basedate.coffee
  4286. #: app/frontend/shared/components/Form/fields/FieldDate/FieldDateTimeInput.vue
  4287. msgid "July"
  4288. msgstr ""
  4289. #: app/assets/javascripts/app/controllers/_ui_element/basedate.coffee
  4290. #: app/assets/javascripts/app/controllers/report.coffee
  4291. #: app/assets/javascripts/app/controllers/time_accounting.coffee
  4292. #: app/frontend/shared/components/Form/fields/FieldDate/FieldDateTimeInput.vue
  4293. msgid "Jun"
  4294. msgstr ""
  4295. #: app/assets/javascripts/app/controllers/_ui_element/basedate.coffee
  4296. #: app/frontend/shared/components/Form/fields/FieldDate/FieldDateTimeInput.vue
  4297. msgid "June"
  4298. msgstr ""
  4299. #: app/assets/javascripts/app/views/translation/index.jst.eco
  4300. msgid "Just click into the highlighted area and update the words right there. Enjoy!"
  4301. msgstr ""
  4302. #: app/assets/javascripts/app/views/karma/index.jst.eco
  4303. msgid "Karma Level"
  4304. msgstr ""
  4305. #: app/assets/javascripts/app/views/karma/index.jst.eco
  4306. msgid "Karma Trends"
  4307. msgstr ""
  4308. #: app/assets/javascripts/app/controllers/_channel/email.coffee
  4309. #: app/assets/javascripts/app/controllers/_channel/google.coffee
  4310. #: app/assets/javascripts/app/controllers/_channel/microsoft365.coffee
  4311. #: app/assets/javascripts/app/controllers/getting_started/channel_email.coffee
  4312. msgid "Keep messages on server"
  4313. msgstr ""
  4314. #: app/assets/javascripts/app/views/object_manager/attribute/boolean.jst.eco
  4315. #: app/assets/javascripts/app/views/object_manager/attribute/multi_tree_select.jst.eco
  4316. #: app/assets/javascripts/app/views/object_manager/attribute/multiselect.jst.eco
  4317. #: app/assets/javascripts/app/views/object_manager/attribute/select.jst.eco
  4318. #: app/assets/javascripts/app/views/object_manager/attribute/tree_select.jst.eco
  4319. msgid "Key"
  4320. msgstr ""
  4321. #: app/assets/javascripts/app/controllers/_plugin/keyboard_shortcuts.coffee
  4322. #: app/assets/javascripts/app/controllers/keyboard_shortcuts.coffee
  4323. msgid "Keyboard Shortcuts"
  4324. msgstr ""
  4325. #: app/assets/javascripts/app/models/text_module.coffee
  4326. msgid "Keywords"
  4327. msgstr ""
  4328. #: app/assets/javascripts/app/controllers/_manage/knowledge_base.coffee
  4329. #: app/assets/javascripts/app/controllers/knowledge_base/agent_controller.coffee
  4330. #: app/assets/javascripts/app/models/knowledge_base.coffee
  4331. #: app/models/knowledge_base.rb
  4332. #: db/seeds/permissions.rb
  4333. msgid "Knowledge Base"
  4334. msgstr ""
  4335. #: app/assets/javascripts/app/models/knowledge_base_answer_translation.coffee
  4336. msgid "Knowledge Base Answer"
  4337. msgstr ""
  4338. #: db/seeds/permissions.rb
  4339. msgid "Knowledge Base Editor"
  4340. msgstr ""
  4341. #: db/seeds/permissions.rb
  4342. msgid "Knowledge Base Reader"
  4343. msgstr ""
  4344. #: db/seeds/settings.rb
  4345. msgid "Knowledge Base active"
  4346. msgstr ""
  4347. #: db/seeds/settings.rb
  4348. msgid "Knowledge Base active publicly"
  4349. msgstr ""
  4350. #: db/seeds/settings.rb
  4351. msgid "Knowledge Base multilingual support"
  4352. msgstr ""
  4353. #: app/assets/javascripts/app/controllers/_integration/ldap.coffee
  4354. #: app/assets/javascripts/app/views/integration/ldap.jst.eco
  4355. #: app/assets/javascripts/app/views/integration/ldap_wizard.jst.eco
  4356. msgid "LDAP"
  4357. msgstr ""
  4358. #: app/assets/javascripts/app/views/integration/ldap.jst.eco
  4359. msgid "LDAP Host"
  4360. msgstr ""
  4361. #: db/seeds/settings.rb
  4362. msgid "LDAP integration"
  4363. msgstr ""
  4364. #: app/assets/javascripts/app/controllers/_integration/ldap.coffee
  4365. msgid "LDAP integration for user management."
  4366. msgstr ""
  4367. #: app/assets/javascripts/app/views/ticket_zoom/sidebar_git_issue.jst.eco
  4368. msgid "Labels"
  4369. msgstr ""
  4370. #: app/assets/javascripts/app/models/knowledge_base.coffee
  4371. msgid "Landing page layout"
  4372. msgstr ""
  4373. #: app/assets/javascripts/app/controllers/_profile/language.coffee
  4374. #: app/assets/javascripts/app/views/generic/multi_locales.jst.eco
  4375. #: app/assets/javascripts/app/views/popover/kb_generic.jst.eco
  4376. #: app/assets/javascripts/app/views/profile/language.jst.eco
  4377. #: app/frontend/apps/mobile/modules/account/views/AccountOverview.vue
  4378. #: db/seeds/permissions.rb
  4379. msgid "Language"
  4380. msgstr ""
  4381. #: app/assets/javascripts/app/controllers/_manage/knowledge_base.coffee
  4382. #: app/assets/javascripts/app/models/knowledge_base.coffee
  4383. msgid "Languages"
  4384. msgstr ""
  4385. #: lib/excel_sheet/ticket.rb
  4386. msgid "Last Contact Agent At"
  4387. msgstr ""
  4388. #: lib/excel_sheet/ticket.rb
  4389. msgid "Last Contact At"
  4390. msgstr ""
  4391. #: lib/excel_sheet/ticket.rb
  4392. msgid "Last Contact Customer At"
  4393. msgstr ""
  4394. #: app/assets/javascripts/app/controllers/ticket_zoom/attribute_bar.coffee
  4395. msgid "Last change %s %s by %s"
  4396. msgstr ""
  4397. #: app/assets/javascripts/app/models/ticket.coffee
  4398. msgid "Last contact"
  4399. msgstr ""
  4400. #: app/assets/javascripts/app/models/ticket.coffee
  4401. msgid "Last contact (agent)"
  4402. msgstr ""
  4403. #: app/assets/javascripts/app/models/ticket.coffee
  4404. msgid "Last contact (customer)"
  4405. msgstr ""
  4406. #: app/assets/javascripts/app/models/user.coffee
  4407. #: db/seeds/object_manager_attributes.rb
  4408. msgid "Last name"
  4409. msgstr ""
  4410. #: app/assets/javascripts/app/models/job.coffee
  4411. msgid "Last run"
  4412. msgstr ""
  4413. #: app/frontend/apps/mobile/modules/search/views/SearchOverview.vue
  4414. msgid "Last searches"
  4415. msgstr ""
  4416. #: app/assets/javascripts/app/views/integration/exchange_last_import.jst.eco
  4417. #: app/assets/javascripts/app/views/integration/ldap_last_import.jst.eco
  4418. msgid "Last sync"
  4419. msgstr ""
  4420. #: app/assets/javascripts/app/views/calendar/index.jst.eco
  4421. msgid "Last sync at"
  4422. msgstr ""
  4423. #: app/assets/javascripts/app/views/profile/token_access.jst.eco
  4424. msgid "Last used"
  4425. msgstr ""
  4426. #: app/assets/javascripts/app/views/karma/index.jst.eco
  4427. msgid "Latest updates"
  4428. msgstr ""
  4429. #: app/assets/javascripts/app/models/knowledge_base.coffee
  4430. msgid "Layout"
  4431. msgstr ""
  4432. #: app/frontend/apps/mobile/modules/account/views/AccountAvatar.vue
  4433. msgid "Library"
  4434. msgstr ""
  4435. #: app/assets/javascripts/app/views/profile/notification.jst.eco
  4436. msgid "Limit Groups"
  4437. msgstr ""
  4438. #: db/seeds/settings.rb
  4439. msgid "Limit tickets by IP per day"
  4440. msgstr ""
  4441. #: db/seeds/settings.rb
  4442. msgid "Limit tickets by IP per hour"
  4443. msgstr ""
  4444. #: db/seeds/settings.rb
  4445. msgid "Limit tickets per day"
  4446. msgstr ""
  4447. #: app/assets/javascripts/app/controllers/_ui_element/richtext_additions/embed_video_button.coffee
  4448. #: app/assets/javascripts/app/controllers/_ui_element/richtext_additions/link_button.coffee
  4449. #: app/assets/javascripts/app/controllers/ticket_link_add.coffee
  4450. #: app/assets/javascripts/app/models/overview.coffee
  4451. msgid "Link"
  4452. msgstr ""
  4453. #: app/assets/javascripts/app/views/import/otrs.jst.eco
  4454. msgid "Link %s"
  4455. msgstr ""
  4456. #: app/assets/javascripts/app/views/link/ticket/add.jst.eco
  4457. msgid "Link %s %s as %s of Ticket# %s"
  4458. msgstr ""
  4459. #: app/assets/javascripts/app/views/profile/linked_accounts.jst.eco
  4460. msgid "Link Accounts"
  4461. msgstr ""
  4462. #: app/assets/javascripts/app/controllers/_ui_element/richtext_additions/link_answer_button.coffee
  4463. msgid "Link Answer"
  4464. msgstr ""
  4465. #: app/assets/javascripts/app/controllers/_integration/github.coffee
  4466. msgid "Link GitHub issues to your tickets."
  4467. msgstr ""
  4468. #: app/assets/javascripts/app/controllers/_integration/gitlab.coffee
  4469. msgid "Link GitLab issues to your tickets."
  4470. msgstr ""
  4471. #: app/assets/javascripts/app/views/link/kb_answer.jst.eco
  4472. msgid "Link Related Answer"
  4473. msgstr ""
  4474. #: app/assets/javascripts/app/controllers/_ui_element/object_manager_attribute.coffee
  4475. msgid "Link Template"
  4476. msgstr ""
  4477. #: app/assets/javascripts/app/controllers/ticket_zoom/sidebar_git_issue.coffee
  4478. msgid "Link issue"
  4479. msgstr ""
  4480. #: app/assets/javascripts/app/controllers/_profile/linked_accounts.coffee
  4481. #: app/assets/javascripts/app/views/popover/user.jst.eco
  4482. #: app/assets/javascripts/app/views/widget/user.jst.eco
  4483. #: db/seeds/permissions.rb
  4484. msgid "Linked Accounts"
  4485. msgstr ""
  4486. #: app/assets/javascripts/app/views/knowledge_base/_reader_linked_tickets.jst.eco
  4487. #: app/assets/javascripts/app/views/knowledge_base/sidebar/linked_tickets.jst.eco
  4488. msgid "Linked Tickets"
  4489. msgstr ""
  4490. #: app/assets/javascripts/app/controllers/_profile/linked_accounts.coffee
  4491. msgid "LinkedIn"
  4492. msgstr ""
  4493. #: db/seeds/settings.rb
  4494. msgid "LinkedIn App Credentials"
  4495. msgstr ""
  4496. #: app/assets/javascripts/app/views/link/ticket/list.jst.eco
  4497. msgid "Links"
  4498. msgstr ""
  4499. #: app/assets/javascripts/app/controllers/_plugin/keyboard_shortcuts.coffee
  4500. msgid "List of shortcuts"
  4501. msgstr ""
  4502. #: app/assets/javascripts/app/views/channel/chat.jst.eco
  4503. msgid "Load"
  4504. msgstr ""
  4505. #: app/assets/javascripts/app/controllers/_integration/smime.coffee
  4506. #: app/assets/javascripts/app/controllers/knowledge_base/search_field_widget.coffee
  4507. #: app/assets/javascripts/app/controllers/ticket_zoom/sidebar_git_issue.coffee
  4508. #: app/assets/javascripts/app/controllers/ticket_zoom/sidebar_idoit.coffee
  4509. #: app/assets/javascripts/app/controllers/widget/payload_example.coffee
  4510. #: app/assets/javascripts/app/models/knowledge_base_answer_translation.coffee
  4511. msgid "Loading failed."
  4512. msgstr ""
  4513. #: app/assets/javascripts/app/lib/app_post/task_manager.coffee
  4514. #: app/assets/javascripts/app/lib/base/jquery.textmodule.js
  4515. #: app/assets/javascripts/app/views/generic/page_loading.jst.eco
  4516. msgid "Loading…"
  4517. msgstr ""
  4518. #: lib/email_helper.rb
  4519. msgid "Local MTA (Sendmail/Postfix/Exim/…) - use server setup"
  4520. msgstr ""
  4521. #: db/seeds/settings.rb
  4522. msgid "Locale"
  4523. msgstr ""
  4524. #: app/graphql/gql/mutations/account/locale.rb
  4525. msgid "Locale could not be found."
  4526. msgstr ""
  4527. #: app/assets/javascripts/app/controllers/knowledge_base/agent_controller.coffee
  4528. msgid "Locale not found"
  4529. msgstr ""
  4530. #: app/assets/javascripts/app/views/generic/calender_preview.jst.eco
  4531. #: app/assets/javascripts/app/views/profile/devices.jst.eco
  4532. #: app/assets/javascripts/app/views/session.jst.eco
  4533. msgid "Location"
  4534. msgstr ""
  4535. #: app/assets/javascripts/app/controllers/_channel/chat.coffee
  4536. msgid "Location of an external chat.css file."
  4537. msgstr ""
  4538. #: app/assets/javascripts/app/views/login.jst.eco
  4539. msgid "Log in to %s"
  4540. msgstr ""
  4541. #: app/assets/javascripts/app/models/user.coffee
  4542. #: app/assets/javascripts/app/views/maintenance.jst.eco
  4543. #: app/controllers/time_accountings_controller.rb
  4544. #: db/seeds/object_manager_attributes.rb
  4545. msgid "Login"
  4546. msgstr ""
  4547. #: app/controllers/application_controller/authenticates.rb
  4548. #: app/graphql/gql/mutations/login.rb
  4549. msgid "Login failed. Have you double-checked your credentials and completed the email verification step?"
  4550. msgstr ""
  4551. #: app/assets/javascripts/app/views/getting_started/base.jst.eco
  4552. #: db/seeds/settings.rb
  4553. msgid "Logo"
  4554. msgstr ""
  4555. #: app/assets/javascripts/app/controllers/_plugin/keyboard_shortcuts.coffee
  4556. msgid "Logout"
  4557. msgstr ""
  4558. #: db/seeds/settings.rb
  4559. msgid "Lost Password"
  4560. msgstr ""
  4561. #: app/assets/javascripts/app/lib/app_post/websocket.coffee
  4562. msgid "Lost network connection!"
  4563. msgstr ""
  4564. #: app/assets/javascripts/app/controllers/macro.coffee
  4565. msgid "Macro"
  4566. msgstr ""
  4567. #: app/controllers/tickets_mass_controller.rb
  4568. msgid "Macro group restrictions do not cover all tickets"
  4569. msgstr ""
  4570. #: app/assets/javascripts/app/controllers/macro.coffee
  4571. #: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco
  4572. #: db/seeds/permissions.rb
  4573. msgid "Macros"
  4574. msgstr ""
  4575. #: app/assets/javascripts/app/models/macro.coffee
  4576. msgid "Macros make it easy to automate common, multi-step tasks within Zammad.\n\nYou can use macros in Zammad to automate recurring sequences, saving time (and nerves). This allows a combined sequence of actions on the ticket to be executed with just one click."
  4577. msgstr ""
  4578. #: app/assets/javascripts/app/controllers/maintenance.coffee
  4579. #: app/assets/javascripts/app/views/maintenance.jst.eco
  4580. #: db/seeds/permissions.rb
  4581. msgid "Maintenance"
  4582. msgstr ""
  4583. #: db/seeds/settings.rb
  4584. msgid "Maintenance Login"
  4585. msgstr ""
  4586. #: db/seeds/settings.rb
  4587. msgid "Maintenance Mode"
  4588. msgstr ""
  4589. #: app/controllers/application_controller/authenticates.rb
  4590. msgid "Maintenance mode enabled!"
  4591. msgstr ""
  4592. #: app/assets/javascripts/app/controllers/manage.coffee
  4593. msgid "Manage"
  4594. msgstr ""
  4595. #: db/seeds/permissions.rb
  4596. msgid "Manage %s"
  4597. msgstr ""
  4598. #: db/seeds/permissions.rb
  4599. msgid "Manage %s Settings"
  4600. msgstr ""
  4601. #: app/assets/javascripts/app/views/tag/index.jst.eco
  4602. msgid "Manage Tags"
  4603. msgstr ""
  4604. #: app/assets/javascripts/app/views/api.jst.eco
  4605. msgid "Manage applications that can use Zammad as an OAuth provider and applications that you've authorized to use your account."
  4606. msgstr ""
  4607. #: app/views/mailer/application.html.erb
  4608. msgid "Manage your notification settings"
  4609. msgstr ""
  4610. #: app/assets/javascripts/app/views/api.jst.eco
  4611. #: app/assets/javascripts/app/views/calendar/index.jst.eco
  4612. #: app/assets/javascripts/app/views/data_privacy/index.jst.eco
  4613. #: app/assets/javascripts/app/views/generic/admin/index.jst.eco
  4614. #: app/assets/javascripts/app/views/package.jst.eco
  4615. #: app/assets/javascripts/app/views/sla/index.jst.eco
  4616. #: app/assets/javascripts/app/views/user.jst.eco
  4617. msgid "Management"
  4618. msgstr ""
  4619. #: app/assets/javascripts/app/views/channel/chat.jst.eco
  4620. msgid "Manually open chat"
  4621. msgstr ""
  4622. #: app/assets/javascripts/app/views/integration/clearbit.jst.eco
  4623. #: app/assets/javascripts/app/views/integration/exchange.jst.eco
  4624. #: app/assets/javascripts/app/views/integration/exchange_wizard.jst.eco
  4625. #: app/assets/javascripts/app/views/integration/ldap.jst.eco
  4626. #: app/assets/javascripts/app/views/integration/ldap_wizard.jst.eco
  4627. msgid "Mapping"
  4628. msgstr ""
  4629. #: app/assets/javascripts/app/controllers/_ui_element/basedate.coffee
  4630. #: app/assets/javascripts/app/controllers/report.coffee
  4631. #: app/assets/javascripts/app/controllers/time_accounting.coffee
  4632. #: app/frontend/shared/components/Form/fields/FieldDate/FieldDateTimeInput.vue
  4633. msgid "Mar"
  4634. msgstr ""
  4635. #: app/assets/javascripts/app/controllers/_ui_element/basedate.coffee
  4636. #: app/frontend/shared/components/Form/fields/FieldDate/FieldDateTimeInput.vue
  4637. msgid "March"
  4638. msgstr ""
  4639. #: app/assets/javascripts/app/views/widget/online_notification.jst.eco
  4640. #: app/frontend/apps/mobile/modules/notifications/views/NotificationsList.vue
  4641. msgid "Mark all as read"
  4642. msgstr ""
  4643. #: db/seeds/settings.rb
  4644. msgid "Master"
  4645. msgstr ""
  4646. #: app/assets/javascripts/app/models/postmaster_filter.coffee
  4647. msgid "Match all of the following"
  4648. msgstr ""
  4649. #: app/assets/javascripts/app/lib/app_post/iconset_picker.coffee
  4650. msgid "Material"
  4651. msgstr ""
  4652. #: app/assets/javascripts/app/controllers/_integration/slack.coffee
  4653. msgid "Mattermost, RocketChat"
  4654. msgstr ""
  4655. #: app/assets/javascripts/app/models/chat.coffee
  4656. #: app/assets/javascripts/app/views/channel/topics.jst.eco
  4657. msgid "Max. clients on waitlist"
  4658. msgstr ""
  4659. #: app/assets/javascripts/app/views/customer_chat/setting.jst.eco
  4660. msgid "Max. concurrent chats"
  4661. msgstr ""
  4662. #: app/assets/javascripts/app/controllers/_ui_element/object_manager_attribute.coffee
  4663. msgid "Max. length"
  4664. msgstr ""
  4665. #: db/seeds/settings.rb
  4666. msgid "Max. length of the subject in an email reply."
  4667. msgstr ""
  4668. #: app/assets/javascripts/app/controllers/_ui_element/object_manager_attribute.coffee
  4669. msgid "Maximal"
  4670. msgstr ""
  4671. #: db/seeds/settings.rb
  4672. msgid "Maximum Email Size"
  4673. msgstr ""
  4674. #: db/seeds/settings.rb
  4675. msgid "Maximum failed logins"
  4676. msgstr ""
  4677. #: db/seeds/settings.rb
  4678. msgid "Maximum number of recursively executed triggers."
  4679. msgstr ""
  4680. #: app/assets/javascripts/app/controllers/_ui_element/basedate.coffee
  4681. #: app/assets/javascripts/app/controllers/report.coffee
  4682. #: app/assets/javascripts/app/controllers/time_accounting.coffee
  4683. #: app/frontend/shared/components/Form/fields/FieldDate/FieldDateTimeInput.vue
  4684. msgid "May"
  4685. msgstr ""
  4686. #: app/assets/javascripts/app/views/organization_profile/object.jst.eco
  4687. #: app/assets/javascripts/app/views/popover/organization.jst.eco
  4688. #: app/assets/javascripts/app/views/widget/organization.jst.eco
  4689. msgid "Members"
  4690. msgstr ""
  4691. #: app/frontend/shared/components/Form/fields/FieldEditor/useEditorActions.ts
  4692. msgid "Mention user"
  4693. msgstr ""
  4694. #: app/assets/javascripts/app/views/twitter/list.jst.eco
  4695. msgid "Mentions"
  4696. msgstr ""
  4697. #: app/assets/javascripts/app/views/twitter/account_edit.jst.eco
  4698. msgid "Mentions Group"
  4699. msgstr ""
  4700. #: app/assets/javascripts/app/controllers/agent_ticket_merge.coffee
  4701. #: app/assets/javascripts/app/controllers/ticket_zoom/sidebar_ticket.coffee
  4702. msgid "Merge"
  4703. msgstr ""
  4704. #: app/assets/javascripts/app/views/agent_ticket_merge.jst.eco
  4705. msgid "Merge to Ticket#"
  4706. msgstr ""
  4707. #: app/assets/javascripts/app/controllers/_channel/sms.coffee
  4708. #: app/assets/javascripts/app/views/maintenance.jst.eco
  4709. msgid "Message"
  4710. msgstr ""
  4711. #: app/assets/javascripts/app/views/channel/form.jst.eco
  4712. msgid "Message after sending form"
  4713. msgstr ""
  4714. #: db/seeds/settings.rb
  4715. msgid "Message for login page."
  4716. msgstr ""
  4717. #: app/assets/javascripts/app/views/telegram/index.jst.eco
  4718. msgid "Messages"
  4719. msgstr ""
  4720. #: app/assets/javascripts/app/views/widget/http_log_show.jst.eco
  4721. msgid "Method"
  4722. msgstr ""
  4723. #: app/assets/javascripts/app/controllers/_ui_element/object_manager_attribute.coffee
  4724. msgid "Method (AJAX endpoint)"
  4725. msgstr ""
  4726. #: app/assets/javascripts/app/controllers/_profile/linked_accounts.coffee
  4727. msgid "Microsoft"
  4728. msgstr ""
  4729. #: app/assets/javascripts/app/controllers/_channel/microsoft365.coffee
  4730. #: app/assets/javascripts/app/views/microsoft365/index.jst.eco
  4731. #: app/assets/javascripts/app/views/microsoft365/list.jst.eco
  4732. msgid "Microsoft 365"
  4733. msgstr ""
  4734. #: db/seeds/settings.rb
  4735. msgid "Microsoft 365 App Credentials"
  4736. msgstr ""
  4737. #: db/seeds/settings.rb
  4738. msgid "Microsoft Application Registration Portal"
  4739. msgstr ""
  4740. #: app/assets/javascripts/app/views/import/freshdesk.jst.eco
  4741. #: app/assets/javascripts/app/views/import/kayako.jst.eco
  4742. #: app/assets/javascripts/app/views/import/otrs.jst.eco
  4743. #: app/assets/javascripts/app/views/import/zendesk.jst.eco
  4744. msgid "Migrate %s Data"
  4745. msgstr ""
  4746. #: app/assets/javascripts/app/views/channel/email_account_overview.jst.eco
  4747. msgid "Migrate now!"
  4748. msgstr ""
  4749. #: app/assets/javascripts/app/views/import/otrs.jst.eco
  4750. msgid "Migration Plugin for %s"
  4751. msgstr ""
  4752. #: app/controllers/import_otrs_controller.rb
  4753. msgid "Migrator can't read OTRS output!"
  4754. msgstr ""
  4755. #: app/assets/javascripts/app/views/ticket_zoom/sidebar_git_issue.jst.eco
  4756. msgid "Milestone"
  4757. msgstr ""
  4758. #: db/seeds/settings.rb
  4759. msgid "Min. size of number"
  4760. msgstr ""
  4761. #: app/assets/javascripts/app/controllers/_ui_element/object_manager_attribute.coffee
  4762. msgid "Minimal"
  4763. msgstr ""
  4764. #: db/seeds/settings.rb
  4765. msgid "Minimum length"
  4766. msgstr ""
  4767. #: app/assets/javascripts/app/views/generic/timer.jst.eco
  4768. msgid "Minute"
  4769. msgstr ""
  4770. #: app/assets/javascripts/app/controllers/_ui_element/time_range.coffee
  4771. msgid "Minute(s)"
  4772. msgstr ""
  4773. #: app/assets/javascripts/app/views/generic/timeplan.jst.eco
  4774. msgid "Minutes"
  4775. msgstr ""
  4776. #: db/seeds/object_manager_attributes.rb
  4777. msgid "Mobile"
  4778. msgstr ""
  4779. #: app/assets/javascripts/app/views/maintenance.jst.eco
  4780. msgid "Mode"
  4781. msgstr ""
  4782. #: app/assets/javascripts/app/controllers/_ui_element/core_workflow_condition.coffee
  4783. #: app/assets/javascripts/app/controllers/_ui_element/core_workflow_perform.coffee
  4784. msgid "Module"
  4785. msgstr ""
  4786. #: app/assets/javascripts/app/controllers/_ui_element/basedate.coffee
  4787. #: app/frontend/shared/components/Form/fields/FieldDate/FieldDateTimeInput.vue
  4788. msgid "Mon"
  4789. msgstr ""
  4790. #: app/assets/javascripts/app/controllers/_ui_element/basedate.coffee
  4791. #: app/assets/javascripts/app/controllers/_ui_element/timer.coffee
  4792. #: app/assets/javascripts/app/lib/app_post/business_hours.coffee
  4793. #: app/assets/javascripts/app/views/calendar/index.jst.eco
  4794. #: app/frontend/shared/components/Form/fields/FieldDate/FieldDateTimeInput.vue
  4795. msgid "Monday"
  4796. msgstr ""
  4797. #: app/assets/javascripts/app/controllers/_integration/monit.coffee
  4798. msgid "Monit"
  4799. msgstr ""
  4800. #: db/seeds/settings.rb
  4801. msgid "Monit integration"
  4802. msgstr ""
  4803. #: app/assets/javascripts/app/controllers/monitoring.coffee
  4804. #: app/assets/javascripts/app/views/monitoring.jst.eco
  4805. #: db/seeds/permissions.rb
  4806. msgid "Monitoring"
  4807. msgstr ""
  4808. #: db/seeds/settings.rb
  4809. msgid "Monitoring Token"
  4810. msgstr ""
  4811. #: app/assets/javascripts/app/views/report/time_range_picker.jst.eco
  4812. msgid "Month"
  4813. msgstr ""
  4814. #: app/assets/javascripts/app/controllers/_ui_element/time_range.coffee
  4815. msgid "Month(s)"
  4816. msgstr ""
  4817. #: app/assets/javascripts/app/views/dashboard/stats/ticket_escalation.jst.eco
  4818. msgid "Mood"
  4819. msgstr ""
  4820. #: app/models/user.rb
  4821. msgid "More than 250 secondary organizations are not allowed."
  4822. msgstr ""
  4823. #: app/frontend/apps/mobile/modules/home/views/FavoriteTicketOverviewsEdit.vue
  4824. msgid "More ticket overviews"
  4825. msgstr ""
  4826. #: app/assets/javascripts/app/views/profile/devices.jst.eco
  4827. msgid "Most recent activity"
  4828. msgstr ""
  4829. #: app/assets/javascripts/app/views/settings/storage_provider.jst.eco
  4830. msgid "Move all from \"%s\" to \"%s\""
  4831. msgstr ""
  4832. #: app/assets/javascripts/app/controllers/_plugin/keyboard_shortcuts.coffee
  4833. msgid "Move left and right"
  4834. msgstr ""
  4835. #: app/assets/javascripts/app/controllers/_plugin/keyboard_shortcuts.coffee
  4836. msgid "Move up and down"
  4837. msgstr ""
  4838. #: app/models/report.rb
  4839. msgid "Moved in"
  4840. msgstr ""
  4841. #: app/models/report.rb
  4842. msgid "Moved out"
  4843. msgstr ""
  4844. #: app/assets/javascripts/app/controllers/_ui_element/object_manager_attribute.coffee
  4845. msgid "Multiple selection field"
  4846. msgstr ""
  4847. #: app/assets/javascripts/app/controllers/_ui_element/object_manager_attribute.coffee
  4848. msgid "Multiple tree selection field"
  4849. msgstr ""
  4850. #: db/seeds/overviews.rb
  4851. msgid "My Assigned Tickets"
  4852. msgstr ""
  4853. #: db/seeds/overviews.rb
  4854. msgid "My Organization Tickets"
  4855. msgstr ""
  4856. #: db/seeds/overviews.rb
  4857. msgid "My Pending Reached Tickets"
  4858. msgstr ""
  4859. #: db/seeds/overviews.rb
  4860. msgid "My Replacement Tickets"
  4861. msgstr ""
  4862. #: app/assets/javascripts/app/views/dashboard.jst.eco
  4863. msgid "My Stats"
  4864. msgstr ""
  4865. #: db/seeds/overviews.rb
  4866. msgid "My Subscribed Tickets"
  4867. msgstr ""
  4868. #: app/assets/javascripts/app/views/profile/calendar_subscriptions.jst.eco
  4869. #: app/assets/javascripts/app/views/profile/notification.jst.eco
  4870. #: db/seeds/overviews.rb
  4871. msgid "My Tickets"
  4872. msgstr ""
  4873. #: app/assets/javascripts/app/views/dashboard/stats/ticket_waiting_time.jst.eco
  4874. msgid "My handling time: %s minutes"
  4875. msgstr ""
  4876. #: app/assets/javascripts/app/views/dashboard/stats/ticket_in_process.jst.eco
  4877. msgid "My tickets in process"
  4878. msgstr ""
  4879. #: app/assets/javascripts/app/controllers/_integration/nagios.coffee
  4880. msgid "Nagios"
  4881. msgstr ""
  4882. #: db/seeds/settings.rb
  4883. msgid "Nagios integration"
  4884. msgstr ""
  4885. #: app/assets/javascripts/app/controllers/_application_controller/reorder_modal.coffee
  4886. #: app/assets/javascripts/app/controllers/_integration/ldap.coffee
  4887. #: app/assets/javascripts/app/controllers/chat.coffee
  4888. #: app/assets/javascripts/app/models/_application_model.coffee
  4889. #: app/assets/javascripts/app/models/application.coffee
  4890. #: app/assets/javascripts/app/models/calendar.coffee
  4891. #: app/assets/javascripts/app/models/chat.coffee
  4892. #: app/assets/javascripts/app/models/chat_sessions.coffee
  4893. #: app/assets/javascripts/app/models/core_workflow.coffee
  4894. #: app/assets/javascripts/app/models/core_workflow_custom_module.coffee
  4895. #: app/assets/javascripts/app/models/group.coffee
  4896. #: app/assets/javascripts/app/models/job.coffee
  4897. #: app/assets/javascripts/app/models/knowledge_base_answer_translation.coffee
  4898. #: app/assets/javascripts/app/models/ldap_source.coffee
  4899. #: app/assets/javascripts/app/models/macro.coffee
  4900. #: app/assets/javascripts/app/models/object_manager_attribute.coffee
  4901. #: app/assets/javascripts/app/models/organization.coffee
  4902. #: app/assets/javascripts/app/models/overview.coffee
  4903. #: app/assets/javascripts/app/models/postmaster_filter.coffee
  4904. #: app/assets/javascripts/app/models/report_profile.js.coffee
  4905. #: app/assets/javascripts/app/models/role.coffee
  4906. #: app/assets/javascripts/app/models/signature.coffee
  4907. #: app/assets/javascripts/app/models/sla.coffee
  4908. #: app/assets/javascripts/app/models/text_module.coffee
  4909. #: app/assets/javascripts/app/models/ticket_priority.coffee
  4910. #: app/assets/javascripts/app/models/ticket_state.coffee
  4911. #: app/assets/javascripts/app/models/trigger.coffee
  4912. #: app/assets/javascripts/app/models/twitter.coffee
  4913. #: app/assets/javascripts/app/models/webhook.coffee
  4914. #: app/assets/javascripts/app/views/channel/topics.jst.eco
  4915. #: app/assets/javascripts/app/views/integration/exchange.jst.eco
  4916. #: app/assets/javascripts/app/views/integration/exchange_wizard.jst.eco
  4917. #: app/assets/javascripts/app/views/integration/github.jst.eco
  4918. #: app/assets/javascripts/app/views/integration/gitlab.jst.eco
  4919. #: app/assets/javascripts/app/views/integration/idoit.jst.eco
  4920. #: app/assets/javascripts/app/views/integration/idoit_object_result.jst.eco
  4921. #: app/assets/javascripts/app/views/integration/ldap.jst.eco
  4922. #: app/assets/javascripts/app/views/integration/ldap_wizard.jst.eco
  4923. #: app/assets/javascripts/app/views/object_manager/index.jst.eco
  4924. #: app/assets/javascripts/app/views/package.jst.eco
  4925. #: app/assets/javascripts/app/views/profile/devices.jst.eco
  4926. #: app/assets/javascripts/app/views/profile/token_access.jst.eco
  4927. #: app/assets/javascripts/app/views/profile/token_access_create.jst.eco
  4928. #: app/assets/javascripts/app/views/tag/table.jst.eco
  4929. #: app/assets/javascripts/app/views/widget/organization.jst.eco
  4930. #: app/assets/javascripts/app/views/widget/user.jst.eco
  4931. #: app/controllers/time_accountings_controller.rb
  4932. #: db/seeds/object_manager_attributes.rb
  4933. msgid "Name"
  4934. msgstr ""
  4935. #: db/seeds/settings.rb
  4936. msgid "Name Identifier Format"
  4937. msgstr ""
  4938. #: app/assets/javascripts/app/views/channel/form.jst.eco
  4939. msgid "Name of form submit button"
  4940. msgstr ""
  4941. #: app/assets/javascripts/app/controllers/_plugin/keyboard_shortcuts.coffee
  4942. msgid "Navigate through article"
  4943. msgstr ""
  4944. #: app/assets/javascripts/app/controllers/_plugin/keyboard_shortcuts.coffee
  4945. msgid "Navigation"
  4946. msgstr ""
  4947. #: app/controllers/concerns/clones_ticket_article_attachments.rb
  4948. msgid "Need 'form_id' to add attachments to new form."
  4949. msgstr ""
  4950. #: app/controllers/concerns/creates_ticket_articles.rb
  4951. msgid "Need at least an 'article body' field."
  4952. msgstr ""
  4953. #: app/controllers/application_controller/handles_devices.rb
  4954. msgid "Need fingerprint param!"
  4955. msgstr ""
  4956. #: app/controllers/user_access_token_controller.rb
  4957. msgid "Need label!"
  4958. msgstr ""
  4959. #: app/controllers/settings_controller.rb
  4960. msgid "Need logo param"
  4961. msgstr ""
  4962. #: app/models/application_model/can_creates_and_updates.rb
  4963. msgid "Need name, login, email or locale for create_or_update()"
  4964. msgstr ""
  4965. #: app/assets/javascripts/app/controllers/ticket_zoom/article_action/email_reply.coffee
  4966. msgid "Need recipient in \"TO\" or \"CC\"."
  4967. msgstr ""
  4968. #: app/assets/javascripts/app/controllers/ticket_zoom/article_action/twitter_reply.coffee
  4969. msgid "Need recipient in \"To\"."
  4970. msgstr ""
  4971. #: lib/sessions/event/chat_base.rb
  4972. msgid "Need session_id."
  4973. msgstr ""
  4974. #: app/controllers/tickets_controller.rb
  4975. msgid "Need user_id or organization_id as param"
  4976. msgstr ""
  4977. #: db/seeds/settings.rb
  4978. msgid "Needed"
  4979. msgstr ""
  4980. #: app/controllers/sessions_controller.rb
  4981. msgid "Neither an SSO environment variable 'REMOTE_USER' nor a 'X-Forwarded-User' header could be found."
  4982. msgstr ""
  4983. #: app/assets/javascripts/app/controllers/_manage/system.coffee
  4984. msgid "Network"
  4985. msgstr ""
  4986. #: app/assets/javascripts/app/controllers/_channel/_email_filter.coffee
  4987. #: app/assets/javascripts/app/controllers/_channel/_email_signature.coffee
  4988. #: app/assets/javascripts/app/controllers/_default_navbar.coffee
  4989. #: app/assets/javascripts/app/views/channel/email_account_overview.jst.eco
  4990. #: app/assets/javascripts/app/views/channel/sms_account_overview.jst.eco
  4991. msgid "New"
  4992. msgstr ""
  4993. #: app/assets/javascripts/app/controllers/api.coffee
  4994. msgid "New Access Token is"
  4995. msgstr ""
  4996. #: app/assets/javascripts/app/views/api.jst.eco
  4997. msgid "New Application"
  4998. msgstr ""
  4999. #: app/assets/javascripts/app/views/object_manager/index.jst.eco
  5000. msgid "New Attribute"
  5001. msgstr ""
  5002. #: app/assets/javascripts/app/views/calendar/index.jst.eco
  5003. msgid "New Calendar"
  5004. msgstr ""
  5005. #: app/assets/javascripts/app/views/data_privacy/index.jst.eco
  5006. msgid "New Deletion Task"
  5007. msgstr ""
  5008. #: app/assets/javascripts/app/controllers/group.coffee
  5009. msgid "New Group"
  5010. msgstr ""
  5011. #: app/assets/javascripts/app/controllers/macro.coffee
  5012. msgid "New Macro"
  5013. msgstr ""
  5014. #: app/assets/javascripts/app/controllers/organization.coffee
  5015. msgid "New Organization"
  5016. msgstr ""
  5017. #: app/assets/javascripts/app/controllers/overview.coffee
  5018. msgid "New Overview"
  5019. msgstr ""
  5020. #: app/assets/javascripts/app/controllers/report_profile.coffee
  5021. msgid "New Profile"
  5022. msgstr ""
  5023. #: app/assets/javascripts/app/controllers/role.coffee
  5024. msgid "New Role"
  5025. msgstr ""
  5026. #: app/assets/javascripts/app/views/sla/index.jst.eco
  5027. msgid "New SLA"
  5028. msgstr ""
  5029. #: app/assets/javascripts/app/controllers/job.coffee
  5030. msgid "New Scheduler"
  5031. msgstr ""
  5032. #: app/assets/javascripts/app/controllers/_integration/ldap.coffee
  5033. msgid "New Source"
  5034. msgstr ""
  5035. #: app/assets/javascripts/app/views/tag/index.jst.eco
  5036. #: db/seeds/settings.rb
  5037. msgid "New Tags"
  5038. msgstr ""
  5039. #: app/assets/javascripts/app/controllers/_plugin/keyboard_shortcuts.coffee
  5040. #: app/assets/javascripts/app/controllers/_profile/notification.coffee
  5041. #: app/assets/javascripts/app/controllers/agent_ticket_create.coffee
  5042. #: app/assets/javascripts/app/controllers/customer_ticket_create.coffee
  5043. #: app/assets/javascripts/app/controllers/user_profile.coffee
  5044. #: app/assets/javascripts/app/views/customer_ticket_create.jst.eco
  5045. #: app/assets/javascripts/app/views/navigation/menu_cti_ringing.jst.eco
  5046. msgid "New Ticket"
  5047. msgstr ""
  5048. #: app/assets/javascripts/app/controllers/trigger.coffee
  5049. msgid "New Trigger"
  5050. msgstr ""
  5051. #: app/assets/javascripts/app/controllers/user.coffee
  5052. #: app/assets/javascripts/app/views/cti/caller_log.jst.eco
  5053. #: app/assets/javascripts/app/views/navigation/menu_cti_ringing.jst.eco
  5054. msgid "New User"
  5055. msgstr ""
  5056. #: db/seeds/settings.rb
  5057. msgid "New User Accounts"
  5058. msgstr ""
  5059. #: app/assets/javascripts/app/controllers/_plugin/maintenance.coffee
  5060. msgid "New Version"
  5061. msgstr ""
  5062. #: app/assets/javascripts/app/controllers/webhook.coffee
  5063. msgid "New Webhook"
  5064. msgstr ""
  5065. #: app/assets/javascripts/app/controllers/core_workflow.coffee
  5066. msgid "New Workflow"
  5067. msgstr ""
  5068. #: app/assets/javascripts/app/controllers/_integration/clearbit.coffee
  5069. msgid "New organizations are shared."
  5070. msgstr ""
  5071. #: app/assets/javascripts/app/controllers/_profile/password.coffee
  5072. msgid "New password"
  5073. msgstr ""
  5074. #: app/assets/javascripts/app/views/knowledge_base/public_menu_form_item_row.jst.eco
  5075. msgid "New tab"
  5076. msgstr ""
  5077. #: app/assets/javascripts/app/controllers/text_module.coffee
  5078. msgid "New text module"
  5079. msgstr ""
  5080. #: app/frontend/apps/mobile/modules/login/views/Login.vue
  5081. msgid "New user?"
  5082. msgstr ""
  5083. #: db/seeds/settings.rb
  5084. msgid "Newbie"
  5085. msgstr ""
  5086. #: app/assets/javascripts/app/views/dashboard/first_steps_clues_content.jst.eco
  5087. #: app/assets/javascripts/app/views/getting_started/base.jst.eco
  5088. #: app/assets/javascripts/app/views/import/otrs.jst.eco
  5089. msgid "Next"
  5090. msgstr ""
  5091. #: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco
  5092. #: app/assets/javascripts/app/views/ticket_zoom/overview_navigator.jst.eco
  5093. #: db/seeds/settings.rb
  5094. msgid "Next in overview"
  5095. msgstr ""
  5096. #: app/assets/javascripts/app/controllers/_ui_element/ticket_perform_action.coffee
  5097. msgid "No"
  5098. msgstr ""
  5099. #: app/assets/javascripts/app/views/integration/exchange.jst.eco
  5100. msgid "No %s configured."
  5101. msgstr ""
  5102. #: app/assets/javascripts/app/views/generic/admin/empty.jst.eco
  5103. #: app/assets/javascripts/app/views/generic/calender_preview.jst.eco
  5104. #: app/assets/javascripts/app/views/integration/exchange.jst.eco
  5105. #: app/assets/javascripts/app/views/integration/ldap.jst.eco
  5106. #: app/assets/javascripts/app/views/integration/smime_group.jst.eco
  5107. #: app/assets/javascripts/app/views/integration/smime_list.jst.eco
  5108. #: app/assets/javascripts/app/views/time_accounting/by_activity.jst.eco
  5109. #: app/assets/javascripts/app/views/time_accounting/by_customer.jst.eco
  5110. #: app/assets/javascripts/app/views/time_accounting/by_organization.jst.eco
  5111. #: app/assets/javascripts/app/views/time_accounting/by_ticket.jst.eco
  5112. #: app/assets/javascripts/app/views/widget/http_log.jst.eco
  5113. msgid "No Entries"
  5114. msgstr ""
  5115. #: lib/external_credential/facebook.rb
  5116. msgid "No Facebook app configured!"
  5117. msgstr ""
  5118. #: lib/external_credential/google.rb
  5119. msgid "No Google app configured!"
  5120. msgstr ""
  5121. #: lib/external_credential/microsoft365.rb
  5122. msgid "No Microsoft 365 app configured!"
  5123. msgstr ""
  5124. #: db/seeds/settings.rb
  5125. msgid "No Proxy"
  5126. msgstr ""
  5127. #: app/assets/javascripts/app/controllers/_channel/email.coffee
  5128. #: app/assets/javascripts/app/controllers/getting_started/channel_email.coffee
  5129. msgid "No SSL"
  5130. msgstr ""
  5131. #: app/assets/javascripts/app/controllers/_plugin/translation_support.coffee
  5132. msgid "No Thanks!"
  5133. msgstr ""
  5134. #: lib/external_credential/twitter.rb
  5135. msgid "No Twitter app configured!"
  5136. msgstr ""
  5137. #: app/assets/javascripts/app/controllers/knowledge_base/sidebar/answers.coffee
  5138. msgid "No answers"
  5139. msgstr ""
  5140. #: app/assets/javascripts/app/controllers/_profile/avatar.coffee
  5141. msgid "No camera found."
  5142. msgstr ""
  5143. #: app/assets/javascripts/app/controllers/knowledge_base/sidebar/categories.coffee
  5144. msgid "No categories"
  5145. msgstr ""
  5146. #: lib/external_credential/google.rb
  5147. #: lib/external_credential/microsoft365.rb
  5148. msgid "No code for session found!"
  5149. msgstr ""
  5150. #: app/assets/javascripts/app/views/integration/ldap.jst.eco
  5151. msgid "No configuration set."
  5152. msgstr ""
  5153. #: app/models/calendar.rb
  5154. msgid "No configured business hours found!"
  5155. msgstr ""
  5156. #: app/views/knowledge_base/public/categories/index.html.erb
  5157. #: app/views/knowledge_base/public/tags/show.html.erb
  5158. msgid "No content to show"
  5159. msgstr ""
  5160. #: app/controllers/users_controller.rb
  5161. msgid "No email!"
  5162. msgstr ""
  5163. #: app/frontend/apps/mobile/modules/home/views/FavoriteTicketOverviewsEdit.vue
  5164. #: app/frontend/apps/mobile/modules/ticket/components/TicketList/TicketList.vue
  5165. msgid "No entries"
  5166. msgstr ""
  5167. #: app/controllers/integration/exchange_controller.rb
  5168. msgid "No entries were found in the selected folder(s)."
  5169. msgstr ""
  5170. #: app/frontend/shared/form/i18n/locales.ts
  5171. msgid "No file chosen."
  5172. msgstr ""
  5173. #: app/frontend/shared/form/i18n/locales.ts
  5174. msgid "No file formats allowed."
  5175. msgstr ""
  5176. #: app/assets/javascripts/app/controllers/_ui_element/_application_selector.coffee
  5177. msgid "No filter was configured."
  5178. msgstr ""
  5179. #: app/controllers/integration/exchange_controller.rb
  5180. msgid "No folders were found for the given user credentials."
  5181. msgstr ""
  5182. #: app/assets/javascripts/app/controllers/ticket_zoom/sidebar_git_issue.coffee
  5183. msgid "No linked issues"
  5184. msgstr ""
  5185. #: app/frontend/apps/mobile/modules/search/views/SearchOverview.vue
  5186. msgid "No previous searches"
  5187. msgstr ""
  5188. #: db/seeds/settings.rb
  5189. msgid "No proxy for the following hosts."
  5190. msgstr ""
  5191. #: app/controllers/users_controller.rb
  5192. msgid "No record found!"
  5193. msgstr ""
  5194. #: lib/external_credential/twitter.rb
  5195. msgid "No request_token for session found!"
  5196. msgstr ""
  5197. #: app/assets/javascripts/app/lib/base/jquery.textmodule.js
  5198. #: app/frontend/shared/components/Form/fields/FieldTreeSelect/FieldTreeSelectInputDialog.vue
  5199. msgid "No results found"
  5200. msgstr ""
  5201. #: app/views/layouts/knowledge_base.html.erb
  5202. msgid "No results were found."
  5203. msgstr ""
  5204. #: app/controllers/import_freshdesk_controller.rb
  5205. #: app/controllers/import_otrs_controller.rb
  5206. #: app/controllers/import_zendesk_controller.rb
  5207. #: lib/email_helper/probe.rb
  5208. msgid "No route to host!"
  5209. msgstr ""
  5210. #: lib/sessions/event/chat_session_start.rb
  5211. #: lib/sessions/event/chat_transfer.rb
  5212. msgid "No session available."
  5213. msgstr ""
  5214. #: lib/stats.rb
  5215. msgid "No settings with area 'Dashboard::Stats' defined"
  5216. msgstr ""
  5217. #: app/controllers/organizations_controller.rb
  5218. #: app/controllers/text_modules_controller.rb
  5219. #: app/controllers/ticket_articles_controller.rb
  5220. #: app/controllers/tickets_controller.rb
  5221. #: app/controllers/users_controller.rb
  5222. msgid "No source data submitted!"
  5223. msgstr ""
  5224. #: app/assets/javascripts/app/views/widget/template.jst.eco
  5225. msgid "No template created yet."
  5226. msgstr ""
  5227. #: app/controllers/users_controller.rb
  5228. msgid "No token!"
  5229. msgstr ""
  5230. #: app/assets/javascripts/app/views/knowledge_base/content.jst.eco
  5231. msgid "No translation for this locale available"
  5232. msgstr ""
  5233. #: app/models/ticket.rb
  5234. msgid "No triggers active"
  5235. msgstr ""
  5236. #: app/assets/javascripts/app/views/widget/online_notification.jst.eco
  5237. msgid "No unread notifications for you. :)"
  5238. msgstr ""
  5239. #: app/assets/javascripts/app/views/generic/ticket_perform_action/webhook_not_available.jst.eco
  5240. msgid "No webhook available, please create a new one or activate an existing one at \"Manage > Webhook\""
  5241. msgstr ""
  5242. #: app/models/channel/email_parser.rb
  5243. msgid "No x-zammad-session-user-id, no sender set!"
  5244. msgstr ""
  5245. #: app/assets/javascripts/app/views/data_privacy/tasks.jst.eco
  5246. msgid "None"
  5247. msgstr ""
  5248. #: app/assets/javascripts/app/controllers/widget/link/ticket.coffee
  5249. msgid "Normal"
  5250. msgstr ""
  5251. #: app/assets/javascripts/app/views/profile/calendar_subscriptions.jst.eco
  5252. #: app/assets/javascripts/app/views/profile/notification.jst.eco
  5253. msgid "Not Assigned"
  5254. msgstr ""
  5255. #: app/assets/javascripts/app/controllers/knowledge_base/agent_controller.coffee
  5256. msgid "Not Available"
  5257. msgstr ""
  5258. #: app/assets/javascripts/app/controllers/_profile/out_of_office.coffee
  5259. #: app/assets/javascripts/app/controllers/knowledge_base/agent_controller.coffee
  5260. #: app/assets/javascripts/app/controllers/ticket_zoom.coffee
  5261. #: app/frontend/apps/mobile/modules/error/views/Error.vue
  5262. #: app/helpers/knowledge_base_public_page_title_helper.rb
  5263. msgid "Not Found"
  5264. msgstr ""
  5265. #: app/policies/controllers/taskbar_controller_policy.rb
  5266. msgid "Not allowed to access this task."
  5267. msgstr ""
  5268. #: app/assets/javascripts/app/views/object_manager/screens.jst.eco
  5269. msgid "Not applicable to: merging, emails, form, Facebook, Telegram, Twitter, SMS"
  5270. msgstr ""
  5271. #: app/assets/javascripts/app/controllers/_profile/out_of_office.coffee
  5272. #: app/assets/javascripts/app/controllers/ticket_zoom.coffee
  5273. #: app/controllers/application_controller/handles_errors.rb
  5274. msgid "Not authorized"
  5275. msgstr ""
  5276. #: app/controllers/settings_controller.rb
  5277. msgid "Not authorized (feature not possible)"
  5278. msgstr ""
  5279. #: app/controllers/application_controller/authenticates.rb
  5280. msgid "Not authorized (token expired)!"
  5281. msgstr ""
  5282. #: app/controllers/application_controller/authenticates.rb
  5283. #: lib/user_context.rb
  5284. msgid "Not authorized (token)!"
  5285. msgstr ""
  5286. #: app/controllers/application_controller/authenticates.rb
  5287. #: lib/user_context.rb
  5288. msgid "Not authorized (user)!"
  5289. msgstr ""
  5290. #: app/assets/javascripts/app/controllers/knowledge_base/reader_controller.coffee
  5291. msgid "Not available in selected language"
  5292. msgstr ""
  5293. #: app/assets/javascripts/app/views/cti/not_configured.jst.eco
  5294. msgid "Not configured"
  5295. msgstr ""
  5296. #: app/assets/javascripts/app/controllers/_ui_element/ticket_perform_action.coffee
  5297. #: app/assets/javascripts/app/models/chat.coffee
  5298. #: app/assets/javascripts/app/models/email_address.coffee
  5299. #: app/assets/javascripts/app/models/group.coffee
  5300. #: app/assets/javascripts/app/models/job.coffee
  5301. #: app/assets/javascripts/app/models/macro.coffee
  5302. #: app/assets/javascripts/app/models/postmaster_filter.coffee
  5303. #: app/assets/javascripts/app/models/role.coffee
  5304. #: app/assets/javascripts/app/models/signature.coffee
  5305. #: app/assets/javascripts/app/models/text_module.coffee
  5306. #: app/assets/javascripts/app/models/trigger.coffee
  5307. #: app/assets/javascripts/app/models/webhook.coffee
  5308. #: app/assets/javascripts/app/views/channel/topics.jst.eco
  5309. #: app/assets/javascripts/app/views/generic/object_import/index.jst.eco
  5310. #: app/assets/javascripts/app/views/integration/cti.jst.eco
  5311. #: app/assets/javascripts/app/views/integration/placetel.jst.eco
  5312. #: app/assets/javascripts/app/views/integration/sipgate.jst.eco
  5313. #: db/seeds/object_manager_attributes.rb
  5314. msgid "Note"
  5315. msgstr ""
  5316. #: db/seeds/settings.rb
  5317. msgid "Note - default visibility"
  5318. msgstr ""
  5319. #: app/assets/javascripts/app/models/email_address.coffee
  5320. #: app/assets/javascripts/app/models/group.coffee
  5321. #: app/assets/javascripts/app/models/job.coffee
  5322. #: app/assets/javascripts/app/models/role.coffee
  5323. #: app/assets/javascripts/app/models/signature.coffee
  5324. #: db/seeds/object_manager_attributes.rb
  5325. msgid "Notes are visible to agents only, never to customers."
  5326. msgstr ""
  5327. #: app/assets/javascripts/app/views/generic/column_select.jst.eco
  5328. msgid "Nothing selected"
  5329. msgstr ""
  5330. #: app/assets/javascripts/app/views/channel/email_account_overview.jst.eco
  5331. #: app/assets/javascripts/app/views/google/list.jst.eco
  5332. #: app/assets/javascripts/app/views/import/otrs.jst.eco
  5333. #: app/assets/javascripts/app/views/microsoft365/list.jst.eco
  5334. msgid "Notice"
  5335. msgstr ""
  5336. #: app/assets/javascripts/app/controllers/_ui_element/ticket_perform_action.coffee
  5337. #: app/views/mailer/application.html.erb
  5338. msgid "Notification"
  5339. msgstr ""
  5340. #: db/seeds/settings.rb
  5341. msgid "Notification Sender"
  5342. msgstr ""
  5343. #: app/assets/javascripts/app/views/profile/notification.jst.eco
  5344. msgid "Notification Sound"
  5345. msgstr ""
  5346. #: app/assets/javascripts/app/controllers/_plugin/keyboard_shortcuts.coffee
  5347. #: app/assets/javascripts/app/controllers/_profile/notification.coffee
  5348. #: app/assets/javascripts/app/views/profile/notification.jst.eco
  5349. #: app/assets/javascripts/app/views/widget/mention.jst.eco
  5350. #: app/assets/javascripts/app/views/widget/online_notification.jst.eco
  5351. #: app/frontend/apps/mobile/modules/notifications/routes.ts
  5352. #: db/seeds/permissions.rb
  5353. msgid "Notifications"
  5354. msgstr ""
  5355. #: app/assets/javascripts/app/controllers/_ui_element/basedate.coffee
  5356. #: app/assets/javascripts/app/controllers/report.coffee
  5357. #: app/assets/javascripts/app/controllers/time_accounting.coffee
  5358. #: app/frontend/shared/components/Form/fields/FieldDate/FieldDateTimeInput.vue
  5359. msgid "Nov"
  5360. msgstr ""
  5361. #: app/assets/javascripts/app/controllers/_ui_element/basedate.coffee
  5362. #: app/frontend/shared/components/Form/fields/FieldDate/FieldDateTimeInput.vue
  5363. msgid "November"
  5364. msgstr ""
  5365. #: app/assets/javascripts/app/controllers/_manage/ticket.coffee
  5366. #: app/assets/javascripts/app/views/agent_ticket_view/detail.jst.eco
  5367. #: app/frontend/apps/mobile/modules/ticket/views/TicketOverview.vue
  5368. msgid "Number"
  5369. msgstr ""
  5370. #: app/controllers/application_controller/authenticates.rb
  5371. msgid "OAuth2 token is expired!"
  5372. msgstr ""
  5373. #: app/assets/javascripts/app/controllers/_profile/token_access.coffee
  5374. msgid "OK, I've copied my token"
  5375. msgstr ""
  5376. #: app/assets/javascripts/app/controllers/import_otrs.coffee
  5377. msgid "OTRS"
  5378. msgstr ""
  5379. #: app/assets/javascripts/app/models/core_workflow.coffee
  5380. #: app/assets/javascripts/app/models/object_manager_attribute.coffee
  5381. msgid "Object"
  5382. msgstr ""
  5383. #: app/assets/javascripts/app/controllers/object_manager.coffee
  5384. #: app/assets/javascripts/app/views/object_manager/index.jst.eco
  5385. msgid "Object Manager"
  5386. msgstr ""
  5387. #: app/controllers/application_controller/handles_errors.rb
  5388. msgid "Object already exists!"
  5389. msgstr ""
  5390. #: app/assets/javascripts/app/controllers/object_manager.coffee
  5391. #: db/seeds/permissions.rb
  5392. msgid "Objects"
  5393. msgstr ""
  5394. #: app/assets/javascripts/app/controllers/_ui_element/basedate.coffee
  5395. #: app/assets/javascripts/app/controllers/report.coffee
  5396. #: app/assets/javascripts/app/controllers/time_accounting.coffee
  5397. #: app/frontend/shared/components/Form/fields/FieldDate/FieldDateTimeInput.vue
  5398. msgid "Oct"
  5399. msgstr ""
  5400. #: app/assets/javascripts/app/controllers/_ui_element/basedate.coffee
  5401. #: app/frontend/shared/components/Form/fields/FieldDate/FieldDateTimeInput.vue
  5402. msgid "October"
  5403. msgstr ""
  5404. #: app/assets/javascripts/app/controllers/knowledge_base/delete_action.coffee
  5405. msgid "Ok"
  5406. msgstr ""
  5407. #: app/assets/javascripts/app/controllers/ticket_zoom/article_action/email_reply.coffee
  5408. msgid "On %s, %s wrote:"
  5409. msgstr ""
  5410. #: app/assets/javascripts/app/models/macro.coffee
  5411. msgid "Once completed…"
  5412. msgstr ""
  5413. #: app/assets/javascripts/app/views/channel/chat.jst.eco
  5414. msgid "Online"
  5415. msgstr ""
  5416. #: app/controllers/first_steps_controller.rb
  5417. msgid "Online Forms"
  5418. msgstr ""
  5419. #: db/seeds/settings.rb
  5420. msgid "Online Service"
  5421. msgstr ""
  5422. #: app/assets/javascripts/app/views/translation/support.jst.eco
  5423. msgid "Only %s% of this language is already translated. Please help to improve Zammad and complete the translation."
  5424. msgstr ""
  5425. #: app/assets/javascripts/app/models/overview.coffee
  5426. msgid "Only available for Users which are replacements for other users."
  5427. msgstr ""
  5428. #: app/assets/javascripts/app/models/overview.coffee
  5429. msgid "Only available for Users with shared Organizations"
  5430. msgstr ""
  5431. #: app/assets/javascripts/app/controllers/_integration/slack.coffee
  5432. msgid "Only for these groups."
  5433. msgstr ""
  5434. #: app/models/object_manager/attribute.rb
  5435. msgid "Only lowercase letters, numbers, and '_' are allowed"
  5436. msgstr ""
  5437. #: app/assets/javascripts/app/views/package.jst.eco
  5438. msgid "Only packages from known, trusted, and verified sources should be installed."
  5439. msgstr ""
  5440. #: db/seeds/settings.rb
  5441. msgid "Only used internally to propagate current web app version to clients."
  5442. msgstr ""
  5443. #: app/assets/javascripts/app/controllers/knowledge_base/content_can_be_published_form.coffee
  5444. msgid "Only visible to editors"
  5445. msgstr ""
  5446. #: app/assets/javascripts/app/views/generic/error/not_found.jst.eco
  5447. msgid "Oops.. I'm sorry, but I can't find this %s."
  5448. msgstr ""
  5449. #: app/assets/javascripts/app/views/generic/error/unauthorized.jst.eco
  5450. msgid "Oops.. I'm sorry, but you have insufficient rights to open this %s."
  5451. msgstr ""
  5452. #: app/assets/javascripts/app/views/dashboard/first_steps_test_ticket_finish.jst.eco
  5453. msgid "Open Ticket# %s"
  5454. msgstr ""
  5455. #: app/assets/javascripts/app/controllers/widget/ticket_stats.coffee
  5456. #: app/assets/javascripts/app/controllers/widget/user.coffee
  5457. #: db/seeds/overviews.rb
  5458. msgid "Open Tickets"
  5459. msgstr ""
  5460. #: app/assets/javascripts/app/controllers/_plugin/keyboard_shortcuts.coffee
  5461. msgid "Open macro selection"
  5462. msgstr ""
  5463. #: app/assets/javascripts/app/controllers/_plugin/keyboard_shortcuts.coffee
  5464. msgid "Open note box"
  5465. msgstr ""
  5466. #: db/seeds/settings.rb
  5467. msgid "Open ticket indicator"
  5468. msgstr ""
  5469. #: app/assets/javascripts/app/views/agent_ticket_view/content.jst.eco
  5470. #: app/assets/javascripts/app/views/channel/chat.jst.eco
  5471. #: app/assets/javascripts/app/views/channel/form.jst.eco
  5472. #: app/assets/javascripts/app/views/object_manager/screens.jst.eco
  5473. #: app/assets/javascripts/app/views/profile/calendar_subscriptions.jst.eco
  5474. #: app/assets/javascripts/app/views/settings/ticket_number_date.jst.eco
  5475. #: app/assets/javascripts/app/views/settings/ticket_number_increment.jst.eco
  5476. msgid "Options"
  5477. msgstr ""
  5478. #: app/assets/javascripts/app/views/getting_started/intro.jst.eco
  5479. msgid "Or migrate from another system."
  5480. msgstr ""
  5481. #: app/assets/javascripts/app/controllers/_ui_element/_application_selector.coffee
  5482. #: app/assets/javascripts/app/controllers/_ui_element/core_workflow_condition.coffee
  5483. #: app/assets/javascripts/app/controllers/agent_ticket_create/sidebar_organization.coffee
  5484. #: app/assets/javascripts/app/controllers/organization.coffee
  5485. #: app/assets/javascripts/app/controllers/organization_profile.coffee
  5486. #: app/assets/javascripts/app/controllers/ticket_customer.coffee
  5487. #: app/assets/javascripts/app/controllers/ticket_zoom/sidebar_organization.coffee
  5488. #: app/assets/javascripts/app/models/ticket.coffee
  5489. #: app/assets/javascripts/app/models/user.coffee
  5490. #: app/assets/javascripts/app/views/agent_ticket_view/detail.jst.eco
  5491. #: app/assets/javascripts/app/views/getting_started/base.jst.eco
  5492. #: app/assets/javascripts/app/views/time_accounting/by_activity.jst.eco
  5493. #: app/assets/javascripts/app/views/time_accounting/by_customer.jst.eco
  5494. #: app/assets/javascripts/app/views/time_accounting/by_organization.jst.eco
  5495. #: app/assets/javascripts/app/views/time_accounting/by_ticket.jst.eco
  5496. #: app/assets/javascripts/app/views/time_accounting/index.jst.eco
  5497. #: app/controllers/time_accountings_controller.rb
  5498. #: db/seeds/object_manager_attributes.rb
  5499. #: db/seeds/settings.rb
  5500. #: lib/excel_sheet/ticket.rb
  5501. msgid "Organization"
  5502. msgstr ""
  5503. #: app/assets/javascripts/app/controllers/_channel/email.coffee
  5504. msgid "Organization & Department Name"
  5505. msgstr ""
  5506. #: app/assets/javascripts/app/views/getting_started/base.jst.eco
  5507. msgid "Organization Name"
  5508. msgstr ""
  5509. #: app/assets/javascripts/app/controllers/_channel/email.coffee
  5510. #: app/assets/javascripts/app/views/getting_started/email.jst.eco
  5511. msgid "Organization Support"
  5512. msgstr ""
  5513. #: app/assets/javascripts/app/controllers/agent_ticket_create/sidebar_organization.coffee
  5514. #: app/assets/javascripts/app/controllers/organization.coffee
  5515. #: app/assets/javascripts/app/controllers/organization_profile.coffee
  5516. #: app/assets/javascripts/app/controllers/ticket_zoom/sidebar_organization.coffee
  5517. #: app/assets/javascripts/app/views/import/freshdesk.jst.eco
  5518. #: app/assets/javascripts/app/views/import/kayako.jst.eco
  5519. #: app/assets/javascripts/app/views/import/zendesk.jst.eco
  5520. #: app/frontend/apps/mobile/modules/search/plugins/organization.ts
  5521. #: db/seeds/permissions.rb
  5522. msgid "Organizations"
  5523. msgstr ""
  5524. #: app/assets/javascripts/app/controllers/organization.coffee
  5525. msgid "Organizations are for any person in the system: agents (owners, responsibles, …) and customers."
  5526. msgstr ""
  5527. #: app/assets/javascripts/app/views/generic/calender_preview.jst.eco
  5528. msgid "Organizer"
  5529. msgstr ""
  5530. #: app/assets/javascripts/app/models/ticket_article.coffee
  5531. msgid "Origin By"
  5532. msgstr ""
  5533. #: app/assets/javascripts/app/views/translation/list.jst.eco
  5534. msgid "Original"
  5535. msgstr ""
  5536. #: app/assets/javascripts/app/controllers/ticket_zoom/article_view.coffee
  5537. msgid "Original Formatting"
  5538. msgstr ""
  5539. #: app/assets/javascripts/app/views/integration/cti.jst.eco
  5540. #: app/assets/javascripts/app/views/integration/placetel.jst.eco
  5541. #: app/assets/javascripts/app/views/integration/sipgate.jst.eco
  5542. msgid "Other Settings"
  5543. msgstr ""
  5544. #: app/assets/javascripts/app/controllers/_profile/out_of_office.coffee
  5545. #: app/assets/javascripts/app/views/profile/out_of_office.jst.eco
  5546. #: db/seeds/permissions.rb
  5547. msgid "Out of Office"
  5548. msgstr ""
  5549. #: app/assets/javascripts/app/controllers/_dashboard/stats/ticket_load_measure.coffee
  5550. msgid "Out of all open tickets (company-wide), how many are assigned to you?"
  5551. msgstr ""
  5552. #: app/assets/javascripts/app/controllers/_ui_element/_application_selector.coffee
  5553. msgid "Out of office replacement"
  5554. msgstr ""
  5555. #: app/assets/javascripts/app/views/channel/email_account_overview.jst.eco
  5556. #: app/assets/javascripts/app/views/channel/sms_account_overview.jst.eco
  5557. #: app/assets/javascripts/app/views/dashboard/stats/ticket_channel_distribution.jst.eco
  5558. #: app/assets/javascripts/app/views/google/list.jst.eco
  5559. #: app/assets/javascripts/app/views/integration/cti.jst.eco
  5560. #: app/assets/javascripts/app/views/integration/placetel.jst.eco
  5561. #: app/assets/javascripts/app/views/integration/sipgate.jst.eco
  5562. #: app/assets/javascripts/app/views/microsoft365/list.jst.eco
  5563. msgid "Outbound"
  5564. msgstr ""
  5565. #: app/assets/javascripts/app/controllers/agent_ticket_create.coffee
  5566. msgid "Outbound Call"
  5567. msgstr ""
  5568. #: app/assets/javascripts/app/lib/app_post/browser.coffee
  5569. msgid "Outdated Browser"
  5570. msgstr ""
  5571. #: app/assets/javascripts/app/controllers/overview.coffee
  5572. #: app/assets/javascripts/app/models/group.coffee
  5573. msgid "Overview"
  5574. msgstr ""
  5575. #: app/assets/javascripts/app/controllers/core_workflow.coffee
  5576. msgid "Overview bulk mask"
  5577. msgstr ""
  5578. #: app/assets/javascripts/app/controllers/_dashboard/first_steps_clues.coffee
  5579. #: app/assets/javascripts/app/controllers/_plugin/keyboard_shortcuts.coffee
  5580. #: app/assets/javascripts/app/controllers/overview.coffee
  5581. #: app/assets/javascripts/app/controllers/ticket_overview.coffee
  5582. #: db/seeds/permissions.rb
  5583. msgid "Overviews"
  5584. msgstr ""
  5585. #: app/assets/javascripts/app/controllers/overview.coffee
  5586. msgid "Overviews are …"
  5587. msgstr ""
  5588. #: app/assets/javascripts/app/views/ticket_shared_draft_overwrite_modal.coffee
  5589. msgid "Overwrite Draft"
  5590. msgstr ""
  5591. #: app/assets/javascripts/app/controllers/_ui_element/postmaster_set.coffee
  5592. #: app/assets/javascripts/app/controllers/_ui_element/ticket_perform_action.coffee
  5593. #: app/assets/javascripts/app/models/ticket.coffee
  5594. #: app/assets/javascripts/app/views/agent_ticket_view/detail.jst.eco
  5595. #: app/views/mailer/ticket_create/cs.html.erb
  5596. #: app/views/mailer/ticket_create/de.html.erb
  5597. #: app/views/mailer/ticket_create/en.html.erb
  5598. #: app/views/mailer/ticket_create/es.html.erb
  5599. #: app/views/mailer/ticket_create/fr.html.erb
  5600. #: app/views/mailer/ticket_create/it.html.erb
  5601. #: app/views/mailer/ticket_create/pl.html.erb
  5602. #: app/views/mailer/ticket_create/pt-br.html.erb
  5603. #: app/views/mailer/ticket_create/ru.html.erb
  5604. #: app/views/mailer/ticket_create/zh-cn.html.erb
  5605. #: app/views/mailer/ticket_create/zh-tw.html.erb
  5606. #: app/views/slack/ticket_create/en.md.erb
  5607. #: app/views/slack/ticket_create/fr.md.erb
  5608. #: app/views/slack/ticket_create/pt-br.md.erb
  5609. #: app/views/slack/ticket_create/zh-cn.md.erb
  5610. #: app/views/slack/ticket_create/zh-tw.md.erb
  5611. #: db/seeds/object_manager_attributes.rb
  5612. #: lib/excel_sheet/ticket.rb
  5613. msgid "Owner"
  5614. msgstr ""
  5615. #: app/assets/javascripts/app/views/data_privacy/preview.jst.eco
  5616. msgid "Owner tickets of the user will not get deleted. The owner will be mapped to the system user (ID 1)."
  5617. msgstr ""
  5618. #: lib/email_helper.rb
  5619. msgid "POP3"
  5620. msgstr ""
  5621. #: app/assets/javascripts/app/views/package.jst.eco
  5622. msgid "Package"
  5623. msgstr ""
  5624. #: app/assets/javascripts/app/controllers/package.coffee
  5625. #: db/seeds/permissions.rb
  5626. msgid "Packages"
  5627. msgstr ""
  5628. #: app/views/knowledge_base/public/not_found.html.erb
  5629. msgid "Page not found"
  5630. msgstr ""
  5631. #: app/assets/javascripts/app/views/facebook/account_edit.jst.eco
  5632. #: app/assets/javascripts/app/views/facebook/list.jst.eco
  5633. msgid "Pages"
  5634. msgstr ""
  5635. #: app/controllers/integration/smime_controller.rb
  5636. msgid "Parameter 'data' or 'file' required."
  5637. msgstr ""
  5638. #: app/assets/javascripts/app/controllers/widget/link/ticket.coffee
  5639. #: app/assets/javascripts/app/models/knowledge_base_category.coffee
  5640. msgid "Parent"
  5641. msgstr ""
  5642. #: app/assets/javascripts/app/controllers/_channel/email.coffee
  5643. #: app/assets/javascripts/app/controllers/_manage/security.coffee
  5644. #: app/assets/javascripts/app/controllers/_profile/password.coffee
  5645. #: app/assets/javascripts/app/controllers/getting_started/channel_email.coffee
  5646. #: app/assets/javascripts/app/controllers/getting_started/email_notification.coffee
  5647. #: app/assets/javascripts/app/controllers/password_reset_verify.coffee
  5648. #: app/assets/javascripts/app/views/generic/login_preview.jst.eco
  5649. #: app/assets/javascripts/app/views/getting_started/email.jst.eco
  5650. #: app/assets/javascripts/app/views/import/kayako.jst.eco
  5651. #: app/assets/javascripts/app/views/integration/exchange.jst.eco
  5652. #: app/assets/javascripts/app/views/integration/exchange_wizard.jst.eco
  5653. #: app/assets/javascripts/app/views/login.jst.eco
  5654. #: app/frontend/apps/mobile/modules/login/views/Login.vue
  5655. #: app/frontend/shared/components/Form/Form.stories.ts
  5656. #: app/models/form_schema/form/mobile/login.rb
  5657. #: db/seeds/object_manager_attributes.rb
  5658. #: db/seeds/permissions.rb
  5659. msgid "Password"
  5660. msgstr ""
  5661. #: app/assets/javascripts/app/views/api.jst.eco
  5662. msgid "Password Access"
  5663. msgstr ""
  5664. #: app/assets/javascripts/app/controllers/_profile/password.coffee
  5665. msgid "Password changed successfully!"
  5666. msgstr ""
  5667. #: app/assets/javascripts/app/views/settings/proxy.jst.eco
  5668. msgid "Password for proxy connection"
  5669. msgstr ""
  5670. #: db/seeds/settings.rb
  5671. msgid "Password for proxy connection."
  5672. msgstr ""
  5673. #: db/seeds/settings.rb
  5674. msgid "Password needs to contain 2 lower case and 2 upper case characters."
  5675. msgstr ""
  5676. #: db/seeds/settings.rb
  5677. msgid "Password needs to contain at least one digit."
  5678. msgstr ""
  5679. #: db/seeds/settings.rb
  5680. msgid "Password needs to contain at least one special character."
  5681. msgstr ""
  5682. #: db/seeds/settings.rb
  5683. msgid "Password needs to have at least a minimal number of characters."
  5684. msgstr ""
  5685. #: app/assets/javascripts/app/controllers/_plugin/electron_events.coffee
  5686. msgid "Paste"
  5687. msgstr ""
  5688. #: app/assets/javascripts/app/views/integration/smime_certificate_add.jst.eco
  5689. msgid "Paste Certificate"
  5690. msgstr ""
  5691. #: app/assets/javascripts/app/views/integration/smime_private_key_add.jst.eco
  5692. msgid "Paste Private Key"
  5693. msgstr ""
  5694. #: app/assets/javascripts/app/controllers/_plugin/keyboard_shortcuts.coffee
  5695. msgid "Paste from clipboard"
  5696. msgstr ""
  5697. #: app/assets/javascripts/app/controllers/_plugin/keyboard_shortcuts.coffee
  5698. msgid "Paste from clipboard (plain text)"
  5699. msgstr ""
  5700. #: app/assets/javascripts/app/views/generic/object_import/index.jst.eco
  5701. msgid "Paste in CSV data"
  5702. msgstr ""
  5703. #: db/seeds/overviews.rb
  5704. msgid "Pending Reached Tickets"
  5705. msgstr ""
  5706. #: app/assets/javascripts/app/models/ticket.coffee
  5707. msgid "Pending reminder reached for ticket |%s|"
  5708. msgstr ""
  5709. #: app/assets/javascripts/app/models/ticket.coffee
  5710. #: db/seeds/object_manager_attributes.rb
  5711. msgid "Pending till"
  5712. msgstr ""
  5713. #: db/seeds/roles.rb
  5714. msgid "People who create Tickets ask for help."
  5715. msgstr ""
  5716. #: app/assets/javascripts/app/models/postmaster_filter.coffee
  5717. msgid "Perform action of the following"
  5718. msgstr ""
  5719. #: app/assets/javascripts/app/views/knowledge_base/delete.coffee
  5720. msgid "Permanently Delete Knowledge Base"
  5721. msgstr ""
  5722. #: app/assets/javascripts/app/controllers/_ui_element/core_workflow_condition.coffee
  5723. #: app/assets/javascripts/app/controllers/knowledge_base/content_can_be_published_form.coffee
  5724. #: app/assets/javascripts/app/models/role.coffee
  5725. #: app/assets/javascripts/app/views/object_manager/screens.jst.eco
  5726. #: app/assets/javascripts/app/views/profile/token_access.jst.eco
  5727. #: db/seeds/object_manager_attributes.rb
  5728. msgid "Permissions"
  5729. msgstr ""
  5730. #: app/assets/javascripts/app/views/profile/token_access.jst.eco
  5731. msgid "Personal Access Tokens"
  5732. msgstr ""
  5733. #: app/assets/javascripts/app/controllers/_dashboard/first_steps_clues.coffee
  5734. msgid "Personal Settings"
  5735. msgstr ""
  5736. #: app/assets/javascripts/app/controllers/cti.coffee
  5737. #: db/seeds/object_manager_attributes.rb
  5738. msgid "Phone"
  5739. msgstr ""
  5740. #: app/models/report.rb
  5741. msgid "Phone (in)"
  5742. msgstr ""
  5743. #: app/models/report.rb
  5744. msgid "Phone (out)"
  5745. msgstr ""
  5746. #: app/assets/javascripts/app/views/integration/placetel.jst.eco
  5747. #: app/assets/javascripts/app/views/integration/sipgate.jst.eco
  5748. msgid "Phone Extension to Agent Mapping"
  5749. msgstr ""
  5750. #: app/assets/javascripts/app/views/profile/token_access.jst.eco
  5751. msgid "Pick a name for the application, and we'll give you a unique token."
  5752. msgstr ""
  5753. #: app/assets/javascripts/app/controllers/ticket_zoom/highlighter.coffee
  5754. msgid "Pink"
  5755. msgstr ""
  5756. #: app/assets/javascripts/app/controllers/_integration/placetel.coffee
  5757. #: app/assets/javascripts/app/views/integration/placetel.jst.eco
  5758. #: app/controllers/cti_controller.rb
  5759. msgid "Placetel"
  5760. msgstr ""
  5761. #: db/seeds/settings.rb
  5762. msgid "Placetel Token"
  5763. msgstr ""
  5764. #: db/seeds/settings.rb
  5765. msgid "Placetel config"
  5766. msgstr ""
  5767. #: db/seeds/settings.rb
  5768. msgid "Placetel integration"
  5769. msgstr ""
  5770. #: app/assets/javascripts/app/views/profile/notification.jst.eco
  5771. msgid "Play user interface sound effects"
  5772. msgstr ""
  5773. #: app/frontend/shared/form/i18n/locales.ts
  5774. msgid "Please accept the %s."
  5775. msgstr ""
  5776. #: app/views/knowledge_base/public/categories/index.html.erb
  5777. msgid "Please add categories and/or answers"
  5778. msgstr ""
  5779. #: app/assets/javascripts/app/views/customer_not_ticket_exists.jst.eco
  5780. msgid "Please click on the button below to create your first one."
  5781. msgstr ""
  5782. #: app/assets/javascripts/app/views/signup/verify.jst.eco
  5783. msgid "Please click on the link in the verification email."
  5784. msgstr ""
  5785. #: app/assets/javascripts/app/controllers/_profile/out_of_office.coffee
  5786. msgid "Please contact your administrator."
  5787. msgstr ""
  5788. #: app/models/ticket.rb
  5789. msgid "Please enable execution_time feature to use it (currently only allowed for triggers and schedulers)"
  5790. msgstr ""
  5791. #: app/assets/javascripts/app/controllers/ticket_zoom/article_new.coffee
  5792. msgid "Please enter a text."
  5793. msgstr ""
  5794. #: app/frontend/shared/form/i18n/locales.ts
  5795. msgid "Please enter a valid email address."
  5796. msgstr ""
  5797. #: app/assets/javascripts/app/views/ticket_zoom/time_accounting.jst.eco
  5798. msgid "Please enter the time you want to record."
  5799. msgstr ""
  5800. #: app/models/knowledge_base.rb
  5801. msgid "Please enter valid path or domain"
  5802. msgstr ""
  5803. #: app/assets/javascripts/app/views/object_manager/index.jst.eco
  5804. msgid "Please execute database changes only in a maintenance window."
  5805. msgstr ""
  5806. #: app/assets/javascripts/app/controllers/knowledge_base/public_menu_form_item.coffee
  5807. msgid "Please fill in all fields"
  5808. msgstr ""
  5809. #: app/frontend/shared/form/i18n/locales.ts
  5810. msgid "Please include a valid url."
  5811. msgstr ""
  5812. #: app/controllers/integration/exchange_controller.rb
  5813. msgid "Please select at least one folder."
  5814. msgstr ""
  5815. #: app/frontend/apps/mobile/modules/home/views/FavoriteTicketOverviewsEdit.vue
  5816. msgid "Please select at least one ticket overview"
  5817. msgstr ""
  5818. #: app/controllers/knowledge_base/manage_controller.rb
  5819. msgid "Please submit custom address before generating the snippet"
  5820. msgstr ""
  5821. #: app/assets/javascripts/app/controllers/_profile/password.coffee
  5822. #: app/assets/javascripts/app/controllers/password_reset_verify.coffee
  5823. #: app/controllers/users_controller.rb
  5824. msgid "Please supply your new password!"
  5825. msgstr ""
  5826. #: app/assets/javascripts/app/lib/base/jquery.textmodule.js
  5827. msgid "Please wait…"
  5828. msgstr ""
  5829. #: app/assets/javascripts/app/controllers/_channel/email.coffee
  5830. #: app/assets/javascripts/app/controllers/getting_started/channel_email.coffee
  5831. #: app/assets/javascripts/app/controllers/getting_started/email_notification.coffee
  5832. msgid "Port"
  5833. msgstr ""
  5834. #: app/assets/javascripts/app/models/object_manager_attribute.coffee
  5835. #: app/assets/javascripts/app/views/object_manager/index.jst.eco
  5836. msgid "Position"
  5837. msgstr ""
  5838. #: app/assets/javascripts/app/controllers/_channel/_email_filter.coffee
  5839. msgid "Postmaster Filter"
  5840. msgstr ""
  5841. #: app/assets/javascripts/app/views/login.jst.eco
  5842. #: app/frontend/apps/mobile/modules/login/views/Login.vue
  5843. msgid "Powered by"
  5844. msgstr ""
  5845. #: db/seeds/settings.rb
  5846. msgid "Pretty Date"
  5847. msgstr ""
  5848. #: app/assets/javascripts/app/views/channel/chat.jst.eco
  5849. #: app/assets/javascripts/app/views/channel/form.jst.eco
  5850. #: app/assets/javascripts/app/views/generic/application_selector.jst.eco
  5851. #: app/assets/javascripts/app/views/generic/attachments.jst.eco
  5852. #: app/assets/javascripts/app/views/profile/imageCropper.jst.eco
  5853. #: app/assets/javascripts/app/views/settings/ticket_number.jst.eco
  5854. #: app/assets/javascripts/app/views/widget/text_module.jst.eco
  5855. msgid "Preview"
  5856. msgstr ""
  5857. #: app/assets/javascripts/app/views/channel/chat.jst.eco
  5858. msgid "Preview Width"
  5859. msgstr ""
  5860. #: app/assets/javascripts/app/views/data_privacy/preview.jst.eco
  5861. msgid "Preview customer tickets"
  5862. msgstr ""
  5863. #: app/assets/javascripts/app/views/data_privacy/preview.jst.eco
  5864. msgid "Preview owner tickets"
  5865. msgstr ""
  5866. #: app/assets/javascripts/app/views/dashboard/first_steps_clues_content.jst.eco
  5867. msgid "Previous"
  5868. msgstr ""
  5869. #: app/assets/javascripts/app/views/ticket_zoom/overview_navigator.jst.eco
  5870. msgid "Previous in overview"
  5871. msgstr ""
  5872. #: app/assets/javascripts/app/views/data_privacy/tasks.jst.eco
  5873. msgid "Previously owned tickets (%s in total)"
  5874. msgstr ""
  5875. #: app/assets/javascripts/app/models/overview.coffee
  5876. msgid "Prio"
  5877. msgstr ""
  5878. #: app/assets/javascripts/app/controllers/_application_controller/form.coffee
  5879. #: app/assets/javascripts/app/controllers/_ui_element/postmaster_set.coffee
  5880. #: app/assets/javascripts/app/models/core_workflow.coffee
  5881. #: app/assets/javascripts/app/models/ticket.coffee
  5882. #: app/assets/javascripts/app/views/agent_ticket_view/detail.jst.eco
  5883. #: app/assets/javascripts/app/views/popover/ticket.jst.eco
  5884. #: db/seeds/object_manager_attributes.rb
  5885. #: lib/excel_sheet/ticket.rb
  5886. msgid "Priority"
  5887. msgstr ""
  5888. #: db/seeds/settings.rb
  5889. msgid "Priority Icons in Overviews"
  5890. msgstr ""
  5891. #: lib/secure_mailing/smime/incoming.rb
  5892. msgid "Private key for decryption could not be found."
  5893. msgstr ""
  5894. #: db/seeds/object_manager_attributes.rb
  5895. msgid "Problem"
  5896. msgstr ""
  5897. #: app/assets/javascripts/app/views/integration/exchange_certificate_issue.jst.eco
  5898. msgid "Proceed"
  5899. msgstr ""
  5900. #: db/seeds/schedulers.rb
  5901. msgid "Process automatic ticket unassignments."
  5902. msgstr ""
  5903. #: db/seeds/schedulers.rb
  5904. msgid "Process pending tickets."
  5905. msgstr ""
  5906. #: db/seeds/schedulers.rb
  5907. msgid "Process ticket escalations."
  5908. msgstr ""
  5909. #: db/seeds/settings.rb
  5910. msgid "Product Name"
  5911. msgstr ""
  5912. #: db/seeds/settings.rb
  5913. msgid "Professional"
  5914. msgstr ""
  5915. #: app/assets/javascripts/app/controllers/profile.coffee
  5916. msgid "Profile"
  5917. msgstr ""
  5918. #: app/assets/javascripts/app/views/report/sidebar.jst.eco
  5919. msgid "Profiles"
  5920. msgstr ""
  5921. #: app/assets/javascripts/app/views/channel/email_account_overview.jst.eco
  5922. msgid "Protocol"
  5923. msgstr ""
  5924. #: app/controllers/knowledge_base/categories_controller.rb
  5925. #: lib/knowledge_base/menu_item_update_action.rb
  5926. msgid "Provide position of all items in scope"
  5927. msgstr ""
  5928. #: app/assets/javascripts/app/controllers/_channel/sms.coffee
  5929. msgid "Provider"
  5930. msgstr ""
  5931. #: db/seeds/settings.rb
  5932. msgid "Proxy Password"
  5933. msgstr ""
  5934. #: db/seeds/settings.rb
  5935. msgid "Proxy Settings"
  5936. msgstr ""
  5937. #: db/seeds/settings.rb
  5938. msgid "Proxy User"
  5939. msgstr ""
  5940. #: app/assets/javascripts/app/views/settings/proxy.jst.eco
  5941. msgid "Proxy address"
  5942. msgstr ""
  5943. #: app/assets/javascripts/app/controllers/knowledge_base/content_can_be_published_form.coffee
  5944. msgid "Public"
  5945. msgstr ""
  5946. #: app/assets/javascripts/app/controllers/_manage/knowledge_base.coffee
  5947. #: app/assets/javascripts/app/views/knowledge_base/public_menu_manager.jst.eco
  5948. msgid "Public Menu"
  5949. msgstr ""
  5950. #: app/assets/javascripts/app/controllers/knowledge_base/content_controller.coffee
  5951. msgid "Publish"
  5952. msgstr ""
  5953. #: app/assets/javascripts/app/controllers/_application_controller/article_public_confirm.coffee
  5954. msgid "Publish Article"
  5955. msgstr ""
  5956. #: app/views/knowledge_base/public/answers/show.html.erb
  5957. msgid "Published %s"
  5958. msgstr ""
  5959. #: app/assets/javascripts/app/views/popover/kb_generic.jst.eco
  5960. msgid "Published at"
  5961. msgstr ""
  5962. #: app/assets/javascripts/app/controllers/ticket_zoom/highlighter.coffee
  5963. msgid "Purple"
  5964. msgstr ""
  5965. #: app/assets/javascripts/app/views/maintenance.jst.eco
  5966. #: db/seeds/settings.rb
  5967. msgid "Put a message on the login page. To change it, click on the text area below and change it in-line."
  5968. msgstr ""
  5969. #: db/seeds/settings.rb
  5970. msgid "Puts Zammad into import mode (disables some triggers)."
  5971. msgstr ""
  5972. #: app/assets/javascripts/app/views/cti/caller_log.jst.eco
  5973. msgid "Queue"
  5974. msgstr ""
  5975. #: app/assets/javascripts/app/controllers/_integration/cti.coffee
  5976. msgid "Queue already exists!"
  5977. msgstr ""
  5978. #: app/assets/javascripts/app/controllers/ticket_zoom/article_view.coffee
  5979. msgid "Raw"
  5980. msgstr ""
  5981. #: app/assets/javascripts/app/models/group.coffee
  5982. msgid "Read"
  5983. msgstr ""
  5984. #: app/assets/javascripts/app/views/report/time_range_picker.jst.eco
  5985. msgid "Real-time"
  5986. msgstr ""
  5987. #: app/assets/javascripts/app/views/google/list.jst.eco
  5988. #: app/assets/javascripts/app/views/microsoft365/list.jst.eco
  5989. msgid "Reauthenticate"
  5990. msgstr ""
  5991. #: app/assets/javascripts/app/controllers/agent_ticket_create.coffee
  5992. msgid "Received Call"
  5993. msgstr ""
  5994. #: app/assets/javascripts/app/views/agent_ticket_merge.jst.eco
  5995. #: app/assets/javascripts/app/views/link/ticket/add.jst.eco
  5996. msgid "Recent Customer Tickets"
  5997. msgstr ""
  5998. #: app/assets/javascripts/app/views/widget/http_log.jst.eco
  5999. msgid "Recent Logs"
  6000. msgstr ""
  6001. #: app/assets/javascripts/app/views/agent_ticket_merge.jst.eco
  6002. #: app/assets/javascripts/app/views/link/ticket/add.jst.eco
  6003. msgid "Recently Viewed Tickets"
  6004. msgstr ""
  6005. #: app/assets/javascripts/app/controllers/_plugin/navigation.coffee
  6006. msgid "Recently viewed"
  6007. msgstr ""
  6008. #: app/assets/javascripts/app/controllers/_channel/sms.coffee
  6009. #: app/assets/javascripts/app/views/generic/ticket_perform_action/notification.jst.eco
  6010. msgid "Recipient"
  6011. msgstr ""
  6012. #: app/assets/javascripts/app/views/generic/object_import/index.jst.eco
  6013. msgid "Records that exist in the import data (but not in Zammad) will always be created."
  6014. msgstr ""
  6015. #: db/seeds/settings.rb
  6016. msgid "Recursive Ticket Triggers"
  6017. msgstr ""
  6018. #: db/seeds/settings.rb
  6019. msgid "Recursive Ticket Triggers Loop Max."
  6020. msgstr ""
  6021. #: db/seeds/settings.rb
  6022. msgid "References - Search for follow-up also in In-Reply-To or References headers."
  6023. msgstr ""
  6024. #: app/frontend/apps/mobile/modules/login/views/Login.vue
  6025. msgid "Register"
  6026. msgstr ""
  6027. #: app/assets/javascripts/app/views/login.jst.eco
  6028. msgid "Register as a new customer"
  6029. msgstr ""
  6030. #: app/assets/javascripts/app/views/signup/verify.jst.eco
  6031. msgid "Registration successful!"
  6032. msgstr ""
  6033. #: app/assets/javascripts/app/views/link/kb_answer.jst.eco
  6034. msgid "Related Answers"
  6035. msgstr ""
  6036. #: app/assets/javascripts/app/views/maintenance.jst.eco
  6037. msgid "Reload application"
  6038. msgstr ""
  6039. #: app/assets/javascripts/app/views/generic/login_preview.jst.eco
  6040. #: app/assets/javascripts/app/views/login.jst.eco
  6041. #: app/frontend/apps/mobile/modules/login/views/Login.vue
  6042. #: app/models/form_schema/form/mobile/login.rb
  6043. msgid "Remember me"
  6044. msgstr ""
  6045. #: app/assets/javascripts/app/views/generic/postmaster_match.jst.eco
  6046. #: app/assets/javascripts/app/views/generic/postmaster_set_row.jst.eco
  6047. #: app/assets/javascripts/app/views/generic/ticket_perform_action/row.jst.eco
  6048. msgid "Remote"
  6049. msgstr ""
  6050. #: app/assets/javascripts/app/views/calendar/holiday_selector.jst.eco
  6051. #: app/assets/javascripts/app/views/calendar/holiday_selector_placeholder.jst.eco
  6052. #: app/assets/javascripts/app/views/channel/topics.jst.eco
  6053. #: app/assets/javascripts/app/views/generic/application_selector_row.jst.eco
  6054. #: app/assets/javascripts/app/views/integration/clearbit.jst.eco
  6055. #: app/assets/javascripts/app/views/integration/cti.jst.eco
  6056. #: app/assets/javascripts/app/views/integration/exchange_user_attribute_row.jst.eco
  6057. #: app/assets/javascripts/app/views/integration/ldap_group_role_row.jst.eco
  6058. #: app/assets/javascripts/app/views/integration/ldap_user_attribute_row.jst.eco
  6059. #: app/assets/javascripts/app/views/integration/placetel.jst.eco
  6060. #: app/assets/javascripts/app/views/integration/sipgate.jst.eco
  6061. #: app/assets/javascripts/app/views/navigation/menu_cti_ringing.jst.eco
  6062. #: app/assets/javascripts/app/views/object_manager/attribute/multiselect.jst.eco
  6063. #: app/assets/javascripts/app/views/object_manager/attribute/select.jst.eco
  6064. #: app/assets/javascripts/app/views/profile/devices.jst.eco
  6065. #: app/assets/javascripts/app/views/twitter/search_term.jst.eco
  6066. #: app/frontend/shared/form/i18n/locales.ts
  6067. msgid "Remove"
  6068. msgstr ""
  6069. #: app/frontend/shared/form/i18n/locales.ts
  6070. msgid "Remove all"
  6071. msgstr ""
  6072. #: app/frontend/shared/components/Form/fields/FieldEditor/useEditorActions.ts
  6073. msgid "Remove formatting"
  6074. msgstr ""
  6075. #: app/assets/javascripts/app/controllers/_plugin/keyboard_shortcuts.coffee
  6076. msgid "Removes any hyperlink"
  6077. msgstr ""
  6078. #: app/assets/javascripts/app/controllers/_plugin/keyboard_shortcuts.coffee
  6079. msgid "Removes the formatting"
  6080. msgstr ""
  6081. #: app/assets/javascripts/app/controllers/_channel/chat.coffee
  6082. msgid "Removes the shadows for a flat look."
  6083. msgstr ""
  6084. #: app/models/report.rb
  6085. msgid "Reopened"
  6086. msgstr ""
  6087. #: app/assets/javascripts/app/views/dashboard/stats/ticket_reopen.jst.eco
  6088. msgid "Reopening rate"
  6089. msgstr ""
  6090. #: app/assets/javascripts/app/views/profile/out_of_office.jst.eco
  6091. msgid "Replacement"
  6092. msgstr ""
  6093. #: app/assets/javascripts/app/controllers/_plugin/keyboard_shortcuts.coffee
  6094. msgid "Reply to last article"
  6095. msgstr ""
  6096. #: app/assets/javascripts/app/views/ticket_zoom/article_view.jst.eco
  6097. msgid "Reply-To"
  6098. msgstr ""
  6099. #: db/seeds/permissions.rb
  6100. msgid "Report Interface"
  6101. msgstr ""
  6102. #: app/assets/javascripts/app/controllers/report_profile.coffee
  6103. msgid "Report Profile"
  6104. msgstr ""
  6105. #: app/assets/javascripts/app/controllers/report_profile.coffee
  6106. #: db/seeds/permissions.rb
  6107. msgid "Report Profiles"
  6108. msgstr ""
  6109. #: app/assets/javascripts/app/controllers/report.coffee
  6110. #: app/assets/javascripts/app/views/report/main.jst.eco
  6111. msgid "Reporting"
  6112. msgstr ""
  6113. #: app/assets/javascripts/app/views/widget/http_log.jst.eco
  6114. #: app/assets/javascripts/app/views/widget/http_log_show.jst.eco
  6115. msgid "Request"
  6116. msgstr ""
  6117. #: db/seeds/object_manager_attributes.rb
  6118. msgid "Request for Change"
  6119. msgstr ""
  6120. #: app/assets/javascripts/app/views/api.jst.eco
  6121. msgid "Requesting the Grant"
  6122. msgstr ""
  6123. #: app/controllers/reports_controller.rb
  6124. msgid "Required parameter 'downloadBackendSelected' is missing."
  6125. msgstr ""
  6126. #: app/controllers/reports_controller.rb
  6127. msgid "Required parameter 'profile' is missing."
  6128. msgstr ""
  6129. #: app/assets/javascripts/app/views/channel/chat.jst.eco
  6130. #: app/assets/javascripts/app/views/channel/form.jst.eco
  6131. msgid "Requirements"
  6132. msgstr ""
  6133. #: app/assets/javascripts/app/controllers/_plugin/user_signup_check.coffee
  6134. #: app/assets/javascripts/app/controllers/user_profile.coffee
  6135. #: app/assets/javascripts/app/views/signup/verify.jst.eco
  6136. msgid "Resend verification email"
  6137. msgstr ""
  6138. #: app/assets/javascripts/app/views/monitoring.jst.eco
  6139. #: app/assets/javascripts/app/views/settings/ticket_auto_assignment.jst.eco
  6140. #: app/assets/javascripts/app/views/time_accounting/index.jst.eco
  6141. #: app/assets/javascripts/app/views/translation/list.jst.eco
  6142. msgid "Reset"
  6143. msgstr ""
  6144. #: app/assets/javascripts/app/controllers/password_reset.coffee
  6145. #: app/assets/javascripts/app/controllers/password_reset_verify.coffee
  6146. msgid "Reset Password"
  6147. msgstr ""
  6148. #: app/assets/javascripts/app/controllers/password_reset_verify.coffee
  6149. msgid "Reset Password failed!"
  6150. msgstr ""
  6151. #: app/assets/javascripts/app/controllers/translation.coffee
  6152. #: app/assets/javascripts/app/views/translation/index.jst.eco
  6153. msgid "Reset changes"
  6154. msgstr ""
  6155. #: app/assets/javascripts/app/controllers/translation.coffee
  6156. msgid "Resetting changes…"
  6157. msgstr ""
  6158. #: app/assets/javascripts/app/views/widget/http_log_show.jst.eco
  6159. msgid "Response"
  6160. msgstr ""
  6161. #: app/assets/javascripts/app/views/monitoring.jst.eco
  6162. msgid "Restart failed jobs"
  6163. msgstr ""
  6164. #: app/assets/javascripts/app/views/object_manager/index.jst.eco
  6165. msgid "Restore Defaults"
  6166. msgstr ""
  6167. #: app/assets/javascripts/app/models/overview.coffee
  6168. msgid "Restrict to only the following users"
  6169. msgstr ""
  6170. #: app/assets/javascripts/app/views/generic/object_import/result.jst.eco
  6171. msgid "Result"
  6172. msgstr ""
  6173. #: app/assets/javascripts/app/views/ticket_zoom/article_view.jst.eco
  6174. msgid "Retry security process"
  6175. msgstr ""
  6176. #: app/assets/javascripts/app/views/twitter/account_edit.jst.eco
  6177. #: app/assets/javascripts/app/views/twitter/list.jst.eco
  6178. msgid "Retweets"
  6179. msgstr ""
  6180. #: app/assets/javascripts/app/views/twitter/list.jst.eco
  6181. msgid "Retweets are converted into tickets."
  6182. msgstr ""
  6183. #: app/assets/javascripts/app/controllers/_ui_element/core_workflow_condition.coffee
  6184. #: app/assets/javascripts/app/controllers/role.coffee
  6185. #: app/assets/javascripts/app/views/integration/ldap.jst.eco
  6186. #: app/assets/javascripts/app/views/knowledge_base/permissions_dialog.jst.eco
  6187. msgid "Role"
  6188. msgstr ""
  6189. #: app/assets/javascripts/app/controllers/_ui_element/user_permission.coffee
  6190. msgid "Role %s is conflicting with role %s, do you want to continue?"
  6191. msgstr ""
  6192. #: app/assets/javascripts/app/controllers/role.coffee
  6193. #: app/assets/javascripts/app/views/integration/ldap_wizard.jst.eco
  6194. #: app/assets/javascripts/app/views/user.jst.eco
  6195. #: db/seeds/permissions.rb
  6196. msgid "Roles"
  6197. msgstr ""
  6198. #: app/assets/javascripts/app/controllers/role.coffee
  6199. msgid "Roles are …"
  6200. msgstr ""
  6201. #: app/assets/javascripts/app/views/google/list.jst.eco
  6202. #: app/assets/javascripts/app/views/microsoft365/list.jst.eco
  6203. msgid "Rollback migration"
  6204. msgstr ""
  6205. #: app/assets/javascripts/app/controllers/_channel/google.coffee
  6206. #: app/assets/javascripts/app/controllers/_channel/microsoft365.coffee
  6207. msgid "Rollback of channel migration succeeded!"
  6208. msgstr ""
  6209. #: app/assets/javascripts/app/controllers/_ui_element/object_manager_attribute.coffee
  6210. msgid "Rows"
  6211. msgstr ""
  6212. #: app/assets/javascripts/app/controllers/_ui_element/timer.coffee
  6213. msgid "Run every %s at %s in %s time"
  6214. msgstr ""
  6215. #: app/assets/javascripts/app/models/job.coffee
  6216. msgid "Running"
  6217. msgstr ""
  6218. #: app/assets/javascripts/app/views/data_privacy/index.jst.eco
  6219. msgid "Running Tasks"
  6220. msgstr ""
  6221. #: app/assets/javascripts/app/views/integration/exchange_last_import.jst.eco
  6222. #: app/assets/javascripts/app/views/integration/ldap_last_import.jst.eco
  6223. msgid "Running…"
  6224. msgstr ""
  6225. #: app/assets/javascripts/app/controllers/_integration/smime.coffee
  6226. msgid "S/MIME"
  6227. msgstr ""
  6228. #: app/assets/javascripts/app/controllers/_integration/smime.coffee
  6229. msgid "S/MIME (Secure/Multipurpose Internet Mail Extensions) is a widely accepted method (or more precisely, a protocol) for sending digitally signed and encrypted messages."
  6230. msgstr ""
  6231. #: db/seeds/settings.rb
  6232. msgid "S/MIME config"
  6233. msgstr ""
  6234. #: app/assets/javascripts/app/controllers/_integration/smime.coffee
  6235. msgid "S/MIME enables you to send digitally signed and encrypted messages."
  6236. msgstr ""
  6237. #: db/seeds/settings.rb
  6238. msgid "S/MIME integration"
  6239. msgstr ""
  6240. #: app/assets/javascripts/app/controllers/_profile/linked_accounts.coffee
  6241. msgid "SAML"
  6242. msgstr ""
  6243. #: db/seeds/settings.rb
  6244. msgid "SAML App Credentials"
  6245. msgstr ""
  6246. #: app/assets/javascripts/app/controllers/sla.coffee
  6247. #: app/assets/javascripts/app/views/sla/index.jst.eco
  6248. #: db/seeds/permissions.rb
  6249. msgid "SLA"
  6250. msgstr ""
  6251. #: app/assets/javascripts/app/models/sla.coffee
  6252. msgid "SLA Times"
  6253. msgstr ""
  6254. #: app/assets/javascripts/app/controllers/sla.coffee
  6255. msgid "SLAs"
  6256. msgstr ""
  6257. #: app/assets/javascripts/app/controllers/_channel/sms.coffee
  6258. #: app/assets/javascripts/app/controllers/_ui_element/ticket_perform_action.coffee
  6259. msgid "SMS"
  6260. msgstr ""
  6261. #: app/assets/javascripts/app/controllers/_channel/sms.coffee
  6262. msgid "SMS Account"
  6263. msgstr ""
  6264. #: app/assets/javascripts/app/views/channel/sms_account_overview.jst.eco
  6265. msgid "SMS Accounts"
  6266. msgstr ""
  6267. #: app/assets/javascripts/app/controllers/_channel/sms.coffee
  6268. #: app/assets/javascripts/app/views/channel/sms_account_overview.jst.eco
  6269. msgid "SMS Notification"
  6270. msgstr ""
  6271. #: app/assets/javascripts/app/controllers/_channel/sms.coffee
  6272. msgid "SMS successfully sent"
  6273. msgstr ""
  6274. #: app/assets/javascripts/app/controllers/_channel/sms.coffee
  6275. msgid "SMS test failed."
  6276. msgstr ""
  6277. #: lib/email_helper.rb
  6278. msgid "SMTP - configure your own outgoing SMTP settings"
  6279. msgstr ""
  6280. #: app/assets/javascripts/app/controllers/_channel/email.coffee
  6281. #: app/assets/javascripts/app/controllers/getting_started/channel_email.coffee
  6282. msgid "SSL"
  6283. msgstr ""
  6284. #: app/assets/javascripts/app/models/webhook.coffee
  6285. msgid "SSL Verify"
  6286. msgstr ""
  6287. #: app/assets/javascripts/app/views/integration/ldap_ssl_verify_row.jst.eco
  6288. msgid "SSL verification"
  6289. msgstr ""
  6290. #: app/assets/javascripts/app/controllers/_channel/email.coffee
  6291. #: app/assets/javascripts/app/controllers/getting_started/channel_email.coffee
  6292. msgid "SSL/STARTTLS"
  6293. msgstr ""
  6294. #: app/assets/javascripts/app/controllers/_profile/linked_accounts.coffee
  6295. msgid "SSO"
  6296. msgstr ""
  6297. #: app/assets/javascripts/app/controllers/_channel/email.coffee
  6298. #: app/assets/javascripts/app/controllers/getting_started/channel_email.coffee
  6299. msgid "STARTTLS"
  6300. msgstr ""
  6301. #: app/assets/javascripts/app/controllers/_ui_element/basedate.coffee
  6302. #: app/frontend/shared/components/Form/fields/FieldDate/FieldDateTimeInput.vue
  6303. msgid "Sat"
  6304. msgstr ""
  6305. #: app/assets/javascripts/app/controllers/_ui_element/basedate.coffee
  6306. #: app/assets/javascripts/app/controllers/_ui_element/timer.coffee
  6307. #: app/assets/javascripts/app/lib/app_post/business_hours.coffee
  6308. #: app/assets/javascripts/app/views/calendar/index.jst.eco
  6309. #: app/frontend/shared/components/Form/fields/FieldDate/FieldDateTimeInput.vue
  6310. msgid "Saturday"
  6311. msgstr ""
  6312. #: app/assets/javascripts/app/controllers/_profile/avatar.coffee
  6313. #: app/assets/javascripts/app/views/integration/clearbit.jst.eco
  6314. #: app/assets/javascripts/app/views/integration/cti.jst.eco
  6315. #: app/assets/javascripts/app/views/integration/github.jst.eco
  6316. #: app/assets/javascripts/app/views/integration/gitlab.jst.eco
  6317. #: app/assets/javascripts/app/views/integration/idoit.jst.eco
  6318. #: app/assets/javascripts/app/views/integration/ldap_wizard.jst.eco
  6319. #: app/assets/javascripts/app/views/integration/placetel.jst.eco
  6320. #: app/assets/javascripts/app/views/integration/sipgate.jst.eco
  6321. #: app/assets/javascripts/app/views/settings/ticket_auto_assignment.jst.eco
  6322. #: app/assets/javascripts/app/views/time_accounting/index.jst.eco
  6323. #: app/assets/javascripts/app/views/widget/template.jst.eco
  6324. #: app/assets/javascripts/app/views/widget/text_module.jst.eco
  6325. #: app/frontend/apps/mobile/modules/account/views/AccountAvatar.vue
  6326. msgid "Save"
  6327. msgstr ""
  6328. #: app/assets/javascripts/app/views/ticket_shared_draft_overwrite_modal.coffee
  6329. #: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco
  6330. msgid "Save Draft"
  6331. msgstr ""
  6332. #: app/assets/javascripts/app/views/widget/text_module.jst.eco
  6333. msgid "Save as"
  6334. msgstr ""
  6335. #: app/assets/javascripts/app/views/widget/template.jst.eco
  6336. msgid "Save as template"
  6337. msgstr ""
  6338. #: app/assets/javascripts/app/views/integration/exchange_wizard.jst.eco
  6339. #: app/assets/javascripts/app/views/integration/ldap_wizard.jst.eco
  6340. msgid "Save configuration"
  6341. msgstr ""
  6342. #: app/assets/javascripts/app/views/widget/template.jst.eco
  6343. msgid "Save new template"
  6344. msgstr ""
  6345. #: app/assets/javascripts/app/models/core_workflow.coffee
  6346. msgid "Saved conditions"
  6347. msgstr ""
  6348. #: app/assets/javascripts/app/controllers/_integration/github.coffee
  6349. #: app/assets/javascripts/app/controllers/_integration/gitlab.coffee
  6350. #: app/assets/javascripts/app/controllers/_integration/idoit.coffee
  6351. #: app/assets/javascripts/app/controllers/ticket_zoom.coffee
  6352. msgid "Saving failed."
  6353. msgstr ""
  6354. #: app/assets/javascripts/app/controllers/knowledge_base/content_can_be_published_form.coffee
  6355. msgid "Schedule for"
  6356. msgstr ""
  6357. #: app/assets/javascripts/app/models/job.coffee
  6358. #: app/assets/javascripts/app/views/knowledge_base/scheduled_widget.jst.eco
  6359. msgid "Scheduled for"
  6360. msgstr ""
  6361. #: app/assets/javascripts/app/controllers/job.coffee
  6362. #: db/seeds/permissions.rb
  6363. msgid "Scheduler"
  6364. msgstr ""
  6365. #: app/assets/javascripts/app/controllers/job.coffee
  6366. msgid "Schedulers"
  6367. msgstr ""
  6368. #: app/assets/javascripts/app/controllers/job.coffee
  6369. msgid "Schedulers are …"
  6370. msgstr ""
  6371. #: app/assets/javascripts/app/views/object_manager/screens.jst.eco
  6372. msgid "Screen"
  6373. msgstr ""
  6374. #: app/assets/javascripts/app/views/integration/check_mk.jst.eco
  6375. msgid "Script can be located under: ||%s|| and needs to be executable."
  6376. msgstr ""
  6377. #: app/assets/javascripts/app/views/customer_chat/chat_window.jst.eco
  6378. msgid "Scroll down to see new messages"
  6379. msgstr ""
  6380. #: app/assets/javascripts/app/controllers/_dashboard/first_steps_clues.coffee
  6381. #: app/assets/javascripts/app/controllers/_plugin/keyboard_shortcuts.coffee
  6382. #: app/assets/javascripts/app/controllers/knowledge_base/agent_controller.coffee
  6383. #: app/assets/javascripts/app/views/integration/idoit_object_selector.jst.eco
  6384. #: app/assets/javascripts/app/views/knowledge_base/search_field_widget.jst.eco
  6385. #: app/assets/javascripts/app/views/widget/text_module.jst.eco
  6386. #: app/frontend/apps/mobile/modules/search/routes.ts
  6387. #: app/frontend/shared/components/CommonInputSearch/CommonInputSearch.vue
  6388. msgid "Search"
  6389. msgstr ""
  6390. #: app/assets/javascripts/app/views/twitter/account_edit.jst.eco
  6391. msgid "Search Term"
  6392. msgstr ""
  6393. #: app/assets/javascripts/app/views/twitter/account_edit.jst.eco
  6394. #: app/assets/javascripts/app/views/twitter/list.jst.eco
  6395. msgid "Search Terms"
  6396. msgstr ""
  6397. #: app/assets/javascripts/app/views/user.jst.eco
  6398. msgid "Search for users"
  6399. msgstr ""
  6400. #: app/assets/javascripts/app/controllers/_ui_element/autocompletion_ajax.coffee
  6401. #: app/assets/javascripts/app/controllers/_ui_element/autocompletion_ajax_customer_organization.coffee
  6402. #: app/assets/javascripts/app/controllers/widget/link/kb_answer.coffee
  6403. #: app/assets/javascripts/app/views/generic/icon_picker.jst.eco
  6404. #: app/frontend/apps/mobile/modules/search/views/SearchOverview.vue
  6405. msgid "Search…"
  6406. msgstr ""
  6407. #: db/seeds/object_manager_attributes.rb
  6408. msgid "Secondary organizations"
  6409. msgstr ""
  6410. #: app/models/user.rb
  6411. msgid "Secondary organizations are only allowed when the primary organization is given."
  6412. msgstr ""
  6413. #: app/assets/javascripts/app/controllers/_manage/security.coffee
  6414. #: app/assets/javascripts/app/views/agent_ticket_create.jst.eco
  6415. #: app/assets/javascripts/app/views/ticket_zoom/article_new.jst.eco
  6416. #: app/assets/javascripts/app/views/ticket_zoom/article_view.jst.eco
  6417. #: db/seeds/permissions.rb
  6418. msgid "Security"
  6419. msgstr ""
  6420. #: app/assets/javascripts/app/views/ticket_zoom/article_view.jst.eco
  6421. msgid "Security Error"
  6422. msgstr ""
  6423. #: app/assets/javascripts/app/controllers/data_privacy.coffee
  6424. #: app/assets/javascripts/app/controllers/ticket_zoom/article_view.coffee
  6425. msgid "See less"
  6426. msgstr ""
  6427. #: app/assets/javascripts/app/controllers/data_privacy.coffee
  6428. #: app/assets/javascripts/app/controllers/ticket_zoom/article_view.coffee
  6429. #: app/assets/javascripts/app/views/data_privacy/tasks.jst.eco
  6430. #: app/assets/javascripts/app/views/ticket_zoom/article_view.jst.eco
  6431. msgid "See more"
  6432. msgstr ""
  6433. #: app/assets/javascripts/app/views/profile/calendar_subscriptions.jst.eco
  6434. msgid "See your tickets from within your favorite calendar by adding the following URL to your calendar app."
  6435. msgstr ""
  6436. #: app/assets/javascripts/app/controllers/_plugin/electron_events.coffee
  6437. msgid "Select All"
  6438. msgstr ""
  6439. #: app/assets/javascripts/app/views/generic/object_import/index.jst.eco
  6440. msgid "Select CSV file"
  6441. msgstr ""
  6442. #: app/assets/javascripts/app/views/widget/shared_draft.jst.eco
  6443. msgid "Select Shared Draft"
  6444. msgstr ""
  6445. #: app/assets/javascripts/app/views/widget/template.jst.eco
  6446. msgid "Select Template"
  6447. msgstr ""
  6448. #: db/seeds/settings.rb
  6449. msgid "Select default ticket type"
  6450. msgstr ""
  6451. #: app/assets/javascripts/app/controllers/_plugin/keyboard_shortcuts.coffee
  6452. msgid "Select item"
  6453. msgstr ""
  6454. #: app/assets/javascripts/app/lib/app_post/multi_locales_row.coffee
  6455. msgid "Select locale…"
  6456. msgstr ""
  6457. #: app/assets/javascripts/app/controllers/_application_controller/form.coffee
  6458. msgid "Select the customer of the ticket or create one."
  6459. msgstr ""
  6460. #: app/assets/javascripts/app/models/core_workflow.coffee
  6461. msgid "Selected conditions"
  6462. msgstr ""
  6463. #: app/assets/javascripts/app/views/time_accounting/index.jst.eco
  6464. msgid "Selector"
  6465. msgstr ""
  6466. #: app/assets/javascripts/app/views/settings/ticket_number.jst.eco
  6467. msgid "Selects the ticket number generator module."
  6468. msgstr ""
  6469. #: app/frontend/shared/components/Form/fields/FieldSelect/FieldSelectInput.vue
  6470. #: app/frontend/shared/components/Form/fields/FieldTreeSelect/FieldTreeSelectInput.vue
  6471. msgid "Select…"
  6472. msgstr ""
  6473. #: app/assets/javascripts/app/views/channel/chat.jst.eco
  6474. #: app/assets/javascripts/app/views/customer_chat/chat_window.jst.eco
  6475. #: public/assets/chat/views/chat.eco
  6476. msgid "Send"
  6477. msgstr ""
  6478. #: app/assets/javascripts/app/controllers/agent_ticket_create.coffee
  6479. msgid "Send Email"
  6480. msgstr ""
  6481. #: app/assets/javascripts/app/controllers/_channel/email.coffee
  6482. #: app/assets/javascripts/app/controllers/getting_started/channel_email.coffee
  6483. #: app/assets/javascripts/app/controllers/getting_started/email_notification.coffee
  6484. msgid "Send Mails via"
  6485. msgstr ""
  6486. #: app/assets/javascripts/app/views/maintenance.jst.eco
  6487. msgid "Send a message to all logged in users."
  6488. msgstr ""
  6489. #: db/seeds/settings.rb
  6490. msgid "Send postmaster mail if mail too large"
  6491. msgstr ""
  6492. #: db/seeds/settings.rb
  6493. msgid "Send postmaster reject mail to sender of mail if mail is too large."
  6494. msgstr ""
  6495. #: app/assets/javascripts/app/views/maintenance.jst.eco
  6496. msgid "Send to clients"
  6497. msgstr ""
  6498. #: app/assets/javascripts/app/controllers/_ui_element/postmaster_set.coffee
  6499. #: app/assets/javascripts/app/models/ticket_article.coffee
  6500. #: app/assets/javascripts/app/views/channel/sms_account_overview.jst.eco
  6501. #: app/models/channel/driver/sms/massenversand.rb
  6502. #: app/models/channel/driver/sms/message_bird.rb
  6503. #: app/models/channel/driver/sms/twilio.rb
  6504. #: db/seeds/settings.rb
  6505. #: lib/excel_sheet/ticket.rb
  6506. msgid "Sender"
  6507. msgstr ""
  6508. #: db/seeds/settings.rb
  6509. msgid "Sender Format"
  6510. msgstr ""
  6511. #: db/seeds/settings.rb
  6512. msgid "Sender Format Separator"
  6513. msgstr ""
  6514. #: db/seeds/settings.rb
  6515. msgid "Sender based on Reply-To header"
  6516. msgstr ""
  6517. #: app/assets/javascripts/app/controllers/_ui_element/ticket_perform_action.coffee
  6518. msgid "Sender of last article"
  6519. msgstr ""
  6520. #: app/assets/javascripts/app/views/widget/invite_user.jst.eco
  6521. msgid "Sending…"
  6522. msgstr ""
  6523. #: app/assets/javascripts/app/controllers/maintenance.coffee
  6524. msgid "Sent successfully!"
  6525. msgstr ""
  6526. #: app/assets/javascripts/app/controllers/_ui_element/basedate.coffee
  6527. #: app/assets/javascripts/app/controllers/report.coffee
  6528. #: app/assets/javascripts/app/controllers/time_accounting.coffee
  6529. #: app/frontend/shared/components/Form/fields/FieldDate/FieldDateTimeInput.vue
  6530. msgid "Sep"
  6531. msgstr ""
  6532. #: app/assets/javascripts/app/views/customer_chat/setting.jst.eco
  6533. msgid "Separate multiple values by ;"
  6534. msgstr ""
  6535. #: app/assets/javascripts/app/controllers/_ui_element/basedate.coffee
  6536. #: app/frontend/shared/components/Form/fields/FieldDate/FieldDateTimeInput.vue
  6537. msgid "September"
  6538. msgstr ""
  6539. #: db/seeds/settings.rb
  6540. msgid "Sequencer log level"
  6541. msgstr ""
  6542. #: app/assets/javascripts/app/controllers/_integration/exchange.coffee
  6543. #: app/assets/javascripts/app/controllers/_integration/ldap.coffee
  6544. #: app/assets/javascripts/app/controllers/_integration/smime.coffee
  6545. msgid "Server operation failed."
  6546. msgstr ""
  6547. #: app/assets/javascripts/app/views/integration/index.jst.eco
  6548. msgid "Service"
  6549. msgstr ""
  6550. #: app/assets/javascripts/app/views/integration/check_mk.jst.eco
  6551. msgid "Service Notification"
  6552. msgstr ""
  6553. #: app/assets/javascripts/app/controllers/_manage/system.coffee
  6554. msgid "Services"
  6555. msgstr ""
  6556. #: app/assets/javascripts/app/controllers/_plugin/session_taken_over.coffee
  6557. #: app/assets/javascripts/app/controllers/_plugin/session_timeout.coffee
  6558. #: app/assets/javascripts/app/controllers/_ui_element/core_workflow_condition.coffee
  6559. msgid "Session"
  6560. msgstr ""
  6561. #: db/seeds/settings.rb
  6562. msgid "Session Timeout"
  6563. msgstr ""
  6564. #: app/assets/javascripts/app/controllers/session.coffee
  6565. #: app/assets/javascripts/app/views/session.jst.eco
  6566. #: db/seeds/permissions.rb
  6567. msgid "Sessions"
  6568. msgstr ""
  6569. #: db/seeds/settings.rb
  6570. msgid "Set agent limit"
  6571. msgstr ""
  6572. #: app/assets/javascripts/app/controllers/_plugin/keyboard_shortcuts.coffee
  6573. msgid "Set article to internal/public"
  6574. msgstr ""
  6575. #: app/assets/javascripts/app/views/calendar/index.jst.eco
  6576. msgid "Set as Default"
  6577. msgstr ""
  6578. #: db/seeds/settings.rb
  6579. msgid "Set available ticket types"
  6580. msgstr ""
  6581. #: db/seeds/settings.rb
  6582. msgid "Set backend which is being used for import."
  6583. msgstr ""
  6584. #: app/assets/javascripts/app/views/integration/cti.jst.eco
  6585. #: app/assets/javascripts/app/views/integration/placetel.jst.eco
  6586. #: app/assets/javascripts/app/views/integration/sipgate.jst.eco
  6587. msgid "Set caller ID of outbound calls based on destination caller ID."
  6588. msgstr ""
  6589. #: db/seeds/settings.rb
  6590. msgid "Set notes for ticket create types by selecting type."
  6591. msgstr ""
  6592. #: db/seeds/settings.rb
  6593. msgid "Set notes for ticket create types."
  6594. msgstr ""
  6595. #: app/assets/javascripts/app/views/integration/cti.jst.eco
  6596. #: app/assets/javascripts/app/views/integration/placetel.jst.eco
  6597. #: app/assets/javascripts/app/views/integration/sipgate.jst.eco
  6598. msgid "Set outbound caller ID"
  6599. msgstr ""
  6600. #: db/seeds/settings.rb
  6601. msgid "Set timeframe in seconds. If it's set to 0 you can delete notes without time limits"
  6602. msgstr ""
  6603. #: app/assets/javascripts/app/views/getting_started/intro.jst.eco
  6604. msgid "Set up a new system"
  6605. msgstr ""
  6606. #: app/assets/javascripts/app/views/getting_started/channel.jst.eco
  6607. msgid "Set up the communication channels you want to use with your Zammad."
  6608. msgstr ""
  6609. #: db/seeds/settings.rb
  6610. msgid "Set/overwrite sender/from of email based on \"Reply-To\" header. Useful to set correct customer if email is received from a third-party system on behalf of a customer."
  6611. msgstr ""
  6612. #: app/assets/javascripts/app/controllers/_channel/email.coffee
  6613. #: app/assets/javascripts/app/controllers/_channel/google.coffee
  6614. #: app/assets/javascripts/app/controllers/_channel/microsoft365.coffee
  6615. #: app/assets/javascripts/app/controllers/_channel/web.coffee
  6616. #: app/assets/javascripts/app/controllers/chat.coffee
  6617. #: app/assets/javascripts/app/controllers/manage.coffee
  6618. #: app/assets/javascripts/app/controllers/ticket_zoom/setting.coffee
  6619. #: app/assets/javascripts/app/views/channel/form.jst.eco
  6620. #: app/assets/javascripts/app/views/customer_chat/index.jst.eco
  6621. #: app/assets/javascripts/app/views/integration/exchange.jst.eco
  6622. #: app/assets/javascripts/app/views/integration/github.jst.eco
  6623. #: app/assets/javascripts/app/views/integration/gitlab.jst.eco
  6624. #: app/assets/javascripts/app/views/integration/idoit.jst.eco
  6625. #: app/assets/javascripts/app/views/telegram/bot_add.jst.eco
  6626. #: app/assets/javascripts/app/views/telegram/bot_edit.jst.eco
  6627. msgid "Settings"
  6628. msgstr ""
  6629. #: app/assets/javascripts/app/views/integration/ldap.jst.eco
  6630. msgid "Settings %s"
  6631. msgstr ""
  6632. #: app/assets/javascripts/app/controllers/getting_started/finish.coffee
  6633. #: app/assets/javascripts/app/views/getting_started/finish.jst.eco
  6634. msgid "Setup Finished"
  6635. msgstr ""
  6636. #: app/assets/javascripts/app/controllers/_integration/clearbit.coffee
  6637. msgid "Shared"
  6638. msgstr ""
  6639. #: app/assets/javascripts/app/controllers/agent_ticket_create/sidebar_shared_draft.coffee
  6640. #: app/assets/javascripts/app/models/group.coffee
  6641. #: db/seeds/object_manager_attributes.rb
  6642. msgid "Shared Drafts"
  6643. msgstr ""
  6644. #: app/controllers/tickets_controller.rb
  6645. msgid "Shared draft cannot be selected for this ticket."
  6646. msgstr ""
  6647. #: app/assets/javascripts/app/models/organization.coffee
  6648. #: db/seeds/object_manager_attributes.rb
  6649. msgid "Shared organization"
  6650. msgstr ""
  6651. #: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco
  6652. msgid "Sharing draft…"
  6653. msgstr ""
  6654. #: app/assets/javascripts/app/controllers/_profile/avatar.coffee
  6655. msgid "Shoot"
  6656. msgstr ""
  6657. #: app/assets/javascripts/app/views/channel/email_account_wizard.jst.eco
  6658. #: app/assets/javascripts/app/views/getting_started/email.jst.eco
  6659. msgid "Should the emails from this mailbox be imported as an archive or as regular emails?"
  6660. msgstr ""
  6661. #: app/assets/javascripts/app/views/profile/calendar_subscriptions.jst.eco
  6662. msgid "Show"
  6663. msgstr ""
  6664. #: app/assets/javascripts/app/views/ticket_shared_draft_overwrite_modal.coffee
  6665. msgid "Show Draft"
  6666. msgstr ""
  6667. #: app/assets/javascripts/app/views/navigation.jst.eco
  6668. msgid "Show Search Details"
  6669. msgstr ""
  6670. #: app/assets/javascripts/app/views/generic/ticket_list.jst.eco
  6671. #: app/assets/javascripts/app/views/widget/ticket_stats_list.jst.eco
  6672. msgid "Show all…"
  6673. msgstr ""
  6674. #: app/assets/javascripts/app/views/channel/chat.jst.eco
  6675. msgid "Show chat automatically"
  6676. msgstr ""
  6677. #: app/assets/javascripts/app/views/generic/ticket_list.jst.eco
  6678. msgid "Show less"
  6679. msgstr ""
  6680. #: app/assets/javascripts/app/controllers/_plugin/keyboard_shortcuts.coffee
  6681. msgid "Show next tab"
  6682. msgstr ""
  6683. #: app/assets/javascripts/app/controllers/_plugin/keyboard_shortcuts.coffee
  6684. msgid "Show previous tab"
  6685. msgstr ""
  6686. #: app/assets/javascripts/app/controllers/_channel/chat.coffee
  6687. msgid "Show the chat when ready."
  6688. msgstr ""
  6689. #: app/assets/javascripts/app/views/channel/form.jst.eco
  6690. msgid "Show title in form."
  6691. msgstr ""
  6692. #: app/assets/javascripts/app/views/integration/cti.jst.eco
  6693. #: app/assets/javascripts/app/views/integration/placetel.jst.eco
  6694. #: app/assets/javascripts/app/views/integration/sipgate.jst.eco
  6695. msgid "Shown records in caller log."
  6696. msgstr ""
  6697. #: app/assets/javascripts/app/views/channel/chat.jst.eco
  6698. msgid "Shown when the chat is closed."
  6699. msgstr ""
  6700. #: db/seeds/settings.rb
  6701. msgid "Sidebar Attachments"
  6702. msgstr ""
  6703. #: app/assets/javascripts/app/views/agent_ticket_create.jst.eco
  6704. #: app/assets/javascripts/app/views/integration/smime_group.jst.eco
  6705. #: app/assets/javascripts/app/views/ticket_zoom/article_new.jst.eco
  6706. #: app/assets/javascripts/app/views/ticket_zoom/article_view.jst.eco
  6707. msgid "Sign"
  6708. msgstr ""
  6709. #: app/assets/javascripts/app/controllers/_ui_element/ticket_perform_action.coffee
  6710. msgid "Sign email (if not possible, discard notification)"
  6711. msgstr ""
  6712. #: app/assets/javascripts/app/controllers/_ui_element/ticket_perform_action.coffee
  6713. msgid "Sign email (if not possible, send notification anyway)"
  6714. msgstr ""
  6715. #: app/assets/javascripts/app/controllers/login.coffee
  6716. #: app/assets/javascripts/app/views/generic/login_preview.jst.eco
  6717. #: app/assets/javascripts/app/views/login.jst.eco
  6718. #: app/frontend/apps/mobile/modules/login/routes.ts
  6719. #: app/frontend/apps/mobile/modules/login/views/Login.vue
  6720. msgid "Sign in"
  6721. msgstr ""
  6722. #: app/assets/javascripts/app/controllers/logout.coffee
  6723. #: app/frontend/apps/mobile/modules/account/views/AccountOverview.vue
  6724. msgid "Sign out"
  6725. msgstr ""
  6726. #: app/assets/javascripts/app/controllers/signup.coffee
  6727. msgid "Sign up"
  6728. msgstr ""
  6729. #: app/assets/javascripts/app/controllers/_channel/_email_signature.coffee
  6730. #: app/assets/javascripts/app/models/group.coffee
  6731. #: db/seeds/object_manager_attributes.rb
  6732. msgid "Signature"
  6733. msgstr ""
  6734. #: app/assets/javascripts/app/controllers/ticket_zoom/article_view.coffee
  6735. msgid "Signature verification failed!"
  6736. msgstr ""
  6737. #: app/assets/javascripts/app/controllers/_channel/email.coffee
  6738. #: app/assets/javascripts/app/controllers/_channel/google.coffee
  6739. #: app/assets/javascripts/app/controllers/_channel/microsoft365.coffee
  6740. msgid "Signatures"
  6741. msgstr ""
  6742. #: app/assets/javascripts/app/views/ticket_zoom/article_view.jst.eco
  6743. msgid "Signed"
  6744. msgstr ""
  6745. #: app/assets/javascripts/app/lib/app_post/iconset_picker.coffee
  6746. msgid "Simple Line Icons"
  6747. msgstr ""
  6748. #: public/assets/chat/views/customer_timeout.eco
  6749. msgid "Since you didn't respond in the last %s minutes your conversation got closed."
  6750. msgstr ""
  6751. #: public/assets/chat/views/customer_timeout.eco
  6752. msgid "Since you didn't respond in the last %s minutes your conversation with <strong>%s</strong> got closed."
  6753. msgstr ""
  6754. #: app/assets/javascripts/app/controllers/_ui_element/object_manager_attribute.coffee
  6755. msgid "Single selection field"
  6756. msgstr ""
  6757. #: app/assets/javascripts/app/controllers/_ui_element/object_manager_attribute.coffee
  6758. msgid "Single tree selection field"
  6759. msgstr ""
  6760. #: app/assets/javascripts/app/views/integration/sipgate.jst.eco
  6761. msgid "Sipgate"
  6762. msgstr ""
  6763. #: db/seeds/settings.rb
  6764. msgid "Site"
  6765. msgstr ""
  6766. #: app/assets/javascripts/app/views/getting_started/channel.jst.eco
  6767. msgid "Skip"
  6768. msgstr ""
  6769. #: app/assets/javascripts/app/controllers/_integration/slack.coffee
  6770. msgid "Slack"
  6771. msgstr ""
  6772. #: db/seeds/settings.rb
  6773. msgid "Slack config"
  6774. msgstr ""
  6775. #: db/seeds/settings.rb
  6776. msgid "Slack integration"
  6777. msgstr ""
  6778. #: app/assets/javascripts/app/views/generic/sla_times.jst.eco
  6779. #: app/assets/javascripts/app/views/popover/escalation.jst.eco
  6780. #: app/assets/javascripts/app/views/sla/index.jst.eco
  6781. msgid "Solution Time"
  6782. msgstr ""
  6783. #: app/assets/javascripts/app/views/translation/index.jst.eco
  6784. msgid "Some Text"
  6785. msgstr ""
  6786. #: app/assets/javascripts/app/controllers/_plugin/maintenance.coffee
  6787. msgid "Some system settings have changed, Zammad is restarting. Please wait until Zammad is back again."
  6788. msgstr ""
  6789. #: app/assets/javascripts/app/controllers/_plugin/maintenance.coffee
  6790. msgid "Some system settings have changed, please restart all Zammad processes! If you want to do this automatically, set environment variable APP_RESTART_CMD=\"/path/to/your_app_script.sh restart\"."
  6791. msgstr ""
  6792. #: app/assets/javascripts/app/controllers/password_reset_verify.coffee
  6793. msgid "Something went wrong. Please contact your administrator."
  6794. msgstr ""
  6795. #: app/frontend/shared/form/i18n/locales.ts
  6796. msgid "Sorry, not all fields are filled out correctly."
  6797. msgstr ""
  6798. #: app/assets/javascripts/app/views/cti/not_configured.jst.eco
  6799. msgid "Sorry, there is currently no CTI backend enabled."
  6800. msgstr ""
  6801. #: app/assets/javascripts/app/controllers/ticket_overview.coffee
  6802. #: app/assets/javascripts/app/models/overview.coffee
  6803. msgid "Sorting by"
  6804. msgstr ""
  6805. #: app/assets/javascripts/app/controllers/ticket_overview.coffee
  6806. #: app/assets/javascripts/app/models/overview.coffee
  6807. msgid "Sorting order"
  6808. msgstr ""
  6809. #: app/assets/javascripts/app/views/profile/notification.jst.eco
  6810. msgid "Sounds"
  6811. msgstr ""
  6812. #: app/assets/javascripts/app/controllers/_integration/ldap.coffee
  6813. #: app/assets/javascripts/app/views/translation/list.jst.eco
  6814. #: app/assets/javascripts/app/views/translation/todo.jst.eco
  6815. msgid "Source"
  6816. msgstr ""
  6817. #: app/assets/javascripts/app/controllers/_integration/ldap.coffee
  6818. msgid "Sources"
  6819. msgstr ""
  6820. #: db/seeds/settings.rb
  6821. msgid "Special character required"
  6822. msgstr ""
  6823. #: db/seeds/groups.rb
  6824. msgid "Standard Group/Pool for Tickets."
  6825. msgstr ""
  6826. #: app/assets/javascripts/app/controllers/knowledge_base/reader_list_controller.coffee
  6827. msgid "Start Editing"
  6828. msgstr ""
  6829. #: app/assets/javascripts/app/views/channel/form.jst.eco
  6830. msgid "Start modal dialog for form."
  6831. msgstr ""
  6832. #: app/assets/javascripts/app/views/integration/exchange_last_import.jst.eco
  6833. #: app/assets/javascripts/app/views/integration/ldap_last_import.jst.eco
  6834. msgid "Start new"
  6835. msgstr ""
  6836. #: public/assets/chat/views/customer_timeout.eco
  6837. #: public/assets/chat/views/waiting_list_timeout.eco
  6838. msgid "Start new conversation"
  6839. msgstr ""
  6840. #: app/assets/javascripts/app/lib/base/jquery.textmodule.js
  6841. msgid "Start typing to search for users…"
  6842. msgstr ""
  6843. #: app/assets/javascripts/app/lib/base/jquery.textmodule.js
  6844. msgid "Start typing to search in Knowledge Base…"
  6845. msgstr ""
  6846. #: app/assets/javascripts/app/views/data_privacy/tasks.jst.eco
  6847. msgid "Started"
  6848. msgstr ""
  6849. #: app/assets/javascripts/app/views/getting_started/finish.jst.eco
  6850. msgid "Starting Zammad"
  6851. msgstr ""
  6852. #: app/assets/javascripts/app/views/translation/index.jst.eco
  6853. msgid "Starting with Zammad 5.1, translations can be contributed exclusively via \"translations.zammad.org\" %l."
  6854. msgstr ""
  6855. #: app/assets/javascripts/app/controllers/_ui_element/postmaster_set.coffee
  6856. #: app/assets/javascripts/app/models/chat_sessions.coffee
  6857. #: app/assets/javascripts/app/models/data_privacy_task.coffee
  6858. #: app/assets/javascripts/app/models/ticket.coffee
  6859. #: app/assets/javascripts/app/views/agent_ticket_view/detail.jst.eco
  6860. #: app/assets/javascripts/app/views/data_privacy/tasks.jst.eco
  6861. #: app/assets/javascripts/app/views/package.jst.eco
  6862. #: app/views/mailer/ticket_create/cs.html.erb
  6863. #: app/views/mailer/ticket_create/de.html.erb
  6864. #: app/views/mailer/ticket_create/en.html.erb
  6865. #: app/views/mailer/ticket_create/es.html.erb
  6866. #: app/views/mailer/ticket_create/fr.html.erb
  6867. #: app/views/mailer/ticket_create/it.html.erb
  6868. #: app/views/mailer/ticket_create/pl.html.erb
  6869. #: app/views/mailer/ticket_create/pt-br.html.erb
  6870. #: app/views/mailer/ticket_create/ru.html.erb
  6871. #: app/views/mailer/ticket_create/zh-cn.html.erb
  6872. #: app/views/mailer/ticket_create/zh-tw.html.erb
  6873. #: app/views/slack/ticket_create/en.md.erb
  6874. #: app/views/slack/ticket_create/fr.md.erb
  6875. #: app/views/slack/ticket_create/pt-br.md.erb
  6876. #: app/views/slack/ticket_create/zh-cn.md.erb
  6877. #: app/views/slack/ticket_create/zh-tw.md.erb
  6878. #: db/seeds/object_manager_attributes.rb
  6879. #: lib/excel_sheet/ticket.rb
  6880. msgid "State"
  6881. msgstr ""
  6882. #: db/seeds/settings.rb
  6883. msgid "Stats Backend"
  6884. msgstr ""
  6885. #: app/assets/javascripts/app/views/cti/caller_log.jst.eco
  6886. #: app/assets/javascripts/app/views/integration/idoit_object_result.jst.eco
  6887. #: app/assets/javascripts/app/views/ticket_zoom/sidebar_idoit.jst.eco
  6888. #: app/assets/javascripts/app/views/widget/http_log_show.jst.eco
  6889. msgid "Status"
  6890. msgstr ""
  6891. #: app/assets/javascripts/app/views/generic/error/generic.jst.eco
  6892. #: app/assets/javascripts/app/views/generic/error/placeholder.jst.eco
  6893. msgid "Status Code"
  6894. msgstr ""
  6895. #: app/assets/javascripts/app/views/profile/calendar_subscriptions.jst.eco
  6896. msgid "Status Type"
  6897. msgstr ""
  6898. #: app/assets/javascripts/app/models/macro.coffee
  6899. #: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco
  6900. #: db/seeds/settings.rb
  6901. msgid "Stay on tab"
  6902. msgstr ""
  6903. #: app/assets/javascripts/app/models/core_workflow.coffee
  6904. msgid "Stop after match"
  6905. msgstr ""
  6906. #: app/assets/javascripts/app/controllers/_manage/system.coffee
  6907. msgid "Storage"
  6908. msgstr ""
  6909. #: db/seeds/settings.rb
  6910. msgid "Storage Mechanism"
  6911. msgstr ""
  6912. #: app/assets/javascripts/app/views/package.jst.eco
  6913. msgid "Store"
  6914. msgstr ""
  6915. #: db/seeds/settings.rb
  6916. msgid "Stores the GitHub configuration."
  6917. msgstr ""
  6918. #: db/seeds/settings.rb
  6919. msgid "Stores the GitLab configuration."
  6920. msgstr ""
  6921. #: db/seeds/object_manager_attributes.rb
  6922. msgid "Street"
  6923. msgstr ""
  6924. #: app/assets/javascripts/app/controllers/_application_controller/form.coffee
  6925. #: app/assets/javascripts/app/controllers/_ui_element/postmaster_match.coffee
  6926. #: app/assets/javascripts/app/models/ticket_article.coffee
  6927. #: app/assets/javascripts/app/views/generic/ticket_perform_action/article.jst.eco
  6928. #: app/assets/javascripts/app/views/generic/ticket_perform_action/notification.jst.eco
  6929. #: app/assets/javascripts/app/views/integration/smime_list.jst.eco
  6930. #: app/assets/javascripts/app/views/ticket_zoom/article_new.jst.eco
  6931. #: app/assets/javascripts/app/views/ticket_zoom/article_view.jst.eco
  6932. msgid "Subject"
  6933. msgstr ""
  6934. #: app/assets/javascripts/app/controllers/_application_controller/form.coffee
  6935. #: app/assets/javascripts/app/controllers/tag.coffee
  6936. #: app/assets/javascripts/app/controllers/widget/button_with_dropdown.coffee
  6937. #: app/assets/javascripts/app/views/channel/form.jst.eco
  6938. #: app/assets/javascripts/app/views/knowledge_base/vertical_form.jst.eco
  6939. #: app/assets/javascripts/app/views/password/reset.jst.eco
  6940. #: app/assets/javascripts/app/views/password/reset_change.jst.eco
  6941. #: app/assets/javascripts/app/views/profile/language.jst.eco
  6942. #: app/assets/javascripts/app/views/profile/notification.jst.eco
  6943. #: app/assets/javascripts/app/views/profile/password.jst.eco
  6944. #: app/assets/javascripts/app/views/settings/form.jst.eco
  6945. #: app/assets/javascripts/app/views/settings/item.jst.eco
  6946. #: app/assets/javascripts/app/views/settings/logo.jst.eco
  6947. #: app/assets/javascripts/app/views/settings/proxy.jst.eco
  6948. #: app/assets/javascripts/app/views/settings/storage_provider.jst.eco
  6949. #: app/assets/javascripts/app/views/settings/switch.jst.eco
  6950. #: app/assets/javascripts/app/views/settings/ticket_hook_position.jst.eco
  6951. #: app/assets/javascripts/app/views/settings/ticket_number.jst.eco
  6952. #: app/frontend/shared/form/i18n/locales.ts
  6953. msgid "Submit"
  6954. msgstr ""
  6955. #: app/assets/javascripts/app/controllers/_ui_element/_application_selector.coffee
  6956. #: app/assets/javascripts/app/views/widget/mention.jst.eco
  6957. msgid "Subscribe"
  6958. msgstr ""
  6959. #: app/assets/javascripts/app/views/generic/ical_feed.jst.eco
  6960. msgid "Subscribe to iCalendar feed"
  6961. msgstr ""
  6962. #: app/assets/javascripts/app/views/generic/ical_feed.jst.eco
  6963. msgid "Subscribe to public holidays in"
  6964. msgstr ""
  6965. #: app/assets/javascripts/app/views/profile/notification.jst.eco
  6966. msgid "Subscribed Tickets"
  6967. msgstr ""
  6968. #: app/assets/javascripts/app/views/profile/calendar_subscriptions.jst.eco
  6969. msgid "Subscription Settings"
  6970. msgstr ""
  6971. #: app/assets/javascripts/app/models/user.coffee
  6972. msgid "Summer holiday"
  6973. msgstr ""
  6974. #: app/assets/javascripts/app/controllers/_ui_element/basedate.coffee
  6975. #: app/frontend/shared/components/Form/fields/FieldDate/FieldDateTimeInput.vue
  6976. msgid "Sun"
  6977. msgstr ""
  6978. #: app/assets/javascripts/app/controllers/_ui_element/basedate.coffee
  6979. #: app/assets/javascripts/app/controllers/_ui_element/timer.coffee
  6980. #: app/assets/javascripts/app/lib/app_post/business_hours.coffee
  6981. #: app/assets/javascripts/app/views/calendar/index.jst.eco
  6982. #: app/frontend/shared/components/Form/fields/FieldDate/FieldDateTimeInput.vue
  6983. msgid "Sunday"
  6984. msgstr ""
  6985. #: db/seeds/settings.rb
  6986. msgid "Support of multilingual Knowledge Base."
  6987. msgstr ""
  6988. #: db/seeds/schedulers.rb
  6989. msgid "Sync calendars with iCal feeds."
  6990. msgstr ""
  6991. #: app/assets/javascripts/app/controllers/_manage/system.coffee
  6992. #: app/assets/javascripts/app/controllers/manage.coffee
  6993. #: db/seeds/permissions.rb
  6994. #: db/seeds/ticket_article_senders.rb
  6995. msgid "System"
  6996. msgstr ""
  6997. #: db/seeds/settings.rb
  6998. msgid "System Address Display Name"
  6999. msgstr ""
  7000. #: db/seeds/settings.rb
  7001. msgid "System Init Done"
  7002. msgstr ""
  7003. #: app/assets/javascripts/app/views/getting_started/base.jst.eco
  7004. msgid "System URL"
  7005. msgstr ""
  7006. #: app/models/knowledge_base.rb
  7007. msgid "System supports only one locale for knowledge base. Upgrade your plan to use more locales."
  7008. msgstr ""
  7009. #: db/seeds/settings.rb
  7010. msgid "SystemID"
  7011. msgstr ""
  7012. #: db/seeds/settings.rb
  7013. msgid "Tab behaviour after ticket action"
  7014. msgstr ""
  7015. #: app/assets/javascripts/app/controllers/taskbar_widget.coffee
  7016. msgid "Tab has changed, do you really want to close it?"
  7017. msgstr ""
  7018. #: app/assets/javascripts/app/controllers/_ui_element/postmaster_set.coffee
  7019. msgid "Tag"
  7020. msgstr ""
  7021. #: app/assets/javascripts/app/controllers/chat.coffee
  7022. #: app/assets/javascripts/app/controllers/tag.coffee
  7023. #: app/assets/javascripts/app/views/knowledge_base/_reader_tags.jst.eco
  7024. #: app/assets/javascripts/app/views/knowledge_base/sidebar/tags.jst.eco
  7025. #: app/assets/javascripts/app/views/popover/kb_generic.jst.eco
  7026. #: app/assets/javascripts/app/views/tag/index.jst.eco
  7027. #: app/assets/javascripts/app/views/widget/tag.jst.eco
  7028. #: app/views/knowledge_base/public/answers/show.html.erb
  7029. #: db/seeds/object_manager_attributes.rb
  7030. #: db/seeds/permissions.rb
  7031. #: lib/excel_sheet/ticket.rb
  7032. msgid "Tags"
  7033. msgstr ""
  7034. #: db/seeds/settings.rb
  7035. msgid "Take Reply-To header as sender/from of email and use the real name of origin from."
  7036. msgstr ""
  7037. #: db/seeds/settings.rb
  7038. msgid "Take Reply-To header as sender/from of email."
  7039. msgstr ""
  7040. #: app/assets/javascripts/app/views/knowledge_base/public_menu_form_item.jst.eco
  7041. #: app/assets/javascripts/app/views/translation/list.jst.eco
  7042. #: app/assets/javascripts/app/views/translation/todo.jst.eco
  7043. msgid "Target"
  7044. msgstr ""
  7045. #: app/assets/javascripts/app/controllers/_channel/telegram.coffee
  7046. #: app/assets/javascripts/app/views/telegram/index.jst.eco
  7047. msgid "Telegram"
  7048. msgstr ""
  7049. #: app/assets/javascripts/app/controllers/_channel/telegram.coffee
  7050. msgid "Telegram Account"
  7051. msgstr ""
  7052. #: app/assets/javascripts/app/controllers/agent_ticket_create/sidebar_template.coffee
  7053. msgid "Templates"
  7054. msgstr ""
  7055. #: app/assets/javascripts/app/controllers/_channel/sms.coffee
  7056. msgid "Test"
  7057. msgstr ""
  7058. #: app/assets/javascripts/app/controllers/_default_navbar.coffee
  7059. msgid "Test 1"
  7060. msgstr ""
  7061. #: app/assets/javascripts/app/controllers/_default_navbar.coffee
  7062. msgid "Test 2"
  7063. msgstr ""
  7064. #: app/assets/javascripts/app/views/settings/proxy.jst.eco
  7065. msgid "Test Connection"
  7066. msgstr ""
  7067. #: app/assets/javascripts/app/controllers/_channel/sms.coffee
  7068. msgid "Test SMS provider"
  7069. msgstr ""
  7070. #: app/assets/javascripts/app/controllers/_dashboard/first_steps.coffee
  7071. msgid "Test Ticket"
  7072. msgstr ""
  7073. #: app/assets/javascripts/app/controllers/_channel/sms.coffee
  7074. msgid "Test message from Zammad"
  7075. msgstr ""
  7076. #: app/assets/javascripts/app/views/channel/email_account_wizard.jst.eco
  7077. #: app/assets/javascripts/app/views/channel/email_notification_wizard.jst.eco
  7078. #: app/assets/javascripts/app/views/getting_started/email.jst.eco
  7079. msgid "Testing"
  7080. msgstr ""
  7081. #: app/assets/javascripts/app/controllers/_ui_element/object_manager_attribute.coffee
  7082. #: app/assets/javascripts/app/models/signature.coffee
  7083. #: app/assets/javascripts/app/models/ticket_article.coffee
  7084. #: db/seeds/object_manager_attributes.rb
  7085. msgid "Text"
  7086. msgstr ""
  7087. #: app/assets/javascripts/app/views/widget/text_module.jst.eco
  7088. #: db/seeds/permissions.rb
  7089. msgid "Text Modules"
  7090. msgstr ""
  7091. #: app/assets/javascripts/app/controllers/_plugin/keyboard_shortcuts.coffee
  7092. msgid "Text editing"
  7093. msgstr ""
  7094. #: app/assets/javascripts/app/controllers/_ui_element/object_manager_attribute.coffee
  7095. msgid "Text field"
  7096. msgstr ""
  7097. #: app/assets/javascripts/app/controllers/ticket_zoom/article_action/email_reply.coffee
  7098. #: app/assets/javascripts/app/controllers/ticket_zoom/article_action/twitter_reply.coffee
  7099. #: app/assets/javascripts/app/controllers/ticket_zoom/article_new.coffee
  7100. msgid "Text missing"
  7101. msgstr ""
  7102. #: app/assets/javascripts/app/controllers/text_module.coffee
  7103. msgid "Text module"
  7104. msgstr ""
  7105. #: app/assets/javascripts/app/controllers/text_module.coffee
  7106. msgid "Text modules"
  7107. msgstr ""
  7108. #: app/assets/javascripts/app/controllers/macro.coffee
  7109. #: app/assets/javascripts/app/controllers/text_module.coffee
  7110. msgid "Text modules are …"
  7111. msgstr ""
  7112. #: app/assets/javascripts/app/controllers/ticket_zoom/article_action/email_reply.coffee
  7113. msgid "Text needed"
  7114. msgstr ""
  7115. #: app/assets/javascripts/app/views/translation/index.jst.eco
  7116. msgid "Text with disabled inline translations looks like"
  7117. msgstr ""
  7118. #: app/assets/javascripts/app/views/translation/index.jst.eco
  7119. msgid "Text with enabled inline translations looks like"
  7120. msgstr ""
  7121. #: app/assets/javascripts/app/controllers/_ui_element/object_manager_attribute.coffee
  7122. msgid "Textarea field"
  7123. msgstr ""
  7124. #: app/assets/javascripts/app/views/channel/form.jst.eco
  7125. msgid "Thank you for your inquiry (#%s)! We'll contact you as soon as possible."
  7126. msgstr ""
  7127. #: app/assets/javascripts/app/views/signup/verify.jst.eco
  7128. msgid "Thanks for joining. Email sent to \"%s\"."
  7129. msgstr ""
  7130. #: app/controllers/user_access_token_controller.rb
  7131. msgid "The API token could not be found."
  7132. msgstr ""
  7133. #: app/assets/javascripts/app/views/knowledge_base/new_controller.coffee
  7134. msgid "The Knowledge Base could not be created."
  7135. msgstr ""
  7136. #: app/controllers/users_controller.rb
  7137. msgid "The MIME type of the full-size image is invalid."
  7138. msgstr ""
  7139. #: app/controllers/users_controller.rb
  7140. msgid "The MIME type of the resized image is invalid."
  7141. msgstr ""
  7142. #: app/assets/javascripts/app/controllers/_channel/telegram.coffee
  7143. msgid "The Telegram bot could not be saved."
  7144. msgstr ""
  7145. #: lib/telegram.rb
  7146. msgid "The Telegram file is larger than the allowed 20 MB."
  7147. msgstr ""
  7148. #: app/assets/javascripts/app/views/getting_started/base.jst.eco
  7149. msgid "The URL to this installation of Zammad."
  7150. msgstr ""
  7151. #: app/controllers/reports_controller.rb
  7152. msgid "The active reporting profile could not be found."
  7153. msgstr ""
  7154. #: app/controllers/ticket_articles_controller.rb
  7155. msgid "The article does not belong to the specified ticket."
  7156. msgstr ""
  7157. #: app/assets/javascripts/app/views/getting_started/auto_wizard_enabled.jst.eco
  7158. msgid "The auto wizard is enabled. Please use the provided auto wizard url."
  7159. msgstr ""
  7160. #: app/assets/javascripts/app/views/channel/chat.jst.eco
  7161. msgid "The browser is outdated. It does not support WebSocket - the technology we use for the chat."
  7162. msgstr ""
  7163. #: app/models/smime_certificate.rb
  7164. msgid "The certificate for this private key could not be found."
  7165. msgstr ""
  7166. #: app/assets/javascripts/app/views/integration/exchange_certificate_issue.jst.eco
  7167. msgid "The certificate of the domain |%s| could not be verified. This may allow hackers to steal your credentials. If you are sure that you are using a self-signed certificate, you can press \"Proceed\". Otherwise, please \"Cancel\"."
  7168. msgstr ""
  7169. #: app/assets/javascripts/app/controllers/_channel/email.coffee
  7170. #: app/assets/javascripts/app/controllers/_channel/facebook.coffee
  7171. #: app/assets/javascripts/app/controllers/_channel/google.coffee
  7172. #: app/assets/javascripts/app/controllers/_channel/microsoft365.coffee
  7173. #: app/assets/javascripts/app/controllers/_channel/telegram.coffee
  7174. #: app/assets/javascripts/app/controllers/_channel/twitter.coffee
  7175. #: app/assets/javascripts/app/controllers/knowledge_base/content_can_be_published_dialog.coffee
  7176. #: app/assets/javascripts/app/controllers/knowledge_base/editor_coordinator.coffee
  7177. #: app/assets/javascripts/app/controllers/knowledge_base/public_menu_form.coffee
  7178. #: app/assets/javascripts/app/controllers/knowledge_base/sidebar/attachments.coffee
  7179. msgid "The changes could not be saved."
  7180. msgstr ""
  7181. #: app/assets/javascripts/app/views/channel/chat.jst.eco
  7182. msgid "The chat is turned off."
  7183. msgstr ""
  7184. #: app/assets/javascripts/app/views/channel/chat.jst.eco
  7185. msgid "The chat will show up once the connection to the server got established and if there is an operator online to chat with."
  7186. msgstr ""
  7187. #: app/assets/javascripts/app/controllers/_plugin/maintenance.coffee
  7188. msgid "The configuration of Zammad has changed, please reload your browser."
  7189. msgstr ""
  7190. #: app/frontend/shared/composables/useAppMaintenanceCheck.ts
  7191. msgid "The configuration of Zammad has changed. Please reload at your earliest."
  7192. msgstr ""
  7193. #: app/frontend/shared/stores/application.ts
  7194. msgid "The connection to the server was lost."
  7195. msgstr ""
  7196. #: app/assets/javascripts/app/views/generic/object_import/index.jst.eco
  7197. msgid "The data must be in the comma separated values (CSV) format and saved as UTF-8. You can import a CSV file or paste the data directly into the text area."
  7198. msgstr ""
  7199. #: app/assets/javascripts/app/models/knowledge_base.coffee
  7200. msgid "The default URL for your knowledge base is e.g. example.com or example.com/help. To serve it from a custom URL instead, enter the destination below (e.g., \"/support\", \"example.com\", or \"example.com/support\"). Then, follow the directions under \"Web Server Configuration\" to complete the process."
  7201. msgstr ""
  7202. #: app/assets/javascripts/app/views/channel/chat.jst.eco
  7203. msgid "The default font size is 12px."
  7204. msgstr ""
  7205. #: db/seeds/settings.rb
  7206. msgid "The divider between TicketHook and ticket number. E. g. ': '."
  7207. msgstr ""
  7208. #: app/assets/javascripts/app/controllers/_channel/facebook.coffee
  7209. #: app/assets/javascripts/app/controllers/_channel/google.coffee
  7210. #: app/assets/javascripts/app/controllers/_channel/microsoft365.coffee
  7211. #: app/assets/javascripts/app/controllers/_channel/twitter.coffee
  7212. msgid "The entry could not be created."
  7213. msgstr ""
  7214. #: lib/telegram.rb
  7215. msgid "The file could not be retrieved from the bot."
  7216. msgstr ""
  7217. #: app/assets/javascripts/app/lib/app_post/html5_upload.coffee
  7218. msgid "The file could not be uploaded."
  7219. msgstr ""
  7220. #: app/controllers/ticket_articles_controller.rb
  7221. msgid "The file does not belong to the specified article."
  7222. msgstr ""
  7223. #: app/assets/javascripts/app/views/generic/object_import/imported.jst.eco
  7224. msgid "The following changes have been made:"
  7225. msgstr ""
  7226. #: app/assets/javascripts/app/views/generic/object_import/import_try.jst.eco
  7227. msgid "The following changes will be made:"
  7228. msgstr ""
  7229. #: app/assets/javascripts/app/controllers/_application_controller/_modal.coffee
  7230. msgid "The form content has been changed. Do you want to close it and lose your changes?"
  7231. msgstr ""
  7232. #: app/assets/javascripts/app/views/settings/ticket_hook_position.jst.eco
  7233. msgid "The format of the subject."
  7234. msgstr ""
  7235. #: app/controllers/users_controller.rb
  7236. msgid "The full-size image is invalid."
  7237. msgstr ""
  7238. #: db/seeds/settings.rb
  7239. msgid "The identifier for a ticket, e.g. Ticket#, Call#, MyTicket#. The default is Ticket#."
  7240. msgstr ""
  7241. #: app/assets/javascripts/app/controllers/_integration/smime.coffee
  7242. #: app/assets/javascripts/app/controllers/widget/import.coffee
  7243. #: app/assets/javascripts/app/controllers/widget/import_try_result.coffee
  7244. msgid "The import failed."
  7245. msgstr ""
  7246. #: app/assets/javascripts/app/views/generic/object_import/imported.jst.eco
  7247. msgid "The import was successful."
  7248. msgstr ""
  7249. #: app/assets/javascripts/app/views/package.jst.eco
  7250. msgid "The installation of packages comes with security implications, because arbitrary code will be executed in the context of the Zammad application."
  7251. msgstr ""
  7252. #: lib/search_index_backend.rb
  7253. msgid "The installed attachment plugin could not handle the request payload. Ensure that the correct attachment plugin is installed (ingest-attachment)."
  7254. msgstr ""
  7255. #: app/assets/javascripts/app/controllers/ticket_zoom/sidebar_git_issue.coffee
  7256. msgid "The issue could not be saved."
  7257. msgstr ""
  7258. #: app/assets/javascripts/app/controllers/_application_controller/_modal_generic_new.coffee
  7259. #: app/assets/javascripts/app/controllers/_channel/_email_signature.coffee
  7260. #: app/assets/javascripts/app/controllers/agent_ticket_create.coffee
  7261. #: app/assets/javascripts/app/controllers/customer_ticket_create.coffee
  7262. #: app/assets/javascripts/app/controllers/data_privacy.coffee
  7263. #: app/assets/javascripts/app/controllers/object_manager.coffee
  7264. #: app/assets/javascripts/app/lib/app_post/user_organization_autocompletion.coffee
  7265. msgid "The object could not be created."
  7266. msgstr ""
  7267. #: app/controllers/links_controller.rb
  7268. msgid "The object could not be found."
  7269. msgstr ""
  7270. #: app/assets/javascripts/app/controllers/_application_controller/_modal_generic_edit.coffee
  7271. #: app/assets/javascripts/app/controllers/_channel/sms.coffee
  7272. #: app/assets/javascripts/app/controllers/_settings/area_switch.coffee
  7273. #: app/assets/javascripts/app/controllers/_settings/area_ticket_number.coffee
  7274. #: app/assets/javascripts/app/controllers/_settings/form.coffee
  7275. #: app/assets/javascripts/app/controllers/object_manager.coffee
  7276. #: app/assets/javascripts/app/controllers/ticket_zoom/sidebar_idoit.coffee
  7277. #: app/assets/javascripts/app/models/setting.coffee
  7278. msgid "The object could not be updated."
  7279. msgstr ""
  7280. #: app/assets/javascripts/app/controllers/knowledge_base/agent_controller.coffee
  7281. msgid "The page is not available anymore"
  7282. msgstr ""
  7283. #: app/assets/javascripts/app/controllers/knowledge_base/agent_controller.coffee
  7284. msgid "The page was not found"
  7285. msgstr ""
  7286. #: app/views/knowledge_base/public/not_found.html.erb
  7287. msgid "The page you were looking for does not exist."
  7288. msgstr ""
  7289. #: app/controllers/mentions_controller.rb
  7290. msgid "The parameter 'mentionable_type' is invalid."
  7291. msgstr ""
  7292. #: app/assets/javascripts/app/controllers/_profile/password.coffee
  7293. #: app/assets/javascripts/app/controllers/password_reset_verify.coffee
  7294. msgid "The password could not be set. Please contact your administrator."
  7295. msgstr ""
  7296. #: app/controllers/ticket_articles_controller.rb
  7297. msgid "The preview cannot be generated. The format is corrupted or not supported."
  7298. msgstr ""
  7299. #: app/controllers/import_freshdesk_controller.rb
  7300. #: app/controllers/import_kayako_controller.rb
  7301. #: app/controllers/import_otrs_controller.rb
  7302. #: app/controllers/import_zendesk_controller.rb
  7303. msgid "The provided URL is invalid."
  7304. msgstr ""
  7305. #: app/controllers/import_freshdesk_controller.rb
  7306. #: app/controllers/import_kayako_controller.rb
  7307. #: app/controllers/import_zendesk_controller.rb
  7308. msgid "The provided credentials are invalid."
  7309. msgstr ""
  7310. #: app/models/webhook.rb
  7311. msgid "The provided endpoint is invalid, no hostname was specified."
  7312. msgstr ""
  7313. #: app/models/webhook.rb
  7314. msgid "The provided endpoint is invalid, no http or https protocol was specified."
  7315. msgstr ""
  7316. #: app/models/webhook.rb
  7317. msgid "The provided endpoint is invalid."
  7318. msgstr ""
  7319. #: app/models/postmaster_filter.rb
  7320. msgid "The provided match operator is missing or invalid."
  7321. msgstr ""
  7322. #: app/controllers/application_controller/authenticates.rb
  7323. #: app/controllers/integration/check_mk_controller.rb
  7324. #: app/controllers/users_controller.rb
  7325. msgid "The provided token is invalid."
  7326. msgstr ""
  7327. #: lib/static_assets.rb
  7328. msgid "The raw logo could not be read."
  7329. msgstr ""
  7330. #: app/assets/javascripts/app/controllers/report.coffee
  7331. msgid "The report could not be generated"
  7332. msgstr ""
  7333. #: app/assets/javascripts/app/views/knowledge_base/delete.coffee
  7334. msgid "The request could not be processed."
  7335. msgstr ""
  7336. #: app/controllers/channels_twitter_controller.rb
  7337. msgid "The required 'ExternalCredential' 'twitter' could not be found."
  7338. msgstr ""
  7339. #: lib/idoit.rb
  7340. msgid "The required field 'api_token' is missing from the config."
  7341. msgstr ""
  7342. #: lib/idoit.rb
  7343. msgid "The required field 'endpoint' is missing from the config."
  7344. msgstr ""
  7345. #: app/models/postmaster_filter.rb
  7346. msgid "The required match value is missing."
  7347. msgstr ""
  7348. #: lib/external_credential/facebook.rb
  7349. msgid "The required parameter 'application_id' is missing."
  7350. msgstr ""
  7351. #: lib/external_credential/facebook.rb
  7352. msgid "The required parameter 'application_secret' is missing."
  7353. msgstr ""
  7354. #: app/controllers/channels_sms_controller.rb
  7355. msgid "The required parameter 'area' is missing."
  7356. msgstr ""
  7357. #: lib/external_credential/google.rb
  7358. #: lib/external_credential/microsoft365.rb
  7359. msgid "The required parameter 'client_id' is missing."
  7360. msgstr ""
  7361. #: lib/external_credential/google.rb
  7362. #: lib/external_credential/microsoft365.rb
  7363. msgid "The required parameter 'client_secret' is missing."
  7364. msgstr ""
  7365. #: lib/external_credential/twitter.rb
  7366. msgid "The required parameter 'consumer_key' is missing."
  7367. msgstr ""
  7368. #: lib/external_credential/twitter.rb
  7369. msgid "The required parameter 'consumer_secret' is missing."
  7370. msgstr ""
  7371. #: app/controllers/channels_twitter_controller.rb
  7372. msgid "The required parameter 'crc_token' is missing from the Twitter verify payload!"
  7373. msgstr ""
  7374. #: app/models/ticket.rb
  7375. msgid "The required parameter 'current_user_id' is missing."
  7376. msgstr ""
  7377. #: app/controllers/channels_twitter_controller.rb
  7378. msgid "The required parameter 'for_user_id' is missing."
  7379. msgstr ""
  7380. #: lib/telegram.rb
  7381. msgid "The required parameter 'group_id' is invalid."
  7382. msgstr ""
  7383. #: lib/telegram.rb
  7384. msgid "The required parameter 'group_id' is missing."
  7385. msgstr ""
  7386. #: app/controllers/users_controller.rb
  7387. msgid "The required parameter 'id' is missing."
  7388. msgstr ""
  7389. #: app/assets/javascripts/app/controllers/ticket_link_add.coffee
  7390. msgid "The required parameter 'link_type' is missing."
  7391. msgstr ""
  7392. #: app/models/text_module.rb
  7393. msgid "The required parameter 'locale' is missing."
  7394. msgstr ""
  7395. #: lib/external_credential/twitter.rb
  7396. msgid "The required parameter 'oauth_token' is missing."
  7397. msgstr ""
  7398. #: lib/external_credential/twitter.rb
  7399. msgid "The required parameter 'oauth_token_secret' is missing."
  7400. msgstr ""
  7401. #: app/controllers/channels_sms_controller.rb
  7402. msgid "The required parameter 'options.adapter' is missing."
  7403. msgstr ""
  7404. #: app/controllers/channels_sms_controller.rb
  7405. msgid "The required parameter 'params' is missing."
  7406. msgstr ""
  7407. #: app/models/core_workflow/result.rb
  7408. msgid "The required parameter 'payload->class_name' is missing."
  7409. msgstr ""
  7410. #: app/models/core_workflow/result.rb
  7411. msgid "The required parameter 'payload->screen' is missing."
  7412. msgstr ""
  7413. #: app/assets/javascripts/app/controllers/_profile/token_access.coffee
  7414. msgid "The required parameter 'permission' is missing."
  7415. msgstr ""
  7416. #: app/controllers/users_controller.rb
  7417. msgid "The required parameter 'signup' is missing."
  7418. msgstr ""
  7419. #: app/assets/javascripts/app/controllers/ticket_link_add.coffee
  7420. msgid "The required parameter 'ticket_number' is missing."
  7421. msgstr ""
  7422. #: app/controllers/channels_twitter_controller.rb
  7423. msgid "The required value 'external_credential[:consumer_secret]' could not be found in the cache."
  7424. msgstr ""
  7425. #: app/policies/ticket_policy.rb
  7426. msgid "The required value 'group_id' is missing."
  7427. msgstr ""
  7428. #: app/controllers/channels_twitter_controller.rb
  7429. msgid "The required value external_credential could not be found in the cache."
  7430. msgstr ""
  7431. #: app/controllers/users_controller.rb
  7432. msgid "The resized image is invalid."
  7433. msgstr ""
  7434. #: app/assets/javascripts/app/controllers/ticket_zoom/article_view.coffee
  7435. msgid "The retried security process failed!"
  7436. msgstr ""
  7437. #: app/assets/javascripts/app/controllers/_channel/email.coffee
  7438. #: app/assets/javascripts/app/controllers/getting_started/channel_email.coffee
  7439. msgid "The server settings could not be automatically detected. Please configure them manually."
  7440. msgstr ""
  7441. #: app/frontend/apps/mobile/modules/login/views/Login.vue
  7442. msgid "The session is no longer valid. Please log in again."
  7443. msgstr ""
  7444. #: app/models/store/file.rb
  7445. msgid "The setting 'storage_provider' was not configured."
  7446. msgstr ""
  7447. #: app/models/ticket/number.rb
  7448. msgid "The setting 'ticket_number' was not configured."
  7449. msgstr ""
  7450. #: app/assets/javascripts/app/controllers/getting_started/admin.coffee
  7451. msgid "The sign-in failed. Please contact the Support team."
  7452. msgstr ""
  7453. #: app/assets/javascripts/app/controllers/ticket_zoom/article_view.coffee
  7454. msgid "The signature was successfully verified."
  7455. msgstr ""
  7456. #: app/controllers/tickets_controller.rb
  7457. msgid "The source ticket could not be found."
  7458. msgstr ""
  7459. #: app/controllers/tickets_controller.rb
  7460. msgid "The target ticket number could not be found."
  7461. msgstr ""
  7462. #: app/assets/javascripts/app/views/generic/object_import/import_try.jst.eco
  7463. msgid "The test run was successful."
  7464. msgstr ""
  7465. #: db/seeds/settings.rb
  7466. msgid "The text at the beginning of the subject in an email forward, e. g. FWD."
  7467. msgstr ""
  7468. #: db/seeds/settings.rb
  7469. msgid "The text at the beginning of the subject in an email reply, e.g. RE, AW, or AS."
  7470. msgstr ""
  7471. #: app/assets/javascripts/app/controllers/agent_ticket_merge.coffee
  7472. msgid "The tickets could not be merged."
  7473. msgstr ""
  7474. #: app/controllers/getting_started_controller.rb
  7475. #: app/controllers/settings_controller.rb
  7476. msgid "The uploaded image could not be processed."
  7477. msgstr ""
  7478. #: lib/external_credential/microsoft365.rb
  7479. msgid "The user's 'preferred_username' could not be extracted from 'id_token'."
  7480. msgstr ""
  7481. #: app/assets/javascripts/app/controllers/customer_ticket_create.coffee
  7482. #: app/assets/javascripts/app/views/customer_not_ticket_exists.jst.eco
  7483. msgid "The way to communicate with us is this thing called \"ticket\"."
  7484. msgstr ""
  7485. #: lib/telegram.rb
  7486. msgid "The webhook could not be saved by Telegram, seems to be an invalid URL."
  7487. msgstr ""
  7488. #: app/assets/javascripts/app/controllers/_manage/knowledge_base.coffee
  7489. msgid "Theme"
  7490. msgstr ""
  7491. #: app/assets/javascripts/app/views/import/zendesk.jst.eco
  7492. msgid "There are more than 1000 tickets in the Zendesk system. Due to API rate limit restrictions we can't get the exact number of tickets yet and have to fetch them in batches of 1000. This might take some time, better grab a cup of coffee. The total number of tickets gets updated as soon as the currently known number is surpassed."
  7493. msgstr ""
  7494. #: app/assets/javascripts/app/views/channel/chat.jst.eco
  7495. msgid "There are several possible reasons why the chat won't show up:"
  7496. msgstr ""
  7497. #: app/assets/javascripts/app/views/channel/chat.jst.eco
  7498. msgid "There are too many people in the chat queue."
  7499. msgstr ""
  7500. #: app/assets/javascripts/app/views/ticket_shared_draft_overwrite_modal.coffee
  7501. msgid "There is an existing draft. Do you want to overwrite it?"
  7502. msgstr ""
  7503. #: app/assets/javascripts/app/views/ticket_shared_draft_modal.coffee
  7504. msgid "There is existing content. Do you want to overwrite it?"
  7505. msgstr ""
  7506. #: app/assets/javascripts/app/views/channel/chat.jst.eco
  7507. msgid "There is no agent online."
  7508. msgstr ""
  7509. #: app/assets/javascripts/app/views/navigation/no_result.jst.eco
  7510. msgid "There is no match for your search."
  7511. msgstr ""
  7512. #: app/assets/javascripts/app/views/data_privacy/preview.jst.eco
  7513. msgid "There is no rollback of this deletion possible. If you are sure that you wish to proceed, please type \"%s\" into the input."
  7514. msgstr ""
  7515. #: app/assets/javascripts/app/controllers/knowledge_base/agent_controller.coffee
  7516. msgid "There was no Knowledge Base created."
  7517. msgstr ""
  7518. #: app/assets/javascripts/app/controllers/_manage/security.coffee
  7519. msgid "Third-party Applications"
  7520. msgstr ""
  7521. #: lib/telegram.rb
  7522. msgid "This bot already exists."
  7523. msgstr ""
  7524. #: app/assets/javascripts/app/controllers/knowledge_base/reader_list_controller.coffee
  7525. msgid "This category is empty"
  7526. msgstr ""
  7527. #: app/assets/javascripts/app/controllers/_channel/chat.coffee
  7528. msgid "This class gets added to the button on initialization and will be removed once the chat connection is established."
  7529. msgstr ""
  7530. #: app/assets/javascripts/app/controllers/_ui_element/holiday_selector.coffee
  7531. msgid "This entry already exists!"
  7532. msgstr ""
  7533. #: app/frontend/shared/form/i18n/locales.ts
  7534. msgid "This field can only contain alphabetical characters."
  7535. msgstr ""
  7536. #: app/frontend/shared/form/i18n/locales.ts
  7537. msgid "This field can only contain letters and numbers."
  7538. msgstr ""
  7539. #: app/frontend/shared/form/i18n/locales.ts
  7540. msgid "This field can only contain letters and spaces."
  7541. msgstr ""
  7542. #: app/frontend/shared/form/i18n/locales.ts
  7543. msgid "This field can't contain the value \"%s\"."
  7544. msgstr ""
  7545. #: app/frontend/shared/form/i18n/locales.ts
  7546. msgid "This field can't have less than %s entries."
  7547. msgstr ""
  7548. #: app/frontend/shared/form/i18n/locales.ts
  7549. msgid "This field can't have more than %s entries."
  7550. msgstr ""
  7551. #: app/frontend/shared/form/i18n/locales.ts
  7552. msgid "This field doesn't contain an allowed value."
  7553. msgstr ""
  7554. #: app/frontend/shared/form/i18n/locales.ts
  7555. msgid "This field doesn't correspond to the expected value."
  7556. msgstr ""
  7557. #: app/frontend/shared/form/i18n/locales.ts
  7558. msgid "This field doesn't end with \"%s\"."
  7559. msgstr ""
  7560. #: app/frontend/shared/form/i18n/locales.ts
  7561. msgid "This field doesn't start with \"%s\"."
  7562. msgstr ""
  7563. #: app/frontend/shared/form/i18n/locales.ts
  7564. msgid "This field is required."
  7565. msgstr ""
  7566. #: app/frontend/shared/form/i18n/locales.ts
  7567. msgid "This field isn't a valid date, please use the format \"%s\"."
  7568. msgstr ""
  7569. #: app/frontend/shared/form/i18n/locales.ts
  7570. msgid "This field must be of the type \"%s\"."
  7571. msgstr ""
  7572. #: app/frontend/shared/form/i18n/locales.ts
  7573. msgid "This field must contain a number."
  7574. msgstr ""
  7575. #: app/frontend/shared/form/i18n/locales.ts
  7576. msgid "This field must contain at least %s characters."
  7577. msgstr ""
  7578. #: app/frontend/shared/form/i18n/locales.ts
  7579. msgid "This field must contain at least one character."
  7580. msgstr ""
  7581. #: app/frontend/shared/form/i18n/locales.ts
  7582. msgid "This field must contain between %s and %s characters."
  7583. msgstr ""
  7584. #: app/frontend/shared/form/i18n/locales.ts
  7585. msgid "This field must have a value that is after %s."
  7586. msgstr ""
  7587. #: app/frontend/shared/form/i18n/locales.ts
  7588. msgid "This field must have a value that is at least %s."
  7589. msgstr ""
  7590. #: app/frontend/shared/form/i18n/locales.ts
  7591. msgid "This field must have a value that is at most %s."
  7592. msgstr ""
  7593. #: app/frontend/shared/form/i18n/locales.ts
  7594. msgid "This field must have a value that is before %s."
  7595. msgstr ""
  7596. #: app/frontend/shared/form/i18n/locales.ts
  7597. msgid "This field must have a value that is between %s and %s."
  7598. msgstr ""
  7599. #: app/frontend/shared/form/i18n/locales.ts
  7600. msgid "This field must have a value that is in the future."
  7601. msgstr ""
  7602. #: app/frontend/shared/form/i18n/locales.ts
  7603. msgid "This field must have a value that is in the past."
  7604. msgstr ""
  7605. #: app/frontend/shared/form/i18n/locales.ts
  7606. msgid "This field must not contain more than %s characters."
  7607. msgstr ""
  7608. #: app/frontend/shared/form/i18n/locales.ts
  7609. msgid "This field was configured incorrectly and can't be submitted."
  7610. msgstr ""
  7611. #: app/assets/javascripts/app/views/version.jst.eco
  7612. msgid "This is Zammad version %s"
  7613. msgstr ""
  7614. #: db/seeds/settings.rb
  7615. msgid "This is a default maintenance message. Click here to change."
  7616. msgstr ""
  7617. #: app/models/channel/email_parser.rb
  7618. msgid "This message cannot be displayed because it contains over 5,000 links. Download the raw message below and open it via an Email client if you still wish to view it."
  7619. msgstr ""
  7620. #: lib/html_sanitizer.rb
  7621. msgid "This message cannot be displayed due to HTML processing issues. Download the raw message below and open it via an Email client if you still wish to view it."
  7622. msgstr ""
  7623. #: app/assets/javascripts/app/views/object_manager/index.jst.eco
  7624. msgid "This might take some time during which the system can't be used."
  7625. msgstr ""
  7626. #: app/views/knowledge_base/public/_top_banner.html.erb
  7627. msgid "This page is invisible to the public."
  7628. msgstr ""
  7629. #: app/models/knowledge_base/permission.rb
  7630. msgid "This permission level is not available based on the current roles permissions."
  7631. msgstr ""
  7632. #: app/assets/javascripts/app/controllers/_integration/github.coffee
  7633. #: app/assets/javascripts/app/controllers/_integration/gitlab.coffee
  7634. #: app/assets/javascripts/app/controllers/_integration/idoit.coffee
  7635. msgid "This service allows you to connect %s with %s."
  7636. msgstr ""
  7637. #: app/assets/javascripts/app/controllers/_integration/exchange.coffee
  7638. msgid "This service enables Zammad to connect with your Exchange server."
  7639. msgstr ""
  7640. #: app/assets/javascripts/app/controllers/_integration/check_mk.coffee
  7641. msgid "This service receives HTTP requests or emails from %s and creates tickets with host and service."
  7642. msgstr ""
  7643. #: app/assets/javascripts/app/controllers/_integration/icinga.coffee
  7644. #: app/assets/javascripts/app/controllers/_integration/monit.coffee
  7645. #: app/assets/javascripts/app/controllers/_integration/nagios.coffee
  7646. msgid "This service receives emails from %s and creates tickets with host and service."
  7647. msgstr ""
  7648. #: app/assets/javascripts/app/controllers/_integration/slack.coffee
  7649. msgid "This service sends notifications to your %s channel."
  7650. msgstr ""
  7651. #: app/assets/javascripts/app/controllers/_integration/cti.coffee
  7652. #: app/assets/javascripts/app/controllers/_integration/placetel.coffee
  7653. #: app/assets/javascripts/app/controllers/_integration/sipgate_io.coffee
  7654. msgid "This service shows you contacts of incoming calls and a caller list in realtime."
  7655. msgstr ""
  7656. #: app/assets/javascripts/app/models/group.coffee
  7657. msgid "This signature is inactive, it won't be included in the reply. Change state <a href=\"#channels/email\">here</a>"
  7658. msgstr ""
  7659. #: app/assets/javascripts/app/views/widget/mention.jst.eco
  7660. msgid "This user has no access and will not receive notifications."
  7661. msgstr ""
  7662. #: app/assets/javascripts/app/controllers/user.coffee
  7663. msgid "This user is currently blocked because of too many failed login attempts."
  7664. msgstr ""
  7665. #: app/assets/javascripts/app/controllers/_ui_element/basedate.coffee
  7666. #: app/frontend/shared/components/Form/fields/FieldDate/FieldDateTimeInput.vue
  7667. msgid "Thu"
  7668. msgstr ""
  7669. #: app/assets/javascripts/app/controllers/_ui_element/basedate.coffee
  7670. #: app/assets/javascripts/app/controllers/_ui_element/timer.coffee
  7671. #: app/assets/javascripts/app/lib/app_post/business_hours.coffee
  7672. #: app/assets/javascripts/app/views/calendar/index.jst.eco
  7673. #: app/frontend/shared/components/Form/fields/FieldDate/FieldDateTimeInput.vue
  7674. msgid "Thursday"
  7675. msgstr ""
  7676. #: app/assets/javascripts/app/controllers/_manage/ticket.coffee
  7677. #: app/assets/javascripts/app/controllers/_ui_element/_application_selector.coffee
  7678. #: app/assets/javascripts/app/controllers/_ui_element/core_workflow_condition.coffee
  7679. #: app/assets/javascripts/app/controllers/_ui_element/ticket_perform_action.coffee
  7680. #: app/assets/javascripts/app/controllers/ticket_zoom/sidebar_ticket.coffee
  7681. #: app/assets/javascripts/app/models/signature.coffee
  7682. #: app/assets/javascripts/app/models/text_module.coffee
  7683. #: app/assets/javascripts/app/views/time_accounting/index.jst.eco
  7684. #: db/seeds/permissions.rb
  7685. msgid "Ticket"
  7686. msgstr ""
  7687. #: app/assets/javascripts/app/controllers/agent_ticket_create.coffee
  7688. msgid "Ticket %s created!"
  7689. msgstr ""
  7690. #: app/assets/javascripts/app/controllers/agent_ticket_merge.coffee
  7691. msgid "Ticket %s merged."
  7692. msgstr ""
  7693. #: app/models/report.rb
  7694. msgid "Ticket Count"
  7695. msgstr ""
  7696. #: db/seeds/settings.rb
  7697. msgid "Ticket Hook"
  7698. msgstr ""
  7699. #: db/seeds/settings.rb
  7700. msgid "Ticket Hook Divider"
  7701. msgstr ""
  7702. #: db/seeds/settings.rb
  7703. msgid "Ticket Hook Position"
  7704. msgstr ""
  7705. #: db/seeds/permissions.rb
  7706. msgid "Ticket Interface"
  7707. msgstr ""
  7708. #: db/seeds/settings.rb
  7709. msgid "Ticket Last Contact Behaviour"
  7710. msgstr ""
  7711. #: db/seeds/settings.rb
  7712. msgid "Ticket Number Format"
  7713. msgstr ""
  7714. #: db/seeds/settings.rb
  7715. msgid "Ticket Number Increment"
  7716. msgstr ""
  7717. #: db/seeds/settings.rb
  7718. msgid "Ticket Number Increment Date"
  7719. msgstr ""
  7720. #: db/seeds/settings.rb
  7721. msgid "Ticket Number ignore system_id"
  7722. msgstr ""
  7723. #: app/frontend/apps/mobile/modules/home/routes.ts
  7724. #: app/frontend/apps/mobile/modules/home/views/FavoriteTicketOverviewsEdit.vue
  7725. #: app/frontend/apps/mobile/modules/home/views/Home.vue
  7726. msgid "Ticket Overview"
  7727. msgstr ""
  7728. #: app/frontend/apps/mobile/modules/home/views/FavoriteTicketOverviewsEdit.vue
  7729. msgid "Ticket Overview settings are saved"
  7730. msgstr ""
  7731. #: app/frontend/apps/mobile/modules/home/views/Home.vue
  7732. msgid "Ticket Overviews"
  7733. msgstr ""
  7734. #: app/assets/javascripts/app/models/sla.coffee
  7735. msgid "Ticket Selector"
  7736. msgstr ""
  7737. #: db/seeds/settings.rb
  7738. msgid "Ticket Subject Forward"
  7739. msgstr ""
  7740. #: db/seeds/settings.rb
  7741. msgid "Ticket Subject Reply"
  7742. msgstr ""
  7743. #: db/seeds/settings.rb
  7744. msgid "Ticket Subject Size"
  7745. msgstr ""
  7746. #: app/assets/javascripts/app/views/profile/calendar_subscriptions.jst.eco
  7747. msgid "Ticket Subscriptions"
  7748. msgstr ""
  7749. #: app/assets/javascripts/app/controllers/_profile/notification.coffee
  7750. msgid "Ticket escalation"
  7751. msgstr ""
  7752. #: app/assets/javascripts/app/lib/mixins/ticket_mass_updatable.coffee
  7753. msgid "Ticket failed to save: %s"
  7754. msgstr ""
  7755. #: app/frontend/apps/mobile/modules/account/views/AccountOverview.vue
  7756. msgid "Ticket notifications"
  7757. msgstr ""
  7758. #: app/assets/javascripts/app/controllers/_profile/notification.coffee
  7759. msgid "Ticket reminder reached"
  7760. msgstr ""
  7761. #: app/assets/javascripts/app/controllers/_profile/notification.coffee
  7762. msgid "Ticket update"
  7763. msgstr ""
  7764. #: app/assets/javascripts/app/models/ticket.coffee
  7765. msgid "Ticket |%s| has escalated!"
  7766. msgstr ""
  7767. #: app/assets/javascripts/app/models/ticket.coffee
  7768. msgid "Ticket |%s| was merged into another ticket"
  7769. msgstr ""
  7770. #: app/assets/javascripts/app/models/ticket.coffee
  7771. msgid "Ticket |%s| will escalate soon!"
  7772. msgstr ""
  7773. #: app/assets/javascripts/app/views/time_accounting/by_activity.jst.eco
  7774. #: app/assets/javascripts/app/views/time_accounting/by_ticket.jst.eco
  7775. #: app/controllers/time_accountings_controller.rb
  7776. msgid "Ticket#"
  7777. msgstr ""
  7778. #: app/assets/javascripts/app/models/ticket_article.coffee
  7779. msgid "TicketID"
  7780. msgstr ""
  7781. #: app/assets/javascripts/app/controllers/_plugin/keyboard_shortcuts.coffee
  7782. #: app/assets/javascripts/app/controllers/widget/user.coffee
  7783. #: app/assets/javascripts/app/views/import/freshdesk.jst.eco
  7784. #: app/assets/javascripts/app/views/import/kayako.jst.eco
  7785. #: app/assets/javascripts/app/views/import/otrs.jst.eco
  7786. #: app/assets/javascripts/app/views/import/zendesk.jst.eco
  7787. #: app/frontend/apps/mobile/modules/search/plugins/ticket.ts
  7788. #: app/frontend/apps/mobile/modules/ticket/routes.ts
  7789. #: app/frontend/apps/mobile/modules/ticket/views/TicketOverview.vue
  7790. msgid "Tickets"
  7791. msgstr ""
  7792. #: app/assets/javascripts/app/views/settings/ticket_auto_assignment.jst.eco
  7793. msgid "Tickets are only assigned automatically if they do not already have an owner."
  7794. msgstr ""
  7795. #: app/assets/javascripts/app/views/dashboard/stats/ticket_load_measure.jst.eco
  7796. msgid "Tickets assigned to me: %s of %s"
  7797. msgstr ""
  7798. #: app/controllers/ticket_articles_controller.rb
  7799. #: app/controllers/tickets_controller.rb
  7800. msgid "Tickets can only be imported if system is in import mode."
  7801. msgstr ""
  7802. #: app/assets/javascripts/app/views/widget/ticket_stats.jst.eco
  7803. msgid "Tickets of Organization"
  7804. msgstr ""
  7805. #: app/assets/javascripts/app/views/widget/ticket_stats.jst.eco
  7806. msgid "Tickets of User"
  7807. msgstr ""
  7808. #: app/assets/javascripts/app/views/generic/calender_preview.jst.eco
  7809. #: app/assets/javascripts/app/views/profile/out_of_office.jst.eco
  7810. msgid "Till"
  7811. msgstr ""
  7812. #: app/assets/javascripts/app/views/cti/caller_log.jst.eco
  7813. #: app/assets/javascripts/app/views/generic/sla_times.jst.eco
  7814. msgid "Time"
  7815. msgstr ""
  7816. #: app/assets/javascripts/app/controllers/ticket_zoom/time_accounting.coffee
  7817. #: app/assets/javascripts/app/controllers/time_accounting.coffee
  7818. #: app/assets/javascripts/app/views/time_accounting/index.jst.eco
  7819. #: db/seeds/permissions.rb
  7820. #: db/seeds/settings.rb
  7821. msgid "Time Accounting"
  7822. msgstr ""
  7823. #: db/seeds/settings.rb
  7824. msgid "Time Accounting Selector"
  7825. msgstr ""
  7826. #: app/assets/javascripts/app/views/time_accounting/by_activity.jst.eco
  7827. #: app/assets/javascripts/app/views/time_accounting/by_customer.jst.eco
  7828. #: app/assets/javascripts/app/views/time_accounting/by_organization.jst.eco
  7829. #: app/assets/javascripts/app/views/time_accounting/by_ticket.jst.eco
  7830. #: app/controllers/time_accountings_controller.rb
  7831. msgid "Time Units"
  7832. msgstr ""
  7833. #: app/assets/javascripts/app/views/time_accounting/by_ticket.jst.eco
  7834. #: lib/excel_sheet/ticket.rb
  7835. msgid "Time Units Total"
  7836. msgstr ""
  7837. #: app/assets/javascripts/app/models/calendar.coffee
  7838. #: app/assets/javascripts/app/views/calendar/index.jst.eco
  7839. msgid "Time zone"
  7840. msgstr ""
  7841. #: app/assets/javascripts/app/views/generic/sla_times.jst.eco
  7842. msgid "Timeframe between agent updates or for an agent to respond."
  7843. msgstr ""
  7844. #: app/assets/javascripts/app/views/generic/sla_times.jst.eco
  7845. msgid "Timeframe for solving the problem."
  7846. msgstr ""
  7847. #: app/assets/javascripts/app/views/generic/sla_times.jst.eco
  7848. msgid "Timeframe for the first response."
  7849. msgstr ""
  7850. #: db/seeds/settings.rb
  7851. #: lib/excel_sheet.rb
  7852. msgid "Timezone"
  7853. msgstr ""
  7854. #: app/assets/javascripts/app/controllers/knowledge_base/content_can_be_published_form.coffee
  7855. msgid "Timing"
  7856. msgstr ""
  7857. #: app/assets/javascripts/app/models/knowledge_base.coffee
  7858. #: app/assets/javascripts/app/models/knowledge_base_answer.coffee
  7859. #: app/assets/javascripts/app/models/knowledge_base_category.coffee
  7860. #: app/assets/javascripts/app/models/knowledge_base_translation.coffee
  7861. #: app/assets/javascripts/app/models/ticket.coffee
  7862. #: app/assets/javascripts/app/views/integration/clearbit.jst.eco
  7863. #: app/assets/javascripts/app/views/knowledge_base/public_menu_form_item.jst.eco
  7864. #: app/assets/javascripts/app/views/maintenance.jst.eco
  7865. #: app/assets/javascripts/app/views/settings/form.jst.eco
  7866. #: app/assets/javascripts/app/views/time_accounting/by_activity.jst.eco
  7867. #: app/assets/javascripts/app/views/time_accounting/by_ticket.jst.eco
  7868. #: app/controllers/time_accountings_controller.rb
  7869. #: app/frontend/apps/mobile/modules/ticket/views/TicketOverview.vue
  7870. #: db/seeds/object_manager_attributes.rb
  7871. #: lib/excel_sheet/ticket.rb
  7872. msgid "Title"
  7873. msgstr ""
  7874. #: app/assets/javascripts/app/views/channel/form.jst.eco
  7875. msgid "Title of the form"
  7876. msgstr ""
  7877. #: app/assets/javascripts/app/controllers/_ui_element/postmaster_match.coffee
  7878. #: app/assets/javascripts/app/models/ticket_article.coffee
  7879. #: app/assets/javascripts/app/views/cti/caller_log.jst.eco
  7880. #: app/assets/javascripts/app/views/ticket_zoom/article_new.jst.eco
  7881. #: app/assets/javascripts/app/views/ticket_zoom/article_view.jst.eco
  7882. #: db/seeds/object_manager_attributes.rb
  7883. msgid "To"
  7884. msgstr ""
  7885. #: db/seeds/settings.rb
  7886. msgid "To archive all outgoing emails from Zammad to external, you can store a BCC email address here."
  7887. msgstr ""
  7888. #: app/assets/javascripts/app/controllers/chat.coffee
  7889. msgid "To be able to chat you need to select at least one chat topic from below!"
  7890. msgstr ""
  7891. #: db/seeds/roles.rb
  7892. msgid "To configure your system."
  7893. msgstr ""
  7894. #: app/assets/javascripts/app/views/integration/check_mk.jst.eco
  7895. msgid "To enable %s for sending HTTP requests to %s, you need to create a designated \"notification rule\" in %s."
  7896. msgstr ""
  7897. #: app/assets/javascripts/app/views/translation/index.jst.eco
  7898. msgid "To make translations easier you can enable and disable the inline translation feature by pressing \"%s\"."
  7899. msgstr ""
  7900. #: app/assets/javascripts/app/models/text_module.coffee
  7901. msgid "To select placeholders from a list, just enter \"::\"."
  7902. msgstr ""
  7903. #: app/assets/javascripts/app/controllers/_integration/slack.coffee
  7904. msgid "To set up this service you need to create a new |\"Incoming webhook\"| in your %s integration panel and enter the webhook URL below."
  7905. msgstr ""
  7906. #: db/seeds/roles.rb
  7907. msgid "To work on Tickets."
  7908. msgstr ""
  7909. #: app/frontend/shared/components/Form/fields/FieldDate/FieldDateTimeInput.vue
  7910. #: public/assets/chat/chat-no-jquery.coffee
  7911. #: public/assets/chat/chat.coffee
  7912. msgid "Today"
  7913. msgstr ""
  7914. #: app/assets/javascripts/app/controllers/api.coffee
  7915. #: app/assets/javascripts/app/views/channel/sms_account_overview.jst.eco
  7916. #: app/models/channel/driver/sms/massenversand.rb
  7917. #: app/models/channel/driver/sms/message_bird.rb
  7918. #: app/models/channel/driver/sms/twilio.rb
  7919. msgid "Token"
  7920. msgstr ""
  7921. #: app/assets/javascripts/app/controllers/_profile/token_access.coffee
  7922. #: app/assets/javascripts/app/views/api.jst.eco
  7923. #: app/assets/javascripts/app/views/profile/token_access.jst.eco
  7924. #: db/seeds/permissions.rb
  7925. msgid "Token Access"
  7926. msgstr ""
  7927. #: db/seeds/settings.rb
  7928. msgid "Token for CTI."
  7929. msgstr ""
  7930. #: db/seeds/settings.rb
  7931. msgid "Token for Sipgate."
  7932. msgstr ""
  7933. #: db/seeds/settings.rb
  7934. msgid "Token for monitoring."
  7935. msgstr ""
  7936. #: app/assets/javascripts/app/controllers/password_reset_verify.coffee
  7937. msgid "Token is invalid!"
  7938. msgstr ""
  7939. #: lib/user_agent.rb
  7940. msgid "Too many redirections for the original URL, halting."
  7941. msgstr ""
  7942. #: app/assets/javascripts/app/controllers/_default_navbar.coffee
  7943. msgid "Tools"
  7944. msgstr ""
  7945. #: app/assets/javascripts/app/views/customer_chat/setting.jst.eco
  7946. msgid "Topic"
  7947. msgstr ""
  7948. #: app/assets/javascripts/app/views/channel/chat.jst.eco
  7949. msgid "Topics"
  7950. msgstr ""
  7951. #: db/seeds/settings.rb
  7952. msgid "Total display of the number of objects in a grouping."
  7953. msgstr ""
  7954. #: app/assets/javascripts/app/views/dashboard/stats/ticket_escalation.jst.eco
  7955. msgid "Total: %s"
  7956. msgstr ""
  7957. #: app/assets/javascripts/app/views/twitter/account_edit.jst.eco
  7958. msgid "Track retweets"
  7959. msgstr ""
  7960. #: app/assets/javascripts/app/views/customer_chat/chat_window.jst.eco
  7961. msgid "Transfer conversation to another chat:"
  7962. msgstr ""
  7963. #: app/assets/javascripts/app/controllers/_plugin/keyboard_shortcuts.coffee
  7964. #: app/assets/javascripts/app/controllers/translation.coffee
  7965. #: app/assets/javascripts/app/views/translation/index.jst.eco
  7966. #: db/seeds/permissions.rb
  7967. msgid "Translations"
  7968. msgstr ""
  7969. #: app/assets/javascripts/app/controllers/_integration/slack.coffee
  7970. #: app/assets/javascripts/app/controllers/trigger.coffee
  7971. msgid "Trigger"
  7972. msgstr ""
  7973. #: app/assets/javascripts/app/controllers/trigger.coffee
  7974. #: db/seeds/permissions.rb
  7975. msgid "Triggers"
  7976. msgstr ""
  7977. #: app/assets/javascripts/app/controllers/trigger.coffee
  7978. msgid "Triggers are …"
  7979. msgstr ""
  7980. #: app/assets/javascripts/app/lib/app_post/websocket.coffee
  7981. msgid "Trying to reconnect…"
  7982. msgstr ""
  7983. #: app/assets/javascripts/app/controllers/_ui_element/basedate.coffee
  7984. #: app/frontend/shared/components/Form/fields/FieldDate/FieldDateTimeInput.vue
  7985. msgid "Tue"
  7986. msgstr ""
  7987. #: app/assets/javascripts/app/controllers/_ui_element/basedate.coffee
  7988. #: app/assets/javascripts/app/controllers/_ui_element/timer.coffee
  7989. #: app/assets/javascripts/app/lib/app_post/business_hours.coffee
  7990. #: app/assets/javascripts/app/views/calendar/index.jst.eco
  7991. #: app/frontend/shared/components/Form/fields/FieldDate/FieldDateTimeInput.vue
  7992. msgid "Tuesday"
  7993. msgstr ""
  7994. #: app/assets/javascripts/app/views/customer_chat/chat_footer.jst.eco
  7995. msgid "Turn chat into ticket"
  7996. msgstr ""
  7997. #: app/assets/javascripts/app/views/twitter/account_edit.jst.eco
  7998. msgid "Tweets containing search terms are automatically turned into tickets."
  7999. msgstr ""
  8000. #: app/assets/javascripts/app/controllers/_channel/twitter.coffee
  8001. #: app/assets/javascripts/app/controllers/_profile/linked_accounts.coffee
  8002. #: app/assets/javascripts/app/views/twitter/index.jst.eco
  8003. #: app/assets/javascripts/app/views/twitter/list.jst.eco
  8004. #: app/controllers/first_steps_controller.rb
  8005. msgid "Twitter"
  8006. msgstr ""
  8007. #: app/models/report.rb
  8008. msgid "Twitter (in)"
  8009. msgstr ""
  8010. #: app/models/report.rb
  8011. msgid "Twitter (out)"
  8012. msgstr ""
  8013. #: db/seeds/settings.rb
  8014. msgid "Twitter - tweet initials"
  8015. msgstr ""
  8016. #: app/assets/javascripts/app/controllers/_channel/twitter.coffee
  8017. msgid "Twitter Account"
  8018. msgstr ""
  8019. #: db/seeds/settings.rb
  8020. msgid "Twitter App Credentials"
  8021. msgstr ""
  8022. #: db/seeds/settings.rb
  8023. msgid "Twitter Key"
  8024. msgstr ""
  8025. #: db/seeds/settings.rb
  8026. msgid "Twitter Secret"
  8027. msgstr ""
  8028. #: app/assets/javascripts/app/controllers/_channel/email.coffee
  8029. #: app/assets/javascripts/app/controllers/_ui_element/object_manager_attribute.coffee
  8030. #: app/assets/javascripts/app/controllers/_ui_element/postmaster_set.coffee
  8031. #: app/assets/javascripts/app/controllers/getting_started/channel_email.coffee
  8032. #: app/assets/javascripts/app/controllers/widget/ticket_bulk_form.coffee
  8033. #: app/assets/javascripts/app/models/ticket_article.coffee
  8034. #: app/assets/javascripts/app/views/channel/chat.jst.eco
  8035. #: app/assets/javascripts/app/views/generic/sla_times.jst.eco
  8036. #: app/assets/javascripts/app/views/integration/check_mk.jst.eco
  8037. #: app/assets/javascripts/app/views/integration/cti.jst.eco
  8038. #: app/assets/javascripts/app/views/integration/placetel.jst.eco
  8039. #: app/assets/javascripts/app/views/integration/sipgate.jst.eco
  8040. #: app/assets/javascripts/app/views/object_manager/index.jst.eco
  8041. #: app/assets/javascripts/app/views/ticket_zoom/sidebar_idoit.jst.eco
  8042. #: app/assets/javascripts/app/views/translation/list.jst.eco
  8043. #: db/seeds/object_manager_attributes.rb
  8044. msgid "Type"
  8045. msgstr ""
  8046. #: app/assets/javascripts/app/views/integration/ldap.jst.eco
  8047. msgid "UID"
  8048. msgstr ""
  8049. #: app/assets/javascripts/app/views/api.jst.eco
  8050. #: app/assets/javascripts/app/views/integration/check_mk.jst.eco
  8051. #: app/assets/javascripts/app/views/integration/cti.jst.eco
  8052. #: app/assets/javascripts/app/views/integration/placetel.jst.eco
  8053. #: app/assets/javascripts/app/views/integration/sipgate.jst.eco
  8054. #: app/assets/javascripts/app/views/knowledge_base/public_menu_form_item.jst.eco
  8055. #: app/assets/javascripts/app/views/profile/calendar_subscriptions.jst.eco
  8056. #: app/assets/javascripts/app/views/widget/http_log_show.jst.eco
  8057. msgid "URL"
  8058. msgstr ""
  8059. #: app/assets/javascripts/app/controllers/_ui_element/object_manager_attribute.coffee
  8060. msgid "URL (AJAX endpoint)"
  8061. msgstr ""
  8062. #: app/controllers/first_steps_controller.rb
  8063. #: db/seeds/overviews.rb
  8064. msgid "Unassigned & Open Tickets"
  8065. msgstr ""
  8066. #: app/assets/javascripts/app/views/channel/email_account_overview.jst.eco
  8067. #: app/assets/javascripts/app/views/google/list.jst.eco
  8068. #: app/assets/javascripts/app/views/microsoft365/list.jst.eco
  8069. msgid "Unassigned email addresses, assign them to a channel or delete them."
  8070. msgstr ""
  8071. #: lib/password_policy/backend.rb
  8072. msgid "Unknown error"
  8073. msgstr ""
  8074. #: app/assets/javascripts/app/controllers/user.coffee
  8075. msgid "Unlock"
  8076. msgstr ""
  8077. #: app/assets/javascripts/app/views/widget/mention.jst.eco
  8078. msgid "Unsubscribe"
  8079. msgstr ""
  8080. #: app/assets/javascripts/app/views/translation/support.jst.eco
  8081. msgid "Up to %s% of this language is already translated. Please help to make Zammad even better and complete the translation."
  8082. msgstr ""
  8083. #: app/assets/javascripts/app/controllers/knowledge_base/content_can_be_published_form.coffee
  8084. #: app/assets/javascripts/app/controllers/knowledge_base/content_controller.coffee
  8085. #: app/assets/javascripts/app/views/agent_ticket_view/bulk.jst.eco
  8086. #: app/assets/javascripts/app/views/integration/smime.jst.eco
  8087. #: app/assets/javascripts/app/views/knowledge_base/content.jst.eco
  8088. #: app/assets/javascripts/app/views/session.jst.eco
  8089. #: app/assets/javascripts/app/views/ticket_zoom/attribute_bar.jst.eco
  8090. #: app/assets/javascripts/app/views/widget/shared_draft.jst.eco
  8091. msgid "Update"
  8092. msgstr ""
  8093. #: app/assets/javascripts/app/views/object_manager/index.jst.eco
  8094. msgid "Update Database"
  8095. msgstr ""
  8096. #: lib/excel_sheet/ticket.rb
  8097. msgid "Update Diff In Min"
  8098. msgstr ""
  8099. #: lib/excel_sheet/ticket.rb
  8100. msgid "Update Escalation At"
  8101. msgstr ""
  8102. #: lib/excel_sheet/ticket.rb
  8103. msgid "Update In Min"
  8104. msgstr ""
  8105. #: app/assets/javascripts/app/views/generic/sla_times.jst.eco
  8106. #: app/assets/javascripts/app/views/popover/escalation.jst.eco
  8107. #: app/assets/javascripts/app/views/sla/index.jst.eco
  8108. msgid "Update Time"
  8109. msgstr ""
  8110. #: app/assets/javascripts/app/controllers/_plugin/keyboard_shortcuts.coffee
  8111. msgid "Update as closed"
  8112. msgstr ""
  8113. #: app/assets/javascripts/app/views/generic/object_import/index.jst.eco
  8114. msgid "Update existing records"
  8115. msgstr ""
  8116. #: app/assets/javascripts/app/views/generic/object_import/index.jst.eco
  8117. msgid "Update existing records with the attributes specified in the import data."
  8118. msgstr ""
  8119. #: app/assets/javascripts/app/controllers/_profile/calendar_subscriptions.coffee
  8120. #: app/assets/javascripts/app/controllers/_profile/language.coffee
  8121. #: app/assets/javascripts/app/controllers/_profile/linked_accounts.coffee
  8122. #: app/assets/javascripts/app/controllers/_profile/notification.coffee
  8123. #: app/assets/javascripts/app/controllers/_profile/out_of_office.coffee
  8124. #: app/assets/javascripts/app/controllers/_settings/area_logo.coffee
  8125. #: app/assets/javascripts/app/controllers/_settings/area_switch.coffee
  8126. #: app/assets/javascripts/app/controllers/_settings/area_ticket_number.coffee
  8127. #: app/assets/javascripts/app/controllers/_settings/form.coffee
  8128. #: app/assets/javascripts/app/controllers/maintenance.coffee
  8129. #: app/assets/javascripts/app/models/setting.coffee
  8130. msgid "Update successful."
  8131. msgstr ""
  8132. #: app/assets/javascripts/app/models/application.coffee
  8133. #: app/assets/javascripts/app/models/calendar.coffee
  8134. #: app/assets/javascripts/app/models/chat.coffee
  8135. #: app/assets/javascripts/app/models/chat_sessions.coffee
  8136. #: app/assets/javascripts/app/models/core_workflow.coffee
  8137. #: app/assets/javascripts/app/models/data_privacy_task.coffee
  8138. #: app/assets/javascripts/app/models/email_address.coffee
  8139. #: app/assets/javascripts/app/models/group.coffee
  8140. #: app/assets/javascripts/app/models/job.coffee
  8141. #: app/assets/javascripts/app/models/ldap_source.coffee
  8142. #: app/assets/javascripts/app/models/macro.coffee
  8143. #: app/assets/javascripts/app/models/object_manager_attribute.coffee
  8144. #: app/assets/javascripts/app/models/overview.coffee
  8145. #: app/assets/javascripts/app/models/postmaster_filter.coffee
  8146. #: app/assets/javascripts/app/models/report_profile.js.coffee
  8147. #: app/assets/javascripts/app/models/role.coffee
  8148. #: app/assets/javascripts/app/models/signature.coffee
  8149. #: app/assets/javascripts/app/models/sla.coffee
  8150. #: app/assets/javascripts/app/models/text_module.coffee
  8151. #: app/assets/javascripts/app/models/ticket_article.coffee
  8152. #: app/assets/javascripts/app/models/ticket_priority.coffee
  8153. #: app/assets/javascripts/app/models/ticket_state.coffee
  8154. #: app/assets/javascripts/app/models/trigger.coffee
  8155. #: app/assets/javascripts/app/models/webhook.coffee
  8156. msgid "Updated"
  8157. msgstr ""
  8158. #: lib/excel_sheet/ticket.rb
  8159. msgid "Updated At"
  8160. msgstr ""
  8161. #: app/assets/javascripts/app/models/knowledge_base_answer_translation.coffee
  8162. #: app/assets/javascripts/app/models/organization.coffee
  8163. #: app/assets/javascripts/app/models/ticket.coffee
  8164. #: app/assets/javascripts/app/models/user.coffee
  8165. #: app/frontend/apps/mobile/modules/ticket/views/TicketOverview.vue
  8166. msgid "Updated at"
  8167. msgstr ""
  8168. #: app/assets/javascripts/app/models/calendar.coffee
  8169. #: app/assets/javascripts/app/models/chat.coffee
  8170. #: app/assets/javascripts/app/models/chat_sessions.coffee
  8171. #: app/assets/javascripts/app/models/data_privacy_task.coffee
  8172. #: app/assets/javascripts/app/models/job.coffee
  8173. #: app/assets/javascripts/app/models/ldap_source.coffee
  8174. #: app/assets/javascripts/app/models/organization.coffee
  8175. #: app/assets/javascripts/app/models/overview.coffee
  8176. #: app/assets/javascripts/app/models/postmaster_filter.coffee
  8177. #: app/assets/javascripts/app/models/role.coffee
  8178. #: app/assets/javascripts/app/models/signature.coffee
  8179. #: app/assets/javascripts/app/models/sla.coffee
  8180. #: app/assets/javascripts/app/models/ticket.coffee
  8181. #: app/assets/javascripts/app/models/ticket_article.coffee
  8182. #: app/assets/javascripts/app/models/user.coffee
  8183. msgid "Updated by"
  8184. msgstr ""
  8185. #: app/assets/javascripts/app/views/object_manager/index.jst.eco
  8186. msgid "Updating Database"
  8187. msgstr ""
  8188. #: app/assets/javascripts/app/views/getting_started/base.jst.eco
  8189. #: app/assets/javascripts/app/views/profile/avatar.jst.eco
  8190. msgid "Upload"
  8191. msgstr ""
  8192. #: app/assets/javascripts/app/views/integration/smime_certificate_add.jst.eco
  8193. msgid "Upload Certificate"
  8194. msgstr ""
  8195. #: app/assets/javascripts/app/lib/app_post/html5_upload.coffee
  8196. msgid "Upload Failed"
  8197. msgstr ""
  8198. #: app/assets/javascripts/app/views/integration/smime_private_key_add.jst.eco
  8199. msgid "Upload Private Key"
  8200. msgstr ""
  8201. #: app/assets/javascripts/app/views/generic/attachment.jst.eco
  8202. #: app/assets/javascripts/app/views/knowledge_base/sidebar/attachments.jst.eco
  8203. #: app/assets/javascripts/app/views/ticket_zoom/article_new.jst.eco
  8204. msgid "Uploading"
  8205. msgstr ""
  8206. #: app/assets/javascripts/app/views/channel/chat.jst.eco
  8207. #: app/assets/javascripts/app/views/integration/check_mk.jst.eco
  8208. msgid "Usage"
  8209. msgstr ""
  8210. #: db/seeds/karma_activities.rb
  8211. msgid "Usage of advanced features"
  8212. msgstr ""
  8213. #: app/assets/javascripts/app/views/object_manager/attribute/multiselect.jst.eco
  8214. #: app/assets/javascripts/app/views/object_manager/attribute/select.jst.eco
  8215. msgid "Use custom option sort"
  8216. msgstr ""
  8217. #: app/assets/javascripts/app/controllers/_ui_element/object_manager_attribute.coffee
  8218. msgid "Use double click to change level of the row."
  8219. msgstr ""
  8220. #: app/assets/javascripts/app/models/application.coffee
  8221. msgid "Use one line per URI"
  8222. msgstr ""
  8223. #: db/seeds/settings.rb
  8224. msgid "Use subject field for emails. If disabled, the ticket title will be used as subject."
  8225. msgstr ""
  8226. #: db/seeds/settings.rb
  8227. msgid "Use the start time of the last customer thread (which may consist of multiple articles)."
  8228. msgstr ""
  8229. #: db/seeds/settings.rb
  8230. msgid "Use the time of the very last customer article."
  8231. msgstr ""
  8232. #: app/assets/javascripts/app/controllers/_integration/ldap.coffee
  8233. msgid "Use this switch to start synchronization of your ldap sources. "
  8234. msgstr ""
  8235. #: app/assets/javascripts/app/controllers/_plugin/keyboard_shortcuts.coffee
  8236. msgid "Used anywhere"
  8237. msgstr ""
  8238. #: app/assets/javascripts/app/controllers/_plugin/keyboard_shortcuts.coffee
  8239. msgid "Used anywhere (admin only)"
  8240. msgstr ""
  8241. #: app/assets/javascripts/app/controllers/_plugin/keyboard_shortcuts.coffee
  8242. msgid "Used in lists (views and results)"
  8243. msgstr ""
  8244. #: app/assets/javascripts/app/controllers/_plugin/keyboard_shortcuts.coffee
  8245. msgid "Used in object views"
  8246. msgstr ""
  8247. #: app/assets/javascripts/app/controllers/_plugin/keyboard_shortcuts.coffee
  8248. msgid "Used when composing a Ticket article"
  8249. msgstr ""
  8250. #: app/assets/javascripts/app/controllers/_plugin/keyboard_shortcuts.coffee
  8251. msgid "Used when composing a text"
  8252. msgstr ""
  8253. #: app/assets/javascripts/app/controllers/_plugin/keyboard_shortcuts.coffee
  8254. msgid "Used when viewing a Ticket"
  8255. msgstr ""
  8256. #: app/assets/javascripts/app/controllers/_channel/email.coffee
  8257. #: app/assets/javascripts/app/controllers/_ui_element/core_workflow_condition.coffee
  8258. #: app/assets/javascripts/app/controllers/_ui_element/ticket_perform_action.coffee
  8259. #: app/assets/javascripts/app/controllers/agent_ticket_create/sidebar_customer.coffee
  8260. #: app/assets/javascripts/app/controllers/cti.coffee
  8261. #: app/assets/javascripts/app/controllers/getting_started/channel_email.coffee
  8262. #: app/assets/javascripts/app/controllers/getting_started/email_notification.coffee
  8263. #: app/assets/javascripts/app/controllers/ticket_zoom/sidebar_customer.coffee
  8264. #: app/assets/javascripts/app/controllers/user.coffee
  8265. #: app/assets/javascripts/app/controllers/user_profile.coffee
  8266. #: app/assets/javascripts/app/lib/app_post/user_organization_autocompletion.coffee
  8267. #: app/assets/javascripts/app/models/data_privacy_task.coffee
  8268. #: app/assets/javascripts/app/models/mention.coffee
  8269. #: app/assets/javascripts/app/views/channel/email_account_overview.jst.eco
  8270. #: app/assets/javascripts/app/views/integration/exchange.jst.eco
  8271. #: app/assets/javascripts/app/views/integration/exchange_wizard.jst.eco
  8272. #: app/assets/javascripts/app/views/integration/ldap.jst.eco
  8273. #: app/assets/javascripts/app/views/integration/ldap_wizard.jst.eco
  8274. #: app/assets/javascripts/app/views/integration/placetel.jst.eco
  8275. #: app/assets/javascripts/app/views/integration/sipgate.jst.eco
  8276. #: app/assets/javascripts/app/views/session.jst.eco
  8277. msgid "User"
  8278. msgstr ""
  8279. #: app/assets/javascripts/app/views/data_privacy/tasks.jst.eco
  8280. msgid "User (censored)"
  8281. msgstr ""
  8282. #: app/assets/javascripts/app/views/integration/ldap.jst.eco
  8283. msgid "User Filter"
  8284. msgstr ""
  8285. #: db/seeds/settings.rb
  8286. msgid "User Organization Selector - email"
  8287. msgstr ""
  8288. #: db/seeds/permissions.rb
  8289. msgid "User Preferences"
  8290. msgstr ""
  8291. #: app/assets/javascripts/app/controllers/getting_started/admin.coffee
  8292. #: app/assets/javascripts/app/controllers/signup.coffee
  8293. msgid "User could not be created."
  8294. msgstr ""
  8295. #: lib/external_credential/google.rb
  8296. msgid "User email could not be extracted from 'id_token'."
  8297. msgstr ""
  8298. #: db/seeds/settings.rb
  8299. msgid "User email for multiple users"
  8300. msgstr ""
  8301. #: app/assets/javascripts/app/views/integration/ldap_wizard.jst.eco
  8302. msgid "User filter"
  8303. msgstr ""
  8304. #: app/assets/javascripts/app/controllers/_integration/ldap.coffee
  8305. msgid "User information could not be retrieved, please check your bind user permissions."
  8306. msgstr ""
  8307. #: app/assets/javascripts/app/controllers/user.coffee
  8308. msgid "User successfully unlocked!"
  8309. msgstr ""
  8310. #: app/assets/javascripts/app/controllers/_integration/slack.coffee
  8311. msgid "Username"
  8312. msgstr ""
  8313. #: app/frontend/apps/mobile/modules/login/views/Login.vue
  8314. #: app/models/form_schema/form/mobile/login.rb
  8315. msgid "Username / Email"
  8316. msgstr ""
  8317. #: app/assets/javascripts/app/views/generic/login_preview.jst.eco
  8318. #: app/assets/javascripts/app/views/login.jst.eco
  8319. msgid "Username / email"
  8320. msgstr ""
  8321. #: app/assets/javascripts/app/views/settings/proxy.jst.eco
  8322. msgid "Username for proxy connection"
  8323. msgstr ""
  8324. #: db/seeds/settings.rb
  8325. msgid "Username for proxy connection."
  8326. msgstr ""
  8327. #: app/assets/javascripts/app/controllers/agent_ticket_create/sidebar_customer.coffee
  8328. #: app/assets/javascripts/app/controllers/cti.coffee
  8329. #: app/assets/javascripts/app/controllers/ticket_zoom/sidebar_customer.coffee
  8330. #: app/assets/javascripts/app/controllers/user.coffee
  8331. #: app/assets/javascripts/app/controllers/user_profile.coffee
  8332. #: app/assets/javascripts/app/views/import/freshdesk.jst.eco
  8333. #: app/assets/javascripts/app/views/import/kayako.jst.eco
  8334. #: app/assets/javascripts/app/views/import/otrs.jst.eco
  8335. #: app/assets/javascripts/app/views/import/zendesk.jst.eco
  8336. #: app/assets/javascripts/app/views/integration/exchange_last_import.jst.eco
  8337. #: app/assets/javascripts/app/views/integration/exchange_summary.jst.eco
  8338. #: app/assets/javascripts/app/views/integration/ldap_last_import.jst.eco
  8339. #: app/assets/javascripts/app/views/integration/ldap_summary.jst.eco
  8340. #: app/frontend/apps/mobile/modules/search/plugins/user.ts
  8341. #: db/seeds/groups.rb
  8342. #: db/seeds/permissions.rb
  8343. msgid "Users"
  8344. msgstr ""
  8345. #: app/assets/javascripts/app/views/integration/ldap_wizard.jst.eco
  8346. msgid "Users without assigned LDAP groups"
  8347. msgstr ""
  8348. #: app/assets/javascripts/app/models/organization.coffee
  8349. msgid "Using **organizations** you can **group** customers. This has two main benefits:\n\n1. As an **agent** you don't just have an overview of the open tickets for one person but an **overview over their whole organization**.\n2. As a **customer** you can also check the **tickets which your colleagues created** and modify their tickets (if your organization is set to \"shared\", which can be defined per organization)."
  8350. msgstr ""
  8351. #: db/seeds/object_manager_attributes.rb
  8352. msgid "VIP"
  8353. msgstr ""
  8354. #: app/assets/javascripts/app/views/integration/clearbit.jst.eco
  8355. #: app/assets/javascripts/app/views/integration/cti.jst.eco
  8356. #: app/assets/javascripts/app/views/integration/exchange.jst.eco
  8357. #: app/assets/javascripts/app/views/integration/exchange_wizard.jst.eco
  8358. #: app/assets/javascripts/app/views/integration/github.jst.eco
  8359. #: app/assets/javascripts/app/views/integration/gitlab.jst.eco
  8360. #: app/assets/javascripts/app/views/integration/idoit.jst.eco
  8361. #: app/assets/javascripts/app/views/integration/ldap.jst.eco
  8362. #: app/assets/javascripts/app/views/integration/ldap_wizard.jst.eco
  8363. #: app/assets/javascripts/app/views/integration/placetel.jst.eco
  8364. #: app/assets/javascripts/app/views/integration/sipgate.jst.eco
  8365. #: app/assets/javascripts/app/views/settings/form.jst.eco
  8366. msgid "Value"
  8367. msgstr ""
  8368. #: app/assets/javascripts/app/controllers/_ui_element/ticket_perform_action.coffee
  8369. msgid "Variables"
  8370. msgstr ""
  8371. #: app/assets/javascripts/app/views/package.jst.eco
  8372. msgid "Vendor"
  8373. msgstr ""
  8374. #: lib/email_helper/verify.rb
  8375. msgid "Verification Email not found in mailbox."
  8376. msgstr ""
  8377. #: app/assets/javascripts/app/controllers/_plugin/user_signup_check.coffee
  8378. msgid "Verification email could not be sent."
  8379. msgstr ""
  8380. #: app/assets/javascripts/app/views/channel/email_account_wizard.jst.eco
  8381. #: app/assets/javascripts/app/views/getting_started/email.jst.eco
  8382. msgid "Verify sending and receiving"
  8383. msgstr ""
  8384. #: app/assets/javascripts/app/views/channel/email_account_wizard.jst.eco
  8385. #: app/assets/javascripts/app/views/channel/email_notification_wizard.jst.eco
  8386. #: app/assets/javascripts/app/views/getting_started/email.jst.eco
  8387. #: app/assets/javascripts/app/views/getting_started/email_notification.jst.eco
  8388. msgid "Verifying…"
  8389. msgstr ""
  8390. #: app/assets/javascripts/app/controllers/version.coffee
  8391. #: app/assets/javascripts/app/views/package.jst.eco
  8392. #: app/assets/javascripts/app/views/version.jst.eco
  8393. msgid "Version"
  8394. msgstr ""
  8395. #: app/assets/javascripts/app/controllers/_ui_element/richtext_additions/embed_video_button.coffee
  8396. msgid "Video"
  8397. msgstr ""
  8398. #: app/assets/javascripts/app/controllers/api.coffee
  8399. msgid "View"
  8400. msgstr ""
  8401. #: app/assets/javascripts/app/controllers/user.coffee
  8402. msgid "View from user's perspective"
  8403. msgstr ""
  8404. #: app/views/mailer/ticket_create/cs.html.erb
  8405. #: app/views/mailer/ticket_create/de.html.erb
  8406. #: app/views/mailer/ticket_create/en.html.erb
  8407. #: app/views/mailer/ticket_create/es.html.erb
  8408. #: app/views/mailer/ticket_create/fr.html.erb
  8409. #: app/views/mailer/ticket_create/it.html.erb
  8410. #: app/views/mailer/ticket_create/ru.html.erb
  8411. #: app/views/mailer/ticket_create/zh-cn.html.erb
  8412. #: app/views/mailer/ticket_create/zh-tw.html.erb
  8413. #: app/views/mailer/ticket_escalation/cs.html.erb
  8414. #: app/views/mailer/ticket_escalation/de.html.erb
  8415. #: app/views/mailer/ticket_escalation/en.html.erb
  8416. #: app/views/mailer/ticket_escalation/es.html.erb
  8417. #: app/views/mailer/ticket_escalation/fr.html.erb
  8418. #: app/views/mailer/ticket_escalation/it.html.erb
  8419. #: app/views/mailer/ticket_escalation/ru.html.erb
  8420. #: app/views/mailer/ticket_escalation/zh-cn.html.erb
  8421. #: app/views/mailer/ticket_escalation/zh-tw.html.erb
  8422. #: app/views/mailer/ticket_escalation_warning/cs.html.erb
  8423. #: app/views/mailer/ticket_escalation_warning/de.html.erb
  8424. #: app/views/mailer/ticket_escalation_warning/en.html.erb
  8425. #: app/views/mailer/ticket_escalation_warning/es.html.erb
  8426. #: app/views/mailer/ticket_escalation_warning/fr.html.erb
  8427. #: app/views/mailer/ticket_escalation_warning/it.html.erb
  8428. #: app/views/mailer/ticket_escalation_warning/ru.html.erb
  8429. #: app/views/mailer/ticket_escalation_warning/zh-cn.html.erb
  8430. #: app/views/mailer/ticket_escalation_warning/zh-tw.html.erb
  8431. #: app/views/mailer/ticket_reminder_reached/cs.html.erb
  8432. #: app/views/mailer/ticket_reminder_reached/de.html.erb
  8433. #: app/views/mailer/ticket_reminder_reached/en.html.erb
  8434. #: app/views/mailer/ticket_reminder_reached/es.html.erb
  8435. #: app/views/mailer/ticket_reminder_reached/fr.html.erb
  8436. #: app/views/mailer/ticket_reminder_reached/it.html.erb
  8437. #: app/views/mailer/ticket_reminder_reached/ru.html.erb
  8438. #: app/views/mailer/ticket_reminder_reached/zh-cn.html.erb
  8439. #: app/views/mailer/ticket_reminder_reached/zh-tw.html.erb
  8440. #: app/views/mailer/ticket_update/cs.html.erb
  8441. #: app/views/mailer/ticket_update/de.html.erb
  8442. #: app/views/mailer/ticket_update/en.html.erb
  8443. #: app/views/mailer/ticket_update/es.html.erb
  8444. #: app/views/mailer/ticket_update/fr.html.erb
  8445. #: app/views/mailer/ticket_update/it.html.erb
  8446. #: app/views/mailer/ticket_update/ru.html.erb
  8447. #: app/views/mailer/ticket_update/zh-cn.html.erb
  8448. #: app/views/mailer/ticket_update/zh-tw.html.erb
  8449. #: app/views/mailer/ticket_update_merged_into/en.html.erb
  8450. #: app/views/mailer/ticket_update_merged_into/fr.html.erb
  8451. #: app/views/mailer/ticket_update_merged_into/ru.html.erb
  8452. #: app/views/mailer/ticket_update_received_merge/en.html.erb
  8453. #: app/views/mailer/ticket_update_received_merge/fr.html.erb
  8454. #: app/views/mailer/ticket_update_received_merge/ru.html.erb
  8455. msgid "View this in Zammad"
  8456. msgstr ""
  8457. #: app/assets/javascripts/app/controllers/_ui_element/ticket_perform_action.coffee
  8458. #: app/assets/javascripts/app/controllers/knowledge_base/content_can_be_published_dialog.coffee
  8459. #: app/assets/javascripts/app/controllers/widget/ticket_bulk_form.coffee
  8460. #: app/assets/javascripts/app/models/ticket_article.coffee
  8461. #: app/assets/javascripts/app/views/generic/ticket_perform_action/article.jst.eco
  8462. #: app/assets/javascripts/app/views/generic/ticket_perform_action/notification.jst.eco
  8463. #: db/seeds/object_manager_attributes.rb
  8464. msgid "Visibility"
  8465. msgstr ""
  8466. #: app/assets/javascripts/app/controllers/knowledge_base/content_can_be_published_form.coffee
  8467. msgid "Visible to everyone"
  8468. msgstr ""
  8469. #: app/assets/javascripts/app/controllers/knowledge_base/content_can_be_published_form.coffee
  8470. msgid "Visible to readers & editors"
  8471. msgstr ""
  8472. #: app/assets/javascripts/app/controllers/_integration/placetel.coffee
  8473. #: app/assets/javascripts/app/controllers/_integration/sipgate_io.coffee
  8474. msgid "VoIP service provider with realtime push."
  8475. msgstr ""
  8476. #: app/assets/javascripts/app/views/cti/caller_log.jst.eco
  8477. msgid "Waiting"
  8478. msgstr ""
  8479. #: app/assets/javascripts/app/controllers/chat.coffee
  8480. #: app/assets/javascripts/app/views/customer_chat/chat_header.jst.eco
  8481. msgid "Waiting Customers"
  8482. msgstr ""
  8483. #: app/assets/javascripts/app/views/customer_chat/chat_header.jst.eco
  8484. msgid "Waiting in %s"
  8485. msgstr ""
  8486. #: app/assets/javascripts/app/views/data_privacy/preview.jst.eco
  8487. msgid "Warning"
  8488. msgstr ""
  8489. #: public/assets/chat/views/waiting_list_timeout.eco
  8490. msgid "We are sorry, it takes longer as expected to get an empty slot. Please try again later or send us an email. Thank you!"
  8491. msgstr ""
  8492. #: app/assets/javascripts/app/views/import/otrs.jst.eco
  8493. msgid "We detected OTRS BPM processes that can't get imported into Zammad since we currently don't support this kind of workflows."
  8494. msgstr ""
  8495. #: app/assets/javascripts/app/views/import/otrs.jst.eco
  8496. msgid "We found a lot of dynamic fields which are not common in Zammad, as we take a different approach to ticket attributes. Zammad also uses tags in addition to custom fields to classify tickets. This difference can create a new philosophy of your ticket attributes / tags compared to your current use of dynamic fields in OTRS."
  8497. msgstr ""
  8498. #: app/assets/javascripts/app/controllers/_channel/email.coffee
  8499. #: app/assets/javascripts/app/controllers/getting_started/channel_email.coffee
  8500. #: app/assets/javascripts/app/views/channel/email_account_wizard.jst.eco
  8501. #: app/assets/javascripts/app/views/getting_started/email.jst.eco
  8502. msgid "We have already found %s email(s) in your mailbox. We will move them all from your mailbox into Zammad."
  8503. msgstr ""
  8504. #: app/assets/javascripts/app/views/cti/not_configured.jst.eco
  8505. msgid "We support"
  8506. msgstr ""
  8507. #: app/frontend/apps/mobile/modules/error/views/Error.vue
  8508. msgid "We're sorry, but this page doesn't exist."
  8509. msgstr ""
  8510. #: app/assets/javascripts/app/controllers/_plugin/user_signup_check.coffee
  8511. msgid "We've sent an email to _%s_. Click the link in the email to verify your account."
  8512. msgstr ""
  8513. #: app/assets/javascripts/app/views/password/reset_sent.jst.eco
  8514. msgid "We've sent password reset instructions to your email address."
  8515. msgstr ""
  8516. #: app/assets/javascripts/app/controllers/_channel/web.coffee
  8517. #: db/seeds/object_manager_attributes.rb
  8518. msgid "Web"
  8519. msgstr ""
  8520. #: app/models/report.rb
  8521. msgid "Web (in)"
  8522. msgstr ""
  8523. #: app/assets/javascripts/app/views/knowledge_base/base_form.coffee
  8524. #: app/assets/javascripts/app/views/knowledge_base/server_snippet.coffee
  8525. msgid "Web Server Configuration"
  8526. msgstr ""
  8527. #: app/assets/javascripts/app/controllers/_channel/sms.coffee
  8528. #: app/assets/javascripts/app/controllers/_integration/slack.coffee
  8529. #: app/assets/javascripts/app/controllers/_ui_element/ticket_perform_action.coffee
  8530. #: app/assets/javascripts/app/controllers/webhook.coffee
  8531. #: app/assets/javascripts/app/views/channel/sms_account_overview.jst.eco
  8532. msgid "Webhook"
  8533. msgstr ""
  8534. #: app/models/channel/driver/sms/message_bird.rb
  8535. #: app/models/channel/driver/sms/twilio.rb
  8536. msgid "Webhook Token"
  8537. msgstr ""
  8538. #: app/assets/javascripts/app/controllers/webhook.coffee
  8539. #: app/assets/javascripts/app/views/generic/ticket_perform_action/webhook.jst.eco
  8540. #: db/seeds/permissions.rb
  8541. msgid "Webhooks"
  8542. msgstr ""
  8543. #: app/assets/javascripts/app/controllers/webhook.coffee
  8544. msgid "Webhooks are …"
  8545. msgstr ""
  8546. #: app/assets/javascripts/app/models/webhook.coffee
  8547. msgid "Webhooks make it easy to send information about events within Zammad to third-party systems via HTTP(S).\n\nYou can use webhooks in Zammad to send ticket, article, and attachment data whenever a trigger is performed. Just create and configure your webhook with an HTTP(S) endpoint and relevant security settings, then configure a trigger to perform it."
  8548. msgstr ""
  8549. #: app/assets/javascripts/app/controllers/_ui_element/richtext_additions/link_button.coffee
  8550. msgid "Weblink"
  8551. msgstr ""
  8552. #: app/assets/javascripts/app/views/generic/iconset_picker.jst.eco
  8553. msgid "Website"
  8554. msgstr ""
  8555. #: db/seeds/settings.rb
  8556. msgid "Websocket backend"
  8557. msgstr ""
  8558. #: db/seeds/settings.rb
  8559. msgid "Websocket port"
  8560. msgstr ""
  8561. #: app/assets/javascripts/app/controllers/_ui_element/basedate.coffee
  8562. #: app/frontend/shared/components/Form/fields/FieldDate/FieldDateTimeInput.vue
  8563. msgid "Wed"
  8564. msgstr ""
  8565. #: app/assets/javascripts/app/controllers/_ui_element/basedate.coffee
  8566. #: app/assets/javascripts/app/controllers/_ui_element/timer.coffee
  8567. #: app/assets/javascripts/app/lib/app_post/business_hours.coffee
  8568. #: app/assets/javascripts/app/views/calendar/index.jst.eco
  8569. #: app/frontend/shared/components/Form/fields/FieldDate/FieldDateTimeInput.vue
  8570. msgid "Wednesday"
  8571. msgstr ""
  8572. #: app/assets/javascripts/app/views/report/time_range_picker.jst.eco
  8573. msgid "Week"
  8574. msgstr ""
  8575. #: app/assets/javascripts/app/controllers/_ui_element/time_range.coffee
  8576. msgid "Week(s)"
  8577. msgstr ""
  8578. #: app/assets/javascripts/app/controllers/_profile/linked_accounts.coffee
  8579. msgid "Weibo"
  8580. msgstr ""
  8581. #: db/seeds/settings.rb
  8582. msgid "Weibo App Credentials"
  8583. msgstr ""
  8584. #: app/assets/javascripts/app/controllers/_channel/chat.coffee
  8585. msgid "Welcome Title shown on the closed chat. Can contain HTML."
  8586. msgstr ""
  8587. #: app/assets/javascripts/app/views/telegram/bot_add.jst.eco
  8588. msgid "Welcome message"
  8589. msgstr ""
  8590. #: db/seeds/community_user_resources.rb
  8591. msgid "Welcome to Zammad!"
  8592. msgstr ""
  8593. #: app/assets/javascripts/app/views/customer_not_ticket_exists.jst.eco
  8594. msgid "Welcome!"
  8595. msgstr ""
  8596. #: app/assets/javascripts/app/views/telegram/bot_add.jst.eco
  8597. #: app/assets/javascripts/app/views/telegram/bot_edit.jst.eco
  8598. #: lib/telegram.rb
  8599. msgid "Welcome! Feel free to ask me a question!"
  8600. msgstr ""
  8601. #: app/assets/javascripts/app/views/karma/index.jst.eco
  8602. msgid "What affects your Zammad Karma?"
  8603. msgstr ""
  8604. #: app/assets/javascripts/app/controllers/customer_ticket_create.coffee
  8605. msgid "What can you do here?"
  8606. msgstr ""
  8607. #: app/assets/javascripts/app/controllers/_dashboard/stats/ticket_in_process.coffee
  8608. msgid "What percentage of your tickets have you responded to, updated, or modified in some way today?"
  8609. msgstr ""
  8610. #: app/assets/javascripts/app/views/integration/clearbit.jst.eco
  8611. msgid "What values of %s should be synced to organization."
  8612. msgstr ""
  8613. #: app/assets/javascripts/app/views/integration/clearbit.jst.eco
  8614. msgid "What values of %s should be synced to users."
  8615. msgstr ""
  8616. #: app/assets/javascripts/app/controllers/_integration/slack.coffee
  8617. msgid "When notification is being sent."
  8618. msgstr ""
  8619. #: app/assets/javascripts/app/models/job.coffee
  8620. msgid "When should the job run?"
  8621. msgstr ""
  8622. #: app/assets/javascripts/app/views/channel/chat.jst.eco
  8623. msgid "When you turn on debugging by setting the option §debug§ to §true§ the reason gets printed to the javascript console."
  8624. msgstr ""
  8625. #: app/assets/javascripts/app/controllers/_ui_element/_application_selector.coffee
  8626. msgid "Where"
  8627. msgstr ""
  8628. #: app/assets/javascripts/app/controllers/_channel/chat.coffee
  8629. msgid "Where to append the chat to."
  8630. msgstr ""
  8631. #: app/assets/javascripts/app/views/translation/index.jst.eco
  8632. msgid "While it will be no longer possible to directly push changed translations from Zammad, they can be contributed in a very convenient user interface based on Weblate."
  8633. msgstr ""
  8634. #: app/assets/javascripts/app/views/channel/chat.jst.eco
  8635. msgid "Why doesn't the chat show up?"
  8636. msgstr ""
  8637. #: app/assets/javascripts/app/views/knowledge_base/content_can_be_published_header_suffix.jst.eco
  8638. msgid "Will be archived"
  8639. msgstr ""
  8640. #: app/assets/javascripts/app/views/knowledge_base/content_can_be_published_header_suffix.jst.eco
  8641. msgid "Will be internal"
  8642. msgstr ""
  8643. #: app/assets/javascripts/app/views/knowledge_base/content_can_be_published_header_suffix.jst.eco
  8644. msgid "Will be published"
  8645. msgstr ""
  8646. #: app/views/knowledge_base/public/_top_banner.html.erb
  8647. msgid "Will be published on"
  8648. msgstr ""
  8649. #: db/seeds/settings.rb
  8650. msgid "Will be shown in the app and is included in email footers."
  8651. msgstr ""
  8652. #: app/assets/javascripts/app/models/job.coffee
  8653. msgid "Will process"
  8654. msgstr ""
  8655. #: app/assets/javascripts/app/views/settings/ticket_number_date.jst.eco
  8656. #: app/assets/javascripts/app/views/settings/ticket_number_increment.jst.eco
  8657. msgid "With Checksum, a checksum will be appended to the counter. The format looks like \"%s\" (e. g. %s)."
  8658. msgstr ""
  8659. #: app/assets/javascripts/app/controllers/_channel/_email_filter.coffee
  8660. msgid "With filters you can e. g. dispatch new tickets into certain groups or set a certain priority for tickets of a VIP customer."
  8661. msgstr ""
  8662. #: app/assets/javascripts/app/views/channel/form.jst.eco
  8663. msgid "With form you can add a form to your web page which directly generates a ticket for you."
  8664. msgstr ""
  8665. #: app/assets/javascripts/app/views/widget/template.jst.eco
  8666. msgid "With templates you can pre-fill ticket attributes."
  8667. msgstr ""
  8668. #: app/assets/javascripts/app/views/integration/exchange_wizard.jst.eco
  8669. #: app/assets/javascripts/app/views/integration/ldap_wizard.jst.eco
  8670. msgid "With your current configuration the following will happen"
  8671. msgstr ""
  8672. #: app/assets/javascripts/app/views/settings/ticket_number.jst.eco
  8673. msgid "With |Date| the ticket numbers will be generated by the current date, the SystemID, and the counter. The format will be \"Year.Month.Day.SystemID.Counter\" (e.g. 201206231010138, 201206231010139)."
  8674. msgstr ""
  8675. #: app/assets/javascripts/app/controllers/email_verify.coffee
  8676. msgid "Woo hoo! Your email address has been verified!"
  8677. msgstr ""
  8678. #: app/assets/javascripts/app/controllers/password_reset_verify.coffee
  8679. msgid "Woo hoo! Your password has been changed!"
  8680. msgstr ""
  8681. #: app/assets/javascripts/app/views/translation/list.jst.eco
  8682. #: app/assets/javascripts/app/views/translation/todo.jst.eco
  8683. msgid "Words"
  8684. msgstr ""
  8685. #: app/assets/javascripts/app/controllers/core_workflow.coffee
  8686. msgid "Workflow"
  8687. msgstr ""
  8688. #: app/assets/javascripts/app/controllers/core_workflow.coffee
  8689. msgid "Workflows"
  8690. msgstr ""
  8691. #: app/assets/javascripts/app/views/report/time_range_picker.jst.eco
  8692. msgid "Year"
  8693. msgstr ""
  8694. #: app/assets/javascripts/app/controllers/_ui_element/time_range.coffee
  8695. msgid "Year(s)"
  8696. msgstr ""
  8697. #: app/assets/javascripts/app/controllers/ticket_zoom/highlighter.coffee
  8698. msgid "Yellow"
  8699. msgstr ""
  8700. #: app/assets/javascripts/app/controllers/_application_controller/_modal_generic_confirm.coffee
  8701. #: app/assets/javascripts/app/controllers/_ui_element/ticket_perform_action.coffee
  8702. #: app/assets/javascripts/app/controllers/tag.coffee
  8703. #: app/assets/javascripts/app/views/ticket_shared_draft_modal.coffee
  8704. msgid "Yes"
  8705. msgstr ""
  8706. #: app/assets/javascripts/app/controllers/widget/import_try_result.coffee
  8707. msgid "Yes, start real import."
  8708. msgstr ""
  8709. #: app/assets/javascripts/app/views/karma/index.jst.eco
  8710. msgid "You are an |%s|."
  8711. msgstr ""
  8712. #: public/assets/chat/views/waiting.eco
  8713. msgid "You are on waiting list position <strong>%s</strong>."
  8714. msgstr ""
  8715. #: app/models/transaction/notification.rb
  8716. msgid "You are receiving this because you are a member of the group of this ticket."
  8717. msgstr ""
  8718. #: app/models/transaction/notification.rb
  8719. msgid "You are receiving this because you are out-of-office replacement for a participant of this ticket."
  8720. msgstr ""
  8721. #: app/models/transaction/notification.rb
  8722. msgid "You are receiving this because you are the owner of this ticket."
  8723. msgstr ""
  8724. #: app/models/transaction/notification.rb
  8725. msgid "You are receiving this because you were mentioned in this ticket."
  8726. msgstr ""
  8727. #: app/assets/javascripts/app/views/facebook/index.jst.eco
  8728. #: app/assets/javascripts/app/views/google/index.jst.eco
  8729. #: app/assets/javascripts/app/views/microsoft365/index.jst.eco
  8730. #: app/assets/javascripts/app/views/twitter/index.jst.eco
  8731. msgid "You can connect %s with Zammad. But first, you will have to connect your Zammad with %s."
  8732. msgstr ""
  8733. #: app/assets/javascripts/app/models/overview.coffee
  8734. msgid "You can create **overviews** for your agents and your customers. These have many purposes, such as serving as a to-do list for your agents.\n\nYou can also create overviews and limit them to specific agents or to groups of agents."
  8735. msgstr ""
  8736. #: app/assets/javascripts/app/views/channel/chat.jst.eco
  8737. msgid "You can create chat widgets for your web pages to allow visitors to chat with you."
  8738. msgstr ""
  8739. #: app/assets/javascripts/app/views/channel/chat.jst.eco
  8740. msgid "You can create multiple chat topics."
  8741. msgstr ""
  8742. #: app/assets/javascripts/app/controllers/_channel/_email_signature.coffee
  8743. msgid "You can define different signatures for each group, which allows you to use a different signature for every department.\n\nOnce you have created a signature here, you will also need to edit the groups where you want to use it."
  8744. msgstr ""
  8745. #: app/assets/javascripts/app/views/facebook/app_config.jst.eco
  8746. #: app/assets/javascripts/app/views/google/app_config.jst.eco
  8747. #: app/assets/javascripts/app/views/microsoft365/app_config.jst.eco
  8748. #: app/assets/javascripts/app/views/telegram/bot_add.jst.eco
  8749. #: app/assets/javascripts/app/views/twitter/app_config.jst.eco
  8750. msgid "You can find a tutorial on how to manage a %s in our online documentation %l."
  8751. msgstr ""
  8752. #: app/assets/javascripts/app/views/profile/token_access.jst.eco
  8753. msgid "You can generate a personal access token for each application you use that needs access to the Zammad API."
  8754. msgstr ""
  8755. #: app/assets/javascripts/app/models/knowledge_base.coffee
  8756. msgid "You can provide different versions of your knowledge base for different locales. Add a language below, then select it in the Knowledge Base Editor to add your translations."
  8757. msgstr ""
  8758. #: app/assets/javascripts/app/views/login.jst.eco
  8759. msgid "You can request your password"
  8760. msgstr ""
  8761. #: app/assets/javascripts/app/views/karma/index.jst.eco
  8762. msgid "You can set goals regarding the number of tickets you want to answer or close every day or every week. Reaching these self-set goals will result in bonus Karma. Zammad also tracks how many days/weeks you have attained your goals, and achieving ongoing \"streaks\" will similarly result in positive Karma."
  8763. msgstr ""
  8764. #: app/assets/javascripts/app/views/settings/storage_provider.jst.eco
  8765. msgid "You can switch between the backend for new attachments even on a system that is already in production without any loss of data."
  8766. msgstr ""
  8767. #: app/assets/javascripts/app/models/postmaster_filter.coffee
  8768. msgid "You can use regular expression by using \"regex:your_reg_exp\"."
  8769. msgstr ""
  8770. #: app/assets/javascripts/app/views/integration/check_mk.jst.eco
  8771. msgid "You can use the following script to post the data to %s."
  8772. msgstr ""
  8773. #: app/assets/javascripts/app/views/customer_not_ticket_exists.jst.eco
  8774. msgid "You currently don't have any tickets."
  8775. msgstr ""
  8776. #: app/controllers/import_freshdesk_controller.rb
  8777. msgid "You do not have administrator permission."
  8778. msgstr ""
  8779. #: app/frontend/shared/router/guards/before/permission.ts
  8780. msgid "You don't have the necessary permissions to access this page."
  8781. msgstr ""
  8782. #: db/seeds/karma_activities.rb
  8783. msgid "You have answered a ticket within 12h"
  8784. msgstr ""
  8785. #: db/seeds/karma_activities.rb
  8786. msgid "You have answered a ticket within 1h"
  8787. msgstr ""
  8788. #: db/seeds/karma_activities.rb
  8789. msgid "You have answered a ticket within 24h"
  8790. msgstr ""
  8791. #: db/seeds/karma_activities.rb
  8792. msgid "You have answered a ticket within 2h"
  8793. msgstr ""
  8794. #: db/seeds/karma_activities.rb
  8795. msgid "You have closed a ticket"
  8796. msgstr ""
  8797. #: db/seeds/karma_activities.rb
  8798. msgid "You have created a ticket"
  8799. msgstr ""
  8800. #: db/seeds/karma_activities.rb
  8801. msgid "You have escalated tickets"
  8802. msgstr ""
  8803. #: app/assets/javascripts/app/views/telegram/index.jst.eco
  8804. msgid "You have no configured %s right now."
  8805. msgstr ""
  8806. #: app/assets/javascripts/app/views/channel/email_account_overview.jst.eco
  8807. #: app/assets/javascripts/app/views/channel/sms_account_overview.jst.eco
  8808. msgid "You have no configured account right now."
  8809. msgstr ""
  8810. #: app/assets/javascripts/app/views/customer_not_ticket_exists.jst.eco
  8811. msgid "You have no tickets to display in this overview."
  8812. msgstr ""
  8813. #: app/assets/javascripts/app/controllers/_plugin/electron_events.coffee
  8814. msgid "You have no unread messages"
  8815. msgstr ""
  8816. #: app/assets/javascripts/app/views/customer_not_ticket_exists.jst.eco
  8817. msgid "You have not created a ticket yet."
  8818. msgstr ""
  8819. #: db/seeds/karma_activities.rb
  8820. msgid "You have tickets that are over 2 days overdue"
  8821. msgstr ""
  8822. #: app/assets/javascripts/app/controllers/_profile/avatar.coffee
  8823. msgid "You have to allow access to your webcam."
  8824. msgstr ""
  8825. #: app/assets/javascripts/app/views/channel/form.jst.eco
  8826. msgid "You need to add the following Javascript code snippet to your web page"
  8827. msgstr ""
  8828. #: app/assets/javascripts/app/views/integration/cti.jst.eco
  8829. msgid "You need to configure the Zammad endpoints in the %s"
  8830. msgstr ""
  8831. #: app/assets/javascripts/app/views/integration/placetel.jst.eco
  8832. #: app/assets/javascripts/app/views/integration/sipgate.jst.eco
  8833. msgid "You need to configure the Zammad endpoints in the %s web interface"
  8834. msgstr ""
  8835. #: app/assets/javascripts/app/controllers/agent_ticket_create.coffee
  8836. #: app/assets/javascripts/app/controllers/ticket_zoom/article_new.coffee
  8837. msgid "You used %s in the text but no attachment could be found. Do you want to continue?"
  8838. msgstr ""
  8839. #: app/assets/javascripts/app/views/karma/index.jst.eco
  8840. msgid "You |accumulate positive Karma| when you regularly answer and close tickets on time and when you use advanced features such as text modules, ticket reminders, or tagging tickets. Zammad |Karma will decrease| when you have re-opened tickets, escalated tickets, or tickets that are two or more days overdue."
  8841. msgstr ""
  8842. #: app/assets/javascripts/app/views/login.jst.eco
  8843. msgid "You're already registered with your email address if you've been in touch with our Support team."
  8844. msgstr ""
  8845. #: app/assets/javascripts/app/controllers/_ui_element/richtext_additions/embed_video_button.coffee
  8846. msgid "YouTube or Vimeo address"
  8847. msgstr ""
  8848. #: app/assets/javascripts/app/controllers/_integration/clearbit.coffee
  8849. msgid "Your API key."
  8850. msgstr ""
  8851. #: app/controllers/first_steps_controller.rb
  8852. msgid "Your Email Configuration"
  8853. msgstr ""
  8854. #: app/assets/javascripts/app/views/generic/login_preview.jst.eco
  8855. #: app/assets/javascripts/app/views/getting_started/base.jst.eco
  8856. msgid "Your Logo"
  8857. msgstr ""
  8858. #: app/assets/javascripts/app/controllers/_profile/token_access.coffee
  8859. msgid "Your New Personal Access Token"
  8860. msgstr ""
  8861. #: app/assets/javascripts/app/views/twitter/list.jst.eco
  8862. msgid "Your Twitter account is not using the Twitter Account Activity API yet and is therefore limited to search terms only. Please add/update the account again via \"add account\"."
  8863. msgstr ""
  8864. #: app/assets/javascripts/app/views/twitter/list.jst.eco
  8865. msgid "Your Twitter app is not using the Twitter Account Activity API yet and is therefore limited to search terms only. Please refer to the documentation %l on how to update your account."
  8866. msgstr ""
  8867. #: app/assets/javascripts/app/views/getting_started/email_pre_configured.jst.eco
  8868. msgid "Your Zammad has the following email address:"
  8869. msgstr ""
  8870. #: app/assets/javascripts/app/controllers/_plugin/user_signup_check.coffee
  8871. msgid "Your account has not been verified. Please click on the link in the verification email."
  8872. msgstr ""
  8873. #: app/assets/javascripts/app/views/facebook/app_config.jst.eco
  8874. #: app/assets/javascripts/app/views/google/app_config.jst.eco
  8875. #: app/assets/javascripts/app/views/microsoft365/app_config.jst.eco
  8876. #: app/assets/javascripts/app/views/twitter/app_config.jst.eco
  8877. #: db/seeds/settings.rb
  8878. msgid "Your callback URL"
  8879. msgstr ""
  8880. #: app/assets/javascripts/app/controllers/knowledge_base/content_controller.coffee
  8881. msgid "Your changes may override someone else's changes. Do you really want to save?"
  8882. msgstr ""
  8883. #: app/assets/javascripts/app/views/integration/exchange_certificate_issue.jst.eco
  8884. msgid "Your connection is not private"
  8885. msgstr ""
  8886. #: app/assets/javascripts/app/views/karma/index.jst.eco
  8887. msgid "Your current level"
  8888. msgstr ""
  8889. #: app/assets/javascripts/app/views/karma/index.jst.eco
  8890. msgid "Your karma is |%s|."
  8891. msgstr ""
  8892. #: app/assets/javascripts/app/controllers/customer_ticket_create.coffee
  8893. msgid "Your user role is not allowed to create new tickets. Please contact your administrator."
  8894. msgstr ""
  8895. #: app/assets/javascripts/app/views/integration/clearbit.jst.eco
  8896. #: app/assets/javascripts/app/views/integration/exchange.jst.eco
  8897. #: app/assets/javascripts/app/views/integration/ldap.jst.eco
  8898. #: app/assets/javascripts/app/views/integration/placetel.jst.eco
  8899. #: app/assets/javascripts/app/views/integration/sipgate.jst.eco
  8900. msgid "Zammad"
  8901. msgstr ""
  8902. #: app/assets/javascripts/app/views/channel/chat.jst.eco
  8903. msgid "Zammad Chat requires jQuery. If you don't already use it on your website, you can add it like this:"
  8904. msgstr ""
  8905. #: app/assets/javascripts/app/views/channel/form.jst.eco
  8906. msgid "Zammad Forms requires jQuery. If you don't already use it on your website, you can add it like this:"
  8907. msgstr ""
  8908. #: db/seeds/community_user_resources.rb
  8909. msgid "Zammad Foundation"
  8910. msgstr ""
  8911. #: db/seeds/settings.rb
  8912. msgid "Zammad GeoCalendar Service"
  8913. msgstr ""
  8914. #: db/seeds/settings.rb
  8915. msgid "Zammad GeoIP Service"
  8916. msgstr ""
  8917. #: db/seeds/settings.rb
  8918. msgid "Zammad Helpdesk"
  8919. msgstr ""
  8920. #: db/seeds/settings.rb
  8921. msgid "Zammad Image Service"
  8922. msgstr ""
  8923. #: app/assets/javascripts/app/controllers/karma.coffee
  8924. msgid "Zammad Karma"
  8925. msgstr ""
  8926. #: app/assets/javascripts/app/views/karma/index.jst.eco
  8927. msgid "Zammad Karma is a powerful tool that tracks and visualizes your productivity."
  8928. msgstr ""
  8929. #: lib/user_agent.rb
  8930. msgid "Zammad User Agent"
  8931. msgstr ""
  8932. #: app/assets/javascripts/app/views/generic/login_preview.jst.eco
  8933. #: app/assets/javascripts/app/views/login.jst.eco
  8934. #: app/frontend/apps/mobile/modules/login/views/Login.vue
  8935. msgid "Zammad is currently in maintenance mode. Only administrators can log in. Please wait until the maintenance window is over."
  8936. msgstr ""
  8937. #: app/assets/javascripts/app/controllers/_plugin/maintenance.coffee
  8938. msgid "Zammad is restarting…"
  8939. msgstr ""
  8940. #: app/assets/javascripts/app/views/widget/switch_back_to_user.jst.eco
  8941. msgid "Zammad looks like this for \"%s\""
  8942. msgstr ""
  8943. #: app/assets/javascripts/app/controllers/_plugin/maintenance.coffee
  8944. msgid "Zammad requires a restart!"
  8945. msgstr ""
  8946. #: app/assets/javascripts/app/controllers/import_zendesk.coffee
  8947. msgid "Zendesk"
  8948. msgstr ""
  8949. #: db/seeds/object_manager_attributes.rb
  8950. msgid "Zip"
  8951. msgstr ""
  8952. #: db/seeds/settings.rb
  8953. msgid "absolute - e. g. \"Monday 09:30\" or \"Tuesday 23. Feb 14:20\""
  8954. msgstr ""
  8955. #: app/assets/javascripts/app/controllers/_ui_element/active.coffee
  8956. msgid "active"
  8957. msgstr ""
  8958. #: app/assets/javascripts/app/controllers/_ui_element/core_workflow_perform.coffee
  8959. msgid "add option"
  8960. msgstr ""
  8961. #: db/seeds/settings.rb
  8962. msgid "admin"
  8963. msgstr ""
  8964. #: app/assets/javascripts/app/controllers/_ui_element/_application_selector.coffee
  8965. msgid "after (absolute)"
  8966. msgstr ""
  8967. #: app/assets/javascripts/app/controllers/_ui_element/_application_selector.coffee
  8968. msgid "after (relative)"
  8969. msgstr ""
  8970. #: app/assets/javascripts/app/views/password/reset_sent.jst.eco
  8971. msgid "again"
  8972. msgstr ""
  8973. #: app/assets/javascripts/app/controllers/_ui_element/timer.coffee
  8974. msgid "and"
  8975. msgstr ""
  8976. #: app/assets/javascripts/app/controllers/knowledge_base/content_can_be_published_form.coffee
  8977. msgid "archived"
  8978. msgstr ""
  8979. #: app/assets/javascripts/app/controllers/ticket_overview.coffee
  8980. #: app/assets/javascripts/app/models/overview.coffee
  8981. #: app/frontend/apps/mobile/modules/ticket/views/TicketOverview.vue
  8982. msgid "ascending"
  8983. msgstr ""
  8984. #: app/assets/javascripts/app/views/ticket_overview/batch_overlay.jst.eco
  8985. msgid "assign tickets"
  8986. msgstr ""
  8987. #: app/assets/javascripts/app/views/generic/datetime.jst.eco
  8988. msgid "at"
  8989. msgstr ""
  8990. #: app/assets/javascripts/app/lib/app_post/utils.coffee
  8991. msgid "attached"
  8992. msgstr ""
  8993. #: app/assets/javascripts/app/lib/app_post/utils.coffee
  8994. msgid "attachment"
  8995. msgstr ""
  8996. #: app/assets/javascripts/app/controllers/_ui_element/core_workflow_perform.coffee
  8997. msgid "auto select"
  8998. msgstr ""
  8999. #: app/assets/javascripts/app/controllers/_ui_element/_application_selector.coffee
  9000. msgid "before (absolute)"
  9001. msgstr ""
  9002. #: app/assets/javascripts/app/controllers/_ui_element/_application_selector.coffee
  9003. msgid "before (relative)"
  9004. msgstr ""
  9005. #: app/assets/javascripts/app/views/generic/sla_times.jst.eco
  9006. #: app/assets/javascripts/app/views/sla/index.jst.eco
  9007. msgid "between agent updates"
  9008. msgstr ""
  9009. #: app/assets/javascripts/app/controllers/cti.coffee
  9010. msgid "busy"
  9011. msgstr ""
  9012. #: app/assets/javascripts/app/controllers/_ui_element/core_workflow_condition.coffee
  9013. msgid "changed to"
  9014. msgstr ""
  9015. #: db/seeds/ticket_article_types.rb
  9016. msgid "chat"
  9017. msgstr ""
  9018. #: app/assets/javascripts/app/views/object_manager/attribute/multi_tree_select.jst.eco
  9019. #: app/assets/javascripts/app/views/object_manager/attribute/tree_select.jst.eco
  9020. msgid "children"
  9021. msgstr ""
  9022. #: app/assets/javascripts/app/controllers/_ui_element/basedate.coffee
  9023. msgid "clear"
  9024. msgstr ""
  9025. #: app/assets/javascripts/app/views/customer_chat/chat_window.jst.eco
  9026. #: app/assets/javascripts/app/views/widget/task_item.jst.eco
  9027. msgid "close"
  9028. msgstr ""
  9029. #: db/seeds/ticket_state_types.rb
  9030. #: db/seeds/ticket_states.rb
  9031. msgid "closed"
  9032. msgstr ""
  9033. #: app/assets/javascripts/app/controllers/cti.coffee
  9034. msgid "connected"
  9035. msgstr ""
  9036. #: app/assets/javascripts/app/controllers/_ui_element/_application_selector.coffee
  9037. #: app/assets/javascripts/app/controllers/_ui_element/core_workflow_condition.coffee
  9038. msgid "contains"
  9039. msgstr ""
  9040. #: app/assets/javascripts/app/controllers/_ui_element/_application_selector.coffee
  9041. #: app/assets/javascripts/app/controllers/_ui_element/core_workflow_condition.coffee
  9042. msgid "contains all"
  9043. msgstr ""
  9044. #: app/assets/javascripts/app/controllers/_ui_element/_application_selector.coffee
  9045. #: app/assets/javascripts/app/controllers/_ui_element/core_workflow_condition.coffee
  9046. msgid "contains all not"
  9047. msgstr ""
  9048. #: app/assets/javascripts/app/controllers/_ui_element/_application_selector.coffee
  9049. #: app/assets/javascripts/app/controllers/_ui_element/core_workflow_condition.coffee
  9050. msgid "contains not"
  9051. msgstr ""
  9052. #: app/assets/javascripts/app/controllers/_ui_element/_application_selector.coffee
  9053. msgid "contains one"
  9054. msgstr ""
  9055. #: app/assets/javascripts/app/controllers/_ui_element/_application_selector.coffee
  9056. msgid "contains one not"
  9057. msgstr ""
  9058. #: app/assets/javascripts/app/views/integration/exchange_last_import.jst.eco
  9059. #: app/assets/javascripts/app/views/integration/exchange_summary.jst.eco
  9060. #: app/assets/javascripts/app/views/integration/ldap_last_import.jst.eco
  9061. #: app/assets/javascripts/app/views/integration/ldap_summary.jst.eco
  9062. #: app/assets/javascripts/app/views/ticket_zoom/meta.jst.eco
  9063. msgid "created"
  9064. msgstr ""
  9065. #: app/assets/javascripts/app/controllers/_ui_element/_application_selector.coffee
  9066. #: app/assets/javascripts/app/controllers/_ui_element/ticket_perform_action.coffee
  9067. msgid "current user"
  9068. msgstr ""
  9069. #: app/assets/javascripts/app/controllers/_ui_element/_application_selector.coffee
  9070. #: app/assets/javascripts/app/controllers/_ui_element/ticket_perform_action.coffee
  9071. msgid "current user organization"
  9072. msgstr ""
  9073. #: lib/calendar_subscriptions/tickets.rb
  9074. msgid "customer"
  9075. msgstr ""
  9076. #: app/assets/javascripts/app/lib/app_post/pretty_date.coffee
  9077. msgid "d"
  9078. msgstr ""
  9079. #: app/assets/javascripts/app/lib/app_post/pretty_date.coffee
  9080. msgid "day"
  9081. msgstr ""
  9082. #: app/assets/javascripts/app/lib/app_post/pretty_date.coffee
  9083. msgid "days"
  9084. msgstr ""
  9085. #: app/assets/javascripts/app/views/integration/ldap_last_import.jst.eco
  9086. #: app/assets/javascripts/app/views/integration/ldap_summary.jst.eco
  9087. msgid "deactivated"
  9088. msgstr ""
  9089. #: app/assets/javascripts/app/views/channel/chat.jst.eco
  9090. #: db/seeds/signatures.rb
  9091. msgid "default"
  9092. msgstr ""
  9093. #: app/assets/javascripts/app/controllers/_application_controller/_modal_generic_destroy_confirm.coffee
  9094. #: app/assets/javascripts/app/controllers/data_privacy.coffee
  9095. #: app/assets/javascripts/app/controllers/ticket_zoom/article_action/delete.coffee
  9096. #: app/assets/javascripts/app/views/data_privacy/preview.jst.eco
  9097. msgid "delete"
  9098. msgstr ""
  9099. #: app/assets/javascripts/app/controllers/ticket_overview.coffee
  9100. #: app/assets/javascripts/app/models/overview.coffee
  9101. #: app/frontend/apps/mobile/modules/ticket/views/TicketOverview.vue
  9102. msgid "descending"
  9103. msgstr ""
  9104. #: app/assets/javascripts/app/views/customer_chat/chat_window.jst.eco
  9105. msgid "disconnect"
  9106. msgstr ""
  9107. #: app/assets/javascripts/app/controllers/cti.coffee
  9108. msgid "does not exist"
  9109. msgstr ""
  9110. #: app/assets/javascripts/app/views/import/freshdesk.jst.eco
  9111. #: app/assets/javascripts/app/views/import/kayako.jst.eco
  9112. #: app/assets/javascripts/app/views/import/otrs.jst.eco
  9113. #: app/assets/javascripts/app/views/import/zendesk.jst.eco
  9114. #: app/assets/javascripts/app/views/widget/invite_user.jst.eco
  9115. msgid "done"
  9116. msgstr ""
  9117. #: app/assets/javascripts/app/controllers/knowledge_base/content_can_be_published_form.coffee
  9118. msgid "draft"
  9119. msgstr ""
  9120. #: app/assets/javascripts/app/views/ticket_overview/batch_overlay.jst.eco
  9121. msgid "drag here to cancel"
  9122. msgstr ""
  9123. #: app/assets/javascripts/app/views/integration/placetel.jst.eco
  9124. #: app/assets/javascripts/app/views/integration/sipgate.jst.eco
  9125. msgid "e. g. user@example.com"
  9126. msgstr ""
  9127. #: app/assets/javascripts/app/views/profile/out_of_office.jst.eco
  9128. msgid "e.g."
  9129. msgstr ""
  9130. #: app/assets/javascripts/app/views/generic/drox.jst.eco
  9131. msgid "edit"
  9132. msgstr ""
  9133. #: app/frontend/apps/mobile/composables/useEditedBy.ts
  9134. msgid "edited %s"
  9135. msgstr ""
  9136. #: app/frontend/apps/mobile/composables/useEditedBy.ts
  9137. msgid "edited %s by %s"
  9138. msgstr ""
  9139. #: db/seeds/ticket_article_types.rb
  9140. msgid "email"
  9141. msgstr ""
  9142. #: app/assets/javascripts/app/controllers/_application_controller/_modal_generic_history.coffee
  9143. msgid "email sent to '%s'"
  9144. msgstr ""
  9145. #: app/assets/javascripts/app/lib/app_post/utils.coffee
  9146. msgid "enclosed"
  9147. msgstr ""
  9148. #: app/assets/javascripts/app/lib/app_post/utils.coffee
  9149. msgid "enclosure"
  9150. msgstr ""
  9151. #: app/assets/javascripts/app/models/ticket.coffee
  9152. msgid "escalated"
  9153. msgstr ""
  9154. #: app/assets/javascripts/app/controllers/_profile/calendar_subscriptions.coffee
  9155. #: app/assets/javascripts/app/views/ticket_zoom/meta.jst.eco
  9156. msgid "escalation"
  9157. msgstr ""
  9158. #: db/seeds/macros.rb
  9159. msgid "example macro"
  9160. msgstr ""
  9161. #: db/seeds/ticket_article_types.rb
  9162. msgid "facebook direct-message"
  9163. msgstr ""
  9164. #: db/seeds/ticket_article_types.rb
  9165. msgid "facebook feed comment"
  9166. msgstr ""
  9167. #: db/seeds/ticket_article_types.rb
  9168. msgid "facebook feed post"
  9169. msgstr ""
  9170. #: app/assets/javascripts/app/views/integration/exchange_last_import.jst.eco
  9171. #: app/assets/javascripts/app/views/integration/exchange_summary.jst.eco
  9172. #: app/assets/javascripts/app/views/integration/ldap_last_import.jst.eco
  9173. #: app/assets/javascripts/app/views/integration/ldap_summary.jst.eco
  9174. msgid "failed"
  9175. msgstr ""
  9176. #: db/seeds/ticket_article_types.rb
  9177. msgid "fax"
  9178. msgstr ""
  9179. #: app/assets/javascripts/app/controllers/_ui_element/core_workflow_perform.coffee
  9180. msgid "fill in"
  9181. msgstr ""
  9182. #: app/assets/javascripts/app/controllers/_ui_element/core_workflow_perform.coffee
  9183. msgid "fill in empty"
  9184. msgstr ""
  9185. #: app/assets/javascripts/app/views/generic/sla_times.jst.eco
  9186. #: app/assets/javascripts/app/views/sla/index.jst.eco
  9187. msgid "for an agent to respond"
  9188. msgstr ""
  9189. #: app/assets/javascripts/app/controllers/_application_controller/_modal_generic_history.coffee
  9190. msgid "from"
  9191. msgstr ""
  9192. #: app/assets/javascripts/app/controllers/_ui_element/_application_selector.coffee
  9193. msgid "from (relative)"
  9194. msgstr ""
  9195. #: app/assets/javascripts/app/lib/app_post/pretty_date.coffee
  9196. msgid "h"
  9197. msgstr ""
  9198. #: app/assets/javascripts/app/controllers/_ui_element/_application_selector.coffee
  9199. #: app/assets/javascripts/app/controllers/_ui_element/core_workflow_condition.coffee
  9200. #: app/assets/javascripts/app/views/object_manager/index.jst.eco
  9201. msgid "has changed"
  9202. msgstr ""
  9203. #: app/assets/javascripts/app/views/login.jst.eco
  9204. msgid "here"
  9205. msgstr ""
  9206. #: app/assets/javascripts/app/controllers/_ui_element/core_workflow_perform.coffee
  9207. msgid "hide"
  9208. msgstr ""
  9209. #: app/assets/javascripts/app/lib/app_post/pretty_date.coffee
  9210. msgid "hour"
  9211. msgstr ""
  9212. #: app/assets/javascripts/app/lib/app_post/pretty_date.coffee
  9213. #: app/assets/javascripts/app/views/sla/index.jst.eco
  9214. msgid "hours"
  9215. msgstr ""
  9216. #: app/assets/javascripts/app/controllers/idoit_object_selector.coffee
  9217. #: app/assets/javascripts/app/controllers/ticket_zoom/sidebar_idoit.coffee
  9218. msgid "i-doit"
  9219. msgstr ""
  9220. #: db/seeds/settings.rb
  9221. msgid "i-doit config"
  9222. msgstr ""
  9223. #: db/seeds/settings.rb
  9224. msgid "i-doit integration"
  9225. msgstr ""
  9226. #: app/assets/javascripts/app/views/generic/ical_feed.jst.eco
  9227. msgid "iCalendar links from Google will get fetched once a day"
  9228. msgstr ""
  9229. #: app/assets/javascripts/app/lib/app_post/pretty_date.coffee
  9230. msgid "in %s"
  9231. msgstr ""
  9232. #: app/frontend/shared/i18n/dates.ts
  9233. msgid "in %s days"
  9234. msgstr ""
  9235. #: app/frontend/shared/i18n/dates.ts
  9236. msgid "in %s hours"
  9237. msgstr ""
  9238. #: app/frontend/shared/i18n/dates.ts
  9239. msgid "in %s minutes"
  9240. msgstr ""
  9241. #: app/frontend/shared/i18n/dates.ts
  9242. msgid "in %s months"
  9243. msgstr ""
  9244. #: app/frontend/shared/i18n/dates.ts
  9245. msgid "in %s weeks"
  9246. msgstr ""
  9247. #: app/frontend/shared/i18n/dates.ts
  9248. msgid "in %s years"
  9249. msgstr ""
  9250. #: app/frontend/shared/i18n/dates.ts
  9251. msgid "in 1 day"
  9252. msgstr ""
  9253. #: app/frontend/shared/i18n/dates.ts
  9254. msgid "in 1 hour"
  9255. msgstr ""
  9256. #: app/frontend/shared/i18n/dates.ts
  9257. msgid "in 1 minute"
  9258. msgstr ""
  9259. #: app/frontend/shared/i18n/dates.ts
  9260. msgid "in 1 month"
  9261. msgstr ""
  9262. #: app/frontend/shared/i18n/dates.ts
  9263. msgid "in 1 week"
  9264. msgstr ""
  9265. #: app/frontend/shared/i18n/dates.ts
  9266. msgid "in 1 year"
  9267. msgstr ""
  9268. #: app/assets/javascripts/app/views/generic/sla_times.jst.eco
  9269. msgid "in hours"
  9270. msgstr ""
  9271. #: app/assets/javascripts/app/views/data_privacy/tasks.jst.eco
  9272. msgid "in process"
  9273. msgstr ""
  9274. #: app/assets/javascripts/app/controllers/_ui_element/active.coffee
  9275. #: app/assets/javascripts/app/lib/app_post/utils.coffee
  9276. #: app/assets/javascripts/app/models/webhook.coffee
  9277. #: app/assets/javascripts/app/views/generic/object_search/item_object.jst.eco
  9278. #: app/assets/javascripts/app/views/generic/object_search/item_organization.jst.eco
  9279. #: app/assets/javascripts/app/views/generic/searchable_select_option.jst.eco
  9280. msgid "inactive"
  9281. msgstr ""
  9282. #: app/assets/javascripts/app/controllers/_ui_element/ticket_perform_action.coffee
  9283. #: app/assets/javascripts/app/controllers/knowledge_base/content_can_be_published_form.coffee
  9284. msgid "internal"
  9285. msgstr ""
  9286. #: app/assets/javascripts/app/controllers/_ui_element/_application_selector.coffee
  9287. #: app/assets/javascripts/app/controllers/_ui_element/core_workflow_condition.coffee
  9288. msgid "is"
  9289. msgstr ""
  9290. #: app/assets/javascripts/app/controllers/_ui_element/_application_selector.coffee
  9291. msgid "is in working time"
  9292. msgstr ""
  9293. #: app/assets/javascripts/app/controllers/_ui_element/_application_selector.coffee
  9294. #: app/assets/javascripts/app/controllers/_ui_element/core_workflow_condition.coffee
  9295. msgid "is not"
  9296. msgstr ""
  9297. #: app/assets/javascripts/app/controllers/_ui_element/_application_selector.coffee
  9298. msgid "is not in working time"
  9299. msgstr ""
  9300. #: app/assets/javascripts/app/models/_application_model.coffee
  9301. msgid "is required"
  9302. msgstr ""
  9303. #: app/assets/javascripts/app/controllers/_ui_element/core_workflow_condition.coffee
  9304. msgid "is set"
  9305. msgstr ""
  9306. #: app/assets/javascripts/app/views/translation/todo.jst.eco
  9307. msgid "is the same"
  9308. msgstr ""
  9309. #: app/assets/javascripts/app/lib/app_post/pretty_date.coffee
  9310. msgid "just now"
  9311. msgstr ""
  9312. #: app/assets/javascripts/app/views/karma/index.jst.eco
  9313. msgid "last month"
  9314. msgstr ""
  9315. #: app/assets/javascripts/app/views/karma/index.jst.eco
  9316. msgid "last week"
  9317. msgstr ""
  9318. #: db/seeds/settings.rb
  9319. msgid "left"
  9320. msgstr ""
  9321. #: app/assets/javascripts/app/lib/app_post/pretty_date.coffee
  9322. msgid "m"
  9323. msgstr ""
  9324. #: app/assets/javascripts/app/controllers/_ui_element/core_workflow_condition.coffee
  9325. msgid "match all modules"
  9326. msgstr ""
  9327. #: app/assets/javascripts/app/controllers/_ui_element/core_workflow_condition.coffee
  9328. msgid "match no modules"
  9329. msgstr ""
  9330. #: app/assets/javascripts/app/controllers/_ui_element/core_workflow_condition.coffee
  9331. msgid "match one module"
  9332. msgstr ""
  9333. #: app/assets/javascripts/app/views/data_privacy/preview.jst.eco
  9334. #: app/assets/javascripts/app/views/generic/application_selector.jst.eco
  9335. msgid "matches found"
  9336. msgstr ""
  9337. #: app/assets/javascripts/app/views/cti/caller_log.jst.eco
  9338. #: app/assets/javascripts/app/views/cti/caller_log_avatar.jst.eco
  9339. #: app/assets/javascripts/app/views/navigation/menu_cti_ringing.jst.eco
  9340. msgid "maybe"
  9341. msgstr ""
  9342. #: app/frontend/apps/mobile/composables/useEditedBy.ts
  9343. msgid "me"
  9344. msgstr ""
  9345. #: db/seeds/ticket_state_types.rb
  9346. #: db/seeds/ticket_states.rb
  9347. msgid "merged"
  9348. msgstr ""
  9349. #: app/assets/javascripts/app/controllers/_ui_element/ticket_perform_action.coffee
  9350. msgid "message"
  9351. msgstr ""
  9352. #: app/assets/javascripts/app/lib/app_post/pretty_date.coffee
  9353. msgid "minute"
  9354. msgstr ""
  9355. #: app/assets/javascripts/app/lib/app_post/pretty_date.coffee
  9356. msgid "minutes"
  9357. msgstr ""
  9358. #: app/assets/javascripts/app/views/integration/cti.jst.eco
  9359. #: app/assets/javascripts/app/views/integration/placetel.jst.eco
  9360. #: app/assets/javascripts/app/views/integration/sipgate.jst.eco
  9361. msgid "my own note"
  9362. msgstr ""
  9363. #: db/seeds/ticket_state_types.rb
  9364. #: db/seeds/ticket_states.rb
  9365. msgid "new"
  9366. msgstr ""
  9367. #: app/assets/javascripts/app/controllers/_profile/calendar_subscriptions.coffee
  9368. msgid "new & open"
  9369. msgstr ""
  9370. #: app/assets/javascripts/app/controllers/_ui_element/boolean.coffee
  9371. #: app/assets/javascripts/app/views/object_manager/attribute/boolean.jst.eco
  9372. msgid "no"
  9373. msgstr ""
  9374. #: app/assets/javascripts/app/views/monitoring.jst.eco
  9375. msgid "no issues"
  9376. msgstr ""
  9377. #: app/assets/javascripts/app/controllers/ticket_zoom/sidebar_article_attachments.coffee
  9378. #: app/assets/javascripts/app/controllers/ticket_zoom/sidebar_idoit.coffee
  9379. #: app/assets/javascripts/app/views/channel/email_account_overview.jst.eco
  9380. #: app/assets/javascripts/app/views/customer_chat/chat_list.jst.eco
  9381. #: app/assets/javascripts/app/views/customer_chat/user_list.jst.eco
  9382. #: app/assets/javascripts/app/views/google/list.jst.eco
  9383. #: app/assets/javascripts/app/views/integration/idoit_object_result.jst.eco
  9384. #: app/assets/javascripts/app/views/microsoft365/list.jst.eco
  9385. #: app/assets/javascripts/app/views/profile/token_access.jst.eco
  9386. #: app/assets/javascripts/app/views/widget/ticket_stats_list.jst.eco
  9387. #: db/seeds/settings.rb
  9388. msgid "none"
  9389. msgstr ""
  9390. #: app/assets/javascripts/app/controllers/cti.coffee
  9391. msgid "not reached"
  9392. msgstr ""
  9393. #: app/assets/javascripts/app/controllers/_ui_element/core_workflow_condition.coffee
  9394. msgid "not set"
  9395. msgstr ""
  9396. #: app/assets/javascripts/app/controllers/_ui_element/_application_selector.coffee
  9397. msgid "not set (not defined)"
  9398. msgstr ""
  9399. #: app/assets/javascripts/app/views/translation/todo.jst.eco
  9400. msgid "not translated"
  9401. msgstr ""
  9402. #: app/assets/javascripts/app/controllers/ticket_zoom/article_action/note.coffee
  9403. #: db/seeds/ticket_article_types.rb
  9404. msgid "note"
  9405. msgstr ""
  9406. #: app/assets/javascripts/app/controllers/_application_controller/_modal_generic_history.coffee
  9407. msgid "notification sent to '%s'"
  9408. msgstr ""
  9409. #: app/assets/javascripts/app/controllers/knowledge_base/content_can_be_published_form.coffee
  9410. msgid "now"
  9411. msgstr ""
  9412. #: db/seeds/ticket_state_types.rb
  9413. #: db/seeds/ticket_states.rb
  9414. msgid "open"
  9415. msgstr ""
  9416. #: app/assets/javascripts/app/controllers/_channel/google.coffee
  9417. msgid "optional"
  9418. msgstr ""
  9419. #: app/assets/javascripts/app/views/integration/smime_certificate_add.jst.eco
  9420. #: app/assets/javascripts/app/views/integration/smime_private_key_add.jst.eco
  9421. msgid "or"
  9422. msgstr ""
  9423. #: app/assets/javascripts/app/views/login.jst.eco
  9424. msgid "or sign in using"
  9425. msgstr ""
  9426. #: app/assets/javascripts/app/controllers/_profile/calendar_subscriptions.coffee
  9427. msgid "pending"
  9428. msgstr ""
  9429. #: db/seeds/ticket_state_types.rb
  9430. msgid "pending action"
  9431. msgstr ""
  9432. #: db/seeds/ticket_states.rb
  9433. msgid "pending close"
  9434. msgstr ""
  9435. #: db/seeds/ticket_state_types.rb
  9436. #: db/seeds/ticket_states.rb
  9437. msgid "pending reminder"
  9438. msgstr ""
  9439. #: app/assets/javascripts/app/controllers/ticket_zoom/article_action/phone_reply.coffee
  9440. #: db/seeds/ticket_article_types.rb
  9441. msgid "phone"
  9442. msgstr ""
  9443. #: app/assets/javascripts/app/controllers/_ui_element/ticket_perform_action.coffee
  9444. msgid "public"
  9445. msgstr ""
  9446. #: app/assets/javascripts/app/controllers/knowledge_base/content_can_be_published_form.coffee
  9447. msgid "published"
  9448. msgstr ""
  9449. #: app/assets/javascripts/app/models/ticket.coffee
  9450. msgid "reached"
  9451. msgstr ""
  9452. #: app/assets/javascripts/app/controllers/_ui_element/core_workflow_condition.coffee
  9453. msgid "regex match"
  9454. msgstr ""
  9455. #: app/assets/javascripts/app/controllers/_ui_element/core_workflow_condition.coffee
  9456. msgid "regex mismatch"
  9457. msgstr ""
  9458. #: db/seeds/settings.rb
  9459. msgid "relative - e. g. \"2 hours ago\" or \"2 days and 15 minutes ago\""
  9460. msgstr ""
  9461. #: app/assets/javascripts/app/controllers/_ui_element/core_workflow_perform.coffee
  9462. #: app/assets/javascripts/app/views/profile/linked_accounts.jst.eco
  9463. msgid "remove"
  9464. msgstr ""
  9465. #: app/assets/javascripts/app/controllers/_ui_element/core_workflow_perform.coffee
  9466. msgid "remove option"
  9467. msgstr ""
  9468. #: db/seeds/ticket_state_types.rb
  9469. #: db/seeds/ticket_states.rb
  9470. msgid "removed"
  9471. msgstr ""
  9472. #: app/assets/javascripts/app/controllers/ticket_zoom/article_action/email_reply.coffee
  9473. #: app/assets/javascripts/app/controllers/ticket_zoom/article_action/facebook_reply.coffee
  9474. #: app/assets/javascripts/app/controllers/ticket_zoom/article_action/sms_reply.coffee
  9475. #: app/assets/javascripts/app/controllers/ticket_zoom/article_action/telegram.coffee
  9476. #: app/assets/javascripts/app/controllers/ticket_zoom/article_action/twitter_reply.coffee
  9477. msgid "reply"
  9478. msgstr ""
  9479. #: db/seeds/settings.rb
  9480. msgid "right"
  9481. msgstr ""
  9482. #: app/assets/javascripts/app/controllers/cti.coffee
  9483. msgid "ringing"
  9484. msgstr ""
  9485. #: app/assets/javascripts/app/views/object_manager/attribute/multi_tree_select.jst.eco
  9486. #: app/assets/javascripts/app/views/object_manager/attribute/tree_select.jst.eco
  9487. msgid "row"
  9488. msgstr ""
  9489. #: app/assets/javascripts/app/views/ticket_overview/batch_overlay.jst.eco
  9490. msgid "run macro"
  9491. msgstr ""
  9492. #: app/assets/javascripts/app/controllers/_ui_element/core_workflow_perform.coffee
  9493. msgid "select"
  9494. msgstr ""
  9495. #: app/assets/javascripts/app/views/generic/attachment.jst.eco
  9496. #: app/assets/javascripts/app/views/ticket_zoom/article_new.jst.eco
  9497. msgid "select attachment…"
  9498. msgstr ""
  9499. #: app/assets/javascripts/app/controllers/_ui_element/core_workflow_perform.coffee
  9500. msgid "set fixed to"
  9501. msgstr ""
  9502. #: app/assets/javascripts/app/controllers/_ui_element/core_workflow_perform.coffee
  9503. msgid "set mandatory"
  9504. msgstr ""
  9505. #: app/assets/javascripts/app/controllers/_ui_element/core_workflow_perform.coffee
  9506. msgid "set optional"
  9507. msgstr ""
  9508. #: app/assets/javascripts/app/controllers/_ui_element/core_workflow_perform.coffee
  9509. msgid "set readonly"
  9510. msgstr ""
  9511. #: app/assets/javascripts/app/views/ticket_zoom/article_new.jst.eco
  9512. msgid "set to internal"
  9513. msgstr ""
  9514. #: app/assets/javascripts/app/controllers/ticket_zoom/article_action/internal.coffee
  9515. #: app/assets/javascripts/app/views/ticket_zoom/article_new.jst.eco
  9516. msgid "set to public"
  9517. msgstr ""
  9518. #: app/assets/javascripts/app/controllers/_ui_element/core_workflow_perform.coffee
  9519. msgid "show"
  9520. msgstr ""
  9521. #: app/assets/javascripts/app/views/generic/object_search/item_organization_members.jst.eco
  9522. #: app/assets/javascripts/app/views/organization_profile/object.jst.eco
  9523. #: app/assets/javascripts/app/views/user_profile/object.jst.eco
  9524. #: app/assets/javascripts/app/views/widget/organization.jst.eco
  9525. #: app/assets/javascripts/app/views/widget/user.jst.eco
  9526. msgid "show more"
  9527. msgstr ""
  9528. #: db/seeds/settings.rb
  9529. msgid "sipgate.io Token"
  9530. msgstr ""
  9531. #: db/seeds/settings.rb
  9532. msgid "sipgate.io alternative FQDN"
  9533. msgstr ""
  9534. #: db/seeds/settings.rb
  9535. msgid "sipgate.io config"
  9536. msgstr ""
  9537. #: db/seeds/settings.rb
  9538. msgid "sipgate.io integration"
  9539. msgstr ""
  9540. #: app/assets/javascripts/app/controllers/ticket_zoom/time_accounting.coffee
  9541. msgid "skip"
  9542. msgstr ""
  9543. #: app/assets/javascripts/app/views/integration/exchange_last_import.jst.eco
  9544. #: app/assets/javascripts/app/views/integration/exchange_summary.jst.eco
  9545. #: app/assets/javascripts/app/views/integration/ldap_last_import.jst.eco
  9546. #: app/assets/javascripts/app/views/integration/ldap_summary.jst.eco
  9547. msgid "skipped"
  9548. msgstr ""
  9549. #: db/seeds/ticket_article_types.rb
  9550. msgid "sms"
  9551. msgstr ""
  9552. #: app/assets/javascripts/app/controllers/_ui_element/_application_selector.coffee
  9553. #: app/assets/javascripts/app/controllers/_ui_element/ticket_perform_action.coffee
  9554. msgid "specific organization"
  9555. msgstr ""
  9556. #: app/assets/javascripts/app/controllers/_ui_element/_application_selector.coffee
  9557. #: app/assets/javascripts/app/controllers/_ui_element/ticket_perform_action.coffee
  9558. msgid "specific user"
  9559. msgstr ""
  9560. #: app/assets/javascripts/app/controllers/ticket_zoom/article_action/split.coffee
  9561. msgid "split"
  9562. msgstr ""
  9563. #: app/assets/javascripts/app/views/getting_started/email.jst.eco
  9564. msgid "support@example.com"
  9565. msgstr ""
  9566. #: db/seeds/ticket_article_types.rb
  9567. msgid "telegram personal-message"
  9568. msgstr ""
  9569. #: app/assets/javascripts/app/controllers/_application_controller/_modal_generic_history.coffee
  9570. msgid "this ticket was merged into ticket %s"
  9571. msgstr ""
  9572. #: app/frontend/apps/mobile/components/Organization/OrganizationItem.vue
  9573. #: app/frontend/apps/mobile/components/User/UserItem.vue
  9574. #: lib/calendar_subscriptions/tickets.rb
  9575. msgid "ticket"
  9576. msgstr ""
  9577. #: app/assets/javascripts/app/controllers/_application_controller/_modal_generic_history.coffee
  9578. msgid "ticket %s was merged into this ticket"
  9579. msgstr ""
  9580. #: lib/calendar_subscriptions/tickets.rb
  9581. msgid "ticket escalation"
  9582. msgstr ""
  9583. #: db/seeds/settings.rb
  9584. msgid "ticket.agent"
  9585. msgstr ""
  9586. #: db/seeds/settings.rb
  9587. msgid "ticket.customer"
  9588. msgstr ""
  9589. #: app/assets/javascripts/app/controllers/_ui_element/_application_selector.coffee
  9590. msgid "till (relative)"
  9591. msgstr ""
  9592. #: db/seeds/settings.rb
  9593. msgid "timestamp - e. g. \"2018-08-30 14:30\""
  9594. msgstr ""
  9595. #: app/views/knowledge_base/public/not_found.html.erb
  9596. msgid "to go to the homepage."
  9597. msgstr ""
  9598. #: app/assets/javascripts/app/controllers/_ui_element/basedate.coffee
  9599. #: app/assets/javascripts/app/controllers/chat.coffee
  9600. #: app/assets/javascripts/app/views/channel/chat.jst.eco
  9601. msgid "today"
  9602. msgstr ""
  9603. #: app/assets/javascripts/app/views/password/reset_failed.jst.eco
  9604. msgid "try again"
  9605. msgstr ""
  9606. #: db/seeds/ticket_article_types.rb
  9607. msgid "twitter direct-message"
  9608. msgstr ""
  9609. #: db/seeds/ticket_article_types.rb
  9610. msgid "twitter status"
  9611. msgstr ""
  9612. #: app/assets/javascripts/app/controllers/_ui_element/ticket_perform_action.coffee
  9613. msgid "unassign user"
  9614. msgstr ""
  9615. #: app/assets/javascripts/app/controllers/_ui_element/core_workflow_perform.coffee
  9616. msgid "unset readonly"
  9617. msgstr ""
  9618. #: app/assets/javascripts/app/views/integration/exchange_last_import.jst.eco
  9619. #: app/assets/javascripts/app/views/integration/exchange_summary.jst.eco
  9620. #: app/assets/javascripts/app/views/integration/ldap_last_import.jst.eco
  9621. #: app/assets/javascripts/app/views/integration/ldap_summary.jst.eco
  9622. msgid "untouched"
  9623. msgstr ""
  9624. #: app/assets/javascripts/app/views/integration/exchange_last_import.jst.eco
  9625. #: app/assets/javascripts/app/views/integration/exchange_summary.jst.eco
  9626. #: app/assets/javascripts/app/views/integration/ldap_last_import.jst.eco
  9627. #: app/assets/javascripts/app/views/integration/ldap_summary.jst.eco
  9628. msgid "updated"
  9629. msgstr ""
  9630. #: db/seeds/ticket_article_types.rb
  9631. msgid "web"
  9632. msgstr ""
  9633. #: app/assets/javascripts/app/views/telegram/bot_edit.jst.eco
  9634. msgid "welcome message"
  9635. msgstr ""
  9636. #: app/assets/javascripts/app/views/object_manager/index.jst.eco
  9637. msgid "will be created"
  9638. msgstr ""
  9639. #: app/assets/javascripts/app/views/object_manager/index.jst.eco
  9640. msgid "will be deleted"
  9641. msgstr ""
  9642. #: app/assets/javascripts/app/controllers/_ui_element/_application_selector.coffee
  9643. msgid "within last (relative)"
  9644. msgstr ""
  9645. #: app/assets/javascripts/app/controllers/_ui_element/_application_selector.coffee
  9646. msgid "within next (relative)"
  9647. msgstr ""
  9648. #: app/assets/javascripts/app/controllers/_ui_element/boolean.coffee
  9649. #: app/assets/javascripts/app/views/object_manager/attribute/boolean.jst.eco
  9650. msgid "yes"
  9651. msgstr ""
  9652. #: app/assets/javascripts/app/views/settings/ticket_number.jst.eco
  9653. msgid "|Increment| increases the ticket number. The SystemID and the counter are used with \"SystemID.Counter\" format (e.g. 1010138, 1010139)."
  9654. msgstr ""
  9655. #: app/assets/javascripts/app/views/settings/ticket_hook_position.jst.eco
  9656. msgid "|Left| means |[Ticket#12345] Some Subject|"
  9657. msgstr ""
  9658. #: app/assets/javascripts/app/views/settings/ticket_hook_position.jst.eco
  9659. msgid "|None| means |Some Subject| (without ticket number), in which case you should enable \"postmaster___follow___up___search___in\" to recognize follow-ups based on email headers and/or body."
  9660. msgstr ""
  9661. #: app/assets/javascripts/app/views/settings/ticket_hook_position.jst.eco
  9662. msgid "|Right| means |Some Subject [Ticket#12345]|"
  9663. msgstr ""
  9664. #: app/assets/javascripts/app/controllers/_plugin/keyboard_shortcuts.coffee
  9665. msgid "…add object link URL"
  9666. msgstr ""
  9667. #: app/assets/javascripts/app/controllers/_plugin/keyboard_shortcuts.coffee
  9668. msgid "…add object title"
  9669. msgstr ""
  9670. #: app/assets/javascripts/app/controllers/_plugin/keyboard_shortcuts.coffee
  9671. msgid "…of whole text area"
  9672. msgstr ""
  9673. #: app/assets/javascripts/app/views/dashboard/stats/ticket_waiting_time.jst.eco
  9674. msgid "∅ Waiting time today"
  9675. msgstr ""