revisions_288.patch 223 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074
  1. === modified file 'data/dekstop-file-editor.desktop'
  2. --- data/dekstop-file-editor.desktop 2017-02-23 13:51:49 +0000
  3. +++ data/dekstop-file-editor.desktop 2018-10-19 18:45:08 +0000
  4. @@ -1,10 +1,13 @@
  5. [Desktop Entry]
  6. Type=Application
  7. Name=Shortcut Editor
  8. +Name[pt_PT]=Editor de atalhos
  9. +GenericName[pt_PT]=Ferramenta de configuração
  10. Exec=desktop-file-editor %f
  11. Terminal=false
  12. Categories=Utility;GTK;
  13. MimeType=application/x-desktop;
  14. Comment=Create new or change existing desktop entry
  15. +Comment[pt_PT]=Crie ou edite ficheiros desktop
  16. Icon=applications-other
  17. -NoDisplay=False
  18. +NoDisplay=false
  19. === modified file 'data/jwm-settings-manager-autostart.desktop'
  20. --- data/jwm-settings-manager-autostart.desktop 2017-01-29 14:15:16 +0000
  21. +++ data/jwm-settings-manager-autostart.desktop 2018-10-19 18:45:08 +0000
  22. @@ -1,9 +1,11 @@
  23. [Desktop Entry]
  24. Name=Startup Program Settings
  25. Name[en_US]=Startup Program Settings
  26. +Name[pt_PT]=Definições de programas de arranque
  27. GenericName=Configuration Tool
  28. GenericName[fr]=Outil de configuration
  29. GenericName[lv]=Konfigurācijas rīks
  30. +GenericName[pt_PT]=Ferramenta de configuração
  31. Icon=jsm-autostart
  32. Exec=jwm-settings-manager --autostart
  33. Terminal=false
  34. === modified file 'data/jwm-settings-manager-desktop.desktop'
  35. --- data/jwm-settings-manager-desktop.desktop 2017-01-29 14:15:16 +0000
  36. +++ data/jwm-settings-manager-desktop.desktop 2018-10-19 18:45:08 +0000
  37. @@ -2,7 +2,9 @@
  38. Name=Desktop Settings
  39. Name[en_US]=Desktop Settings
  40. Name[en_GB]=Desktop Settings
  41. +Name[pt_PT]=Definições da área de trabalho
  42. GenericName=Configuration Tool
  43. +GenericName[pt_PT]=Ferramenta de configuração
  44. Icon=jsm-desktop
  45. Exec=jwm-settings-manager --desktop
  46. Terminal=false
  47. === modified file 'data/jwm-settings-manager-fonts.desktop'
  48. --- data/jwm-settings-manager-fonts.desktop 2017-01-29 14:15:16 +0000
  49. +++ data/jwm-settings-manager-fonts.desktop 2018-10-19 18:45:08 +0000
  50. @@ -1,9 +1,11 @@
  51. [Desktop Entry]
  52. Name=Font Settings
  53. Name[en_US]=Font Settings
  54. +Name[pt_PT]=Definições de letras
  55. GenericName=Configuration Tool
  56. GenericName[fr]=Outil de configuration
  57. GenericName[lv]=Konfigurācijas rīks
  58. +GenericName[pt_PT]=Ferramenta de configuração
  59. Icon=jsm-fonts
  60. Exec=jwm-settings-manager --font
  61. Terminal=false
  62. === modified file 'data/jwm-settings-manager-icons.desktop'
  63. --- data/jwm-settings-manager-icons.desktop 2017-01-29 14:15:16 +0000
  64. +++ data/jwm-settings-manager-icons.desktop 2018-10-19 18:45:08 +0000
  65. @@ -1,9 +1,11 @@
  66. [Desktop Entry]
  67. Name=Icon Settings
  68. Name[en_US]=Icon Settings
  69. +Name[pt_PT]=Definições de ícones
  70. GenericName=Configuration Tool
  71. GenericName[fr]=Outil de configuration
  72. GenericName[lv]=Konfigurācijas rīks
  73. +GenericName[pt_PT]=Ferramenta de configuração
  74. Icon=jsm-icons
  75. Exec=jwm-settings-manager --icons
  76. Terminal=false
  77. === modified file 'data/jwm-settings-manager-keyboard.desktop'
  78. --- data/jwm-settings-manager-keyboard.desktop 2017-01-29 14:15:16 +0000
  79. +++ data/jwm-settings-manager-keyboard.desktop 2018-10-19 18:45:08 +0000
  80. @@ -1,9 +1,11 @@
  81. [Desktop Entry]
  82. Name=Keyboard Settings
  83. Name[en_US]=Keyboard Settings
  84. +Name[pt_PT]=Definições do teclado
  85. GenericName=Configuration Tool
  86. GenericName[fr]=Outil de configuration
  87. GenericName[lv]=Konfigurācijas rīks
  88. +GenericName[pt_PT]=Ferramenta de configuração
  89. Icon=jsm-keyboard
  90. Exec=jwm-settings-manager --keyboard
  91. Terminal=false
  92. === modified file 'data/jwm-settings-manager-mouse.desktop'
  93. --- data/jwm-settings-manager-mouse.desktop 2017-01-29 14:15:16 +0000
  94. +++ data/jwm-settings-manager-mouse.desktop 2018-10-19 18:45:08 +0000
  95. @@ -1,9 +1,11 @@
  96. [Desktop Entry]
  97. Name=Mouse/Touchpad Settings
  98. Name[en_US]=Mouse/Touchpad Settings
  99. +Name[pt_PT]=Definições do rato/touchpad
  100. GenericName=Configuration Tool
  101. GenericName[fr]=Outil de configuration
  102. GenericName[lv]=Konfigurācijas rīks
  103. +GenericName[pt_PT]=Ferramenta de configuração
  104. Icon=jsm-mouse
  105. Exec=fltk-mouse
  106. Terminal=false
  107. === modified file 'data/jwm-settings-manager-panel.desktop'
  108. --- data/jwm-settings-manager-panel.desktop 2017-01-29 14:15:16 +0000
  109. +++ data/jwm-settings-manager-panel.desktop 2018-10-19 18:45:08 +0000
  110. @@ -1,9 +1,11 @@
  111. [Desktop Entry]
  112. Name=Panel Settings
  113. Name[en_US]=Panel Settings
  114. +Name[pt_PT]=Definições do painel
  115. GenericName=Configuration Tool
  116. GenericName[fr]=Outil de configuration
  117. GenericName[lv]=Konfigurācijas rīks
  118. +GenericName[pt_PT]=Ferramenta de configuração
  119. Icon=jsm-panel
  120. Exec=jwm-settings-manager --panel
  121. Terminal=false
  122. === modified file 'data/jwm-settings-manager-themes.desktop'
  123. --- data/jwm-settings-manager-themes.desktop 2017-01-29 14:15:16 +0000
  124. +++ data/jwm-settings-manager-themes.desktop 2018-10-19 18:45:08 +0000
  125. @@ -1,9 +1,11 @@
  126. [Desktop Entry]
  127. Name=Theme Settings
  128. Name[en_US]=theme Settings
  129. +Name[pt_PT]=Definições do tema
  130. GenericName=Configuration Tool
  131. GenericName[fr]=Outil de configuration
  132. GenericName[lv]=Konfigurācijas rīks
  133. +GenericName[pt_PT]=Ferramenta de configuração
  134. Icon=jsm-theme
  135. Exec=jwm-settings-manager --themes
  136. Terminal=false
  137. === modified file 'data/jwm-settings-manager-window.desktop'
  138. --- data/jwm-settings-manager-window.desktop 2017-01-29 14:15:16 +0000
  139. +++ data/jwm-settings-manager-window.desktop 2018-10-19 18:45:08 +0000
  140. @@ -1,9 +1,11 @@
  141. [Desktop Entry]
  142. Name=Window Settings
  143. Name[en_US]=Window Settings
  144. +Name[pt_PT]=Definições de janelas
  145. GenericName=Configuration Tool
  146. GenericName[fr]=Outil de configuration
  147. GenericName[lv]=Konfigurācijas rīks
  148. +GenericName[pt_PT]=Ferramenta de configuração
  149. Icon=jsm-windows
  150. Exec=jwm-settings-manager --window
  151. Terminal=false
  152. === modified file 'data/jwm-settings-manager.desktop'
  153. --- data/jwm-settings-manager.desktop 2016-05-11 18:53:26 +0000
  154. +++ data/jwm-settings-manager.desktop 2018-10-19 18:45:08 +0000
  155. @@ -3,12 +3,15 @@
  156. Name[en_US]=JWM Settings Manager
  157. Name[fr]=Gestionnaire de paramètres de JWM
  158. Name[lv]=JWM Iestatījumu pārvaldnieks
  159. +Name[pt_PT]=Gestor de definições do JWM
  160. GenericName=Configuration Tool
  161. GenericName[fr]=Outil de configuration
  162. GenericName[lv]=Konfigurācijas rīks
  163. +GenericName[pt_PT]=Ferramenta de configuração
  164. Comment=Easy configuration of JWM
  165. Comment[fr]=Configuration facile de JWM
  166. Comment[lv]=Vienkārša JWM konfigurācija
  167. +Comment[pt_PT]=Configuração fácil do JWM
  168. Icon=jwm-settings-manager
  169. Exec=jwm-settings-manager
  170. Terminal=false
  171. === modified file 'data/jwm-settings-manager.desktop.in'
  172. --- data/jwm-settings-manager.desktop.in 2016-05-11 18:53:26 +0000
  173. +++ data/jwm-settings-manager.desktop.in 2018-10-19 18:45:08 +0000
  174. @@ -3,12 +3,15 @@
  175. Name[en_US]=JWM Settings Manager
  176. Name[fr]=Gestionnaire de paramètres de JWM
  177. Name[lv]=JWM Iestatījumu pārvaldnieks
  178. +Name[pt_PT]=Gestor de definições do JWM
  179. GenericName=Configuration Tool
  180. GenericName[fr]=Outil de configuration
  181. GenericName[lv]=Konfigurācijas rīks
  182. +GenericName[pt_PT]=Ferramenta de configuração
  183. Comment=Easy configuration of JWM
  184. Comment[fr]=Configuration facile de JWM
  185. Comment[lv]=Vienkārša JWM konfigurācija
  186. +Comment[pt_PT]=Configuração fácil do JWM
  187. Icon=@ICON@
  188. Exec=@EXEC@
  189. Terminal=false
  190. === modified file 'fltk/jwm-popups.cxx'
  191. --- fltk/jwm-popups.cxx 2017-01-29 14:15:16 +0000
  192. +++ fltk/jwm-popups.cxx 2018-10-19 18:45:08 +0000
  193. @@ -698,7 +698,7 @@
  194. o->align(Fl_Align(FL_ALIGN_WRAP));
  195. } // Fl_Button* o
  196. { Fl_Button* o = new Fl_Button(10, 190, 100, 25, gettext("Notifications"));
  197. - o->tooltip(gettext("Sytem notification pop up windows"));
  198. + o->tooltip(gettext("System notification pop up windows"));
  199. o->box(FL_FLAT_BOX);
  200. o->color((Fl_Color)23);
  201. o->callback((Fl_Callback*)cb_Notifications);
  202. === modified file 'fltk/jwm-popups.fld'
  203. --- fltk/jwm-popups.fld 2018-01-16 14:17:27 +0000
  204. +++ fltk/jwm-popups.fld 2018-10-19 18:45:08 +0000
  205. @@ -42,7 +42,7 @@
  206. decl {\#include "../include/fltkfunctions.hpp"} {public global
  207. }
  208. -decl {\#include "../include/ui.hpp"} {selected public global
  209. +decl {\#include "../include/ui.hpp"} {public global
  210. }
  211. class PopupsUI {open : {public FLTK_FUNCTIONS}
  212. @@ -154,18 +154,17 @@
  213. }
  214. Fl_Button {} {
  215. label Notifications
  216. - callback {dunst_window()->show();}
  217. - tooltip {Sytem notification pop up windows} xywh {10 190 100 25} box FLAT_BOX color 23 align 128
  218. + callback {dunst_window()->show();} selected
  219. + tooltip {System notification pop up windows} xywh {10 190 100 25} box FLAT_BOX color 23 align 128
  220. code0 {if(!linuxcommon::test_exec("dunst"))o->hide();}
  221. }
  222. }
  223. }
  224. }
  225. - Function {dunst_window()} {open
  226. - } {
  227. + Function {dunst_window()} {} {
  228. Fl_Window dunst_win {
  229. label {System Notifications} open
  230. - xywh {444 54 545 615} type Double hide
  231. + xywh {134 89 545 615} type Double hide
  232. code0 {startup(o);}
  233. code1 {debug_out("dunst window");} xclass {preferences-system-notifications}
  234. } {
  235. @@ -687,7 +686,7 @@
  236. } {
  237. code {return get_dunst("global",attribute);} {}
  238. }
  239. - Function {get_dunst(std::string element, std::string attribute)} {open return_type {std::string}
  240. + Function {get_dunst(std::string element, std::string attribute)} {return_type {std::string}
  241. } {
  242. code {debug_out("get_dunst("+element+","+attribute);
  243. if(DUNSTCONF.compare("")==0)DUNSTCONF=dunst_config();
  244. @@ -740,8 +739,7 @@
  245. if((tmp.compare("true")==0)||(tmp.compare("yes")==0)){o->value(1);}
  246. else{o->value(0);}} {}
  247. }
  248. - Function {dunst_color(Fl_Widget *o,std::string element,std::string attribute)} {open
  249. - } {
  250. + Function {dunst_color(Fl_Widget *o,std::string element,std::string attribute)} {} {
  251. code {std::string tmp=get_dunst(element,attribute);
  252. if(tmp.compare("")==0){
  253. debug_out(element+"->"+attribute+" contained nothing");
  254. @@ -751,7 +749,7 @@
  255. o->color(color);
  256. o->redraw();} {}
  257. }
  258. - Function {dunst_config()} {open return_type {std::string}
  259. + Function {dunst_config()} {return_type {std::string}
  260. } {
  261. code {std::string xdg_config=linuxcommon::get_config_dir();
  262. xdg_config+="dunst/dunstrc";
  263. @@ -766,8 +764,7 @@
  264. std::vector<std::string> myVec=linuxcommon::delimiter_vector_from_string(list,":");
  265. populateBrowserWithStringVector(icon_folders,myVec);} {}
  266. }
  267. - Function {color_picker(Fl_Widget* o)} {open
  268. - } {
  269. + Function {color_picker(Fl_Widget* o)} {} {
  270. code {int retval=0;
  271. double* color=choose_a_color(retval,o);
  272. std::string COLORstring=colorToString(color);
  273. @@ -775,8 +772,7 @@
  274. o->color(COLOR);
  275. std::cout<<o->color()<<std::endl;} {}
  276. }
  277. - Function {make_dunst_conf()} {open
  278. - } {
  279. + Function {make_dunst_conf()} {} {
  280. code {std::string TOTAL="\#DO NOT MANUALLY EDIT\\n[global]";
  281. TOTAL+=out_val(font,"font",false);
  282. TOTAL+=bool_val(allow_markup,"allow_markup",false);
  283. @@ -834,7 +830,7 @@
  284. std::cout<<TOTAL<<std::endl;
  285. }} {}
  286. }
  287. - Function {out_val(Fl_Input *o,std::string thing,bool quote)} {open return_type {std::string}
  288. + Function {out_val(Fl_Input *o,std::string thing,bool quote)} {return_type {std::string}
  289. } {
  290. code {std::string tmp;
  291. if(!InputIsEmpty(o)){
  292. === modified file 'fltk/jwm-settings.cxx'
  293. --- fltk/jwm-settings.cxx 2018-01-16 14:17:27 +0000
  294. +++ fltk/jwm-settings.cxx 2018-10-19 18:45:08 +0000
  295. @@ -4124,7 +4124,7 @@
  296. o->callback((Fl_Callback*)cb_Windows);
  297. } // Fl_Button* o
  298. { Fl_Button* o = new Fl_Button(90, 175, 80, 80, gettext("Themes"));
  299. - o->tooltip(gettext("This is for Predefined Thems"));
  300. + o->tooltip(gettext("This is for Predefined Themes"));
  301. o->box(FL_FLAT_BOX);
  302. o->color((Fl_Color)23);
  303. o->image(image_jsm7);
  304. === modified file 'fltk/jwm-settings.fld'
  305. --- fltk/jwm-settings.fld 2018-01-16 14:17:27 +0000
  306. +++ fltk/jwm-settings.fld 2018-10-19 18:45:08 +0000
  307. @@ -42,7 +42,7 @@
  308. decl {\#include "../data/icons/jwm-settings-manager.xpm"} {public global
  309. }
  310. -class SettingsUI {open selected : {public FLTK_FUNCTIONS}
  311. +class SettingsUI {open : {public FLTK_FUNCTIONS}
  312. } {
  313. decl {JSM_UI ui;} {private local
  314. }
  315. @@ -99,8 +99,8 @@
  316. Fl_Button {} {
  317. label Themes
  318. callback {settings_window->hide();
  319. -ui.showThemes();}
  320. - tooltip {This is for Predefined Thems} image {../data/img/jsm-theme.png} xywh {90 175 80 80} box FLAT_BOX color 23
  321. +ui.showThemes();} selected
  322. + tooltip {This is for Predefined Themes} image {../data/img/jsm-theme.png} xywh {90 175 80 80} box FLAT_BOX color 23
  323. }
  324. Fl_Button {} {
  325. label Autostart
  326. === modified file 'fltk/jwm-window.cxx'
  327. --- fltk/jwm-window.cxx 2018-01-16 14:17:27 +0000
  328. +++ fltk/jwm-window.cxx 2018-10-19 18:45:08 +0000
  329. @@ -2264,7 +2264,7 @@
  330. Fl_Double_Window* WindowUI::make_window() {
  331. if(!load()){debug_out("DIDN'T LOAD in jwm-window");}
  332. JWMVERSION=JWMversion();
  333. - { Fl_Double_Window* o = window_window = new Fl_Double_Window(510, 310, gettext("Window Settings"));
  334. + { Fl_Double_Window* o = window_window = new Fl_Double_Window(510, 315, gettext("Window Settings"));
  335. window_window->color(FL_DARK1);
  336. window_window->user_data((void*)(this));
  337. { Fl_Scroll* o = new Fl_Scroll(0, 0, 510, 315);
  338. @@ -2743,7 +2743,7 @@
  339. rm_prog->callback((Fl_Callback*)cb_rm_prog);
  340. } // Fl_Button* rm_prog
  341. { class_browser = new Fl_Browser(385, 55, 115, 155, gettext("Window Class"));
  342. - class_browser->tooltip(gettext("Window classes that effected by the options"));
  343. + class_browser->tooltip(gettext("Window classes that are effected by the options"));
  344. class_browser->type(2);
  345. class_browser->box(FL_FLAT_BOX);
  346. class_browser->align(Fl_Align(FL_ALIGN_TOP));
  347. === modified file 'fltk/jwm-window.fld'
  348. --- fltk/jwm-window.fld 2018-01-16 14:17:27 +0000
  349. +++ fltk/jwm-window.fld 2018-10-19 18:45:08 +0000
  350. @@ -1058,12 +1058,13 @@
  351. }
  352. }
  353. }
  354. - Function {make_window()} {} {
  355. + Function {make_window()} {open
  356. + } {
  357. code {if(!load()){debug_out("DIDN'T LOAD in jwm-window");}
  358. JWMVERSION=JWMversion();} {}
  359. Fl_Window window_window {
  360. - label {Window Settings}
  361. - xywh {134 80 510 310} type Double color 47 hide resizable
  362. + label {Window Settings} open
  363. + xywh {658 129 510 315} type Double color 47 hide resizable
  364. code0 {startup(o,jsm_windows_xpm);} xclass {jsm-windows}
  365. } {
  366. Fl_Scroll {} {open
  367. @@ -1073,7 +1074,7 @@
  368. xywh {0 0 510 280} box FLAT_BOX color 45 selection_color 51
  369. } {
  370. Fl_Group {} {
  371. - label Appearance open
  372. + label Appearance open selected
  373. xywh {0 30 510 250} selection_color 45
  374. } {
  375. Fl_Box {} {
  376. @@ -1382,7 +1383,7 @@
  377. }
  378. }
  379. Fl_Group {} {
  380. - label Groups
  381. + label Groups open
  382. xywh {0 30 510 230} selection_color 45 hide
  383. } {
  384. Fl_Browser groups_browser {
  385. @@ -1433,7 +1434,7 @@
  386. }
  387. Fl_Browser class_browser {
  388. label {Window Class}
  389. - tooltip {Window classes that effected by the options} xywh {385 55 115 155} type Hold box FLAT_BOX align 1
  390. + tooltip {Window classes that are effected by the options} xywh {385 55 115 155} type Hold box FLAT_BOX align 1
  391. }
  392. Fl_Button class_add {
  393. label {@+}
  394. @@ -1611,7 +1612,7 @@
  395. } {
  396. Fl_Window action_window {
  397. label {Window Actions} open
  398. - xywh {96 393 280 310} type Double hide
  399. + xywh {730 176 280 310} type Double hide
  400. } {
  401. Fl_Scroll {} {open
  402. xywh {0 0 285 310}
  403. @@ -1744,7 +1745,6 @@
  404. if(!InputIsEmpty(add_mask)){
  405. Mask=add_mask->value();
  406. }
  407. -addContext(Action,context,Button,Mask);} {selected
  408. - }
  409. +addContext(Action,context,Button,Mask);} {}
  410. }
  411. }
  412. === modified file 'po/jwm-settings-manager.pot'
  413. --- po/jwm-settings-manager.pot 2018-01-16 14:17:27 +0000
  414. +++ po/jwm-settings-manager.pot 2018-10-19 18:45:08 +0000
  415. @@ -8,7 +8,7 @@
  416. msgstr ""
  417. "Project-Id-Version: \"jwm-settings-manager\" \n"
  418. "Report-Msgid-Bugs-To: \n"
  419. -"POT-Creation-Date: 2017-12-19 16:15-0600\n"
  420. +"POT-Creation-Date: 2018-10-08 07:51-0500\n"
  421. "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
  422. "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
  423. "Language-Team: LANGUAGE <LL@li.org>\n"
  424. @@ -78,16 +78,18 @@
  425. # File: fltk/desktop-file-editor.cxx, line: 696
  426. # File: fltk/jwm-menu.cxx, line: 646
  427. # File: fltk/jwm-menu.cxx, line: 695
  428. -# File: fltk/jwm-panel.cxx, line: 2437
  429. -# File: fltk/jwm-panel.cxx, line: 2763
  430. -# File: fltk/jwm-panel.cxx, line: 2804
  431. -# File: fltk/jwm-window.cxx, line: 680
  432. +# File: fltk/jwm-panel.cxx, line: 2440
  433. +# File: fltk/jwm-panel.cxx, line: 2766
  434. +# File: fltk/jwm-panel.cxx, line: 2807
  435. +# File: fltk/jwm-window.cxx, line: 1883
  436. +# File: fltk/jwm-window.cxx, line: 2982
  437. #. Fl_Input* exec
  438. #. Fl_Output* item_display
  439. #. Fl_Input* button_label
  440. #. Fl_Input* hid_in
  441. #. Fl_Button* icon_view
  442. #. Fl_Browser* options_desc
  443. +#. Fl_Button* context_title
  444. msgid "Icon"
  445. msgstr ""
  446. #
  447. @@ -195,7 +197,7 @@
  448. #
  449. # File: fltk/desktop-file-editor.cxx, line: 872
  450. # File: fltk/jwm-fonts.cxx, line: 876
  451. -# File: fltk/jwm-window.cxx, line: 1297
  452. +# File: fltk/jwm-window.cxx, line: 2766
  453. #. Fl_Group* o
  454. msgid "Advanced"
  455. msgstr ""
  456. @@ -386,7 +388,7 @@
  457. #
  458. # File: fltk/desktop-file-editor.cxx, line: 1072
  459. # File: fltk/desktop-file-editor.cxx, line: 1128
  460. -# File: fltk/jwm-panel.cxx, line: 2982
  461. +# File: fltk/jwm-panel.cxx, line: 2985
  462. #. Fl_Button* o
  463. #. Fl_Scroll* o
  464. #. Fl_Button* o
  465. @@ -426,11 +428,11 @@
  466. #
  467. # File: fltk/desktop-file-editor.cxx, line: 1136
  468. # File: fltk/desktop-file-editor.cxx, line: 1798
  469. -# File: fltk/jwm-panel.cxx, line: 2066
  470. -# File: fltk/jwm-panel.cxx, line: 2112
  471. -# File: fltk/jwm-panel.cxx, line: 2204
  472. -# File: fltk/jwm-panel.cxx, line: 2237
  473. -# File: fltk/jwm-panel.cxx, line: 3024
  474. +# File: fltk/jwm-panel.cxx, line: 2069
  475. +# File: fltk/jwm-panel.cxx, line: 2115
  476. +# File: fltk/jwm-panel.cxx, line: 2207
  477. +# File: fltk/jwm-panel.cxx, line: 2240
  478. +# File: fltk/jwm-panel.cxx, line: 3027
  479. #. Fl_Button* o
  480. #. Fl_Scroll* o
  481. #. Fl_Box* o
  482. @@ -456,16 +458,16 @@
  483. #
  484. # File: fltk/desktop-file-editor.cxx, line: 1774
  485. # File: fltk/jwm-autostart.cxx, line: 187
  486. -# File: fltk/jwm-desktop.cxx, line: 231
  487. +# File: fltk/jwm-desktop.cxx, line: 239
  488. # File: fltk/jwm-fonts.cxx, line: 768
  489. # File: fltk/jwm-fonts.cxx, line: 815
  490. # File: fltk/jwm-fonts.cxx, line: 1079
  491. # File: fltk/jwm-icons.cxx, line: 175
  492. # File: fltk/jwm-icons.cxx, line: 233
  493. -# File: fltk/jwm-keyboard.cxx, line: 1322
  494. -# File: fltk/jwm-keyboard.cxx, line: 1442
  495. -# File: fltk/jwm-keyboard.cxx, line: 1546
  496. -# File: fltk/jwm-keyboard.cxx, line: 1621
  497. +# File: fltk/jwm-keyboard.cxx, line: 1323
  498. +# File: fltk/jwm-keyboard.cxx, line: 1443
  499. +# File: fltk/jwm-keyboard.cxx, line: 1547
  500. +# File: fltk/jwm-keyboard.cxx, line: 1623
  501. # File: fltk/jwm-menu.cxx, line: 607
  502. # File: fltk/jwm-menu.cxx, line: 662
  503. # File: fltk/jwm-menu.cxx, line: 714
  504. @@ -476,31 +478,34 @@
  505. # File: fltk/jwm-mouse.cxx, line: 589
  506. # File: fltk/jwm-mouse.cxx, line: 678
  507. # File: fltk/jwm-mouse.cxx, line: 1263
  508. -# File: fltk/jwm-panel.cxx, line: 1440
  509. -# File: fltk/jwm-panel.cxx, line: 2031
  510. -# File: fltk/jwm-panel.cxx, line: 2038
  511. -# File: fltk/jwm-panel.cxx, line: 2059
  512. -# File: fltk/jwm-panel.cxx, line: 2093
  513. -# File: fltk/jwm-panel.cxx, line: 2099
  514. -# File: fltk/jwm-panel.cxx, line: 2131
  515. -# File: fltk/jwm-panel.cxx, line: 2137
  516. -# File: fltk/jwm-panel.cxx, line: 2277
  517. -# File: fltk/jwm-panel.cxx, line: 2500
  518. -# File: fltk/jwm-panel.cxx, line: 2647
  519. -# File: fltk/jwm-panel.cxx, line: 2685
  520. -# File: fltk/jwm-panel.cxx, line: 2742
  521. -# File: fltk/jwm-panel.cxx, line: 2782
  522. -# File: fltk/jwm-panel.cxx, line: 2832
  523. -# File: fltk/jwm-panel.cxx, line: 2885
  524. -# File: fltk/jwm-panel.cxx, line: 3045
  525. -# File: fltk/jwm-panel.cxx, line: 3384
  526. +# File: fltk/jwm-panel.cxx, line: 1442
  527. +# File: fltk/jwm-panel.cxx, line: 2034
  528. +# File: fltk/jwm-panel.cxx, line: 2041
  529. +# File: fltk/jwm-panel.cxx, line: 2062
  530. +# File: fltk/jwm-panel.cxx, line: 2096
  531. +# File: fltk/jwm-panel.cxx, line: 2102
  532. +# File: fltk/jwm-panel.cxx, line: 2134
  533. +# File: fltk/jwm-panel.cxx, line: 2140
  534. +# File: fltk/jwm-panel.cxx, line: 2280
  535. +# File: fltk/jwm-panel.cxx, line: 2503
  536. +# File: fltk/jwm-panel.cxx, line: 2650
  537. +# File: fltk/jwm-panel.cxx, line: 2688
  538. +# File: fltk/jwm-panel.cxx, line: 2745
  539. +# File: fltk/jwm-panel.cxx, line: 2785
  540. +# File: fltk/jwm-panel.cxx, line: 2835
  541. +# File: fltk/jwm-panel.cxx, line: 2888
  542. +# File: fltk/jwm-panel.cxx, line: 3048
  543. +# File: fltk/jwm-panel.cxx, line: 3394
  544. # File: fltk/jwm-popups.cxx, line: 686
  545. -# File: fltk/jwm-window.cxx, line: 710
  546. -# File: fltk/jwm-window.cxx, line: 760
  547. -# File: fltk/jwm-window.cxx, line: 782
  548. -# File: fltk/jwm-window.cxx, line: 1451
  549. -# File: fltk/jwm-window.cxx, line: 1497
  550. -# File: fltk/jwm-window.cxx, line: 1535
  551. +# File: fltk/jwm-window.cxx, line: 1913
  552. +# File: fltk/jwm-window.cxx, line: 1963
  553. +# File: fltk/jwm-window.cxx, line: 1985
  554. +# File: fltk/jwm-window.cxx, line: 2042
  555. +# File: fltk/jwm-window.cxx, line: 2126
  556. +# File: fltk/jwm-window.cxx, line: 2177
  557. +# File: fltk/jwm-window.cxx, line: 2248
  558. +# File: fltk/jwm-window.cxx, line: 2920
  559. +# File: fltk/jwm-window.cxx, line: 3046
  560. #. Fl_Output* o
  561. #. Fl_Button* o
  562. #. Fl_Input* layoutput
  563. @@ -546,28 +551,31 @@
  564. msgstr ""
  565. #
  566. # File: fltk/jwm-autostart.cxx, line: 180
  567. -# File: fltk/jwm-desktop.cxx, line: 224
  568. +# File: fltk/jwm-desktop.cxx, line: 232
  569. # File: fltk/jwm-fonts.cxx, line: 759
  570. # File: fltk/jwm-fonts.cxx, line: 806
  571. # File: fltk/jwm-fonts.cxx, line: 1070
  572. # File: fltk/jwm-icons.cxx, line: 168
  573. # File: fltk/jwm-icons.cxx, line: 226
  574. -# File: fltk/jwm-keyboard.cxx, line: 1355
  575. -# File: fltk/jwm-keyboard.cxx, line: 1475
  576. -# File: fltk/jwm-keyboard.cxx, line: 1554
  577. -# File: fltk/jwm-keyboard.cxx, line: 1614
  578. +# File: fltk/jwm-keyboard.cxx, line: 1356
  579. +# File: fltk/jwm-keyboard.cxx, line: 1476
  580. +# File: fltk/jwm-keyboard.cxx, line: 1555
  581. +# File: fltk/jwm-keyboard.cxx, line: 1616
  582. # File: fltk/jwm-menu.cxx, line: 1002
  583. # File: fltk/jwm-mouse.cxx, line: 582
  584. # File: fltk/jwm-mouse.cxx, line: 686
  585. -# File: fltk/jwm-panel.cxx, line: 2023
  586. -# File: fltk/jwm-panel.cxx, line: 2029
  587. +# File: fltk/jwm-panel.cxx, line: 2026
  588. +# File: fltk/jwm-panel.cxx, line: 2032
  589. # File: fltk/jwm-popups.cxx, line: 693
  590. # File: fltk/jwm-shutdown.cxx, line: 105
  591. # File: fltk/jwm-themes.cxx, line: 167
  592. -# File: fltk/jwm-window.cxx, line: 701
  593. -# File: fltk/jwm-window.cxx, line: 1443
  594. -# File: fltk/jwm-window.cxx, line: 1489
  595. -# File: fltk/jwm-window.cxx, line: 1527
  596. +# File: fltk/jwm-window.cxx, line: 1904
  597. +# File: fltk/jwm-window.cxx, line: 2034
  598. +# File: fltk/jwm-window.cxx, line: 2118
  599. +# File: fltk/jwm-window.cxx, line: 2169
  600. +# File: fltk/jwm-window.cxx, line: 2240
  601. +# File: fltk/jwm-window.cxx, line: 2912
  602. +# File: fltk/jwm-window.cxx, line: 3038
  603. #. Fl_Input* program_name
  604. #. Fl_Value_Input* num_desktop_h
  605. #. Fl_Button* o
  606. @@ -581,50 +589,57 @@
  607. #. Fl_Button* log
  608. #. Fl_Button* save_button
  609. #. Fl_Value_Input* desktop_num
  610. -#. Fl_Tabs* o
  611. +#. Fl_Output* add_context_button
  612. +#. Fl_Input* ordering
  613. +#. Fl_Output* context_button
  614. #. Fl_Browser* theme_browser
  615. -#. Fl_Input* ordering
  616. +#. Fl_Tabs* o
  617. +#. Fl_Button* o
  618. msgid "Cancel"
  619. msgstr ""
  620. #
  621. # File: fltk/jwm-autostart.cxx, line: 188
  622. -# File: fltk/jwm-desktop.cxx, line: 232
  623. +# File: fltk/jwm-desktop.cxx, line: 240
  624. # File: fltk/jwm-fonts.cxx, line: 769
  625. # File: fltk/jwm-fonts.cxx, line: 816
  626. # File: fltk/jwm-icons.cxx, line: 176
  627. # File: fltk/jwm-icons.cxx, line: 205
  628. # File: fltk/jwm-icons.cxx, line: 234
  629. -# File: fltk/jwm-keyboard.cxx, line: 1547
  630. -# File: fltk/jwm-keyboard.cxx, line: 1622
  631. +# File: fltk/jwm-keyboard.cxx, line: 1548
  632. +# File: fltk/jwm-keyboard.cxx, line: 1624
  633. # File: fltk/jwm-menu.cxx, line: 1010
  634. # File: fltk/jwm-menu.cxx, line: 1066
  635. # File: fltk/jwm-mouse.cxx, line: 590
  636. # File: fltk/jwm-mouse.cxx, line: 679
  637. # File: fltk/jwm-mouse.cxx, line: 1264
  638. # File: fltk/jwm-mouse.cxx, line: 1278
  639. -# File: fltk/jwm-panel.cxx, line: 2032
  640. -# File: fltk/jwm-panel.cxx, line: 2983
  641. -# File: fltk/jwm-window.cxx, line: 761
  642. -# File: fltk/jwm-window.cxx, line: 783
  643. -# File: fltk/jwm-window.cxx, line: 1452
  644. -# File: fltk/jwm-window.cxx, line: 1536
  645. +# File: fltk/jwm-panel.cxx, line: 2035
  646. +# File: fltk/jwm-panel.cxx, line: 2986
  647. +# File: fltk/jwm-window.cxx, line: 1964
  648. +# File: fltk/jwm-window.cxx, line: 1986
  649. +# File: fltk/jwm-window.cxx, line: 2043
  650. +# File: fltk/jwm-window.cxx, line: 2127
  651. +# File: fltk/jwm-window.cxx, line: 2178
  652. +# File: fltk/jwm-window.cxx, line: 2921
  653. +# File: fltk/jwm-window.cxx, line: 3047
  654. msgid "Write to configuration file"
  655. msgstr ""
  656. #
  657. # File: fltk/jwm-autostart.cxx, line: 195
  658. -# File: fltk/jwm-keyboard.cxx, line: 1629
  659. +# File: fltk/jwm-keyboard.cxx, line: 1631
  660. # File: fltk/jwm-menu.cxx, line: 821
  661. # File: fltk/jwm-menu.cxx, line: 844
  662. # File: fltk/jwm-menu.cxx, line: 1073
  663. -# File: fltk/jwm-panel.cxx, line: 1553
  664. -# File: fltk/jwm-panel.cxx, line: 2079
  665. -# File: fltk/jwm-panel.cxx, line: 2107
  666. -# File: fltk/jwm-panel.cxx, line: 2705
  667. -# File: fltk/jwm-panel.cxx, line: 2976
  668. -# File: fltk/jwm-window.cxx, line: 1225
  669. -# File: fltk/jwm-window.cxx, line: 1244
  670. -# File: fltk/jwm-window.cxx, line: 1263
  671. -# File: fltk/jwm-window.cxx, line: 1282
  672. +# File: fltk/jwm-panel.cxx, line: 1555
  673. +# File: fltk/jwm-panel.cxx, line: 2082
  674. +# File: fltk/jwm-panel.cxx, line: 2110
  675. +# File: fltk/jwm-panel.cxx, line: 2708
  676. +# File: fltk/jwm-panel.cxx, line: 2979
  677. +# File: fltk/jwm-window.cxx, line: 2694
  678. +# File: fltk/jwm-window.cxx, line: 2713
  679. +# File: fltk/jwm-window.cxx, line: 2732
  680. +# File: fltk/jwm-window.cxx, line: 2751
  681. +# File: fltk/jwm-window.cxx, line: 3014
  682. #. Fl_Button* save_button
  683. #. Fl_Button* o
  684. #. Fl_Browser* menuElement
  685. @@ -637,6 +652,7 @@
  686. #. Fl_Browser* opt_browser
  687. #. Fl_Browser* name_browser
  688. #. Fl_Browser* class_browser
  689. +#. Fl_Browser* context_browser
  690. msgid "@+"
  691. msgstr ""
  692. #
  693. @@ -661,81 +677,81 @@
  694. "editing it"
  695. msgstr ""
  696. #
  697. -# File: fltk/jwm-desktop.cxx, line: 129
  698. +# File: fltk/jwm-desktop.cxx, line: 136
  699. msgid "Desktop Settings"
  700. msgstr ""
  701. #
  702. -# File: fltk/jwm-desktop.cxx, line: 152
  703. +# File: fltk/jwm-desktop.cxx, line: 159
  704. #. Fl_Box* color_display2
  705. msgid "Choose Image"
  706. msgstr ""
  707. #
  708. -# File: fltk/jwm-desktop.cxx, line: 157
  709. +# File: fltk/jwm-desktop.cxx, line: 164
  710. #. Fl_Button* o
  711. msgid "Choose Color"
  712. msgstr ""
  713. #
  714. -# File: fltk/jwm-desktop.cxx, line: 158
  715. -# File: fltk/jwm-desktop.cxx, line: 164
  716. +# File: fltk/jwm-desktop.cxx, line: 165
  717. +# File: fltk/jwm-desktop.cxx, line: 171
  718. msgid "This will take icons off the desktop"
  719. msgstr ""
  720. #
  721. -# File: fltk/jwm-desktop.cxx, line: 163
  722. +# File: fltk/jwm-desktop.cxx, line: 170
  723. #. Fl_Button* o
  724. msgid "Choose Gradient"
  725. msgstr ""
  726. #
  727. -# File: fltk/jwm-desktop.cxx, line: 169
  728. +# File: fltk/jwm-desktop.cxx, line: 176
  729. #. Fl_Button* o
  730. msgid "Filemanager"
  731. msgstr ""
  732. #
  733. -# File: fltk/jwm-desktop.cxx, line: 170
  734. +# File: fltk/jwm-desktop.cxx, line: 177
  735. msgid "Open the filemanager to change preferences"
  736. msgstr ""
  737. #
  738. -# File: fltk/jwm-desktop.cxx, line: 175
  739. +# File: fltk/jwm-desktop.cxx, line: 183
  740. #. Fl_Button* fm_pref
  741. msgid "Icons on Desktop"
  742. msgstr ""
  743. #
  744. -# File: fltk/jwm-desktop.cxx, line: 194
  745. +# File: fltk/jwm-desktop.cxx, line: 202
  746. #. Fl_Output* current_bg
  747. msgid "Multiple Desktops"
  748. msgstr ""
  749. #
  750. -# File: fltk/jwm-desktop.cxx, line: 195
  751. +# File: fltk/jwm-desktop.cxx, line: 203
  752. msgid "This allows you to have multiple screens to work on from one Display"
  753. msgstr ""
  754. #
  755. -# File: fltk/jwm-desktop.cxx, line: 206
  756. +# File: fltk/jwm-desktop.cxx, line: 214
  757. #. Fl_Check_Button* check_desktops
  758. msgid "Workspaces Wide"
  759. msgstr ""
  760. #
  761. -# File: fltk/jwm-desktop.cxx, line: 207
  762. +# File: fltk/jwm-desktop.cxx, line: 215
  763. msgid "Number of workspaces to the left and right"
  764. msgstr ""
  765. #
  766. -# File: fltk/jwm-desktop.cxx, line: 215
  767. +# File: fltk/jwm-desktop.cxx, line: 223
  768. #. Fl_Value_Input* num_desktop_w
  769. msgid "Workspaces High "
  770. msgstr ""
  771. #
  772. -# File: fltk/jwm-desktop.cxx, line: 216
  773. +# File: fltk/jwm-desktop.cxx, line: 224
  774. msgid "Number of workspaces up and down"
  775. msgstr ""
  776. #
  777. -# File: fltk/jwm-desktop.cxx, line: 239
  778. +# File: fltk/jwm-desktop.cxx, line: 247
  779. #. Fl_Button* o
  780. msgid "Names"
  781. msgstr ""
  782. #
  783. -# File: fltk/jwm-desktop.cxx, line: 240
  784. +# File: fltk/jwm-desktop.cxx, line: 248
  785. msgid "Name your workspaces"
  786. msgstr ""
  787. #
  788. -# File: fltk/jwm-desktop.cxx, line: 246
  789. +# File: fltk/jwm-desktop.cxx, line: 254
  790. # File: fltk/jwm-settings.cxx, line: 4102
  791. #. Fl_Button* o
  792. msgid "Desktop"
  793. @@ -752,11 +768,11 @@
  794. #
  795. # File: fltk/jwm-fonts.cxx, line: 637
  796. # File: fltk/jwm-menu.cxx, line: 894
  797. -# File: fltk/jwm-panel.cxx, line: 1576
  798. -# File: fltk/jwm-panel.cxx, line: 1588
  799. -# File: fltk/jwm-panel.cxx, line: 2263
  800. -# File: fltk/jwm-panel.cxx, line: 2900
  801. -# File: fltk/jwm-panel.cxx, line: 2907
  802. +# File: fltk/jwm-panel.cxx, line: 1578
  803. +# File: fltk/jwm-panel.cxx, line: 1590
  804. +# File: fltk/jwm-panel.cxx, line: 2266
  805. +# File: fltk/jwm-panel.cxx, line: 2903
  806. +# File: fltk/jwm-panel.cxx, line: 2910
  807. #. Fl_Output* window_font
  808. #. Fl_Box* o
  809. #. Fl_Button* a_fg
  810. @@ -778,9 +794,9 @@
  811. #
  812. # File: fltk/jwm-fonts.cxx, line: 653
  813. # File: fltk/jwm-menu.cxx, line: 900
  814. -# File: fltk/jwm-panel.cxx, line: 1582
  815. -# File: fltk/jwm-panel.cxx, line: 1595
  816. -# File: fltk/jwm-panel.cxx, line: 2270
  817. +# File: fltk/jwm-panel.cxx, line: 1584
  818. +# File: fltk/jwm-panel.cxx, line: 1597
  819. +# File: fltk/jwm-panel.cxx, line: 2273
  820. #. Fl_Button* o
  821. #. Fl_Box* o
  822. msgid "Inactive"
  823. @@ -875,11 +891,11 @@
  824. msgstr ""
  825. #
  826. # File: fltk/jwm-fonts.cxx, line: 929
  827. -# File: fltk/jwm-panel.cxx, line: 1447
  828. -# File: fltk/jwm-panel.cxx, line: 2564
  829. -# File: fltk/jwm-panel.cxx, line: 2710
  830. -# File: fltk/jwm-panel.cxx, line: 2857
  831. -# File: fltk/jwm-panel.cxx, line: 3391
  832. +# File: fltk/jwm-panel.cxx, line: 1449
  833. +# File: fltk/jwm-panel.cxx, line: 2567
  834. +# File: fltk/jwm-panel.cxx, line: 2713
  835. +# File: fltk/jwm-panel.cxx, line: 2860
  836. +# File: fltk/jwm-panel.cxx, line: 3401
  837. # File: fltk/jwm-popups.cxx, line: 1048
  838. #. Fl_Menu_Button* o
  839. #. Fl_Button* o
  840. @@ -999,144 +1015,146 @@
  841. msgid "Choose a new directory"
  842. msgstr ""
  843. #
  844. -# File: fltk/jwm-keyboard.cxx, line: 1320
  845. +# File: fltk/jwm-keyboard.cxx, line: 1321
  846. msgid "Configure Keyboard Shortcut"
  847. msgstr ""
  848. #
  849. -# File: fltk/jwm-keyboard.cxx, line: 1329
  850. -# File: fltk/jwm-keyboard.cxx, line: 1449
  851. +# File: fltk/jwm-keyboard.cxx, line: 1330
  852. +# File: fltk/jwm-keyboard.cxx, line: 1450
  853. #. Fl_Button* o
  854. msgid "Action"
  855. msgstr ""
  856. #
  857. -# File: fltk/jwm-keyboard.cxx, line: 1342
  858. -# File: fltk/jwm-keyboard.cxx, line: 1462
  859. -#. Fl_Menu_Button* o
  860. -msgid "Choose Program"
  861. -msgstr ""
  862. -#
  863. # File: fltk/jwm-keyboard.cxx, line: 1343
  864. # File: fltk/jwm-keyboard.cxx, line: 1463
  865. +#. Fl_Menu_Button* o
  866. +msgid "Choose Program"
  867. +msgstr ""
  868. +#
  869. +# File: fltk/jwm-keyboard.cxx, line: 1344
  870. +# File: fltk/jwm-keyboard.cxx, line: 1464
  871. msgid "Choose a program to add"
  872. msgstr ""
  873. #
  874. -# File: fltk/jwm-keyboard.cxx, line: 1352
  875. -# File: fltk/jwm-keyboard.cxx, line: 1472
  876. +# File: fltk/jwm-keyboard.cxx, line: 1353
  877. +# File: fltk/jwm-keyboard.cxx, line: 1473
  878. #. Fl_Input* action_name1
  879. #. Fl_Input* action_name
  880. msgid "OR"
  881. msgstr ""
  882. #
  883. -# File: fltk/jwm-keyboard.cxx, line: 1362
  884. -# File: fltk/jwm-keyboard.cxx, line: 1482
  885. +# File: fltk/jwm-keyboard.cxx, line: 1363
  886. +# File: fltk/jwm-keyboard.cxx, line: 1483
  887. #. Fl_Button* o
  888. msgid "Modifiers"
  889. msgstr ""
  890. #
  891. -# File: fltk/jwm-keyboard.cxx, line: 1374
  892. +# File: fltk/jwm-keyboard.cxx, line: 1375
  893. #. Fl_Output* mod3_output
  894. msgid "Current"
  895. msgstr ""
  896. #
  897. -# File: fltk/jwm-keyboard.cxx, line: 1375
  898. -# File: fltk/jwm-keyboard.cxx, line: 1392
  899. -# File: fltk/jwm-keyboard.cxx, line: 1398
  900. -# File: fltk/jwm-keyboard.cxx, line: 1404
  901. +# File: fltk/jwm-keyboard.cxx, line: 1376
  902. +# File: fltk/jwm-keyboard.cxx, line: 1393
  903. +# File: fltk/jwm-keyboard.cxx, line: 1399
  904. +# File: fltk/jwm-keyboard.cxx, line: 1405
  905. msgid "Current Shortcut to Edit"
  906. msgstr ""
  907. #
  908. -# File: fltk/jwm-keyboard.cxx, line: 1380
  909. -# File: fltk/jwm-keyboard.cxx, line: 1492
  910. +# File: fltk/jwm-keyboard.cxx, line: 1381
  911. +# File: fltk/jwm-keyboard.cxx, line: 1493
  912. #. Fl_Output* current_mod1
  913. #. Fl_Output* modder_output
  914. msgid "GRAB KEY"
  915. msgstr ""
  916. #
  917. -# File: fltk/jwm-keyboard.cxx, line: 1381
  918. -# File: fltk/jwm-keyboard.cxx, line: 1493
  919. +# File: fltk/jwm-keyboard.cxx, line: 1382
  920. +# File: fltk/jwm-keyboard.cxx, line: 1494
  921. msgid "This will grab a new key combo"
  922. msgstr ""
  923. #
  924. -# File: fltk/jwm-keyboard.cxx, line: 1387
  925. -# File: fltk/jwm-keyboard.cxx, line: 1391
  926. -# File: fltk/jwm-keyboard.cxx, line: 1504
  927. +# File: fltk/jwm-keyboard.cxx, line: 1388
  928. +# File: fltk/jwm-keyboard.cxx, line: 1392
  929. +# File: fltk/jwm-keyboard.cxx, line: 1505
  930. #. Fl_Button* o
  931. #. Fl_Output* keyshortcut
  932. #. Fl_Output* modder3_output
  933. msgid "Key"
  934. msgstr ""
  935. #
  936. -# File: fltk/jwm-keyboard.cxx, line: 1415
  937. -# File: fltk/jwm-keyboard.cxx, line: 1509
  938. +# File: fltk/jwm-keyboard.cxx, line: 1416
  939. +# File: fltk/jwm-keyboard.cxx, line: 1510
  940. #. Fl_Output* old_action
  941. #. Fl_Output* key
  942. msgid "Special Keys"
  943. msgstr ""
  944. #
  945. -# File: fltk/jwm-keyboard.cxx, line: 1416
  946. -# File: fltk/jwm-keyboard.cxx, line: 1510
  947. +# File: fltk/jwm-keyboard.cxx, line: 1417
  948. +# File: fltk/jwm-keyboard.cxx, line: 1511
  949. msgid "Picture button keys on the keyboard"
  950. msgstr ""
  951. #
  952. -# File: fltk/jwm-keyboard.cxx, line: 1439
  953. +# File: fltk/jwm-keyboard.cxx, line: 1440
  954. msgid "Create Keyboard Shortcut"
  955. msgstr ""
  956. #
  957. -# File: fltk/jwm-keyboard.cxx, line: 1483
  958. +# File: fltk/jwm-keyboard.cxx, line: 1484
  959. msgid "First keyboard modifier"
  960. msgstr ""
  961. #
  962. -# File: fltk/jwm-keyboard.cxx, line: 1488
  963. -# File: fltk/jwm-keyboard.cxx, line: 1500
  964. -# File: fltk/jwm-keyboard.cxx, line: 1505
  965. +# File: fltk/jwm-keyboard.cxx, line: 1489
  966. +# File: fltk/jwm-keyboard.cxx, line: 1501
  967. +# File: fltk/jwm-keyboard.cxx, line: 1506
  968. msgid "Second keyboard modifier"
  969. msgstr ""
  970. #
  971. -# File: fltk/jwm-keyboard.cxx, line: 1532
  972. -# File: fltk/jwm-keyboard.cxx, line: 1534
  973. -# File: fltk/jwm-keyboard.cxx, line: 1641
  974. +# File: fltk/jwm-keyboard.cxx, line: 1533
  975. +# File: fltk/jwm-keyboard.cxx, line: 1535
  976. +# File: fltk/jwm-keyboard.cxx, line: 1643
  977. #. Fl_Button* o
  978. msgid "Layout"
  979. msgstr ""
  980. #
  981. -# File: fltk/jwm-keyboard.cxx, line: 1535
  982. +# File: fltk/jwm-keyboard.cxx, line: 1536
  983. msgid "The Keyboard regional layout"
  984. msgstr ""
  985. #
  986. -# File: fltk/jwm-keyboard.cxx, line: 1561
  987. +# File: fltk/jwm-keyboard.cxx, line: 1562
  988. #. Fl_Button* o
  989. msgid "Model"
  990. msgstr ""
  991. #
  992. -# File: fltk/jwm-keyboard.cxx, line: 1562
  993. +# File: fltk/jwm-keyboard.cxx, line: 1563
  994. msgid "The type of keyboard"
  995. msgstr ""
  996. #
  997. -# File: fltk/jwm-keyboard.cxx, line: 1569
  998. +# File: fltk/jwm-keyboard.cxx, line: 1570
  999. #. Fl_Browser* o
  1000. msgid "Option"
  1001. msgstr ""
  1002. #
  1003. -# File: fltk/jwm-keyboard.cxx, line: 1570
  1004. +# File: fltk/jwm-keyboard.cxx, line: 1571
  1005. msgid "Additional quirks"
  1006. msgstr ""
  1007. #
  1008. -# File: fltk/jwm-keyboard.cxx, line: 1593
  1009. +# File: fltk/jwm-keyboard.cxx, line: 1594
  1010. #. Fl::add_handler(handle);
  1011. msgid "Keyboard Settings"
  1012. msgstr ""
  1013. #
  1014. -# File: fltk/jwm-keyboard.cxx, line: 1598
  1015. +# File: fltk/jwm-keyboard.cxx, line: 1599
  1016. msgid "Keyboard Shortcuts"
  1017. msgstr ""
  1018. #
  1019. -# File: fltk/jwm-keyboard.cxx, line: 1607
  1020. -# File: fltk/jwm-panel.cxx, line: 1533
  1021. -# File: fltk/jwm-panel.cxx, line: 2698
  1022. -# File: fltk/jwm-panel.cxx, line: 3005
  1023. +# File: fltk/jwm-keyboard.cxx, line: 1609
  1024. +# File: fltk/jwm-panel.cxx, line: 1535
  1025. +# File: fltk/jwm-panel.cxx, line: 2701
  1026. +# File: fltk/jwm-panel.cxx, line: 3008
  1027. +# File: fltk/jwm-window.cxx, line: 3029
  1028. #. Fl_Browser* key_browser
  1029. #. Fl_Browser* indicator_browser
  1030. #. Fl_Browser* shortcut_browser
  1031. +#. Fl_Button* o
  1032. msgid "-"
  1033. msgstr ""
  1034. #
  1035. @@ -1160,9 +1178,9 @@
  1036. # File: fltk/jwm-menu.cxx, line: 650
  1037. # File: fltk/jwm-menu.cxx, line: 698
  1038. # File: fltk/jwm-menu.cxx, line: 735
  1039. -# File: fltk/jwm-panel.cxx, line: 2429
  1040. -# File: fltk/jwm-panel.cxx, line: 2748
  1041. -# File: fltk/jwm-panel.cxx, line: 2789
  1042. +# File: fltk/jwm-panel.cxx, line: 2432
  1043. +# File: fltk/jwm-panel.cxx, line: 2751
  1044. +# File: fltk/jwm-panel.cxx, line: 2792
  1045. #. Fl_Browser* list_browser
  1046. #. Fl_Input* add_icon
  1047. #. Fl_Input* item_prog_icon
  1048. @@ -1176,11 +1194,11 @@
  1049. #
  1050. # File: fltk/jwm-menu.cxx, line: 591
  1051. # File: fltk/jwm-menu.cxx, line: 765
  1052. -# File: fltk/jwm-panel.cxx, line: 1451
  1053. -# File: fltk/jwm-panel.cxx, line: 2309
  1054. -# File: fltk/jwm-panel.cxx, line: 2590
  1055. -# File: fltk/jwm-panel.cxx, line: 2866
  1056. -# File: fltk/jwm-panel.cxx, line: 3397
  1057. +# File: fltk/jwm-panel.cxx, line: 1453
  1058. +# File: fltk/jwm-panel.cxx, line: 2312
  1059. +# File: fltk/jwm-panel.cxx, line: 2593
  1060. +# File: fltk/jwm-panel.cxx, line: 2869
  1061. +# File: fltk/jwm-panel.cxx, line: 3407
  1062. #. Fl_Input* new_menu_label
  1063. #. Fl_Slider* menu_height_slider
  1064. #. Fl_Value_Input* spacer_w
  1065. @@ -1208,6 +1226,8 @@
  1066. msgstr ""
  1067. #
  1068. # File: fltk/jwm-menu.cxx, line: 627
  1069. +# File: fltk/jwm-window.cxx, line: 2086
  1070. +#. Fl_Input* add_mask
  1071. msgid "Item to add"
  1072. msgstr ""
  1073. #
  1074. @@ -1225,8 +1245,8 @@
  1075. #
  1076. # File: fltk/jwm-menu.cxx, line: 654
  1077. # File: fltk/jwm-menu.cxx, line: 701
  1078. -# File: fltk/jwm-panel.cxx, line: 2472
  1079. -# File: fltk/jwm-panel.cxx, line: 2618
  1080. +# File: fltk/jwm-panel.cxx, line: 2475
  1081. +# File: fltk/jwm-panel.cxx, line: 2621
  1082. #. Fl_Input* add_label
  1083. #. Fl_Input* item_prog_label
  1084. #. Fl_Value_Output* button_val
  1085. @@ -1239,7 +1259,7 @@
  1086. msgstr ""
  1087. #
  1088. # File: fltk/jwm-menu.cxx, line: 658
  1089. -# File: fltk/jwm-panel.cxx, line: 2766
  1090. +# File: fltk/jwm-panel.cxx, line: 2769
  1091. #. Fl_Input* add_input
  1092. #. Fl_Input* icon_file
  1093. msgid "Tooltip"
  1094. @@ -1254,6 +1274,8 @@
  1095. msgstr ""
  1096. #
  1097. # File: fltk/jwm-menu.cxx, line: 675
  1098. +# File: fltk/jwm-window.cxx, line: 2052
  1099. +# File: fltk/jwm-window.cxx, line: 2187
  1100. # File: src/fltkfunctions.cpp, line: 124
  1101. # File: src/fltkfunctions.cpp, line: 263
  1102. # File: src/panel.cpp, line: 566
  1103. @@ -1274,7 +1296,9 @@
  1104. msgstr ""
  1105. #
  1106. # File: fltk/jwm-menu.cxx, line: 745
  1107. +# File: fltk/jwm-window.cxx, line: 2998
  1108. #. Fl_Button* o
  1109. +#. Fl_Button* context_border
  1110. msgid "Root"
  1111. msgstr ""
  1112. #
  1113. @@ -1342,15 +1366,15 @@
  1114. msgstr ""
  1115. #
  1116. # File: fltk/jwm-menu.cxx, line: 880
  1117. -# File: fltk/jwm-panel.cxx, line: 2848
  1118. +# File: fltk/jwm-panel.cxx, line: 2851
  1119. #. Fl_Input* swallow_name
  1120. msgid "Configure"
  1121. msgstr ""
  1122. #
  1123. # File: fltk/jwm-menu.cxx, line: 890
  1124. -# File: fltk/jwm-panel.cxx, line: 1573
  1125. -# File: fltk/jwm-panel.cxx, line: 1744
  1126. -# File: fltk/jwm-window.cxx, line: 815
  1127. +# File: fltk/jwm-panel.cxx, line: 1575
  1128. +# File: fltk/jwm-panel.cxx, line: 1746
  1129. +# File: fltk/jwm-window.cxx, line: 2276
  1130. #. Fl_Group* o
  1131. #. Fl_Group* apps_tab
  1132. #. Fl_Button* tray_outline2
  1133. @@ -1376,18 +1400,18 @@
  1134. msgstr ""
  1135. #
  1136. # File: fltk/jwm-menu.cxx, line: 937
  1137. -# File: fltk/jwm-panel.cxx, line: 1623
  1138. -# File: fltk/jwm-window.cxx, line: 874
  1139. -# File: fltk/jwm-window.cxx, line: 887
  1140. -# File: fltk/jwm-window.cxx, line: 954
  1141. -# File: fltk/jwm-window.cxx, line: 967
  1142. +# File: fltk/jwm-panel.cxx, line: 1625
  1143. +# File: fltk/jwm-window.cxx, line: 2335
  1144. +# File: fltk/jwm-window.cxx, line: 2348
  1145. +# File: fltk/jwm-window.cxx, line: 2415
  1146. +# File: fltk/jwm-window.cxx, line: 2428
  1147. msgid "A compositor (like xcompmgr) must be installed"
  1148. msgstr ""
  1149. #
  1150. # File: fltk/jwm-menu.cxx, line: 951
  1151. -# File: fltk/jwm-panel.cxx, line: 1637
  1152. -# File: fltk/jwm-window.cxx, line: 886
  1153. -# File: fltk/jwm-window.cxx, line: 966
  1154. +# File: fltk/jwm-panel.cxx, line: 1639
  1155. +# File: fltk/jwm-window.cxx, line: 2347
  1156. +# File: fltk/jwm-window.cxx, line: 2427
  1157. #. Fl_Slider* o_menu_slider
  1158. #. Fl_Slider* o_slider
  1159. #. Fl_Slider* active_o_slider
  1160. @@ -1400,8 +1424,8 @@
  1161. msgstr ""
  1162. #
  1163. # File: fltk/jwm-menu.cxx, line: 969
  1164. -# File: fltk/jwm-panel.cxx, line: 1708
  1165. -# File: fltk/jwm-panel.cxx, line: 2361
  1166. +# File: fltk/jwm-panel.cxx, line: 1710
  1167. +# File: fltk/jwm-panel.cxx, line: 2364
  1168. #. Fl_Button* menu_font_a
  1169. #. Fl_Box* o
  1170. #. Fl_Output* list_out
  1171. @@ -1409,14 +1433,14 @@
  1172. msgstr ""
  1173. #
  1174. # File: fltk/jwm-menu.cxx, line: 970
  1175. -# File: fltk/jwm-panel.cxx, line: 1709
  1176. -# File: fltk/jwm-panel.cxx, line: 2362
  1177. +# File: fltk/jwm-panel.cxx, line: 1711
  1178. +# File: fltk/jwm-panel.cxx, line: 2365
  1179. msgid "Flat or Motif style decorations"
  1180. msgstr ""
  1181. #
  1182. # File: fltk/jwm-menu.cxx, line: 983
  1183. -# File: fltk/jwm-panel.cxx, line: 1729
  1184. -# File: fltk/jwm-panel.cxx, line: 2382
  1185. +# File: fltk/jwm-panel.cxx, line: 1731
  1186. +# File: fltk/jwm-panel.cxx, line: 2385
  1187. # File: fltk/jwm-popups.cxx, line: 611
  1188. #. Fl_Menu_Button* o
  1189. #. Fl_Output* panel_deco
  1190. @@ -1425,15 +1449,15 @@
  1191. msgstr ""
  1192. #
  1193. # File: fltk/jwm-menu.cxx, line: 991
  1194. -# File: fltk/jwm-panel.cxx, line: 1723
  1195. -# File: fltk/jwm-panel.cxx, line: 2376
  1196. +# File: fltk/jwm-panel.cxx, line: 1725
  1197. +# File: fltk/jwm-panel.cxx, line: 2379
  1198. msgid "Flat or Motif style decorations (flat is default)"
  1199. msgstr ""
  1200. #
  1201. # File: fltk/jwm-menu.cxx, line: 1026
  1202. # File: fltk/jwm-menu.cxx, line: 1029
  1203. -# File: fltk/jwm-panel.cxx, line: 3061
  1204. # File: fltk/jwm-panel.cxx, line: 3064
  1205. +# File: fltk/jwm-panel.cxx, line: 3067
  1206. msgid "Nothing to Configure"
  1207. msgstr ""
  1208. #
  1209. @@ -1442,6 +1466,8 @@
  1210. msgstr ""
  1211. #
  1212. # File: fltk/jwm-menu.cxx, line: 1057
  1213. +# File: fltk/jwm-window.cxx, line: 2141
  1214. +# File: fltk/jwm-window.cxx, line: 3022
  1215. msgid "Configure Item"
  1216. msgstr ""
  1217. #
  1218. @@ -1452,7 +1478,7 @@
  1219. # File: fltk/jwm-menu.cxx, line: 1125
  1220. # File: fltk/jwm-menu.cxx, line: 1280
  1221. # File: fltk/jwm-menu.cxx, line: 1366
  1222. -# File: fltk/jwm-panel.cxx, line: 2318
  1223. +# File: fltk/jwm-panel.cxx, line: 2321
  1224. #. Fl_Value_Input* o
  1225. msgid "Labeled"
  1226. msgstr ""
  1227. @@ -1896,12 +1922,12 @@
  1228. msgid "Reset"
  1229. msgstr ""
  1230. #
  1231. -# File: fltk/jwm-panel.cxx, line: 1204
  1232. -# File: fltk/jwm-panel.cxx, line: 2487
  1233. -# File: fltk/jwm-panel.cxx, line: 2634
  1234. -# File: fltk/jwm-panel.cxx, line: 2809
  1235. -# File: fltk/jwm-panel.cxx, line: 3179
  1236. -# File: src/jwmrc.cpp, line: 2589
  1237. +# File: fltk/jwm-panel.cxx, line: 1206
  1238. +# File: fltk/jwm-panel.cxx, line: 2490
  1239. +# File: fltk/jwm-panel.cxx, line: 2637
  1240. +# File: fltk/jwm-panel.cxx, line: 2812
  1241. +# File: fltk/jwm-panel.cxx, line: 3189
  1242. +# File: src/jwmrc.cpp, line: 2818
  1243. # File: src/panel.cpp, line: 643
  1244. #. Fl_Button* prog_conf_gear
  1245. #. Fl_Button* clock_prog_conf_gear
  1246. @@ -1909,113 +1935,113 @@
  1247. msgid "Menu"
  1248. msgstr ""
  1249. #
  1250. -# File: fltk/jwm-panel.cxx, line: 1438
  1251. -# File: fltk/jwm-panel.cxx, line: 3183
  1252. -# File: fltk/jwm-panel.cxx, line: 3382
  1253. -# File: src/jwmrc.cpp, line: 2592
  1254. +# File: fltk/jwm-panel.cxx, line: 1440
  1255. +# File: fltk/jwm-panel.cxx, line: 3193
  1256. +# File: fltk/jwm-panel.cxx, line: 3392
  1257. +# File: src/jwmrc.cpp, line: 2821
  1258. # File: src/panel.cpp, line: 646
  1259. msgid "Spacer"
  1260. msgstr ""
  1261. #
  1262. -# File: fltk/jwm-panel.cxx, line: 1448
  1263. -# File: fltk/jwm-panel.cxx, line: 3392
  1264. +# File: fltk/jwm-panel.cxx, line: 1450
  1265. +# File: fltk/jwm-panel.cxx, line: 3402
  1266. msgid ""
  1267. "The width of the spacer (0 to fill all available space). 0 is the default."
  1268. msgstr ""
  1269. #
  1270. -# File: fltk/jwm-panel.cxx, line: 1452
  1271. -# File: fltk/jwm-panel.cxx, line: 3398
  1272. +# File: fltk/jwm-panel.cxx, line: 1454
  1273. +# File: fltk/jwm-panel.cxx, line: 3408
  1274. msgid ""
  1275. "The height of the spacer (0 to fill all available space). 0 is the default."
  1276. msgstr ""
  1277. #
  1278. -# File: fltk/jwm-panel.cxx, line: 1478
  1279. +# File: fltk/jwm-panel.cxx, line: 1480
  1280. msgid "Panel Settings"
  1281. msgstr ""
  1282. #
  1283. -# File: fltk/jwm-panel.cxx, line: 1492
  1284. -# File: fltk/jwm-panel.cxx, line: 3040
  1285. +# File: fltk/jwm-panel.cxx, line: 1494
  1286. +# File: fltk/jwm-panel.cxx, line: 3043
  1287. msgid "Add a Panel"
  1288. msgstr ""
  1289. #
  1290. -# File: fltk/jwm-panel.cxx, line: 1496
  1291. +# File: fltk/jwm-panel.cxx, line: 1498
  1292. msgid "Panel 1"
  1293. msgstr ""
  1294. #
  1295. -# File: fltk/jwm-panel.cxx, line: 1501
  1296. +# File: fltk/jwm-panel.cxx, line: 1503
  1297. msgid "Panel 2"
  1298. msgstr ""
  1299. #
  1300. -# File: fltk/jwm-panel.cxx, line: 1506
  1301. +# File: fltk/jwm-panel.cxx, line: 1508
  1302. msgid "Panel 3"
  1303. msgstr ""
  1304. #
  1305. -# File: fltk/jwm-panel.cxx, line: 1511
  1306. +# File: fltk/jwm-panel.cxx, line: 1513
  1307. msgid "Panel 4"
  1308. msgstr ""
  1309. #
  1310. -# File: fltk/jwm-panel.cxx, line: 1515
  1311. +# File: fltk/jwm-panel.cxx, line: 1517
  1312. msgid "Remove Current Panel"
  1313. msgstr ""
  1314. #
  1315. -# File: fltk/jwm-panel.cxx, line: 1531
  1316. -# File: fltk/jwm-panel.cxx, line: 1570
  1317. +# File: fltk/jwm-panel.cxx, line: 1533
  1318. +# File: fltk/jwm-panel.cxx, line: 1572
  1319. #. Fl_Button* o
  1320. msgid "Apps"
  1321. msgstr ""
  1322. #
  1323. -# File: fltk/jwm-panel.cxx, line: 1558
  1324. +# File: fltk/jwm-panel.cxx, line: 1560
  1325. #. Fl_Button* choose_apps
  1326. msgid "@+98>"
  1327. msgstr ""
  1328. #
  1329. -# File: fltk/jwm-panel.cxx, line: 1564
  1330. +# File: fltk/jwm-panel.cxx, line: 1566
  1331. #. Fl_Button* o
  1332. msgid "@+92>"
  1333. msgstr ""
  1334. #
  1335. -# File: fltk/jwm-panel.cxx, line: 1603
  1336. +# File: fltk/jwm-panel.cxx, line: 1605
  1337. msgid "Panel Inactive Background Color"
  1338. msgstr ""
  1339. #
  1340. -# File: fltk/jwm-panel.cxx, line: 1613
  1341. +# File: fltk/jwm-panel.cxx, line: 1615
  1342. msgid "Panel Button Active Text Color"
  1343. msgstr ""
  1344. #
  1345. -# File: fltk/jwm-panel.cxx, line: 1622
  1346. +# File: fltk/jwm-panel.cxx, line: 1624
  1347. #. Fl_Button* button_color_font_a
  1348. msgid "Opacity of Panel "
  1349. msgstr ""
  1350. #
  1351. -# File: fltk/jwm-panel.cxx, line: 1633
  1352. +# File: fltk/jwm-panel.cxx, line: 1635
  1353. msgid "Opacity of Panel"
  1354. msgstr ""
  1355. #
  1356. -# File: fltk/jwm-panel.cxx, line: 1647
  1357. +# File: fltk/jwm-panel.cxx, line: 1649
  1358. msgid "Panel Button Inactive Background Color"
  1359. msgstr ""
  1360. #
  1361. -# File: fltk/jwm-panel.cxx, line: 1657
  1362. +# File: fltk/jwm-panel.cxx, line: 1659
  1363. msgid "Panel Button Active Background Color"
  1364. msgstr ""
  1365. #
  1366. -# File: fltk/jwm-panel.cxx, line: 1667
  1367. +# File: fltk/jwm-panel.cxx, line: 1669
  1368. msgid "Panel Button Inactive Text Color"
  1369. msgstr ""
  1370. #
  1371. -# File: fltk/jwm-panel.cxx, line: 1677
  1372. +# File: fltk/jwm-panel.cxx, line: 1679
  1373. msgid "Panel Active Text Color"
  1374. msgstr ""
  1375. #
  1376. -# File: fltk/jwm-panel.cxx, line: 1686
  1377. +# File: fltk/jwm-panel.cxx, line: 1688
  1378. msgid "Panel Active Background Color"
  1379. msgstr ""
  1380. #
  1381. -# File: fltk/jwm-panel.cxx, line: 1695
  1382. +# File: fltk/jwm-panel.cxx, line: 1697
  1383. msgid "Panel Inactive Text Color"
  1384. msgstr ""
  1385. #
  1386. -# File: fltk/jwm-panel.cxx, line: 1703
  1387. +# File: fltk/jwm-panel.cxx, line: 1705
  1388. # File: fltk/jwm-settings.cxx, line: 4084
  1389. # File: fltk/jwm-themes.cxx, line: 117
  1390. # File: src/panel.cpp, line: 102
  1391. @@ -2026,83 +2052,83 @@
  1392. msgid "Panel"
  1393. msgstr ""
  1394. #
  1395. -# File: fltk/jwm-panel.cxx, line: 1705
  1396. +# File: fltk/jwm-panel.cxx, line: 1707
  1397. #. Fl_Box* o
  1398. msgid "Panel Buttons"
  1399. msgstr ""
  1400. #
  1401. -# File: fltk/jwm-panel.cxx, line: 1747
  1402. -# File: fltk/jwm-panel.cxx, line: 2018
  1403. +# File: fltk/jwm-panel.cxx, line: 1749
  1404. +# File: fltk/jwm-panel.cxx, line: 2021
  1405. #. Fl_Group* o
  1406. #. Fl_Output* layer
  1407. msgid "Size And Position"
  1408. msgstr ""
  1409. #
  1410. -# File: fltk/jwm-panel.cxx, line: 1750
  1411. -# File: fltk/jwm-panel.cxx, line: 1775
  1412. +# File: fltk/jwm-panel.cxx, line: 1752
  1413. +# File: fltk/jwm-panel.cxx, line: 1777
  1414. msgid "Panel Position"
  1415. msgstr ""
  1416. #
  1417. -# File: fltk/jwm-panel.cxx, line: 1751
  1418. +# File: fltk/jwm-panel.cxx, line: 1753
  1419. msgid "Move the current panel to a new position"
  1420. msgstr ""
  1421. #
  1422. -# File: fltk/jwm-panel.cxx, line: 1756
  1423. -# File: fltk/jwm-panel.cxx, line: 1921
  1424. +# File: fltk/jwm-panel.cxx, line: 1758
  1425. +# File: fltk/jwm-panel.cxx, line: 1923
  1426. msgid "top"
  1427. msgstr ""
  1428. #
  1429. -# File: fltk/jwm-panel.cxx, line: 1759
  1430. -# File: fltk/jwm-panel.cxx, line: 1924
  1431. +# File: fltk/jwm-panel.cxx, line: 1761
  1432. +# File: fltk/jwm-panel.cxx, line: 1926
  1433. msgid "bottom"
  1434. msgstr ""
  1435. #
  1436. -# File: fltk/jwm-panel.cxx, line: 1762
  1437. -# File: fltk/jwm-panel.cxx, line: 1927
  1438. +# File: fltk/jwm-panel.cxx, line: 1764
  1439. +# File: fltk/jwm-panel.cxx, line: 1929
  1440. msgid "right"
  1441. msgstr ""
  1442. #
  1443. -# File: fltk/jwm-panel.cxx, line: 1765
  1444. -# File: fltk/jwm-panel.cxx, line: 1930
  1445. +# File: fltk/jwm-panel.cxx, line: 1767
  1446. +# File: fltk/jwm-panel.cxx, line: 1932
  1447. msgid "left"
  1448. msgstr ""
  1449. #
  1450. -# File: fltk/jwm-panel.cxx, line: 1777
  1451. +# File: fltk/jwm-panel.cxx, line: 1779
  1452. #. Fl_Menu_Button* o
  1453. msgid "Autohide"
  1454. msgstr ""
  1455. #
  1456. -# File: fltk/jwm-panel.cxx, line: 1778
  1457. +# File: fltk/jwm-panel.cxx, line: 1780
  1458. msgid "This will make the Panel hide when you aren't using it."
  1459. msgstr ""
  1460. #
  1461. -# File: fltk/jwm-panel.cxx, line: 1783
  1462. +# File: fltk/jwm-panel.cxx, line: 1785
  1463. msgid "Autohide?"
  1464. msgstr ""
  1465. #
  1466. -# File: fltk/jwm-panel.cxx, line: 1785
  1467. +# File: fltk/jwm-panel.cxx, line: 1787
  1468. #. Fl_Check_Button* autohide_check
  1469. msgid "Width of Panel "
  1470. msgstr ""
  1471. #
  1472. -# File: fltk/jwm-panel.cxx, line: 1786
  1473. +# File: fltk/jwm-panel.cxx, line: 1788
  1474. msgid "0 is Full Length"
  1475. msgstr ""
  1476. #
  1477. -# File: fltk/jwm-panel.cxx, line: 1797
  1478. +# File: fltk/jwm-panel.cxx, line: 1799
  1479. msgid "Width of Panel"
  1480. msgstr ""
  1481. #
  1482. -# File: fltk/jwm-panel.cxx, line: 1801
  1483. -# File: fltk/jwm-panel.cxx, line: 1813
  1484. -# File: fltk/jwm-panel.cxx, line: 1831
  1485. -# File: fltk/jwm-panel.cxx, line: 1843
  1486. -# File: fltk/jwm-panel.cxx, line: 1902
  1487. -# File: fltk/jwm-panel.cxx, line: 1911
  1488. -# File: fltk/jwm-window.cxx, line: 1075
  1489. -# File: fltk/jwm-window.cxx, line: 1102
  1490. -# File: fltk/jwm-window.cxx, line: 1317
  1491. -# File: fltk/jwm-window.cxx, line: 1349
  1492. +# File: fltk/jwm-panel.cxx, line: 1803
  1493. +# File: fltk/jwm-panel.cxx, line: 1815
  1494. +# File: fltk/jwm-panel.cxx, line: 1833
  1495. +# File: fltk/jwm-panel.cxx, line: 1845
  1496. +# File: fltk/jwm-panel.cxx, line: 1904
  1497. +# File: fltk/jwm-panel.cxx, line: 1913
  1498. +# File: fltk/jwm-window.cxx, line: 2544
  1499. +# File: fltk/jwm-window.cxx, line: 2571
  1500. +# File: fltk/jwm-window.cxx, line: 2786
  1501. +# File: fltk/jwm-window.cxx, line: 2818
  1502. #. Fl_Slider* w_slider
  1503. #. Fl_Slider* h_slider
  1504. #. Fl_Slider* border_slider
  1505. @@ -2113,7 +2139,7 @@
  1506. msgid "pixels"
  1507. msgstr ""
  1508. #
  1509. -# File: fltk/jwm-panel.cxx, line: 1802
  1510. +# File: fltk/jwm-panel.cxx, line: 1804
  1511. msgid ""
  1512. "The width of the tray. 0 indicates that the tray\n"
  1513. "should compute an optimal width depending on what\n"
  1514. @@ -2121,20 +2147,20 @@
  1515. "from with screen width. 0 is the default."
  1516. msgstr ""
  1517. #
  1518. -# File: fltk/jwm-panel.cxx, line: 1815
  1519. +# File: fltk/jwm-panel.cxx, line: 1817
  1520. #. Fl_Value_Input* width_input
  1521. msgid "Height of Panel "
  1522. msgstr ""
  1523. #
  1524. -# File: fltk/jwm-panel.cxx, line: 1816
  1525. +# File: fltk/jwm-panel.cxx, line: 1818
  1526. msgid "0 will base size from the current items in the panel"
  1527. msgstr ""
  1528. #
  1529. -# File: fltk/jwm-panel.cxx, line: 1827
  1530. +# File: fltk/jwm-panel.cxx, line: 1829
  1531. msgid "Height of Panel"
  1532. msgstr ""
  1533. #
  1534. -# File: fltk/jwm-panel.cxx, line: 1832
  1535. +# File: fltk/jwm-panel.cxx, line: 1834
  1536. msgid ""
  1537. "The height of the tray. 0 indicates that the tray\n"
  1538. "should compute an optimal height depending on what\n"
  1539. @@ -2142,155 +2168,149 @@
  1540. "from the screen height. 0 is the default."
  1541. msgstr ""
  1542. #
  1543. -# File: fltk/jwm-panel.cxx, line: 1845
  1544. -# File: fltk/jwm-panel.cxx, line: 1848
  1545. +# File: fltk/jwm-panel.cxx, line: 1847
  1546. +# File: fltk/jwm-panel.cxx, line: 1850
  1547. #. Fl_Value_Input* height_input
  1548. msgid "Advanced Options"
  1549. msgstr ""
  1550. #
  1551. -# File: fltk/jwm-panel.cxx, line: 1850
  1552. +# File: fltk/jwm-panel.cxx, line: 1852
  1553. +# File: fltk/jwm-panel.cxx, line: 1862
  1554. #. Fl_Box* o
  1555. msgid "X coordinate"
  1556. msgstr ""
  1557. #
  1558. -# File: fltk/jwm-panel.cxx, line: 1851
  1559. +# File: fltk/jwm-panel.cxx, line: 1853
  1560. msgid ""
  1561. "The x-coordinate of the tray. This may be negative\n"
  1562. "to indicate an offset from the right of the screen."
  1563. msgstr ""
  1564. #
  1565. -# File: fltk/jwm-panel.cxx, line: 1860
  1566. -msgid "X position of panel"
  1567. -msgstr ""
  1568. -#
  1569. -# File: fltk/jwm-panel.cxx, line: 1862
  1570. +# File: fltk/jwm-panel.cxx, line: 1864
  1571. +# File: fltk/jwm-panel.cxx, line: 1874
  1572. #. Fl_Value_Input* o
  1573. msgid "Y coordinate"
  1574. msgstr ""
  1575. #
  1576. -# File: fltk/jwm-panel.cxx, line: 1863
  1577. +# File: fltk/jwm-panel.cxx, line: 1865
  1578. msgid ""
  1579. "The y-coordinate of the tray. This may be negative\n"
  1580. "to indicate an offset from the bottom of the\n"
  1581. "screen."
  1582. msgstr ""
  1583. #
  1584. -# File: fltk/jwm-panel.cxx, line: 1872
  1585. -msgid "Y position of panel"
  1586. -msgstr ""
  1587. -#
  1588. -# File: fltk/jwm-panel.cxx, line: 1875
  1589. +# File: fltk/jwm-panel.cxx, line: 1877
  1590. msgid "The horizontal alignment of the Panel"
  1591. msgstr ""
  1592. #
  1593. -# File: fltk/jwm-panel.cxx, line: 1882
  1594. +# File: fltk/jwm-panel.cxx, line: 1884
  1595. msgid "The vertical alignment of the Panel"
  1596. msgstr ""
  1597. #
  1598. -# File: fltk/jwm-panel.cxx, line: 1888
  1599. -# File: fltk/jwm-panel.cxx, line: 1898
  1600. +# File: fltk/jwm-panel.cxx, line: 1890
  1601. +# File: fltk/jwm-panel.cxx, line: 1900
  1602. #. Fl_Output* valign
  1603. msgid "Width of Panel Border"
  1604. msgstr ""
  1605. #
  1606. -# File: fltk/jwm-panel.cxx, line: 1913
  1607. -# File: fltk/jwm-panel.cxx, line: 1944
  1608. +# File: fltk/jwm-panel.cxx, line: 1915
  1609. +# File: fltk/jwm-panel.cxx, line: 1946
  1610. #. Fl_Value_Input* border_input
  1611. msgid "Autohide Position"
  1612. msgstr ""
  1613. #
  1614. -# File: fltk/jwm-panel.cxx, line: 1914
  1615. +# File: fltk/jwm-panel.cxx, line: 1916
  1616. msgid ""
  1617. "Specifies the location to hide the tray when not\n"
  1618. "activated. Default is \"off\" to disable hiding.\n"
  1619. "Possible values are \"left\", \"right\", \"top\", \"bottom\", and \"off\"."
  1620. msgstr ""
  1621. #
  1622. -# File: fltk/jwm-panel.cxx, line: 1933
  1623. +# File: fltk/jwm-panel.cxx, line: 1935
  1624. msgid "off"
  1625. msgstr ""
  1626. #
  1627. -# File: fltk/jwm-panel.cxx, line: 1947
  1628. +# File: fltk/jwm-panel.cxx, line: 1949
  1629. msgid "current autohide position (if any)"
  1630. msgstr ""
  1631. #
  1632. -# File: fltk/jwm-panel.cxx, line: 1952
  1633. +# File: fltk/jwm-panel.cxx, line: 1955
  1634. #. Fl_Output* autohide_pos
  1635. msgid "halign"
  1636. msgstr ""
  1637. #
  1638. -# File: fltk/jwm-panel.cxx, line: 1953
  1639. -# File: fltk/jwm-panel.cxx, line: 1966
  1640. -# File: fltk/jwm-panel.cxx, line: 1979
  1641. -# File: fltk/jwm-panel.cxx, line: 1999
  1642. +# File: fltk/jwm-panel.cxx, line: 1956
  1643. +# File: fltk/jwm-panel.cxx, line: 1969
  1644. +# File: fltk/jwm-panel.cxx, line: 1982
  1645. +# File: fltk/jwm-panel.cxx, line: 2002
  1646. msgid "Use 'Panel Position' for easy configuration"
  1647. msgstr ""
  1648. #
  1649. -# File: fltk/jwm-panel.cxx, line: 1965
  1650. +# File: fltk/jwm-panel.cxx, line: 1968
  1651. #. Fl_Menu_Button* o
  1652. msgid "valign"
  1653. msgstr ""
  1654. #
  1655. -# File: fltk/jwm-panel.cxx, line: 1978
  1656. +# File: fltk/jwm-panel.cxx, line: 1981
  1657. #. Fl_Menu_Button* o
  1658. msgid "layout"
  1659. msgstr ""
  1660. #
  1661. -# File: fltk/jwm-panel.cxx, line: 1992
  1662. +# File: fltk/jwm-panel.cxx, line: 1995
  1663. msgid "The layout of the tray. The default is horizontal."
  1664. msgstr ""
  1665. #
  1666. -# File: fltk/jwm-panel.cxx, line: 1998
  1667. +# File: fltk/jwm-panel.cxx, line: 2001
  1668. #. Fl_Output* layOut
  1669. msgid "layer"
  1670. msgstr ""
  1671. #
  1672. -# File: fltk/jwm-panel.cxx, line: 2012
  1673. +# File: fltk/jwm-panel.cxx, line: 2015
  1674. msgid "The layer of the tray. The default is above."
  1675. msgstr ""
  1676. #
  1677. -# File: fltk/jwm-panel.cxx, line: 2040
  1678. -# File: fltk/jwm-panel.cxx, line: 2044
  1679. +# File: fltk/jwm-panel.cxx, line: 2043
  1680. +# File: fltk/jwm-panel.cxx, line: 2047
  1681. #. Fl_Button* save_button
  1682. msgid "Edit Menus"
  1683. msgstr ""
  1684. #
  1685. -# File: fltk/jwm-panel.cxx, line: 2057
  1686. +# File: fltk/jwm-panel.cxx, line: 2060
  1687. msgid "Add Indicator"
  1688. msgstr ""
  1689. #
  1690. -# File: fltk/jwm-panel.cxx, line: 2091
  1691. -# File: fltk/jwm-panel.cxx, line: 2120
  1692. +# File: fltk/jwm-panel.cxx, line: 2094
  1693. +# File: fltk/jwm-panel.cxx, line: 2123
  1694. msgid "Add to Panel"
  1695. msgstr ""
  1696. #
  1697. -# File: fltk/jwm-panel.cxx, line: 2128
  1698. -# File: fltk/jwm-panel.cxx, line: 2174
  1699. -# File: fltk/jwm-panel.cxx, line: 2515
  1700. +# File: fltk/jwm-panel.cxx, line: 2131
  1701. +# File: fltk/jwm-panel.cxx, line: 2177
  1702. +# File: fltk/jwm-panel.cxx, line: 2518
  1703. msgid "Configure Clock"
  1704. msgstr ""
  1705. #
  1706. -# File: fltk/jwm-panel.cxx, line: 2139
  1707. -# File: fltk/jwm-panel.cxx, line: 2144
  1708. +# File: fltk/jwm-panel.cxx, line: 2142
  1709. +# File: fltk/jwm-panel.cxx, line: 2147
  1710. #. Fl_Button* o
  1711. msgid "style"
  1712. msgstr ""
  1713. #
  1714. -# File: fltk/jwm-panel.cxx, line: 2159
  1715. -# File: fltk/jwm-panel.cxx, line: 2163
  1716. -# File: fltk/jwm-panel.cxx, line: 2183
  1717. +# File: fltk/jwm-panel.cxx, line: 2162
  1718. +# File: fltk/jwm-panel.cxx, line: 2166
  1719. +# File: fltk/jwm-panel.cxx, line: 2186
  1720. #. Fl_Output* clock_display
  1721. msgid "Notes"
  1722. msgstr ""
  1723. #
  1724. -# File: fltk/jwm-panel.cxx, line: 2165
  1725. -# File: fltk/jwm-panel.cxx, line: 2169
  1726. -# File: fltk/jwm-panel.cxx, line: 2220
  1727. +# File: fltk/jwm-panel.cxx, line: 2168
  1728. +# File: fltk/jwm-panel.cxx, line: 2172
  1729. +# File: fltk/jwm-panel.cxx, line: 2223
  1730. #. Fl_Button* o
  1731. msgid "Modifier Notes"
  1732. msgstr ""
  1733. #
  1734. -# File: fltk/jwm-panel.cxx, line: 2186
  1735. +# File: fltk/jwm-panel.cxx, line: 2189
  1736. msgid ""
  1737. "ISO 8601 week dates %G, %g, and %V yield values calculated from the week-"
  1738. "based year defined by the ISO 8601 standard. In this system, weeks start "
  1739. @@ -2307,7 +2327,7 @@
  1740. "on Monday, 4 January 2010."
  1741. msgstr ""
  1742. #
  1743. -# File: fltk/jwm-panel.cxx, line: 2223
  1744. +# File: fltk/jwm-panel.cxx, line: 2226
  1745. msgid ""
  1746. "Some conversion specifications can be modified by preceding the "
  1747. "conversion specifier character by the E or O modifier to indicate that an "
  1748. @@ -2322,151 +2342,151 @@
  1749. "The broken-down time structure tm is defined in <time.h>."
  1750. msgstr ""
  1751. #
  1752. -# File: fltk/jwm-panel.cxx, line: 2246
  1753. +# File: fltk/jwm-panel.cxx, line: 2249
  1754. #. Fl_Scroll* o
  1755. msgid "See also ctime"
  1756. msgstr ""
  1757. #
  1758. -# File: fltk/jwm-panel.cxx, line: 2261
  1759. -# File: fltk/jwm-panel.cxx, line: 3175
  1760. -# File: src/jwmrc.cpp, line: 2585
  1761. +# File: fltk/jwm-panel.cxx, line: 2264
  1762. +# File: fltk/jwm-panel.cxx, line: 3185
  1763. +# File: src/jwmrc.cpp, line: 2814
  1764. # File: src/panel.cpp, line: 639
  1765. msgid "Running App List"
  1766. msgstr ""
  1767. #
  1768. -# File: fltk/jwm-panel.cxx, line: 2285
  1769. -# File: fltk/jwm-panel.cxx, line: 2294
  1770. -# File: fltk/jwm-panel.cxx, line: 2383
  1771. -# File: fltk/jwm-panel.cxx, line: 2391
  1772. -# File: fltk/jwm-panel.cxx, line: 2400
  1773. -# File: fltk/jwm-panel.cxx, line: 2409
  1774. +# File: fltk/jwm-panel.cxx, line: 2288
  1775. +# File: fltk/jwm-panel.cxx, line: 2297
  1776. +# File: fltk/jwm-panel.cxx, line: 2386
  1777. +# File: fltk/jwm-panel.cxx, line: 2394
  1778. +# File: fltk/jwm-panel.cxx, line: 2403
  1779. +# File: fltk/jwm-panel.cxx, line: 2412
  1780. msgid "Optional, Will use Panel colors if not specified."
  1781. msgstr ""
  1782. #
  1783. -# File: fltk/jwm-panel.cxx, line: 2302
  1784. +# File: fltk/jwm-panel.cxx, line: 2305
  1785. #. Fl_Button* task_fg_color
  1786. msgid "Max Width"
  1787. msgstr ""
  1788. #
  1789. -# File: fltk/jwm-panel.cxx, line: 2303
  1790. +# File: fltk/jwm-panel.cxx, line: 2306
  1791. msgid ""
  1792. "The maximum width of an item in the task list. 0 indicates no maximum. "
  1793. "The default is 0"
  1794. msgstr ""
  1795. #
  1796. -# File: fltk/jwm-panel.cxx, line: 2310
  1797. +# File: fltk/jwm-panel.cxx, line: 2313
  1798. msgid ""
  1799. "The height of an item in the task list. 0 indicates that the height "
  1800. "should be taken from the tray. The default is 0."
  1801. msgstr ""
  1802. #
  1803. -# File: fltk/jwm-panel.cxx, line: 2319
  1804. +# File: fltk/jwm-panel.cxx, line: 2322
  1805. msgid ""
  1806. "Determines if a label is shown for items in the task list. The default is "
  1807. "true."
  1808. msgstr ""
  1809. #
  1810. -# File: fltk/jwm-panel.cxx, line: 2328
  1811. +# File: fltk/jwm-panel.cxx, line: 2331
  1812. #. Fl_Check_Button* o
  1813. msgid "Group"
  1814. msgstr ""
  1815. #
  1816. -# File: fltk/jwm-panel.cxx, line: 2329
  1817. +# File: fltk/jwm-panel.cxx, line: 2332
  1818. msgid ""
  1819. "Determines if windows are grouped by class when shown in task bars. "
  1820. "Possible values are true and false. The default is false."
  1821. msgstr ""
  1822. #
  1823. -# File: fltk/jwm-panel.cxx, line: 2338
  1824. +# File: fltk/jwm-panel.cxx, line: 2341
  1825. #. Fl_Check_Button* o
  1826. msgid "List"
  1827. msgstr ""
  1828. #
  1829. -# File: fltk/jwm-panel.cxx, line: 2339
  1830. +# File: fltk/jwm-panel.cxx, line: 2342
  1831. msgid ""
  1832. "Determines which windows are shown in task bars. Possible values are "
  1833. "desktop and all. The default is desktop."
  1834. msgstr ""
  1835. #
  1836. -# File: fltk/jwm-panel.cxx, line: 2426
  1837. +# File: fltk/jwm-panel.cxx, line: 2429
  1838. msgid "Configure Button"
  1839. msgstr ""
  1840. #
  1841. -# File: fltk/jwm-panel.cxx, line: 2430
  1842. -# File: fltk/jwm-panel.cxx, line: 2473
  1843. +# File: fltk/jwm-panel.cxx, line: 2433
  1844. +# File: fltk/jwm-panel.cxx, line: 2476
  1845. msgid "Text for the Panel Button"
  1846. msgstr ""
  1847. #
  1848. -# File: fltk/jwm-panel.cxx, line: 2438
  1849. -# File: fltk/jwm-panel.cxx, line: 2805
  1850. +# File: fltk/jwm-panel.cxx, line: 2441
  1851. +# File: fltk/jwm-panel.cxx, line: 2808
  1852. msgid "The icon file name"
  1853. msgstr ""
  1854. #
  1855. -# File: fltk/jwm-panel.cxx, line: 2445
  1856. -# File: fltk/jwm-panel.cxx, line: 2797
  1857. -# File: fltk/jwm-window.cxx, line: 739
  1858. +# File: fltk/jwm-panel.cxx, line: 2448
  1859. +# File: fltk/jwm-panel.cxx, line: 2800
  1860. +# File: fltk/jwm-window.cxx, line: 1942
  1861. # File: src/fltkfunctions.cpp, line: 156
  1862. msgid "Choose an Icon"
  1863. msgstr ""
  1864. #
  1865. -# File: fltk/jwm-panel.cxx, line: 2453
  1866. -# File: fltk/jwm-panel.cxx, line: 2598
  1867. +# File: fltk/jwm-panel.cxx, line: 2456
  1868. +# File: fltk/jwm-panel.cxx, line: 2601
  1869. #. Fl_Button* button_icon_view
  1870. #. Fl_Value_Input* o
  1871. msgid "Mouse Button"
  1872. msgstr ""
  1873. #
  1874. -# File: fltk/jwm-panel.cxx, line: 2467
  1875. +# File: fltk/jwm-panel.cxx, line: 2470
  1876. msgid "Button 1 is Left, Button 2 is right. Button 3 is middle."
  1877. msgstr ""
  1878. #
  1879. -# File: fltk/jwm-panel.cxx, line: 2481
  1880. -# File: fltk/jwm-panel.cxx, line: 2628
  1881. +# File: fltk/jwm-panel.cxx, line: 2484
  1882. +# File: fltk/jwm-panel.cxx, line: 2631
  1883. msgid "Configure the program"
  1884. msgstr ""
  1885. #
  1886. -# File: fltk/jwm-panel.cxx, line: 2488
  1887. -# File: fltk/jwm-panel.cxx, line: 2810
  1888. +# File: fltk/jwm-panel.cxx, line: 2491
  1889. +# File: fltk/jwm-panel.cxx, line: 2813
  1890. msgid "The root menu the button is tied to"
  1891. msgstr ""
  1892. #
  1893. -# File: fltk/jwm-panel.cxx, line: 2494
  1894. +# File: fltk/jwm-panel.cxx, line: 2497
  1895. msgid "Configure this menu"
  1896. msgstr ""
  1897. #
  1898. -# File: fltk/jwm-panel.cxx, line: 2524
  1899. +# File: fltk/jwm-panel.cxx, line: 2527
  1900. #. Fl_Browser* zone_browser
  1901. msgid "Clock Format"
  1902. msgstr ""
  1903. #
  1904. -# File: fltk/jwm-panel.cxx, line: 2529
  1905. +# File: fltk/jwm-panel.cxx, line: 2532
  1906. msgid "Day name Month Day 12 Hour"
  1907. msgstr ""
  1908. #
  1909. -# File: fltk/jwm-panel.cxx, line: 2533
  1910. +# File: fltk/jwm-panel.cxx, line: 2536
  1911. msgid "24 Hour Clock"
  1912. msgstr ""
  1913. #
  1914. -# File: fltk/jwm-panel.cxx, line: 2537
  1915. +# File: fltk/jwm-panel.cxx, line: 2540
  1916. msgid "12 Hour Clock"
  1917. msgstr ""
  1918. #
  1919. -# File: fltk/jwm-panel.cxx, line: 2541
  1920. +# File: fltk/jwm-panel.cxx, line: 2544
  1921. msgid "Year Month Day 24 Hour clock"
  1922. msgstr ""
  1923. #
  1924. -# File: fltk/jwm-panel.cxx, line: 2545
  1925. +# File: fltk/jwm-panel.cxx, line: 2548
  1926. msgid "(Advanced) User Defined"
  1927. msgstr ""
  1928. #
  1929. -# File: fltk/jwm-panel.cxx, line: 2565
  1930. +# File: fltk/jwm-panel.cxx, line: 2568
  1931. msgid ""
  1932. "The width of the clock. 0 indicates that the width should be determined from "
  1933. "the length of the text to be displayed."
  1934. msgstr ""
  1935. #
  1936. -# File: fltk/jwm-panel.cxx, line: 2572
  1937. -# File: fltk/jwm-panel.cxx, line: 2892
  1938. +# File: fltk/jwm-panel.cxx, line: 2575
  1939. +# File: fltk/jwm-panel.cxx, line: 2895
  1940. # File: fltk/jwm-popups.cxx, line: 1113
  1941. # File: fltk/jwm-popups.cxx, line: 1146
  1942. # File: fltk/jwm-popups.cxx, line: 1179
  1943. @@ -2476,13 +2496,13 @@
  1944. msgid "Foreground"
  1945. msgstr ""
  1946. #
  1947. -# File: fltk/jwm-panel.cxx, line: 2573
  1948. -# File: fltk/jwm-panel.cxx, line: 2582
  1949. +# File: fltk/jwm-panel.cxx, line: 2576
  1950. +# File: fltk/jwm-panel.cxx, line: 2585
  1951. msgid "Optional, this will use the Panel colors if not specified"
  1952. msgstr ""
  1953. #
  1954. -# File: fltk/jwm-panel.cxx, line: 2581
  1955. -# File: fltk/jwm-panel.cxx, line: 2896
  1956. +# File: fltk/jwm-panel.cxx, line: 2584
  1957. +# File: fltk/jwm-panel.cxx, line: 2899
  1958. # File: fltk/jwm-popups.cxx, line: 678
  1959. # File: fltk/jwm-popups.cxx, line: 1131
  1960. # File: fltk/jwm-popups.cxx, line: 1164
  1961. @@ -2496,87 +2516,87 @@
  1962. msgid "Background"
  1963. msgstr ""
  1964. #
  1965. -# File: fltk/jwm-panel.cxx, line: 2591
  1966. +# File: fltk/jwm-panel.cxx, line: 2594
  1967. msgid ""
  1968. "The height of the clock. 0 indicates that the height should be determined "
  1969. "from the font used."
  1970. msgstr ""
  1971. #
  1972. -# File: fltk/jwm-panel.cxx, line: 2619
  1973. +# File: fltk/jwm-panel.cxx, line: 2622
  1974. msgid "Execute a command."
  1975. msgstr ""
  1976. #
  1977. -# File: fltk/jwm-panel.cxx, line: 2635
  1978. +# File: fltk/jwm-panel.cxx, line: 2638
  1979. msgid "The root menu the Clock is tied to"
  1980. msgstr ""
  1981. #
  1982. -# File: fltk/jwm-panel.cxx, line: 2641
  1983. +# File: fltk/jwm-panel.cxx, line: 2644
  1984. msgid "Configure the menu"
  1985. msgstr ""
  1986. #
  1987. -# File: fltk/jwm-panel.cxx, line: 2654
  1988. +# File: fltk/jwm-panel.cxx, line: 2657
  1989. msgid "Type to search"
  1990. msgstr ""
  1991. #
  1992. -# File: fltk/jwm-panel.cxx, line: 2662
  1993. +# File: fltk/jwm-panel.cxx, line: 2665
  1994. #. Fl_Input* tz_out
  1995. msgid "SET"
  1996. msgstr ""
  1997. #
  1998. -# File: fltk/jwm-panel.cxx, line: 2683
  1999. +# File: fltk/jwm-panel.cxx, line: 2686
  2000. msgid "Configure Indicators"
  2001. msgstr ""
  2002. #
  2003. -# File: fltk/jwm-panel.cxx, line: 2711
  2004. +# File: fltk/jwm-panel.cxx, line: 2714
  2005. msgid ""
  2006. "The maximum width of an item contained in the dock. This defaults to the "
  2007. "width or height of the tray (whichever is smaller)."
  2008. msgstr ""
  2009. #
  2010. -# File: fltk/jwm-panel.cxx, line: 2718
  2011. +# File: fltk/jwm-panel.cxx, line: 2721
  2012. #. Fl_Value_Input* o
  2013. msgid "Spacing"
  2014. msgstr ""
  2015. #
  2016. -# File: fltk/jwm-panel.cxx, line: 2719
  2017. +# File: fltk/jwm-panel.cxx, line: 2722
  2018. msgid "Number of pixels to leave between items in the dock. The default is 0."
  2019. msgstr ""
  2020. #
  2021. -# File: fltk/jwm-panel.cxx, line: 2736
  2022. +# File: fltk/jwm-panel.cxx, line: 2739
  2023. msgid "Manual Editing"
  2024. msgstr ""
  2025. #
  2026. -# File: fltk/jwm-panel.cxx, line: 2749
  2027. -# File: fltk/jwm-panel.cxx, line: 2767
  2028. +# File: fltk/jwm-panel.cxx, line: 2752
  2029. +# File: fltk/jwm-panel.cxx, line: 2770
  2030. msgid "The text that pops up when you hover"
  2031. msgstr ""
  2032. #
  2033. -# File: fltk/jwm-panel.cxx, line: 2779
  2034. +# File: fltk/jwm-panel.cxx, line: 2782
  2035. msgid "Configure Menu"
  2036. msgstr ""
  2037. #
  2038. -# File: fltk/jwm-panel.cxx, line: 2790
  2039. +# File: fltk/jwm-panel.cxx, line: 2793
  2040. msgid "Text for the Button that shows the menu"
  2041. msgstr ""
  2042. #
  2043. -# File: fltk/jwm-panel.cxx, line: 2815
  2044. +# File: fltk/jwm-panel.cxx, line: 2818
  2045. msgid "Configure the menu items"
  2046. msgstr ""
  2047. #
  2048. -# File: fltk/jwm-panel.cxx, line: 2830
  2049. +# File: fltk/jwm-panel.cxx, line: 2833
  2050. msgid "Configure Swallowed Application"
  2051. msgstr ""
  2052. #
  2053. -# File: fltk/jwm-panel.cxx, line: 2838
  2054. +# File: fltk/jwm-panel.cxx, line: 2841
  2055. #. Fl_Button* o
  2056. msgid "App Name"
  2057. msgstr ""
  2058. #
  2059. -# File: fltk/jwm-panel.cxx, line: 2839
  2060. +# File: fltk/jwm-panel.cxx, line: 2842
  2061. msgid "This MUST be the same as the executable's name"
  2062. msgstr ""
  2063. #
  2064. -# File: fltk/jwm-panel.cxx, line: 2858
  2065. +# File: fltk/jwm-panel.cxx, line: 2861
  2066. msgid ""
  2067. "The width of the swallowed program. 0 indicates\n"
  2068. "that the width should be determined\n"
  2069. @@ -2584,7 +2604,7 @@
  2070. "program. 0 is the default."
  2071. msgstr ""
  2072. #
  2073. -# File: fltk/jwm-panel.cxx, line: 2867
  2074. +# File: fltk/jwm-panel.cxx, line: 2870
  2075. msgid ""
  2076. "The height of the swallowed program. 0 indicates\n"
  2077. "that the height should be determined\n"
  2078. @@ -2592,99 +2612,99 @@
  2079. "program. 0 is the default."
  2080. msgstr ""
  2081. #
  2082. -# File: fltk/jwm-panel.cxx, line: 2883
  2083. +# File: fltk/jwm-panel.cxx, line: 2886
  2084. msgid "Configure Switcher"
  2085. msgstr ""
  2086. #
  2087. -# File: fltk/jwm-panel.cxx, line: 2926
  2088. +# File: fltk/jwm-panel.cxx, line: 2929
  2089. #. Fl_Button* t_bg
  2090. msgid "Number of Desktops Wide"
  2091. msgstr ""
  2092. #
  2093. -# File: fltk/jwm-panel.cxx, line: 2933
  2094. +# File: fltk/jwm-panel.cxx, line: 2936
  2095. #. Fl_Value_Input* num_desktop_w
  2096. msgid "Number of Desktops High "
  2097. msgstr ""
  2098. #
  2099. -# File: fltk/jwm-panel.cxx, line: 2940
  2100. +# File: fltk/jwm-panel.cxx, line: 2943
  2101. #. Fl_Value_Input* num_desktop_h
  2102. msgid "Labled"
  2103. msgstr ""
  2104. #
  2105. -# File: fltk/jwm-panel.cxx, line: 2941
  2106. +# File: fltk/jwm-panel.cxx, line: 2944
  2107. msgid "Determines if the pager has text labels. Default is false."
  2108. msgstr ""
  2109. #
  2110. -# File: fltk/jwm-panel.cxx, line: 2956
  2111. +# File: fltk/jwm-panel.cxx, line: 2959
  2112. msgid "Choose an application to add"
  2113. msgstr ""
  2114. #
  2115. -# File: fltk/jwm-panel.cxx, line: 2958
  2116. +# File: fltk/jwm-panel.cxx, line: 2961
  2117. msgid "Application"
  2118. msgstr ""
  2119. #
  2120. -# File: fltk/jwm-panel.cxx, line: 2965
  2121. +# File: fltk/jwm-panel.cxx, line: 2968
  2122. msgid "You can add arguments here"
  2123. msgstr ""
  2124. #
  2125. -# File: fltk/jwm-panel.cxx, line: 2972
  2126. +# File: fltk/jwm-panel.cxx, line: 2975
  2127. #. Fl_Input* app_command
  2128. msgid "Tooltip Label"
  2129. msgstr ""
  2130. #
  2131. -# File: fltk/jwm-panel.cxx, line: 2990
  2132. +# File: fltk/jwm-panel.cxx, line: 2993
  2133. #. Fl_Button* ok_button
  2134. msgid "Show a Border around the Button?"
  2135. msgstr ""
  2136. #
  2137. -# File: fltk/jwm-panel.cxx, line: 2991
  2138. +# File: fltk/jwm-panel.cxx, line: 2994
  2139. msgid "The button you are adding can be borderless, if you like"
  2140. msgstr ""
  2141. #
  2142. -# File: fltk/jwm-panel.cxx, line: 2998
  2143. +# File: fltk/jwm-panel.cxx, line: 3001
  2144. #. Fl_Check_Button* shortcut_border
  2145. msgid "Current Panel Buttons"
  2146. msgstr ""
  2147. #
  2148. -# File: fltk/jwm-panel.cxx, line: 3006
  2149. +# File: fltk/jwm-panel.cxx, line: 3009
  2150. msgid "Remove application launcher"
  2151. msgstr ""
  2152. #
  2153. -# File: fltk/jwm-panel.cxx, line: 3014
  2154. +# File: fltk/jwm-panel.cxx, line: 3017
  2155. #. Fl_Button* o
  2156. msgid "Icon File Name"
  2157. msgstr ""
  2158. #
  2159. -# File: fltk/jwm-panel.cxx, line: 3042
  2160. +# File: fltk/jwm-panel.cxx, line: 3045
  2161. msgid "Only Four Panels are supported"
  2162. msgstr ""
  2163. #
  2164. -# File: fltk/jwm-panel.cxx, line: 3176
  2165. -# File: src/jwmrc.cpp, line: 2586
  2166. +# File: fltk/jwm-panel.cxx, line: 3186
  2167. +# File: src/jwmrc.cpp, line: 2815
  2168. # File: src/panel.cpp, line: 640
  2169. msgid "Indicators"
  2170. msgstr ""
  2171. #
  2172. -# File: fltk/jwm-panel.cxx, line: 3177
  2173. -# File: src/jwmrc.cpp, line: 2587
  2174. +# File: fltk/jwm-panel.cxx, line: 3187
  2175. +# File: src/jwmrc.cpp, line: 2816
  2176. # File: src/panel.cpp, line: 641
  2177. msgid "Clock"
  2178. msgstr ""
  2179. #
  2180. -# File: fltk/jwm-panel.cxx, line: 3178
  2181. -# File: src/jwmrc.cpp, line: 2588
  2182. +# File: fltk/jwm-panel.cxx, line: 3188
  2183. +# File: src/jwmrc.cpp, line: 2817
  2184. # File: src/panel.cpp, line: 642
  2185. msgid "Swallow"
  2186. msgstr ""
  2187. #
  2188. -# File: fltk/jwm-panel.cxx, line: 3180
  2189. -# File: src/jwmrc.cpp, line: 2590
  2190. +# File: fltk/jwm-panel.cxx, line: 3190
  2191. +# File: src/jwmrc.cpp, line: 2819
  2192. # File: src/panel.cpp, line: 644
  2193. msgid "Desktop Switcher"
  2194. msgstr ""
  2195. #
  2196. -# File: fltk/jwm-panel.cxx, line: 3181
  2197. -# File: src/jwmrc.cpp, line: 2591
  2198. +# File: fltk/jwm-panel.cxx, line: 3191
  2199. +# File: src/jwmrc.cpp, line: 2820
  2200. msgid "Launcher"
  2201. msgstr ""
  2202. #
  2203. @@ -2752,7 +2772,7 @@
  2204. msgstr ""
  2205. #
  2206. # File: fltk/jwm-popups.cxx, line: 701
  2207. -msgid "Sytem notification pop up windows"
  2208. +msgid "System notification pop up windows"
  2209. msgstr ""
  2210. #
  2211. # File: fltk/jwm-popups.cxx, line: 717
  2212. @@ -3176,7 +3196,7 @@
  2213. msgstr ""
  2214. #
  2215. # File: fltk/jwm-settings.cxx, line: 4127
  2216. -msgid "This is for Predefined Thems"
  2217. +msgid "This is for Predefined Themes"
  2218. msgstr ""
  2219. #
  2220. # File: fltk/jwm-settings.cxx, line: 4133
  2221. @@ -3200,7 +3220,7 @@
  2222. msgstr ""
  2223. #
  2224. # File: fltk/jwm-shutdown.cxx, line: 84
  2225. -# File: src/jwmrc.cpp, line: 454
  2226. +# File: src/jwmrc.cpp, line: 470
  2227. #. Fl_Button* shut
  2228. msgid "Restart"
  2229. msgstr ""
  2230. @@ -3231,7 +3251,10 @@
  2231. msgstr ""
  2232. #
  2233. # File: fltk/jwm-themes.cxx, line: 113
  2234. +# File: fltk/jwm-window.cxx, line: 2061
  2235. +# File: fltk/jwm-window.cxx, line: 2196
  2236. #. Fl_Box* button_icon
  2237. +#. Fl_Box* o
  2238. msgid "Button"
  2239. msgstr ""
  2240. #
  2241. @@ -3264,476 +3287,593 @@
  2242. msgid "Overwrite Current Theme"
  2243. msgstr ""
  2244. #
  2245. -# File: fltk/jwm-window.cxx, line: 662
  2246. +# File: fltk/jwm-window.cxx, line: 1865
  2247. msgid "Add an Option"
  2248. msgstr ""
  2249. #
  2250. -# File: fltk/jwm-window.cxx, line: 681
  2251. +# File: fltk/jwm-window.cxx, line: 1884
  2252. msgid "The Icon Name"
  2253. msgstr ""
  2254. #
  2255. -# File: fltk/jwm-window.cxx, line: 686
  2256. +# File: fltk/jwm-window.cxx, line: 1889
  2257. #. Fl_Input* icon_value
  2258. msgid "Opacity"
  2259. msgstr ""
  2260. #
  2261. -# File: fltk/jwm-window.cxx, line: 702
  2262. +# File: fltk/jwm-window.cxx, line: 1905
  2263. msgid "Cancel changes"
  2264. msgstr ""
  2265. #
  2266. -# File: fltk/jwm-window.cxx, line: 711
  2267. +# File: fltk/jwm-window.cxx, line: 1914
  2268. msgid "Save Changes"
  2269. msgstr ""
  2270. #
  2271. -# File: fltk/jwm-window.cxx, line: 719
  2272. +# File: fltk/jwm-window.cxx, line: 1922
  2273. #. Fl_Button* o
  2274. msgid "Layer"
  2275. msgstr ""
  2276. #
  2277. -# File: fltk/jwm-window.cxx, line: 720
  2278. +# File: fltk/jwm-window.cxx, line: 1923
  2279. msgid "Choose a layer"
  2280. msgstr ""
  2281. #
  2282. -# File: fltk/jwm-window.cxx, line: 734
  2283. +# File: fltk/jwm-window.cxx, line: 1937
  2284. msgid "The layer this option effects"
  2285. msgstr ""
  2286. #
  2287. -# File: fltk/jwm-window.cxx, line: 755
  2288. +# File: fltk/jwm-window.cxx, line: 1958
  2289. msgid "Add Class"
  2290. msgstr ""
  2291. #
  2292. -# File: fltk/jwm-window.cxx, line: 757
  2293. +# File: fltk/jwm-window.cxx, line: 1960
  2294. msgid "Class to Add"
  2295. msgstr ""
  2296. #
  2297. -# File: fltk/jwm-window.cxx, line: 777
  2298. +# File: fltk/jwm-window.cxx, line: 1980
  2299. msgid "Program to add"
  2300. msgstr ""
  2301. #
  2302. -# File: fltk/jwm-window.cxx, line: 791
  2303. +# File: fltk/jwm-window.cxx, line: 1994
  2304. #. Fl_Button* o
  2305. msgid "Program @+"
  2306. msgstr ""
  2307. #
  2308. -# File: fltk/jwm-window.cxx, line: 806
  2309. +# File: fltk/jwm-window.cxx, line: 2007
  2310. +# File: fltk/jwm-window.cxx, line: 3015
  2311. +msgid "Add Item"
  2312. +msgstr ""
  2313. +#
  2314. +# File: fltk/jwm-window.cxx, line: 2009
  2315. +# File: fltk/jwm-window.cxx, line: 2143
  2316. +msgid "Button Action"
  2317. +msgstr ""
  2318. +#
  2319. +# File: fltk/jwm-window.cxx, line: 2010
  2320. +# File: fltk/jwm-window.cxx, line: 2144
  2321. +msgid "Typically the left button"
  2322. +msgstr ""
  2323. +#
  2324. +# File: fltk/jwm-window.cxx, line: 2024
  2325. +# File: fltk/jwm-window.cxx, line: 2158
  2326. +msgid "The mouse button you click"
  2327. +msgstr ""
  2328. +#
  2329. +# File: fltk/jwm-window.cxx, line: 2029
  2330. +# File: fltk/jwm-window.cxx, line: 2164
  2331. +msgid "The part of the window you click"
  2332. +msgstr ""
  2333. +#
  2334. +# File: fltk/jwm-window.cxx, line: 2059
  2335. +# File: fltk/jwm-window.cxx, line: 2194
  2336. +#. Fl_Button* o
  2337. +msgid "OR program"
  2338. +msgstr ""
  2339. +#
  2340. +# File: fltk/jwm-window.cxx, line: 2062
  2341. +# File: fltk/jwm-window.cxx, line: 2197
  2342. +msgid ""
  2343. +"Negative values are for Button Release, positive are for Click. Double "
  2344. +"values are Double Click."
  2345. +msgstr ""
  2346. +#
  2347. +# File: fltk/jwm-window.cxx, line: 2077
  2348. +# File: fltk/jwm-window.cxx, line: 2212
  2349. +msgid "The action to perform"
  2350. +msgstr ""
  2351. +#
  2352. +# File: fltk/jwm-window.cxx, line: 2081
  2353. +# File: fltk/jwm-window.cxx, line: 2217
  2354. +#. Fl_Input* action_input
  2355. +#. Fl_Input* value_1
  2356. +msgid "Modifier"
  2357. +msgstr ""
  2358. +#
  2359. +# File: fltk/jwm-window.cxx, line: 2082
  2360. +# File: fltk/jwm-window.cxx, line: 2218
  2361. +msgid "The modifier key"
  2362. +msgstr ""
  2363. +#
  2364. +# File: fltk/jwm-window.cxx, line: 2107
  2365. +msgid ""
  2366. +"m Maximize button\n"
  2367. +"i Minimize (iconify) button\n"
  2368. +"t Window title\n"
  2369. +"w Window menu button\n"
  2370. +"x Close button"
  2371. +msgstr ""
  2372. +#
  2373. +# File: fltk/jwm-window.cxx, line: 2109
  2374. +msgid ""
  2375. +"Title Button Order\n"
  2376. +"\n"
  2377. +"m Maximize button\n"
  2378. +"i Minimize (iconify) button\n"
  2379. +"t Window title\n"
  2380. +"w Window menu button\n"
  2381. +"x Close button"
  2382. +msgstr ""
  2383. +#
  2384. +# File: fltk/jwm-window.cxx, line: 2163
  2385. +#. Fl_Output* button
  2386. +msgid "Item to configure"
  2387. +msgstr ""
  2388. +#
  2389. +# File: fltk/jwm-window.cxx, line: 2229
  2390. +msgid "Widget theme"
  2391. +msgstr ""
  2392. +#
  2393. +# File: fltk/jwm-window.cxx, line: 2232
  2394. +# File: fltk/jwm-window.cxx, line: 2233
  2395. +# File: fltk/jwm-window.cxx, line: 2249
  2396. +# File: fltk/jwm-window.cxx, line: 2930
  2397. +msgid "You will need to close any open windows to see the change"
  2398. +msgstr ""
  2399. +#
  2400. +# File: fltk/jwm-window.cxx, line: 2267
  2401. msgid "Window Settings"
  2402. msgstr ""
  2403. #
  2404. -# File: fltk/jwm-window.cxx, line: 818
  2405. -# File: fltk/jwm-window.cxx, line: 832
  2406. +# File: fltk/jwm-window.cxx, line: 2279
  2407. +# File: fltk/jwm-window.cxx, line: 2293
  2408. msgid ""
  2409. "The color of the title bar (gradients are supported). The default is "
  2410. "#CC7700:#884400."
  2411. msgstr ""
  2412. #
  2413. -# File: fltk/jwm-window.cxx, line: 823
  2414. +# File: fltk/jwm-window.cxx, line: 2284
  2415. #. Fl_Box* o
  2416. msgid "Active Window"
  2417. msgstr ""
  2418. #
  2419. -# File: fltk/jwm-window.cxx, line: 828
  2420. -# File: fltk/jwm-window.cxx, line: 906
  2421. +# File: fltk/jwm-window.cxx, line: 2289
  2422. +# File: fltk/jwm-window.cxx, line: 2367
  2423. #. Fl_Box* o
  2424. msgid "Title bar"
  2425. msgstr ""
  2426. #
  2427. -# File: fltk/jwm-window.cxx, line: 831
  2428. -# File: fltk/jwm-window.cxx, line: 909
  2429. +# File: fltk/jwm-window.cxx, line: 2292
  2430. +# File: fltk/jwm-window.cxx, line: 2370
  2431. #. Fl_Box* o
  2432. msgid "Color 1"
  2433. msgstr ""
  2434. #
  2435. -# File: fltk/jwm-window.cxx, line: 840
  2436. -# File: fltk/jwm-window.cxx, line: 919
  2437. +# File: fltk/jwm-window.cxx, line: 2301
  2438. +# File: fltk/jwm-window.cxx, line: 2380
  2439. #. Fl_Button* a_title_color1
  2440. #. Fl_Button* inactive_color
  2441. msgid "Color 2"
  2442. msgstr ""
  2443. #
  2444. -# File: fltk/jwm-window.cxx, line: 841
  2445. -# File: fltk/jwm-window.cxx, line: 853
  2446. +# File: fltk/jwm-window.cxx, line: 2302
  2447. +# File: fltk/jwm-window.cxx, line: 2314
  2448. msgid ""
  2449. "The color of the text and buttons in the title bar. The default is "
  2450. "white."
  2451. msgstr ""
  2452. #
  2453. -# File: fltk/jwm-window.cxx, line: 849
  2454. -# File: fltk/jwm-window.cxx, line: 929
  2455. +# File: fltk/jwm-window.cxx, line: 2310
  2456. +# File: fltk/jwm-window.cxx, line: 2390
  2457. #. Fl_Button* a_title_color2
  2458. #. Fl_Button* inactive_color2
  2459. msgid "Font Color"
  2460. msgstr ""
  2461. #
  2462. -# File: fltk/jwm-window.cxx, line: 861
  2463. -# File: fltk/jwm-window.cxx, line: 941
  2464. +# File: fltk/jwm-window.cxx, line: 2322
  2465. +# File: fltk/jwm-window.cxx, line: 2402
  2466. #. Fl_Button* a_font_color
  2467. #. Fl_Button* inactive_font_color
  2468. msgid "Border Color"
  2469. msgstr ""
  2470. #
  2471. -# File: fltk/jwm-window.cxx, line: 865
  2472. +# File: fltk/jwm-window.cxx, line: 2326
  2473. msgid ""
  2474. "The color of the window outline. The default is a darkened version of the "
  2475. "window background."
  2476. msgstr ""
  2477. #
  2478. -# File: fltk/jwm-window.cxx, line: 873
  2479. +# File: fltk/jwm-window.cxx, line: 2334
  2480. #. Fl_Button* a_border_color
  2481. msgid "Opacity "
  2482. msgstr ""
  2483. #
  2484. -# File: fltk/jwm-window.cxx, line: 901
  2485. +# File: fltk/jwm-window.cxx, line: 2362
  2486. #. Fl_Box* o
  2487. msgid "Background Window"
  2488. msgstr ""
  2489. #
  2490. -# File: fltk/jwm-window.cxx, line: 910
  2491. -# File: fltk/jwm-window.cxx, line: 920
  2492. +# File: fltk/jwm-window.cxx, line: 2371
  2493. +# File: fltk/jwm-window.cxx, line: 2381
  2494. msgid ""
  2495. "The color of the title bar (gradients are supported) of inactive windows. "
  2496. "The default is #333333:#111111."
  2497. msgstr ""
  2498. #
  2499. -# File: fltk/jwm-window.cxx, line: 933
  2500. +# File: fltk/jwm-window.cxx, line: 2394
  2501. msgid ""
  2502. "The color of the text and buttons in the title bar of inactive windows. "
  2503. "The default is white."
  2504. msgstr ""
  2505. #
  2506. -# File: fltk/jwm-window.cxx, line: 945
  2507. +# File: fltk/jwm-window.cxx, line: 2406
  2508. msgid ""
  2509. "The color of the window outline for inactive windows. The default is "
  2510. "a darkened version of the window background."
  2511. msgstr ""
  2512. #
  2513. -# File: fltk/jwm-window.cxx, line: 953
  2514. +# File: fltk/jwm-window.cxx, line: 2414
  2515. #. Fl_Button* inactive_border_color
  2516. msgid "Opacity "
  2517. msgstr ""
  2518. #
  2519. -# File: fltk/jwm-window.cxx, line: 977
  2520. +# File: fltk/jwm-window.cxx, line: 2438
  2521. #. Fl_Value_Input* inactive_o_slider_v
  2522. msgid "Change the Window Button Images"
  2523. msgstr ""
  2524. #
  2525. -# File: fltk/jwm-window.cxx, line: 982
  2526. +# File: fltk/jwm-window.cxx, line: 2443
  2527. #. Fl_Box* o
  2528. msgid " Maximize (Activated)"
  2529. msgstr ""
  2530. #
  2531. -# File: fltk/jwm-window.cxx, line: 986
  2532. +# File: fltk/jwm-window.cxx, line: 2447
  2533. msgid ""
  2534. "Choose an icon to display for the minimize button on client windows instead "
  2535. "of the default."
  2536. msgstr ""
  2537. #
  2538. -# File: fltk/jwm-window.cxx, line: 994
  2539. +# File: fltk/jwm-window.cxx, line: 2455
  2540. #. Fl_Button* max_a_image
  2541. msgid " Maximize"
  2542. msgstr ""
  2543. #
  2544. -# File: fltk/jwm-window.cxx, line: 997
  2545. +# File: fltk/jwm-window.cxx, line: 2458
  2546. msgid ""
  2547. "Choose an icon to display for the maximize button on maximized client "
  2548. "windows instead of the default."
  2549. msgstr ""
  2550. #
  2551. -# File: fltk/jwm-window.cxx, line: 1005
  2552. +# File: fltk/jwm-window.cxx, line: 2466
  2553. #. Fl_Button* max_image
  2554. msgid " Minimize"
  2555. msgstr ""
  2556. #
  2557. -# File: fltk/jwm-window.cxx, line: 1008
  2558. +# File: fltk/jwm-window.cxx, line: 2469
  2559. msgid ""
  2560. "Choose an icon to display for the maximize button on client windows instead "
  2561. "of the default."
  2562. msgstr ""
  2563. #
  2564. -# File: fltk/jwm-window.cxx, line: 1016
  2565. +# File: fltk/jwm-window.cxx, line: 2477
  2566. #. Fl_Button* min_image
  2567. msgid " Close"
  2568. msgstr ""
  2569. #
  2570. -# File: fltk/jwm-window.cxx, line: 1019
  2571. -# File: fltk/jwm-window.cxx, line: 1046
  2572. +# File: fltk/jwm-window.cxx, line: 2480
  2573. +# File: fltk/jwm-window.cxx, line: 2515
  2574. msgid ""
  2575. "Choose an icon to display for the close button on client windows instead of "
  2576. "the default."
  2577. msgstr ""
  2578. #
  2579. -# File: fltk/jwm-window.cxx, line: 1028
  2580. -# File: fltk/jwm-window.cxx, line: 1037
  2581. +# File: fltk/jwm-window.cxx, line: 2489
  2582. +# File: fltk/jwm-window.cxx, line: 2498
  2583. msgid ""
  2584. "If motif window decorations are specified, two colors may be given "
  2585. "separated by a ':' to set the down and up colors respetively."
  2586. msgstr ""
  2587. #
  2588. -# File: fltk/jwm-window.cxx, line: 1045
  2589. +# File: fltk/jwm-window.cxx, line: 2506
  2590. #. Fl_Button* a_border_color2
  2591. +msgid "Button Actions"
  2592. +msgstr ""
  2593. +#
  2594. +# File: fltk/jwm-window.cxx, line: 2507
  2595. +msgid "Configure buttons for many features"
  2596. +msgstr ""
  2597. +#
  2598. +# File: fltk/jwm-window.cxx, line: 2514
  2599. +#. Fl_Button* button_actions
  2600. msgid "Button Order"
  2601. msgstr ""
  2602. #
  2603. -# File: fltk/jwm-window.cxx, line: 1056
  2604. +# File: fltk/jwm-window.cxx, line: 2525
  2605. #. Fl_Group* o
  2606. msgid "Settings"
  2607. msgstr ""
  2608. #
  2609. -# File: fltk/jwm-window.cxx, line: 1059
  2610. -# File: fltk/jwm-window.cxx, line: 1332
  2611. +# File: fltk/jwm-window.cxx, line: 2528
  2612. +# File: fltk/jwm-window.cxx, line: 2801
  2613. #. Fl_Value_Output* a_b_slider_v
  2614. msgid "Window Title Bar Size"
  2615. msgstr ""
  2616. #
  2617. -# File: fltk/jwm-window.cxx, line: 1060
  2618. -# File: fltk/jwm-window.cxx, line: 1076
  2619. +# File: fltk/jwm-window.cxx, line: 2529
  2620. +# File: fltk/jwm-window.cxx, line: 2545
  2621. msgid "This is the top with the program name, and close button, etc.."
  2622. msgstr ""
  2623. #
  2624. -# File: fltk/jwm-window.cxx, line: 1085
  2625. +# File: fltk/jwm-window.cxx, line: 2554
  2626. #. Fl_Value_Input* t_slider_v
  2627. msgid "Size of the Window Frame"
  2628. msgstr ""
  2629. #
  2630. -# File: fltk/jwm-window.cxx, line: 1086
  2631. -# File: fltk/jwm-window.cxx, line: 1103
  2632. +# File: fltk/jwm-window.cxx, line: 2555
  2633. +# File: fltk/jwm-window.cxx, line: 2572
  2634. msgid ""
  2635. "This makes the edges of the window larger or smaller to help you grab them "
  2636. "more easily"
  2637. msgstr ""
  2638. #
  2639. -# File: fltk/jwm-window.cxx, line: 1113
  2640. +# File: fltk/jwm-window.cxx, line: 2582
  2641. #. Fl_Value_Input* b_slider_v
  2642. msgid "Choose how the Window comes to the front of the screen"
  2643. msgstr ""
  2644. #
  2645. -# File: fltk/jwm-window.cxx, line: 1114
  2646. +# File: fltk/jwm-window.cxx, line: 2583
  2647. msgid "This determines how windows are brought to the front"
  2648. msgstr ""
  2649. #
  2650. -# File: fltk/jwm-window.cxx, line: 1135
  2651. +# File: fltk/jwm-window.cxx, line: 2604
  2652. #. Fl_Menu_Button* focus_menu
  2653. msgid "Appearance of the Window while Resizing"
  2654. msgstr ""
  2655. #
  2656. -# File: fltk/jwm-window.cxx, line: 1136
  2657. +# File: fltk/jwm-window.cxx, line: 2605
  2658. msgid "What the windows look like while resizing"
  2659. msgstr ""
  2660. #
  2661. -# File: fltk/jwm-window.cxx, line: 1151
  2662. +# File: fltk/jwm-window.cxx, line: 2620
  2663. #. Fl_Menu_Button* resize_menu
  2664. msgid "Appearance of Window while Moving"
  2665. msgstr ""
  2666. #
  2667. -# File: fltk/jwm-window.cxx, line: 1152
  2668. +# File: fltk/jwm-window.cxx, line: 2621
  2669. msgid "What the windows look like while moving"
  2670. msgstr ""
  2671. #
  2672. -# File: fltk/jwm-window.cxx, line: 1167
  2673. +# File: fltk/jwm-window.cxx, line: 2636
  2674. #. Fl_Menu_Button* move_menu
  2675. msgid "Choose what the Windows will snap to"
  2676. msgstr ""
  2677. #
  2678. -# File: fltk/jwm-window.cxx, line: 1168
  2679. +# File: fltk/jwm-window.cxx, line: 2637
  2680. msgid "This determines how windows 'Snap' to other windows, and screen edges"
  2681. msgstr ""
  2682. #
  2683. -# File: fltk/jwm-window.cxx, line: 1183
  2684. +# File: fltk/jwm-window.cxx, line: 2652
  2685. #. Fl_Menu_Button* snap_menu
  2686. msgid "How close (in pixels) does the window need to be to snap?"
  2687. msgstr ""
  2688. #
  2689. -# File: fltk/jwm-window.cxx, line: 1196
  2690. +# File: fltk/jwm-window.cxx, line: 2665
  2691. #. Fl_Value_Input* snap_int
  2692. msgid "Size of Corner"
  2693. msgstr ""
  2694. #
  2695. -# File: fltk/jwm-window.cxx, line: 1197
  2696. +# File: fltk/jwm-window.cxx, line: 2666
  2697. msgid ""
  2698. "The corner width of the window border for rounded window borders. The "
  2699. "default is 4, the minimum is 0 (rectangular), and the maximum is 5 (most "
  2700. "rounded)."
  2701. msgstr ""
  2702. #
  2703. -# File: fltk/jwm-window.cxx, line: 1212
  2704. +# File: fltk/jwm-window.cxx, line: 2681
  2705. #. Fl_Group* o
  2706. msgid "Groups"
  2707. msgstr ""
  2708. #
  2709. -# File: fltk/jwm-window.cxx, line: 1215
  2710. +# File: fltk/jwm-window.cxx, line: 2684
  2711. msgid "Current Groups"
  2712. msgstr ""
  2713. #
  2714. -# File: fltk/jwm-window.cxx, line: 1216
  2715. +# File: fltk/jwm-window.cxx, line: 2685
  2716. msgid ""
  2717. "Program groups allow one to specify options which apply to a group of "
  2718. "programs by their name and/or class. A program group is created with the "
  2719. "Group tag. As many program groups can be created as desired."
  2720. msgstr ""
  2721. #
  2722. -# File: fltk/jwm-window.cxx, line: 1226
  2723. +# File: fltk/jwm-window.cxx, line: 2695
  2724. msgid "Add a new group of options for windows"
  2725. msgstr ""
  2726. #
  2727. -# File: fltk/jwm-window.cxx, line: 1232
  2728. +# File: fltk/jwm-window.cxx, line: 2701
  2729. msgid "Remove ENTIRE selected group"
  2730. msgstr ""
  2731. #
  2732. -# File: fltk/jwm-window.cxx, line: 1238
  2733. +# File: fltk/jwm-window.cxx, line: 2707
  2734. #. Fl_Button* rm_group
  2735. msgid "Current Options"
  2736. msgstr ""
  2737. #
  2738. -# File: fltk/jwm-window.cxx, line: 1239
  2739. +# File: fltk/jwm-window.cxx, line: 2708
  2740. msgid "Window specific options"
  2741. msgstr ""
  2742. #
  2743. -# File: fltk/jwm-window.cxx, line: 1245
  2744. +# File: fltk/jwm-window.cxx, line: 2714
  2745. msgid "Add a new option to the current group"
  2746. msgstr ""
  2747. #
  2748. -# File: fltk/jwm-window.cxx, line: 1251
  2749. +# File: fltk/jwm-window.cxx, line: 2720
  2750. msgid "Remove selected option"
  2751. msgstr ""
  2752. #
  2753. -# File: fltk/jwm-window.cxx, line: 1257
  2754. +# File: fltk/jwm-window.cxx, line: 2726
  2755. #. Fl_Button* rm_opt
  2756. msgid "Program Name"
  2757. msgstr ""
  2758. #
  2759. -# File: fltk/jwm-window.cxx, line: 1258
  2760. +# File: fltk/jwm-window.cxx, line: 2727
  2761. msgid "Programs that are effected by the options"
  2762. msgstr ""
  2763. #
  2764. -# File: fltk/jwm-window.cxx, line: 1264
  2765. +# File: fltk/jwm-window.cxx, line: 2733
  2766. msgid "Add a program effected by the option"
  2767. msgstr ""
  2768. #
  2769. -# File: fltk/jwm-window.cxx, line: 1270
  2770. +# File: fltk/jwm-window.cxx, line: 2739
  2771. msgid "Remove selected Program name"
  2772. msgstr ""
  2773. #
  2774. -# File: fltk/jwm-window.cxx, line: 1276
  2775. +# File: fltk/jwm-window.cxx, line: 2745
  2776. #. Fl_Button* rm_prog
  2777. msgid "Window Class"
  2778. msgstr ""
  2779. #
  2780. -# File: fltk/jwm-window.cxx, line: 1277
  2781. -msgid "Window classes that effected by the options"
  2782. +# File: fltk/jwm-window.cxx, line: 2746
  2783. +msgid "Window classes that are effected by the options"
  2784. msgstr ""
  2785. #
  2786. -# File: fltk/jwm-window.cxx, line: 1283
  2787. +# File: fltk/jwm-window.cxx, line: 2752
  2788. msgid "Add a new Window class effected by the option"
  2789. msgstr ""
  2790. #
  2791. -# File: fltk/jwm-window.cxx, line: 1289
  2792. +# File: fltk/jwm-window.cxx, line: 2758
  2793. msgid "Remove selected Window Class"
  2794. msgstr ""
  2795. #
  2796. -# File: fltk/jwm-window.cxx, line: 1300
  2797. +# File: fltk/jwm-window.cxx, line: 2769
  2798. msgid "Window Border Size"
  2799. msgstr ""
  2800. #
  2801. -# File: fltk/jwm-window.cxx, line: 1301
  2802. -# File: fltk/jwm-window.cxx, line: 1318
  2803. +# File: fltk/jwm-window.cxx, line: 2770
  2804. +# File: fltk/jwm-window.cxx, line: 2787
  2805. msgid ""
  2806. "The width of window borders in pixels. The default is 4, the minimum is 1, "
  2807. "and the maximum is 128."
  2808. msgstr ""
  2809. #
  2810. -# File: fltk/jwm-window.cxx, line: 1333
  2811. -# File: fltk/jwm-window.cxx, line: 1350
  2812. +# File: fltk/jwm-window.cxx, line: 2802
  2813. +# File: fltk/jwm-window.cxx, line: 2819
  2814. msgid ""
  2815. "The height of window title bars in pixels. By default this is set to the "
  2816. "size of the title font. The minimum is 1, and the maximum is 256."
  2817. msgstr ""
  2818. #
  2819. -# File: fltk/jwm-window.cxx, line: 1363
  2820. +# File: fltk/jwm-window.cxx, line: 2832
  2821. #. Fl_Value_Output* a_t_slider_v
  2822. msgid "This can make your window borders and Title bar"
  2823. msgstr ""
  2824. #
  2825. -# File: fltk/jwm-window.cxx, line: 1365
  2826. +# File: fltk/jwm-window.cxx, line: 2834
  2827. #. Fl_Box* o
  2828. msgid "REALLY HUGE!"
  2829. msgstr ""
  2830. #
  2831. -# File: fltk/jwm-window.cxx, line: 1369
  2832. +# File: fltk/jwm-window.cxx, line: 2838
  2833. #. Fl_Box* o
  2834. msgid "Default Menu Button Icon"
  2835. msgstr ""
  2836. #
  2837. -# File: fltk/jwm-window.cxx, line: 1370
  2838. +# File: fltk/jwm-window.cxx, line: 2839
  2839. msgid ""
  2840. "An icon to display for the menu button on client windows instead of the "
  2841. "default. This is used for client windows that do not specify an icon."
  2842. msgstr ""
  2843. #
  2844. -# File: fltk/jwm-window.cxx, line: 1377
  2845. +# File: fltk/jwm-window.cxx, line: 2846
  2846. msgid ""
  2847. "Default Menu Button Icon. An icon to display for the menu button on client "
  2848. "windows instead of the default. This is used for client windows that do "
  2849. "not specify an icon."
  2850. msgstr ""
  2851. #
  2852. -# File: fltk/jwm-window.cxx, line: 1385
  2853. +# File: fltk/jwm-window.cxx, line: 2854
  2854. #. Fl_Button* default_icon_button
  2855. msgid "Default Window Icon"
  2856. msgstr ""
  2857. #
  2858. -# File: fltk/jwm-window.cxx, line: 1386
  2859. +# File: fltk/jwm-window.cxx, line: 2855
  2860. msgid "An icon to display for windows that do not specify an icon."
  2861. msgstr ""
  2862. #
  2863. -# File: fltk/jwm-window.cxx, line: 1392
  2864. +# File: fltk/jwm-window.cxx, line: 2861
  2865. msgid ""
  2866. "Default Window Icon. An icon to display for windows that do not "
  2867. "specify an icon."
  2868. msgstr ""
  2869. #
  2870. -# File: fltk/jwm-window.cxx, line: 1399
  2871. +# File: fltk/jwm-window.cxx, line: 2868
  2872. #. Fl_Button* default_icon_button_win
  2873. msgid "title decorations"
  2874. msgstr ""
  2875. #
  2876. -# File: fltk/jwm-window.cxx, line: 1419
  2877. +# File: fltk/jwm-window.cxx, line: 2888
  2878. #. Fl_Output* decorations
  2879. msgid "border decorations"
  2880. msgstr ""
  2881. #
  2882. -# File: fltk/jwm-window.cxx, line: 1460
  2883. +# File: fltk/jwm-window.cxx, line: 2929
  2884. #. Fl_Button* o
  2885. msgid "Change GTK Widget theme"
  2886. msgstr ""
  2887. #
  2888. -# File: fltk/jwm-window.cxx, line: 1461
  2889. -# File: fltk/jwm-window.cxx, line: 1481
  2890. -# File: fltk/jwm-window.cxx, line: 1482
  2891. -# File: fltk/jwm-window.cxx, line: 1498
  2892. -msgid "You will need to close any open windows to see the change"
  2893. -msgstr ""
  2894. -#
  2895. -# File: fltk/jwm-window.cxx, line: 1478
  2896. -msgid "Widget theme"
  2897. -msgstr ""
  2898. -#
  2899. -# File: fltk/jwm-window.cxx, line: 1516
  2900. -msgid ""
  2901. -"m Maximize button\n"
  2902. -"i Minimize (iconify) button\n"
  2903. -"t Window title\n"
  2904. -"w Window menu button\n"
  2905. -"x Close button"
  2906. -msgstr ""
  2907. -#
  2908. -# File: fltk/jwm-window.cxx, line: 1518
  2909. -msgid ""
  2910. -"Title Button Order\n"
  2911. -"\n"
  2912. -"m Maximize button\n"
  2913. -"i Minimize (iconify) button\n"
  2914. -"t Window title\n"
  2915. -"w Window menu button\n"
  2916. -"x Close button"
  2917. +# File: fltk/jwm-window.cxx, line: 2947
  2918. +msgid "Window Actions"
  2919. +msgstr ""
  2920. +#
  2921. +# File: fltk/jwm-window.cxx, line: 2951
  2922. +msgid "The close button on a window."
  2923. +msgstr ""
  2924. +#
  2925. +# File: fltk/jwm-window.cxx, line: 2958
  2926. +# File: fltk/jwm-window.cxx, line: 2966
  2927. +msgid "The maximize button on a window."
  2928. +msgstr ""
  2929. +#
  2930. +# File: fltk/jwm-window.cxx, line: 2973
  2931. +#. Fl_Button* context_maximize
  2932. +msgid "Title Bar"
  2933. +msgstr ""
  2934. +#
  2935. +# File: fltk/jwm-window.cxx, line: 2974
  2936. +msgid "The title bar of a window."
  2937. +msgstr ""
  2938. +#
  2939. +# File: fltk/jwm-window.cxx, line: 2983
  2940. +msgid "The icon button on a window."
  2941. +msgstr ""
  2942. +#
  2943. +# File: fltk/jwm-window.cxx, line: 2991
  2944. +#. Fl_Button* context_icon
  2945. +msgid "Border"
  2946. +msgstr ""
  2947. +#
  2948. +# File: fltk/jwm-window.cxx, line: 2992
  2949. +msgid "The window border."
  2950. +msgstr ""
  2951. +#
  2952. +# File: fltk/jwm-window.cxx, line: 2999
  2953. +msgid "The title bar of a window"
  2954. +msgstr ""
  2955. +#
  2956. +# File: fltk/jwm-window.cxx, line: 3005
  2957. +#. Fl_Button* context_root
  2958. +msgid "Button Action Modifier"
  2959. +msgstr ""
  2960. +#
  2961. +# File: fltk/jwm-window.cxx, line: 3030
  2962. +msgid "Remove Item"
  2963. msgstr ""
  2964. #
  2965. # File: src/desktop.cpp, line: 122
  2966. @@ -3772,59 +3912,59 @@
  2967. msgid "Choose a Color"
  2968. msgstr ""
  2969. #
  2970. -# File: src/jwmrc.cpp, line: 446
  2971. +# File: src/jwmrc.cpp, line: 462
  2972. msgid "Sub Menu"
  2973. msgstr ""
  2974. #
  2975. -# File: src/jwmrc.cpp, line: 450
  2976. +# File: src/jwmrc.cpp, line: 466
  2977. msgid "Separator"
  2978. msgstr ""
  2979. #
  2980. -# File: src/jwmrc.cpp, line: 458
  2981. +# File: src/jwmrc.cpp, line: 474
  2982. msgid "Desktop List"
  2983. msgstr ""
  2984. #
  2985. -# File: src/jwmrc.cpp, line: 462
  2986. +# File: src/jwmrc.cpp, line: 478
  2987. msgid "Send To Desktop Menu"
  2988. msgstr ""
  2989. #
  2990. -# File: src/jwmrc.cpp, line: 466
  2991. +# File: src/jwmrc.cpp, line: 482
  2992. msgid "Sticky state of Window"
  2993. msgstr ""
  2994. #
  2995. -# File: src/jwmrc.cpp, line: 470
  2996. +# File: src/jwmrc.cpp, line: 486
  2997. msgid "Maximize window"
  2998. msgstr ""
  2999. #
  3000. -# File: src/jwmrc.cpp, line: 474
  3001. +# File: src/jwmrc.cpp, line: 490
  3002. msgid "Minimize window"
  3003. msgstr ""
  3004. #
  3005. -# File: src/jwmrc.cpp, line: 478
  3006. +# File: src/jwmrc.cpp, line: 494
  3007. msgid "Shade window"
  3008. msgstr ""
  3009. #
  3010. -# File: src/jwmrc.cpp, line: 482
  3011. +# File: src/jwmrc.cpp, line: 498
  3012. msgid "Move window"
  3013. msgstr ""
  3014. #
  3015. -# File: src/jwmrc.cpp, line: 486
  3016. +# File: src/jwmrc.cpp, line: 502
  3017. msgid "Resize window"
  3018. msgstr ""
  3019. #
  3020. -# File: src/jwmrc.cpp, line: 490
  3021. +# File: src/jwmrc.cpp, line: 506
  3022. msgid "Kill window"
  3023. msgstr ""
  3024. #
  3025. -# File: src/jwmrc.cpp, line: 494
  3026. +# File: src/jwmrc.cpp, line: 510
  3027. msgid "Close window"
  3028. msgstr ""
  3029. #
  3030. -# File: src/jwmrc.cpp, line: 498
  3031. +# File: src/jwmrc.cpp, line: 514
  3032. msgid "Exit"
  3033. msgstr ""
  3034. #
  3035. -# File: src/keyboard.cpp, line: 418
  3036. +# File: src/keyboard.cpp, line: 404
  3037. msgid "read input command did not return 0"
  3038. msgstr ""
  3039. #
  3040. === added file 'po/pt.po'
  3041. --- po/pt.po 1970-01-01 00:00:00 +0000
  3042. +++ po/pt.po 2018-10-19 18:45:08 +0000
  3043. @@ -0,0 +1,4997 @@
  3044. +#
  3045. +# <palbuquerque73@gmail.com>,`¢,8, 2018.
  3046. +# Pedro Albuquerque <palbuquerque73@gmail.com>, 2018.
  3047. +#
  3048. +msgid ""
  3049. +msgstr ""
  3050. +"Project-Id-Version: \"jwm-settings-manager\" \n"
  3051. +"Report-Msgid-Bugs-To: \n"
  3052. +"POT-Creation-Date: 2018-10-04 07:40-0500\n"
  3053. +"PO-Revision-Date: 2018-10-08 10:32+0100\n"
  3054. +"Last-Translator: Pedro Albuquerque <palbuquerque73@gmail.com>\n"
  3055. +"Language-Team: Portuguese\n"
  3056. +"Language: pt\n"
  3057. +"MIME-Version: 1.0\n"
  3058. +"Content-Type: text/plain; charset=UTF-8\n"
  3059. +"Content-Transfer-Encoding: 8bit\n"
  3060. +"Plural-Forms: nplurals=2; plural=(n != 1);\n"
  3061. +"X-Generator: Gtranslator 2.91.7\n"
  3062. +
  3063. +#
  3064. +# File: fltk/desktop-file-editor.cxx, line: 564
  3065. +# File: fltk/desktop-file-editor.cxx, line: 1485
  3066. +msgid "Choose a Desktop File"
  3067. +msgstr "Escolha um ficheiro desktop"
  3068. +
  3069. +#
  3070. +# File: fltk/desktop-file-editor.cxx, line: 661
  3071. +msgid "Desktop File Editor"
  3072. +msgstr "Editor de ficheiros desktop"
  3073. +
  3074. +#
  3075. +# File: fltk/desktop-file-editor.cxx, line: 669
  3076. +msgid "Normal"
  3077. +msgstr "Normal"
  3078. +
  3079. +#
  3080. +# File: fltk/desktop-file-editor.cxx, line: 672
  3081. +msgid "Name"
  3082. +msgstr "Nome"
  3083. +
  3084. +#
  3085. +# File: fltk/desktop-file-editor.cxx, line: 673
  3086. +msgid "Specific name of the application, for example \"Mozilla\"."
  3087. +msgstr "Name - Nome especí­fico da aplicação, por exemplo, \"Mozilla\"."
  3088. +
  3089. +#
  3090. +# File: fltk/desktop-file-editor.cxx, line: 677
  3091. +#. Fl_Input* name
  3092. +msgid "Comment"
  3093. +msgstr "Comentário"
  3094. +
  3095. +#
  3096. +# File: fltk/desktop-file-editor.cxx, line: 678
  3097. +msgid ""
  3098. +"Tooltip for the entry, for example \"View sites on the Internet\". The value "
  3099. +"should not be redundant with the values of Name and GenericName."
  3100. +msgstr ""
  3101. +"Comment - Dica para a entrada, por exemplo, \"Ver páginas na Internet\". O "
  3102. +"texto não deve ser redundante com Name e GenericName"
  3103. +
  3104. +#
  3105. +# File: fltk/desktop-file-editor.cxx, line: 682
  3106. +#. Fl_Input* comment
  3107. +msgid "TryExec"
  3108. +msgstr "Tentar"
  3109. +
  3110. +#
  3111. +# File: fltk/desktop-file-editor.cxx, line: 683
  3112. +msgid ""
  3113. +"Path to an executable file on disk used to determine if the program is "
  3114. +"actually installed. If the path is not an absolute path, the file is looked "
  3115. +"up in the $PATH environment variable. If the file is not present or if it is "
  3116. +"not executable, the entry may be ignored (not be used in menus, for example)."
  3117. +msgstr ""
  3118. +"TryExec - Caminho para um ficheiro executável no disco, usado para "
  3119. +"determinar se o programa está efectivamente instalado. Se não for um caminho "
  3120. +"absoluto, o ficheiro é procurado na variável de ambiente $PATH. Se não "
  3121. +"estiver presente ou não for executável, a entrada pode ser ignorada (não "
  3122. +"usada em menus, por exemplo)."
  3123. +
  3124. +#
  3125. +# File: fltk/desktop-file-editor.cxx, line: 689
  3126. +#. Fl_Input* tryexec
  3127. +msgid "Exec"
  3128. +msgstr "Executar"
  3129. +
  3130. +#
  3131. +# File: fltk/desktop-file-editor.cxx, line: 690
  3132. +msgid ""
  3133. +"Program to execute, possibly with arguments. See the Exec key for details on "
  3134. +"how this key works. The Exec key is required if DBusActivatable is not set "
  3135. +"to true. Even if DBusActivatable is true, Exec should be specified for "
  3136. +"compatibility with implementations that do not understand DBusActivatable."
  3137. +msgstr ""
  3138. +"Exec - Programa a executar, possivelmente com argumentos. Veja a chave Exec "
  3139. +"para perceber como esta chave funciona. A chave Exec é requerida se "
  3140. +"DBusActivatable não estiver definido como verdadeiro. Mesmo que "
  3141. +"DBusActivatable seja verdadeiro, Exec deve ser especificado para "
  3142. +"compatibilidade com implementações que não compreendam DBusActivatable."
  3143. +
  3144. +#
  3145. +# File: fltk/desktop-file-editor.cxx, line: 696
  3146. +# File: fltk/jwm-menu.cxx, line: 646
  3147. +# File: fltk/jwm-menu.cxx, line: 695
  3148. +# File: fltk/jwm-panel.cxx, line: 2440
  3149. +# File: fltk/jwm-panel.cxx, line: 2766
  3150. +# File: fltk/jwm-panel.cxx, line: 2807
  3151. +# File: fltk/jwm-window.cxx, line: 1883
  3152. +# File: fltk/jwm-window.cxx, line: 2982
  3153. +#. Fl_Input* exec
  3154. +#. Fl_Output* item_display
  3155. +#. Fl_Input* button_label
  3156. +#. Fl_Input* hid_in
  3157. +#. Fl_Button* icon_view
  3158. +#. Fl_Browser* options_desc
  3159. +#. Fl_Button* context_title
  3160. +msgid "Icon"
  3161. +msgstr "Ícone"
  3162. +
  3163. +#
  3164. +# File: fltk/desktop-file-editor.cxx, line: 697
  3165. +msgid ""
  3166. +"Icon to display in file manager, menus, etc. If the name is an absolute "
  3167. +"path, the given file will be used. If the name is not an absolute path, the "
  3168. +"algorithm described in the Icon Theme Specification will be used to locate "
  3169. +"the icon."
  3170. +msgstr ""
  3171. +"Icon - Ícone a mostrar no gestor de ficheiros, menus, etc. Se o nome for um "
  3172. +"caminho absoluto, será usado o ficheiro fornecido. Senão, o algoritmo "
  3173. +"descrito na especificação do tema do í­cone será usado para localizar o í­cone."
  3174. +
  3175. +#
  3176. +# File: fltk/desktop-file-editor.cxx, line: 703
  3177. +msgid ""
  3178. +"This specification defines 3 types of desktop entries: Application (type 1), "
  3179. +"Link (type 2) and Directory (type 3). To allow the addition of new types in "
  3180. +"the future, implementations should ignore desktop entries with an unknown "
  3181. +"type"
  3182. +msgstr ""
  3183. +"Esta especificação define 3 tipos de entradas desktop: Aplicação (tipo 1), "
  3184. +"Ligação (tipo 2) e Pasta (tipo 3). Para permitir a adição de novos tipos no "
  3185. +"futuro, as implementações devem ignorar entradas desktop de tipo "
  3186. +"desconhecido."
  3187. +
  3188. +#
  3189. +# File: fltk/desktop-file-editor.cxx, line: 709
  3190. +# File: fltk/desktop-file-editor.cxx, line: 768
  3191. +msgid ""
  3192. +"Categories in which the entry should be shown in a menu (for possible values "
  3193. +"see the Desktop Menu Specification)."
  3194. +msgstr ""
  3195. +"Categorias em que a entrada deve ser mostrada num menu (para valores "
  3196. +"possíveis, veja Desktop Menu Specification)."
  3197. +
  3198. +#
  3199. +# File: fltk/desktop-file-editor.cxx, line: 714
  3200. +# File: fltk/desktop-file-editor.cxx, line: 726
  3201. +# File: fltk/desktop-file-editor.cxx, line: 784
  3202. +# File: fltk/desktop-file-editor.cxx, line: 807
  3203. +msgid ""
  3204. +"A list of strings identifying the desktop environments that should display/"
  3205. +"not display a given desktop entry.\n"
  3206. +"\n"
  3207. +"By default, a desktop file should be shown, unless an OnlyShowIn key is "
  3208. +"present, in which case, the default is for the file not to be shown.\n"
  3209. +"\n"
  3210. +"If $XDG_CURRENT_DESKTOP is set then it contains a colon-separated list of "
  3211. +"strings. In order, each string is considered. If a matching entry is found "
  3212. +"in OnlyShowIn then the desktop file is shown. If an entry is found in "
  3213. +"NotShowIn then the desktop file is not shown. If none of the strings match "
  3214. +"then the default action is taken (as above).\n"
  3215. +"\n"
  3216. +"The same desktop name may not appear in both OnlyShowIn and NotShowIn of a "
  3217. +"group."
  3218. +msgstr ""
  3219. +"NotShowIn/OnlyShowIn - Uma lista de cadeias que identificam os ambientes de "
  3220. +"área de trabalho que devem mostrar/ocultar uma determinada entrada desktop.\n"
  3221. +"\n"
  3222. +"Por predefinição, um ficheiro desktop deve ser mostrado, a menos que uma "
  3223. +"chave OnlyShowIn esteja presente, caso em que a predefinição é que o "
  3224. +"ficheiro não seja mostrado.\n"
  3225. +"\n"
  3226. +"Se $XDG_CURRENT_DESKTOP estiver definida, conterá uma lista de cadeias "
  3227. +"separadas por dois pontos. Por ordem, cada cadeia é considerada. Se uma "
  3228. +"entrada correspondente for encontrada em OnlyShowIn, o ficheiro desktop será "
  3229. +"mostrado. Se uma entrada for encontrada em NotShowIn, o ficheiro desktop não "
  3230. +"será mostrado. Se nenhuma das cadeias corresponder, será executada a acção "
  3231. +"predefinida (como acima).\n"
  3232. +"\n"
  3233. +"O mesmo nome de ficheiro desktop não pode aparecer em OnlyShowIn e NotShowIn "
  3234. +"de um grupo."
  3235. +
  3236. +#
  3237. +# File: fltk/desktop-file-editor.cxx, line: 738
  3238. +# File: fltk/desktop-file-editor.cxx, line: 830
  3239. +msgid "Whether the program runs in a terminal window."
  3240. +msgstr "Se o programa é executado numa janela de terminal."
  3241. +
  3242. +#
  3243. +# File: fltk/desktop-file-editor.cxx, line: 742
  3244. +# File: fltk/desktop-file-editor.cxx, line: 845
  3245. +msgid ""
  3246. +"NoDisplay means \"this application exists, but don't display it in the menus"
  3247. +"\". This can be useful to e.g. associate this application with MIME types, "
  3248. +"so that it gets launched from a file manager (or other apps), without having "
  3249. +"a menu entry for it (there are tons of good reasons for this, including e.g. "
  3250. +"the netscape -remote, or kfmclient openURL kind of stuff)."
  3251. +msgstr ""
  3252. +"NoDisplay - significa \"esta aplição existe, mas não se deve mostrar nos "
  3253. +"menus\". Isto pode ser útil para, e.g. associar a aplicação a tipos MIME, "
  3254. +"para que seja iniciada a partir de um gestor de ficheiros (ou outras "
  3255. +"aplicações) sem ter uma entrada de menu (há vários bons motivos para isso, "
  3256. +"incluindo, por exemplo, o netscape -remote ou coisas do tipo do kfmclient "
  3257. +"openURL)."
  3258. +
  3259. +#
  3260. +# File: fltk/desktop-file-editor.cxx, line: 749
  3261. +#. Fl_Input* nodisplay
  3262. +msgid "Type"
  3263. +msgstr "Tipo"
  3264. +
  3265. +#
  3266. +# File: fltk/desktop-file-editor.cxx, line: 750
  3267. +msgid ""
  3268. +"This specification defines 3 types of desktop entries: Application (type 1), "
  3269. +"Link (type 2) and Directory (type 3). To allow the addition of new types in "
  3270. +"the future, implementations should ignore desktop entries with an unknown "
  3271. +"type."
  3272. +msgstr ""
  3273. +"Esta especificação define 3 tipos de entradas desktop: Aplicação (tipo 1), "
  3274. +"Ligação (tipo 2) e Pasta (tipo 3). Para permitir a adição de novos tipos no "
  3275. +"futuro, as implementações devem ignorar entradas desktop de tipo "
  3276. +"desconhecido."
  3277. +
  3278. +#
  3279. +# File: fltk/desktop-file-editor.cxx, line: 767
  3280. +#. Fl_Menu_Button* o
  3281. +msgid "Categories"
  3282. +msgstr "Categorias"
  3283. +
  3284. +#
  3285. +# File: fltk/desktop-file-editor.cxx, line: 783
  3286. +#. Fl_Menu_Button* cat_Button
  3287. +msgid "NotShowIn"
  3288. +msgstr "Não mostrar"
  3289. +
  3290. +#
  3291. +# File: fltk/desktop-file-editor.cxx, line: 806
  3292. +#. Fl_Menu_Button* nsi_Button
  3293. +msgid "OnlyShowIn"
  3294. +msgstr "Só mostrar"
  3295. +
  3296. +#
  3297. +# File: fltk/desktop-file-editor.cxx, line: 829
  3298. +#. Fl_Menu_Button* osi_Button
  3299. +msgid "Terminal"
  3300. +msgstr "Terminal"
  3301. +
  3302. +#
  3303. +# File: fltk/desktop-file-editor.cxx, line: 844
  3304. +#. Fl_Menu_Button* term_Button
  3305. +msgid "NoDisplay"
  3306. +msgstr "Ocultar"
  3307. +
  3308. +#
  3309. +# File: fltk/desktop-file-editor.cxx, line: 863
  3310. +#. Fl_Menu_Button* nod_Button
  3311. +msgid "ICON"
  3312. +msgstr "ÍCONE"
  3313. +
  3314. +#
  3315. +# File: fltk/desktop-file-editor.cxx, line: 872
  3316. +# File: fltk/jwm-fonts.cxx, line: 876
  3317. +# File: fltk/jwm-window.cxx, line: 2766
  3318. +#. Fl_Group* o
  3319. +msgid "Advanced"
  3320. +msgstr "Avançadas"
  3321. +
  3322. +#
  3323. +# File: fltk/desktop-file-editor.cxx, line: 876
  3324. +msgid "GenericName"
  3325. +msgstr "Nome genérico"
  3326. +
  3327. +#
  3328. +# File: fltk/desktop-file-editor.cxx, line: 877
  3329. +msgid "Generic name of the application, for example \"Web Browser\"."
  3330. +msgstr ""
  3331. +"GenericName - Nome genérico da aplicação, por exemplo, \"Navegador web\"."
  3332. +
  3333. +#
  3334. +# File: fltk/desktop-file-editor.cxx, line: 880
  3335. +#. Fl_Input* genericname
  3336. +msgid "Version"
  3337. +msgstr "Versão"
  3338. +
  3339. +#
  3340. +# File: fltk/desktop-file-editor.cxx, line: 881
  3341. +msgid ""
  3342. +"Version of the Desktop Entry Specification that the desktop entry conforms "
  3343. +"with. Entries that confirm with this version of the specification should use "
  3344. +"1.0. Note that the version field is not required to be present."
  3345. +msgstr ""
  3346. +"Versão da Desktop Entry Specification com que a entrada está conforme."
  3347. +"Entradas conformes com esta versão, devem usar 1.0. Note que o campo de "
  3348. +"versão não tem de estar presente."
  3349. +
  3350. +#
  3351. +# File: fltk/desktop-file-editor.cxx, line: 886
  3352. +#. Fl_Input* version
  3353. +msgid "Path"
  3354. +msgstr "Caminho"
  3355. +
  3356. +#
  3357. +# File: fltk/desktop-file-editor.cxx, line: 887
  3358. +msgid ""
  3359. +"If entry is of type Application, the working directory to run the program in."
  3360. +msgstr ""
  3361. +"Path - Se a entrada é de tipo Aplicação, é a pasta de trabalho em que vai "
  3362. +"executar o programa."
  3363. +
  3364. +#
  3365. +# File: fltk/desktop-file-editor.cxx, line: 890
  3366. +#. Fl_Input* path
  3367. +msgid "MimeType"
  3368. +msgstr "Tipo Mime"
  3369. +
  3370. +#
  3371. +# File: fltk/desktop-file-editor.cxx, line: 891
  3372. +msgid "The MIME type(s) supported by this application."
  3373. +msgstr "MimeType - Os tipos MIME suportados por esta aplicação."
  3374. +
  3375. +#
  3376. +# File: fltk/desktop-file-editor.cxx, line: 894
  3377. +#. Fl_Input* mime
  3378. +msgid "Implements"
  3379. +msgstr "Implementa"
  3380. +
  3381. +#
  3382. +# File: fltk/desktop-file-editor.cxx, line: 895
  3383. +msgid ""
  3384. +"A list of interfaces that this application implements. By default, a desktop "
  3385. +"file implements no interfaces. See http://standards.freedesktop.org/desktop-"
  3386. +"entry-spec/latest/ar01s08.html for more information on how this works."
  3387. +msgstr ""
  3388. +"Implements - Uma lista de ambientes que esta aplicação implementa. Por "
  3389. +"predefinição, um ficheiro desktop não implementa ambientes. Veja http://"
  3390. +"standards.freedesktop.org/desktop-entry-spec/latest/ar01s08.html para mais "
  3391. +"informação sobre o assunto."
  3392. +
  3393. +#
  3394. +# File: fltk/desktop-file-editor.cxx, line: 900
  3395. +#. Fl_Input* implements
  3396. +msgid "Keywords"
  3397. +msgstr "Palavras-chave"
  3398. +
  3399. +#
  3400. +# File: fltk/desktop-file-editor.cxx, line: 901
  3401. +msgid ""
  3402. +"A list of strings which may be used in addition to other metadata to "
  3403. +"describe this entry. This can be useful e.g. to facilitate searching through "
  3404. +"entries. The values are not meant for display, and should not be redundant "
  3405. +"with the values of Name or GenericName."
  3406. +msgstr ""
  3407. +"Keywords - Uma lista de cadeias que pode ser usada em adição a outros meta-"
  3408. +"dados, para descrever a entrada. Pode ser útil para facilitar a procura "
  3409. +"entre entradas. Os valores não serão mostrados e não devem ser redundantes "
  3410. +"com Name ou GenericName."
  3411. +
  3412. +#
  3413. +# File: fltk/desktop-file-editor.cxx, line: 907
  3414. +#. Fl_Input* keywords
  3415. +msgid "StartupWMClass"
  3416. +msgstr "StartupWMClass"
  3417. +
  3418. +#
  3419. +# File: fltk/desktop-file-editor.cxx, line: 908
  3420. +msgid ""
  3421. +"If specified, it is known that the application will map at least one window "
  3422. +"with the given string as its WM class or WM name hint (see the Startup "
  3423. +"Notification Protocol Specification for more details)."
  3424. +msgstr ""
  3425. +"Se especificada, é sabido que a aplicação mapeará pelo menos uma janela com "
  3426. +"a cadeia indicada como sua classe WM ou dica de nome WM (veja Startup "
  3427. +"Notification Protocol Specification para mais detalhes)."
  3428. +
  3429. +#
  3430. +# File: fltk/desktop-file-editor.cxx, line: 913
  3431. +#. Fl_Input* wmclass
  3432. +msgid "URL"
  3433. +msgstr "URL"
  3434. +
  3435. +#
  3436. +# File: fltk/desktop-file-editor.cxx, line: 914
  3437. +msgid "If entry is Link type, the URL to access."
  3438. +msgstr "Se a entrada é de tipo Ligação, o URL para acesso."
  3439. +
  3440. +#
  3441. +# File: fltk/desktop-file-editor.cxx, line: 919
  3442. +# File: fltk/desktop-file-editor.cxx, line: 955
  3443. +msgid ""
  3444. +"Identifiers for application actions. This can be used to tell the "
  3445. +"application to make a specific action, different from the default behavior. "
  3446. +"The Application actions section describes how actions work."
  3447. +msgstr ""
  3448. +"Actions - Identificadores para acções da aplicação. Pode ser utilizado para "
  3449. +"indicar à aplicação para tornar uma acção específica diferente do "
  3450. +"comportamento predefinido. A secção Actions descreve como as acções "
  3451. +"funcionam."
  3452. +
  3453. +#
  3454. +# File: fltk/desktop-file-editor.cxx, line: 926
  3455. +# File: fltk/desktop-file-editor.cxx, line: 963
  3456. +msgid ""
  3457. +"If true, it is KNOWN that the application will send a \"remove\" message "
  3458. +"when started with the DESKTOP_STARTUP_ID environment variable set. If false, "
  3459. +"it is KNOWN that the application does not work with startup notification at "
  3460. +"all (does not shown any window, breaks even when using StartupWMClass, "
  3461. +"etc.). If absent, a reasonable handling is up to implementations (assuming "
  3462. +"false, using StartupWMClass, etc.). (See the Startup Notification Protocol "
  3463. +"Specification for more details)."
  3464. +msgstr ""
  3465. +"Se verdadeiro, sabe-se que a aplicação enviará uma mensagem \"remove\" "
  3466. +"quando iniciada com o conjunto de variáveis de ambiente DESKTOP_STARTUP_ID. "
  3467. +"Se falso, sabe-se que a aplicação não funciona com a notificação de arranque "
  3468. +"(não mostra nenhuma janela, quebra ao usar StartupWMClass, etc.). Se "
  3469. +"ausente, as implementações fazem uma manipulação razoável (assumindo falso, "
  3470. +"usando StartupWMClass, etc.) (veja Startup Notification Protocol "
  3471. +"Specification para obter mais detalhes)."
  3472. +
  3473. +#
  3474. +# File: fltk/desktop-file-editor.cxx, line: 936
  3475. +# File: fltk/desktop-file-editor.cxx, line: 984
  3476. +msgid ""
  3477. +"Hidden should have been called Deleted. It means the user deleted (at his "
  3478. +"level) something that was present (at an upper level, e.g. in the system "
  3479. +"dirs). It's strictly equivalent to the .desktop file not existing at all, as "
  3480. +"far as that user is concerned. This can also be used to \"uninstall\" "
  3481. +"existing files (e.g. due to a renaming) - by letting make install install a "
  3482. +"file with Hidden=true in it."
  3483. +msgstr ""
  3484. +"Hidden - deveria ter sido Deleted. Significa que o utilizador eliminou (em "
  3485. +"dado nível) algo que estava presente (num nível superior,e.g. na pasta de "
  3486. +"sistema). É estritamente equivalente ao ficheiro .desktop não existir de "
  3487. +"todo, no que diz respeito ao utilizador. Também pode usar para desinstalar "
  3488. +"ficheiros existentes (e.g. devido a uma renomeação) - permitindo que o make "
  3489. +"install instale um ficheiro com Hidden=true."
  3490. +
  3491. +#
  3492. +# File: fltk/desktop-file-editor.cxx, line: 945
  3493. +# File: fltk/desktop-file-editor.cxx, line: 1004
  3494. +msgid ""
  3495. +"A boolean value specifying if D-Bus activation is supported for this "
  3496. +"application. If this key is missing, the default value is false. If the "
  3497. +"value is true then implementations should ignore the Exec key and send a D-"
  3498. +"Bus message to launch the application. See D-Bus Activation for more "
  3499. +"information on how this works. Applications should still include Exec= lines "
  3500. +"in their desktop files for compatibility with implementations that do not "
  3501. +"understand the DBusActivatable key."
  3502. +msgstr ""
  3503. +"Um valor booleano que especifica se a activação do D-Bus é suportada para "
  3504. +"esta aplicação. Se esta chave estiver em falta, a predefinição é falso. Se "
  3505. +"for verdadeiro, as implementações devem ignorar a chave Exec e enviar uma "
  3506. +"mensagem D-Bus para iniciar a aplicação. Veja Activação D-Bus para mais "
  3507. +"informações. As aplicações ainda devem incluir Exec=linhas nos seus "
  3508. +"ficheiros desktop para compatibilidade com implementações que não entendem a "
  3509. +"chave DBusActivatable."
  3510. +
  3511. +#
  3512. +# File: fltk/desktop-file-editor.cxx, line: 954
  3513. +#. Fl_Input* dbus
  3514. +msgid "Actions"
  3515. +msgstr "Acções"
  3516. +
  3517. +#
  3518. +# File: fltk/desktop-file-editor.cxx, line: 962
  3519. +#. Fl_Button* o
  3520. +msgid "StartupNotify"
  3521. +msgstr "StartupNotify"
  3522. +
  3523. +#
  3524. +# File: fltk/desktop-file-editor.cxx, line: 983
  3525. +#. Fl_Menu_Button* notify_Button
  3526. +msgid "Hidden"
  3527. +msgstr "Oculto"
  3528. +
  3529. +#
  3530. +# File: fltk/desktop-file-editor.cxx, line: 1003
  3531. +#. Fl_Menu_Button* o
  3532. +msgid "DBusActivatable"
  3533. +msgstr "DBusActivatable"
  3534. +
  3535. +#
  3536. +# File: fltk/desktop-file-editor.cxx, line: 1026
  3537. +#. Fl_Group* o
  3538. +msgid "Locale"
  3539. +msgstr "Idioma"
  3540. +
  3541. +#
  3542. +# File: fltk/desktop-file-editor.cxx, line: 1027
  3543. +msgid "Configure Locale specific Names"
  3544. +msgstr "Locale - Configura nomes específicos de idiomas"
  3545. +
  3546. +#
  3547. +# File: fltk/desktop-file-editor.cxx, line: 1046
  3548. +msgid "Change Locale text"
  3549. +msgstr "Alterar texto do idioma"
  3550. +
  3551. +#
  3552. +# File: fltk/desktop-file-editor.cxx, line: 1054
  3553. +#. Fl_Group* o
  3554. +msgid "Extra Actions"
  3555. +msgstr "Acções extra"
  3556. +
  3557. +#
  3558. +# File: fltk/desktop-file-editor.cxx, line: 1055
  3559. +msgid "Configure extra Actions"
  3560. +msgstr "Configura acções extra"
  3561. +
  3562. +#
  3563. +# File: fltk/desktop-file-editor.cxx, line: 1059
  3564. +msgid "TODO!"
  3565. +msgstr "AFAZER!"
  3566. +
  3567. +#
  3568. +# File: fltk/desktop-file-editor.cxx, line: 1066
  3569. +#. Fl_Tabs* o
  3570. +msgid "OPEN"
  3571. +msgstr "ABRIR"
  3572. +
  3573. +#
  3574. +# File: fltk/desktop-file-editor.cxx, line: 1067
  3575. +# File: fltk/desktop-file-editor.cxx, line: 1103
  3576. +msgid "Open a desktop file"
  3577. +msgstr "Abrir um ficheiro desktop"
  3578. +
  3579. +#
  3580. +# File: fltk/desktop-file-editor.cxx, line: 1072
  3581. +# File: fltk/desktop-file-editor.cxx, line: 1128
  3582. +# File: fltk/jwm-panel.cxx, line: 2985
  3583. +#. Fl_Button* o
  3584. +#. Fl_Scroll* o
  3585. +#. Fl_Button* o
  3586. +msgid "SAVE"
  3587. +msgstr "GRAVAR"
  3588. +
  3589. +#
  3590. +# File: fltk/desktop-file-editor.cxx, line: 1073
  3591. +# File: fltk/desktop-file-editor.cxx, line: 1129
  3592. +msgid "Save the current data as a file"
  3593. +msgstr "Gravar os dados actuais como ficheiro"
  3594. +
  3595. +#
  3596. +# File: fltk/desktop-file-editor.cxx, line: 1081
  3597. +msgid "The file you want to save (or the name of the current open file)"
  3598. +msgstr "O ficheiro que pretende gravar (ou o nome do ficheiro aberto)"
  3599. +
  3600. +#
  3601. +# File: fltk/desktop-file-editor.cxx, line: 1086
  3602. +#. Fl_Input* Filename
  3603. +msgid "CLEAR"
  3604. +msgstr "LIMPAR"
  3605. +
  3606. +#
  3607. +# File: fltk/desktop-file-editor.cxx, line: 1087
  3608. +msgid "CLEAR EVERYTHING"
  3609. +msgstr "Limpar todos os dados"
  3610. +
  3611. +#
  3612. +# File: fltk/desktop-file-editor.cxx, line: 1094
  3613. +#. Fl_Button* o
  3614. +msgid "PREVIEW"
  3615. +msgstr "ANTEVER"
  3616. +
  3617. +#
  3618. +# File: fltk/desktop-file-editor.cxx, line: 1095
  3619. +msgid "Preview text"
  3620. +msgstr "Antever o texto"
  3621. +
  3622. +#
  3623. +# File: fltk/desktop-file-editor.cxx, line: 1119
  3624. +msgid "Preview"
  3625. +msgstr "Antever"
  3626. +
  3627. +#
  3628. +# File: fltk/desktop-file-editor.cxx, line: 1136
  3629. +# File: fltk/desktop-file-editor.cxx, line: 1798
  3630. +# File: fltk/jwm-panel.cxx, line: 2069
  3631. +# File: fltk/jwm-panel.cxx, line: 2115
  3632. +# File: fltk/jwm-panel.cxx, line: 2207
  3633. +# File: fltk/jwm-panel.cxx, line: 2240
  3634. +# File: fltk/jwm-panel.cxx, line: 3027
  3635. +#. Fl_Button* o
  3636. +#. Fl_Scroll* o
  3637. +#. Fl_Box* o
  3638. +#. Fl_Button* app_icon_box
  3639. +msgid "CLOSE"
  3640. +msgstr "FECHAR"
  3641. +
  3642. +#
  3643. +# File: fltk/desktop-file-editor.cxx, line: 1176
  3644. +msgid "Choose a Directory"
  3645. +msgstr "Escolha uma pasta"
  3646. +
  3647. +#
  3648. +# File: fltk/desktop-file-editor.cxx, line: 1766
  3649. +msgid "Save Error"
  3650. +msgstr "Erro de gravação"
  3651. +
  3652. +#
  3653. +# File: fltk/desktop-file-editor.cxx, line: 1768
  3654. +msgid "There was an error saving the file:"
  3655. +msgstr "Houve um erro ao gravar o ficheiro:"
  3656. +
  3657. +#
  3658. +# File: fltk/desktop-file-editor.cxx, line: 1769
  3659. +msgid "Make sure you have permission to save."
  3660. +msgstr "Assegure-se de que tem permissões para gravar."
  3661. +
  3662. +#
  3663. +# File: fltk/desktop-file-editor.cxx, line: 1774
  3664. +# File: fltk/jwm-autostart.cxx, line: 187
  3665. +# File: fltk/jwm-desktop.cxx, line: 239
  3666. +# File: fltk/jwm-fonts.cxx, line: 768
  3667. +# File: fltk/jwm-fonts.cxx, line: 815
  3668. +# File: fltk/jwm-fonts.cxx, line: 1079
  3669. +# File: fltk/jwm-icons.cxx, line: 175
  3670. +# File: fltk/jwm-icons.cxx, line: 233
  3671. +# File: fltk/jwm-keyboard.cxx, line: 1323
  3672. +# File: fltk/jwm-keyboard.cxx, line: 1443
  3673. +# File: fltk/jwm-keyboard.cxx, line: 1547
  3674. +# File: fltk/jwm-keyboard.cxx, line: 1623
  3675. +# File: fltk/jwm-menu.cxx, line: 607
  3676. +# File: fltk/jwm-menu.cxx, line: 662
  3677. +# File: fltk/jwm-menu.cxx, line: 714
  3678. +# File: fltk/jwm-menu.cxx, line: 739
  3679. +# File: fltk/jwm-menu.cxx, line: 786
  3680. +# File: fltk/jwm-menu.cxx, line: 1009
  3681. +# File: fltk/jwm-menu.cxx, line: 1065
  3682. +# File: fltk/jwm-mouse.cxx, line: 589
  3683. +# File: fltk/jwm-mouse.cxx, line: 678
  3684. +# File: fltk/jwm-mouse.cxx, line: 1263
  3685. +# File: fltk/jwm-panel.cxx, line: 1442
  3686. +# File: fltk/jwm-panel.cxx, line: 2034
  3687. +# File: fltk/jwm-panel.cxx, line: 2041
  3688. +# File: fltk/jwm-panel.cxx, line: 2062
  3689. +# File: fltk/jwm-panel.cxx, line: 2096
  3690. +# File: fltk/jwm-panel.cxx, line: 2102
  3691. +# File: fltk/jwm-panel.cxx, line: 2134
  3692. +# File: fltk/jwm-panel.cxx, line: 2140
  3693. +# File: fltk/jwm-panel.cxx, line: 2280
  3694. +# File: fltk/jwm-panel.cxx, line: 2503
  3695. +# File: fltk/jwm-panel.cxx, line: 2650
  3696. +# File: fltk/jwm-panel.cxx, line: 2688
  3697. +# File: fltk/jwm-panel.cxx, line: 2745
  3698. +# File: fltk/jwm-panel.cxx, line: 2785
  3699. +# File: fltk/jwm-panel.cxx, line: 2835
  3700. +# File: fltk/jwm-panel.cxx, line: 2888
  3701. +# File: fltk/jwm-panel.cxx, line: 3048
  3702. +# File: fltk/jwm-panel.cxx, line: 3394
  3703. +# File: fltk/jwm-popups.cxx, line: 686
  3704. +# File: fltk/jwm-window.cxx, line: 1913
  3705. +# File: fltk/jwm-window.cxx, line: 1963
  3706. +# File: fltk/jwm-window.cxx, line: 1985
  3707. +# File: fltk/jwm-window.cxx, line: 2042
  3708. +# File: fltk/jwm-window.cxx, line: 2126
  3709. +# File: fltk/jwm-window.cxx, line: 2177
  3710. +# File: fltk/jwm-window.cxx, line: 2248
  3711. +# File: fltk/jwm-window.cxx, line: 2920
  3712. +# File: fltk/jwm-window.cxx, line: 3046
  3713. +#. Fl_Output* o
  3714. +#. Fl_Button* o
  3715. +#. Fl_Input* layoutput
  3716. +#. Fl_Button* o
  3717. +#. Fl_Check_Button* islabeled_button
  3718. +#. Fl_Input* add_tooltip
  3719. +#. Fl_Button* item_prog_button
  3720. +#. Fl_Input* prog_label
  3721. +#. Fl_Input* include_input
  3722. +#. Fl_Button* o
  3723. +#. Fl_Button* config_sub
  3724. +#. Fl_Button* cancel_button2
  3725. +#. Fl_Value_Input* double_v2
  3726. +#. Fl_Tabs* o
  3727. +#. Fl_Button* o
  3728. +#. Fl_Box* o
  3729. +#. Fl_Button* menu_conf_gear
  3730. +#. Fl_Button* clock_menu_conf_gear
  3731. +#. Fl_Input* manually_in
  3732. +#. Fl_Box* o
  3733. +#. Fl_Button* o
  3734. +#. Fl_Input* input_to_add_class
  3735. +#. Fl_Input* input_to_add_prog
  3736. +#. Fl_Button* o
  3737. +msgid "OK"
  3738. +msgstr "Aceitar"
  3739. +
  3740. +#
  3741. +# File: fltk/desktop-file-editor.cxx, line: 1781
  3742. +#. Fl_Button* o
  3743. +msgid "?"
  3744. +msgstr "?"
  3745. +
  3746. +#
  3747. +# File: fltk/desktop-file-editor.cxx, line: 1796
  3748. +msgid "Help"
  3749. +msgstr "Ajuda"
  3750. +
  3751. +#
  3752. +# File: fltk/jwm-autostart.cxx, line: 168
  3753. +msgid "Autostart Programs"
  3754. +msgstr "Programas de arranque automático"
  3755. +
  3756. +#
  3757. +# File: fltk/jwm-autostart.cxx, line: 174
  3758. +msgid "You can add extra arguments here"
  3759. +msgstr "Pode adicionar argumentos extra aqui"
  3760. +
  3761. +#
  3762. +# File: fltk/jwm-autostart.cxx, line: 180
  3763. +# File: fltk/jwm-desktop.cxx, line: 232
  3764. +# File: fltk/jwm-fonts.cxx, line: 759
  3765. +# File: fltk/jwm-fonts.cxx, line: 806
  3766. +# File: fltk/jwm-fonts.cxx, line: 1070
  3767. +# File: fltk/jwm-icons.cxx, line: 168
  3768. +# File: fltk/jwm-icons.cxx, line: 226
  3769. +# File: fltk/jwm-keyboard.cxx, line: 1356
  3770. +# File: fltk/jwm-keyboard.cxx, line: 1476
  3771. +# File: fltk/jwm-keyboard.cxx, line: 1555
  3772. +# File: fltk/jwm-keyboard.cxx, line: 1616
  3773. +# File: fltk/jwm-menu.cxx, line: 1002
  3774. +# File: fltk/jwm-mouse.cxx, line: 582
  3775. +# File: fltk/jwm-mouse.cxx, line: 686
  3776. +# File: fltk/jwm-panel.cxx, line: 2026
  3777. +# File: fltk/jwm-panel.cxx, line: 2032
  3778. +# File: fltk/jwm-popups.cxx, line: 693
  3779. +# File: fltk/jwm-shutdown.cxx, line: 105
  3780. +# File: fltk/jwm-themes.cxx, line: 167
  3781. +# File: fltk/jwm-window.cxx, line: 1904
  3782. +# File: fltk/jwm-window.cxx, line: 2034
  3783. +# File: fltk/jwm-window.cxx, line: 2118
  3784. +# File: fltk/jwm-window.cxx, line: 2169
  3785. +# File: fltk/jwm-window.cxx, line: 2240
  3786. +# File: fltk/jwm-window.cxx, line: 2912
  3787. +# File: fltk/jwm-window.cxx, line: 3038
  3788. +#. Fl_Input* program_name
  3789. +#. Fl_Value_Input* num_desktop_h
  3790. +#. Fl_Button* o
  3791. +#. Fl_Box* o
  3792. +#. Fl_Button* o
  3793. +#. Fl_Scroll* o
  3794. +#. Fl_Browser* cursor_browser
  3795. +#. Fl_Button* save_button
  3796. +#. Fl_Tabs* o
  3797. +#. Fl_Button* o
  3798. +#. Fl_Button* log
  3799. +#. Fl_Button* save_button
  3800. +#. Fl_Value_Input* desktop_num
  3801. +#. Fl_Output* add_context_button
  3802. +#. Fl_Input* ordering
  3803. +#. Fl_Output* context_button
  3804. +#. Fl_Browser* theme_browser
  3805. +#. Fl_Tabs* o
  3806. +#. Fl_Button* o
  3807. +msgid "Cancel"
  3808. +msgstr "Cancelar"
  3809. +
  3810. +#
  3811. +# File: fltk/jwm-autostart.cxx, line: 188
  3812. +# File: fltk/jwm-desktop.cxx, line: 240
  3813. +# File: fltk/jwm-fonts.cxx, line: 769
  3814. +# File: fltk/jwm-fonts.cxx, line: 816
  3815. +# File: fltk/jwm-icons.cxx, line: 176
  3816. +# File: fltk/jwm-icons.cxx, line: 205
  3817. +# File: fltk/jwm-icons.cxx, line: 234
  3818. +# File: fltk/jwm-keyboard.cxx, line: 1548
  3819. +# File: fltk/jwm-keyboard.cxx, line: 1624
  3820. +# File: fltk/jwm-menu.cxx, line: 1010
  3821. +# File: fltk/jwm-menu.cxx, line: 1066
  3822. +# File: fltk/jwm-mouse.cxx, line: 590
  3823. +# File: fltk/jwm-mouse.cxx, line: 679
  3824. +# File: fltk/jwm-mouse.cxx, line: 1264
  3825. +# File: fltk/jwm-mouse.cxx, line: 1278
  3826. +# File: fltk/jwm-panel.cxx, line: 2035
  3827. +# File: fltk/jwm-panel.cxx, line: 2986
  3828. +# File: fltk/jwm-window.cxx, line: 1964
  3829. +# File: fltk/jwm-window.cxx, line: 1986
  3830. +# File: fltk/jwm-window.cxx, line: 2043
  3831. +# File: fltk/jwm-window.cxx, line: 2127
  3832. +# File: fltk/jwm-window.cxx, line: 2178
  3833. +# File: fltk/jwm-window.cxx, line: 2921
  3834. +# File: fltk/jwm-window.cxx, line: 3047
  3835. +msgid "Write to configuration file"
  3836. +msgstr "Escrever no ficheiro de configuração"
  3837. +
  3838. +#
  3839. +# File: fltk/jwm-autostart.cxx, line: 195
  3840. +# File: fltk/jwm-keyboard.cxx, line: 1631
  3841. +# File: fltk/jwm-menu.cxx, line: 821
  3842. +# File: fltk/jwm-menu.cxx, line: 844
  3843. +# File: fltk/jwm-menu.cxx, line: 1073
  3844. +# File: fltk/jwm-panel.cxx, line: 1555
  3845. +# File: fltk/jwm-panel.cxx, line: 2082
  3846. +# File: fltk/jwm-panel.cxx, line: 2110
  3847. +# File: fltk/jwm-panel.cxx, line: 2708
  3848. +# File: fltk/jwm-panel.cxx, line: 2979
  3849. +# File: fltk/jwm-window.cxx, line: 2694
  3850. +# File: fltk/jwm-window.cxx, line: 2713
  3851. +# File: fltk/jwm-window.cxx, line: 2732
  3852. +# File: fltk/jwm-window.cxx, line: 2751
  3853. +# File: fltk/jwm-window.cxx, line: 3014
  3854. +#. Fl_Button* save_button
  3855. +#. Fl_Button* o
  3856. +#. Fl_Browser* menuElement
  3857. +#. Fl_Button* o
  3858. +#. Fl_Browser* add_indicator_browser
  3859. +#. Fl_Browser* panel_items_browser
  3860. +#. Fl_Button* o
  3861. +#. Fl_Input* tooltip
  3862. +#. Fl_Browser* groups_browser
  3863. +#. Fl_Browser* opt_browser
  3864. +#. Fl_Browser* name_browser
  3865. +#. Fl_Browser* class_browser
  3866. +#. Fl_Browser* context_browser
  3867. +msgid "@+"
  3868. +msgstr "@+"
  3869. +
  3870. +#
  3871. +# File: fltk/jwm-autostart.cxx, line: 196
  3872. +msgid "Add OR chose a program"
  3873. +msgstr "Adicione OU escolha um programa"
  3874. +
  3875. +#
  3876. +# File: fltk/jwm-autostart.cxx, line: 212
  3877. +# File: fltk/jwm-mouse.cxx, line: 1199
  3878. +#. Fl_Group* o
  3879. +msgid "JWM"
  3880. +msgstr "JWM"
  3881. +
  3882. +#
  3883. +# File: fltk/jwm-autostart.cxx, line: 222
  3884. +#. Fl_Group* jwm_tab
  3885. +msgid "XDG"
  3886. +msgstr "XDG"
  3887. +
  3888. +#
  3889. +# File: fltk/jwm-autostart.cxx, line: 237
  3890. +msgid ""
  3891. +"If configuring JWM autostart, please re-add it once you have finished "
  3892. +"editing it"
  3893. +msgstr ""
  3894. +"Se está a configurar o início automático do JWM, por favor, volte a adicioná-"
  3895. +"lo quando terminar a edição."
  3896. +
  3897. +#
  3898. +# File: fltk/jwm-desktop.cxx, line: 136
  3899. +msgid "Desktop Settings"
  3900. +msgstr "Definições da área de trabalho"
  3901. +
  3902. +#
  3903. +# File: fltk/jwm-desktop.cxx, line: 159
  3904. +#. Fl_Box* color_display2
  3905. +msgid "Choose Image"
  3906. +msgstr "Imagem"
  3907. +
  3908. +#
  3909. +# File: fltk/jwm-desktop.cxx, line: 164
  3910. +#. Fl_Button* o
  3911. +msgid "Choose Color"
  3912. +msgstr "Cor"
  3913. +
  3914. +#
  3915. +# File: fltk/jwm-desktop.cxx, line: 165
  3916. +# File: fltk/jwm-desktop.cxx, line: 171
  3917. +msgid "This will take icons off the desktop"
  3918. +msgstr "Isto vai tirar os ícones da área de trabalho"
  3919. +
  3920. +#
  3921. +# File: fltk/jwm-desktop.cxx, line: 170
  3922. +#. Fl_Button* o
  3923. +msgid "Choose Gradient"
  3924. +msgstr "Gradação"
  3925. +
  3926. +#
  3927. +# File: fltk/jwm-desktop.cxx, line: 176
  3928. +#. Fl_Button* o
  3929. +msgid "Filemanager"
  3930. +msgstr "Gestor de ficheiros"
  3931. +
  3932. +#
  3933. +# File: fltk/jwm-desktop.cxx, line: 177
  3934. +msgid "Open the filemanager to change preferences"
  3935. +msgstr "Abrir o gestor de ficheiros para alterar as preferências"
  3936. +
  3937. +#
  3938. +# File: fltk/jwm-desktop.cxx, line: 183
  3939. +#. Fl_Button* fm_pref
  3940. +msgid "Icons on Desktop"
  3941. +msgstr "Ícones na área"
  3942. +
  3943. +#
  3944. +# File: fltk/jwm-desktop.cxx, line: 202
  3945. +#. Fl_Output* current_bg
  3946. +msgid "Multiple Desktops"
  3947. +msgstr "Múltiplas áreas"
  3948. +
  3949. +#
  3950. +# File: fltk/jwm-desktop.cxx, line: 203
  3951. +msgid "This allows you to have multiple screens to work on from one Display"
  3952. +msgstr "Isto permite-lhe ter múltiplos ecrãs onde trabalhar com um só monitor"
  3953. +
  3954. +#
  3955. +# File: fltk/jwm-desktop.cxx, line: 214
  3956. +#. Fl_Check_Button* check_desktops
  3957. +msgid "Workspaces Wide"
  3958. +msgstr "Áreas de largo"
  3959. +
  3960. +#
  3961. +# File: fltk/jwm-desktop.cxx, line: 215
  3962. +msgid "Number of workspaces to the left and right"
  3963. +msgstr "Número de áreas de trabalho à esquerda e à direita"
  3964. +
  3965. +#
  3966. +# File: fltk/jwm-desktop.cxx, line: 223
  3967. +#. Fl_Value_Input* num_desktop_w
  3968. +msgid "Workspaces High "
  3969. +msgstr "Áreas de alto"
  3970. +
  3971. +#
  3972. +# File: fltk/jwm-desktop.cxx, line: 224
  3973. +msgid "Number of workspaces up and down"
  3974. +msgstr "Número de áreas de trabalho acima e abaixo"
  3975. +
  3976. +#
  3977. +# File: fltk/jwm-desktop.cxx, line: 247
  3978. +#. Fl_Button* o
  3979. +msgid "Names"
  3980. +msgstr "Nomes"
  3981. +
  3982. +#
  3983. +# File: fltk/jwm-desktop.cxx, line: 248
  3984. +msgid "Name your workspaces"
  3985. +msgstr "Dê nomes às suas áreas de trabalho"
  3986. +
  3987. +#
  3988. +# File: fltk/jwm-desktop.cxx, line: 254
  3989. +# File: fltk/jwm-settings.cxx, line: 4102
  3990. +#. Fl_Button* o
  3991. +msgid "Desktop"
  3992. +msgstr "Área de trabalho"
  3993. +
  3994. +#
  3995. +# File: fltk/jwm-fonts.cxx, line: 620
  3996. +msgid "Font Settings"
  3997. +msgstr "Definições de letra"
  3998. +
  3999. +#
  4000. +# File: fltk/jwm-fonts.cxx, line: 629
  4001. +#. Fl_Box* window_box
  4002. +msgid "Window Title Font"
  4003. +msgstr "Título da janela"
  4004. +
  4005. +#
  4006. +# File: fltk/jwm-fonts.cxx, line: 637
  4007. +# File: fltk/jwm-menu.cxx, line: 894
  4008. +# File: fltk/jwm-panel.cxx, line: 1578
  4009. +# File: fltk/jwm-panel.cxx, line: 1590
  4010. +# File: fltk/jwm-panel.cxx, line: 2266
  4011. +# File: fltk/jwm-panel.cxx, line: 2903
  4012. +# File: fltk/jwm-panel.cxx, line: 2910
  4013. +#. Fl_Output* window_font
  4014. +#. Fl_Box* o
  4015. +#. Fl_Button* a_fg
  4016. +msgid "Active"
  4017. +msgstr "Activa"
  4018. +
  4019. +#
  4020. +# File: fltk/jwm-fonts.cxx, line: 638
  4021. +msgid "The foreground window font color"
  4022. +msgstr "A cor da letra da janela em 1º plano"
  4023. +
  4024. +#
  4025. +# File: fltk/jwm-fonts.cxx, line: 647
  4026. +# File: fltk/jwm-fonts.cxx, line: 674
  4027. +# File: fltk/jwm-fonts.cxx, line: 696
  4028. +# File: fltk/jwm-fonts.cxx, line: 723
  4029. +# File: fltk/jwm-fonts.cxx, line: 752
  4030. +# File: fltk/jwm-fonts.cxx, line: 787
  4031. +msgid "Open the font list Window"
  4032. +msgstr "Abrir a lista de letras"
  4033. +
  4034. +#
  4035. +# File: fltk/jwm-fonts.cxx, line: 653
  4036. +# File: fltk/jwm-menu.cxx, line: 900
  4037. +# File: fltk/jwm-panel.cxx, line: 1584
  4038. +# File: fltk/jwm-panel.cxx, line: 1597
  4039. +# File: fltk/jwm-panel.cxx, line: 2273
  4040. +#. Fl_Button* o
  4041. +#. Fl_Box* o
  4042. +msgid "Inactive"
  4043. +msgstr "Inactiva"
  4044. +
  4045. +#
  4046. +# File: fltk/jwm-fonts.cxx, line: 654
  4047. +msgid "The background window font color"
  4048. +msgstr "A cor da letra da janela em 2º plano"
  4049. +
  4050. +#
  4051. +# File: fltk/jwm-fonts.cxx, line: 666
  4052. +#. Fl_Box* menu_box
  4053. +msgid "Menu Font"
  4054. +msgstr "Menus"
  4055. +
  4056. +#
  4057. +# File: fltk/jwm-fonts.cxx, line: 687
  4058. +#. Fl_Button* menu_font_color_button
  4059. +msgid "Panel Button Font"
  4060. +msgstr "Botões do painel"
  4061. +
  4062. +#
  4063. +# File: fltk/jwm-fonts.cxx, line: 715
  4064. +#. Fl_Box* panel_box
  4065. +msgid "Panel Font"
  4066. +msgstr "Painel"
  4067. +
  4068. +#
  4069. +# File: fltk/jwm-fonts.cxx, line: 743
  4070. +#. Fl_Button* task_font_color_button
  4071. +msgid "Running App List Font"
  4072. +msgstr "Aplicações em execução"
  4073. +
  4074. +#
  4075. +# File: fltk/jwm-fonts.cxx, line: 760
  4076. +# File: fltk/jwm-fonts.cxx, line: 807
  4077. +# File: fltk/jwm-fonts.cxx, line: 1071
  4078. +msgid "No changes will be saved"
  4079. +msgstr "Nenhuma alteração será gravada"
  4080. +
  4081. +#
  4082. +# File: fltk/jwm-fonts.cxx, line: 777
  4083. +#. Fl_Button* o
  4084. +msgid "Window Interior Font"
  4085. +msgstr "Interior da janela"
  4086. +
  4087. +#
  4088. +# File: fltk/jwm-fonts.cxx, line: 778
  4089. +msgid "The color of this cannot be chosen, this is the GTK font"
  4090. +msgstr "Esta cor não pode ser escolhida, é a letra do GTK"
  4091. +
  4092. +#
  4093. +# File: fltk/jwm-fonts.cxx, line: 804
  4094. +# File: fltk/jwm-fonts.cxx, line: 1068
  4095. +msgid "Choose a Font"
  4096. +msgstr "Escolha um letra"
  4097. +
  4098. +#
  4099. +# File: fltk/jwm-fonts.cxx, line: 828
  4100. +msgid "General Options"
  4101. +msgstr "Opções gerais"
  4102. +
  4103. +#
  4104. +# File: fltk/jwm-fonts.cxx, line: 879
  4105. +msgid "Hinting"
  4106. +msgstr "Dicas"
  4107. +
  4108. +#
  4109. +# File: fltk/jwm-fonts.cxx, line: 880
  4110. +msgid "Whether the rasterizer should use hinting"
  4111. +msgstr "Se o desenhador deve usar dicas"
  4112. +
  4113. +#
  4114. +# File: fltk/jwm-fonts.cxx, line: 888
  4115. +#. Fl_Check_Button* hint_check
  4116. +msgid "Antialiasing"
  4117. +msgstr "Suavização"
  4118. +
  4119. +#
  4120. +# File: fltk/jwm-fonts.cxx, line: 889
  4121. +msgid "Whether glyphs can be antialiased"
  4122. +msgstr "Se os símbolos e letras devem ser suavizados"
  4123. +
  4124. +#
  4125. +# File: fltk/jwm-fonts.cxx, line: 897
  4126. +#. Fl_Check_Button* o
  4127. +msgid "DPI"
  4128. +msgstr "DPI"
  4129. +
  4130. +#
  4131. +# File: fltk/jwm-fonts.cxx, line: 898
  4132. +msgid "Target dots per inch"
  4133. +msgstr "Pontos por polegada do alvo"
  4134. +
  4135. +#
  4136. +# File: fltk/jwm-fonts.cxx, line: 902
  4137. +#. Fl_Value_Input* o
  4138. +msgid "RGBA"
  4139. +msgstr "RGBA"
  4140. +
  4141. +#
  4142. +# File: fltk/jwm-fonts.cxx, line: 903
  4143. +msgid "rgb, bgr, vrgb, vbgr, none - subpixel geometry"
  4144. +msgstr "rgb, bgr, vrgb, vbgr, nenhum - geometria sub-pixel"
  4145. +
  4146. +#
  4147. +# File: fltk/jwm-fonts.cxx, line: 916
  4148. +#. Fl_Menu_Button* o
  4149. +msgid "Weight"
  4150. +msgstr "Peso"
  4151. +
  4152. +#
  4153. +# File: fltk/jwm-fonts.cxx, line: 929
  4154. +# File: fltk/jwm-panel.cxx, line: 1449
  4155. +# File: fltk/jwm-panel.cxx, line: 2567
  4156. +# File: fltk/jwm-panel.cxx, line: 2713
  4157. +# File: fltk/jwm-panel.cxx, line: 2860
  4158. +# File: fltk/jwm-panel.cxx, line: 3401
  4159. +# File: fltk/jwm-popups.cxx, line: 1048
  4160. +#. Fl_Menu_Button* o
  4161. +#. Fl_Button* o
  4162. +#. copy_label(clock_text.c_str());
  4163. +#. _label();
  4164. +#. Fl_Output* clock_displayer
  4165. +#. Fl_Button* o
  4166. +#. Fl_Input* swallow_config
  4167. +#. Fl_Button* o
  4168. +#. Fl_Box* o
  4169. +msgid "Width"
  4170. +msgstr "Largura"
  4171. +
  4172. +#
  4173. +# File: fltk/jwm-fonts.cxx, line: 930
  4174. +msgid "Condensed, normal or expanded"
  4175. +msgstr "Condensada, normal ou expandida"
  4176. +
  4177. +#
  4178. +# File: fltk/jwm-fonts.cxx, line: 943
  4179. +#. Fl_Menu_Button* o
  4180. +msgid "LCD Filter"
  4181. +msgstr "Filtro LCD"
  4182. +
  4183. +#
  4184. +# File: fltk/jwm-fonts.cxx, line: 944
  4185. +msgid "Type of LCD filter"
  4186. +msgstr "Tipo de filtro LCD"
  4187. +
  4188. +#
  4189. +# File: fltk/jwm-fonts.cxx, line: 957
  4190. +#. Fl_Menu_Button* o
  4191. +msgid "Hint Style"
  4192. +msgstr "Estilo da dica"
  4193. +
  4194. +#
  4195. +# File: fltk/jwm-fonts.cxx, line: 958
  4196. +msgid "Automatic hinting style"
  4197. +msgstr "Estilo de dica automático"
  4198. +
  4199. +#
  4200. +# File: fltk/jwm-fonts.cxx, line: 1011
  4201. +#. Fl_Output* hint_out
  4202. +msgid "Autohint"
  4203. +msgstr "Dica automática"
  4204. +
  4205. +#
  4206. +# File: fltk/jwm-fonts.cxx, line: 1012
  4207. +msgid "Use autohinter instead of normal hinter"
  4208. +msgstr "Usar dicas automáticas em vez de dicas normais"
  4209. +
  4210. +#
  4211. +# File: fltk/jwm-fonts.cxx, line: 1019
  4212. +#. Fl_Check_Button* o
  4213. +msgid "Vertical Layout"
  4214. +msgstr "Disposição vertical"
  4215. +
  4216. +#
  4217. +# File: fltk/jwm-fonts.cxx, line: 1020
  4218. +msgid "Use vertical layout"
  4219. +msgstr "Usar disposição vertical"
  4220. +
  4221. +#
  4222. +# File: fltk/jwm-fonts.cxx, line: 1027
  4223. +#. Fl_Check_Button* o
  4224. +msgid "No Leading space"
  4225. +msgstr "Sem espaço inicial"
  4226. +
  4227. +#
  4228. +# File: fltk/jwm-fonts.cxx, line: 1028
  4229. +msgid "Eliminate leading from line spacing"
  4230. +msgstr "Eliminar espaços iniciais do espaçamento da linha"
  4231. +
  4232. +#
  4233. +# File: fltk/jwm-fonts.cxx, line: 1035
  4234. +#. Fl_Check_Button* o
  4235. +msgid "Bold"
  4236. +msgstr "Negrito"
  4237. +
  4238. +#
  4239. +# File: fltk/jwm-fonts.cxx, line: 1041
  4240. +#. Fl_Check_Button* o
  4241. +msgid "Italic"
  4242. +msgstr "Itálico"
  4243. +
  4244. +#
  4245. +# File: fltk/jwm-fonts.cxx, line: 1047
  4246. +#. Fl_Check_Button* o
  4247. +msgid "Encoding"
  4248. +msgstr "Codificação"
  4249. +
  4250. +#
  4251. +# File: fltk/jwm-fonts.cxx, line: 1080
  4252. +msgid "You will need to reopen active apps"
  4253. +msgstr "Terá de reabrir aplicações activas"
  4254. +
  4255. +#
  4256. +# File: fltk/jwm-icons.cxx, line: 163
  4257. +# File: fltk/jwm-settings.cxx, line: 4096
  4258. +#. Fl_Button* o
  4259. +msgid "Icons"
  4260. +msgstr "Ícones"
  4261. +
  4262. +#
  4263. +# File: fltk/jwm-icons.cxx, line: 191
  4264. +# File: fltk/jwm-settings.cxx, line: 4126
  4265. +# File: fltk/jwm-themes.cxx, line: 86
  4266. +# File: fltk/jwm-themes.cxx, line: 100
  4267. +#. Fl_Browser* iconsBrowser
  4268. +#. Fl_Button* o
  4269. +#. Fl_Button* ok
  4270. +msgid "Themes"
  4271. +msgstr "Temas"
  4272. +
  4273. +#
  4274. +# File: fltk/jwm-icons.cxx, line: 192
  4275. +msgid "Icon themes to choose from"
  4276. +msgstr "Temas de ícones para escolher"
  4277. +
  4278. +#
  4279. +# File: fltk/jwm-icons.cxx, line: 197
  4280. +#. Fl_Light_Button* icon_themes_button
  4281. +msgid "Directories"
  4282. +msgstr "Pastas"
  4283. +
  4284. +#
  4285. +# File: fltk/jwm-icons.cxx, line: 198
  4286. +msgid "The icon directories JWM will search"
  4287. +msgstr "As pastas de ícones onde o JWM vai procurar"
  4288. +
  4289. +#
  4290. +# File: fltk/jwm-icons.cxx, line: 224
  4291. +msgid "Edit Directory"
  4292. +msgstr "Editar pasta"
  4293. +
  4294. +#
  4295. +# File: fltk/jwm-icons.cxx, line: 244
  4296. +#. Fl_Input* dir_edit_input
  4297. +msgid "Choose a new directory"
  4298. +msgstr "Escolha uma nova pasta"
  4299. +
  4300. +#
  4301. +# File: fltk/jwm-keyboard.cxx, line: 1321
  4302. +msgid "Configure Keyboard Shortcut"
  4303. +msgstr "Configurar atalho de teclado"
  4304. +
  4305. +#
  4306. +# File: fltk/jwm-keyboard.cxx, line: 1330
  4307. +# File: fltk/jwm-keyboard.cxx, line: 1450
  4308. +#. Fl_Button* o
  4309. +msgid "Action"
  4310. +msgstr "Acção"
  4311. +
  4312. +#
  4313. +# File: fltk/jwm-keyboard.cxx, line: 1343
  4314. +# File: fltk/jwm-keyboard.cxx, line: 1463
  4315. +#. Fl_Menu_Button* o
  4316. +msgid "Choose Program"
  4317. +msgstr "Escolha o programa"
  4318. +
  4319. +#
  4320. +# File: fltk/jwm-keyboard.cxx, line: 1344
  4321. +# File: fltk/jwm-keyboard.cxx, line: 1464
  4322. +msgid "Choose a program to add"
  4323. +msgstr "Escolha um programa a adicionar"
  4324. +
  4325. +#
  4326. +# File: fltk/jwm-keyboard.cxx, line: 1353
  4327. +# File: fltk/jwm-keyboard.cxx, line: 1473
  4328. +#. Fl_Input* action_name1
  4329. +#. Fl_Input* action_name
  4330. +msgid "OR"
  4331. +msgstr "OU"
  4332. +
  4333. +#
  4334. +# File: fltk/jwm-keyboard.cxx, line: 1363
  4335. +# File: fltk/jwm-keyboard.cxx, line: 1483
  4336. +#. Fl_Button* o
  4337. +msgid "Modifiers"
  4338. +msgstr "Modificadores"
  4339. +
  4340. +#
  4341. +# File: fltk/jwm-keyboard.cxx, line: 1375
  4342. +#. Fl_Output* mod3_output
  4343. +msgid "Current"
  4344. +msgstr "Actual"
  4345. +
  4346. +#
  4347. +# File: fltk/jwm-keyboard.cxx, line: 1376
  4348. +# File: fltk/jwm-keyboard.cxx, line: 1393
  4349. +# File: fltk/jwm-keyboard.cxx, line: 1399
  4350. +# File: fltk/jwm-keyboard.cxx, line: 1405
  4351. +msgid "Current Shortcut to Edit"
  4352. +msgstr "Atalho actual a editar"
  4353. +
  4354. +#
  4355. +# File: fltk/jwm-keyboard.cxx, line: 1381
  4356. +# File: fltk/jwm-keyboard.cxx, line: 1493
  4357. +#. Fl_Output* current_mod1
  4358. +#. Fl_Output* modder_output
  4359. +msgid "GRAB KEY"
  4360. +msgstr "CAPTAR ATALHO"
  4361. +
  4362. +#
  4363. +# File: fltk/jwm-keyboard.cxx, line: 1382
  4364. +# File: fltk/jwm-keyboard.cxx, line: 1494
  4365. +msgid "This will grab a new key combo"
  4366. +msgstr "Isto vai captar uma nova combinação de teclas"
  4367. +
  4368. +#
  4369. +# File: fltk/jwm-keyboard.cxx, line: 1388
  4370. +# File: fltk/jwm-keyboard.cxx, line: 1392
  4371. +# File: fltk/jwm-keyboard.cxx, line: 1505
  4372. +#. Fl_Button* o
  4373. +#. Fl_Output* keyshortcut
  4374. +#. Fl_Output* modder3_output
  4375. +msgid "Key"
  4376. +msgstr "Tecla"
  4377. +
  4378. +#
  4379. +# File: fltk/jwm-keyboard.cxx, line: 1416
  4380. +# File: fltk/jwm-keyboard.cxx, line: 1510
  4381. +#. Fl_Output* old_action
  4382. +#. Fl_Output* key
  4383. +msgid "Special Keys"
  4384. +msgstr "Teclas especiais"
  4385. +
  4386. +#
  4387. +# File: fltk/jwm-keyboard.cxx, line: 1417
  4388. +# File: fltk/jwm-keyboard.cxx, line: 1511
  4389. +msgid "Picture button keys on the keyboard"
  4390. +msgstr "Botões de imagem no teclado"
  4391. +
  4392. +#
  4393. +# File: fltk/jwm-keyboard.cxx, line: 1440
  4394. +msgid "Create Keyboard Shortcut"
  4395. +msgstr "Criar atalho de teclado"
  4396. +
  4397. +#
  4398. +# File: fltk/jwm-keyboard.cxx, line: 1484
  4399. +msgid "First keyboard modifier"
  4400. +msgstr "1º modificador de teclado"
  4401. +
  4402. +#
  4403. +# File: fltk/jwm-keyboard.cxx, line: 1489
  4404. +# File: fltk/jwm-keyboard.cxx, line: 1501
  4405. +# File: fltk/jwm-keyboard.cxx, line: 1506
  4406. +msgid "Second keyboard modifier"
  4407. +msgstr "2º modificador de teclado"
  4408. +
  4409. +#
  4410. +# File: fltk/jwm-keyboard.cxx, line: 1533
  4411. +# File: fltk/jwm-keyboard.cxx, line: 1535
  4412. +# File: fltk/jwm-keyboard.cxx, line: 1643
  4413. +#. Fl_Button* o
  4414. +msgid "Layout"
  4415. +msgstr "Disposição"
  4416. +
  4417. +#
  4418. +# File: fltk/jwm-keyboard.cxx, line: 1536
  4419. +msgid "The Keyboard regional layout"
  4420. +msgstr "A disposição regional do teclado"
  4421. +
  4422. +#
  4423. +# File: fltk/jwm-keyboard.cxx, line: 1562
  4424. +#. Fl_Button* o
  4425. +msgid "Model"
  4426. +msgstr "Modelo"
  4427. +
  4428. +#
  4429. +# File: fltk/jwm-keyboard.cxx, line: 1563
  4430. +msgid "The type of keyboard"
  4431. +msgstr "O tipo de teclado"
  4432. +
  4433. +#
  4434. +# File: fltk/jwm-keyboard.cxx, line: 1570
  4435. +#. Fl_Browser* o
  4436. +msgid "Option"
  4437. +msgstr "Opções"
  4438. +
  4439. +#
  4440. +# File: fltk/jwm-keyboard.cxx, line: 1571
  4441. +msgid "Additional quirks"
  4442. +msgstr "Peculiaridades adicionais"
  4443. +
  4444. +#
  4445. +# File: fltk/jwm-keyboard.cxx, line: 1594
  4446. +#. Fl::add_handler(handle);
  4447. +msgid "Keyboard Settings"
  4448. +msgstr "Definições do teclado"
  4449. +
  4450. +#
  4451. +# File: fltk/jwm-keyboard.cxx, line: 1599
  4452. +msgid "Keyboard Shortcuts"
  4453. +msgstr "Atalhos de teclado"
  4454. +
  4455. +#
  4456. +# File: fltk/jwm-keyboard.cxx, line: 1609
  4457. +# File: fltk/jwm-panel.cxx, line: 1535
  4458. +# File: fltk/jwm-panel.cxx, line: 2701
  4459. +# File: fltk/jwm-panel.cxx, line: 3008
  4460. +# File: fltk/jwm-window.cxx, line: 3029
  4461. +#. Fl_Browser* key_browser
  4462. +#. Fl_Browser* indicator_browser
  4463. +#. Fl_Browser* shortcut_browser
  4464. +#. Fl_Button* o
  4465. +msgid "-"
  4466. +msgstr "-"
  4467. +
  4468. +#
  4469. +# File: fltk/jwm-menu.cxx, line: 569
  4470. +msgid "Add a Menu"
  4471. +msgstr "Adicionar um menu"
  4472. +
  4473. +#
  4474. +# File: fltk/jwm-menu.cxx, line: 573
  4475. +msgid ""
  4476. +"Determine which buttons on the root window activate the menu. This is a list "
  4477. +"of integers specifying buttons. The default is 123. Multiple root menus may "
  4478. +"be used by specifying different buttons to activate them. Valid values in "
  4479. +"this list are 0 to 9 and a to z. The usual mouse buttons are 1 for the left "
  4480. +"button, 2 for the middle button, 3 for the right button, and 4 and 5 for the "
  4481. +"scroll wheel. Therefore, accessing root menus that are assigned to buttons "
  4482. +"0, 6, 7, 8, 9, or a letter will typically require the use of a tray button "
  4483. +"or key binding."
  4484. +msgstr ""
  4485. +"Determine que botões na janela raiz activam o menu. Esta é uma lista de "
  4486. +"números inteiros que especificam botões. A predefinição é 123. Podem ser "
  4487. +"usados vários menus principais especificando diferentes botões para os "
  4488. +"activar. Valores válidos na lista são de 0..9 e de a..z. Os botões habituais "
  4489. +"do rato são 1 para o botão esquerdo, 2 para o botão do meio, 3 para o botão "
  4490. +"direito e 4 e 5 para a roda. Portanto, aceder aos menus raiz atribuídos aos "
  4491. +"botões 0, 6, 7, 8, 9 ou uma letra, normalmente exigirá o uso de uma tecla ou "
  4492. +"atalho."
  4493. +
  4494. +#
  4495. +# File: fltk/jwm-menu.cxx, line: 586
  4496. +# File: fltk/jwm-menu.cxx, line: 650
  4497. +# File: fltk/jwm-menu.cxx, line: 698
  4498. +# File: fltk/jwm-menu.cxx, line: 735
  4499. +# File: fltk/jwm-panel.cxx, line: 2432
  4500. +# File: fltk/jwm-panel.cxx, line: 2751
  4501. +# File: fltk/jwm-panel.cxx, line: 2792
  4502. +#. Fl_Browser* list_browser
  4503. +#. Fl_Input* add_icon
  4504. +#. Fl_Input* item_prog_icon
  4505. +#. Fl_Button* o
  4506. +msgid "Label"
  4507. +msgstr "Rótulo"
  4508. +
  4509. +#
  4510. +# File: fltk/jwm-menu.cxx, line: 587
  4511. +msgid "The label to display at the top of the menu, normally this is NOT shown"
  4512. +msgstr "O rótulo a mostrar no cimo do menu, normalmente NÃO é mostrado"
  4513. +
  4514. +#
  4515. +# File: fltk/jwm-menu.cxx, line: 591
  4516. +# File: fltk/jwm-menu.cxx, line: 765
  4517. +# File: fltk/jwm-panel.cxx, line: 1453
  4518. +# File: fltk/jwm-panel.cxx, line: 2312
  4519. +# File: fltk/jwm-panel.cxx, line: 2593
  4520. +# File: fltk/jwm-panel.cxx, line: 2869
  4521. +# File: fltk/jwm-panel.cxx, line: 3407
  4522. +#. Fl_Input* new_menu_label
  4523. +#. Fl_Slider* menu_height_slider
  4524. +#. Fl_Value_Input* spacer_w
  4525. +#. Fl_Value_Input* o
  4526. +#. Fl_Button* o
  4527. +#. Fl_Value_Input* o
  4528. +msgid "Height"
  4529. +msgstr "Altura"
  4530. +
  4531. +#
  4532. +# File: fltk/jwm-menu.cxx, line: 592
  4533. +msgid ""
  4534. +"The height of each menu item in pixels 0 indicates that the height of the "
  4535. +"font will determine the height. The default is 0."
  4536. +msgstr ""
  4537. +"A altura de cada item de menu em pixels. 0 (predefinição) indica que o "
  4538. +"tamanho da letra determina a altura."
  4539. +
  4540. +#
  4541. +# File: fltk/jwm-menu.cxx, line: 602
  4542. +msgid ""
  4543. +"Determines if a label appears at the top of the menu, this will have no "
  4544. +"effect if the label is not set"
  4545. +msgstr ""
  4546. +"Determina se um rótulo aparece ao cimo do menu. Não tem efeito se o rótulo "
  4547. +"não estiver definido."
  4548. +
  4549. +#
  4550. +# File: fltk/jwm-menu.cxx, line: 625
  4551. +# File: fltk/jwm-menu.cxx, line: 1074
  4552. +msgid "Add an Item"
  4553. +msgstr "Adicionar um item"
  4554. +
  4555. +#
  4556. +# File: fltk/jwm-menu.cxx, line: 627
  4557. +# File: fltk/jwm-window.cxx, line: 2086
  4558. +#. Fl_Input* add_mask
  4559. +msgid "Item to add"
  4560. +msgstr "Item"
  4561. +
  4562. +#
  4563. +# File: fltk/jwm-menu.cxx, line: 643
  4564. +msgid "The JWM Menu item to add"
  4565. +msgstr "O item de menu JWM a adicionar."
  4566. +
  4567. +#
  4568. +# File: fltk/jwm-menu.cxx, line: 647
  4569. +msgid "The icon to display for this item"
  4570. +msgstr "O ícone a mostrar para este item."
  4571. +
  4572. +#
  4573. +# File: fltk/jwm-menu.cxx, line: 651
  4574. +msgid "The label to display for this item"
  4575. +msgstr "O rótulo a mostrar para este item."
  4576. +
  4577. +#
  4578. +# File: fltk/jwm-menu.cxx, line: 654
  4579. +# File: fltk/jwm-menu.cxx, line: 701
  4580. +# File: fltk/jwm-panel.cxx, line: 2475
  4581. +# File: fltk/jwm-panel.cxx, line: 2621
  4582. +#. Fl_Input* add_label
  4583. +#. Fl_Input* item_prog_label
  4584. +#. Fl_Value_Output* button_val
  4585. +#. Fl_Value_Output* output_button_val
  4586. +msgid "Program"
  4587. +msgstr "Programa"
  4588. +
  4589. +#
  4590. +# File: fltk/jwm-menu.cxx, line: 655
  4591. +msgid "The program to run"
  4592. +msgstr "O programa a executar"
  4593. +
  4594. +#
  4595. +# File: fltk/jwm-menu.cxx, line: 658
  4596. +# File: fltk/jwm-panel.cxx, line: 2769
  4597. +#. Fl_Input* add_input
  4598. +#. Fl_Input* icon_file
  4599. +msgid "Tooltip"
  4600. +msgstr "Dica"
  4601. +
  4602. +#
  4603. +# File: fltk/jwm-menu.cxx, line: 659
  4604. +msgid "The popup tooltip"
  4605. +msgstr "O que verá no balão da dica."
  4606. +
  4607. +#
  4608. +# File: fltk/jwm-menu.cxx, line: 669
  4609. +msgid "Choose an icon"
  4610. +msgstr "Escolha um ícone"
  4611. +
  4612. +#
  4613. +# File: fltk/jwm-menu.cxx, line: 675
  4614. +# File: fltk/jwm-window.cxx, line: 2052
  4615. +# File: fltk/jwm-window.cxx, line: 2187
  4616. +# File: src/fltkfunctions.cpp, line: 124
  4617. +# File: src/fltkfunctions.cpp, line: 263
  4618. +# File: src/panel.cpp, line: 566
  4619. +msgid "Choose a program"
  4620. +msgstr "Escolha um programa."
  4621. +
  4622. +#
  4623. +# File: fltk/jwm-menu.cxx, line: 681
  4624. +# File: fltk/jwm-menu.cxx, line: 704
  4625. +# File: fltk/jwm-menu.cxx, line: 1124
  4626. +#. Fl_Button* add_prog_button
  4627. +#. Fl_Input* item_prog_input
  4628. +msgid "Confirm"
  4629. +msgstr "Confirmar"
  4630. +
  4631. +#
  4632. +# File: fltk/jwm-menu.cxx, line: 693
  4633. +# File: fltk/jwm-menu.cxx, line: 733
  4634. +msgid "Configure the Item"
  4635. +msgstr "Configure o item"
  4636. +
  4637. +#
  4638. +# File: fltk/jwm-menu.cxx, line: 745
  4639. +# File: fltk/jwm-window.cxx, line: 2998
  4640. +#. Fl_Button* o
  4641. +#. Fl_Button* context_border
  4642. +msgid "Root"
  4643. +msgstr "Raiz"
  4644. +
  4645. +#
  4646. +# File: fltk/jwm-menu.cxx, line: 749
  4647. +#. Fl_Input* prog_root
  4648. +msgid "Labeled?"
  4649. +msgstr "Rotulado?"
  4650. +
  4651. +#
  4652. +# File: fltk/jwm-menu.cxx, line: 750
  4653. +msgid "Display the Label in the Menu"
  4654. +msgstr "Mostrar o rótulo no menu."
  4655. +
  4656. +#
  4657. +# File: fltk/jwm-menu.cxx, line: 781
  4658. +msgid "Edit Include Item"
  4659. +msgstr "Editar item"
  4660. +
  4661. +#
  4662. +# File: fltk/jwm-menu.cxx, line: 783
  4663. +msgid "Include"
  4664. +msgstr "Incluir"
  4665. +
  4666. +#
  4667. +# File: fltk/jwm-menu.cxx, line: 809
  4668. +msgid "Menu properties"
  4669. +msgstr "Propriedades do menu"
  4670. +
  4671. +#
  4672. +# File: fltk/jwm-menu.cxx, line: 817
  4673. +msgid "Menus"
  4674. +msgstr "Menus"
  4675. +
  4676. +#
  4677. +# File: fltk/jwm-menu.cxx, line: 822
  4678. +msgid "Add a menu"
  4679. +msgstr "Adicionar um menu"
  4680. +
  4681. +#
  4682. +# File: fltk/jwm-menu.cxx, line: 829
  4683. +msgid "remove a menu"
  4684. +msgstr "Remover um menu"
  4685. +
  4686. +#
  4687. +# File: fltk/jwm-menu.cxx, line: 837
  4688. +msgid ""
  4689. +"Options: Menu, Dynamic, Include, Program, Separator, Desktops, SendTo, "
  4690. +"Stick, Maximize, Minimize, Shade, Move, Resize, Kill, Close, Restart, Exit"
  4691. +msgstr ""
  4692. +"Opções: Menu, Dinâmico, Incluir, Programa, Separador, Áreas de trabalho, "
  4693. +"Enviar a, Colado, Maximizar, Minimizar, Sombra, Mover, Redimensionar, Matar, "
  4694. +"Fechar, Reiniciar, Sair."
  4695. +
  4696. +#
  4697. +# File: fltk/jwm-menu.cxx, line: 845
  4698. +msgid "Add a menu item"
  4699. +msgstr "Adicionar item de menu"
  4700. +
  4701. +#
  4702. +# File: fltk/jwm-menu.cxx, line: 852
  4703. +msgid "remove a menu item"
  4704. +msgstr "Remover item de menu"
  4705. +
  4706. +#
  4707. +# File: fltk/jwm-menu.cxx, line: 860
  4708. +msgid "These options correspond to specific Root Menu items"
  4709. +msgstr "Estas opções correspondem a itens de menu de raiz específicos."
  4710. +
  4711. +#
  4712. +# File: fltk/jwm-menu.cxx, line: 868
  4713. +#. Fl_Browser* menuElementText
  4714. +msgid " "
  4715. +msgstr " "
  4716. +
  4717. +#
  4718. +# File: fltk/jwm-menu.cxx, line: 869
  4719. +msgid ""
  4720. +"The range of possible values is 0 to 9 inclusive as well as a to z "
  4721. +"inclusive, providing for up to 36 menus. Note that only the numeric values "
  4722. +"map to mouse buttons."
  4723. +msgstr ""
  4724. +"O intervalo de valores possíveis é de 0..9 e a..z inclusive, fornecendo até "
  4725. +"36 menus. Note que só os valores numéricos podem ser usados com botões do "
  4726. +"rato."
  4727. +
  4728. +#
  4729. +# File: fltk/jwm-menu.cxx, line: 880
  4730. +# File: fltk/jwm-panel.cxx, line: 2851
  4731. +#. Fl_Input* swallow_name
  4732. +msgid "Configure"
  4733. +msgstr "Configurar"
  4734. +
  4735. +#
  4736. +# File: fltk/jwm-menu.cxx, line: 890
  4737. +# File: fltk/jwm-panel.cxx, line: 1575
  4738. +# File: fltk/jwm-panel.cxx, line: 1746
  4739. +# File: fltk/jwm-window.cxx, line: 2276
  4740. +#. Fl_Group* o
  4741. +#. Fl_Group* apps_tab
  4742. +#. Fl_Button* tray_outline2
  4743. +msgid "Appearance"
  4744. +msgstr "Aparência"
  4745. +
  4746. +#
  4747. +# File: fltk/jwm-menu.cxx, line: 907
  4748. +msgid "Menu Inactive Background Color"
  4749. +msgstr "Cor de fundo dos menus inactivos"
  4750. +
  4751. +#
  4752. +# File: fltk/jwm-menu.cxx, line: 917
  4753. +msgid "Menu Active Background Color"
  4754. +msgstr "Cor de fundo dos menus activos"
  4755. +
  4756. +#
  4757. +# File: fltk/jwm-menu.cxx, line: 927
  4758. +msgid "Menu Inactive Text Color"
  4759. +msgstr "Cor de texto dos menus inactivos"
  4760. +
  4761. +#
  4762. +# File: fltk/jwm-menu.cxx, line: 936
  4763. +# File: fltk/jwm-menu.cxx, line: 947
  4764. +#. Fl_Button* menu_font_color
  4765. +msgid "Opacity of Menu"
  4766. +msgstr "Opacidade do menu"
  4767. +
  4768. +#
  4769. +# File: fltk/jwm-menu.cxx, line: 937
  4770. +# File: fltk/jwm-panel.cxx, line: 1625
  4771. +# File: fltk/jwm-window.cxx, line: 2335
  4772. +# File: fltk/jwm-window.cxx, line: 2348
  4773. +# File: fltk/jwm-window.cxx, line: 2415
  4774. +# File: fltk/jwm-window.cxx, line: 2428
  4775. +msgid "A compositor (like xcompmgr) must be installed"
  4776. +msgstr "Tem de instalar um compositor (como o xcompmgr)."
  4777. +
  4778. +#
  4779. +# File: fltk/jwm-menu.cxx, line: 951
  4780. +# File: fltk/jwm-panel.cxx, line: 1639
  4781. +# File: fltk/jwm-window.cxx, line: 2347
  4782. +# File: fltk/jwm-window.cxx, line: 2427
  4783. +#. Fl_Slider* o_menu_slider
  4784. +#. Fl_Slider* o_slider
  4785. +#. Fl_Slider* active_o_slider
  4786. +#. Fl_Slider* inactive_o_slider
  4787. +msgid "%"
  4788. +msgstr "%"
  4789. +
  4790. +#
  4791. +# File: fltk/jwm-menu.cxx, line: 961
  4792. +msgid "Menu Active Text Color"
  4793. +msgstr "Cor de texto dos menus activos"
  4794. +
  4795. +#
  4796. +# File: fltk/jwm-menu.cxx, line: 969
  4797. +# File: fltk/jwm-panel.cxx, line: 1710
  4798. +# File: fltk/jwm-panel.cxx, line: 2364
  4799. +#. Fl_Button* menu_font_a
  4800. +#. Fl_Box* o
  4801. +#. Fl_Output* list_out
  4802. +msgid "decorations"
  4803. +msgstr "Decorações"
  4804. +
  4805. +#
  4806. +# File: fltk/jwm-menu.cxx, line: 970
  4807. +# File: fltk/jwm-panel.cxx, line: 1711
  4808. +# File: fltk/jwm-panel.cxx, line: 2365
  4809. +msgid "Flat or Motif style decorations"
  4810. +msgstr "Decorações estilo Flat ou Motif."
  4811. +
  4812. +#
  4813. +# File: fltk/jwm-menu.cxx, line: 983
  4814. +# File: fltk/jwm-panel.cxx, line: 1731
  4815. +# File: fltk/jwm-panel.cxx, line: 2385
  4816. +# File: fltk/jwm-popups.cxx, line: 611
  4817. +#. Fl_Menu_Button* o
  4818. +#. Fl_Output* panel_deco
  4819. +#. Fl_Output* tasklist_deco
  4820. +msgid "Outline"
  4821. +msgstr "Realce"
  4822. +
  4823. +#
  4824. +# File: fltk/jwm-menu.cxx, line: 991
  4825. +# File: fltk/jwm-panel.cxx, line: 1725
  4826. +# File: fltk/jwm-panel.cxx, line: 2379
  4827. +msgid "Flat or Motif style decorations (flat is default)"
  4828. +msgstr "Decorações estilo Flat (predefinição) ou Motif."
  4829. +
  4830. +#
  4831. +# File: fltk/jwm-menu.cxx, line: 1026
  4832. +# File: fltk/jwm-menu.cxx, line: 1029
  4833. +# File: fltk/jwm-panel.cxx, line: 3064
  4834. +# File: fltk/jwm-panel.cxx, line: 3067
  4835. +msgid "Nothing to Configure"
  4836. +msgstr "Nada a configurar"
  4837. +
  4838. +#
  4839. +# File: fltk/jwm-menu.cxx, line: 1041
  4840. +msgid "Submenu"
  4841. +msgstr "Sub-menu"
  4842. +
  4843. +#
  4844. +# File: fltk/jwm-menu.cxx, line: 1057
  4845. +# File: fltk/jwm-window.cxx, line: 2141
  4846. +# File: fltk/jwm-window.cxx, line: 3022
  4847. +msgid "Configure Item"
  4848. +msgstr "Configurar item"
  4849. +
  4850. +#
  4851. +# File: fltk/jwm-menu.cxx, line: 1081
  4852. +msgid "Remove an Item"
  4853. +msgstr "Remover um item"
  4854. +
  4855. +#
  4856. +# File: fltk/jwm-menu.cxx, line: 1125
  4857. +# File: fltk/jwm-menu.cxx, line: 1280
  4858. +# File: fltk/jwm-menu.cxx, line: 1366
  4859. +# File: fltk/jwm-panel.cxx, line: 2321
  4860. +#. Fl_Value_Input* o
  4861. +msgid "Labeled"
  4862. +msgstr "Rotulado"
  4863. +
  4864. +#
  4865. +# File: fltk/jwm-menu.cxx, line: 1126
  4866. +msgid ""
  4867. +"Determines if a label appears at the top of the menu. Default is false."
  4868. +msgstr ""
  4869. +"Determina se um rótulo aparece ao cimo do menu. A predefinição é falso."
  4870. +
  4871. +#
  4872. +# File: fltk/jwm-menu.cxx, line: 1127
  4873. +msgid "Determine if a confirm dialog appears before exiting. Default is true."
  4874. +msgstr "Determina se aparece um diálogo de confirmação antes de sair."
  4875. +
  4876. +#
  4877. +# File: fltk/jwm-mouse.cxx, line: 574
  4878. +msgid "Mouse Cursors"
  4879. +msgstr "Cursores do rato"
  4880. +
  4881. +#
  4882. +# File: fltk/jwm-mouse.cxx, line: 606
  4883. +# File: src/themes.cpp, line: 55
  4884. +msgid "ERROR"
  4885. +msgstr "ERRO"
  4886. +
  4887. +#
  4888. +# File: fltk/jwm-mouse.cxx, line: 609
  4889. +# File: fltk/jwm-mouse.cxx, line: 1277
  4890. +#. Fl_Button* main_cursors_button
  4891. +msgid "QUIT"
  4892. +msgstr "SAIR"
  4893. +
  4894. +#
  4895. +# File: fltk/jwm-mouse.cxx, line: 615
  4896. +#. Fl_Button* o
  4897. +msgid "No touchpad detected"
  4898. +msgstr "Sem touchpad"
  4899. +
  4900. +#
  4901. +# File: fltk/jwm-mouse.cxx, line: 625
  4902. +msgid "JWM Mouse Settings"
  4903. +msgstr "Definições JWM do rato"
  4904. +
  4905. +#
  4906. +# File: fltk/jwm-mouse.cxx, line: 628
  4907. +# File: fltk/jwm-mouse.cxx, line: 1202
  4908. +msgid "Double Click Speed"
  4909. +msgstr "Velocidade do duplo clique"
  4910. +
  4911. +#
  4912. +# File: fltk/jwm-mouse.cxx, line: 629
  4913. +# File: fltk/jwm-mouse.cxx, line: 1203
  4914. +msgid "This sets how fast you must click to Double Click"
  4915. +msgstr "Isto determina quão rápido tem de clicar duas vezes."
  4916. +
  4917. +#
  4918. +# File: fltk/jwm-mouse.cxx, line: 643
  4919. +# File: fltk/jwm-mouse.cxx, line: 1227
  4920. +#. Fl_Slider* double_click_slider2
  4921. +#. Fl_Value_Input* double_v
  4922. +msgid "Double Click Delta"
  4923. +msgstr "Tempo do duplo clique"
  4924. +
  4925. +#
  4926. +# File: fltk/jwm-mouse.cxx, line: 644
  4927. +# File: fltk/jwm-mouse.cxx, line: 1228
  4928. +msgid "This sets how closely you must click to Double Click"
  4929. +msgstr "Isto determina em quanto tempo tem de clicar duas vezes."
  4930. +
  4931. +#
  4932. +# File: fltk/jwm-mouse.cxx, line: 658
  4933. +# File: fltk/jwm-mouse.cxx, line: 1242
  4934. +#. Fl_Slider* delta_slider2
  4935. +#. Fl_Slider* delta_slider
  4936. +msgid "Pixels"
  4937. +msgstr "Pixels"
  4938. +
  4939. +#
  4940. +# File: fltk/jwm-mouse.cxx, line: 668
  4941. +# File: fltk/jwm-mouse.cxx, line: 1217
  4942. +#. Fl_Value_Input* delta_v2
  4943. +#. Fl_Slider* double_click_slider
  4944. +msgid "Miliseconds"
  4945. +msgstr "Milissegundos"
  4946. +
  4947. +#
  4948. +# File: fltk/jwm-mouse.cxx, line: 693
  4949. +# File: fltk/jwm-mouse.cxx, line: 1271
  4950. +#. Fl_Button* cancel_button3
  4951. +#. Fl_Button* ok_button
  4952. +msgid "Cursors"
  4953. +msgstr "Cursores"
  4954. +
  4955. +#
  4956. +# File: fltk/jwm-mouse.cxx, line: 712
  4957. +msgid "Touchpad Settings"
  4958. +msgstr "Definições do touchpad"
  4959. +
  4960. +#
  4961. +# File: fltk/jwm-mouse.cxx, line: 720
  4962. +msgid "TouchPad"
  4963. +msgstr "TouchPad"
  4964. +
  4965. +#
  4966. +# File: fltk/jwm-mouse.cxx, line: 722
  4967. +msgid "Touchpad Mode"
  4968. +msgstr "Modo do touchpad"
  4969. +
  4970. +#
  4971. +# File: fltk/jwm-mouse.cxx, line: 723
  4972. +msgid "Toggle the pad ON/OFF or only move (no scroll, tap, ecc.)"
  4973. +msgstr "Alterna entre ligado/desligado e mover só (sem rolar, tocar, etc.)."
  4974. +
  4975. +#
  4976. +# File: fltk/jwm-mouse.cxx, line: 739
  4977. +#. Fl_Choice* TouchpadOff
  4978. +msgid "Guest Mouse Off"
  4979. +msgstr "Rato desligado"
  4980. +
  4981. +#
  4982. +# File: fltk/jwm-mouse.cxx, line: 740
  4983. +msgid "Toggle on/of the secondary pointer (tipically a joypad)"
  4984. +msgstr ""
  4985. +"Alterna o segundo ponteiro entre ligado/desligado (tipicamente um joypad)."
  4986. +
  4987. +#
  4988. +# File: fltk/jwm-mouse.cxx, line: 747
  4989. +#. Fl_Check_Button* GuestMouseOff
  4990. +msgid "Circular Pad"
  4991. +msgstr "Tapete circular"
  4992. +
  4993. +#
  4994. +# File: fltk/jwm-mouse.cxx, line: 748
  4995. +msgid "Use this if your touchpad is circular"
  4996. +msgstr "Use esta opção se o seu touchpad for circular."
  4997. +
  4998. +#
  4999. +# File: fltk/jwm-mouse.cxx, line: 755
  5000. +#. Fl_Check_Button* CircularPad
  5001. +msgid "Touch Sensitivity"
  5002. +msgstr "Sensitividade"
  5003. +
  5004. +#
  5005. +# File: fltk/jwm-mouse.cxx, line: 756
  5006. +msgid "The minimum pressure to react to"
  5007. +msgstr "A pressão mínima à qual reagir."
  5008. +
  5009. +#
  5010. +# File: fltk/jwm-mouse.cxx, line: 768
  5011. +#. Fl_Value_Slider* FingerLowHigh
  5012. +msgid "Click Emulation Time"
  5013. +msgstr "Tempo de emulação do clique"
  5014. +
  5015. +#
  5016. +# File: fltk/jwm-mouse.cxx, line: 769
  5017. +msgid "The duration of the mouse click generated by tapping"
  5018. +msgstr "A duração do clique do rato gerado ao tocar."
  5019. +
  5020. +#
  5021. +# File: fltk/jwm-mouse.cxx, line: 781
  5022. +#. Fl_Value_Slider* ClickTime
  5023. +msgid "Middle Button Emulation Time"
  5024. +msgstr "Tempo de emulação do botão do meio"
  5025. +
  5026. +#
  5027. +# File: fltk/jwm-mouse.cxx, line: 782
  5028. +msgid "Maximum time for middle button emulation."
  5029. +msgstr "Tempo máximo de emulação do botão do meio."
  5030. +
  5031. +#
  5032. +# File: fltk/jwm-mouse.cxx, line: 796
  5033. +#. Fl_Group* o
  5034. +msgid "Tapping"
  5035. +msgstr "Tocar"
  5036. +
  5037. +#
  5038. +# File: fltk/jwm-mouse.cxx, line: 799
  5039. +msgid "One Finger"
  5040. +msgstr "Um dedo"
  5041. +
  5042. +#
  5043. +# File: fltk/jwm-mouse.cxx, line: 800
  5044. +msgid "Which mouse button is reported on a non-corner one-finger tap"
  5045. +msgstr "Qual botão do rato é reportado num toque de um dedo sem ser num canto."
  5046. +
  5047. +#
  5048. +# File: fltk/jwm-mouse.cxx, line: 815
  5049. +#. Fl_Choice* TapButton1
  5050. +msgid "Two Finger"
  5051. +msgstr "Dois dedos"
  5052. +
  5053. +#
  5054. +# File: fltk/jwm-mouse.cxx, line: 816
  5055. +msgid "Which mouse button is reported on a non-corner two-finger tap"
  5056. +msgstr ""
  5057. +"Qual botão do rato é reportado num toque de dois dedos sem ser num canto."
  5058. +
  5059. +#
  5060. +# File: fltk/jwm-mouse.cxx, line: 832
  5061. +#. Fl_Choice* TapButton2
  5062. +msgid "Three Finger"
  5063. +msgstr "Três dedos"
  5064. +
  5065. +#
  5066. +# File: fltk/jwm-mouse.cxx, line: 833
  5067. +msgid "Which mouse button is reported on a non-corner three-finger tap"
  5068. +msgstr ""
  5069. +"Qual botão do rato é reportado num toque de três dedos sem ser num canto."
  5070. +
  5071. +#
  5072. +# File: fltk/jwm-mouse.cxx, line: 849
  5073. +#. Fl_Choice* TapButton3
  5074. +msgid "Top Left Corner"
  5075. +msgstr "Canto superior esquerdo"
  5076. +
  5077. +#
  5078. +# File: fltk/jwm-mouse.cxx, line: 850
  5079. +msgid "Which mouse button is reported on a top left corner finger tap"
  5080. +msgstr "Qual botão do rato é reportado num toque no canto superior esquerdo."
  5081. +
  5082. +#
  5083. +# File: fltk/jwm-mouse.cxx, line: 866
  5084. +#. Fl_Choice* LTCornerButton
  5085. +msgid "Top Right Corner"
  5086. +msgstr "Canto superior direito"
  5087. +
  5088. +#
  5089. +# File: fltk/jwm-mouse.cxx, line: 867
  5090. +msgid ""
  5091. +"RTCornerButtonWhich mouse button is reported on a top right corner finger "
  5092. +"tap"
  5093. +msgstr "Qual botão do rato é reportado num toque no canto superior direito."
  5094. +
  5095. +#
  5096. +# File: fltk/jwm-mouse.cxx, line: 884
  5097. +#. Fl_Choice* RTCornerButton
  5098. +msgid "Bottom Left Corner"
  5099. +msgstr "Canto inferior esquerdo"
  5100. +
  5101. +#
  5102. +# File: fltk/jwm-mouse.cxx, line: 885
  5103. +msgid ""
  5104. +"LBCornerButtonWhich mouse button is reported on a bottom left corner finger "
  5105. +"tap"
  5106. +msgstr "Qual botão do rato é reportado num toque no canto inferior esquerdo."
  5107. +
  5108. +#
  5109. +# File: fltk/jwm-mouse.cxx, line: 902
  5110. +#. Fl_Choice* LBCornerButton
  5111. +msgid "Bottom Right Corner"
  5112. +msgstr "Canto inferior direito"
  5113. +
  5114. +#
  5115. +# File: fltk/jwm-mouse.cxx, line: 903
  5116. +msgid "Which mouse button is reported on a bottom right corner finger tap"
  5117. +msgstr "Qual botão do rato é reportado num toque no canto inferior direito."
  5118. +
  5119. +#
  5120. +# File: fltk/jwm-mouse.cxx, line: 919
  5121. +#. Fl_Choice* RBCornerButton
  5122. +msgid "Tap Time"
  5123. +msgstr "Tempo de toque"
  5124. +
  5125. +#
  5126. +# File: fltk/jwm-mouse.cxx, line: 920
  5127. +msgid "Maximum time for detecting a tap."
  5128. +msgstr "Tempo máximo para detectar um toque."
  5129. +
  5130. +#
  5131. +# File: fltk/jwm-mouse.cxx, line: 932
  5132. +#. Fl_Value_Slider* MaxTapTime
  5133. +msgid "Double Tap Time"
  5134. +msgstr "Tempo do duplo toque"
  5135. +
  5136. +#
  5137. +# File: fltk/jwm-mouse.cxx, line: 933
  5138. +msgid "Maximum time for detecting a double tap"
  5139. +msgstr "Tempo máximo para detectar um duplo toque."
  5140. +
  5141. +#
  5142. +# File: fltk/jwm-mouse.cxx, line: 945
  5143. +#. Fl_Value_Slider* MaxDoubleTapTime
  5144. +msgid "Tap Move"
  5145. +msgstr "Toque movido"
  5146. +
  5147. +#
  5148. +# File: fltk/jwm-mouse.cxx, line: 946
  5149. +msgid "Maximum movement of the finger for detecting a tap"
  5150. +msgstr "Movimento máximo do dedo para detectar um toque."
  5151. +
  5152. +#
  5153. +# File: fltk/jwm-mouse.cxx, line: 960
  5154. +#. Fl_Group* o
  5155. +msgid "Scrolling"
  5156. +msgstr "Rolagem"
  5157. +
  5158. +#
  5159. +# File: fltk/jwm-mouse.cxx, line: 963
  5160. +msgid "Vertical 2 Finger Scroll"
  5161. +msgstr "Rolagem ↕ com dois dedos"
  5162. +
  5163. +#
  5164. +# File: fltk/jwm-mouse.cxx, line: 964
  5165. +msgid "Enable Vertical Edge scrolling for this to work"
  5166. +msgstr "Activar rolagem vertical na margem para funcionar"
  5167. +
  5168. +#
  5169. +# File: fltk/jwm-mouse.cxx, line: 971
  5170. +#. Fl_Check_Button* VertTwoFingerScroll
  5171. +msgid "Horizontal 2 Finger Scroll"
  5172. +msgstr "Rolagem ↔ com dois dedos"
  5173. +
  5174. +#
  5175. +# File: fltk/jwm-mouse.cxx, line: 972
  5176. +msgid "Enable Horizontal Edge scrolling for this to work"
  5177. +msgstr "Activar rolagem horizontal na margem para funcionar"
  5178. +
  5179. +#
  5180. +# File: fltk/jwm-mouse.cxx, line: 979
  5181. +#. Fl_Check_Button* HorizTwoFingerScroll
  5182. +msgid "Up Down Buttons Scroll"
  5183. +msgstr "Rolagem com botões Acima/Abaixo"
  5184. +
  5185. +#
  5186. +# File: fltk/jwm-mouse.cxx, line: 980
  5187. +msgid "If on, the up/down buttons generate button 4/5 events"
  5188. +msgstr "Se ligada, os botões Acima/Abaixo geram eventos dos botões 4 e 5"
  5189. +
  5190. +#
  5191. +# File: fltk/jwm-mouse.cxx, line: 987
  5192. +#. Fl_Check_Button* UpDownScrolling
  5193. +msgid "Left Right Buttons Scroll"
  5194. +msgstr "Rolagem com botões Esquerda/Direita"
  5195. +
  5196. +#
  5197. +# File: fltk/jwm-mouse.cxx, line: 988
  5198. +msgid "If on, the left/right buttons generate button 6/7 events"
  5199. +msgstr "Se ligada, os botões Esquerda/Direita geram eventos dos botões 6 e 7"
  5200. +
  5201. +#
  5202. +# File: fltk/jwm-mouse.cxx, line: 995
  5203. +#. Fl_Check_Button* LeftRightScrolling
  5204. +msgid "Circular Scroll"
  5205. +msgstr "Rolagem circular"
  5206. +
  5207. +#
  5208. +# File: fltk/jwm-mouse.cxx, line: 996
  5209. +msgid "If on, circular scrolling is used"
  5210. +msgstr "Se ligada, é usada a rolagem circular"
  5211. +
  5212. +#
  5213. +# File: fltk/jwm-mouse.cxx, line: 1003
  5214. +#. Fl_Check_Button* CircularScrolling
  5215. +msgid "VScroll Delta"
  5216. +msgstr "Diferencial vertical"
  5217. +
  5218. +#
  5219. +# File: fltk/jwm-mouse.cxx, line: 1004
  5220. +# File: fltk/jwm-mouse.cxx, line: 1017
  5221. +msgid "Move distance of the finger for a scroll event"
  5222. +msgstr "Distância percorrida pelo dedo para gerar um evento de rolagem."
  5223. +
  5224. +#
  5225. +# File: fltk/jwm-mouse.cxx, line: 1016
  5226. +#. Fl_Value_Slider* VertScrollDelta
  5227. +msgid "HScroll Delta"
  5228. +msgstr "Diferencial horizontal"
  5229. +
  5230. +#
  5231. +# File: fltk/jwm-mouse.cxx, line: 1029
  5232. +#. Fl_Value_Slider* HorizScrollDelta
  5233. +msgid "CScroll Delta"
  5234. +msgstr "Diferencial circular"
  5235. +
  5236. +#
  5237. +# File: fltk/jwm-mouse.cxx, line: 1030
  5238. +msgid "Move angle (radians) of finger to generate a scroll event"
  5239. +msgstr ""
  5240. +"Ângulo (radianos) percorrido pelo dedo para gerar um evento de rolagem."
  5241. +
  5242. +#
  5243. +# File: fltk/jwm-mouse.cxx, line: 1042
  5244. +#. Fl_Value_Slider* CircScrollDelta
  5245. +msgid "CScroll Start"
  5246. +msgstr "Início da rotação"
  5247. +
  5248. +#
  5249. +# File: fltk/jwm-mouse.cxx, line: 1058
  5250. +#. Fl_Choice* CircScrollTrigger
  5251. +msgid "Edge Min Speed"
  5252. +msgstr "Velocidade mínima"
  5253. +
  5254. +#
  5255. +# File: fltk/jwm-mouse.cxx, line: 1059
  5256. +msgid "Slowest setting for edge motion speed"
  5257. +msgstr "Definição mais baixa para velocidade de movimento na margem"
  5258. +
  5259. +#
  5260. +# File: fltk/jwm-mouse.cxx, line: 1071
  5261. +#. Fl_Value_Slider* EdgeMotionMinSpeed
  5262. +msgid "Edge Max Speed"
  5263. +msgstr "Velocidade máxima"
  5264. +
  5265. +#
  5266. +# File: fltk/jwm-mouse.cxx, line: 1072
  5267. +msgid "Fastest setting for edge motion speed"
  5268. +msgstr "Definição mais alta para velocidade de movimento na margem"
  5269. +
  5270. +#
  5271. +# File: fltk/jwm-mouse.cxx, line: 1084
  5272. +#. Fl_Value_Slider* EdgeMotionMaxSpeed
  5273. +msgid "Edge Sensitivity"
  5274. +msgstr "Sensitividade da margem"
  5275. +
  5276. +#
  5277. +# File: fltk/jwm-mouse.cxx, line: 1085
  5278. +msgid "Finger pressure for motion speed"
  5279. +msgstr "Pressão digital para velocidade"
  5280. +
  5281. +#
  5282. +# File: fltk/jwm-mouse.cxx, line: 1099
  5283. +#. Fl_Group* o
  5284. +msgid "Movement"
  5285. +msgstr "Movimento"
  5286. +
  5287. +#
  5288. +# File: fltk/jwm-mouse.cxx, line: 1102
  5289. +msgid "@8->| Top"
  5290. +msgstr "@8->| Cimo"
  5291. +
  5292. +#
  5293. +# File: fltk/jwm-mouse.cxx, line: 1103
  5294. +msgid "Y coordinate for top edge"
  5295. +msgstr "Coordenada Y para a margem superior"
  5296. +
  5297. +#
  5298. +# File: fltk/jwm-mouse.cxx, line: 1109
  5299. +# File: fltk/jwm-mouse.cxx, line: 1123
  5300. +# File: fltk/jwm-mouse.cxx, line: 1137
  5301. +# File: fltk/jwm-mouse.cxx, line: 1151
  5302. +#. Fl_Value_Output* TopEdge
  5303. +#. Fl_Value_Output* BottomEdge
  5304. +#. Fl_Value_Output* LeftEdge
  5305. +#. Fl_Value_Output* RightEdge
  5306. +msgid "Calibrate"
  5307. +msgstr "Calibrar"
  5308. +
  5309. +#
  5310. +# File: fltk/jwm-mouse.cxx, line: 1110
  5311. +msgid "To calibrate push button and move finger on the top of the pad"
  5312. +msgstr "Para calibrar, prima o botão e mexa o dedo no cimo do tapete"
  5313. +
  5314. +#
  5315. +# File: fltk/jwm-mouse.cxx, line: 1116
  5316. +#. Fl_Button* o
  5317. +msgid "@2->| Bottom"
  5318. +msgstr "@2->| Fundo"
  5319. +
  5320. +#
  5321. +# File: fltk/jwm-mouse.cxx, line: 1117
  5322. +msgid "Y coordinate for bottom edge"
  5323. +msgstr "Coordenada Y para a margem inferior"
  5324. +
  5325. +#
  5326. +# File: fltk/jwm-mouse.cxx, line: 1124
  5327. +msgid "To calibrate push button and move finger on the bottom of the pad"
  5328. +msgstr "Para calibrar, prima o botão e mexa o dedo no fundo do tapete"
  5329. +
  5330. +#
  5331. +# File: fltk/jwm-mouse.cxx, line: 1130
  5332. +#. Fl_Button* o
  5333. +msgid "@4->| Left"
  5334. +msgstr "@4->| Esquerda"
  5335. +
  5336. +#
  5337. +# File: fltk/jwm-mouse.cxx, line: 1131
  5338. +msgid "X coordinate for left edge"
  5339. +msgstr "Coordenada Y para a margem esquerda"
  5340. +
  5341. +#
  5342. +# File: fltk/jwm-mouse.cxx, line: 1138
  5343. +msgid "To calibrate push button and move finger on the left of the pad"
  5344. +msgstr "Para calibrar, prima o botão e mexa o dedo na esquerda do tapete"
  5345. +
  5346. +#
  5347. +# File: fltk/jwm-mouse.cxx, line: 1144
  5348. +#. Fl_Button* o
  5349. +msgid "@->| Right"
  5350. +msgstr "@->| Direita"
  5351. +
  5352. +#
  5353. +# File: fltk/jwm-mouse.cxx, line: 1145
  5354. +msgid "X coordinate for right edge"
  5355. +msgstr "Coordenada Y para a margem direita"
  5356. +
  5357. +#
  5358. +# File: fltk/jwm-mouse.cxx, line: 1152
  5359. +msgid "To calibrate push button and move finger on the right of the pad"
  5360. +msgstr "Para calibrar, prima o botão e mexa na direita no cimo do tapete"
  5361. +
  5362. +#
  5363. +# File: fltk/jwm-mouse.cxx, line: 1158
  5364. +#. Fl_Button* o
  5365. +msgid "Min Speed"
  5366. +msgstr "Velocidade mínima"
  5367. +
  5368. +#
  5369. +# File: fltk/jwm-mouse.cxx, line: 1159
  5370. +msgid "Minimum speed factor"
  5371. +msgstr "Factor de velocidade mínima"
  5372. +
  5373. +#
  5374. +# File: fltk/jwm-mouse.cxx, line: 1171
  5375. +#. Fl_Value_Slider* MinSpeed
  5376. +msgid "Max Speed"
  5377. +msgstr "Velocidade máxima"
  5378. +
  5379. +#
  5380. +# File: fltk/jwm-mouse.cxx, line: 1172
  5381. +msgid "Maximum speed factor"
  5382. +msgstr "Factor de velocidade máxima"
  5383. +
  5384. +#
  5385. +# File: fltk/jwm-mouse.cxx, line: 1184
  5386. +#. Fl_Value_Slider* MaxSpeed
  5387. +msgid "Acceleration"
  5388. +msgstr "Aceleração"
  5389. +
  5390. +#
  5391. +# File: fltk/jwm-mouse.cxx, line: 1185
  5392. +msgid "Acceleration factor"
  5393. +msgstr "Factor de aceleração"
  5394. +
  5395. +#
  5396. +# File: fltk/jwm-mouse.cxx, line: 1252
  5397. +#. Fl_Value_Input* delta_v
  5398. +msgid "Reset"
  5399. +msgstr "Repor"
  5400. +
  5401. +#
  5402. +# File: fltk/jwm-panel.cxx, line: 1206
  5403. +# File: fltk/jwm-panel.cxx, line: 2490
  5404. +# File: fltk/jwm-panel.cxx, line: 2637
  5405. +# File: fltk/jwm-panel.cxx, line: 2812
  5406. +# File: fltk/jwm-panel.cxx, line: 3189
  5407. +# File: src/jwmrc.cpp, line: 2818
  5408. +# File: src/panel.cpp, line: 643
  5409. +#. Fl_Button* prog_conf_gear
  5410. +#. Fl_Button* clock_prog_conf_gear
  5411. +#. Fl_Input* hidden_icon_name
  5412. +msgid "Menu"
  5413. +msgstr "Menu"
  5414. +
  5415. +#
  5416. +# File: fltk/jwm-panel.cxx, line: 1440
  5417. +# File: fltk/jwm-panel.cxx, line: 3193
  5418. +# File: fltk/jwm-panel.cxx, line: 3392
  5419. +# File: src/jwmrc.cpp, line: 2821
  5420. +# File: src/panel.cpp, line: 646
  5421. +msgid "Spacer"
  5422. +msgstr "Separador"
  5423. +
  5424. +#
  5425. +# File: fltk/jwm-panel.cxx, line: 1450
  5426. +# File: fltk/jwm-panel.cxx, line: 3402
  5427. +msgid ""
  5428. +"The width of the spacer (0 to fill all available space). 0 is the default."
  5429. +msgstr ""
  5430. +"A largura do separador (0 para preencher o espaço disponível). 0 é a "
  5431. +"predefinição."
  5432. +
  5433. +#
  5434. +# File: fltk/jwm-panel.cxx, line: 1454
  5435. +# File: fltk/jwm-panel.cxx, line: 3408
  5436. +msgid ""
  5437. +"The height of the spacer (0 to fill all available space). 0 is the default."
  5438. +msgstr ""
  5439. +"A altura do separador (0 para preencher o espaço disponível. 0 é a "
  5440. +"predefinição."
  5441. +
  5442. +#
  5443. +# File: fltk/jwm-panel.cxx, line: 1480
  5444. +msgid "Panel Settings"
  5445. +msgstr "Definições do painel"
  5446. +
  5447. +#
  5448. +# File: fltk/jwm-panel.cxx, line: 1494
  5449. +# File: fltk/jwm-panel.cxx, line: 3043
  5450. +msgid "Add a Panel"
  5451. +msgstr "Adicionar um painel"
  5452. +
  5453. +#
  5454. +# File: fltk/jwm-panel.cxx, line: 1498
  5455. +msgid "Panel 1"
  5456. +msgstr "Painel 1"
  5457. +
  5458. +#
  5459. +# File: fltk/jwm-panel.cxx, line: 1503
  5460. +msgid "Panel 2"
  5461. +msgstr "Painel 2"
  5462. +
  5463. +#
  5464. +# File: fltk/jwm-panel.cxx, line: 1508
  5465. +msgid "Panel 3"
  5466. +msgstr "Painel 3"
  5467. +
  5468. +#
  5469. +# File: fltk/jwm-panel.cxx, line: 1513
  5470. +msgid "Panel 4"
  5471. +msgstr "Painel 4"
  5472. +
  5473. +#
  5474. +# File: fltk/jwm-panel.cxx, line: 1517
  5475. +msgid "Remove Current Panel"
  5476. +msgstr "Remover painel actual"
  5477. +
  5478. +#
  5479. +# File: fltk/jwm-panel.cxx, line: 1533
  5480. +# File: fltk/jwm-panel.cxx, line: 1572
  5481. +#. Fl_Button* o
  5482. +msgid "Apps"
  5483. +msgstr "Aplicações"
  5484. +
  5485. +#
  5486. +# File: fltk/jwm-panel.cxx, line: 1560
  5487. +#. Fl_Button* choose_apps
  5488. +msgid "@+98>"
  5489. +msgstr "@+98>"
  5490. +
  5491. +#
  5492. +# File: fltk/jwm-panel.cxx, line: 1566
  5493. +#. Fl_Button* o
  5494. +msgid "@+92>"
  5495. +msgstr "@+92>"
  5496. +
  5497. +#
  5498. +# File: fltk/jwm-panel.cxx, line: 1605
  5499. +msgid "Panel Inactive Background Color"
  5500. +msgstr "Cor de fundo do painel inactivo"
  5501. +
  5502. +#
  5503. +# File: fltk/jwm-panel.cxx, line: 1615
  5504. +msgid "Panel Button Active Text Color"
  5505. +msgstr "Cor do texto do botão activo do painel"
  5506. +
  5507. +#
  5508. +# File: fltk/jwm-panel.cxx, line: 1624
  5509. +#. Fl_Button* button_color_font_a
  5510. +msgid "Opacity of Panel "
  5511. +msgstr "Opacidade do painel "
  5512. +
  5513. +#
  5514. +# File: fltk/jwm-panel.cxx, line: 1635
  5515. +msgid "Opacity of Panel"
  5516. +msgstr "Opacidade do painel"
  5517. +
  5518. +#
  5519. +# File: fltk/jwm-panel.cxx, line: 1649
  5520. +msgid "Panel Button Inactive Background Color"
  5521. +msgstr "Cor de fundo do botão inactivo do painel"
  5522. +
  5523. +#
  5524. +# File: fltk/jwm-panel.cxx, line: 1659
  5525. +msgid "Panel Button Active Background Color"
  5526. +msgstr "Cor de fundo do botão activo do painel"
  5527. +
  5528. +#
  5529. +# File: fltk/jwm-panel.cxx, line: 1669
  5530. +msgid "Panel Button Inactive Text Color"
  5531. +msgstr "Cor do texto do botão inactivo do painel"
  5532. +
  5533. +#
  5534. +# File: fltk/jwm-panel.cxx, line: 1679
  5535. +msgid "Panel Active Text Color"
  5536. +msgstr "Cor do texto do painel activo"
  5537. +
  5538. +#
  5539. +# File: fltk/jwm-panel.cxx, line: 1688
  5540. +msgid "Panel Active Background Color"
  5541. +msgstr "Cor de fundo do painel activo"
  5542. +
  5543. +#
  5544. +# File: fltk/jwm-panel.cxx, line: 1697
  5545. +msgid "Panel Inactive Text Color"
  5546. +msgstr "Cor do texto do painel inactivo"
  5547. +
  5548. +#
  5549. +# File: fltk/jwm-panel.cxx, line: 1705
  5550. +# File: fltk/jwm-settings.cxx, line: 4084
  5551. +# File: fltk/jwm-themes.cxx, line: 117
  5552. +# File: src/panel.cpp, line: 102
  5553. +# File: src/panel.cpp, line: 669
  5554. +# File: src/panel.cpp, line: 714
  5555. +#. Fl_Button* panel_font
  5556. +#. Fl_Box* button
  5557. +msgid "Panel"
  5558. +msgstr "Painel"
  5559. +
  5560. +#
  5561. +# File: fltk/jwm-panel.cxx, line: 1707
  5562. +#. Fl_Box* o
  5563. +msgid "Panel Buttons"
  5564. +msgstr "Botões do painel"
  5565. +
  5566. +#
  5567. +# File: fltk/jwm-panel.cxx, line: 1749
  5568. +# File: fltk/jwm-panel.cxx, line: 2021
  5569. +#. Fl_Group* o
  5570. +#. Fl_Output* layer
  5571. +msgid "Size And Position"
  5572. +msgstr "Tamanho e posição"
  5573. +
  5574. +#
  5575. +# File: fltk/jwm-panel.cxx, line: 1752
  5576. +# File: fltk/jwm-panel.cxx, line: 1777
  5577. +msgid "Panel Position"
  5578. +msgstr "Posição do painel"
  5579. +
  5580. +#
  5581. +# File: fltk/jwm-panel.cxx, line: 1753
  5582. +msgid "Move the current panel to a new position"
  5583. +msgstr "Mover o painel actual para outra posição"
  5584. +
  5585. +#
  5586. +# File: fltk/jwm-panel.cxx, line: 1758
  5587. +# File: fltk/jwm-panel.cxx, line: 1923
  5588. +msgid "top"
  5589. +msgstr "cimo"
  5590. +
  5591. +#
  5592. +# File: fltk/jwm-panel.cxx, line: 1761
  5593. +# File: fltk/jwm-panel.cxx, line: 1926
  5594. +msgid "bottom"
  5595. +msgstr "fundo"
  5596. +
  5597. +#
  5598. +# File: fltk/jwm-panel.cxx, line: 1764
  5599. +# File: fltk/jwm-panel.cxx, line: 1929
  5600. +msgid "right"
  5601. +msgstr "direita"
  5602. +
  5603. +#
  5604. +# File: fltk/jwm-panel.cxx, line: 1767
  5605. +# File: fltk/jwm-panel.cxx, line: 1932
  5606. +msgid "left"
  5607. +msgstr "esquerda"
  5608. +
  5609. +#
  5610. +# File: fltk/jwm-panel.cxx, line: 1779
  5611. +#. Fl_Menu_Button* o
  5612. +msgid "Autohide"
  5613. +msgstr "Ocultar"
  5614. +
  5615. +#
  5616. +# File: fltk/jwm-panel.cxx, line: 1780
  5617. +msgid "This will make the Panel hide when you aren't using it."
  5618. +msgstr "Isto fará com que o painel desapareça quando nã o está a utilizar."
  5619. +
  5620. +#
  5621. +# File: fltk/jwm-panel.cxx, line: 1785
  5622. +msgid "Autohide?"
  5623. +msgstr "Ocultar?"
  5624. +
  5625. +#
  5626. +# File: fltk/jwm-panel.cxx, line: 1787
  5627. +#. Fl_Check_Button* autohide_check
  5628. +msgid "Width of Panel "
  5629. +msgstr "Largura do painel.."
  5630. +
  5631. +#
  5632. +# File: fltk/jwm-panel.cxx, line: 1788
  5633. +msgid "0 is Full Length"
  5634. +msgstr "0 é a largura total"
  5635. +
  5636. +#
  5637. +# File: fltk/jwm-panel.cxx, line: 1799
  5638. +msgid "Width of Panel"
  5639. +msgstr "Largura do painel"
  5640. +
  5641. +#
  5642. +# File: fltk/jwm-panel.cxx, line: 1803
  5643. +# File: fltk/jwm-panel.cxx, line: 1815
  5644. +# File: fltk/jwm-panel.cxx, line: 1833
  5645. +# File: fltk/jwm-panel.cxx, line: 1845
  5646. +# File: fltk/jwm-panel.cxx, line: 1904
  5647. +# File: fltk/jwm-panel.cxx, line: 1913
  5648. +# File: fltk/jwm-window.cxx, line: 2544
  5649. +# File: fltk/jwm-window.cxx, line: 2571
  5650. +# File: fltk/jwm-window.cxx, line: 2786
  5651. +# File: fltk/jwm-window.cxx, line: 2818
  5652. +#. Fl_Slider* w_slider
  5653. +#. Fl_Slider* h_slider
  5654. +#. Fl_Slider* border_slider
  5655. +#. Fl_Slider* t_slider
  5656. +#. Fl_Slider* b_slider
  5657. +#. Fl_Slider* a_b_slider
  5658. +#. Fl_Slider* a_t_slider
  5659. +msgid "pixels"
  5660. +msgstr "pixels"
  5661. +
  5662. +#
  5663. +# File: fltk/jwm-panel.cxx, line: 1804
  5664. +msgid ""
  5665. +"The width of the tray. 0 indicates that the tray\n"
  5666. +"should compute an optimal width depending on what\n"
  5667. +"it contains and the layout. A negative value subtracts\n"
  5668. +"from with screen width. 0 is the default."
  5669. +msgstr ""
  5670. +"A largura da bandeja. 0 indica que a bandeja deve\n"
  5671. +"calcular uma largura óptima, dependendo do conteúdo\n"
  5672. +" e da disposição. Um valor negativo, subtrai da largura\n"
  5673. +"do ecrã. 0 é a predefinição."
  5674. +
  5675. +#
  5676. +# File: fltk/jwm-panel.cxx, line: 1817
  5677. +#. Fl_Value_Input* width_input
  5678. +msgid "Height of Panel "
  5679. +msgstr "Altura do painel "
  5680. +
  5681. +#
  5682. +# File: fltk/jwm-panel.cxx, line: 1818
  5683. +msgid "0 will base size from the current items in the panel"
  5684. +msgstr "0 baseia o tamanho nos itens actuais do painel."
  5685. +
  5686. +#
  5687. +# File: fltk/jwm-panel.cxx, line: 1829
  5688. +msgid "Height of Panel"
  5689. +msgstr "Altura do painel"
  5690. +
  5691. +#
  5692. +# File: fltk/jwm-panel.cxx, line: 1834
  5693. +msgid ""
  5694. +"The height of the tray. 0 indicates that the tray\n"
  5695. +"should compute an optimal height depending on what\n"
  5696. +"it contains and the layout. A negative value subtracts\n"
  5697. +"from the screen height. 0 is the default."
  5698. +msgstr ""
  5699. +"A altura da bandeja. 0 indica que a bandeja deve\n"
  5700. +"calcular uma altura óptima, dependendo do conteúdo\n"
  5701. +" e da disposição. Um valor negativo, subtrai da altura\n"
  5702. +"do ecrã. 0 é a predefinição."
  5703. +
  5704. +#
  5705. +# File: fltk/jwm-panel.cxx, line: 1847
  5706. +# File: fltk/jwm-panel.cxx, line: 1850
  5707. +#. Fl_Value_Input* height_input
  5708. +msgid "Advanced Options"
  5709. +msgstr "Opções avançadas"
  5710. +
  5711. +#
  5712. +# File: fltk/jwm-panel.cxx, line: 1852
  5713. +# File: fltk/jwm-panel.cxx, line: 1862
  5714. +#. Fl_Box* o
  5715. +msgid "X coordinate"
  5716. +msgstr "Coordenada X"
  5717. +
  5718. +#
  5719. +# File: fltk/jwm-panel.cxx, line: 1853
  5720. +msgid ""
  5721. +"The x-coordinate of the tray. This may be negative\n"
  5722. +"to indicate an offset from the right of the screen."
  5723. +msgstr ""
  5724. +"A coordenada X da bandeja. Pode ser negativa para\n"
  5725. +"indicar um desvio da direita do ecrã."
  5726. +
  5727. +#
  5728. +# File: fltk/jwm-panel.cxx, line: 1864
  5729. +# File: fltk/jwm-panel.cxx, line: 1874
  5730. +#. Fl_Value_Input* o
  5731. +msgid "Y coordinate"
  5732. +msgstr "Coordenada Y"
  5733. +
  5734. +#
  5735. +# File: fltk/jwm-panel.cxx, line: 1865
  5736. +msgid ""
  5737. +"The y-coordinate of the tray. This may be negative\n"
  5738. +"to indicate an offset from the bottom of the\n"
  5739. +"screen."
  5740. +msgstr ""
  5741. +"A coordenada Y da bandeja. Pode ser negativa para\n"
  5742. +"indicar um desvio do fundo do ecrã."
  5743. +
  5744. +#
  5745. +# File: fltk/jwm-panel.cxx, line: 1877
  5746. +msgid "The horizontal alignment of the Panel"
  5747. +msgstr "O alinhamento horizontal do painel"
  5748. +
  5749. +#
  5750. +# File: fltk/jwm-panel.cxx, line: 1884
  5751. +msgid "The vertical alignment of the Panel"
  5752. +msgstr "O alinhamento vertical do painel"
  5753. +
  5754. +#
  5755. +# File: fltk/jwm-panel.cxx, line: 1890
  5756. +# File: fltk/jwm-panel.cxx, line: 1900
  5757. +#. Fl_Output* valign
  5758. +msgid "Width of Panel Border"
  5759. +msgstr "Largura do contorno do painel"
  5760. +
  5761. +#
  5762. +# File: fltk/jwm-panel.cxx, line: 1915
  5763. +# File: fltk/jwm-panel.cxx, line: 1946
  5764. +#. Fl_Value_Input* border_input
  5765. +msgid "Autohide Position"
  5766. +msgstr "Posição ao ocultar"
  5767. +
  5768. +#
  5769. +# File: fltk/jwm-panel.cxx, line: 1916
  5770. +msgid ""
  5771. +"Specifies the location to hide the tray when not\n"
  5772. +"activated. Default is \"off\" to disable hiding.\n"
  5773. +"Possible values are \"left\", \"right\", \"top\", \"bottom\", and \"off\"."
  5774. +msgstr ""
  5775. +"Especifica a posição onde ocultar a bandeja quando\n"
  5776. +"inactiva. A predefinição é \"Desligado\". Os valores\n"
  5777. +"possíveis são \"left\", \"right\", \"top\", \"bottom\" e \"off\"."
  5778. +
  5779. +#
  5780. +# File: fltk/jwm-panel.cxx, line: 1935
  5781. +msgid "off"
  5782. +msgstr "Desligado"
  5783. +
  5784. +#
  5785. +# File: fltk/jwm-panel.cxx, line: 1949
  5786. +msgid "current autohide position (if any)"
  5787. +msgstr "Posição actual para ocultar (se houver)."
  5788. +
  5789. +#
  5790. +# File: fltk/jwm-panel.cxx, line: 1955
  5791. +#. Fl_Output* autohide_pos
  5792. +msgid "halign"
  5793. +msgstr "AlinHor"
  5794. +
  5795. +#
  5796. +# File: fltk/jwm-panel.cxx, line: 1956
  5797. +# File: fltk/jwm-panel.cxx, line: 1969
  5798. +# File: fltk/jwm-panel.cxx, line: 1982
  5799. +# File: fltk/jwm-panel.cxx, line: 2002
  5800. +msgid "Use 'Panel Position' for easy configuration"
  5801. +msgstr "Utilize \"Posição do painel\" para uma configuração fácil."
  5802. +
  5803. +#
  5804. +# File: fltk/jwm-panel.cxx, line: 1968
  5805. +#. Fl_Menu_Button* o
  5806. +msgid "valign"
  5807. +msgstr "AlinVer"
  5808. +
  5809. +#
  5810. +# File: fltk/jwm-panel.cxx, line: 1981
  5811. +#. Fl_Menu_Button* o
  5812. +msgid "layout"
  5813. +msgstr "Disposição"
  5814. +
  5815. +#
  5816. +# File: fltk/jwm-panel.cxx, line: 1995
  5817. +msgid "The layout of the tray. The default is horizontal."
  5818. +msgstr "A disposição da bandeja. A predefinição é horizontal."
  5819. +
  5820. +#
  5821. +# File: fltk/jwm-panel.cxx, line: 2001
  5822. +#. Fl_Output* layOut
  5823. +msgid "layer"
  5824. +msgstr "Camada"
  5825. +
  5826. +#
  5827. +# File: fltk/jwm-panel.cxx, line: 2015
  5828. +msgid "The layer of the tray. The default is above."
  5829. +msgstr "A camada da bandeja. A predefinição é acima."
  5830. +
  5831. +#
  5832. +# File: fltk/jwm-panel.cxx, line: 2043
  5833. +# File: fltk/jwm-panel.cxx, line: 2047
  5834. +#. Fl_Button* save_button
  5835. +msgid "Edit Menus"
  5836. +msgstr "Editar menus"
  5837. +
  5838. +#
  5839. +# File: fltk/jwm-panel.cxx, line: 2060
  5840. +msgid "Add Indicator"
  5841. +msgstr "Adicionar indicador"
  5842. +
  5843. +#
  5844. +# File: fltk/jwm-panel.cxx, line: 2094
  5845. +# File: fltk/jwm-panel.cxx, line: 2123
  5846. +msgid "Add to Panel"
  5847. +msgstr "Adicionar ao painel"
  5848. +
  5849. +#
  5850. +# File: fltk/jwm-panel.cxx, line: 2131
  5851. +# File: fltk/jwm-panel.cxx, line: 2177
  5852. +# File: fltk/jwm-panel.cxx, line: 2518
  5853. +msgid "Configure Clock"
  5854. +msgstr "Configurar relógio"
  5855. +
  5856. +#
  5857. +# File: fltk/jwm-panel.cxx, line: 2142
  5858. +# File: fltk/jwm-panel.cxx, line: 2147
  5859. +#. Fl_Button* o
  5860. +msgid "style"
  5861. +msgstr "estilo"
  5862. +
  5863. +#
  5864. +# File: fltk/jwm-panel.cxx, line: 2162
  5865. +# File: fltk/jwm-panel.cxx, line: 2166
  5866. +# File: fltk/jwm-panel.cxx, line: 2186
  5867. +#. Fl_Output* clock_display
  5868. +msgid "Notes"
  5869. +msgstr "Notas"
  5870. +
  5871. +#
  5872. +# File: fltk/jwm-panel.cxx, line: 2168
  5873. +# File: fltk/jwm-panel.cxx, line: 2172
  5874. +# File: fltk/jwm-panel.cxx, line: 2223
  5875. +#. Fl_Button* o
  5876. +msgid "Modifier Notes"
  5877. +msgstr "Notas do modificador"
  5878. +
  5879. +#
  5880. +# File: fltk/jwm-panel.cxx, line: 2189
  5881. +msgid ""
  5882. +"ISO 8601 week dates %G, %g, and %V yield values calculated from the week-"
  5883. +"based year defined by the ISO 8601 standard. In this system, weeks start "
  5884. +"on a Monday, and are numbered from 01, for the first week, up to 52 or 53, "
  5885. +"for the last week. Week 1 is the first week where four or more days fall "
  5886. +"within the new year (or, synonymously, week 01 is: the first week of the "
  5887. +"year that contains a Thursday; or, the week that has 4 January in it). "
  5888. +"When three of fewer days of the first calendar week of the new year fall "
  5889. +"within that year, then the ISO 8601 week-based system counts those days as "
  5890. +"part of week 53 of the preceding year. For example, 1 January 2010 is a "
  5891. +"Friday, meaning that just three days of that calendar week fall in "
  5892. +"2010. Thus, the ISO 8601 week-based system considers these days to be part "
  5893. +"of week 53 (%V) of the year 2009 (%G); week 01 of ISO 8601 year 2010 starts "
  5894. +"on Monday, 4 January 2010."
  5895. +msgstr ""
  5896. +"As datas semanais da norma ISO 8601, % G,% g e% V devolvem valores "
  5897. +"calculados a partir do ano com base na semana definido pela mesma norma. "
  5898. +"Neste sistema, as semanas começam na segunda-feira e são numeradas de 01, a "
  5899. +"primeira semana, até 52 ou 53, a última semana. A semana 1 é a primeira "
  5900. +"semana em que quatro ou mais dias caem no ano novo (ou, de igual forma, a "
  5901. +"semana 01 é: a primeira semana do ano que contém uma quinta-feira ou a "
  5902. +"semana que tem 4 de Janeiro). Quando três ou menos dias da primeira semana "
  5903. +"do calendário do ano novo caem nesse ano, o sistema baseado na semana ISO "
  5904. +"8601 conta esses dias como parte da semana 53 do ano anterior. Por exemplo, "
  5905. +"1 de Janeiro de 2010 foi sexta-feira, o que significa que apenas três dias "
  5906. +"dessa semana caíram em 2010. Assim, o sistema considera que esses dias fazem "
  5907. +"parte da semana 53 (%V) do ano de 2009 (%G); a semana 01 da norma ISO 8601 "
  5908. +"ano 2010 começou na Segunda-Feira, 4 de Janeiro de 2010."
  5909. +
  5910. +#
  5911. +# File: fltk/jwm-panel.cxx, line: 2226
  5912. +msgid ""
  5913. +"Some conversion specifications can be modified by preceding the "
  5914. +"conversion specifier character by the E or O modifier to indicate that an "
  5915. +"alternative format should be used. If the alternative format or "
  5916. +"specification does not exist for the current locale, the behavior will be as "
  5917. +"if the unmodified conversion specification were used. (SU) The Single "
  5918. +"UNIX Specification mentions %Ec, %EC, %Ex, %EX, %Ey, %EY, %Od, %Oe, %OH, "
  5919. +"%OI, %Om, %OM, %OS, %Ou, %OU, %OV, %Ow, %OW, %Oy, where the effect of "
  5920. +"the O modifier is to use alternative numeric symbols (say, roman numerals), "
  5921. +"and that of the E modifier is to use a locale-dependent alternative "
  5922. +"representation.\n"
  5923. +"The broken-down time structure tm is defined in <time.h>."
  5924. +msgstr ""
  5925. +"Algumas especificações de conversão podem ser modificadas quando precedidas "
  5926. +"pelo modificador E ou O, para indicar que deve ser usado um formato "
  5927. +"alternativo. Se o formato ou especificação alternativa não existir para o "
  5928. +"idioma actual, o comportamento será como se a especificação de conversão não "
  5929. +"modificada fosse usada. (SU) A Single UNIX Specification menciona %Ec, % EC, "
  5930. +"%Ex, %EX, %Ey, %EY, %Od, %Oe, %OH, %OI, %Om, %OM, %OS, %Ou, %OU, %OV, %Ow, "
  5931. +"%OW, %Oy, onde o efeito do modificador O é usar símbolos numéricos "
  5932. +"alternativos (digamos, algarismos romanos) e o do modificador E é usar uma "
  5933. +"representação alternativa dependente do idioma.\n"
  5934. +"A estrutura da data/hora tm é definida em <time-h>"
  5935. +
  5936. +#
  5937. +# File: fltk/jwm-panel.cxx, line: 2249
  5938. +#. Fl_Scroll* o
  5939. +msgid "See also ctime"
  5940. +msgstr "Veja também ctime"
  5941. +
  5942. +#
  5943. +# File: fltk/jwm-panel.cxx, line: 2264
  5944. +# File: fltk/jwm-panel.cxx, line: 3185
  5945. +# File: src/jwmrc.cpp, line: 2814
  5946. +# File: src/panel.cpp, line: 639
  5947. +msgid "Running App List"
  5948. +msgstr "Aplicações em execução"
  5949. +
  5950. +#
  5951. +# File: fltk/jwm-panel.cxx, line: 2288
  5952. +# File: fltk/jwm-panel.cxx, line: 2297
  5953. +# File: fltk/jwm-panel.cxx, line: 2386
  5954. +# File: fltk/jwm-panel.cxx, line: 2394
  5955. +# File: fltk/jwm-panel.cxx, line: 2403
  5956. +# File: fltk/jwm-panel.cxx, line: 2412
  5957. +msgid "Optional, Will use Panel colors if not specified."
  5958. +msgstr "Opcional, utiliza as cores do painel, se não for especificada."
  5959. +
  5960. +#
  5961. +# File: fltk/jwm-panel.cxx, line: 2305
  5962. +#. Fl_Button* task_fg_color
  5963. +msgid "Max Width"
  5964. +msgstr "Larg. Máx."
  5965. +
  5966. +#
  5967. +# File: fltk/jwm-panel.cxx, line: 2306
  5968. +msgid ""
  5969. +"The maximum width of an item in the task list. 0 indicates no maximum. "
  5970. +"The default is 0"
  5971. +msgstr ""
  5972. +"A largura máxima de um item na lista de tarefas. 0 indica sem limite e é a "
  5973. +"predefinição."
  5974. +
  5975. +#
  5976. +# File: fltk/jwm-panel.cxx, line: 2313
  5977. +msgid ""
  5978. +"The height of an item in the task list. 0 indicates that the height "
  5979. +"should be taken from the tray. The default is 0."
  5980. +msgstr ""
  5981. +"A altura máxima de um item na lista de tarefas. 0 indica que a altura deve "
  5982. +"ser deduzida da bandeja e é a predefinição."
  5983. +
  5984. +#
  5985. +# File: fltk/jwm-panel.cxx, line: 2322
  5986. +msgid ""
  5987. +"Determines if a label is shown for items in the task list. The default is "
  5988. +"true."
  5989. +msgstr ""
  5990. +"Determina se um rótulo é mostrado para itens na lista de tarefas. A "
  5991. +"predefinição é sim."
  5992. +
  5993. +#
  5994. +# File: fltk/jwm-panel.cxx, line: 2331
  5995. +#. Fl_Check_Button* o
  5996. +msgid "Group"
  5997. +msgstr "Grupo"
  5998. +
  5999. +#
  6000. +# File: fltk/jwm-panel.cxx, line: 2332
  6001. +msgid ""
  6002. +"Determines if windows are grouped by class when shown in task bars. "
  6003. +"Possible values are true and false. The default is false."
  6004. +msgstr ""
  6005. +"Determina se as janelas são agrupadas por classe, quando mostradas em barras "
  6006. +"de tarefas. São valores possíveis verdadeiro e falso. A predefinição é falso."
  6007. +
  6008. +#
  6009. +# File: fltk/jwm-panel.cxx, line: 2341
  6010. +#. Fl_Check_Button* o
  6011. +msgid "List"
  6012. +msgstr "Lista"
  6013. +
  6014. +#
  6015. +# File: fltk/jwm-panel.cxx, line: 2342
  6016. +msgid ""
  6017. +"Determines which windows are shown in task bars. Possible values are "
  6018. +"desktop and all. The default is desktop."
  6019. +msgstr ""
  6020. +"Determina que janelas são mostradas nas barras de tarefas. São valores "
  6021. +"possíveis desktop e all. A predefinição é desktop."
  6022. +
  6023. +#
  6024. +# File: fltk/jwm-panel.cxx, line: 2429
  6025. +msgid "Configure Button"
  6026. +msgstr "Configurar botão"
  6027. +
  6028. +#
  6029. +# File: fltk/jwm-panel.cxx, line: 2433
  6030. +# File: fltk/jwm-panel.cxx, line: 2476
  6031. +msgid "Text for the Panel Button"
  6032. +msgstr "Texto para o botão"
  6033. +
  6034. +#
  6035. +# File: fltk/jwm-panel.cxx, line: 2441
  6036. +# File: fltk/jwm-panel.cxx, line: 2808
  6037. +msgid "The icon file name"
  6038. +msgstr "Ficheiro de ícone"
  6039. +
  6040. +#
  6041. +# File: fltk/jwm-panel.cxx, line: 2448
  6042. +# File: fltk/jwm-panel.cxx, line: 2800
  6043. +# File: fltk/jwm-window.cxx, line: 1942
  6044. +# File: src/fltkfunctions.cpp, line: 156
  6045. +msgid "Choose an Icon"
  6046. +msgstr "Escolha um ícone"
  6047. +
  6048. +#
  6049. +# File: fltk/jwm-panel.cxx, line: 2456
  6050. +# File: fltk/jwm-panel.cxx, line: 2601
  6051. +#. Fl_Button* button_icon_view
  6052. +#. Fl_Value_Input* o
  6053. +msgid "Mouse Button"
  6054. +msgstr "Botão do rato"
  6055. +
  6056. +#
  6057. +# File: fltk/jwm-panel.cxx, line: 2470
  6058. +msgid "Button 1 is Left, Button 2 is right. Button 3 is middle."
  6059. +msgstr "O botão 1 é o esquerdo, o 2 é o direito, o 3 é o do meio."
  6060. +
  6061. +#
  6062. +# File: fltk/jwm-panel.cxx, line: 2484
  6063. +# File: fltk/jwm-panel.cxx, line: 2631
  6064. +msgid "Configure the program"
  6065. +msgstr "Configurar o programa"
  6066. +
  6067. +#
  6068. +# File: fltk/jwm-panel.cxx, line: 2491
  6069. +# File: fltk/jwm-panel.cxx, line: 2813
  6070. +msgid "The root menu the button is tied to"
  6071. +msgstr "O menu raiz a que o botão está ligado"
  6072. +
  6073. +#
  6074. +# File: fltk/jwm-panel.cxx, line: 2497
  6075. +msgid "Configure this menu"
  6076. +msgstr "Configurar este menu"
  6077. +
  6078. +#
  6079. +# File: fltk/jwm-panel.cxx, line: 2527
  6080. +#. Fl_Browser* zone_browser
  6081. +msgid "Clock Format"
  6082. +msgstr "Formato do relógio"
  6083. +
  6084. +#
  6085. +# File: fltk/jwm-panel.cxx, line: 2532
  6086. +msgid "Day name Month Day 12 Hour"
  6087. +msgstr "Dia da semana Mês Dia 12 Horas"
  6088. +
  6089. +#
  6090. +# File: fltk/jwm-panel.cxx, line: 2536
  6091. +msgid "24 Hour Clock"
  6092. +msgstr "Relógio 24 horas"
  6093. +
  6094. +#
  6095. +# File: fltk/jwm-panel.cxx, line: 2540
  6096. +msgid "12 Hour Clock"
  6097. +msgstr "Relógio 12 horas"
  6098. +
  6099. +#
  6100. +# File: fltk/jwm-panel.cxx, line: 2544
  6101. +msgid "Year Month Day 24 Hour clock"
  6102. +msgstr "Ano Mês Dia Relógio 24 Horas"
  6103. +
  6104. +#
  6105. +# File: fltk/jwm-panel.cxx, line: 2548
  6106. +msgid "(Advanced) User Defined"
  6107. +msgstr "(Avançadas) Definido pelo utilizador"
  6108. +
  6109. +#
  6110. +# File: fltk/jwm-panel.cxx, line: 2568
  6111. +msgid ""
  6112. +"The width of the clock. 0 indicates that the width should be determined from "
  6113. +"the length of the text to be displayed."
  6114. +msgstr ""
  6115. +"A largura do relógio. 0 indica que a largura deve ser determinada pela "
  6116. +"largura do texto a ser mostrado."
  6117. +
  6118. +#
  6119. +# File: fltk/jwm-panel.cxx, line: 2575
  6120. +# File: fltk/jwm-panel.cxx, line: 2895
  6121. +# File: fltk/jwm-popups.cxx, line: 1113
  6122. +# File: fltk/jwm-popups.cxx, line: 1146
  6123. +# File: fltk/jwm-popups.cxx, line: 1179
  6124. +#. Fl_Value_Input* o
  6125. +#. Fl_Button* o
  6126. +#. Fl_Box* o
  6127. +msgid "Foreground"
  6128. +msgstr "1º plano"
  6129. +
  6130. +#
  6131. +# File: fltk/jwm-panel.cxx, line: 2576
  6132. +# File: fltk/jwm-panel.cxx, line: 2585
  6133. +msgid "Optional, this will use the Panel colors if not specified"
  6134. +msgstr "Opcional, utiliza as cores do painel, se não for especificada."
  6135. +
  6136. +#
  6137. +# File: fltk/jwm-panel.cxx, line: 2584
  6138. +# File: fltk/jwm-panel.cxx, line: 2899
  6139. +# File: fltk/jwm-popups.cxx, line: 678
  6140. +# File: fltk/jwm-popups.cxx, line: 1131
  6141. +# File: fltk/jwm-popups.cxx, line: 1164
  6142. +# File: fltk/jwm-popups.cxx, line: 1197
  6143. +#. Fl_Button* clock_fg
  6144. +#. Fl_Box* o
  6145. +#. Fl_Button* o
  6146. +#. Fl_Value_Input* Low_timeout
  6147. +#. Fl_Value_Input* Norm_timeout
  6148. +#. Fl_Value_Input* Crit_timeout
  6149. +msgid "Background"
  6150. +msgstr "Fundo"
  6151. +
  6152. +#
  6153. +# File: fltk/jwm-panel.cxx, line: 2594
  6154. +msgid ""
  6155. +"The height of the clock. 0 indicates that the height should be determined "
  6156. +"from the font used."
  6157. +msgstr ""
  6158. +"A altura do relógio. 0 indica que a altura deve ser determinada pela letra "
  6159. +"usada."
  6160. +
  6161. +#
  6162. +# File: fltk/jwm-panel.cxx, line: 2622
  6163. +msgid "Execute a command."
  6164. +msgstr "Executar um comando."
  6165. +
  6166. +#
  6167. +# File: fltk/jwm-panel.cxx, line: 2638
  6168. +msgid "The root menu the Clock is tied to"
  6169. +msgstr "O menu raiz a que o relógio está ligado"
  6170. +
  6171. +#
  6172. +# File: fltk/jwm-panel.cxx, line: 2644
  6173. +msgid "Configure the menu"
  6174. +msgstr "Configurar o menu"
  6175. +
  6176. +#
  6177. +# File: fltk/jwm-panel.cxx, line: 2657
  6178. +msgid "Type to search"
  6179. +msgstr "Tipo a procurar"
  6180. +
  6181. +#
  6182. +# File: fltk/jwm-panel.cxx, line: 2665
  6183. +#. Fl_Input* tz_out
  6184. +msgid "SET"
  6185. +msgstr "DEFINIR"
  6186. +
  6187. +#
  6188. +# File: fltk/jwm-panel.cxx, line: 2686
  6189. +msgid "Configure Indicators"
  6190. +msgstr "Configurar indicadores"
  6191. +
  6192. +#
  6193. +# File: fltk/jwm-panel.cxx, line: 2714
  6194. +msgid ""
  6195. +"The maximum width of an item contained in the dock. This defaults to the "
  6196. +"width or height of the tray (whichever is smaller)."
  6197. +msgstr ""
  6198. +"A largura máxima de um item na doca. A predefinição é a largura ou a altura "
  6199. +"da bandeja, aquela que for menor."
  6200. +
  6201. +#
  6202. +# File: fltk/jwm-panel.cxx, line: 2721
  6203. +#. Fl_Value_Input* o
  6204. +msgid "Spacing"
  6205. +msgstr "Espaçamento"
  6206. +
  6207. +#
  6208. +# File: fltk/jwm-panel.cxx, line: 2722
  6209. +msgid "Number of pixels to leave between items in the dock. The default is 0."
  6210. +msgstr "Número de pixels a deixar entre itens na doca. A predefinição é 0."
  6211. +
  6212. +#
  6213. +# File: fltk/jwm-panel.cxx, line: 2739
  6214. +msgid "Manual Editing"
  6215. +msgstr "Edição manual"
  6216. +
  6217. +#
  6218. +# File: fltk/jwm-panel.cxx, line: 2752
  6219. +# File: fltk/jwm-panel.cxx, line: 2770
  6220. +msgid "The text that pops up when you hover"
  6221. +msgstr "O texto que surge quando paira sobre o item."
  6222. +
  6223. +#
  6224. +# File: fltk/jwm-panel.cxx, line: 2782
  6225. +msgid "Configure Menu"
  6226. +msgstr "Configurar o menu"
  6227. +
  6228. +#
  6229. +# File: fltk/jwm-panel.cxx, line: 2793
  6230. +msgid "Text for the Button that shows the menu"
  6231. +msgstr "Texto para o botão que mostra o menu"
  6232. +
  6233. +#
  6234. +# File: fltk/jwm-panel.cxx, line: 2818
  6235. +msgid "Configure the menu items"
  6236. +msgstr "Configurar os itens de menu"
  6237. +
  6238. +#
  6239. +# File: fltk/jwm-panel.cxx, line: 2833
  6240. +msgid "Configure Swallowed Application"
  6241. +msgstr "Configurar a aplicação Swallow"
  6242. +
  6243. +#
  6244. +# File: fltk/jwm-panel.cxx, line: 2841
  6245. +#. Fl_Button* o
  6246. +msgid "App Name"
  6247. +msgstr "Nome da aplicação"
  6248. +
  6249. +#
  6250. +# File: fltk/jwm-panel.cxx, line: 2842
  6251. +msgid "This MUST be the same as the executable's name"
  6252. +msgstr "TEM de ser o mesmo que o nome do executável"
  6253. +
  6254. +#
  6255. +# File: fltk/jwm-panel.cxx, line: 2861
  6256. +msgid ""
  6257. +"The width of the swallowed program. 0 indicates\n"
  6258. +"that the width should be determined\n"
  6259. +"from the tray and size requested from the\n"
  6260. +"program. 0 is the default."
  6261. +msgstr ""
  6262. +"A largura da aplicação Swallow. 0 indica que a\n"
  6263. +"largura deve ser determinada pela bandeja e o\n"
  6264. +"tamanho deve ser pedido pelo programa. A\n"
  6265. +"predefinição é 0."
  6266. +
  6267. +#
  6268. +# File: fltk/jwm-panel.cxx, line: 2870
  6269. +msgid ""
  6270. +"The height of the swallowed program. 0 indicates\n"
  6271. +"that the height should be determined\n"
  6272. +"from the tray and size requested from the\n"
  6273. +"program. 0 is the default."
  6274. +msgstr ""
  6275. +"A altura da aplicação Swallow. 0 indica que a\n"
  6276. +"altura deve ser determinada pela bandeja e o\n"
  6277. +"tamanho deve ser pedido pelo programa. A\n"
  6278. +"predefinição é 0."
  6279. +
  6280. +#
  6281. +# File: fltk/jwm-panel.cxx, line: 2886
  6282. +msgid "Configure Switcher"
  6283. +msgstr "Configurar o alternador"
  6284. +
  6285. +#
  6286. +# File: fltk/jwm-panel.cxx, line: 2929
  6287. +#. Fl_Button* t_bg
  6288. +msgid "Number of Desktops Wide"
  6289. +msgstr "Número de áreas de largo"
  6290. +
  6291. +#
  6292. +# File: fltk/jwm-panel.cxx, line: 2936
  6293. +#. Fl_Value_Input* num_desktop_w
  6294. +msgid "Number of Desktops High "
  6295. +msgstr "Número de áreas de alto"
  6296. +
  6297. +#
  6298. +# File: fltk/jwm-panel.cxx, line: 2943
  6299. +#. Fl_Value_Input* num_desktop_h
  6300. +msgid "Labled"
  6301. +msgstr "Rotulado"
  6302. +
  6303. +#
  6304. +# File: fltk/jwm-panel.cxx, line: 2944
  6305. +msgid "Determines if the pager has text labels. Default is false."
  6306. +msgstr "Determina se o paginador tem rótulos de texto. A predefinição é falso."
  6307. +
  6308. +#
  6309. +# File: fltk/jwm-panel.cxx, line: 2959
  6310. +msgid "Choose an application to add"
  6311. +msgstr "Escolha a aplicação a adicionar"
  6312. +
  6313. +#
  6314. +# File: fltk/jwm-panel.cxx, line: 2961
  6315. +msgid "Application"
  6316. +msgstr "Aplicação"
  6317. +
  6318. +#
  6319. +# File: fltk/jwm-panel.cxx, line: 2968
  6320. +msgid "You can add arguments here"
  6321. +msgstr "Pode adicionar argumentos aqui"
  6322. +
  6323. +#
  6324. +# File: fltk/jwm-panel.cxx, line: 2975
  6325. +#. Fl_Input* app_command
  6326. +msgid "Tooltip Label"
  6327. +msgstr "Rótulo da dica"
  6328. +
  6329. +#
  6330. +# File: fltk/jwm-panel.cxx, line: 2993
  6331. +#. Fl_Button* ok_button
  6332. +msgid "Show a Border around the Button?"
  6333. +msgstr "Mostrar o contorno do botão?"
  6334. +
  6335. +#
  6336. +# File: fltk/jwm-panel.cxx, line: 2994
  6337. +msgid "The button you are adding can be borderless, if you like"
  6338. +msgstr "O botão que adicionou pode não ter contorno, se assim o desejar."
  6339. +
  6340. +#
  6341. +# File: fltk/jwm-panel.cxx, line: 3001
  6342. +#. Fl_Check_Button* shortcut_border
  6343. +msgid "Current Panel Buttons"
  6344. +msgstr "Botões do painel actuais"
  6345. +
  6346. +#
  6347. +# File: fltk/jwm-panel.cxx, line: 3009
  6348. +msgid "Remove application launcher"
  6349. +msgstr "Remover lançador da aplicação"
  6350. +
  6351. +#
  6352. +# File: fltk/jwm-panel.cxx, line: 3017
  6353. +#. Fl_Button* o
  6354. +msgid "Icon File Name"
  6355. +msgstr "Ficheiro de ícone"
  6356. +
  6357. +#
  6358. +# File: fltk/jwm-panel.cxx, line: 3045
  6359. +msgid "Only Four Panels are supported"
  6360. +msgstr "Só são suportados quatro painéis"
  6361. +
  6362. +#
  6363. +# File: fltk/jwm-panel.cxx, line: 3186
  6364. +# File: src/jwmrc.cpp, line: 2815
  6365. +# File: src/panel.cpp, line: 640
  6366. +msgid "Indicators"
  6367. +msgstr "Indicadores"
  6368. +
  6369. +#
  6370. +# File: fltk/jwm-panel.cxx, line: 3187
  6371. +# File: src/jwmrc.cpp, line: 2816
  6372. +# File: src/panel.cpp, line: 641
  6373. +msgid "Clock"
  6374. +msgstr "Relógio"
  6375. +
  6376. +#
  6377. +# File: fltk/jwm-panel.cxx, line: 3188
  6378. +# File: src/jwmrc.cpp, line: 2817
  6379. +# File: src/panel.cpp, line: 642
  6380. +msgid "Swallow"
  6381. +msgstr "Swallow"
  6382. +
  6383. +#
  6384. +# File: fltk/jwm-panel.cxx, line: 3190
  6385. +# File: src/jwmrc.cpp, line: 2819
  6386. +# File: src/panel.cpp, line: 644
  6387. +msgid "Desktop Switcher"
  6388. +msgstr "Alternador de área de trabalho"
  6389. +
  6390. +#
  6391. +# File: fltk/jwm-panel.cxx, line: 3191
  6392. +# File: src/jwmrc.cpp, line: 2820
  6393. +msgid "Launcher"
  6394. +msgstr "Lançador"
  6395. +
  6396. +#
  6397. +# File: fltk/jwm-popups.cxx, line: 604
  6398. +# File: fltk/jwm-settings.cxx, line: 4153
  6399. +#. Fl_Button* o
  6400. +msgid "Popups"
  6401. +msgstr "Balões"
  6402. +
  6403. +#
  6404. +# File: fltk/jwm-popups.cxx, line: 609
  6405. +msgid ""
  6406. +"This controls the look of popup tooltips such as those shown when the mouse "
  6407. +"sits over a panel item."
  6408. +msgstr ""
  6409. +"Isto controla o aspecto de balões de dicas, tais como os mostrados quando o "
  6410. +"rato paira sobre um item de painel."
  6411. +
  6412. +#
  6413. +# File: fltk/jwm-popups.cxx, line: 612
  6414. +msgid "The color of the window outline. The default is black."
  6415. +msgstr "A cor do contorno da janela. A predefinição é preto."
  6416. +
  6417. +#
  6418. +# File: fltk/jwm-popups.cxx, line: 619
  6419. +#. Fl_Button* outline
  6420. +msgid "milliseconds"
  6421. +msgstr "millisegundos"
  6422. +
  6423. +#
  6424. +# File: fltk/jwm-popups.cxx, line: 620
  6425. +# File: fltk/jwm-popups.cxx, line: 629
  6426. +msgid "The delay in milliseconds before popups activate. The default is 600."
  6427. +msgstr ""
  6428. +"O atraso em milissegundos até que o balão apareça. A predefinição é 600."
  6429. +
  6430. +#
  6431. +# File: fltk/jwm-popups.cxx, line: 628
  6432. +#. Fl_Value_Input* delay_out
  6433. +msgid "Delay"
  6434. +msgstr "Atraso"
  6435. +
  6436. +#
  6437. +# File: fltk/jwm-popups.cxx, line: 641
  6438. +#. Fl_Slider* delay_slider
  6439. +msgid "enabled"
  6440. +msgstr "activo"
  6441. +
  6442. +#
  6443. +# File: fltk/jwm-popups.cxx, line: 642
  6444. +# File: fltk/jwm-popups.cxx, line: 659
  6445. +msgid ""
  6446. +"Determine if popups are shown. This is a comma-separated list of one or more "
  6447. +"of the following: true (all enabled), false (no popups enabled), button "
  6448. +"(tray buttons), clock (clocks), menu (menus), pager (pagers), and task (task "
  6449. +"list items). The default is true."
  6450. +msgstr ""
  6451. +"Determina se os balões são mostrados. É uma lista separada por vírgulas de "
  6452. +"uma ou mais das seguintes opções: true (tudo activo), false (nenhum balão "
  6453. +"activo), button (botões da bandeja), clock (relógios), menu (menus), pager "
  6454. +"(paginadores) e task (itens da lista de tarefas). A predefinição é true."
  6455. +
  6456. +#
  6457. +# File: fltk/jwm-popups.cxx, line: 670
  6458. +#. Fl_Output* enabled_out
  6459. +msgid "Text"
  6460. +msgstr "Texto"
  6461. +
  6462. +#
  6463. +# File: fltk/jwm-popups.cxx, line: 671
  6464. +msgid "The text color"
  6465. +msgstr "A cor do texto"
  6466. +
  6467. +#
  6468. +# File: fltk/jwm-popups.cxx, line: 679
  6469. +msgid "The background color"
  6470. +msgstr "A cor do fundo"
  6471. +
  6472. +#
  6473. +# File: fltk/jwm-popups.cxx, line: 700
  6474. +#. Fl_Button* o
  6475. +msgid "Notifications"
  6476. +msgstr "Nptificações"
  6477. +
  6478. +#
  6479. +# File: fltk/jwm-popups.cxx, line: 701
  6480. +msgid "Sytem notification pop up windows"
  6481. +msgstr "Balões de notificação do sistema"
  6482. +
  6483. +#
  6484. +# File: fltk/jwm-popups.cxx, line: 717
  6485. +msgid "System Notifications"
  6486. +msgstr "Notificações do sistema"
  6487. +
  6488. +#
  6489. +# File: fltk/jwm-popups.cxx, line: 720
  6490. +msgid "Font"
  6491. +msgstr "Letra"
  6492. +
  6493. +#
  6494. +# File: fltk/jwm-popups.cxx, line: 731
  6495. +#. Fl_Output* font
  6496. +msgid "Alignment"
  6497. +msgstr "Alinhamento"
  6498. +
  6499. +#
  6500. +# File: fltk/jwm-popups.cxx, line: 732
  6501. +# File: fltk/jwm-popups.cxx, line: 747
  6502. +msgid ""
  6503. +"Alignment of message text. Possible values are \"left\", \"center\" and "
  6504. +"\"right\"."
  6505. +msgstr ""
  6506. +"Alinhamento do texto da mensagem. São valores possíveis \"left\", \"center\" "
  6507. +"e \"right\"."
  6508. +
  6509. +#
  6510. +# File: fltk/jwm-popups.cxx, line: 754
  6511. +#. Fl_Output* alignment
  6512. +msgid "Follow"
  6513. +msgstr "Seguir"
  6514. +
  6515. +#
  6516. +# File: fltk/jwm-popups.cxx, line: 755
  6517. +# File: fltk/jwm-popups.cxx, line: 774
  6518. +msgid ""
  6519. +"Display notification on focused monitor. Possible modes are: mouse: "
  6520. +"follow mouse pointer keyboard: follow window with keyboard focus none: "
  6521. +"don't follow anything \"keyboard\" needs a windowmanager that exports the "
  6522. +"_NET_ACTIVE_WINDOW property. This should be the case for almost all modern "
  6523. +"windowmanagers. If this option is set to mouse or keyboard, the monitor "
  6524. +"option will be ignored."
  6525. +msgstr ""
  6526. +"Mostrar notificação no monitor em foco. Os modos possíveis são: mouse: "
  6527. +"seguir ponteiro do rato teclado: seguir janela com foco do teclado nada: "
  6528. +"não seguir nada \"keyboard\" precisa de um gestor de janelas que exporte a "
  6529. +"propriedade _NET_ACTIVE_WINDOW. Deverá ser o caso para a maioria dos "
  6530. +"gestores de janelas modernos. Se esta opção estiver definida para mouse ou "
  6531. +"keyboard, a opção monitor será ignorada."
  6532. +
  6533. +#
  6534. +# File: fltk/jwm-popups.cxx, line: 785
  6535. +#. Fl_Output* follow
  6536. +msgid "Separator Color"
  6537. +msgstr "Cor do separador"
  6538. +
  6539. +#
  6540. +# File: fltk/jwm-popups.cxx, line: 786
  6541. +# File: fltk/jwm-popups.cxx, line: 803
  6542. +msgid ""
  6543. +"Define a color for the separator. possible values are: * auto: dunst tries "
  6544. +"to find a color fitting to the background; * foreground: use the same color "
  6545. +"as the foreground; * frame: use the same color as the frame; * anything "
  6546. +"else will be interpreted as a X color."
  6547. +msgstr ""
  6548. +"Define a cor do separador. São valores possíveis: * auto: dunst tenta "
  6549. +"encontrar uma cor que sirva ao fundo; * foreground: usa a mesma cor do 1º "
  6550. +"plano; * frame: usa a mesma cor da moldura; * qualquer outra coisa será "
  6551. +"interpretado como uma cor X."
  6552. +
  6553. +#
  6554. +# File: fltk/jwm-popups.cxx, line: 812
  6555. +#. Fl_Output* separator_color
  6556. +msgid "Word wrap"
  6557. +msgstr "Quebra de linha"
  6558. +
  6559. +#
  6560. +# File: fltk/jwm-popups.cxx, line: 813
  6561. +msgid ""
  6562. +"Split notifications into multiple lines if they don't fit into geometery"
  6563. +msgstr ""
  6564. +"Divide as notificações em múltiplas linhas, se não couberem na geometria."
  6565. +
  6566. +#
  6567. +# File: fltk/jwm-popups.cxx, line: 821
  6568. +#. Fl_Check_Button* word_wrap
  6569. +msgid "Bounce Frequency"
  6570. +msgstr "Frequência de ressalto"
  6571. +
  6572. +#
  6573. +# File: fltk/jwm-popups.cxx, line: 822
  6574. +msgid ""
  6575. +"The frequency with wich text that is longer than the notification window "
  6576. +"allows bounces back and forth. This option conflicts with \"word_wrap\". Set "
  6577. +"to 0 to disable."
  6578. +msgstr ""
  6579. +"A frequência com que o texto anda para trás e para a frente , se não couber "
  6580. +"na geometria. Esta opção dá conflitos com a quebra de linha. Defina como 0 "
  6581. +"para desactivar."
  6582. +
  6583. +#
  6584. +# File: fltk/jwm-popups.cxx, line: 832
  6585. +#. Fl_Value_Input* bounce_freq
  6586. +msgid "Allow Markup"
  6587. +msgstr "Permitir marcação"
  6588. +
  6589. +#
  6590. +# File: fltk/jwm-popups.cxx, line: 833
  6591. +msgid ""
  6592. +"For a complete reference see <http://developer.gnome.org/pango/stable/"
  6593. +"PangoMarkupFormat.html>. If markup is not allowed, those tags will be "
  6594. +"stripped out of the message."
  6595. +msgstr ""
  6596. +"Para uma referência completa, veja <http://developer.gnome.org/pango/stable/"
  6597. +"PangoMarkupFormat.html>. Se a marcação não for permitida, as suas etiquetas "
  6598. +"serão removidas da mensagem."
  6599. +
  6600. +#
  6601. +# File: fltk/jwm-popups.cxx, line: 843
  6602. +#. Fl_Check_Button* allow_markup
  6603. +msgid "Format"
  6604. +msgstr "Formato"
  6605. +
  6606. +#
  6607. +# File: fltk/jwm-popups.cxx, line: 844
  6608. +msgid ""
  6609. +"The format of the message. Possible variables are: %a appname %s "
  6610. +"summary %b body %i iconname (including its path) %I iconname "
  6611. +"(without its path) %p progress value if set ([ 0%] to [100%]) or nothing"
  6612. +msgstr ""
  6613. +"O formato da mensagem. As variáveis possíveis são: %a - nome da aplicação; "
  6614. +"%s - resumo; %b - corpo; %i - nome do ícone (incluindo caminho); %I - nome "
  6615. +"do ícone (sem caminho); %p - valor do progresso, se definido ([0%] a [100%]) "
  6616. +"ou nada"
  6617. +
  6618. +#
  6619. +# File: fltk/jwm-popups.cxx, line: 854
  6620. +#. Fl_Output* format
  6621. +msgid "Sort by urgency"
  6622. +msgstr "Ordenar por urgência"
  6623. +
  6624. +#
  6625. +# File: fltk/jwm-popups.cxx, line: 855
  6626. +msgid "Sort messages by urgency."
  6627. +msgstr "Ordenar mensagens por urgência."
  6628. +
  6629. +#
  6630. +# File: fltk/jwm-popups.cxx, line: 863
  6631. +#. Fl_Check_Button* sort
  6632. +msgid "Indicate hidden"
  6633. +msgstr "Indicar ocultas"
  6634. +
  6635. +#
  6636. +# File: fltk/jwm-popups.cxx, line: 864
  6637. +msgid "Show how many messages are currently hidden (because of geometry)."
  6638. +msgstr ""
  6639. +"Mostrar quantas mensagens estão actualmente ocultas (devido à geometria)."
  6640. +
  6641. +#
  6642. +# File: fltk/jwm-popups.cxx, line: 872
  6643. +#. Fl_Check_Button* indicate_hidden
  6644. +msgid "Ignore newlines"
  6645. +msgstr "Ignora newlines"
  6646. +
  6647. +#
  6648. +# File: fltk/jwm-popups.cxx, line: 873
  6649. +msgid "Ignore newlines '\\n' in notifications."
  6650. +msgstr "Ignora newlines \"\\n\" nas notificações."
  6651. +
  6652. +#
  6653. +# File: fltk/jwm-popups.cxx, line: 881
  6654. +#. Fl_Check_Button* ignore_newline
  6655. +msgid "Shrink"
  6656. +msgstr "Encolher"
  6657. +
  6658. +#
  6659. +# File: fltk/jwm-popups.cxx, line: 882
  6660. +msgid ""
  6661. +"Shrink window if it's smaller than the width. Will be ignored if width is 0."
  6662. +msgstr ""
  6663. +"Encolher a janela, se for menor que a largura. Será ignorado se a largura "
  6664. +"for 0."
  6665. +
  6666. +#
  6667. +# File: fltk/jwm-popups.cxx, line: 891
  6668. +#. Fl_Check_Button* shrink
  6669. +msgid "Sticky History"
  6670. +msgstr "Histórico persistente"
  6671. +
  6672. +#
  6673. +# File: fltk/jwm-popups.cxx, line: 892
  6674. +msgid ""
  6675. +"Should a notification popped up from history be sticky or timeout as if it "
  6676. +"would normally do."
  6677. +msgstr ""
  6678. +"Se um balão de notificação do histórico deve ser persistente ou apagar-se "
  6679. +"como seria normal."
  6680. +
  6681. +#
  6682. +# File: fltk/jwm-popups.cxx, line: 901
  6683. +#. Fl_Check_Button* sticky_history
  6684. +msgid "idle threshold"
  6685. +msgstr "Limite de ausência"
  6686. +
  6687. +#
  6688. +# File: fltk/jwm-popups.cxx, line: 902
  6689. +msgid ""
  6690. +"Don't remove messages, if the user is idle (no mouse or keyboard input) for "
  6691. +"longer than idle_threshold seconds. Set to 0 to disable."
  6692. +msgstr ""
  6693. +"Não remover mensagens se o utilizador estiver ausente (sem actividade do "
  6694. +"rato ou do teclado) por mais tempo que este valor. Definir como 0 para "
  6695. +"desactivar."
  6696. +
  6697. +#
  6698. +# File: fltk/jwm-popups.cxx, line: 911
  6699. +#. Fl_Value_Input* idle_threshold
  6700. +msgid "Show Indicators"
  6701. +msgstr "Mostrar indicadores"
  6702. +
  6703. +#
  6704. +# File: fltk/jwm-popups.cxx, line: 912
  6705. +msgid "Display indicators for URLs (U) and actions (A)"
  6706. +msgstr "Mostrar indicadores para URLs (U) e acções (A)"
  6707. +
  6708. +#
  6709. +# File: fltk/jwm-popups.cxx, line: 920
  6710. +#. Fl_Check_Button* show_indicators
  6711. +msgid "Geometery"
  6712. +msgstr "Geometria"
  6713. +
  6714. +#
  6715. +# File: fltk/jwm-popups.cxx, line: 928
  6716. +#. Fl_Output* geometry
  6717. +msgid "Transparency"
  6718. +msgstr "Transparência"
  6719. +
  6720. +#
  6721. +# File: fltk/jwm-popups.cxx, line: 929
  6722. +# File: fltk/jwm-popups.cxx, line: 940
  6723. +msgid ""
  6724. +"The transparency of the window. Range: [0; 100]. This option will only work "
  6725. +"if a compositing windowmanager is present (e.g. xcompmgr, compiz, etc.)."
  6726. +msgstr ""
  6727. +"A transparência da janela. Intervalo: [0..100]. Esta opção só funciona se um "
  6728. +"gestor de janelas composto estiver presente (e.g. xcompmgr, compiz, etc.)."
  6729. +
  6730. +#
  6731. +# File: fltk/jwm-popups.cxx, line: 953
  6732. +#. trans_slide->value(o->value());
  6733. +#. Fl_Value_Input* transparency
  6734. +msgid "Age threshold"
  6735. +msgstr "Limite de idade"
  6736. +
  6737. +#
  6738. +# File: fltk/jwm-popups.cxx, line: 954
  6739. +msgid "Show age of message if message is older than this ammount in seconds"
  6740. +msgstr ""
  6741. +"Mostrar idade da mensagem se a mensagem tiver mais do que este valor, em "
  6742. +"segundos."
  6743. +
  6744. +#
  6745. +# File: fltk/jwm-popups.cxx, line: 962
  6746. +#. Fl_Value_Input* show_age_threshold
  6747. +msgid "Monitor"
  6748. +msgstr "Monitor"
  6749. +
  6750. +#
  6751. +# File: fltk/jwm-popups.cxx, line: 963
  6752. +msgid "Which monitor should the notifications be displayed on."
  6753. +msgstr "Em que monitor devem ser mostradas as notificações."
  6754. +
  6755. +#
  6756. +# File: fltk/jwm-popups.cxx, line: 971
  6757. +#. Fl_Value_Input* monitor
  6758. +msgid "History Length"
  6759. +msgstr "Tamanho do histórico"
  6760. +
  6761. +#
  6762. +# File: fltk/jwm-popups.cxx, line: 972
  6763. +msgid "Maximum amount of notifications kept in history"
  6764. +msgstr "Máximo número de notificações a manter no histórico."
  6765. +
  6766. +#
  6767. +# File: fltk/jwm-popups.cxx, line: 980
  6768. +#. Fl_Value_Input* history_length
  6769. +msgid "Line Height"
  6770. +msgstr "Altura da linha"
  6771. +
  6772. +#
  6773. +# File: fltk/jwm-popups.cxx, line: 981
  6774. +msgid ""
  6775. +"The height of a single line. If the height is smaller than the font height, "
  6776. +"it will get raised to the font height. This adds empty space above and under "
  6777. +"the text."
  6778. +msgstr ""
  6779. +"A altura de uma única linha. Se for menor que a altura da letra, será "
  6780. +"igualada à altura da letra. Adiciona espaço acima e abaixo do texto."
  6781. +
  6782. +#
  6783. +# File: fltk/jwm-popups.cxx, line: 991
  6784. +#. Fl_Value_Input* line_height
  6785. +msgid "Separator Height"
  6786. +msgstr "Altura do separador"
  6787. +
  6788. +#
  6789. +# File: fltk/jwm-popups.cxx, line: 992
  6790. +msgid ""
  6791. +"Draw a line of this pixel height between two notifications. Set to 0 to "
  6792. +"disable."
  6793. +msgstr ""
  6794. +"Desenha uma linha com estes pixels de altura entre duas notificações. Defina "
  6795. +"como 0 para desactivar."
  6796. +
  6797. +#
  6798. +# File: fltk/jwm-popups.cxx, line: 1001
  6799. +#. Fl_Value_Input* separator_height
  6800. +msgid "Text Padding"
  6801. +msgstr "Espaço do texto"
  6802. +
  6803. +#
  6804. +# File: fltk/jwm-popups.cxx, line: 1002
  6805. +# File: fltk/jwm-popups.cxx, line: 1011
  6806. +msgid "Padding between text and separator."
  6807. +msgstr "Espaço entre o texto e o separador."
  6808. +
  6809. +#
  6810. +# File: fltk/jwm-popups.cxx, line: 1010
  6811. +#. Fl_Value_Input* padding
  6812. +msgid "Horizontal Padding"
  6813. +msgstr "Espaço horizontal"
  6814. +
  6815. +#
  6816. +# File: fltk/jwm-popups.cxx, line: 1020
  6817. +msgid "Choose a color"
  6818. +msgstr "Escolha uma cor"
  6819. +
  6820. +#
  6821. +# File: fltk/jwm-popups.cxx, line: 1025
  6822. +#. Fl_Button* sep_col_b
  6823. +msgid "Startup Notification"
  6824. +msgstr "Notificação de arranque"
  6825. +
  6826. +#
  6827. +# File: fltk/jwm-popups.cxx, line: 1026
  6828. +msgid ""
  6829. +"Print a notification on startup. This is mainly for error detection, since "
  6830. +"dbus (re-)starts dunst automatically after a crash."
  6831. +msgstr ""
  6832. +"Imprimir uma notificação no arranque. Principalmente para detecção de erros, "
  6833. +"uma vez que o dbus(re)inicia o dunst automaticamente após um rebentamento."
  6834. +
  6835. +#
  6836. +# File: fltk/jwm-popups.cxx, line: 1035
  6837. +#. Fl_Check_Button* startup_notification
  6838. +msgid "Dmenu path"
  6839. +msgstr "Caminho do Dmenu"
  6840. +
  6841. +#
  6842. +# File: fltk/jwm-popups.cxx, line: 1043
  6843. +#. Fl_Output* dmenu
  6844. +msgid "Frame"
  6845. +msgstr "Moldura"
  6846. +
  6847. +#
  6848. +# File: fltk/jwm-popups.cxx, line: 1057
  6849. +#. Fl_Value_Input* Frame_width
  6850. +msgid "Color"
  6851. +msgstr "Cor"
  6852. +
  6853. +#
  6854. +# File: fltk/jwm-popups.cxx, line: 1066
  6855. +#. Fl_Button* Frame_color
  6856. +msgid "Shortcuts"
  6857. +msgstr "Atalhos"
  6858. +
  6859. +#
  6860. +# File: fltk/jwm-popups.cxx, line: 1071
  6861. +#. Fl_Box* o
  6862. +msgid "Close"
  6863. +msgstr "Fechar"
  6864. +
  6865. +#
  6866. +# File: fltk/jwm-popups.cxx, line: 1072
  6867. +msgid "Close notification."
  6868. +msgstr "Fechar notificação"
  6869. +
  6870. +#
  6871. +# File: fltk/jwm-popups.cxx, line: 1080
  6872. +#. Fl_Output* close
  6873. +msgid "Close All"
  6874. +msgstr "Fechar todas"
  6875. +
  6876. +#
  6877. +# File: fltk/jwm-popups.cxx, line: 1081
  6878. +msgid "Close all notifications."
  6879. +msgstr "Fechar todas as notificações."
  6880. +
  6881. +#
  6882. +# File: fltk/jwm-popups.cxx, line: 1089
  6883. +#. Fl_Output* close_all
  6884. +msgid "History"
  6885. +msgstr "Histórico"
  6886. +
  6887. +#
  6888. +# File: fltk/jwm-popups.cxx, line: 1090
  6889. +msgid ""
  6890. +"Redisplay last message(s). On the US keyboard layout \"grave\" is normally "
  6891. +"above TAB and left of \"1\"."
  6892. +msgstr ""
  6893. +"Mostrar as últimas mensagens. Na disposição de teclado EUA, \"grave\" está "
  6894. +"acima do tabulador e à esquerda do 1."
  6895. +
  6896. +#
  6897. +# File: fltk/jwm-popups.cxx, line: 1099
  6898. +#. Fl_Output* history
  6899. +msgid "Context"
  6900. +msgstr "Contexto"
  6901. +
  6902. +#
  6903. +# File: fltk/jwm-popups.cxx, line: 1100
  6904. +msgid "Context menu."
  6905. +msgstr "Menu contextual."
  6906. +
  6907. +#
  6908. +# File: fltk/jwm-popups.cxx, line: 1108
  6909. +#. Fl_Output* context
  6910. +msgid "Low Urgency"
  6911. +msgstr "Baixa urgência"
  6912. +
  6913. +#
  6914. +# File: fltk/jwm-popups.cxx, line: 1114
  6915. +# File: fltk/jwm-popups.cxx, line: 1132
  6916. +# File: fltk/jwm-popups.cxx, line: 1147
  6917. +# File: fltk/jwm-popups.cxx, line: 1165
  6918. +# File: fltk/jwm-popups.cxx, line: 1180
  6919. +# File: fltk/jwm-popups.cxx, line: 1198
  6920. +msgid "Background color"
  6921. +msgstr "Cor de fundo"
  6922. +
  6923. +#
  6924. +# File: fltk/jwm-popups.cxx, line: 1123
  6925. +# File: fltk/jwm-popups.cxx, line: 1156
  6926. +# File: fltk/jwm-popups.cxx, line: 1189
  6927. +#. Fl_Button* Low_foreground
  6928. +#. Fl_Button* Norm_foreground
  6929. +#. Fl_Button* Crit_foreground
  6930. +msgid "Timeout"
  6931. +msgstr "Inacção"
  6932. +
  6933. +#
  6934. +# File: fltk/jwm-popups.cxx, line: 1141
  6935. +#. Fl_Button* Low_background
  6936. +msgid "Normal Urgency"
  6937. +msgstr "Urgência normal"
  6938. +
  6939. +#
  6940. +# File: fltk/jwm-popups.cxx, line: 1174
  6941. +#. Fl_Button* Norm_background
  6942. +msgid "Critical Urgency"
  6943. +msgstr "Máxima urgência"
  6944. +
  6945. +#
  6946. +# File: fltk/jwm-popups.cxx, line: 1207
  6947. +#. Fl_Button* Crit_background
  6948. +msgid "Icon Folders"
  6949. +msgstr "Pastas de ícones"
  6950. +
  6951. +#
  6952. +# File: fltk/jwm-popups.cxx, line: 1220
  6953. +#. Fl_Input* icon_folders_input
  6954. +msgid "Browser"
  6955. +msgstr "Navegador"
  6956. +
  6957. +#
  6958. +# File: fltk/jwm-popups.cxx, line: 1221
  6959. +msgid "Browser for opening urls in context menu."
  6960. +msgstr "Navegador para abrir URLs no menu contextual."
  6961. +
  6962. +#
  6963. +# File: fltk/jwm-popups.cxx, line: 1228
  6964. +#. Fl_Output* browser
  6965. +msgid "Icon Alignment"
  6966. +msgstr "Alinhamento do ícone"
  6967. +
  6968. +#
  6969. +# File: fltk/jwm-popups.cxx, line: 1229
  6970. +msgid ""
  6971. +"Alignment of icons. Possible values are \"left\", \"center\" and \"right\"."
  6972. +msgstr ""
  6973. +"Alinhamento de ícones. São valores possíveis \"left\", \"center\" e \"right"
  6974. +"\"."
  6975. +
  6976. +#
  6977. +# File: fltk/jwm-popups.cxx, line: 1243
  6978. +msgid ""
  6979. +"Alignment of Icons. Possible values are \"left\", \"center\" and \"right\"."
  6980. +msgstr ""
  6981. +"Alinhamento de ícones. São valores possíveis \"left\", \"center\" e \"right"
  6982. +"\"."
  6983. +
  6984. +#
  6985. +# File: fltk/jwm-popups.cxx, line: 1249
  6986. +#. Fl_Output* icon_position
  6987. +msgid "Save"
  6988. +msgstr "Gravar"
  6989. +
  6990. +#
  6991. +# File: fltk/jwm-popups.cxx, line: 1250
  6992. +msgid "This will OVERWRITE the current configuration"
  6993. +msgstr "Isto VAI sobrescrever a configuração actual."
  6994. +
  6995. +#
  6996. +# File: fltk/jwm-popups.cxx, line: 1256
  6997. +#. Fl_Button* o
  6998. +msgid "Quit"
  6999. +msgstr "Sair"
  7000. +
  7001. +#
  7002. +# File: fltk/jwm-settings.cxx, line: 4080
  7003. +msgid "Settings Manager"
  7004. +msgstr "Gestor de definições"
  7005. +
  7006. +#
  7007. +# File: fltk/jwm-settings.cxx, line: 4090
  7008. +#. Fl_Button* o
  7009. +msgid "Keyboard"
  7010. +msgstr "Teclado"
  7011. +
  7012. +#
  7013. +# File: fltk/jwm-settings.cxx, line: 4108
  7014. +#. Fl_Button* o
  7015. +msgid "Touchpad"
  7016. +msgstr "Touchpad"
  7017. +
  7018. +#
  7019. +# File: fltk/jwm-settings.cxx, line: 4114
  7020. +#. Fl_Button* o
  7021. +msgid "Fonts"
  7022. +msgstr "Letras"
  7023. +
  7024. +#
  7025. +# File: fltk/jwm-settings.cxx, line: 4120
  7026. +#. Fl_Button* o
  7027. +msgid "Windows"
  7028. +msgstr "Janelas"
  7029. +
  7030. +#
  7031. +# File: fltk/jwm-settings.cxx, line: 4127
  7032. +msgid "This is for Predefined Thems"
  7033. +msgstr "Isto é para temas predefinidos."
  7034. +
  7035. +#
  7036. +# File: fltk/jwm-settings.cxx, line: 4133
  7037. +#. Fl_Button* o
  7038. +msgid "Autostart"
  7039. +msgstr "Início automático"
  7040. +
  7041. +#
  7042. +# File: fltk/jwm-settings.cxx, line: 4139
  7043. +#. Fl_Button* o
  7044. +msgid "Users and Groups"
  7045. +msgstr "Utilizadores e grupos"
  7046. +
  7047. +#
  7048. +# File: fltk/jwm-settings.cxx, line: 4146
  7049. +#. Fl_Button* o
  7050. +msgid "System Details"
  7051. +msgstr "Detalhes do sistema"
  7052. +
  7053. +#
  7054. +# File: fltk/jwm-shutdown.cxx, line: 74
  7055. +# File: fltk/jwm-shutdown.cxx, line: 77
  7056. +msgid "Shutdown"
  7057. +msgstr "Encerrar"
  7058. +
  7059. +#
  7060. +# File: fltk/jwm-shutdown.cxx, line: 84
  7061. +# File: src/jwmrc.cpp, line: 470
  7062. +#. Fl_Button* shut
  7063. +msgid "Restart"
  7064. +msgstr "Reiniciar"
  7065. +
  7066. +#
  7067. +# File: fltk/jwm-shutdown.cxx, line: 91
  7068. +#. Fl_Button* restart
  7069. +msgid "Suspend"
  7070. +msgstr "Suspender"
  7071. +
  7072. +#
  7073. +# File: fltk/jwm-shutdown.cxx, line: 98
  7074. +#. Fl_Button* suspend
  7075. +msgid "Logout"
  7076. +msgstr "Terminar sessão"
  7077. +
  7078. +#
  7079. +# File: fltk/jwm-themes.cxx, line: 92
  7080. +msgid "Change Colors ONLY"
  7081. +msgstr "Alterar SÓ as cores"
  7082. +
  7083. +#
  7084. +# File: fltk/jwm-themes.cxx, line: 93
  7085. +# File: fltk/jwm-themes.cxx, line: 162
  7086. +# File: fltk/jwm-themes.cxx, line: 168
  7087. +# File: fltk/jwm-themes.cxx, line: 185
  7088. +msgid "This will copy your current theme somewhere else"
  7089. +msgstr "Isto copia o seu tema para qualquer outro lado"
  7090. +
  7091. +#
  7092. +# File: fltk/jwm-themes.cxx, line: 101
  7093. +msgid "All the installed system themes"
  7094. +msgstr "Todos os temas de sistema instalados"
  7095. +
  7096. +#
  7097. +# File: fltk/jwm-themes.cxx, line: 113
  7098. +# File: fltk/jwm-window.cxx, line: 2061
  7099. +# File: fltk/jwm-window.cxx, line: 2196
  7100. +#. Fl_Box* button_icon
  7101. +#. Fl_Box* o
  7102. +msgid "Button"
  7103. +msgstr "Botão"
  7104. +
  7105. +#
  7106. +# File: fltk/jwm-themes.cxx, line: 129
  7107. +#. Fl_Box* awin
  7108. +msgid "Window (Active)"
  7109. +msgstr "Janela (activa)"
  7110. +
  7111. +#
  7112. +# File: fltk/jwm-themes.cxx, line: 149
  7113. +#. Fl_Box* iwin2
  7114. +msgid "Window (Inactive)"
  7115. +msgstr "Janela (inactiva)"
  7116. +
  7117. +#
  7118. +# File: fltk/jwm-themes.cxx, line: 161
  7119. +#. Fl_Box* iclose
  7120. +msgid "Save Custom Theme"
  7121. +msgstr "Gravar tema personalizado"
  7122. +
  7123. +#
  7124. +# File: fltk/jwm-themes.cxx, line: 175
  7125. +#. Fl_Button* cancel_button
  7126. +msgid "User Themes"
  7127. +msgstr "Temas do utilizador"
  7128. +
  7129. +#
  7130. +# File: fltk/jwm-themes.cxx, line: 176
  7131. +msgid "This contains all the themes in ~/.themes which MAY NOT be JWM themes"
  7132. +msgstr "Isto contém todos os temas em ~/.themes que PODEM NÃO ser temas JWM"
  7133. +
  7134. +#
  7135. +# File: fltk/jwm-themes.cxx, line: 184
  7136. +#. Fl_Browser* usr_theme
  7137. +msgid "Overwrite Current Theme"
  7138. +msgstr "Sobrescrever tema actual"
  7139. +
  7140. +#
  7141. +# File: fltk/jwm-window.cxx, line: 1865
  7142. +msgid "Add an Option"
  7143. +msgstr "Adicionar uma opção"
  7144. +
  7145. +#
  7146. +# File: fltk/jwm-window.cxx, line: 1884
  7147. +msgid "The Icon Name"
  7148. +msgstr "Nome do ícone"
  7149. +
  7150. +#
  7151. +# File: fltk/jwm-window.cxx, line: 1889
  7152. +#. Fl_Input* icon_value
  7153. +msgid "Opacity"
  7154. +msgstr "Opacidade"
  7155. +
  7156. +#
  7157. +# File: fltk/jwm-window.cxx, line: 1905
  7158. +msgid "Cancel changes"
  7159. +msgstr "Cancelar alterações"
  7160. +
  7161. +#
  7162. +# File: fltk/jwm-window.cxx, line: 1914
  7163. +msgid "Save Changes"
  7164. +msgstr "Gravar alterações"
  7165. +
  7166. +#
  7167. +# File: fltk/jwm-window.cxx, line: 1922
  7168. +#. Fl_Button* o
  7169. +msgid "Layer"
  7170. +msgstr "Camada"
  7171. +
  7172. +#
  7173. +# File: fltk/jwm-window.cxx, line: 1923
  7174. +msgid "Choose a layer"
  7175. +msgstr "Escolha uma camada"
  7176. +
  7177. +#
  7178. +# File: fltk/jwm-window.cxx, line: 1937
  7179. +msgid "The layer this option effects"
  7180. +msgstr "A camada que esta opção afecta"
  7181. +
  7182. +#
  7183. +# File: fltk/jwm-window.cxx, line: 1958
  7184. +msgid "Add Class"
  7185. +msgstr "Adicionar classe"
  7186. +
  7187. +#
  7188. +# File: fltk/jwm-window.cxx, line: 1960
  7189. +msgid "Class to Add"
  7190. +msgstr "Classe a adicionar"
  7191. +
  7192. +#
  7193. +# File: fltk/jwm-window.cxx, line: 1980
  7194. +msgid "Program to add"
  7195. +msgstr "Programa a adicionar"
  7196. +
  7197. +#
  7198. +# File: fltk/jwm-window.cxx, line: 1994
  7199. +#. Fl_Button* o
  7200. +msgid "Program @+"
  7201. +msgstr "Programa @+"
  7202. +
  7203. +#
  7204. +# File: fltk/jwm-window.cxx, line: 2007
  7205. +# File: fltk/jwm-window.cxx, line: 3015
  7206. +msgid "Add Item"
  7207. +msgstr "Adicionar item"
  7208. +
  7209. +#
  7210. +# File: fltk/jwm-window.cxx, line: 2009
  7211. +# File: fltk/jwm-window.cxx, line: 2143
  7212. +msgid "Button Action"
  7213. +msgstr "Acção do botão"
  7214. +
  7215. +#
  7216. +# File: fltk/jwm-window.cxx, line: 2010
  7217. +# File: fltk/jwm-window.cxx, line: 2144
  7218. +msgid "Typically the left button"
  7219. +msgstr "Tipicamente o botão esquerdo"
  7220. +
  7221. +#
  7222. +# File: fltk/jwm-window.cxx, line: 2024
  7223. +# File: fltk/jwm-window.cxx, line: 2158
  7224. +msgid "The mouse button you click"
  7225. +msgstr "O botão do rato com que clica"
  7226. +
  7227. +#
  7228. +# File: fltk/jwm-window.cxx, line: 2029
  7229. +# File: fltk/jwm-window.cxx, line: 2164
  7230. +msgid "The part of the window you click"
  7231. +msgstr "A parte da janela onde clica"
  7232. +
  7233. +#
  7234. +# File: fltk/jwm-window.cxx, line: 2059
  7235. +# File: fltk/jwm-window.cxx, line: 2194
  7236. +#. Fl_Button* o
  7237. +msgid "OR program"
  7238. +msgstr "OU programa"
  7239. +
  7240. +#
  7241. +# File: fltk/jwm-window.cxx, line: 2062
  7242. +# File: fltk/jwm-window.cxx, line: 2197
  7243. +msgid ""
  7244. +"Negative values are for Button Release, positive are for Click. Double "
  7245. +"values are Double Click."
  7246. +msgstr ""
  7247. +"Valores negativos são para LARGAR botão, positivos são para PREMIR botão. "
  7248. +"Valores duplos são para duplo clique."
  7249. +
  7250. +#
  7251. +# File: fltk/jwm-window.cxx, line: 2077
  7252. +# File: fltk/jwm-window.cxx, line: 2212
  7253. +msgid "The action to perform"
  7254. +msgstr "A acção a realizar"
  7255. +
  7256. +#
  7257. +# File: fltk/jwm-window.cxx, line: 2081
  7258. +# File: fltk/jwm-window.cxx, line: 2217
  7259. +#. Fl_Input* action_input
  7260. +#. Fl_Input* value_1
  7261. +msgid "Modifier"
  7262. +msgstr "Modificador"
  7263. +
  7264. +#
  7265. +# File: fltk/jwm-window.cxx, line: 2082
  7266. +# File: fltk/jwm-window.cxx, line: 2218
  7267. +msgid "The modifier key"
  7268. +msgstr "A chave modificadora"
  7269. +
  7270. +#
  7271. +# File: fltk/jwm-window.cxx, line: 2107
  7272. +msgid ""
  7273. +"m Maximize button\n"
  7274. +"i Minimize (iconify) button\n"
  7275. +"t Window title\n"
  7276. +"w Window menu button\n"
  7277. +"x Close button"
  7278. +msgstr ""
  7279. +"m - botão Maximizar \n"
  7280. +"i - botão Minimizar \n"
  7281. +"t - título da janela \n"
  7282. +"w - botão de menu da janela\n"
  7283. +"x - botão de fecho "
  7284. +
  7285. +#
  7286. +# File: fltk/jwm-window.cxx, line: 2109
  7287. +msgid ""
  7288. +"Title Button Order\n"
  7289. +"\n"
  7290. +"m Maximize button\n"
  7291. +"i Minimize (iconify) button\n"
  7292. +"t Window title\n"
  7293. +"w Window menu button\n"
  7294. +"x Close button"
  7295. +msgstr ""
  7296. +"Ordem dos botões do título\n"
  7297. +"\n"
  7298. +"m - botão Maximizar \n"
  7299. +"i - botão Minimizar \n"
  7300. +"t - título da janela \n"
  7301. +"w - botão de menu da janela\n"
  7302. +"x - botão de fecho "
  7303. +
  7304. +#
  7305. +# File: fltk/jwm-window.cxx, line: 2163
  7306. +#. Fl_Output* button
  7307. +msgid "Item to configure"
  7308. +msgstr "Item a configurar"
  7309. +
  7310. +#
  7311. +# File: fltk/jwm-window.cxx, line: 2229
  7312. +msgid "Widget theme"
  7313. +msgstr "Tema do widget"
  7314. +
  7315. +#
  7316. +# File: fltk/jwm-window.cxx, line: 2232
  7317. +# File: fltk/jwm-window.cxx, line: 2233
  7318. +# File: fltk/jwm-window.cxx, line: 2249
  7319. +# File: fltk/jwm-window.cxx, line: 2930
  7320. +msgid "You will need to close any open windows to see the change"
  7321. +msgstr "Terá de fechar quaisquer janelas abertas para ver as alterações"
  7322. +
  7323. +#
  7324. +# File: fltk/jwm-window.cxx, line: 2267
  7325. +msgid "Window Settings"
  7326. +msgstr "Definições da janela"
  7327. +
  7328. +#
  7329. +# File: fltk/jwm-window.cxx, line: 2279
  7330. +# File: fltk/jwm-window.cxx, line: 2293
  7331. +msgid ""
  7332. +"The color of the title bar (gradients are supported). The default is "
  7333. +"#CC7700:#884400."
  7334. +msgstr ""
  7335. +"A cor da barra de título (são suportadas gradações). A predefinição é "
  7336. +"#CC7700:#884400."
  7337. +
  7338. +#
  7339. +# File: fltk/jwm-window.cxx, line: 2284
  7340. +#. Fl_Box* o
  7341. +msgid "Active Window"
  7342. +msgstr "Janela activa"
  7343. +
  7344. +#
  7345. +# File: fltk/jwm-window.cxx, line: 2289
  7346. +# File: fltk/jwm-window.cxx, line: 2367
  7347. +#. Fl_Box* o
  7348. +msgid "Title bar"
  7349. +msgstr "Barra de título"
  7350. +
  7351. +#
  7352. +# File: fltk/jwm-window.cxx, line: 2292
  7353. +# File: fltk/jwm-window.cxx, line: 2370
  7354. +#. Fl_Box* o
  7355. +msgid "Color 1"
  7356. +msgstr "Cor 1"
  7357. +
  7358. +#
  7359. +# File: fltk/jwm-window.cxx, line: 2301
  7360. +# File: fltk/jwm-window.cxx, line: 2380
  7361. +#. Fl_Button* a_title_color1
  7362. +#. Fl_Button* inactive_color
  7363. +msgid "Color 2"
  7364. +msgstr "Cor 2"
  7365. +
  7366. +#
  7367. +# File: fltk/jwm-window.cxx, line: 2302
  7368. +# File: fltk/jwm-window.cxx, line: 2314
  7369. +msgid ""
  7370. +"The color of the text and buttons in the title bar. The default is "
  7371. +"white."
  7372. +msgstr ""
  7373. +"A cor do texto e dos botões na barra de título. A predefinição é branco."
  7374. +
  7375. +#
  7376. +# File: fltk/jwm-window.cxx, line: 2310
  7377. +# File: fltk/jwm-window.cxx, line: 2390
  7378. +#. Fl_Button* a_title_color2
  7379. +#. Fl_Button* inactive_color2
  7380. +msgid "Font Color"
  7381. +msgstr "Cor da letra"
  7382. +
  7383. +#
  7384. +# File: fltk/jwm-window.cxx, line: 2322
  7385. +# File: fltk/jwm-window.cxx, line: 2402
  7386. +#. Fl_Button* a_font_color
  7387. +#. Fl_Button* inactive_font_color
  7388. +msgid "Border Color"
  7389. +msgstr "Cor do contorno"
  7390. +
  7391. +#
  7392. +# File: fltk/jwm-window.cxx, line: 2326
  7393. +msgid ""
  7394. +"The color of the window outline. The default is a darkened version of the "
  7395. +"window background."
  7396. +msgstr ""
  7397. +"A cor do contorno da janela. A predefinição é uma versão mais escura do "
  7398. +"fundo da janela."
  7399. +
  7400. +#
  7401. +# File: fltk/jwm-window.cxx, line: 2334
  7402. +#. Fl_Button* a_border_color
  7403. +msgid "Opacity "
  7404. +msgstr "Opacidade "
  7405. +
  7406. +#
  7407. +# File: fltk/jwm-window.cxx, line: 2362
  7408. +#. Fl_Box* o
  7409. +msgid "Background Window"
  7410. +msgstr "Janela em 2º plano"
  7411. +
  7412. +#
  7413. +# File: fltk/jwm-window.cxx, line: 2371
  7414. +# File: fltk/jwm-window.cxx, line: 2381
  7415. +msgid ""
  7416. +"The color of the title bar (gradients are supported) of inactive windows. "
  7417. +"The default is #333333:#111111."
  7418. +msgstr ""
  7419. +"A cor da barra de título (são suportadas gradações) de janelas inactivas. A "
  7420. +"predefinição é #333333:#111111."
  7421. +
  7422. +#
  7423. +# File: fltk/jwm-window.cxx, line: 2394
  7424. +msgid ""
  7425. +"The color of the text and buttons in the title bar of inactive windows. "
  7426. +"The default is white."
  7427. +msgstr ""
  7428. +"A cor do texto e dos botões na barra de título das janelas inactivas. A "
  7429. +"predefinição é branco."
  7430. +
  7431. +#
  7432. +# File: fltk/jwm-window.cxx, line: 2406
  7433. +msgid ""
  7434. +"The color of the window outline for inactive windows. The default is "
  7435. +"a darkened version of the window background."
  7436. +msgstr ""
  7437. +"A cor do contorno das janelas inactivas. A predefinição é uma versão mais "
  7438. +"escura do fundo da janela."
  7439. +
  7440. +#
  7441. +# File: fltk/jwm-window.cxx, line: 2414
  7442. +#. Fl_Button* inactive_border_color
  7443. +msgid "Opacity "
  7444. +msgstr "Opacidade "
  7445. +
  7446. +#
  7447. +# File: fltk/jwm-window.cxx, line: 2438
  7448. +#. Fl_Value_Input* inactive_o_slider_v
  7449. +msgid "Change the Window Button Images"
  7450. +msgstr "Alterar as imagens dos botões"
  7451. +
  7452. +#
  7453. +# File: fltk/jwm-window.cxx, line: 2443
  7454. +#. Fl_Box* o
  7455. +msgid " Maximize (Activated)"
  7456. +msgstr "Maximizar (activado)"
  7457. +
  7458. +#
  7459. +# File: fltk/jwm-window.cxx, line: 2447
  7460. +msgid ""
  7461. +"Choose an icon to display for the minimize button on client windows instead "
  7462. +"of the default."
  7463. +msgstr ""
  7464. +"Escolha um ícone a mostrar para o botão Minimizar nas janelas, em vez do "
  7465. +"predefinido."
  7466. +
  7467. +#
  7468. +# File: fltk/jwm-window.cxx, line: 2455
  7469. +#. Fl_Button* max_a_image
  7470. +msgid " Maximize"
  7471. +msgstr " Maximizar"
  7472. +
  7473. +#
  7474. +# File: fltk/jwm-window.cxx, line: 2458
  7475. +msgid ""
  7476. +"Choose an icon to display for the maximize button on maximized client "
  7477. +"windows instead of the default."
  7478. +msgstr ""
  7479. +"Escolha um ícone a mostrar para o botão Maximizar nas janelas maximizadas, "
  7480. +"em vez do predefinido."
  7481. +
  7482. +#
  7483. +# File: fltk/jwm-window.cxx, line: 2466
  7484. +#. Fl_Button* max_image
  7485. +msgid " Minimize"
  7486. +msgstr " Minimizar"
  7487. +
  7488. +#
  7489. +# File: fltk/jwm-window.cxx, line: 2469
  7490. +msgid ""
  7491. +"Choose an icon to display for the maximize button on client windows instead "
  7492. +"of the default."
  7493. +msgstr ""
  7494. +"Escolha um ícone a mostrar para o botão Maximizar nas janelas, em vez do "
  7495. +"predefinido."
  7496. +
  7497. +#
  7498. +# File: fltk/jwm-window.cxx, line: 2477
  7499. +#. Fl_Button* min_image
  7500. +msgid " Close"
  7501. +msgstr " Fechar"
  7502. +
  7503. +#
  7504. +# File: fltk/jwm-window.cxx, line: 2480
  7505. +# File: fltk/jwm-window.cxx, line: 2515
  7506. +msgid ""
  7507. +"Choose an icon to display for the close button on client windows instead of "
  7508. +"the default."
  7509. +msgstr ""
  7510. +"Escolha um ícone a mostrar para o botão Fechar nas janelas, em vez do "
  7511. +"predefinido."
  7512. +
  7513. +#
  7514. +# File: fltk/jwm-window.cxx, line: 2489
  7515. +# File: fltk/jwm-window.cxx, line: 2498
  7516. +msgid ""
  7517. +"If motif window decorations are specified, two colors may be given "
  7518. +"separated by a ':' to set the down and up colors respetively."
  7519. +msgstr ""
  7520. +"Se as decorações motif forem escolhidas, pode indicar duas cores, separadas "
  7521. +"por \":\", para definir as cores de baixo e de cima, respectivamente."
  7522. +
  7523. +#
  7524. +# File: fltk/jwm-window.cxx, line: 2506
  7525. +#. Fl_Button* a_border_color2
  7526. +msgid "Button Actions"
  7527. +msgstr "Acções dos botões"
  7528. +
  7529. +#
  7530. +# File: fltk/jwm-window.cxx, line: 2507
  7531. +msgid "Configure buttons for many features"
  7532. +msgstr "Configure os botões escolhendo entre muitas funcionalidades."
  7533. +
  7534. +#
  7535. +# File: fltk/jwm-window.cxx, line: 2514
  7536. +#. Fl_Button* button_actions
  7537. +msgid "Button Order"
  7538. +msgstr "Ordem dos botões"
  7539. +
  7540. +#
  7541. +# File: fltk/jwm-window.cxx, line: 2525
  7542. +#. Fl_Group* o
  7543. +msgid "Settings"
  7544. +msgstr "Definições"
  7545. +
  7546. +#
  7547. +# File: fltk/jwm-window.cxx, line: 2528
  7548. +# File: fltk/jwm-window.cxx, line: 2801
  7549. +#. Fl_Value_Output* a_b_slider_v
  7550. +msgid "Window Title Bar Size"
  7551. +msgstr "Tamanho da barra de título"
  7552. +
  7553. +#
  7554. +# File: fltk/jwm-window.cxx, line: 2529
  7555. +# File: fltk/jwm-window.cxx, line: 2545
  7556. +msgid "This is the top with the program name, and close button, etc.."
  7557. +msgstr "Esta é a barra de topo, com o nome do programa, botões, etc.."
  7558. +
  7559. +#
  7560. +# File: fltk/jwm-window.cxx, line: 2554
  7561. +#. Fl_Value_Input* t_slider_v
  7562. +msgid "Size of the Window Frame"
  7563. +msgstr "Tamanho da moldura"
  7564. +
  7565. +#
  7566. +# File: fltk/jwm-window.cxx, line: 2555
  7567. +# File: fltk/jwm-window.cxx, line: 2572
  7568. +msgid ""
  7569. +"This makes the edges of the window larger or smaller to help you grab them "
  7570. +"more easily"
  7571. +msgstr ""
  7572. +"Isto torna as margens da janela maiores ou menores, para ajudar a agarrá-la "
  7573. +"mais facilmente."
  7574. +
  7575. +#
  7576. +# File: fltk/jwm-window.cxx, line: 2582
  7577. +#. Fl_Value_Input* b_slider_v
  7578. +msgid "Choose how the Window comes to the front of the screen"
  7579. +msgstr "Escolha como a janela vem para o primaeiro plano do ecrã."
  7580. +
  7581. +#
  7582. +# File: fltk/jwm-window.cxx, line: 2583
  7583. +msgid "This determines how windows are brought to the front"
  7584. +msgstr "Isto determina como a janela é trazida para a frente das outras."
  7585. +
  7586. +#
  7587. +# File: fltk/jwm-window.cxx, line: 2604
  7588. +#. Fl_Menu_Button* focus_menu
  7589. +msgid "Appearance of the Window while Resizing"
  7590. +msgstr "Aparência da janela ao redimensionar"
  7591. +
  7592. +#
  7593. +# File: fltk/jwm-window.cxx, line: 2605
  7594. +msgid "What the windows look like while resizing"
  7595. +msgstr "Como é que as janelas se parecem enquanto são redimensionadas."
  7596. +
  7597. +#
  7598. +# File: fltk/jwm-window.cxx, line: 2620
  7599. +#. Fl_Menu_Button* resize_menu
  7600. +msgid "Appearance of Window while Moving"
  7601. +msgstr "Aparência da janela ao mover"
  7602. +
  7603. +#
  7604. +# File: fltk/jwm-window.cxx, line: 2621
  7605. +msgid "What the windows look like while moving"
  7606. +msgstr "Como é que as janelas se parecem enquanto são movidas."
  7607. +
  7608. +#
  7609. +# File: fltk/jwm-window.cxx, line: 2636
  7610. +#. Fl_Menu_Button* move_menu
  7611. +msgid "Choose what the Windows will snap to"
  7612. +msgstr "Escolha para onde é que a janela é atraída"
  7613. +
  7614. +#
  7615. +# File: fltk/jwm-window.cxx, line: 2637
  7616. +msgid "This determines how windows 'Snap' to other windows, and screen edges"
  7617. +msgstr ""
  7618. +"Isto determina como é que as janelas são atraídas para outras janelas e "
  7619. +"margens."
  7620. +
  7621. +#
  7622. +# File: fltk/jwm-window.cxx, line: 2652
  7623. +#. Fl_Menu_Button* snap_menu
  7624. +msgid "How close (in pixels) does the window need to be to snap?"
  7625. +msgstr "Quão perto (em pixels) é que a janela tem de estar para ser atraída?"
  7626. +
  7627. +#
  7628. +# File: fltk/jwm-window.cxx, line: 2665
  7629. +#. Fl_Value_Input* snap_int
  7630. +msgid "Size of Corner"
  7631. +msgstr "Raio do canto"
  7632. +
  7633. +#
  7634. +# File: fltk/jwm-window.cxx, line: 2666
  7635. +msgid ""
  7636. +"The corner width of the window border for rounded window borders. The "
  7637. +"default is 4, the minimum is 0 (rectangular), and the maximum is 5 (most "
  7638. +"rounded)."
  7639. +msgstr ""
  7640. +"O raio do canto do contorno da janela, para cantos arredondados. A "
  7641. +"predefinição é 4, o mínimo é 0 (rectangular) e o máximo é 5 (mais redondo)."
  7642. +
  7643. +#
  7644. +# File: fltk/jwm-window.cxx, line: 2681
  7645. +#. Fl_Group* o
  7646. +msgid "Groups"
  7647. +msgstr "Grupos"
  7648. +
  7649. +#
  7650. +# File: fltk/jwm-window.cxx, line: 2684
  7651. +msgid "Current Groups"
  7652. +msgstr "Grupos actuais"
  7653. +
  7654. +#
  7655. +# File: fltk/jwm-window.cxx, line: 2685
  7656. +msgid ""
  7657. +"Program groups allow one to specify options which apply to a group of "
  7658. +"programs by their name and/or class. A program group is created with the "
  7659. +"Group tag. As many program groups can be created as desired."
  7660. +msgstr ""
  7661. +"Grupos de programas permitem especificar opções que se aplicam a um grupo de "
  7662. +"programas pelo seu nome e/ou classe. Um grupo de programas é criado com o "
  7663. +"rótulo do grupo. Pode criar tantos grupos quantos desejar."
  7664. +
  7665. +#
  7666. +# File: fltk/jwm-window.cxx, line: 2695
  7667. +msgid "Add a new group of options for windows"
  7668. +msgstr "Adiciona um novo grupo de opções para janelas."
  7669. +
  7670. +#
  7671. +# File: fltk/jwm-window.cxx, line: 2701
  7672. +msgid "Remove ENTIRE selected group"
  7673. +msgstr "Remove TODO o grupo seleccionado."
  7674. +
  7675. +#
  7676. +# File: fltk/jwm-window.cxx, line: 2707
  7677. +#. Fl_Button* rm_group
  7678. +msgid "Current Options"
  7679. +msgstr "Opções actuais"
  7680. +
  7681. +#
  7682. +# File: fltk/jwm-window.cxx, line: 2708
  7683. +msgid "Window specific options"
  7684. +msgstr "Opções específicas da janela."
  7685. +
  7686. +#
  7687. +# File: fltk/jwm-window.cxx, line: 2714
  7688. +msgid "Add a new option to the current group"
  7689. +msgstr "Adiciona uma nova opção ao grupo actual."
  7690. +
  7691. +#
  7692. +# File: fltk/jwm-window.cxx, line: 2720
  7693. +msgid "Remove selected option"
  7694. +msgstr "Remove a opção seleccionada"
  7695. +
  7696. +#
  7697. +# File: fltk/jwm-window.cxx, line: 2726
  7698. +#. Fl_Button* rm_opt
  7699. +msgid "Program Name"
  7700. +msgstr "Nome do programa"
  7701. +
  7702. +#
  7703. +# File: fltk/jwm-window.cxx, line: 2727
  7704. +msgid "Programs that are effected by the options"
  7705. +msgstr "Programas que são afectados pelas opções."
  7706. +
  7707. +#
  7708. +# File: fltk/jwm-window.cxx, line: 2733
  7709. +msgid "Add a program effected by the option"
  7710. +msgstr "Adiciona um programa afectado pela opção"
  7711. +
  7712. +#
  7713. +# File: fltk/jwm-window.cxx, line: 2739
  7714. +msgid "Remove selected Program name"
  7715. +msgstr "Remove o programa seleccionado"
  7716. +
  7717. +#
  7718. +# File: fltk/jwm-window.cxx, line: 2745
  7719. +#. Fl_Button* rm_prog
  7720. +msgid "Window Class"
  7721. +msgstr "Classe da janela"
  7722. +
  7723. +#
  7724. +# File: fltk/jwm-window.cxx, line: 2746
  7725. +msgid "Window classes that effected by the options"
  7726. +msgstr "Classes de janela que são afectadas pela opção"
  7727. +
  7728. +#
  7729. +# File: fltk/jwm-window.cxx, line: 2752
  7730. +msgid "Add a new Window class effected by the option"
  7731. +msgstr "Adiciona uma nova classe de janela afectada pela opção"
  7732. +
  7733. +#
  7734. +# File: fltk/jwm-window.cxx, line: 2758
  7735. +msgid "Remove selected Window Class"
  7736. +msgstr "Remove a classe de janela seleccionada"
  7737. +
  7738. +#
  7739. +# File: fltk/jwm-window.cxx, line: 2769
  7740. +msgid "Window Border Size"
  7741. +msgstr "Tamanho do contorno"
  7742. +
  7743. +#
  7744. +# File: fltk/jwm-window.cxx, line: 2770
  7745. +# File: fltk/jwm-window.cxx, line: 2787
  7746. +msgid ""
  7747. +"The width of window borders in pixels. The default is 4, the minimum is 1, "
  7748. +"and the maximum is 128."
  7749. +msgstr ""
  7750. +"A largura do contorno da janela, em pixels. A predefinição é 4, o mínimo é 1 "
  7751. +"e o máximo é 128."
  7752. +
  7753. +#
  7754. +# File: fltk/jwm-window.cxx, line: 2802
  7755. +# File: fltk/jwm-window.cxx, line: 2819
  7756. +msgid ""
  7757. +"The height of window title bars in pixels. By default this is set to the "
  7758. +"size of the title font. The minimum is 1, and the maximum is 256."
  7759. +msgstr ""
  7760. +"A altura das barras de título das janelas, em pixels. Por predefinição, está "
  7761. +"definida para a altura da letra do título. O mínimo é 1 e o máximo é 256."
  7762. +
  7763. +#
  7764. +# File: fltk/jwm-window.cxx, line: 2832
  7765. +#. Fl_Value_Output* a_t_slider_v
  7766. +msgid "This can make your window borders and Title bar"
  7767. +msgstr "Isto pode tornar o contorno e a barra de título"
  7768. +
  7769. +#
  7770. +# File: fltk/jwm-window.cxx, line: 2834
  7771. +#. Fl_Box* o
  7772. +msgid "REALLY HUGE!"
  7773. +msgstr "ENORMES!"
  7774. +
  7775. +#
  7776. +# File: fltk/jwm-window.cxx, line: 2838
  7777. +#. Fl_Box* o
  7778. +msgid "Default Menu Button Icon"
  7779. +msgstr "Ícone do botão do menu"
  7780. +
  7781. +#
  7782. +# File: fltk/jwm-window.cxx, line: 2839
  7783. +msgid ""
  7784. +"An icon to display for the menu button on client windows instead of the "
  7785. +"default. This is used for client windows that do not specify an icon."
  7786. +msgstr ""
  7787. +"O ícone a mostrar para o botão do menu na janela, em vez do predefinido. É "
  7788. +"utilizado em janelas que não especificam um ícone."
  7789. +
  7790. +#
  7791. +# File: fltk/jwm-window.cxx, line: 2846
  7792. +msgid ""
  7793. +"Default Menu Button Icon. An icon to display for the menu button on client "
  7794. +"windows instead of the default. This is used for client windows that do "
  7795. +"not specify an icon."
  7796. +msgstr ""
  7797. +"Ícone predefinido do botão do menu - o ícone a mostrar para o botão do menu "
  7798. +"na janela, em vez do predefinido. É utilizado em janelas que não especificam "
  7799. +"um ícone."
  7800. +
  7801. +#
  7802. +# File: fltk/jwm-window.cxx, line: 2854
  7803. +#. Fl_Button* default_icon_button
  7804. +msgid "Default Window Icon"
  7805. +msgstr "Ícone predefinido da janela"
  7806. +
  7807. +#
  7808. +# File: fltk/jwm-window.cxx, line: 2855
  7809. +msgid "An icon to display for windows that do not specify an icon."
  7810. +msgstr "O ícone a mostrar em janelas que não especificam um ícone."
  7811. +
  7812. +#
  7813. +# File: fltk/jwm-window.cxx, line: 2861
  7814. +msgid ""
  7815. +"Default Window Icon. An icon to display for windows that do not "
  7816. +"specify an icon."
  7817. +msgstr ""
  7818. +"Ícone predefinido da janela - o ícone a mostrar em janelas que não "
  7819. +"especificam um ícone."
  7820. +
  7821. +#
  7822. +# File: fltk/jwm-window.cxx, line: 2868
  7823. +#. Fl_Button* default_icon_button_win
  7824. +msgid "title decorations"
  7825. +msgstr "Decorações do título"
  7826. +
  7827. +#
  7828. +# File: fltk/jwm-window.cxx, line: 2888
  7829. +#. Fl_Output* decorations
  7830. +msgid "border decorations"
  7831. +msgstr "Decorações do contorno"
  7832. +
  7833. +#
  7834. +# File: fltk/jwm-window.cxx, line: 2929
  7835. +#. Fl_Button* o
  7836. +msgid "Change GTK Widget theme"
  7837. +msgstr "Alterar tema dos widgets GTK"
  7838. +
  7839. +#
  7840. +# File: fltk/jwm-window.cxx, line: 2947
  7841. +msgid "Window Actions"
  7842. +msgstr "Acções da janela"
  7843. +
  7844. +#
  7845. +# File: fltk/jwm-window.cxx, line: 2951
  7846. +msgid "The close button on a window."
  7847. +msgstr "O botão Fechar numa janela."
  7848. +
  7849. +#
  7850. +# File: fltk/jwm-window.cxx, line: 2958
  7851. +# File: fltk/jwm-window.cxx, line: 2966
  7852. +msgid "The maximize button on a window."
  7853. +msgstr "O botão Maximizar numa janela."
  7854. +
  7855. +#
  7856. +# File: fltk/jwm-window.cxx, line: 2973
  7857. +#. Fl_Button* context_maximize
  7858. +msgid "Title Bar"
  7859. +msgstr "Barra de título"
  7860. +
  7861. +#
  7862. +# File: fltk/jwm-window.cxx, line: 2974
  7863. +msgid "The title bar of a window."
  7864. +msgstr "A barra de título de uma janela."
  7865. +
  7866. +#
  7867. +# File: fltk/jwm-window.cxx, line: 2983
  7868. +msgid "The icon button on a window."
  7869. +msgstr "O botão ícone numa janela."
  7870. +
  7871. +#
  7872. +# File: fltk/jwm-window.cxx, line: 2991
  7873. +#. Fl_Button* context_icon
  7874. +msgid "Border"
  7875. +msgstr "Contorno"
  7876. +
  7877. +#
  7878. +# File: fltk/jwm-window.cxx, line: 2992
  7879. +msgid "The window border."
  7880. +msgstr "O contorno da janela."
  7881. +
  7882. +#
  7883. +# File: fltk/jwm-window.cxx, line: 2999
  7884. +msgid "The title bar of a window"
  7885. +msgstr "A barra de título de uma janela."
  7886. +
  7887. +#
  7888. +# File: fltk/jwm-window.cxx, line: 3005
  7889. +#. Fl_Button* context_root
  7890. +msgid "Button Action Modifier"
  7891. +msgstr "Botão Acção Modificador"
  7892. +
  7893. +#
  7894. +# File: fltk/jwm-window.cxx, line: 3030
  7895. +msgid "Remove Item"
  7896. +msgstr "Remover item"
  7897. +
  7898. +#
  7899. +# File: src/desktop.cpp, line: 122
  7900. +msgid "Choose a Background"
  7901. +msgstr "Escolha um fundo"
  7902. +
  7903. +#
  7904. +# File: src/desktop.cpp, line: 154
  7905. +msgid "Solid Color"
  7906. +msgstr "Cor sólida"
  7907. +
  7908. +#
  7909. +# File: src/desktop.cpp, line: 155
  7910. +msgid "Color Gradient"
  7911. +msgstr "Gradação de cor"
  7912. +
  7913. +#
  7914. +# File: src/fltkfunctions.cpp, line: 41
  7915. +# File: src/fltkfunctions.cpp, line: 69
  7916. +msgid "Choose Directory"
  7917. +msgstr "Escolha a pasta"
  7918. +
  7919. +#
  7920. +# File: src/fltkfunctions.cpp, line: 89
  7921. +msgid "Save as "
  7922. +msgstr "Gravar como"
  7923. +
  7924. +#
  7925. +# File: src/fltkfunctions.cpp, line: 100
  7926. +# File: src/fltkfunctions.cpp, line: 108
  7927. +# File: src/fltkfunctions.cpp, line: 117
  7928. +msgid "Choose a File"
  7929. +msgstr "Escolha o ficheiro"
  7930. +
  7931. +#
  7932. +# File: src/fltkfunctions.cpp, line: 168
  7933. +# File: src/themes.cpp, line: 341
  7934. +msgid "Choose"
  7935. +msgstr "Escolha"
  7936. +
  7937. +#
  7938. +# File: src/fltkfunctions.cpp, line: 247
  7939. +msgid "Choose a Color"
  7940. +msgstr "Escolha uma cor"
  7941. +
  7942. +#
  7943. +# File: src/jwmrc.cpp, line: 462
  7944. +msgid "Sub Menu"
  7945. +msgstr "Sub-menu"
  7946. +
  7947. +#
  7948. +# File: src/jwmrc.cpp, line: 466
  7949. +msgid "Separator"
  7950. +msgstr "Separador"
  7951. +
  7952. +#
  7953. +# File: src/jwmrc.cpp, line: 474
  7954. +msgid "Desktop List"
  7955. +msgstr "Lista de áreas de trabalho"
  7956. +
  7957. +#
  7958. +# File: src/jwmrc.cpp, line: 478
  7959. +msgid "Send To Desktop Menu"
  7960. +msgstr "Enviar para o menu da área"
  7961. +
  7962. +#
  7963. +# File: src/jwmrc.cpp, line: 482
  7964. +msgid "Sticky state of Window"
  7965. +msgstr "Estado persistente da janela"
  7966. +
  7967. +#
  7968. +# File: src/jwmrc.cpp, line: 486
  7969. +msgid "Maximize window"
  7970. +msgstr "Maximizar janela"
  7971. +
  7972. +#
  7973. +# File: src/jwmrc.cpp, line: 490
  7974. +msgid "Minimize window"
  7975. +msgstr "Minimizar janela"
  7976. +
  7977. +#
  7978. +# File: src/jwmrc.cpp, line: 494
  7979. +msgid "Shade window"
  7980. +msgstr "Sombrear janela"
  7981. +
  7982. +#
  7983. +# File: src/jwmrc.cpp, line: 498
  7984. +msgid "Move window"
  7985. +msgstr "Mover janela"
  7986. +
  7987. +#
  7988. +# File: src/jwmrc.cpp, line: 502
  7989. +msgid "Resize window"
  7990. +msgstr "Redimensionar janela"
  7991. +
  7992. +#
  7993. +# File: src/jwmrc.cpp, line: 506
  7994. +msgid "Kill window"
  7995. +msgstr "Matar janela"
  7996. +
  7997. +#
  7998. +# File: src/jwmrc.cpp, line: 510
  7999. +msgid "Close window"
  8000. +msgstr "Fechar janela"
  8001. +
  8002. +#
  8003. +# File: src/jwmrc.cpp, line: 514
  8004. +msgid "Exit"
  8005. +msgstr "Sair"
  8006. +
  8007. +#
  8008. +# File: src/keyboard.cpp, line: 404
  8009. +msgid "read input command did not return 0"
  8010. +msgstr "comando de entrada não devolveu 0"
  8011. +
  8012. +#
  8013. +# File: src/panel.cpp, line: 415
  8014. +msgid "Day"
  8015. +msgstr "Dia"
  8016. +
  8017. +#
  8018. +# File: src/panel.cpp, line: 416
  8019. +msgid "12"
  8020. +msgstr "12"
  8021. +
  8022. +#
  8023. +# File: src/panel.cpp, line: 417
  8024. +msgid "24"
  8025. +msgstr "24"
  8026. +
  8027. +#
  8028. +# File: src/panel.cpp, line: 418
  8029. +msgid "Year"
  8030. +msgstr "Ano"
  8031. +
  8032. +#
  8033. +# File: src/panel.cpp, line: 645
  8034. +msgid "Program Launcher"
  8035. +msgstr "Lançador de programa"
  8036. +
  8037. +#
  8038. +# File: src/themes.cpp, line: 38
  8039. +msgid "Save File"
  8040. +msgstr "Gravar ficheiro"
  8041. === modified file 'usr/share/locale/es/LC_MESSAGES/jwm-settings-manager.mo'
  8042. Binary files usr/share/locale/es/LC_MESSAGES/jwm-settings-manager.mo and usr/share/locale/es/LC_MESSAGES/jwm-settings-manager.mo differ
  8043. === modified file 'usr/share/locale/fr/LC_MESSAGES/jwm-settings-manager.mo'
  8044. Binary files usr/share/locale/fr/LC_MESSAGES/jwm-settings-manager.mo and usr/share/locale/fr/LC_MESSAGES/jwm-settings-manager.mo differ
  8045. === modified file 'usr/share/locale/ms/LC_MESSAGES/jwm-settings-manager.mo'
  8046. Binary files usr/share/locale/ms/LC_MESSAGES/jwm-settings-manager.mo and usr/share/locale/ms/LC_MESSAGES/jwm-settings-manager.mo differ
  8047. === added directory 'usr/share/locale/pt'
  8048. === added directory 'usr/share/locale/pt/LC_MESSAGES'
  8049. === added file 'usr/share/locale/pt/LC_MESSAGES/jwm-settings-manager.mo'
  8050. Binary files usr/share/locale/pt/LC_MESSAGES/jwm-settings-manager.mo and usr/share/locale/pt/LC_MESSAGES/jwm-settings-manager.mo differ