| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753 |
- const wcagObj = {
- criterion : [
- { // 1.1.1.
- "criteria" :
- {
- "cat" : "1.1.1 Contingut no textual",
- "es" : "1.1.1 Contenido no textual",
- "en" : "1.1.1 Non-text Content",
- },
- "link" : "https://www.w3.org/TR/WCAG21/#non-text-content",
- "level" : "A",
- "version" : "2.0",
- "goal" :
- {
- "cat" : "Tot el contingut no text que es presenta a l'usuari té una alternativa de text que serveix per a la finalitat equivalent, llevat de les situacions que s'enumeren a continuació.",
- "es" : "Proporcione alternativas de texto para cualquier contenido que no sea de texto para que se pueda cambiar a otras formas que las personas necesiten, como letra grande, braille, habla, símbolos o un lenguaje más simple.",
- "en" : "Provide text alternatives for any non-text content so that it can be changed into other forms people need, such as large print, braille, speech, symbols or simpler language.",
- },
- "intent" :
- {
- "cat" : "Text alternatius són primària per a donar informació accessible perquè es poden renderar a partir d'un any sensory modality (per example, visual, auditori o tàctil) per a la necessitat d'usuari.",
-
- "es" : "Las alternativas de texto son una forma principal de hacer que la información sea accesible porque se pueden presentar a través de cualquier modalidad sensorial (por ejemplo, visual, auditiva o táctil) para satisfacer las necesidades del usuario.",
-
- "en" : "Text alternatives are a primary way for making information accessible because they can be rendered through any sensory modality (for example, visual, auditory or tactile) to match the needs of the user.",
- },
- "benefits" :
- {
- "cat" : "<p>Ajuda les persones que tenen dificultats per percebre el contingut visual.</p><p>Les alternatives de text poden ajudar algunes persones que tenen dificultats per comprendre el significat de fotografies, dibuixos i altres imatges (p. ex., dibuixos lineals, dissenys gràfics, pintures , tres (representacions dimensionals), gràfics, taules, animacions, etc.</p><p>Les persones sordcegues poden llegir el text en braille.</p>",
-
- "es" : "<p>Ayuda a las personas que tienen dificultades para percibir el contenido visual.</p><p>Las alternativas de texto pueden ayudar a algunas personas que tienen dificultades para comprender el significado de fotografías, dibujos y otras imágenes (p. Ej., Dibujos lineales, diseños gráficos, pinturas, tres -representaciones dimensionales), gráficos, tablas, animaciones, etc.</p><p>Las personas sordociegas pueden leer el texto en braille.</p>",
-
- "en" : "<p>Helps people who have difficulty perceiving visual content.</p><p>Text alternatives can help some people who have difficulty understanding the meaning of photographs, drawings, and other images (e.g., line drawings, graphic designs, paintings , three-dimensional representations), graphs, tables, animations, etc.</p><p>Deafblind people can read braille text.</p>",
- },
- "verification" :
- {
- "cat" : "<ul><li>A. Tot contingut no textual ha de tenir una alternativa textual breu que proporcioni la mateixa informació o compleixi el mateix propòsit que el contingut no textual.</li><li>B. Les alternatives textuals s'han d'actualitzar quan canvieu el contingut no textual.</li><li>C. Les imatges incloses des de CSS han de ser purament decoratives i no han d'aportar informació tret que hi hagi alternativa textual a la pàgina.</li><li>D. En els grups d'imatges que transmeten una única informació de forma conjunta es proporciona en una sola de les imatges descrivint tot el grup, deixant la resta com a decoratives.</li><li>E. L'art ASCII, les emoticones i el leetspeak han de disposar d'alternatives textuals immediatament abans o després que transmetin la mateixa informació. Si amb una alternativa textual curta no és suficient per transmetre la mateixa informació o complir el mateix propòsit que el contingut no textual, aleshores a l'alternativa textual curta s'ha de proporcionar una breu descripció del contingut no textual ia més es proporciona una alternativa textual llarga que sí que transmeti la mateixa informació o compleixi el mateix propòsit.</li><li>G. Les imatges que tenen alguna funcionalitat com els enllaços, àrees actives de mapes d'imatge o botons de tipus imatge als formularis, tenen un text alternatiu que n'identifica el propòsit.</li><li>H. Els enllaços acompanyats d'imatges que actuen com a enllaç al mateix recurs han d'estar combinats en un únic enllaç. El contingut d'àudio, vídeo o multimèdia (incloent contingut en directe), els tests o exercicis que podrien ser invàlids si es mostren com a text, així com el contingut la funció principal del qual és produir una experiència sensorial específica (música, quadres, etc.) han de tenir una alternativa textual breu com a etiqueta descriptiva que almenys identifiqui quin és el contingut no textual.</li><li>J. Els CAPTCHA han de disposar d'una alternativa textual que descriu el propòsit del CAPTCHA ia més ha d'existir un CAPTCHA alternatiu que compleix el mateix propòsit però en una modalitat diferent. </li><li>K. Les imatges decoratives han de tenir un text alternatiu buit i no tenir un títol, o bé s'hi inclouen des dels fulls d'estil, de manera que puguin ser ignorats pels productes de suport.</li></ul>",
-
- "es" : "<ul><li>A. Todo contenido no textual debe disponer de una alternativa textual breve que proporcione la misma información o cumpla el mismo propósito que el contenido no textual.</li><li>B. Las alternativas textuales se deben actualizar cuando cambie el contenido no textual.</li><li>C. Las imágenes incluidas desde CSS deben ser puramente decorativas y no deben aportar información a no ser que exista alternativa textual en la página.</li><li>D. En los grupos de imágenes que transmiten una única información de forma conjunta se proporciona en una sola de las imágenes describiendo todo el grupo, dejando el resto como decorativas.</li><li>E. El arte ASCII, los emoticonos y el leetspeak deben disponer de alternativas textuales inmediatamente antes o después que transmitan la misma información.</li><li>F. Si con una alternativa textual corta no es suficiente para transmitir la misma información o cumplir el mismo propósito que el contenido no textual, entonces en la alternativa textual corta se debe proporcionar una breve descripción del contenido no textual y además se proporciona una alternativa textual larga que sí transmita la misma información o cumpla el mismo propósito.</li><li>G. Las imágenes que tienen alguna funcionalidad como los enlaces, áreas activas de mapas de imagen o botones de tipo imagen en los formularios, tienen un texto alternativo que identifica su propósito.</li><li>H. Los enlaces acompañados de imágenes que actúan como enlace al mismo recurso deben estar combinados en un único enlace.</li><li>I. El contenido de audio, vídeo o multimedia (incluyendo contenido en directo), los test o ejercicios que podrían ser inválidos si se muestran como texto, así como el contenido cuya función principal es producir una experiencia sensorial específica (música, cuadros, etc.) deben tener una alternativa textual breve a modo de etiqueta descriptiva que al menos identifique cuál es el contenido no textual.</li><li>J. Los CAPTCHAs deben disponer de una alternativa textual que describe el propósito del CAPTCHA y además debe existir un CAPTCHA alternativo que cumple el mismo propósito pero en una modalidad diferente.</li><li>K. Las imágenes decorativas deben tener un texto alternativo vacío y carecer de un título, o bien se incluyen desde las hojas de estilo, de forma que puedan ser ignoradas por los productos de apoyo.</li></ul>",
-
- "en" : "<ul><li>A. All non-text content must have a short text alternative that provides the same information or serves the same purpose as non-text content.</li><li>B. Textual alternatives must be updated when non-textual content changes.</li><li>C. The images included from CSS must be purely decorative and must not provide information unless there is a textual alternative on the page.</li><li>D. In groups of images that convey a single information together, it is provided in a single image describing the entire group, leaving the rest as decorative.</li><li>E. ASCII art, emoticons, and leetspeak must have textual alternatives immediately before or after that convey the same information.</li><li>F. If a short text alternative is not sufficient to convey the same information or serve the same purpose as non-text content, then a short description of the non-text content must be provided in the short text alternative and also a long text alternative is provided that if conveys the same information or serves the same purpose.</li><li>G. Images that have some functionality such as links, image map hotspots or image type buttons on forms, have an alternative text that identifies their purpose.</li><li>H. The links accompanied by images that act as a link to the same resource must be combined in a single link.</li><li>I. Audio, video or multimedia content (including live content), tests or exercises that could be invalid if displayed as text, as well as content whose main function is to produce a specific sensory experience (music, paintings, etc.) they should have a short textual alternative as a descriptive tag that at least identifies what the non-textual content is.</li><li>J. CAPTCHAs must have a textual alternative that describes the purpose of the CAPTCHA, and there must also be an alternative CAPTCHA that fulfills the same purpose but in a different modality.</li><li>K. Decorative images must have empty alt text and no title or are included from style sheets so that they can be ignored by assistive products.</li></ul>",
- },
- "tools" :
- {
- "cat" : "<ul><li>A. Web Developer Toolbar.</li><li>1. Images - Outline images without alt attributes > Comprovar si hi ha alguna imatge ressaltada, és un error i se li ha de proporcionar un atribut “alt”.</li><li>2. Images - Display alt attributes > Valorar si el text d'aquest atribut descriu la funció de la imatge.</li><li>B. Web Developer Toolbar.</li><li>1. Images - Display alt attributes > Valoreu si el text d'aquest atribut s'adapta als canvis en el contingut no textual.</li><li>C.Web Developer Toolbar. Images - Outline all images > Verificar que les imatges introduïdes des de les fulles d'estil (les que no es mostren ressaltades) no transmeten informació important. Si alguna imatge transmet informació important, verificar que la informació està disponible per a les eines de suport.</li><li>C. Web Developer Toolbar. Images - Display alt attributes > Localizar las imágenes que actúan como un grupo y verificar que se proporciona un texto alternativo adecuado en una de las imágenes y que el resto tienen un texto alternativo vacío.</li><li>E. Web Developer Toolbar. Images - Display alt attributes > Localitzar els elements que actuen art ASCII, emoticones i leetspeak i verificar que es proporciona un text alternatiu adequat immediatament abans o després.</li></ul>",
- "es" : "<ul><li>A. Web Developer Toolbar.</li><li>1. Images - Outline images without alt attributes > Si hay alguna imagen resaltada, es un error y se le debe proporcionar un atributo “alt”.</li><li>2. Images - Display alt attributes > Valorar si el texto describe la función de la imagen.</li><li>B. Web Developer Toolbar.</li><li>1. Images - Display alt attributes > Valorar si el texto se adapta a los cambios en el contenido no textual.</li><li>C.Web Developer Toolbar. Images - Outline all images > Verificar que las imágenes introducidas desde CSS (las que no se muestran resaltadas) no transmiten información importante. Si alguna imagen transmite información importante, verificar que la información está disponible para las herramientas de apoyo.</li><li>C. Web Developer Toolbar. Images - Display alt attributes > Localizar las imágenes que actúan como un grupo y verificar que se proporciona un texto alternativo adecuado en una de las imágenes y que el resto tienen un texto alternativo vacío.</li><li>E. Web Developer Toolbar. Images - Display alt attributes > Localizar los elementos que actúan arte ASCII, emoticonos y leetspeak y verificar que se proporciona un texto alternativo adecuado inmediatamente antes o después.</li><li>F. Web Developer Toolbar. Images - Display alt attributes > Localizar las imágenes con un contenido complejo (ej. infografías, esquemas) y verificar que tienen alternativa textual con breve descripción del contenido. Si la descripción es larga, verificar que dispone de atributo 'longdesc', que existe descripción en el contenido de la páginao que inmediatamente antes o después de la imagen se proporciona un enlace a otra página con la descripción textual.</li><li>G. Web Developer Toolbar. Images - Display alt attributes > Localizar imágenes que actúan como enlace. Si solamente es una imagen verificar que tiene texto alternativo que identifica función y destino. Si contiene texto, incluirlo.</li><li>H. Web Developer Toolbar. Images - Display alt attributes > Localizar imágenes que actúan como enlaces y verificar que no existan enlaces consecutivos al mismo recurso.</li><li>I. Web Developer Toolbar. Images - Display alt attributes > Verificar que los contenidos de esta categoría disponen de una alternativa textual adecuada..</li><li>J. Web Developer Toolbar. Images - Display alt attributes > Verificar que los captchas tienen una alternativa textual adecuada y comprobar que existe alternativa en una modalidad diferente.</li><li>K. Web Developer Toolbar. Images - Display alt attributes > Localizar imagénes decorativas y verificar que el texto alternativo está vacío y no disponen de título.</li></ul>",
- "en" : "<ul><li>A. Web Developer Toolbar.</li><li>1. Images - Outline images without alt attributes > Checking for any highlighted images is an error and should be given a “alt“ attribute.</li><li>2. Images - Display alt attributes > Check whether the text of this attribute describes the function of the image.</li><li>B. Web Developer Toolbar.</li><li>1. Images - Display alt attributes > CHeck whether the text of the attribute adapts to changes in the non-textual content.</li><li>C.Web Developer Toolbar. Images - Outline all images > Verify that the images entered from the style sheets (those that are not highlighted) do not convey important information. If any image conveys important information, verify that the information is available to support tools.</li><li>C. Web Developer Toolbar. Images - Display alt attributes > Locate the images that act as a group and verify that a suitable alt text is provided in one of the images and that the rest have empty alt text.</li><li>E. Web Developer Toolbar. Images - Display alt attributes > Locate the elements that act as ASCII art, emoticons, and leetspeak and verify that a suitable alternative text is provided immediately before or after.</li></ul>",
- },
- "category" : ["content"]
- },
-
- { // 1.2.1.
- "criteria" :
- {
- "cat" : "1.2.1 Només àudio i només vídeo (pregravat)",
- "es" : "1.2.1 Solo audio y solo video (pregrabado)",
- "en" : "1.2.1 Audio-only and Video-only (Prerecorded)",
- },
- "link" : "https://www.w3.org/TR/WCAG21/#audio-only-and-video-only-prerecorded",
- "level" : "A",
- "version" : "2.0",
- "goal" :
- {
- "cat" : "Per als suports de només àudio pregravats i només de vídeo pregravats , el següent és cert, excepte quan l'àudio o el vídeo és una alternativa multimèdia per al text i està clarament etiquetat.",
- "es" : "Se proporcionan subtítulos para todo el contenido de audio pregrabado en medios sincronizados, excepto cuando el medio es una alternativa de medios para el texto y está claramente etiquetado como tal.",
- "en" : "Captions are provided for all prerecorded audio content in synchronized media, except when the media is a media alternative for text and is clearly labeled as such.",
- },
- "intent" :
- {
- "cat" : "La intenció d'aquest Criteri d'èxit és posar a disposició de tots els usuaris la informació transmesa per contingut només d'àudio pregravat i només de vídeo pregravat. Les alternatives per als mitjans basats en el temps que es basen en text fan que la informació sigui accessible perquè el text es pot representar mitjançant qualsevol modalitat sensorial (per exemple, visual, auditiva o tàctil) per satisfer les necessitats de l'usuari. En el futur, el text també es podria traduir a símbols, llenguatge de signes o formes més senzilles de la llengua (futur).",
- "es" : "La intención de este Criterio de Conformidad es hacer que la información transmitida por el contenido de solo audio pregrabado y el contenido de solo video pregrabado esté disponible para todos los usuarios. Las alternativas para los medios basados en el tiempo que se basan en texto hacen que la información sea accesible porque el texto se puede representar a través de cualquier modalidad sensorial (por ejemplo, visual, auditiva o táctil) para satisfacer las necesidades del usuario. En el futuro, el texto también podría traducirse a símbolos, lenguaje de signos o formas más simples del idioma (futuro).",
- "en" : "The intent of this Success Criterion is to make information conveyed by prerecorded audio-only and prerecorded video-only content available to all users. Alternatives for time-based media that are text based make information accessible because text can be rendered through any sensory modality (for example, visual, auditory or tactile) to match the needs of the user. In the future, text could also be translated into symbols, sign language or simpler forms of the language (future).",
- },
- "benefits" :
- {
- "cat" : "<p>Aquest criteri d'èxit ajuda les persones que tenen dificultats per percebre el contingut visual. La tecnologia d'assistència pot llegir alternatives de text en veu alta, presentar-les visualment o convertir-les en braille.</p><p>Les alternatives per a mitjans cronometrats que es basen en text poden ajudar a algunes persones que tenen dificultats per entendre el significat del contingut de vídeo pregravat.</p><p>Les persones sordes, tenen problemes d'audició o tenen problemes per entendre la informació d'àudio per qualsevol motiu poden llegir la presentació del text. S'estan realitzant investigacions sobre la traducció automàtica de text a la llengua de signes.</p><p>Les persones sordcegues poden llegir el text en braille.</p><p>A més, el text admet la possibilitat de cercar contingut que no sigui de text i de reutilitzar el contingut de diverses maneres.</p>",
- "es" : "<p>Este Criterio de Conformidad ayuda a las personas que tienen dificultades para percibir el contenido visual. La tecnología de asistencia puede leer alternativas de texto en voz alta, presentarlas visualmente o convertirlas a braille.</p><p>Las alternativas para los medios basados en el tiempo que se basan en texto pueden ayudar a algunas personas que tienen dificultades para comprender el significado del contenido de video pregrabado.</p><p>Las personas sordas, tienen problemas de audición o tienen problemas para comprender la información de audio por cualquier motivo pueden leer la presentación de texto. Se están realizando investigaciones sobre la traducción automática de texto al lenguaje de señas.</p><p>Las personas sordociegas pueden leer el texto en braille.</p><p>Además, el texto respalda la capacidad de buscar contenido que no es texto y de reutilizar el contenido de diversas formas.</p>",
- "en" : "<p>This Success Criterion helps people who have difficulty perceiving visual content. Assistive technology can read text alternatives aloud, present them visually, or convert them to braille.</p><p>Alternatives for timed-based media that are text based may help some people who have difficulty understanding the meaning of prerecorded video content.</p><p>People who are deaf, are hard of hearing, or who are having trouble understanding audio information for any reason can read the text presentation. Research is ongoing regarding automatic translation of text into sign language.</p><p>People who are deaf-blind can read the text in braille.</p><p>Additionally, text supports the ability to search for non-text content and to repurpose content in a variety of ways.</p>",
- },
- "verification" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "tools" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "category" : ["audio-video"]
- },
-
- { //1.2.2.
- "criteria" :
- {
- "cat" : "1.2.2 Subtítols (pregravats)",
- "es" : "1.2.2 Subtítulos (pregrabados)",
- "en" : "1.2.2 Captions (Prerecorded)"
- },
- "link" : "https://www.w3.org/TR/WCAG21/#captions-prerecorded",
- "level" : "A",
- "version" : "2.0",
- "goal" :
- {
- "cat" : "Els subtítols es proporcionen per a tot el contingut d'àudio pregravat en suports sincronitzats, excepte quan el suport és una alternativa multimèdia per al text i està clarament etiquetat com a tal.",
- "es" : "Se proporcionan subtítulos para todo el contenido de audio pregrabado en medios sincronizados, excepto cuando el medio es una alternativa de medios para el texto y está claramente etiquetado como tal.",
- "en" : "Captions are provided for all prerecorded audio content in synchronized media, except when the media is a media alternative for text and is clearly labeled as such.",
- },
- "intent" :
- {
- "cat" : "La intenció d'aquest criteri d'èxit és permetre que les persones sordes o amb problemes d'audició vegin presentacions multimèdia sincronitzades. Els subtítols proporcionen la part del contingut disponible a través de la pista d'àudio. Els subtítols no només inclouen diàlegs, sinó que identifiquen qui parla i inclouen informació no verbal que es transmet a través del so, inclosos efectes sonors significatius.",
- "es" : "La intención de este Criterio de Conformidad es permitir que las personas sordas o con dificultades auditivas vean presentaciones multimedia sincronizadas. Los subtítulos proporcionan la parte del contenido disponible a través de la pista de audio. Los subtítulos no solo incluyen diálogos, sino que identifican quién está hablando e incluyen información no verbal transmitida a través del sonido, incluidos efectos de sonido significativos.",
- "en" : "The intent of this Success Criterion is to enable people who are deaf or hard of hearing to watch synchronized media presentations. Captions provide the part of the content available via the audio track. Captions not only include dialogue, but identify who is speaking and include non-speech information conveyed through sound, including meaningful sound effects.",
- },
- "benefits" :
- {
- "cat" : "Les persones sordes o amb pèrdua auditiva poden accedir a la informació auditiva del contingut multimèdia sincronitzat mitjançant subtítols.",
- "es" : "Las personas sordas o con pérdida auditiva pueden acceder a la información auditiva en el contenido multimedia sincronizado a través de subtítulos.",
- "en" : "People who are deaf or have a hearing loss can access the auditory information in the synchronized media content through captions.",
- },
- "verification" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "tools" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "category" : ["audio-video"]
- },
-
- { // 1.2.3.
- "criteria" :
- {
- "cat" : "1.2.3 Descripció d'àudio o alternativa multimèdia (pregravada)",
- "es" : "1.2.3 Descripción de audio o medios alternativos (pregrabados)",
- "en" : "1.2.3 Audio Description or Media Alternative (Prerecorded)",
- },
- "link" : "https://www.w3.org/TR/WCAG21/#audio-description-or-media-alternative-prerecorded",
- "level" : "A",
- "version" : "2.0",
- "goal" :
- {
- "cat" : "Es proporciona una alternativa per als mitjans basats en el temps o la descripció d' àudio del contingut de vídeo pregravat per als mitjans sincronitzats , excepte quan el suport és una alternativa multimèdia per al text i està clarament etiquetat com a tal.",
- "es" : "Se proporciona una alternativa para los medios basados en el tiempo o la descripción de audio del contenido de video pregrabado para los medios sincronizados, excepto cuando los medios son una alternativa de medios para el texto y están claramente etiquetados como tales.",
- "en" : "An alternative for time-based media or audio description of the prerecorded video content is provided for synchronized media, except when the media is a media alternative for text and is clearly labeled as such.",
- },
- "intent" :
- {
- "cat" : "<p>La intenció d'aquest Criteri d'èxit és proporcionar a les persones cegues o amb discapacitat visual accés a la informació visual en una presentació multimèdia sincronitzada. Aquest criteri d'èxit descriu dos enfocaments, qualsevol dels quals es pot utilitzar.</p><p>Un enfocament és proporcionar una descripció d'àudio del contingut del vídeo. L'àudiodescripció augmenta la part d'àudio de la presentació amb la informació necessària quan la part de vídeo no està disponible. Durant les pauses existents en el diàleg, l'àudiodescripció proporciona informació sobre accions, personatges, canvis d'escena i text en pantalla que són importants i que no es descriuen ni es parlen a la banda sonora principal.</p><p>El segon enfocament consisteix a proporcionar tota la informació dels mitjans sincronitzats (tant visuals com auditius) en forma de text. Una alternativa per als mitjans basats en el temps proporciona una descripció en execució de tot el que està passant al contingut multimèdia sincronitzat. L'alternativa per als mitjans de comunicació basats en el temps llegeix alguna cosa com un guió o un llibre. A diferència de l'àudiodescripció, la descripció de la part de vídeo no es limita només a les pauses del diàleg existent. Es proporcionen descripcions completes de tota la informació visual, inclòs el context visual, les accions i expressions dels actors i qualsevol altre material visual. A més, es descriuen sons que no són de parla (rialles, veus fora de la pantalla, etc.) i s'inclouen transcripcions de tots els diàlegs. La seqüència de la descripció i les transcripcions dels diàlegs són la mateixa que la seqüència del propi mitjà sincronitzat. Com a resultat, l'alternativa per als mitjans basats en el temps pot proporcionar una representació molt més completa del contingut multimèdia sincronitzat que només l'àudiodescripció.</p>",
- "es" : "<p> La intención de este Criterio de cumplimiento es proporcionar a las personas ciegas o con discapacidad visual acceso a la información visual en una presentación multimedia sincronizada. Este Criterio de Conformidad describe dos enfoques, cualquiera de los cuales se puede utilizar. </p> <p> Un enfoque es proporcionar una descripción de audio del contenido del video. La descripción de audio aumenta la parte de audio de la presentación con la información necesaria cuando la parte de video no está disponible. Durante las pausas existentes en el diálogo, la descripción de audio proporciona información sobre acciones, personajes, cambios de escena y texto en pantalla que son importantes y que no se describen ni se pronuncian en la pista de sonido principal. </p> <p> El segundo enfoque implica proporcionar toda la información en los medios sincronizados (tanto visual como auditiva) en forma de texto. Una alternativa para los medios basados en el tiempo proporciona una descripción continua de todo lo que sucede en el contenido de los medios sincronizados. La alternativa para los medios basados en el tiempo es algo así como un guión o un libro. A diferencia de la descripción de audio, la descripción de la parte de video no se limita solo a las pausas en el diálogo existente. Se proporcionan descripciones completas de toda la información visual, incluido el contexto visual, las acciones y expresiones de los actores, y cualquier otro material visual. Además, se describen los sonidos que no son del habla (risas, voces fuera de la pantalla, etc.) y se incluyen las transcripciones de todos los diálogos. La secuencia de la descripción y las transcripciones de los diálogos es la misma que la secuencia en el propio medio sincronizado. Como resultado, la alternativa para los medios basados en el tiempo puede proporcionar una representación mucho más completa del contenido de los medios sincronizados que la descripción de audio por sí sola.</p>",
- "en" : "<p>The intent of this Success Criterion is to provide people who are blind or visually impaired access to the visual information in a synchronized media presentation. This Success Criterion describes two approaches, either of which can be used.</p><p>One approach is to provide audio description of the video content. The audio description augments the audio portion of the presentation with the information needed when the video portion is not available. During existing pauses in dialogue, audio description provides information about actions, characters, scene changes, and on-screen text that are important and are not described or spoken in the main sound track.</p><p>The second approach involves providing all of the information in the synchronized media (both visual and auditory) in text form. An alternative for time-based media provides a running description of all that is going on in the synchronized media content. The alternative for time-based media reads something like a screenplay or book. Unlike audio description, the description of the video portion is not constrained to just the pauses in the existing dialogue. Full descriptions are provided of all visual information, including visual context, actions and expressions of actors, and any other visual material. In addition, non-speech sounds (laughter, off-screen voices, etc.) are described, and transcripts of all dialogue are included. The sequence of description and dialogue transcripts are the same as the sequence in the synchronized media itself. As a result, the alternative for time-based media can provide a much more complete representation of the synchronized media content than audio description alone.</p>",
- },
- "benefits" :
- {
- "cat" : "Aquest criteri d'èxit pot ajudar algunes persones que tenen dificultats per veure vídeos o altres continguts multimèdia sincronitzats, incloses les persones que tenen dificultats per percebre o entendre imatges en moviment.",
- "es" : "Este Criterio de Conformidad puede ayudar a algunas personas que tienen dificultades para ver videos u otro contenido multimedia sincronizado, incluidas las personas que tienen dificultades para percibir o comprender imágenes en movimiento.",
- "en" : "This Success Criterion may help some people who have difficulty watching video or other synchronized media content, including people who have difficulty perceiving or understanding moving images.",
- },
- "verification" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "tools" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "category" : ["audio-video"]
- },
-
- { // 1.2.4.
- "criteria" :
- {
- "cat" : "1.2.4 Subtítols (en directe)",
- "es" : "1.2.4 Subtítulos (en vivo)",
- "en" : "1.2.4 Captions (Live)",
- },
- "link" : "https://www.w3.org/TR/WCAG21/#captions-live",
- "level" : "AA",
- "version" : "2.0",
- "goal" :
- {
- "cat" : "Es proporcionen subtítols per a tot el contingut d'àudio en directe en mitjans sincronitzats.",
- "es" : "Se proporcionan subtítulos para todo el contenido de audio en vivo en medios sincronizados.",
- "en" : "Captions are provided for all live audio content in synchronized media.",
- },
- "intent" :
- {
- "cat" : "<p>La intenció d'aquest criteri d'èxit és permetre que les persones sordes o amb problemes d'audició vegin presentacions en temps real. Els subtítols proporcionen la part del contingut disponible a través de la pista d'àudio. Els subtítols no només inclouen diàlegs, sinó que també identifiquen qui parla i anoten efectes de so i altres àudios significatius.</p><p>Aquest criteri d'èxit estava pensat per aplicar-se a l'emissió de mitjans sincronitzats i no pretén exigir trucades multimèdia bidireccionals entre dos o més. les persones mitjançant aplicacions web s'han de subtitular independentment de les necessitats dels usuaris. La responsabilitat de proporcionar subtítols recairia en els proveïdors de contingut (els que truca) o en l'amfitrió, i no en l'aplicació.</p>",
- "es" : "<p>La intención de este Criterio de Conformidad es permitir que las personas sordas o con problemas de audición vean presentaciones en tiempo real. Los subtítulos proporcionan la parte del contenido disponible a través de la pista de audio. Los subtítulos no solo incluyen el diálogo, sino que también identifican quién está hablando y anotan efectos de sonido y otro audio significativo. las personas a través de aplicaciones web deben estar subtituladas independientemente de las necesidades de los usuarios. La responsabilidad de proporcionar subtítulos recaería en los proveedores de contenido (las personas que llaman) o en la persona que llama amfitrión, y no en la aplicación.</p>",
- "en" : "<p>The intent of this Success Criterion is to enable people who are deaf or hard of hearing to watch real-time presentations. Captions provide the part of the content available via the audio track. Captions not only include dialogue, but also identify who is speaking and notate sound effects and other significant audio.</p><p>This success criterion was intended to apply to broadcast of synchronized media and is not intended to require that two-way multimedia calls between two or more individuals through web apps must be captioned regardless of the needs of users. Responsibility for providing captions would fall to the content providers (the callers) or the “host” caller, and not the application.</p>",
- },
- "benefits" :
- {
- "cat" : "Les persones sordes o amb pèrdua auditiva poden accedir a la informació auditiva del contingut multimèdia sincronitzat mitjançant subtítols.",
- "es" : "Las personas sordas o con pérdida auditiva pueden acceder a la información auditiva en el contenido multimedia sincronizado a través de subtítulos.",
- "en" : "People who are deaf or have a hearing loss can access the auditory information in the synchronized media content through captions.",
- },
- "verification" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "tools" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "category" : ["audio-video"]
- },
-
- { // 1.2.5.
- "criteria" :
- {
- "cat" : "1.2.5 Descripció d'àudio (pregravada)",
- "es" : "1.2.5 Descripción de audio (pregrabado)",
- "en" : "1.2.5 Audio Description (Prerecorded)",
- },
- "link" : "https://www.w3.org/TR/WCAG21/#audio-description-prerecorded",
- "level" : "AA",
- "version" : "2.0",
- "goal" :
- {
- "cat" : "Es proporciona una descripció d'àudio per a tot el contingut de vídeo pregravat en suports sincronitzats.",
- "es" : "Se proporciona descripción de audio para todo el contenido de video pregrabado en medios sincronizados.",
- "en" : "Audio description is provided for all prerecorded video content in synchronized media.",
- },
- "intent" :
- {
- "cat" : "La intenció d'aquest criteri d'èxit és proporcionar a les persones cegues o amb discapacitat visual accés a la informació visual en una presentació multimèdia sincronitzada. L'àudiodescripció augmenta la part d'àudio de la presentació amb la informació necessària quan la part de vídeo no està disponible. Durant les pauses existents en el diàleg, l'àudiodescripció proporciona informació sobre accions, personatges, canvis d'escena i text en pantalla que són importants i que no es descriuen ni es diuen a la banda sonora principal.",
- "es" : "La intención de este Criterio de Conformidad es proporcionar a las personas ciegas o con discapacidad visual acceso a la información visual en una presentación multimedia sincronizada. La descripción de audio aumenta la parte de audio de la presentación con la información necesaria cuando la parte de video no está disponible. Durante las pausas existentes en el diálogo, la descripción de audio proporciona información sobre acciones, personajes, cambios de escena y texto en pantalla que son importantes y que no se describen ni se pronuncian en la pista de sonido principal.",
- "en" : "The intent of this Success Criterion is to provide people who are blind or visually impaired access to the visual information in a synchronized media presentation. The audio description augments the audio portion of the presentation with the information needed when the video portion is not available. During existing pauses in dialogue, audio description provides information about actions, characters, scene changes, and on-screen text that are important and are not described or spoken in the main sound track.",
- },
- "benefits" :
- {
- "cat" : "Les persones cegues o amb baixa visió, així com aquelles amb limitacions cognitives que tenen dificultats per interpretar visualment el que està passant, es beneficien de l'àudiodescripció de la informació visual.",
- "es" : "Las personas ciegas o con baja visión, así como aquellas con limitaciones cognitivas que tienen dificultades para interpretar visualmente lo que está sucediendo, se benefician de la descripción de audio de la información visual.",
- "en" : "People who are blind or have low vision as well as those with cognitive limitations who have difficulty interpreting visually what is happening benefit from audio description of visual information.",
- },
- "verification" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "tools" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "category" : ["audio-video"]
- },
-
- { // 1.2.6.
- "criteria" :
- {
- "cat" : "1.2.6 Llengua de signes (pregravada)",
- "es" : "1.2.6 Lenguaje de señas (pregrabado)",
- "en" : "1.2.6 Sign Language (Prerecorded)",
- },
- "link" : "https://www.w3.org/TR/WCAG21/#sign-language-prerecorded",
- "level" : "AAA",
- "version" : "2.0",
- "goal" :
- {
- "cat" : "S'ofereix interpretació en llengua de signes per a tot el contingut d'àudio pregravat en suports sincronitzats.",
- "es" : "Se proporciona interpretación en lenguaje de señas para todo el contenido de audio pregrabado en medios sincronizados.",
- "en" : "Sign language interpretation is provided for all prerecorded audio content in synchronized media.",
- },
- "intent" :
- {
- "cat" : "La intenció d'aquest criteri d'èxit és permetre que les persones sordes o amb problemes d'audició i que parlen amb fluïdesa una llengua de signes entenguin el contingut de la pista d'àudio de les presentacions multimèdia sincronitzades. El text escrit, com el que es troba als subtítols, sovint és una segona llengua. Com que la llengua de signes ofereix la capacitat de proporcionar entonació, emoció i altra informació d'àudio que es reflecteix en la interpretació de la llengua de signes, però no en els subtítols, la interpretació de la llengua de signes proporciona un accés més ric i equivalent als mitjans sincronitzats. Les persones que es comuniquen àmpliament en llengua de signes també són més ràpides en llenguatge de signes i els mitjans sincronitzats són una presentació basada en el temps.",
- "es" : "La intención de este Criterio de Conformidad es permitir que las personas sordas o con problemas de audición y que dominan el lenguaje de señas comprendan el contenido de la pista de audio de las presentaciones multimedia sincronizadas. El texto escrito, como el que se encuentra en los subtítulos, suele ser un segundo idioma. Debido a que el lenguaje de señas brinda la capacidad de proporcionar entonación, emoción y otra información de audio que se refleja en la interpretación del lenguaje de señas, pero no en los subtítulos, la interpretación del lenguaje de señas brinda un acceso más rico y equivalente a los medios sincronizados. Las personas que se comunican ampliamente en lenguaje de señas también son más rápidas en lenguaje de señas y los medios sincronizados son una presentación basada en el tiempo.",
- "en" : "The intent of this Success Criterion is to enable people who are deaf or hard of hearing and who are fluent in a sign language to understand the content of the audio track of synchronized media presentations. Written text, such as that found in captions, is often a second language. Because sign language provides the ability to provide intonation, emotion and other audio information that is reflected in sign language interpretation, but not in captions, sign language interpretation provides richer and more equivalent access to synchronized media. People who communicate extensively in sign language are also faster in sign language and synchronized media is a time-based presentation.",
- },
- "benefits" :
- {
- "cat" : "Les persones el llenguatge humà de les quals és una llengua de signes de vegades tenen una capacitat de lectura limitada. És possible que aquestes persones no puguin llegir i comprendre els subtítols i, per tant, necessiten una interpretació en llengua de signes per accedir al contingut multimèdia sincronitzat.",
- "es" : "Las personas cuyo lenguaje humano es un lenguaje de signos a veces tienen una capacidad de lectura limitada. Es posible que estas personas no puedan leer y comprender los subtítulos y, por lo tanto, requieran una interpretación en lenguaje de señas para obtener acceso al contenido de los medios sincronizados.",
- "en" : "People whose human language is a sign language sometimes have limited reading ability. These individuals may not be able to read and comprehend the captions and thus require a sign language interpretation to gain access to the synchronized media content.",
- },
- "verification" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "tools" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "category" : [""]
- },
-
- { // 1.2.7.
- "criteria" :
- {
- "cat" : "1.2.7 Descripció d'àudio ampliada (pregravada)",
- "es" : "1.2.7 Descripción de audio ampliada (pregrabada)",
- "en" : "1.2.7 Extended Audio Description (Prerecorded)",
- },
- "link" : "https://www.w3.org/TR/WCAG21/#extended-audio-description-prerecorded",
- "level" : "AAA",
- "version" : "2.0",
- "goal" :
- {
- "cat" : "Quan les pauses a l'àudio en primer pla són insuficients per permetre que les descripcions d'àudio transmetin el sentit del vídeo, es proporciona una descripció d'àudio ampliada per a tot el contingut de vídeo pregravat en suports sincronitzats.",
- "es" : "Cuando las pausas en el audio de primer plano son insuficientes para permitir que las descripciones de audio transmitan el sentido del video, se proporciona una descripción de audio extendida para todo el contenido de video pregrabado en medios sincronizados.",
- "en" : "Where pauses in foreground audio are insufficient to allow audio descriptions to convey the sense of the video, extended audio description is provided for all prerecorded video content in synchronized media.",
- },
- "intent" :
- {
- "cat" : "<p>La intenció d'aquest criteri d'èxit és proporcionar a les persones cegues o amb discapacitat visual l'accés a una presentació multimèdia sincronitzada més enllà del que es pot proporcionar amb una descripció d'àudio estàndard. Això es fa congelant periòdicament la presentació multimèdia sincronitzada i reproduint una descripció d'àudio addicional. Aleshores es reprèn la presentació multimèdia sincronitzada.</p><p>Com que interromp la visualització per a aquells que no necessiten la descripció addicional, sovint es proporcionen tècniques que us permeten activar i desactivar la funció. Alternativament, es poden proporcionar versions amb i sense la descripció addicional.</p>",
- "es" : "<p>La intención de este Criterio de Conformidad es proporcionar a las personas ciegas o con discapacidad visual acceso a una presentación multimedia sincronizada más allá de lo que puede proporcionar una descripción de audio estándar. Esto se hace congelando periódicamente la presentación multimedia sincronizada y reproduciendo una descripción de audio adicional. A continuación, se reanuda la presentación multimedia sincronizada.</p><p>Debido a que interrumpe la visualización para aquellos que no necesitan la descripción adicional, a menudo se proporcionan técnicas que le permiten activar y desactivar la función. Alternativamente, se pueden proporcionar versiones con y sin la descripción adicional.</p>",
- "en" : "<p>The intent of this Success Criterion is to provide people who are blind or visually impaired access to a synchronized media presentation beyond that which can be provided by standard audio description. This is done by periodically freezing the synchronized media presentation and playing additional audio description. The synchronized media presentation is then resumed.</p><p>Because it disrupts viewing for those who do not need the additional description, techniques that allow you to turn the feature on and off are often provided. Alternately, versions with and without the additional description can be provided.</p>",
- },
- "benefits" :
- {
- "cat" : "Les persones cegues, les persones amb baixa visió que no veuen la pantalla, així com les persones amb limitacions cognitives que tenen dificultats per interpretar visualment el que està succeint, solen utilitzar l'àudiodescripció de la informació visual. Tanmateix, si hi ha massa diàleg, l'àudiodescripció és insuficient. L'àudiodescripció ampliada pot proporcionar la informació addicional necessària per entendre el vídeo.",
- "es" : "Las personas ciegas, las personas con baja visión que no pueden ver la pantalla, así como las personas con limitaciones cognitivas que tienen dificultades para interpretar visualmente lo que está sucediendo, a menudo utilizan una descripción de audio de la información visual. Sin embargo, si hay demasiado diálogo, la descripción de audio es insuficiente. La descripción de audio ampliada puede proporcionar la información adicional necesaria para comprender el video.",
- "en" : "People who are blind, people with low vision who cannot see the screen, as well as those with cognitive limitations who have difficulty interpreting visually what is happening, often use audio description of the visual information. However, if there is too much dialogue the audio description is insufficient. Extended audio description can provide the additional information needed to understand the video.",
- },
- "verification" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "tools" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "category" : [""]
- },
-
- { // 1.2.8.
- "criteria" :
- {
- "cat" : "1.2.8 Alternativa multimèdia (pregravada)",
- "es" : "1.2.8 Medios alternativos (pregrabados)",
- "en" : "1.2.8 Media Alternative (Prerecorded)",
- },
- "link" : "https://www.w3.org/TR/WCAG21/#media-alternative-prerecorded",
- "level" : "AAA",
- "version" : "2.0",
- "goal" :
- {
- "cat" : "S'ofereix una alternativa per als suports basats en el temps per a tots els suports sincronitzats pregravats i per a tots els mitjans de només vídeo pregravats.",
- "es" : "Se proporciona una alternativa para los medios basados en el tiempo para todos los medios sincronizados pregrabados y para todos los medios solo de video pregrabados.",
- "en" : "An alternative for time-based media is provided for all prerecorded synchronized media and for all prerecorded video-only media.",
- },
- "intent" :
- {
- "cat" : "<p>La intenció d'aquest criteri d'èxit és posar material audiovisual a disposició de les persones amb una visió massa pobre per llegir els subtítols de manera fiable i amb una audició massa baixa per escoltar de manera fiable el diàleg i l'àudiodescripció. Això es fa proporcionant una alternativa per als mitjans basats en el temps.</p><p>Aquest enfocament implica proporcionar tota la informació dels mitjans sincronitzats (tant visuals com auditius) en forma de text. Una alternativa per als mitjans basats en el temps proporciona una descripció en execució de tot el que està passant al contingut multimèdia sincronitzat. L'alternativa per als mitjans de comunicació basats en el temps llegeix alguna cosa com un llibre. A diferència de l'àudiodescripció, la descripció de la part de vídeo no es limita només a les pauses del diàleg existent. Es proporcionen descripcions completes de tota la informació visual, inclòs el context visual, les accions i expressions dels actors i qualsevol altre material visual. A més, es descriuen sons que no són de parla (rialles, veus fora de la pantalla, etc.) i s'inclouen transcripcions de tots els diàlegs. La seqüència de descripcions i transcripcions de diàlegs és la mateixa que la seqüència dels mitjans sincronitzats. Com a resultat, l'alternativa per als mitjans basats en el temps pot proporcionar una representació molt més completa del contingut multimèdia sincronitzat que només la descripció d'àudio.</p><p>Si hi ha alguna interacció com a part de la presentació multimèdia sincronitzada (p. ex., 'prem ara per respondre el pregunta') aleshores l'alternativa per als mitjans de comunicació basats en el temps proporcionaria hiperenllaços o el que sigui necessari per oferir una funcionalitat paral·lela. mitjans basats en l'ús d'una pantalla braille actualitzable.</p>",
- "es" : "<p>La intención de este Criterio de Conformidad es hacer que el material audiovisual esté disponible para las personas cuya visión es demasiado pobre para leer subtítulos de manera confiable y cuya audición es demasiado pobre para escuchar el diálogo y la descripción de audio de manera confiable. Esto se hace proporcionando una alternativa para los medios basados en el tiempo.</p><p>Este enfoque implica proporcionar toda la información en los medios sincronizados (tanto visual como auditiva) en forma de texto. Una alternativa para los medios basados en el tiempo proporciona una descripción continua de todo lo que sucede en el contenido de los medios sincronizados. La alternativa para los medios basados en el tiempo es algo así como un libro. A diferencia de la descripción de audio, la descripción de la parte de video no se limita solo a las pausas en el diálogo existente. Se proporcionan descripciones completas de toda la información visual, incluido el contexto visual, las acciones y expresiones de los actores, y cualquier otro material visual. Además, se describen los sonidos que no son del habla (risas, voces fuera de la pantalla, etc.) y se incluyen las transcripciones de todos los diálogos. La secuencia de descripciones y transcripciones de diálogos es la misma que la secuencia en el propio medio sincronizado. Como resultado, la alternativa para los medios basados en el tiempo puede proporcionar una representación mucho más completa del contenido de los medios sincronizados que la descripción de audio sola.</p><p>Si hay alguna interacción como parte de la presentación de los medios sincronizados (por ejemplo, 'presione ahora para responder al pregunta') entonces la alternativa para los medios basados en el tiempo proporcionaría hipervínculos o lo que sea necesario para proporcionar una funcionalidad paralela. multimedia basados en el uso de una pantalla braille actualizable.</p>",
- "en" : "<p>The intent of this Success Criterion is to make audio visual material available to individuals whose vision is too poor to reliably read captions and whose hearing is too poor to reliably hear dialogue and audio description. This is done by providing an alternative for time-based media.</p><p>This approach involves providing all of the information in the synchronized media (both visual and auditory) in text form. An alternative for time-based media provides a running description of all that is going on in the synchronized media content. The alternative for time-based media reads something like a book. Unlike audio description, the description of the video portion is not constrained to just the pauses in the existing dialogue. Full descriptions are provided of all visual information, including visual context, actions and expressions of actors, and any other visual material. In addition, non-speech sounds (laughter, off-screen voices, etc.) are described, and transcripts of all dialogue are included. The sequence of descriptions and dialogue transcripts is the same as the sequence in the synchronized media itself. As a result, the alternative for time-based media can provide a much more complete representation of the synchronized media content than audio description alone.</p><p>If there is any interaction as part of the synchronized media presentation (e.g., 'press now to answer the question') then the alternative for time-based media would provide hyperlinks or whatever is needed to provide parallel functionality.#Individuals whose vision is too poor to reliably read captions and whose hearing is too poor to reliably hear dialogue can access the alternative for time-based media by using a refreshable braille display.</p>",
- },
- "benefits" :
- {
- "cat" : "Les persones que no poden veure bé o gens i que tampoc no poden escoltar bé o gens poden tenir accés a la informació en presentacions audiovisuals.",
- "es" : "Las personas que no pueden ver bien o en absoluto y que tampoco oyen bien o en absoluto pueden acceder a la información en presentaciones audiovisuales.",
- "en" : "People who cannot see well or at all and who also cannot hear well or at all can get access to information in audio-visual presentations.",
- },
- "verification" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "tools" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "category" : [""]
- },
-
- { // 1.2.9.
- "criteria" :
- {
- "cat" : "1.2.9 Només àudio (en directe)",
- "es" : "1.2.9 Solo audio (en vivo)",
- "en" : "1.2.9 Audio-only (Live)",
- },
- "link" : "https://www.w3.org/TR/WCAG21/#audio-only-live",
- "level" : "AAA",
- "version" : "2.0",
- "goal" :
- {
- "cat" : "Es proporciona una alternativa per als mitjans basats en el temps que presenta informació equivalent per al contingut només d'àudio en directe.",
- "es" : "Se proporciona una alternativa para los medios basados en el tiempo que presenta información equivalente al contenido de solo audio en vivo.",
- "en" : "An alternative for time-based media that presents equivalent information for live audio-only content is provided.",
- },
- "intent" :
- {
- "cat" : "La intenció d'aquest criteri d'èxit és fer que la informació transmesa per àudio en directe, com ara videoconferències, discursos en directe i transmissió web de ràdio, sigui accessible mitjançant l'ús d'una alternativa de text. Un servei de subtítols de text en directe permetrà que l'àudio en directe sigui accessible per a persones sordes o amb dificultats auditives, o que no puguin escoltar l'àudio. Aquests serveis utilitzen un operador humà format que escolta el que es diu i utilitza un teclat especial per introduir el text amb només un petit retard. Són capaços de capturar un esdeveniment en directe amb un alt grau de fidelitat, i també d'inserir notes en qualsevol àudio no parlat que és essencial per entendre l'esdeveniment. De vegades, una transcripció és una possibilitat si l'àudio en directe segueix un guió establert; però es prefereix un servei de subtítols en directe perquè es reprodueix al mateix ritme que l'àudio en si, i es pot adaptar a qualsevol desviació del guió que es pugui produir. no es considera que compleix aquest criteri d'èxit.#Aquest criteri d'èxit s'ha d'aplicar a la difusió d'àudio i no pretén exigir que les trucades d'àudio bidireccionals entre dues o més persones mitjançant aplicacions web s'hagin de subtitular independentment de les necessitats dels usuaris. La responsabilitat de proporcionar subtítols recairia en els proveïdors de contingut (els que truca) o en l''amfitrió', i no en l'aplicació.",
- "es" : "La intención de este Criterio de Conformidad es hacer que la información transmitida por audio en vivo, como videoconferencias, discursos en vivo y transmisiones por Internet de radio, sea accesible mediante el uso de una alternativa de texto. Un servicio de subtítulos de texto en vivo permitirá que el audio en vivo sea accesible para las personas sordas o con problemas de audición, o que de otra manera no pueden escuchar el audio. Dichos servicios utilizan un operador humano capacitado que escucha lo que se dice y usa un teclado especial para ingresar el texto con solo un pequeño retraso. Pueden capturar un evento en vivo con un alto grado de fidelidad, y también insertar notas en cualquier audio no hablado que es esencial para comprender el evento. Una transcripción es a veces una posibilidad si el audio en vivo sigue un guión establecido; pero se prefiere un servicio de subtítulos en vivo porque se reproduce al mismo ritmo que el audio y puede adaptarse a cualquier desviación del guión que pueda ocurrir. No se considerará que cumple con este Criterio de cumplimiento. # Este criterio de cumplimiento se diseñó para aplicarse a la transmisión de audio y no requiere que las llamadas de audio bidireccionales entre dos o más personas a través de aplicaciones web deban estar subtituladas independientemente de las necesidades de los usuarios. La responsabilidad de proporcionar subtítulos recaería en los proveedores de contenido (las personas que llaman) o en la persona que llama 'anfitriona', y no en la aplicación.",
- "en" : "The intent of this Success Criterion is to make information conveyed by live audio, such as video conferencing, live speeches and radio Webcasts, accessible through the use of a text alternative. A live text caption service will enable live audio to be accessible to people who are deaf or hard of hearing, or who cannot otherwise hear the audio. Such services use a trained human operator who listens in to what is being said and uses a special keyboard to enter the text with only a small delay. They are able to capture a live event with a high degree of fidelity, and also to insert notes on any non spoken audio which is essential to understanding the event. A transcript is sometimes a possibility if the live audio is following a set script; but a live caption service is preferred because it plays out at the same pace as the audio itself, and can adapt to any deviations from the script that might occur.#Using untrained operators, or providing a transcript which differs markedly from what actually happens would not be considered meeting this Success Criterion.#This success criterion was intended to apply to broadcast of audio and is not intended to require that two-way audio calls between two or more individuals through web apps must be captioned regardless of the needs of users. Responsibility for providing captions would fall to the content providers (the callers) or the “host” caller, and not the application.",
- },
- "benefits" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "verification" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "tools" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "category" : [""]
- },
-
- { // 1.3.1.
- "criteria" :
- {
- "cat" : "",
- "es" : "1.3.1 Información y relaciones",
- "en" : "1.3.1 Info and Relationships",
- },
- "link" : "https://www.w3.org/TR/WCAG21/#info-and-relationships",
- "level" : "A",
- "version" : "2.0",
- "goal" :
- {
- "cat" : "-",
- "es" : "Cuando la secuencia en la que se presenta el contenido afecta su significado, se puede determinar mediante programación una secuencia de lectura correcta.",
- "en" : "When the sequence in which content is presented affects its meaning, a correct reading sequence can be programmatically determined.",
- },
- "intent" :
- {
- "cat" : "",
- "es" : "",
- "en" : "The intent of this Success Criterion is to ensure that information and relationships that are implied by visual or auditory formatting are preserved when the presentation format changes. For example, the presentation format changes when the content is read by a screen reader or when a user style sheet is substituted for the style sheet provided by the author.",
- },
- "benefits" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "This Success Criterion helps people with different disabilities by allowing user agents to adapt content according to the needs of individual users.#Users who are blind (using a screen reader) benefit when information conveyed through color is also available in text (including text alternatives for images that use color to convey information).#Users who are deaf-blind using braille (text) refreshable displays may be unable to access color-dependent information.",
- },
- "verification" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "tools" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "category" : ["content"]
- },
-
- { // 1.3.2.
- "criteria" :
- {
- "cat" : "",
- "es" : "1.3.2 Secuencia significativa",
- "en" : "1.3.2 Meaningful Sequence",
- },
- "link" : "https://www.w3.org/TR/WCAG21/#meaningful-sequence",
- "level" : "A",
- "version" : "2.0",
- "goal" :
- {
- "cat" : "-",
- "es" : "Cuando la secuencia en la que se presenta el contenido afecta su significado, se puede determinar mediante programación una secuencia de lectura correcta.",
- "en" : "When the sequence in which content is presented affects its meaning, a correct reading sequence can be programmatically determined.",
- },
- "intent" :
- {
- "cat" : "",
- "es" : "",
- "en" : "The intent of this Success Criterion is to enable a user agent to provide an alternative presentation of content while preserving the reading order needed to understand the meaning. It is important that it be possible to programmatically determine at least one sequence of the content that makes sense. Content that does not meet this Success Criterion may confuse or disorient users when assistive technology reads the content in the wrong order, or when alternate style sheets or other formatting changes are applied.",
- },
- "benefits" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "This Success Criterion may help people who rely on assistive technologies that read content aloud. The meaning evident in the sequencing of the information in the default presentation will be the same when the content is presented in spoken form.",
- },
- "verification" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "tools" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "category" : ["structure"]
- },
-
- { // 1.3.3.
- "criteria" :
- {
- "cat" : "",
- "es" : "1.3.3 Características sensoriales",
- "en" : "1.3.3 Sensory Characteristics",
- },
- "link" : "https://www.w3.org/TR/WCAG21/#sensory-characteristics",
- "level" : "A",
- "version" : "2.0",
- "goal" :
- {
- "cat" : "-",
- "es" : "Las instrucciones proporcionadas para comprender y operar el contenido no se basan únicamente en las características sensoriales de los componentes, como la forma, el color, el tamaño, la ubicación visual, la orientación o el sonido.",
- "en" : "Instructions provided for understanding and operating content do not rely solely on sensory characteristics of components such as shape, color, size, visual location, orientation, or sound.",
- },
- "intent" :
- {
- "cat" : "",
- "es" : "",
- "en" : "The intent of this Success Criterion is to ensure that all users can access instructions for using the content, even when they cannot perceive shape or size or use information about spatial location or orientation. Some content relies on knowledge of the shape or position of objects that are not available from the structure of the content (for example, 'round button' or 'button to the right'). Some users with disabilities are not able to perceive shape or position due to the nature of the assistive technologies they use. This Success Criterion requires that additional information be provided to clarify anything that is dependent on this kind of information.",
- },
- "benefits" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "People who are blind and people who have low vision may not be able to understand information if it is conveyed by shape and/or location. Providing additional information other than shape and/or location will allow them to understand the information conveyed by shape and/or alone.",
- },
- "verification" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "tools" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "category" : ["content"]
- },
-
- { // 1.3.4.
- "criteria" :
- {
- "cat" : "",
- "es" : "1.3.4 Orientación",
- "en" : "1.3.4 Orientation",
- },
- "link" : "https://www.w3.org/TR/WCAG21/#orientation",
- "level" : "AA",
- "version" : "2.1",
- "goal" :
- {
- "cat" : "-",
- "es" : "El contenido no restringe su visualización y funcionamiento a una única orientación de visualización, como vertical u horizontal, a menos que sea esencial una orientación de visualización específica.",
- "en" : "Content does not restrict its view and operation to a single display orientation, such as portrait or landscape, unless a specific display orientation is essential.",
- },
- "intent" :
- {
- "cat" : "",
- "es" : "",
- "en" : "The intent of this Success Criterion is to ensure that content displays in the orientation (portrait or landscape) preferred by the user. Some websites and applications automatically set and restrict the screen to a particular display orientation and expect that users will respond by rotating their device to match, but this can create problems. Some users have their devices mounted in a fixed orientation (e.g. on the arm of a power wheelchair). Therefore, websites and applications need to support both orientations by not restricting the orientation. Changes in content or functionality due to the size of display are not covered by this criterion which is focused on restrictions of orientation.",
- },
- "benefits" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "Users with dexterity impairments, who have a mounted device will be able to use the content in their fixed orientation.#Users with low-vision will be able to view content in the orientation that works best for them, for example to increase the text size by viewing content in landscape.",
- },
- "verification" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "tools" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "category" : ["structure"]
- },
-
- { // 1.3.5.
- "criteria" :
- {
- "cat" : "",
- "es" : "1.3.5 Identificar el propósito de entrada",
- "en" : "1.3.5 Identify Input Purpose",
- },
- "link" : "https://www.w3.org/TR/WCAG21/#identify-input-purpose",
- "level" : "AA",
- "version" : "2.1",
- "goal" :
- {
- "cat" : "-",
- "es" : "El propósito de cada campo de entrada que recopila información sobre el usuario se puede determinar mediante programación cuando:<ul><li>El campo de entrada tiene un propósito identificado en la sección Propósitos de entrada para los componentes de la interfaz de usuario; y</li><li>El contenido se implementa utilizando tecnologías con soporte para identificar el significado esperado para los datos de entrada del formulario.</li></ul>",
- "en" : "The purpose of each input field collecting information about the user can be programmatically determined when:<ul><li>The input field serves a purpose identified in the Input Purposes for User Interface Components section; and</li><li>The content is implemented using technologies with support for identifying the expected meaning for form input data.</li></ul>",
- },
- "intent" :
- {
- "cat" : "",
- "es" : "",
- "en" : "The intent of this Success Criterion is to ensure that the purpose of a form input collecting information about the user can be programmatically determined, so that user agents can extract and present this purpose to users using different modalities. The ability to programmatically declare the specific kind of data expected in a particular field makes filling out forms easier, especially for people with cognitive disabilities.",
- },
- "benefits" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "People with language and memory related disabilities or disabilities that affects executive function and decision-making benefit from the browser auto-filling personal information (such as name or address) when the autocomplete attribute is used to meet this Success Criterion, which means information does not need to be remembered by the user.#People with cerebral palsy, stroke, head injury, motor neuron disease or learning disability sometimes prefer images for communication. They can employ assistive technology which adds icons to input fields to communicate the purpose of the fields visually.#People with motor impairments also benefit from reducing the need for manual input when filling out forms.",
- },
- "verification" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "tools" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "category" : ["forms-and-UI"]
- },
-
- { // 1.3.6.
- "criteria" :
- {
- "cat" : "",
- "es" : "1.3.6 Identificar Propósito",
- "en" : "1.3.6 Identify Purpose",
- },
- "link" : "https://www.w3.org/TR/WCAG21/#identify-purpose",
- "level" : "AAA",
- "version" : "2.1",
- "goal" :
- {
- "cat" : "-",
- "es" : "En el contenido implementado mediante lenguajes de marcado, el propósito de los componentes, iconos y regiones de la interfaz de usuario se puede determinar mediante programación.",
- "en" : "In content implemented using markup languages, the purpose of User Interface Components, icons, and regions can be programmatically determined.",
- },
- "intent" :
- {
- "cat" : "",
- "es" : "",
- "en" : "The intent of this Success Criterion is to ensure that the purpose of many elements on a page can be programmatically determined, so that user agents can extract and present that purpose to users using different modalities.#Many users with limited vocabularies rely on familiar terms or symbols in order to use the web. However, what is familiar to one user may not be familiar to another. When authors indicate the purpose, users can take advantage of personalization and user preferences to load a set of symbols or vocabulary familiar to them.#This Success Criterion requires the author to programmatically associate the purpose of icons, regions and components (such as buttons, links, and fields) so that user agents can determine the purpose of each and adapt indicators or terminology to make them understandable for the user. It is achieved by adding semantics or metadata that provide this context.#Identifying regions of the page allows people to remove or highlight regions with their user agent.#Products for people who are non-vocal often use symbols to help users communicate. These symbols are in fact people's language. Unfortunately, many of these symbols are both subject to copyright and not interoperable. That means end users can only use one device, and cannot use content, apps, or assistive technologies that have not been made by a single company.#This Success Criterion enables symbols to be interoperable so that symbol users can understand different content that was not just made by one company. When users' symbols are mapped to the same nodes, then user agents can load the user-understandable symbol. People can then buy the symbols and use them across different devices or applications. (Note that the symbols would still be proprietary, but they could then be interoperable.)",
- },
- "benefits" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "People who benefit have many different cognitive disabilities including:#Memory#Focus and attention#Language-related#Executive function and decision making.#Meeting this Success Criterion helps users who need extra support or a familiar interface, including the need for:#Symbols and graphics with which users are familiar#Fewer features and less cognitive overload#Keyboard shortcuts",
- },
- "verification" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "tools" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "category" : [""]
- },
-
- { // 1.4.1.
- "criteria" :
- {
- "cat" : "",
- "es" : "1.4.1 Uso del color",
- "en" : "1.4.1 Use of Color",
- },
- "link" : "https://www.w3.org/TR/WCAG21/#use-of-color",
- "level" : "A",
- "version" : "2.0",
- "goal" :
- {
- "cat" : "-",
- "es" : "El color no se utiliza como el único medio visual para transmitir información, indicar una acción, provocar una respuesta o distinguir un elemento visual.",
- "en" : "Color is not used as the only visual means of conveying information, indicating an action, prompting a response, or distinguishing a visual element.",
- },
- "intent" :
- {
- "cat" : "",
- "es" : "",
- "en" : "The intent of this Success Criterion is to ensure that all users can access information that is conveyed by color differences, that is, by the use of color where each color has a meaning assigned to it. If the information is conveyed through color differences in an image (or other non-text format), the color may not be seen by users with color deficiencies. In this case, providing the information conveyed with color through another visual means ensures users who cannot see color can still perceive the information.",
- },
- "benefits" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "Users with partial sight often experience limited color vision.#Some older users may not be able to see color well.#Users who have color-blindness benefit when information conveyed by color is available in other visual ways.#People using text-only, limited color, or monochrome displays may be unable to access color-dependent information.#Users who have problems distinguishing between colors can look or listen for text cues.#People using Braille displays or other tactile interfaces can detect text cues by touch.",
- },
- "verification" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "tools" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "category" : ["colour"]
- },
-
- { // 1.4.2.
- "criteria" :
- {
- "cat" : "",
- "es" : "1.4.2 Audio Control",
- "en" : "1.4.2 Audio Control",
- },
- "link" : "https://www.w3.org/TR/WCAG21/#audio-control",
- "level" : "A",
- "version" : "2.0",
- "goal" :
- {
- "cat" : "-",
- "es" : "Si cualquier audio en una página web se reproduce automáticamente durante más de 3 segundos, hay un mecanismo disponible para pausar o detener el audio, o hay un mecanismo disponible para controlar el volumen de audio independientemente del nivel de volumen general del sistema.",
- "en" : "If any audio on a Web page plays automatically for more than 3 seconds, either a mechanism is available to pause or stop the audio, or a mechanism is available to control audio volume independently from the overall system volume level.",
- },
- "intent" :
- {
- "cat" : "",
- "es" : "",
- "en" : "Individuals who use screen reading software can find it hard to hear the speech output if there is other audio playing at the same time. This difficulty is exacerbated when the screen reader's speech output is software based (as most are today) and is controlled via the same volume control as the sound. Therefore, it is important that the user be able to turn off the background sound. Note: Having control of the volume includes being able to reduce its volume to zero.",
- },
- "benefits" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "Individuals who use screen reading technologies can hear the screen reader without other sounds playing. This is especially important for those who are hard of hearing and for those whose screen readers use the system volume (so they cannot turn sound down and screen reader up).#This Success Criterion also benefits people who have difficulty focusing on visual content (including text) when audio is playing.",
- },
- "verification" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "tools" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "category" : ["audio-video"]
- },
-
- { // 1.4.3.
- "criteria" :
- {
- "cat" : "",
- "es" : "1.4.3 Contraste (Mínimo)",
- "en" : "1.4.3 Contrast (Minimum)",
- },
- "link" : "https://www.w3.org/TR/WCAG21/#contrast-minimum",
- "level" : "AA",
- "version" : "2.0",
- "goal" :
- {
- "cat" : "-",
- "es" : "La presentación visual de texto e imágenes de texto tiene una relación de contraste de al menos 4,5:1, excepto por lo siguiente:<ul><li>Texto grande: el texto a gran escala y las imágenes de texto a gran escala tienen una relación de contraste de al menos 3:1;</li><li>Incidental: texto o imágenes de texto que forman parte de un componente de interfaz de usuario inactivo, que son pura decoración, que no son visibles para nadie o que forman parte de una imagen que contiene otro contenido visual significativo, no tienen requisitos de contraste.</li><li>Logotipos: el texto que forma parte de un logotipo o marca no tiene requisitos de contraste.</li></ul>",
- "en" : "The visual presentation of text and images of text has a contrast ratio of at least 4.5:1, except for the following:<ul><li>Large Text : Large-scale text and images of large-scale text have a contrast ratio of at least 3:1;</li><li>Incidental : Text or images of text that are part of an inactive user interface component, that are pure decoration, that are not visible to anyone, or that are part of a picture that contains significant other visual content, have no contrast requirement.</li><li>Logotypes : Text that is part of a logo or brand name has no contrast requirement.</li></ul>",
- },
- "intent" :
- {
- "cat" : "",
- "es" : "",
- "en" : "The intent of this Success Criterion is to provide enough contrast between text and its background so that it can be read by people with moderately low vision (who do not use contrast-enhancing assistive technology). For people without color deficiencies, hue and saturation have minimal or no effect on legibility as assessed by reading performance (Knoblauch et al., 1991). Color deficiencies can affect luminance contrast somewhat. Therefore, in the recommendation, the contrast is calculated in such a way that color is not a key factor so that people who have a color vision deficit will also have adequate contrast between the text and the background.#Text that is decorative and conveys no information is excluded. For example, if random words are used to create a background and the words could be rearranged or substituted without changing meaning, then it would be decorative and would not need to meet this criterion.",
- },
- "benefits" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "People with low vision often have difficulty reading text that does not contrast with its background. This can be exacerbated if the person has a color vision deficiency that lowers the contrast even further. Providing a minimum luminance contrast ratio between the text and its background can make the text more readable even if the person does not see the full range of colors. It also works for the rare individuals who see no color.",
- },
- "verification" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "tools" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "category" : ["font-size", "structure"]
- },
-
- { // 1.4.4.
- "criteria" :
- {
- "cat" : "",
- "es" : "1.4.4 Cambiar el tamaño del texto",
- "en" : "1.4.4 Resize text",
- },
- "link" : "https://www.w3.org/TR/WCAG21/#resize-text",
- "level" : "AA",
- "version" : "2.0",
- "goal" :
- {
- "cat" : "-",
- "es" : "A excepción de los subtítulos y las imágenes de texto, el texto se puede cambiar de tamaño sin tecnología de asistencia hasta en un 200 por ciento sin pérdida de contenido o funcionalidad.",
- "en" : "Except for captions and images of text, text can be resized without assistive technology up to 200 percent without loss of content or functionality.",
- },
- "intent" :
- {
- "cat" : "",
- "es" : "",
- "en" : "The intent of this Success Criterion is to ensure that visually rendered text, including text-based controls (text characters that have been displayed so that they can be seen [vs. text characters that are still in data form such as ASCII]) can be scaled successfully so that it can be read directly by people with mild visual disabilities, without requiring the use of assistive technology such as a screen magnifier. Users may benefit from scaling all content on the Web page, but text is most critical.",
- },
- "benefits" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "This Success Criterion helps people with low vision by letting them increase text size in content so that they can read it.",
- },
- "verification" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "tools" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "category" : ["font-size", "structure"]
- },
-
- { // 1.4.5.
- "criteria" :
- {
- "cat" : "",
- "es" : "1.4.5 Imágenes de texto",
- "en" : "1.4.5 Images of Text",
- },
- "link" : "https://www.w3.org/TR/WCAG21/#images-of-text",
- "level" : "AA",
- "version" : "2.0",
- "goal" :
- {
- "cat" : "-",
- "es" : "Si las tecnologías que se utilizan pueden lograr la presentación visual, se utiliza texto para transmitir información en lugar de imágenes de texto, excepto por lo siguiente:<ul><li>Personalizable: la imagen del texto se puede personalizar visualmente según los requisitos del usuario;</li><li>Esencial: una presentación particular del texto es esencial para la información que se transmite.</li></ul>",
- "en" : "If the technologies being used can achieve the visual presentation, text is used to convey information rather than images of text except for the following: <ul><li>Customizable : The image of text can be visually customized to the user's requirements;</li><li>Essential : A particular presentation of text is essential to the information being conveyed.</li></ul>",
- },
- "intent" :
- {
- "cat" : "",
- "es" : "",
- "en" : "The intent of this Success Criterion is to encourage authors, who are using technologies which are capable of achieving their desired default visual presentation, to enable people who require a particular visual presentation of text to be able to adjust the text presentation as needed. This includes people who require the text in a particular font size, foreground and background color, font family, line spacing or alignment.",
- },
- "benefits" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "People with low vision (who may have trouble reading the text with the authored font family, size and/or color).#People with visual tracking problems (who may have trouble reading the text with the authored line spacing and/or alignment).#People with cognitive disabilities that affect reading.",
- },
- "verification" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "tools" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "category" : ["content"]
- },
-
- { // 1.4.6.
- "criteria" :
- {
- "cat" : "",
- "es" : "1.4.6 Contraste (mejorado)",
- "en" : "1.4.6 Contrast (Enhanced)",
- },
- "link" : "https://www.w3.org/TR/WCAG21/#contrast-enhanced",
- "level" : "AAA",
- "version" : "2.1",
- "goal" :
- {
- "cat" : "-",
- "es" : " La presentación visual de texto e imágenes de texto tiene una relación de contraste de al menos 7:1, excepto por lo siguiente:<ul><li>Texto grande: el texto a gran escala y las imágenes de texto a gran escala tienen una relación de contraste de al menos 4,5:1;</li><li>Incidental: texto o imágenes de texto que forman parte de un componente de interfaz de usuario inactivo, que son pura decoración, que no son visibles para nadie o que forman parte de una imagen que contiene otro contenido visual significativo, no tienen requisitos de contraste.</li><li>Logotipos: El texto que forma parte de un logotipo o marca no tiene requisitos de contraste.</li></ul>",
- "en" : "The visual presentation of text and images of text has a contrast ratio of at least 7:1, except for the following: <ul><li>Large Text : Large-scale text and images of large-scale text have a contrast ratio of at least 4.5:1;</li><li>Incidental : Text or images of text that are part of an inactive user interface component, that are pure decoration, that are not visible to anyone, or that are part of a picture that contains significant other visual content, have no contrast requirement.</li><li>Logotypes: Text that is part of a logo or brand name has no contrast requirement.</li></ul>",
- },
- "intent" :
- {
- "cat" : "",
- "es" : "",
- "en" : "The intent of this Success Criterion is to provide enough contrast between text and its background so that it can be read by people with moderately low vision (who do not use contrast-enhancing assistive technology). For people without color deficiencies, hue and saturation have minimal or no effect on legibility as assessed by reading performance (Knoblauch et al., 1991). Color deficiencies can affect luminance contrast somewhat. Therefore, in the recommendation, the contrast is calculated in such a way that color is not a key factor so that people who have a color vision deficit will also have adequate contrast between the text and the background.",
- },
- "benefits" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "People with low vision often have difficulty reading text that does not contrast with its background. This can be exacerbated if the person has a color vision deficiency that lowers the contrast even further. Providing a minimum luminance contrast ratio between the text and its background can make the text more readable even if the person does not see the full range of colors. It also works for the rare individuals who see no color.",
- },
- "verification" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "tools" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "category" : [""]
- },
-
- { // 1.4.7.
- "criteria" :
- {
- "cat" : "",
- "es" : "1.4.7 Audio de fondo bajo o nulo",
- "en" : "1.4.7 Low or No Background Audio",
- },
- "link" : "https://www.w3.org/TR/WCAG21/#low-or-no-background-audio",
- "level" : "AAA",
- "version" : "2.1",
- "goal" :
- {
- "cat" : "-",
- "es" : "Para contenido pregrabado de solo audio que (1) contiene principalmente voz en primer plano, (2) no es un CAPTCHA de audio ni un logotipo de audio, y (3) no es una vocalización destinada a ser principalmente una expresión musical, como cantar o rapear, al menos uno de los siguientes es verdadero:<ul><li>Sin fondo: el audio no contiene sonidos de fondo.</li><li>Apagar: los sonidos de fondo se pueden apagar.</li><li>20 dB : Los sonidos de fondo son al menos 20 decibeles más bajos que el contenido del habla en primer plano, con la excepción de sonidos ocasionales que duran solo uno o dos segundos.</li></ul>",
- "en" : "For prerecorded audio-only content that (1) contains primarily speech in the foreground, (2) is not an audio CAPTCHA or audio logo, and (3) is not vocalization intended to be primarily musical expression such as singing or rapping, at least one of the following is true: <ul><li>No Background : The audio does not contain background sounds.</li><li>Turn Off : The background sounds can be turned off.</li><li>20 dB : The background sounds are at least 20 decibels lower than the foreground speech content, with the exception of occasional sounds that last for only one or two seconds.</li></ul>",
- },
- "intent" :
- {
- "cat" : "",
- "es" : "",
- "en" : "The intent of this Success Criterion is to ensure that any non-speech sounds are low enough that a user who is hard of hearing can separate the speech from background sounds or other noise foreground speech content.",
- },
- "benefits" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "People who are hard of hearing often have great difficulty separating speech from background sound.",
- },
- "verification" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "tools" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "category" : [""]
- },
-
- { // 1.4.8.
- "criteria" :
- {
- "cat" : "",
- "es" : "1.4.8 Presentación visual",
- "en" : "1.4.8 Visual Presentation",
- },
- "link" : "https://www.w3.org/TR/WCAG21/#visual-presentation",
- "level" : "AAA",
- "version" : "2.1",
- "goal" :
- {
- "cat" : "-",
- "es" : "Para la presentación visual de bloques de texto, hay un mecanismo disponible para lograr lo siguiente:<ul><li>El usuario puede seleccionar los colores de primer plano y de fondo.</li><li>El ancho no supera los 80 caracteres o glifos (40 si es CJK).</li><li>El texto no está justificado (alineado a los márgenes izquierdo y derecho).</li><li>El interlineado (interlineado) es al menos de espacio y medio dentro de los párrafos, y el interlineado es al menos 1,5 veces mayor que el interlineado.</li><li>El texto se puede cambiar de tamaño sin tecnología de asistencia hasta en un 200 por ciento de una manera que no requiere que el usuario se desplace horizontalmente para leer una línea de texto en una ventana de pantalla completa.</li></ul>",
- "en" : "For the visual presentation of blocks of text, a mechanism is available to achieve the following:<ul><li>Foreground and background colors can be selected by the user.</li><li>Width is no more than 80 characters or glyphs (40 if CJK).</li><li>Text is not justified (aligned to both the left and the right margins).</li><li>Line spacing (leading) is at least space-and-a-half within paragraphs, and paragraph spacing is at least 1.5 times larger than the line spacing.</li><li>Text can be resized without assistive technology up to 200 percent in a way that does not require the user to scroll horizontally to read a line of text on a full-screen window.</li></ul>",
- },
- "intent" :
- {
- "cat" : "",
- "es" : "",
- "en" : "The intent of this Success Criterion is to ensure that visually rendered text is presented in such a manner that it can be perceived without its layout interfering with its readability. People with some cognitive, language and learning disabilities and some low vision users cannot perceive the text and/or lose their reading place if the text is presented in a manner that is difficult for them to read.",
- },
- "benefits" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "This Success Criterion helps low vision users by letting them see text without distracting presentational features. It lets them configure text in ways that will be easier for them to see by letting them control the color and size of blocks of text.#This Success Criterion helps people with cognitive, language and learning disabilities perceive text and track their location within blocks of text.#People with some cognitive disabilities can read text better when they select their own foreground and background color combinations.#People with some cognitive disabilities can track their locations more easily when blocks of text are narrow and when they can configure the amount of space between lines and paragraphs.#People with some cognitive disabilities can read text more easily when the spacing between words is regular.",
- },
- "verification" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "tools" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "category" : [""]
- },
-
- { // 1.4.9.
- "criteria" :
- {
- "cat" : "",
- "es" : "1.4.9 Imágenes de texto (sin excepción",
- "en" : "1.4.9 Images of Text (No Exception)",
- },
- "link" : "https://www.w3.org/TR/WCAG21/#images-of-text-no-exception",
- "level" : "AAA",
- "version" : "2.1",
- "goal" :
- {
- "cat" : "-",
- "es" : "Las imágenes de texto solo se utilizan para decoración pura o cuando una presentación particular del texto es esencial para la información que se transmite.",
- "en" : "Images of text are only used for pure decoration or where a particular presentation of text is essential to the information being conveyed.",
- },
- "intent" :
- {
- "cat" : "",
- "es" : "",
- "en" : "The intent of this Success Criterion is to enable people who require a particular visual presentation of text to be able to adjust the text presentation as required. This includes people who require the text in a particular font size, foreground and background color, font family, line spacing or alignment.",
- },
- "benefits" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "A quote.#Navigation items.#A logo containing text.#Representation of a font family.#A representation of a letter.#Symbolic text characters.",
- },
- "verification" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "tools" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "category" : [""]
- },
-
- { // 1.4.10.
- "criteria" :
- {
- "cat" : "",
- "es" : "1.4.10 Reflujo",
- "en" : "1.4.10 Reflow",
- },
- "link" : "https://www.w3.org/TR/WCAG21/#reflow",
- "level" : "AA",
- "version" : "2.1",
- "goal" :
- {
- "cat" : "-",
- "es" : "El contenido se puede presentar sin pérdida de información o funcionalidad, y sin necesidad de desplazarse en dos dimensiones para:<ul><li>Contenido de desplazamiento vertical con un ancho equivalente a 320 píxeles CSS;</li><li>Contenido de desplazamiento horizontal a una altura equivalente a 256 píxeles CSS.</li></ul>Excepto por partes del contenido que requieren un diseño bidimensional para su uso o significado.",
- "en" : "Content can be presented without loss of information or functionality, and without requiring scrolling in two dimensions for:<ul><li>Vertical scrolling content at a width equivalent to 320 CSS pixels;</li><li>Horizontal scrolling content at a height equivalent to 256 CSS pixels.</li></ul>Except for parts of the content which require two-dimensional layout for usage or meaning.",
- },
- "intent" :
- {
- "cat" : "",
- "es" : "",
- "en" : "The intent of this Success Criterion is to support people with low vision who need to enlarge text and read it in a single column. When the browser zoom is used to scale content to 400%, it reflows - i.e., it is presented in one column so that scrolling in more than one direction is not necessary.",
- },
- "benefits" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "One column view in responsive design. A site uses responsive design. When a person zooms in to over 300%, the layout is reflowed to one column. The user can read the content easily and does not have to scroll sideways to read.#PDF offering reflow. In a PDF created to conform to PDF/Universal Accessibility (ISO 14289), the content can be reflowed and zoomed in to make reading possible for someone with low-vision.",
- },
- "verification" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "tools" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "category" : ["structure"]
- },
-
- { // 1.4.11.
- "criteria" :
- {
- "cat" : "",
- "es" : "1.4.11 Contraste sin texto",
- "en" : "1.4.11 Non-text Contrast",
- },
- "link" : "https://www.w3.org/TR/WCAG21/#non-text-contrast",
- "level" : "AA",
- "version" : "2.1",
- "goal" :
- {
- "cat" : "-",
- "es" : " La presentación visual de lo siguiente tiene una relación de contraste de al menos 3:1 frente a los colores adyacentes:<ul><li>Componentes de la interfaz de usuario: información visual necesaria para identificar los componentes y estados de la interfaz de usuario, excepto los componentes inactivos o cuando la apariencia del componente la determina el agente de usuario y el autor no la modifica;</li><li>Objetos gráficos: Partes de gráficos necesarios para comprender el contenido, excepto cuando una presentación particular de gráficos es esencial para la información que se transmite.</li></ul>",
- "en" : "The visual presentation of the following have a contrast ratio of at least 3:1 against adjacent color(s):<ul><li>User Interface Components : Visual information required to identify user interface components and states, except for inactive components or where the appearance of the component is determined by the user agent and not modified by the author;</li><li>Graphical Objects : Parts of graphics required to understand the content, except when a particular presentation of graphics is essential to the information being conveyed.</li></ul>",
- },
- "intent" :
- {
- "cat" : "",
- "es" : "",
- "en" : "The intent of this Success Criterion is to ensure that active user interface components (i.e., controls) and meaningful graphics are distinguishable by people with moderately low vision. The requirements and rationale are similar to those for large text in 1.4.3 Contrast (Minimum).#Low contrast controls are more difficult to perceive, and may be completely missed by people with a visual impairment. Similarly, if a graphic is needed to understand the content or functionality of the webpage then it should be perceivable by people with low vision or other impairments without the need for contrast-enhancing assistive technology.",
- },
- "benefits" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "People with low vision often have difficulty perceiving graphics that have insufficient contrast. This can be exacerbated if the person has a color vision deficiency that lowers the contrast even further. Providing a relative luminance (lightness difference) of 3:1 or greater can make these items more distinguishable when the person does not see a full range of colors.",
- },
- "verification" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "tools" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "category" : ["colour", "forms-and-UI"]
- },
-
- { // 1.4.12.
- "criteria" :
- {
- "cat" : "",
- "es" : "1.4.12 Espaciado de texto",
- "en" : "1.4.12 Text Spacing",
- },
- "link" : "https://www.w3.org/TR/WCAG21/#text-spacing",
- "level" : "AA",
- "version" : "2.1",
- "goal" :
- {
- "cat" : "-",
- "es" : "En el contenido implementado mediante lenguajes de marcado que admiten las siguientes propiedades de estilo de texto, no se produce pérdida de contenido o funcionalidad al configurar todo lo siguiente y no cambiar ninguna otra propiedad de estilo:<ul><li>Altura de línea (interlineado) a al menos 1,5 veces el tamaño de fuente;</li><li>Espaciar los siguientes párrafos al menos 2 veces el tamaño de la fuente;</li><li>Espaciado entre letras (seguimiento) de al menos 0,12 veces el tamaño de la fuente;</li><li>Espaciado entre palabras de al menos 0,16 veces el tamaño de la fuente.</li></ul>Excepción: los lenguajes humanos y las escrituras que no usan una o más de estas propiedades de estilo de texto en el texto escrito pueden conformarse usando solo las propiedades que existen para esa combinación de lenguaje y escritura.",
- "en" : "In content implemented using markup languages that support the following text style properties, no loss of content or functionality occurs by setting all of the following and by changing no other style property:<ul><li>Line height (line spacing) to at least 1.5 times the font size;</li><li>Spacing following paragraphs to at least 2 times the font size;</li><li>Letter spacing (tracking) to at least 0.12 times the font size;</li><li>Word spacing to at least 0.16 times the font size.</li></ul>Exception: Human languages and scripts that do not make use of one or more of these text style properties in written text can conform using only the properties that exist for that combination of language and script.",
- },
- "intent" :
- {
- "cat" : "",
- "es" : "",
- "en" : "The intent of this Success Criterion (SC) is to ensure that people can override author specified text spacing to improve their reading experience. Each of the requirements stipulated in the SC's four bullets helps ensure text styling can be adapted by the user to suit their needs.#The specified metrics set a minimum baseline. The values in between the author's metrics and the metrics specified in this SC should not have loss of content or functionality.#This SC focuses on the ability to increase spacing between lines, words, letters, and paragraphs. Any combination of these may assist a user with effectively reading text. As well, ensuring users can override author settings for spacing also significantly increases the likelihood other style preferences can be set by the user. For example, a user may need to change to a wider font family than the author has set in order to effectively read text.",
- },
- "benefits" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "People with low vision who require increased space between lines, words, and letters are able to read text.#People with dyslexia may increase space between lines, words, and letters to increase reading speed.#Although not required by this SC, white space between blocks of text can help people with cognitive disabilities discern sections and call out boxes.",
- },
- "verification" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "tools" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "category" : ["structure"]
- },
-
- { // 1.4.13.
- "criteria" :
- {
- "cat" : "",
- "es" : "1.4.13 Contenido al pasar el mouse o enfocar",
- "en" : "1.4.13 Content on Hover or Focus",
- },
- "link" : "https://www.w3.org/TR/WCAG21/#content-on-hover-or-focus",
- "level" : "AA",
- "version" : "2.1",
- "goal" :
- {
- "cat" : "-",
- "es" : "Donde recibir y luego quitar el puntero o el foco del teclado desencadena contenido adicional para que se vuelva visible y luego se oculte, lo siguiente es cierto:<ul><li>Desechable: hay un mecanismo disponible para descartar el contenido adicional sin mover el puntero o el foco del teclado, a menos que el contenido adicional comunique un error de entrada o no oculte o reemplace otro contenido;</li><li>Hoverable: si el puntero puede activar el contenido adicional, entonces el puntero se puede mover sobre el contenido adicional sin que desaparezca el contenido adicional;</li><li>Persistente: el contenido adicional permanece visible hasta que se elimina el disparador de desplazamiento o enfoque, el usuario lo descarta o su información ya no es válida.</li></ul>Excepción: la presentación visual del contenido adicional está controlada por el agente de usuario y no es modificada por el autor.",
- "en" : "Where receiving and then removing pointer hover or keyboard focus triggers additional content to become visible and then hidden, the following are true:<ul><li>Dismissable : A mechanism is available to dismiss the additional content without moving pointer hover or keyboard focus, unless the additional content communicates an input error or does not obscure or replace other content;</li><li>Hoverable : If pointer hover can trigger the additional content, then the pointer can be moved over the additional content without the additional content disappearing;</li><li>Persistent : The additional content remains visible until the hover or focus trigger is removed, the user dismisses it, or its information is no longer valid.</li></ul>Exception: The visual presentation of the additional content is controlled by the user agent and is not modified by the author.",
- },
- "intent" :
- {
- "cat" : "",
- "es" : "",
- "en" : "Additional content that appears and disappears in coordination with keyboard focus or pointer hover often leads to accessibility issues. Reasons for such issues include:#The user may not have intended to trigger the interaction.#The user may not know new content has appeared.#The new content may intefere with a user's ability to do a task",
- },
- "benefits" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "Users with low vision who view content under magnification will be better able to view content on hover or focus without reducing their desired magnification.#Users who increase the size of mouse cursors via platform settings or assistive technology will be able to employ a technique to view obscured content on hover.#Users with low vision or cognitive disabilities will have adequate time to perceive additional content appearing on hover or focus and to view the trigger content with less distraction.#Users with low pointer accuracy will be able to more easily dismiss unintentionally-triggered additional content",
- },
- "verification" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "tools" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "category" : ["dynamic-content", "keyboard"]
- },
-
- { // 2.1.1.
- "criteria" :
- {
- "cat" : "",
- "es" : "2.1.1 Teclado",
- "en" : "2.1.1 Keyboard",
- },
- "link" : "https://www.w3.org/TR/WCAG21/#keyboard",
- "level" : "A",
- "version" : "2.0",
- "goal" :
- {
- "cat" : "-",
- "es" : "Toda la funcionalidad del contenido se puede operar a través de una interfaz de teclado sin requerir tiempos específicos para pulsaciones de teclas individuales, excepto cuando la función subyacente requiere una entrada que depende de la ruta de movimiento del usuario y no solo de los puntos finales.",
- "en" : "All functionality of the content is operable through a keyboard interface without requiring specific timings for individual keystrokes, except where the underlying function requires input that depends on the path of the user's movement and not just the endpoints.",
- },
- "intent" :
- {
- "cat" : "",
- "es" : "",
- "en" : "The intent of this Success Criterion is to ensure that, wherever possible, content can be operated through a keyboard or keyboard interface (so an alternate keyboard can be used). When content can be operated through a keyboard or alternate keyboard, it is operable by people with no vision (who cannot use devices such as mice that require eye-hand coordination) as well as by people who must use alternate keyboards or input devices that act as keyboard emulators. Keyboard emulators include speech input software, sip-and-puff software, on-screen keyboards, scanning software and a variety of assistive technologies and alternate keyboards. Individuals with low vision also may have trouble tracking a pointer and find the use of software much easier (or only possible) if they can control it from the keyboard.",
- },
- "benefits" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "People who are blind (who cannot use devices such as mice that require eye-hand coordination).#People with low vision (who may have trouble finding or tracking a pointer indicator on screen).#Some people with hand tremors find using a mouse very difficult and therefore usually use a keyboard.",
- },
- "verification" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "tools" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "category" : ["custom-controls", "forms-and-UI", "keyboard"]
- },
-
- { // 2.1.2.
- "criteria" :
- {
- "cat" : "",
- "es" : "2.1.2 Sin trampa de teclado",
- "en" : "2.1.2 No Keyboard Trap",
- },
- "link" : "https://www.w3.org/TR/WCAG21/#no-keyboard-trap",
- "level" : "A",
- "version" : "2.0",
- "goal" :
- {
- "cat" : "-",
- "es" : "Si el foco del teclado se puede mover a un componente de la página usando una interfaz de teclado, entonces el foco se puede alejar de ese componente usando solo una interfaz de teclado y, si requiere más que teclas de flecha o de tabulación sin modificar u otros métodos de salida estándar, se informa al usuario del método para alejar el foco.",
- "en" : "If keyboard focus can be moved to a component of the page using a keyboard interface, then focus can be moved away from that component using only a keyboard interface, and, if it requires more than unmodified arrow or tab keys or other standard exit methods, the user is advised of the method for moving focus away.",
- },
- "intent" :
- {
- "cat" : "",
- "es" : "",
- "en" : "The intent of this Success Criterion is to ensure that that content does not 'trap' keyboard focus within subsections of content on a Web page. This is a common problem when multiple formats are combined within a page and rendered using plug-ins or embedded applications.#There may be times when the functionality of the Web page restricts the focus to a subsection of the content, as long as the user knows how to leave that state and 'untrap' the focus",
- },
- "benefits" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "People who rely on a keyboard or keyboard interface to use the Web including people who are blind and people with physical disabilities.",
- },
- "verification" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "tools" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "category" : ["keyboard"]
- },
-
- { // 2.1.3.
- "criteria" :
- {
- "cat" : "",
- "es" : "2.1.3 Teclado (sin excepción)",
- "en" : "2.1.3 Keyboard (No Exception)",
- },
- "link" : "https://www.w3.org/TR/WCAG21/#keyboard-no-exception",
- "level" : "AAA",
- "version" : "2.1",
- "goal" :
- {
- "cat" : "-",
- "es" : "Toda la funcionalidad del contenido se puede operar a través de una interfaz de teclado sin requerir tiempos específicos para pulsaciones de teclas individuales.",
- "en" : "All functionality of the content is operable through a keyboard interface without requiring specific timings for individual keystrokes.",
- },
- "intent" :
- {
- "cat" : "",
- "es" : "",
- "en" : "The intent of this Success Criterion is to ensure that all content is operable from the keyboard. This is the same as Success Criterion 2.1.1, except that no exceptions are allowed. This does not mean that content where the underlying function requires input that depends on the path of the user's movement and not just the endpoints (excluded from the requirements of 2.1.1) must be made keyboard accessible. Rather, it means that content that uses path-dependent input cannot conform to this Success Criterion and therefore cannot meet Guideline 2.1 at Level AAA.",
- },
- "benefits" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "verification" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "tools" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "category" : [""]
- },
-
- { // 2.1.4.
- "criteria" :
- {
- "cat" : "",
- "es" : "2.1.4 Accesos directos de teclas de caracteres",
- "en" : "2.1.4 Character Key Shortcuts",
- },
- "link" : "https://www.w3.org/TR/WCAG21/#character-key-shortcuts",
- "level" : "A",
- "version" : "2.1",
- "goal" :
- {
- "cat" : "-",
- "es" : "Si se implementa un atajo de teclado en el contenido usando solo letras (incluidas letras mayúsculas y minúsculas), signos de puntuación, números o símbolos, entonces al menos uno de los siguientes es verdadero:<ul><li>Desactivar: Hay un mecanismo disponible para desactivar el atajo;</li><li>Reasignación: hay un mecanismo disponible para reasignar el atajo para usar uno o más caracteres de teclado no imprimibles (por ejemplo, Ctrl, Alt, etc.);</li><li>Activo solo en el foco: el método abreviado de teclado para un componente de la interfaz de usuario solo está activo cuando ese componente tiene el foco.</li></ul>",
- "en" : "If a keyboard shortcut is implemented in content using only letter (including upper- and lower-case letters), punctuation, number, or symbol characters, then at least one of the following is true:<ul><li>Turn off : A mechanism is available to turn the shortcut off;</li><li>Remap : A mechanism is available to remap the shortcut to use one or more non-printable keyboard characters (e.g. Ctrl, Alt, etc);</li><li>Active only on focus : The keyboard shortcut for a user interface component is only active when that component has focus.</li></ul>",
- },
- "intent" :
- {
- "cat" : "",
- "es" : "",
- "en" : "The intent of this Success Crition is to reduce accidental activation of keyboard shortcuts. Character key shortcuts work well for many keyboard users, but are inappropriate and frustrating for speech input users — whose means of input is strings of letters — and for keyboard users who are prone to accidentally hit keys. To rectify this issue, authors need to allow users to turn off or reconfigure shortcuts that are made up of only character keys.",
- },
- "benefits" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "Speech users will be able to turn off single-key shortcuts so they can avoid accidentally firing batches of them at once. This will allow speech users to make full use of programs that offer single-key shortcuts to keyboard users.#Keyboard-only users who have dexterity challenges can also be prone to accidentally hitting keys. Those users would be able to avoid problematic single character shortcuts by turning them off or modifying them to include at least one non-character key.#Allowing all shortcut keys to be remapped can help users with some cognitive disabilities, since the same shortcuts can be assigned to perform the same actions across different applications.",
- },
- "verification" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "tools" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "category" : ["keyboard"]
- },
-
- { // 2.2.1.
- "criteria" :
- {
- "cat" : "",
- "es" : "2.2.1 Temporización ajustable",
- "en" : "2.2.1 Timing Adjustable",
- },
- "link" : "https://www.w3.org/TR/WCAG21/#timing-adjustable",
- "level" : "A",
- "version" : "2.0",
- "goal" :
- {
- "cat" : "-",
- "es" : "Para cada límite de tiempo establecido por el contenido, al menos uno de los siguientes es verdadero:<ul><li>Desactivar: el usuario puede desactivar el límite de tiempo antes de encontrarlo; o</li><li>Ajustar: el usuario puede ajustar el límite de tiempo antes de encontrarlo en un amplio rango que es al menos diez veces la duración de la configuración predeterminada; o</li><li>Extender: se advierte al usuario antes de que expire el tiempo y se le otorgan al menos 20 segundos para extender el límite de tiempo con una simple acción (por ejemplo, 'presionar la barra espaciadora'), y el usuario puede extender el límite de tiempo al menos diez veces ; o</li><li>Excepción en tiempo real: el límite de tiempo es una parte requerida de un evento en tiempo real (por ejemplo, una subasta), y no es posible ninguna alternativa al límite de tiempo; o</li><li>Excepción Esencial: El límite de tiempo es esencial y ampliarlo invalidaría la actividad; o</li><li>Excepción de 20 horas: el límite de tiempo es superior a 20 horas.</li></ul>",
- "en" : "For each time limit that is set by the content, at least one of the following is true:<ul><li>Turn off : The user is allowed to turn off the time limit before encountering it; or</li><li>Adjust : The user is allowed to adjust the time limit before encountering it over a wide range that is at least ten times the length of the default setting; or</li><li>Extend : The user is warned before time expires and given at least 20 seconds to extend the time limit with a simple action (for example, 'press the space bar'), and the user is allowed to extend the time limit at least ten times; or</li><li>Real-time Exception : The time limit is a required part of a real-time event (for example, an auction), and no alternative to the time limit is possible; or</li><li>Essential Exception : The time limit is essential and extending it would invalidate the activity; or</li><li>20 Hour Exception : The time limit is longer than 20 hours.</li></ul>",
- },
- "intent" :
- {
- "cat" : "",
- "es" : "",
- "en" : "The intent of this Success Criterion is to ensure that users with disabilities are given adequate time to interact with Web content whenever possible. People with disabilities such as blindness, low vision, dexterity impairments, and cognitive limitations may require more time to read content or to perform functions such as filling out on-line forms. If Web functions are time-dependent, it will be difficult for some users to perform the required action before a time limit occurs. This may render the service inaccessible to them. Designing functions that are not time-dependent will help people with disabilities succeed at completing these functions. Providing options to disable time limits, customize the length of time limits, or request more time before a time limit occurs helps those users who require more time than expected to successfully complete tasks. These options are listed in the order that will be most helpful for the user. Disabling time limits is better than customizing the length of time limits, which is better than requesting more time before a time limit occurs.",
- },
- "benefits" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "People with physical disabilities often need more time to react, to type and to complete activities. People with low vision need more time to locate things on screen and to read. People who are blind and using screen readers may need more time to understand screen layouts, to find information and to operate controls. People who have cognitive or language limitations need more time to read and to understand. People who are deaf and communicate in sign language may need more time to read information printed in text (which may be a second language for some).#In circumstances where a sign-language interpreter may be relating audio content to a user who is deaf, control over time limits is also important.#People with reading disabilities, cognitive limitations, and learning disabilities who may need more time to read or comprehend information can have additional time to read the information by pausing the content.",
- },
- "verification" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "tools" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "category" : ["dynamic-content"]
- },
-
- { // 2.2.2.
- "criteria" :
- {
- "cat" : "",
- "es" : "2.2.2 Pausa Detener Ocultar",
- "en" : "2.2.2 Pause Stop Hide",
- },
- "link" : "https://www.w3.org/TR/WCAG21/#pause-stop-hide",
- "level" : "A",
- "version" : "2.0",
- "goal" :
- {
- "cat" : "-",
- "es" : "Para información en movimiento, parpadeo, desplazamiento o actualización automática, todo lo siguiente es verdadero:<ul><li>Movimiento, parpadeo, desplazamiento: para cualquier información en movimiento, parpadeo o desplazamiento que (1) se inicie automáticamente, (2) dure más de cinco segundos y (3) se presente en paralelo con otro contenido, existe un mecanismo para que el usuario pausarlo, detenerlo u ocultarlo a menos que el movimiento, parpadeo o desplazamiento sea parte de una actividad en la que sea esencial; y</li><li>Actualización automática: para cualquier información de actualización automática que (1) se inicie automáticamente y (2) se presente en paralelo con otro contenido, existe un mecanismo para que el usuario la pause, la detenga, la oculte o controle la frecuencia de la actualizar a menos que la actualización automática sea parte de una actividad donde sea esencial.</li></ul>",
- "en" : "For moving, blinking, scrolling, or auto-updating information, all of the following are true:<ul><li>Moving, blinking, scrolling : For any moving, blinking or scrolling information that (1) starts automatically, (2) lasts more than five seconds, and (3) is presented in parallel with other content, there is a mechanism for the user to pause, stop, or hide it unless the movement, blinking, or scrolling is part of an activity where it is essential; and</li><li>Auto-updating : For any auto-updating information that (1) starts automatically and (2) is presented in parallel with other content, there is a mechanism for the user to pause, stop, or hide it or to control the frequency of the update unless the auto-updating is part of an activity where it is essential.</li></ul>",
- },
- "intent" :
- {
- "cat" : "",
- "es" : "",
- "en" : "The intent of this Success Criterion is to avoid distracting users during their interaction with a Web page.",
- },
- "benefits" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "Providing content that stops blinking after five seconds or providing a mechanism for users to stop blinking content allows people with certain disabilities to interact with the Web page.#One use of content that blinks is to draw the visitor's attention to that content. Although this is an effective technique for all users with vision, it can be a problem for some users if it persists. For certain groups, including people with low literacy, reading and intellectual disabilities, and people with attention deficit disorders, content that blinks may make it difficult or even impossible to interact with the rest of the Web page.",
- },
- "verification" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "tools" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "category" : ["dynamic-content"]
- },
-
- { // 2.2.3.
- "criteria" :
- {
- "cat" : "",
- "es" : "2.3.2 Tres destellos",
- "en" : "2.3.2 Three Flashes",
- },
- "link" : "https://www.w3.org/TR/WCAG21/#no-timing",
- "level" : "AAA",
- "version" : "2.0",
- "goal" :
- {
- "cat" : "-",
- "es" : "El tiempo no es una parte esencial del evento o actividad presentado por el contenido, a excepción de los medios sincronizados no interactivos y los eventos en tiempo real.",
- "en" : "Timing is not an essential part of the event or activity presented by the content, except for non-interactive synchronized media and real-time events.",
- },
- "intent" :
- {
- "cat" : "",
- "es" : "",
- "en" : "The intent of this Success Criterion is to minimize the occurrence of content that requires timed interaction. This enables people with blindness, low vision, cognitive limitations, or motor impairments to interact with content. This differs from the Level A Success Criterion in that the only exception is for real-time events.",
- },
- "benefits" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "People with physical disabilities often need more time to react, to type and to complete activities. People with low vision need more time to locate things on screen and to read. People who are blind and using screen readers may need more time to understand screen layouts, to find information and to operate controls. People who have cognitive or language limitations need more time to read and to understand. People who are deaf and communicate in sign language may need more time to read information printed in text (which may be a second language for some).#In circumstances where a sign-language interpreter may be relating audio content to a user who is deaf, control over time limits is also important.",
- },
- "verification" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "tools" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "category" : [""]
- },
-
- { // 2.2.4.
- "criteria" :
- {
- "cat" : "",
- "es" : "",
- "en" : "2.2.4 Interruptions",
- },
- "link" : "https://www.w3.org/TR/WCAG21/#interruptions",
- "level" : "AAA",
- "version" : "2.0",
- "goal" :
- {
- "cat" : "-",
- "es" : "Las interrupciones pueden ser postergadas o suprimidas por el usuario, excepto las interrupciones que impliquen una emergencia.",
- "en" : "Interruptions can be postponed or suppressed by the user, except interruptions involving an emergency.",
- },
- "intent" :
- {
- "cat" : "",
- "es" : "",
- "en" : "The intent of this Success Criterion is to allow users to turn off updates from the author/server except in emergencies. Emergencies would include civil emergency alert messages or any other messages that warn of danger to health, safety, or property, including data loss, loss of connection, etcetera.#This allows access by people with cognitive limitations or attention disorders by enabling them to focus on the content. It also allows users who are blind or have low vision to keep their 'viewing' focus on the content they are currently reading.",
- },
- "benefits" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "Individuals with attention deficit disorders can focus on content without distraction.#Individuals with low vision or who use screen readers will not have content updated while they are viewing it (which can lead to discontinuity and misunderstanding if they start reading in one topic and finish in another).",
- },
- "verification" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "tools" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "category" : [""]
- },
-
- { // 2.2.5.
- "criteria" :
- {
- "cat" : "",
- "es" : "2.2.5 Re-autenticación",
- "en" : "2.2.5 Re-authenticating",
- },
- "link" : "https://www.w3.org/TR/WCAG21/#re-authenticating",
- "level" : "AAA",
- "version" : "2.0",
- "goal" :
- {
- "cat" : "-",
- "es" : "Cuando caduca una sesión autenticada, el usuario puede continuar la actividad sin pérdida de datos después de volver a autenticarse.",
- "en" : "When an authenticated session expires, the user can continue the activity without loss of data after re-authenticating.",
- },
- "intent" :
- {
- "cat" : "",
- "es" : "",
- "en" : "The intent of this Success Criterion is to allow all users to complete authenticated transactions that have inactivity time limits or other circumstances that would cause a user to be logged out while in the midst of completing the transaction.",
- },
- "benefits" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "This Success Criterion benefits people who may require additional time to complete an activity. People with cognitive limitations may read slowly and require additional time to read and respond to a questionnaire. Users interacting via a screen reader may need extra time to navigate and complete a complicated form. A person with motor impairments or who navigates with an alternative input device may require additional time to navigate through or complete input within a form.#In circumstances where a sign-language interpreter may be relating audio content to a user who is deaf, control over time limits is also important.",
- },
- "verification" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "tools" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "category" : ["content"]
- },
-
- { // 2.2.6.
- "criteria" :
- {
- "cat" : "",
- "es" : "2.2.6 Tiempos de espera",
- "en" : "2.2.6 Timeouts",
- },
- "link" : "https://www.w3.org/TR/WCAG21/#timeouts",
- "level" : "AAA",
- "version" : "2.1",
- "goal" :
- {
- "cat" : "-",
- "es" : "Se advierte a los usuarios sobre la duración de cualquier inactividad del usuario que pueda causar la pérdida de datos, a menos que los datos se conserven durante más de 20 horas cuando el usuario no realiza ninguna acción.",
- "en" : "Users are warned of the duration of any user inactivity that could cause data loss, unless the data is preserved for more than 20 hours when the user does not take any actions.",
- },
- "intent" :
- {
- "cat" : "",
- "es" : "",
- "en" : "The intent of this Success Criterion is to ensure that when a timeout is used, users know what duration of inactivity will cause the page to time out and result in lost data. The use of timed events can present significant barriers for users with cognitive disabilities, as these users may require more time to read content or to perform functions, such as completing an online form.#During the completion of an online process, such as to reserve a hotel room or purchase a plane ticket, a user with a cognitive impairment may become overwhelmed with lengthy instructions and data input required to complete the process. The user may not be able to complete the process in one sitting and may need to take a break. Users should be able to leave a process without losing their current place within the process, and without losing information that has already been entered. If users cannot take a break and check their work, many will often be unable to complete a task correctly.#This Success Criterion works in tandem with Success Criterion 2.2.1 Timing Adjustable, but is specifically focused on notification of timeouts related to user inactivity.",
- },
- "benefits" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "This Success Criterion helps users by ensuring they are notified about timeouts related to inactivity.#When a user knows how much time they are allowed for a task, they will know whether they can take a needed break and resume their work without needing to start again. This enables many users to complete tasks online that they otherwise could not do. If a situation exists where a timeout is necessary, the user is warned at the start of the task about the length of inactivity that would generate a timeout. The user can then decide if they can manage this task or not in the given time, or if they need to prepare materials in advance of starting a process. This will reduce the frustration of losing work due to a timeout.#This Success Criterion helps people with many different cognitive disabilities, including people with:#language-related disabilities;# memory-related disabilities;#focus-and-attention-related disabilities; and#disabilities that affect executive function and decision making.",
- },
- "verification" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "tools" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "category" : [""]
- },
-
- { // 2.3.1.
- "criteria" :
- {
- "cat" : "",
- "es" : "2.3.1 Tres destellos o por debajo del umbral",
- "en" : "2.3.1 Three Flashes or Below Threshold",
- },
- "link" : "https://www.w3.org/TR/WCAG21/#three-flashes-or-below-threshold",
- "level" : "A",
- "version" : "2.0",
- "goal" :
- {
- "cat" : "-",
- "es" : "Las páginas web no contienen nada que parpadee más de tres veces en cualquier período de un segundo, o el parpadeo está por debajo de los umbrales de parpadeo general y parpadeo rojo.",
- "en" : "Web pages do not contain anything that flashes more than three times in any one second period, or the flash is below the general flash and red flash thresholds.",
- },
- "intent" :
- {
- "cat" : "",
- "es" : "",
- "en" : "The intent of this Success Criterion is to allow users to access the full content of a site without inducing seizures due to photosensitivity.#Individuals who have photosensitive seizure disorders can have a seizure triggered by content that flashes at certain frequencies for more than a few flashes. People are even more sensitive to red flashing than to other colors, so a special test is provided for saturated red flashing. These guidelines are based on guidelines for the broadcasting industry as adapted for computer screens, where content is viewed from a closer distance (using a larger angle of vision).",
- },
- "benefits" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "Individuals who have seizures when viewing flashing material will be able to view all of the material on a site without having a seizure and without having to miss the full experience of the content by being limited to text alternatives. This includes people with photosensitive epilepsy as well as other photosensitive seizure disorders.",
- },
- "verification" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "tools" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "category" : ["dynamic-content"]
- },
-
- { // 2.3.2.
- "criteria" :
- {
- "cat" : "",
- "es" : "2.3.2 Tres destellos",
- "en" : "2.3.2 Three Flashes",
- },
- "link" : "https://www.w3.org/TR/WCAG21/#three-flashes",
- "level" : "AAA",
- "version" : "2.0",
- "goal" :
- {
- "cat" : "-",
- "es" : "Las páginas web no contienen nada que parpadee más de tres veces en cualquier período de un segundo.",
- "en" : "Web pages do not contain anything that flashes more than three times in any one second period.",
- },
- "intent" :
- {
- "cat" : "",
- "es" : "",
- "en" : "The purpose of this Success Criterion is to further reduce the chance of seizures. Seizures cannot be completely eliminated since some people are so sensitive. However, by eliminating all 3-per-second flashing over any area of the screen, the chances of a person having a seizure are further reduced than when just meeting the measures ordinarily used today in standards internationally, as we do at Level A.",
- },
- "benefits" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "Individuals who have seizures when viewing flashing material will be able to view all of the material on a site without having a seizure and without having to miss the full experience of the content by being limited to text alternatives. This includes people with photosensitive epilepsy as well as other photosensitive seizure disorders.",
- },
- "verification" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "tools" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "category" : [""]
- },
-
- { // 2.3.3.
- "criteria" :
- {
- "cat" : "",
- "es" : "2.3.3 Animación a partir de interacciones",
- "en" : "2.3.3 Animation from Interactions",
- },
- "link" : "https://www.w3.org/TR/WCAG21/#animation-from-interactions",
- "level" : "AAA",
- "version" : "2.1",
- "goal" :
- {
- "cat" : "-",
- "es" : "La animación de movimiento desencadenada por la interacción se puede desactivar, a menos que la animación sea esencial para la funcionalidad o la información que se transmite.",
- "en" : "Motion animation triggered by interaction can be disabled, unless the animation is essential to the functionality or the information being conveyed.",
- },
- "intent" :
- {
- "cat" : "",
- "es" : "",
- "en" : "The intent of this Success Criterion is to allow users to prevent animation from being displayed on Web pages. Some users experience distraction or nausea from animated content. For example, if scrolling a page causes elements to move (other than the essential movement associated with scrolling) it can trigger vestibular disorders. Vestibular (inner ear) disorder reactions include dizziness, nausea and headaches. Another animation that is often non-essential is parallax scrolling. Parallax scrolling occurs when backgrounds move at a different rate to foregrounds. Animation that is essential to the functionality or information of a web page is allowed by this Success Criterion.",
- },
- "benefits" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "Vestibular Disorder#People with vestibular disorders need control over movement triggered by interactions. Non-essential movement can trigger vestibular disorder reactions. Vestibular (inner ear) disorder reactions include distraction, dizziness, headaches and nausea.#Persona Quote: 'Stop that extra movement! You are making me so dizzy I cannot concentrate. Now I have to turn off my computer and go lie down.",
- },
- "verification" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "tools" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "category" : [""]
- },
-
- { // 2.4.1.
- "criteria" :
- {
- "cat" : "",
- "es" : "2.4.1 Bloques de derivación",
- "en" : "2.4.1 Bypass Blocks",
- },
- "link" : "https://www.w3.org/TR/WCAG21/#bypass-blocks",
- "level" : "A",
- "version" : "2.0",
- "goal" :
- {
- "cat" : "-",
- "es" : "Hay un mecanismo disponible para eludir bloques de contenido que se repiten en varias páginas web.",
- "en" : "A mechanism is available to bypass blocks of content that are repeated on multiple Web pages.",
- },
- "intent" :
- {
- "cat" : "",
- "es" : "",
- "en" : "The intent of this Success Criterion is to allow people who navigate sequentially through content more direct access to the primary content of the Web page. Web pages and applications often have content that appears on other pages or screens. Examples of repeated blocks of content include but are not limited to navigation links, heading graphics, and advertising frames. Small repeated sections such as individual words, phrases or single links are not considered blocks for the purposes of this provision.",
- },
- "benefits" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "When this Success Criterion is not satisfied, it may be difficult for people with some disabilities to reach the main content of a Web page quickly and easily:#Screen reader users who visit several pages on the same site can avoid having to hear all heading graphics and dozens of navigation links on every page before the main content is spoken.#People who use only the keyboard or a keyboard interface can reach content with fewer keystrokes. Otherwise, they might have to make dozens of keystrokes before reaching a link in the main content area. This can take a long time and may cause severe physical pain for some users.#People who use screen magnifiers do not have to search through the same headings or other blocks of information to find where the content begins each time they enter a new page.#People with cognitive limitations as well as people who use screen readers may benefit when links are grouped into lists",
- },
- "verification" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "tools" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "category" : ["structure"]
- },
-
- { // 2.4.2.
- "criteria" :
- {
- "cat" : "",
- "es" : "2.4.2 Página titulada",
- "en" : "2.4.2 Page Titled",
- },
- "link" : "https://www.w3.org/TR/WCAG21/#page-titled",
- "level" : "A",
- "version" : "2.0",
- "goal" :
- {
- "cat" : "-",
- "es" : "Las páginas web tienen títulos que describen el tema o el propósito.",
- "en" : "Web pages have titles that describe topic or purpose.",
- },
- "intent" :
- {
- "cat" : "",
- "es" : "",
- "en" : "The intent of this Success Criterion is to help users find content and orient themselves within it by ensuring that each Web page has a descriptive title. Titles identify the current location without requiring users to read or interpret page content. When titles appear in site maps or lists of search results, users can more quickly identify the content they need. User agents make the title of the page easily available to the user for identifying the page. For instance, a user agent may display the page title in the window title bar or as the name of the tab containing the page.",
- },
- "benefits" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "This criterion benefits all users in allowing users to quickly and easily identify whether the information contained in the Web page is relevant to their needs.#People with visual disabilities will benefit from being able to differentiate content when multiple Web pages are open.#People with cognitive disabilities, limited short-term memory and reading disabilities also benefit from the ability to identify content by its title.#This criterion also benefits people with severe mobility impairments whose mode of operation relies on audio when navigating between Web pages.",
- },
- "verification" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "tools" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "category" : ["structure"]
- },
-
- { // 2.4.3.
- "criteria" :
- {
- "cat" : "",
- "es" : "2.4.3 Orden de enfoque",
- "en" : "2.4.3 Focus Order",
- },
- "link" : "https://www.w3.org/TR/WCAG21/#focus-order",
- "level" : "A",
- "version" : "2.0",
- "goal" :
- {
- "cat" : "-",
- "es" : "Si se puede navegar secuencialmente por una página web y las secuencias de navegación afectan el significado o la operación, los componentes enfocables reciben el enfoque en un orden que preserva el significado y la operabilidad.",
- "en" : "If a Web page can be navigated sequentially and the navigation sequences affect meaning or operation, focusable components receive focus in an order that preserves meaning and operability.",
- },
- "intent" :
- {
- "cat" : "",
- "es" : "",
- "en" : "The intent of this Success Criterion is to ensure that when users navigate sequentially through content, they encounter information in an order that is consistent with the meaning of the content and can be operated from the keyboard. This reduces confusion by letting users form a consistent mental model of the content. There may be different orders that reflect logical relationships in the content. For example, moving through components in a table one row at a time or one column at a time both reflect the logical relationships in the content. Either order may satisfy this Success Criterion.",
- },
- "benefits" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "People with mobility impairments who must rely on keyboard access for operating a page benefit from a logical, usable focus order.#People with disabilities that make reading difficult can become disoriented when tabbing takes focus someplace unexpected. They benefit from a logical focus order.#People with visual impairments can become disoriented when tabbing takes focus someplace unexpected or when they cannot easily find the content surrounding an interactive element.#Only a small portion of the page may be visible to an individual using a screen magnifier at a high level of magnification. Such a user may interpret a field in the wrong context if the focus order is not logical.",
- },
- "verification" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "tools" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "category" : ["structure"]
- },
-
- { // 2.4.4.
- "criteria" :
- {
- "cat" : "",
- "es" : "2.4.4 Propósito del enlace (en contexto)",
- "en" : "2.4.4 Link Purpose (In Context)",
- },
- "link" : "https://www.w3.org/TR/WCAG21/#link-purpose-in-context",
- "level" : "A",
- "version" : "2.0",
- "goal" :
- {
- "cat" : "-",
- "es" : "El propósito de cada enlace se puede determinar a partir del texto del enlace solo o del texto del enlace junto con su contexto de enlace determinado mediante programación, excepto cuando el propósito del enlace sea ambiguo para los usuarios en general.",
- "en" : "The purpose of each link can be determined from the link text alone or from the link text together with its programmatically determined link context, except where the purpose of the link would be ambiguous to users in general.",
- },
- "intent" :
- {
- "cat" : "",
- "es" : "",
- "en" : "The intent of this Success Criterion is to help users understand the purpose of each link so they can decide whether they want to follow the link. Whenever possible, provide link text that identifies the purpose of the link without needing additional context. Assistive technology has the ability to provide users with a list of links that are on the Web page. Link text that is as meaningful as possible will aid users who want to choose from this list of links. Meaningful link text also helps those who wish to tab from link to link. Meaningful links help users choose which links to follow without requiring complicated strategies to understand the page.",
- },
- "benefits" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "A link contains text that gives a description of the information at that URI.#A link is preceded by a text description of the information at that URI.#Both an icon and text are included in the same link.#A list of book titles.#News article summaries.",
- },
- "verification" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "tools" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "category" : ["content", "link"]
- },
-
- { // 2.4.5.
- "criteria" :
- {
- "cat" : "",
- "es" : "2.4.5 Múltiples formas",
- "en" : "2.4.5 Multiple Ways",
- },
- "link" : "https://www.w3.org/TR/WCAG21/#multiple-ways",
- "level" : "AA",
- "version" : "2.0",
- "goal" :
- {
- "cat" : "-",
- "es" : "Hay más de una manera disponible para ubicar una página web dentro de un conjunto de páginas web, excepto cuando la página web es el resultado o un paso en un proceso.",
- "en" : "More than one way is available to locate a Web page within a set of Web pages except where the Web Page is the result of, or a step in, a process.",
- },
- "intent" :
- {
- "cat" : "",
- "es" : "",
- "en" : "The intent of this Success Criterion is to make it possible for users to locate content in a manner that best meets their needs. Users may find one technique easier or more comprehensible to use than another.#Even small sites should provide users some means of orientation. For a three or four page site, with all pages linked from the home page, it may be sufficient simply to provide links from and to the home page where the links on the home page can also serve as a site map.",
- },
- "benefits" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "Providing an opportunity to navigate sites in more than one manner can help people find information faster. Users with visual impairments may find it easier to navigate to the correct part of the site by using a search, rather than scrolling through a large navigation bar using a screen magnifier or screen reader. A person with cognitive disabilities may prefer a table of contents or site map that provides an overview of the site rather than reading and traversing through several Web pages. Some users may prefer to explore the site in a sequential manner, moving from Web page to Web page in order to best understand the concepts and layout.#Individuals with cognitive limitations may find it easier to use search features than to use a hierarchical navigation scheme that is difficult to understand.",
- },
- "verification" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "tools" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "category" : ["content"]
- },
-
- { // 2.4.6.
- "criteria" :
- {
- "cat" : "",
- "es" : "2.4.6 Encabezados y Etiquetas",
- "en" : "2.4.6 Headings and Labels",
- },
- "link" : "https://www.w3.org/TR/WCAG21/#headings-and-labels",
- "level" : "AA",
- "version" : "2.0",
- "goal" :
- {
- "cat" : "-",
- "es" : "Los encabezados y las etiquetas describen el tema o el propósito.",
- "en" : "Headings and labels describe topic or purpose.",
- },
- "intent" :
- {
- "cat" : "",
- "es" : "",
- "en" : "The intent of this Success Criterion is to help users understand what information is contained in Web pages and how that information is organized. When headings are clear and descriptive, users can find the information they seek more easily, and they can understand the relationships between different parts of the content more easily. Descriptive labels help users identify specific components within the content.#Labels and headings do not need to be lengthy. A word, or even a single character, may suffice if it provides an appropriate cue to finding and navigating content.",
- },
- "benefits" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "Descriptive headings are especially helpful for users who have disabilities that make reading slow and for people with limited short-term memory. These people benefit when section titles make it possible to predict what each section contains.#Form input controls with labels that clearly describe the content that is expected to be entered helps users know how to successfully complete the form.#When headings and labels are also correctly marked up and identified in accordance with 1.3.1: Info and Relationships, this Success Criterion helps people who use screen readers by ensuring that labels and headings are meaningful when read out of context, for example, in an automatically generated list of headings/table of contents, or when jumping from heading to heading within a page.",
- },
- "verification" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "tools" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "category" : ["custom-controls", "forms-and-UI"]
- },
-
- { // 2.4.7.
- "criteria" :
- {
- "cat" : "",
- "es" : "2.4.7 Enfoque visible",
- "en" : "2.4.7 Focus Visible",
- },
- "link" : "https://www.w3.org/TR/WCAG21/#focus-visible",
- "level" : "AA",
- "version" : "2.0",
- "goal" :
- {
- "cat" : "-",
- "es" : "Cualquier interfaz de usuario operable por teclado tiene un modo de operación donde el indicador de enfoque del teclado es visible.",
- "en" : "Any keyboard operable user interface has a mode of operation where the keyboard focus indicator is visible.",
- },
- "intent" :
- {
- "cat" : "",
- "es" : "",
- "en" : "The intent of this Success Criterion is to help users understand what information is contained in Web pages and how that information is organized. When headings are clear and descriptive, users can find the information they seek more easily, and they can understand the relationships between different parts of the content more easily. Descriptive labels help users identify specific components within the content.#Labels and headings do not need to be lengthy. A word, or even a single character, may suffice if it provides an appropriate cue to finding and navigating content.",
- },
- "benefits" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "Descriptive headings are especially helpful for users who have disabilities that make reading slow and for people with limited short-term memory. These people benefit when section titles make it possible to predict what each section contains.#Form input controls with labels that clearly describe the content that is expected to be entered helps users know how to successfully complete the form.#When headings and labels are also correctly marked up and identified in accordance with 1.3.1: Info and Relationships, this Success Criterion helps people who use screen readers by ensuring that labels and headings are meaningful when read out of context, for example, in an automatically generated list of headings/table of contents, or when jumping from heading to heading within a page.",
- },
- "verification" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "tools" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "category" : ["custom-controls", "forms-and-UI"]
- },
-
- { // 2.4.8.
- "criteria" :
- {
- "cat" : "",
- "es" : "2.4.8 Ubicación",
- "en" : "2.4.8 Location",
- },
- "link" : "https://www.w3.org/TR/WCAG21/#location",
- "level" : "AAA",
- "version" : "2.0",
- "goal" :
- {
- "cat" : "-",
- "es" : "La información sobre la ubicación del usuario dentro de un conjunto de páginas web está disponible.",
- "en" : "Information about the user's location within a set of Web pages is available.",
- },
- "intent" :
- {
- "cat" : "",
- "es" : "",
- "en" : "The intent of this Success Criterion is to provide a way for the user to orient herself within a set of Web pages, a Web site, or a Web application and find related information.",
- },
- "benefits" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "This Success Criterion is helpful for people with a short attention span who may become confused when following a long series of navigation steps to a Web page. It is also helpful when a user follows a link directly to a page deep within a set of Web pages and needs to navigate that Web site to understand the content of that page or to find more related information.",
- },
- "verification" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "tools" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "category" : [""]
- },
-
- { // 2.4.9.
- "criteria" :
- {
- "cat" : "",
- "es" : "2.4.9 Propósito del enlace (solo enlace)",
- "en" : "2.4.9 Link Purpose (Link Only)",
- },
- "link" : "https://www.w3.org/TR/WCAG21/#link-purpose-link-only",
- "level" : "AAA",
- "version" : "2.0",
- "goal" :
- {
- "cat" : "-",
- "es" : "Hay un mecanismo disponible para permitir que el propósito de cada enlace se identifique solo a partir del texto del enlace, excepto cuando el propósito del enlace sea ambiguo para los usuarios en general.",
- "en" : "A mechanism is available to allow the purpose of each link to be identified from link text alone, except where the purpose of the link would be ambiguous to users in general.",
- },
- "intent" :
- {
- "cat" : "",
- "es" : "",
- "en" : "The intent of this Success Criterion is to help users understand the purpose of each link in the content, so they can decide whether they want to follow it. Best practice is that links with the same destination would have the same descriptions, but links with different purposes and destinations would have different descriptions (see also Success Criterion 3.2.4 which calls for consistency in identifying components that have the same functionality). Because the purpose of a link can be identified from its link text, links can be understood when they are out of context, such as when the user agent provides a list of all the links on a page.",
- },
- "benefits" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "This Success Criterion helps people with motion impairment by letting them skip Web pages that they are not interested in, avoiding the keystrokes needed to visit the referenced content and then return to the current content.#People with cognitive limitations will not become disoriented by extra navigation to and from content they are not interested in.#People with visual disabilities will benefit from not losing their place in the content when they return to the original page. The screen reader's list of links is more useful for finding information because the target of the links are described.",
- },
- "verification" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "tools" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "category" : [""]
- },
-
- { // 2.4.10.
- "criteria" :
- {
- "cat" : "",
- "es" : "2.4.10 Títulos de sección",
- "en" : "2.4.10 Section Headings",
- },
- "link" : "https://www.w3.org/TR/WCAG21/#section-headings",
- "level" : "AAA",
- "version" : "2.0",
- "goal" :
- {
- "cat" : "-",
- "es" : "Los encabezados de las secciones se utilizan para organizar el contenido.",
- "en" : "Section headings are used to organize the content.",
- },
- "intent" :
- {
- "cat" : "",
- "es" : "",
- "en" : "The intent of this Success Criterion is to provide headings for sections of a Web page, when the page is organized into sections. For instance, long documents are often divided into a variety of chapters, chapters have subtopics and subtopics are divided into various sections, sections into paragraphs, etc. When such sections exist, they need to have headings that introduce them. This clearly indicates the organization of the content, facilitates navigation within the content, and provides mental 'handles' that aid in comprehension of the content. Other page elements may complement headings to improve presentation (e.g., horizontal rules and boxes), but visual presentation is not sufficient to identify document sections.",
- },
- "benefits" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "People who are blind will know when they have moved from one section of a Web page to another and will know the purpose of each section.#People with some learning disabilities will be able to use the headings to understand the overall organization of the page content more easily.#People who navigate content by keyboard will be able to jump the focus from heading to heading, enabling them to find quickly content of interest.#In pages where content in part of the page updates, headings can be used to quickly access updated content.",
- },
- "verification" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "tools" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "category" : [""]
- },
- { // 2.4.11.
- "criteria" :
- {
- "cat" : "",
- "es" : "2.4.11 Aspecto de enfoque (mínimo)",
- "en" : "2.4.11 Focus Appearance (Minimum)",
- },
- "link" : "https://www.w3.org/TR/WCAG22/#focus-appearance-minimum",
- "level" : "AA",
- "version" : "2.2",
- "goal" :
- {
- "cat" : "-",
- "es" : "Cuando los componentes de la interfaz de usuario reciben el foco del teclado, todo lo siguiente es verdadero:<ul><li>Área de contraste: hay un área del indicador de enfoque que tiene una relación de contraste de al menos 3:1 entre los colores en los estados enfocado y desenfocado.</li><li>Área mínima: El área de contraste es al menos tan grande como:<ul><li>Contorno: el área de un perímetro de 1 píxel CSS de espesor del componente desenfocado, o</li><li>Forma: el área de una línea de 4 píxeles CSS de grosor a lo largo del lado más corto de un cuadro delimitador mínimo del componente desenfocado, y no más delgada que 2 píxeles CSS.</li></ul></li><li>Contraste adyacente: el área de contraste también tiene una relación de contraste de al menos 3:1 frente a los colores adyacentes en el componente enfocado, o el área de contraste tiene un grosor de al menos 2 píxeles CSS.</li><li>No completamente oculto: el elemento que tiene el foco no está completamente oculto por el contenido creado por el autor.</li></ul>",
- "en" : "When user interface components receive keyboard focus, all of the following are true:<ul><li>Contrasting area: There is an area of the focus indicator that has a contrast ratio of at least 3:1 between the colors in the focused and unfocused states.</li><li>Minimum area: The contrasting area is at least as large as:<ul><li>Outline: the area of a 1 CSS pixel thick perimeter of the unfocused component, or</li><li>Shape: the area of a 4 CSS pixel thick line along the shortest side of a minimum bounding box of the unfocused component, and no thinner than 2 CSS pixels.</li></ul></li><li>Adjacent contrast: The contrasting area also has a contrast ratio of least 3:1 against adjacent colors in the focused component, or the contrasting area has a thickness of at least 2 CSS pixels.</li><li>Not fully obscured: The item with focus is not entirely hidden by author-created content.</li></ul>",
- },
- "intent" :
- {
- "cat" : "",
- "es" : "",
- "en" : "",
- },
- "benefits" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "verification" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "tools" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "category" : [""]
- },
-
- { // 2.4.12.
- "criteria" :
- {
- "cat" : "",
- "es" : "2.4.12 Aspecto de enfoque (mejorado)",
- "en" : "2.4.12 Focus Appearance (Enhanced)",
- },
- "link" : "https://www.w3.org/TR/WCAG22/#focus-appearance-enhanced",
- "level" : "AAA",
- "version" : "2.2",
- "goal" :
- {
- "cat" : "-",
- "es" : "Cuando los componentes de la interfaz de usuario tienen el foco del teclado, todo lo siguiente es cierto:<ul><li>Área de contraste: hay un área del indicador de enfoque que tiene una relación de contraste de al menos 4,5:1 entre los colores en los estados enfocado y desenfocado.</li><li>Área mínima: el área de contraste es al menos el doble del área de un perímetro de 1 píxel CSS del componente desenfocado;</li><li>No oscurecido: el contenido creado por el autor no oculta ninguna parte del indicador de enfoque.</li></ul>",
- "en" : "When user interface components have keyboard focus, all of the following are true:<ul><li>Contrasting area: There is an area of the focus indicator that has a contrast ratio of at least 4.5:1 between the colors in the focused and unfocused states.</li><li>Minimum area: The contrasting area is at least double the area of a 1 CSS pixel perimeter of the unfocused component;</li><li>Not obscured: No part of the focus indicator is hidden by author-created content.</li></ul>",
- },
- "intent" :
- {
- "cat" : "",
- "es" : "",
- "en" : "",
- },
- "benefits" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "verification" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "tools" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "category" : [""]
- },
-
- { // 2.4.13.
- "criteria" :
- {
- "cat" : "",
- "es" : "2.4.13 Navegación de salto de página",
- "en" : "2.4.13 Page Break Navigation",
- },
- "link" : "https://www.w3.org/TR/WCAG22/#page-break-navigation",
- "level" : "A",
- "version" : "2.2",
- "goal" :
- {
- "cat" : "-",
- "es" : "Para el contenido web con localizadores de saltos de página, hay un mecanismo disponible para navegar a cada localizador.",
- "en" : "For web content with page break locators, a mechanism is available to navigate to each locator.",
- },
- "intent" :
- {
- "cat" : "",
- "es" : "",
- "en" : "",
- },
- "benefits" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "verification" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "tools" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "category" : [""]
- },
- { // 2.5.1.
- "criteria" :
- {
- "cat" : "",
- "es" : "2.5.1 Gestos de puntero",
- "en" : "2.5.1 Pointer Gestures",
- },
- "link" : "https://www.w3.org/TR/WCAG21/#pointer-gestures",
- "level" : "A",
- "version" : "2.1",
- "goal" :
- {
- "cat" : "-",
- "es" : " Toda la funcionalidad que utiliza gestos multipunto o basados en rutas para la operación se puede operar con un solo puntero sin un gesto basado en rutas, a menos que sea esencial un gesto multipunto o basado en rutas.",
- "en" : "All functionality that uses multipoint or path-based gestures for operation can be operated with a single pointer without a path-based gesture, unless a multipoint or path-based gesture is essential.",
- },
- "intent" :
- {
- "cat" : "",
- "es" : "",
- "en" : "path-based multi-point functionality can be operated with single-point actions.",
- },
- "benefits" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "verification" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "tools" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "category" : ["custom-controls"]
- },
-
- { // 2.5.2.
- "criteria" :
- {
- "cat" : "",
- "es" : "2.5.2 Cancelación de puntero",
- "en" : "2.5.2 Pointer Cancellation",
- },
- "link" : "https://www.w3.org/TR/WCAG21/#pointer-cancellation",
- "level" : "A",
- "version" : "2.1",
- "goal" :
- {
- "cat" : "-",
- "es" : "Para la funcionalidad que se puede operar usando un solo puntero, al menos uno de los siguientes es verdadero:<ul><li>Sin evento descendente: el evento descendente del puntero no se utiliza para ejecutar ninguna parte de la función;</li><li>Cancelar o deshacer: la finalización de la función está en el evento ascendente y hay un mecanismo disponible para cancelar la función antes de completarla o para deshacer la función después de completarla;</li><li>Up Reversal: El evento up invierte cualquier resultado del evento down anterior;</li><li>Esencial: Completar la función en el evento down es esencial.</li></ul>",
- "en" : "For functionality that can be operated using a single pointer, at least one of the following is true:<ul><li>No Down-Event : The down-event of the pointer is not used to execute any part of the function;</li><li>Abort or Undo : Completion of the function is on the up-event, and a mechanism is available to abort the function before completion or to undo the function after completion;</li><li>Up Reversal : The up-event reverses any outcome of the preceding down-event;</li><li>Essential : Completing the function on the down-event is essential.</li></ul>",
- },
- "intent" :
- {
- "cat" : "",
- "es" : "",
- "en" : "The intent of this Success Criterion is to ensure that content can be controlled with a range of pointing devices, abilities, and assistive technologies. Some people cannot perform gestures in a precise manner, or they may use a specialized or adapted input device such as a head pointer, eye-gaze system, or speech-controlled mouse emulator. Some pointing methods lack the capability or accuracy to perform multipoint or path-based gestures.#A path-based gesture involves an interaction where not just the endpoints matter. If going through an intermediate point (usually near the start of the gesture) also affects its meaning then it is a path-based gesture. The user engages a pointer (starting point), carries out a movement that goes through at least one intermediate-point before disengaging the pointer (end point). The intermediate point defines the gesture as requiring a specific path, even if the complete path is not defined.",
- },
- "benefits" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "A web site includes a map view that supports the pinch gesture to zoom into the map content. User interface controls offer the operation using plus and minus buttons to zoom in and out.#A news site has a horizontal content slider with hidden news teasers that can moved into the viewport via horizontal swiping. It also offers forward and backward arrow buttons for single-point activation to navigate to adjacent slider content.#A kanban widget with several vertical areas representing states in a defined process allows the user to right- or left-swipe elements to move them to an adjacent silo. The user can also accomplish this by selecting the element with a single tap or click, and then activating an arrow button to move the selected element.#A custom slider requires movement in a strict left/right direction when operated by dragging the thumb control. Buttons on both sides of the slider increment and decrement the selected value and update the thumb position.",
- },
- "verification" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "tools" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "category" : ["custom-controls"]
- },
-
- { // 2.5.3.
- "criteria" :
- {
- "cat" : "",
- "es" : "2.5.3 Etiqueta en Nombre",
- "en" : "2.5.3 Label in Name",
- },
- "link" : "https://www.w3.org/TR/WCAG21/#label-in-name",
- "level" : "A",
- "version" : "2.1",
- "goal" :
- {
- "cat" : "-",
- "es" : "Para los componentes de la interfaz de usuario con etiquetas que incluyen texto o imágenes de texto, el nombre contiene el texto que se presenta visualmente.",
- "en" : "For user interface components with labels that include text or images of text, the name contains the text that is presented visually.",
- },
- "intent" :
- {
- "cat" : "",
- "es" : "",
- "en" : "The intent of this Success Criterion is to ensure that the words which visually label a component are also the words associated with the component programmatically. This helps ensure that people with disabilities can rely on visible labels as a means to interact with the components.",
- },
- "benefits" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "Speech-input users can directly activate controls on a page with fewer surprising changes of focus.#Text-to-speech users will have a better experience because the labels that they hear match the visible text labels that they see on the screen.",
- },
- "verification" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "tools" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "category" : ["custom-controls", "forms-and-UI"]
- },
-
- { // 2.5.4.
- "criteria" :
- {
- "cat" : "",
- "es" : "2.5.4 Actuación de movimiento",
- "en" : "2.5.4 Motion Actuation",
- },
- "link" : "https://www.w3.org/TR/WCAG21/#motion-actuation",
- "level" : "A",
- "version" : "2.1",
- "goal" :
- {
- "cat" : "-",
- "es" : "La funcionalidad que puede ser operada por el movimiento del dispositivo o el movimiento del usuario también puede ser operada por los componentes de la interfaz de usuario y la respuesta al movimiento puede desactivarse para evitar la activación accidental, excepto cuando:<ul><li>Interfaz compatible: el movimiento se utiliza para operar la funcionalidad a través de una interfaz compatible con la accesibilidad;</li><li>Esencial: el movimiento es esencial para la función y hacerlo invalidaría la actividad.</li></ul>",
- "en" : "Functionality that can be operated by device motion or user motion can also be operated by user interface components and responding to the motion can be disabled to prevent accidental actuation, except when:<ul><li>Supported Interface : The motion is used to operate functionality through an accessibility supported interface;</li><li>Essential : The motion is essential for the function and doing so would invalidate the activity.</li></ul>",
- },
- "intent" :
- {
- "cat" : "",
- "es" : "",
- "en" : "The intent of this success criterion is to ensure that functions triggered by moving a device (for example, shaking or tilting) or by gesturing towards the device (so that sensors like a camera can pick up and interpret the gesturing), can also be operated by more conventional user interface components.",
- },
- "benefits" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "This Success Criterion helps people who may be unable to perform particular motions (such as tilting, shaking, or gesturing) because the device may be mounted or users may be physically unable to perform the necessary movement. This success criterion ensures that users can still operate all functionality by other means such as touch or via assistive technologies.#Other users will benefit in situations where they are unable to move their devices.",
- },
- "verification" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "tools" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "category" : ["structure"]
- },
-
- { // 2.5.5.
- "criteria" :
- {
- "cat" : "",
- "es" : "2.5.5 Tamaño objetivo",
- "en" : "2.5.5 Target Size",
- },
- "link" : "https://www.w3.org/TR/WCAG21/#target-size",
- "level" : "AAA",
- "version" : "2.1",
- "goal" :
- {
- "cat" : "-",
- "es" : "El tamaño del objetivo para las entradas del puntero es de al menos 44 por 44 píxeles CSS, excepto cuando:<ul><li>Equivalente: el objetivo está disponible a través de un enlace o control equivalente en la misma página que tiene al menos 44 por 44 píxeles CSS;</li><li>En línea: el objetivo está en una oración o bloque de texto;</li><li>Control del agente de usuario: el tamaño del objetivo lo determina el agente de usuario y el autor no lo modifica;</li><li>Esencial: una presentación particular del objetivo es esencial para la información que se transmite.</li></ul>",
- "en" : "The size of the target for pointer inputs is at least 44 by 44 CSS pixels except when:<ul><li>Equivalent : The target is available through an equivalent link or control on the same page that is at least 44 by 44 CSS pixels;</li><li>Inline : The target is in a sentence or block of text;</li><li>User Agent Control : The size of the target is determined by the user agent and is not modified by the author;</li><li>Essential : A particular presentation of the target is essential to the information being conveyed.</li></ul>",
- },
- "intent" :
- {
- "cat" : "",
- "es" : "",
- "en" : "The intent of this success criteria is to ensure that target sizes are large enough for users to easily activate them, even if the user is accessing content on a small handheld touch screen device, has limited dexterity, or has trouble activating small targets for other reasons. For instance, mice and similar pointing devices can be hard to use for these users, and a larger target will help them activate the target.",
- },
- "benefits" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "Users who use a mobile device where touch screen is the primary mode of interaction;#Users with mobility impairments such as hand tremors;#Users who use a mobile device in environments where they are exposed to shaking such as public transportation;#Users who have difficulty with fine motor movements;#Users who access a device using one hand;#Users with large fingers, or who are operating the device with only a part of their finger or knuckle;#Users who have low vision may better see the target.",
- },
- "verification" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "tools" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "category" : [""]
- },
- { // 2.5.6.
- "criteria" :
- {
- "cat" : "",
- "es" : "2.5.6 Mecanismos de entrada concurrentes",
- "en" : "2.5.6 Concurrent Input Mechanisms",
- },
- "link" : "https://www.w3.org/TR/WCAG21/#concurrent-input-mechanisms",
- "level" : "AAA",
- "version" : "2.1",
- "goal" :
- {
- "cat" : "-",
- "es" : "El contenido web no restringe el uso de las modalidades de entrada disponibles en una plataforma, excepto cuando la restricción sea esencial, necesaria para garantizar la seguridad del contenido o necesaria para respetar la configuración del usuario.",
- "en" : "Web content does not restrict use of input modalities available on a platform except where the restriction is essential, required to ensure the security of the content, or required to respect user settings.",
- },
- "intent" :
- {
- "cat" : "",
- "es" : "",
- "en" : "The intent of this Success Criterion is to ensure that people can use and switch between different modes of input when interacting with web content. Users may employ a variety of input mechanisms when interacting with web content. These may be a combination of mechanisms such as a keyboard or keyboard-like interfaces and pointer devices like a mouse, stylus or touchscreen.",
- },
- "benefits" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "Users can interact with web content with whichever input mechanism is preferred and available to them.#Users may switch between input mechanisms when they desire or the circumstances require it.#Users are allowed to add and remove input mechanisms at any point, where supported by the operating system.",
- },
- "verification" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "tools" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "category" : [""]
- },
-
- { // 2.5.7.
- "criteria" :
- {
- "cat" : "",
- "es" : "2.5.7 Movimientos de arrastre",
- "en" : "2.5.7 Dragging Movements",
- },
- "link" : "https://www.w3.org/TR/WCAG22/#dragging-movements",
- "level" : "AA",
- "version" : "2.2",
- "goal" :
- {
- "cat" : "-",
- "es" : "Toda la funcionalidad que utiliza un movimiento de arrastre para la operación se puede lograr con un solo puntero sin arrastrar, a menos que arrastrar sea esencial.",
- "en" : "All functionality that uses a dragging movement for operation can be achieved by a single pointer without dragging, unless dragging is essential.",
- },
- "intent" :
- {
- "cat" : "",
- "es" : "",
- "en" : "",
- },
- "benefits" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "verification" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "tools" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "category" : [""]
- },
- { // 2.5.8.
- "criteria" :
- {
- "cat" : "",
- "es" : "2.5.8 Tamaño del objetivo (mínimo)",
- "en" : "2.5.8 Target Size (Minimum)",
- },
- "link" : "https://www.w3.org/TR/WCAG22/#target-size-minimum",
- "level" : "AA",
- "version" : "2.2",
- "goal" :
- {
- "cat" : "-",
- "es" : "Los objetivos tienen un área de al menos 24 por 24 píxeles CSS, excepto donde:<ul><li>Espaciado: el desplazamiento del objetivo es de al menos 24 píxeles CSS para cada objetivo adyacente;</li><li>En línea: el objetivo está en una oración o bloque de texto;</li><li>Esencial: una presentación particular del objetivo es esencial para la información que se transmite.</li></ul>",
- "en" : "Targets have an area of at least 24 by 24 CSS pixels, except where:<ul><li>Spacing : The target offset is at least 24 CSS pixels to every adjacent target;</li><li>Inline : The target is in a sentence or block of text;</li><li>Essential : A particular presentation of the target is essential to the information being conveyed.</li></ul>",
- },
- "intent" :
- {
- "cat" : "",
- "es" : "",
- "en" : "",
- },
- "benefits" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "verification" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "tools" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "category" : [""]
- },
- { // 3.1.1.
- "criteria" :
- {
- "cat" : "",
- "es" : "3.1.1 Idioma de la página",
- "en" : "3.1.1 Language of Page",
- },
- "link" : "https://www.w3.org/TR/WCAG21/#language-of-page",
- "level" : "A",
- "version" : "2.0",
- "goal" :
- {
- "cat" : "-",
- "es" : "El idioma humano predeterminado de cada página web se puede determinar mediante programación.",
- "en" : "The default human language of each Web page can be programmatically determined.",
- },
- "intent" :
- {
- "cat" : "",
- "es" : "",
- "en" : "The intent of this Success Criterion is to ensure that content developers provide information in the Web page that user agents need to present text and other linguistic content correctly. Both assistive technologies and conventional user agents can render text more accurately when the language of the Web page is identified. Screen readers can load the correct pronunciation rules. Visual browsers can display characters and scripts correctly. Media players can show captions correctly. As a result, users with disabilities will be better able to understand the content.",
- },
- "benefits" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "people who use screen readers or other technologies that convert text into synthetic speech;#people who find it difficult to read written material with fluency and accuracy, such as recognizing characters and alphabets or decoding words;#people with certain cognitive, language and learning disabilities who use text-to-speech software#people who rely on captions for synchronized media.",
- },
- "verification" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "tools" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "category" : ["structure"]
- },
-
- { // 3.1.2.
- "criteria" :
- {
- "cat" : "",
- "es" : "3.1.2 Idioma de las partes",
- "en" : "3.1.2 Language of Parts",
- },
- "link" : "https://www.w3.org/TR/WCAG21/#language-of-parts",
- "level" : "AA",
- "version" : "2.0",
- "goal" :
- {
- "cat" : "-",
- "es" : "El lenguaje humano de cada pasaje o frase en el contenido se puede determinar programáticamente a excepción de los nombres propios, términos técnicos, palabras de lenguaje indeterminado y palabras o frases que se han convertido en parte de la lengua vernácula del texto circundante inmediato.",
- "en" : "The human language of each passage or phrase in the content can be programmatically determined except for proper names, technical terms, words of indeterminate language, and words or phrases that have become part of the vernacular of the immediately surrounding text.",
- },
- "intent" :
- {
- "cat" : "",
- "es" : "",
- "en" : "The intent of this Success Criterion is to ensure that user agents can correctly present content written in multiple languages. This makes it possible for user agents and assistive technologies to present content according to the presentation and pronunciation rules for that language. This applies to graphical browsers as well as screen readers, braille displays, and other voice browsers.",
- },
- "benefits" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "People who use screen readers or other technologies that convert text into synthetic speech;#people who find it difficult to read written material with fluency and accuracy, such as recognizing characters and alphabets, decoding words, and understanding words and phrases;#people with certain cognitive, language and learning disabilities who use text-to-speech software;#people who rely on captions to recognize language changes in the soundtrack of synchronized media content.",
- },
- "verification" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "tools" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "category" : ["structure"]
- },
-
- { // 3.1.3.
- "criteria" :
- {
- "cat" : "",
- "es" : "3.1.3 Palabras inusuales",
- "en" : "3.1.3 Unusual Words",
- },
- "link" : "https://www.w3.org/TR/WCAG21/#unusual-words",
- "level" : "AAA",
- "version" : "2.0",
- "goal" :
- {
- "cat" : "-",
- "es" : "Hay un mecanismo disponible para identificar definiciones específicas de palabras o frases utilizadas de manera inusual o restringida, incluidos modismos y jerga.",
- "en" : "A mechanism is available for identifying specific definitions of words or phrases used in an unusual or restricted way, including idioms and jargon.",
- },
- "intent" :
- {
- "cat" : "",
- "es" : "",
- "en" : "Certain disabilities make it difficult to understand nonliteral word usage and specialized words or usage. Certain disabilities make it difficult to understand figurative language or specialized usage. Providing such mechanisms is vital for these audiences. Specialized information intended for non-specialist readers is encouraged to satisfy this Success Criterion, even when claiming only Single-A or Double-A conformance.",
- },
- "benefits" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "This Success Criterion may help people with cognitive, language and learning disabilities who:#have difficulty decoding words#have difficulty understanding words and phrases#have difficulty using context to aid understanding#It would also help people with visual disabilities who:#lose context when zoomed-in with a screen magnifier.",
- },
- "verification" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "tools" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "category" : [""]
- },
-
- { // 3.1.4.
- "criteria" :
- {
- "cat" : "",
- "es" : "3.1.4 Abreviaturas",
- "en" : "3.1.4 Abbreviations",
- },
- "link" : "https://www.w3.org/TR/WCAG21/#abbreviations",
- "level" : "AAA",
- "version" : "2.0",
- "goal" :
- {
- "cat" : "-",
- "es" : "Se encuentra disponible un mecanismo para identificar la forma expandida o el significado de las abreviaturas.",
- "en" : "A mechanism for identifying the expanded form or meaning of abbreviations is available.",
- },
- "intent" :
- {
- "cat" : "",
- "es" : "",
- "en" : "The intent of this Success Criterion is to ensure that users can access the expanded form of abbreviations.",
- },
- "benefits" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "Have difficulty decoding words;#rely on screen magnifiers (magnification may reduce contextual cues);#have limited memory;#have difficulty using context to aid understanding.",
- },
- "verification" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "tools" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "category" : [""]
- },
-
- { // 3.1.5.
- "criteria" :
- {
- "cat" : "",
- "es" : "3.1.5 Nivel de lectura",
- "en" : "3.1.5 Reading Level",
- },
- "link" : "https://www.w3.org/TR/WCAG21/#reading-level",
- "level" : "AAA",
- "version" : "2.0",
- "goal" :
- {
- "cat" : "-",
- "es" : "Cuando el texto requiere una capacidad de lectura más avanzada que el nivel de educación secundaria inferior después de eliminar los nombres y títulos propios, hay disponible contenido complementario o una versión que no requiere una capacidad de lectura más avanzada que el nivel de educación secundaria inferior.",
- "en" : "When text requires reading ability more advanced than the lower secondary education level after removal of proper names and titles, supplemental content, or a version that does not require reading ability more advanced than the lower secondary education level, is available.",
- },
- "intent" :
- {
- "cat" : "",
- "es" : "",
- "en" : "Content should be written as clearly and simply as possible. The intent of this Success Criterion is:#to ensure that additional content is available to aid the understanding of difficult or complex text;#to establish a testable measure indicating when such additional content is required.",
- },
- "benefits" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "Have difficulty comprehending and interpreting written language (e.g., articles, instructions, or newspapers in text or braille), for the purpose of obtaining general knowledge or specific information",
- },
- "verification" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "tools" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "category" : [""]
- },
-
- { // 3.1.6.
- "criteria" :
- {
- "cat" : "",
- "es" : "3.1.6 Pronunciación",
- "en" : "3.1.6 Pronunciation",
- },
- "link" : "https://www.w3.org/TR/WCAG21/#pronunciation",
- "level" : "AAA",
- "version" : "2.0",
- "goal" :
- {
- "cat" : "-",
- "es" : "Está disponible un mecanismo para identificar la pronunciación específica de palabras donde el significado de las palabras, en contexto, es ambiguo sin conocer la pronunciación.",
- "en" : "A mechanism is available for identifying specific pronunciation of words where meaning of the words, in context, is ambiguous without knowing the pronunciation.",
- },
- "intent" :
- {
- "cat" : "",
- "es" : "",
- "en" : "The intent of this Success Criterion is to help people who are blind, people who have low vision, and people with reading disabilities to understand content in cases where meaning depends on pronunciation. Often words or characters have different meanings, each with its own pronunciation. The meaning of such words or characters can usually be determined from the context of the sentence. However, for more complex or ambiguous sentences, or for some languages, the meaning of the word cannot be easily determined or determined at all without knowing the pronunciation. When the sentence is read aloud and the screen reader reads the word using the wrong pronunciation, it can be even more difficult to understand than when read visually. When words are ambiguous or indeterminate unless the pronunciation is known, then providing some means of determining the pronunciation is needed.",
- },
- "benefits" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "Have difficulty decoding words#have difficulty using context to aid understanding#use technologies that read the words aloud.",
- },
- "verification" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "tools" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "category" : [""]
- },
-
- { // 3.2.1.
- "criteria" :
- {
- "cat" : "",
- "es" : "3.2.1 En foco",
- "en" : "3.2.1 On Focus",
- },
- "link" : "https://www.w3.org/TR/WCAG21/#on-focus",
- "level" : "A",
- "version" : "2.0",
- "goal" :
- {
- "cat" : "-",
- "es" : "Cuando cualquier componente de la interfaz de usuario recibe el foco, no inicia un cambio de contexto.",
- "en" : "When any user interface component receives focus, it does not initiate a change of context.",
- },
- "intent" :
- {
- "cat" : "",
- "es" : "",
- "en" : "The intent of this Success Criterion is to ensure that functionality is predictable as visitors navigate their way through a document. Any component that is able to trigger an event when it receives focus must not change the context. Examples of changing context when a component receives focus include, but are not limited to:#forms submitted automatically when a component receives focus;# new windows launched when a component receives focus;#focus is changed to another component when that component receives focus.",
- },
- "benefits" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "This Success Criterion helps people with visual disabilities, cognitive limitations, and motor impairments by reducing the chance that a change of context will occur unexpectedly.",
- },
- "verification" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "tools" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "category" : ["forms-and-UI"]
- },
-
- { // 3.2.2.
- "criteria" :
- {
- "cat" : "",
- "es" : "3.2.2 En la entrada",
- "en" : "3.2.2 On Input",
- },
- "link" : "https://www.w3.org/TR/WCAG21/#on-input",
- "level" : "A",
- "version" : "2.0",
- "goal" :
- {
- "cat" : "-",
- "es" : "Cambiar la configuración de cualquier componente de la interfaz de usuario no provoca automáticamente un cambio de contexto a menos que se haya informado al usuario sobre el comportamiento antes de usar el componente.",
- "en" : "Changing the setting of any user interface component does not automatically cause a change of context unless the user has been advised of the behavior before using the component.",
- },
- "intent" :
- {
- "cat" : "",
- "es" : "",
- "en" : "This Success Criterion helps people with visual disabilities, cognitive limitations, and motor impairments by reducing the chance that a change of context will occur unexpectedly.",
- },
- "benefits" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "This Success Criterion helps users with disabilities by making interactive content more predictable. Unexpected changes of context can be so disorienting for users with visual disabilities or cognitive limitations that they are unable to use the content.# Individuals who are unable to detect changes of context are less likely to become disoriented while navigating a site. For example:# Individuals who are blind or have low vision may have difficulty knowing when a visual context change has occurred, such as a new window popping up. In this case, warning users of context changes in advance minimizes confusion when the user discovers that the back button no longer behaves as expected.#Some individuals with low vision, with reading and intellectual disabilities, and others who have difficulty interpreting visual cues may benefit from additional cues in order to detect changes of context.",
- },
- "verification" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "tools" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "category" : ["forms-and-UI"]
- },
-
- { // 3.2.3.
- "criteria" :
- {
- "cat" : "",
- "es" : "3.2.3 Navegación consistente",
- "en" : "3.2.3 Consistent Navigation",
- },
- "link" : "https://www.w3.org/TR/WCAG21/#consistent-navigation",
- "level" : "AA",
- "version" : "2.0",
- "goal" :
- {
- "cat" : "-",
- "es" : "Los mecanismos de navegación que se repiten en varias páginas web dentro de un conjunto de páginas web ocurren en el mismo orden relativo cada vez que se repiten, a menos que el usuario inicie un cambio.",
- "en" : "Navigational mechanisms that are repeated on multiple Web pages within a set of Web pages occur in the same relative order each time they are repeated, unless a change is initiated by the user.",
- },
- "intent" :
- {
- "cat" : "",
- "es" : "",
- "en" : "The intent of this Success Criterion is to encourage the use of consistent presentation and layout for users who interact with repeated content within a set of Web pages and need to locate specific information or functionality more than once. Individuals with low vision who use screen magnification to display a small portion of the screen at a time often use visual cues and page boundaries to quickly locate repeated content. Presenting repeated content in the same order is also important for visual users who use spatial memory or visual cues within the design to locate repeated content.",
- },
- "benefits" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "Ensuring that repeated components occur in the same order on each page of a site helps users become comfortable that they will able to predict where they can find things on each page. This helps users with cognitive limitations, users with low vision, users with intellectual disabilities, and also those who are blind.",
- },
- "verification" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "tools" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "category" : ["structure"]
- },
-
- { // 3.2.4.
- "criteria" :
- {
- "cat" : "",
- "es" : "3.2.4 Identificación consistente",
- "en" : "3.2.4 Consistent Identification",
- },
- "link" : "https://www.w3.org/TR/WCAG21/#consistent-identification",
- "level" : "AA",
- "version" : "2.0",
- "goal" :
- {
- "cat" : "-",
- "es" : "Los componentes que tienen la misma funcionalidad dentro de un conjunto de páginas web se identifican de forma coherente.",
- "en" : "Components that have the same functionality within a set of Web pages are identified consistently.",
- },
- "intent" :
- {
- "cat" : "",
- "es" : "",
- "en" : "The intent of this Success Criterion is to ensure consistent identification of functional components that appear repeatedly within a set of Web pages. A strategy that people who use screen readers use when operating a Web site is to rely heavily on their familiarity with functions that may appear on different Web pages. If identical functions have different labels (or, more generally, a different accessible name) on different Web pages, the site will be considerably more difficult to use. It may also be confusing and increase the cognitive load for people with cognitive limitations. Therefore, consistent labeling will help.",
- "en" : "",
- },
- "benefits" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "People who learn functionality on one page on a site can find the desired functions on other pages if they are present.#When non-text content is used in a consistent way to identify components with the same functionality, people with difficulty reading text or detecting text alternatives can interact with the Web without depending on text alternatives.#People who depend on text alternatives can have a more predictable experience. They can also search for the component if it has a consistent label on different pages.",
- },
- "verification" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "tools" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "category" : ["structure"]
- },
-
- { // 3.2.5.
- "criteria" :
- {
- "cat" : "",
- "es" : "3.2.5 Cambio a pedido",
- "en" : "3.2.5 Change on Request",
- },
- "link" : "https://www.w3.org/TR/WCAG21/#change-on-request",
- "level" : "AAA",
- "version" : "2.0",
- "goal" :
- {
- "cat" : "-",
- "es" : "Los cambios de contexto se inician solo por solicitud del usuario o hay un mecanismo disponible para desactivar dichos cambios.",
- "en" : "Changes of context are initiated only by user request or a mechanism is available to turn off such changes.",
- },
- "intent" :
- {
- "cat" : "",
- "es" : "",
- "en" : "The intent of this Success Criterion is to encourage design of Web content that gives users full control of changes of context. This Success Criterion aims to eliminate potential confusion that may be caused by unexpected changes of context such as automatic launching of new windows, automatic submission of forms after selecting an item from a list, etcetera. Such unexpected changes of context may cause difficulties for people with motor impairments, people with low vision, people who are blind, and people with certain cognitive limitations.",
- },
- "benefits" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "Individuals who are unable to detect changes of context or may not realize that the context has changed are less likely to become disoriented while navigating a site. For example:#individuals who are blind or have low vision may have difficulty knowing when a visual context change has occurred, such as a new window popping up. In this case, warning users of context changes in advance minimizes confusion when the user discovers that the back button no longer behaves as expected.#Some individuals with low vision, with reading and intellectual disabilities, and who have difficulty interpreting visual cues may benefit from additional cues in order to detect changes of context.#People with certain cognitive limitations do not get confused if automatic redirects are performed by the Web server instead of the browser.",
- },
- "verification" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "tools" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "category" : [""]
- },
-
- { // 3.2.6.
- "criteria" :
- {
- "cat" : "",
- "es" : "3.2.6 Ayuda consistente",
- "en" : "3.2.6 Consisten Help",
- },
- "link" : "https://www.w3.org/TR/WCAG22/#consistent-help",
- "level" : "A",
- "version" : "2.2",
- "goal" :
- {
- "cat" : "-",
- "es" : " Para cada página web dentro de un conjunto de páginas web que proporciona una o más de las siguientes formas de encontrar ayuda, el acceso a al menos una forma de ayuda se incluye en el mismo orden relativo en cada página:<ul><li>Detalles de contacto humano;</li><li>Mecanismo de contacto humano;</li><li>Opción de autoayuda;</li><li>Un mecanismo de contacto totalmente automatizado.</li></ul>",
- "en" : "For each web page within a set of web pages that provides one or more of the following ways of finding help, access to at least one form of help is included in the same relative order on each page:<ul><li>Human contact details;</li><li>Human contact mechanism;</li><li>Self-help option;</li><li>A fully automated contact mechanism.</li></ul>",
- },
- "intent" :
- {
- "cat" : "",
- "es" : "",
- "en" : "",
- },
- "benefits" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "verification" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "tools" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "category" : [""]
- },
- { // 3.2.7.
- "criteria" :
- {
- "cat" : "",
- "es" : "3.2.7 Controles visibles",
- "en" : "3.2.7 Visible Controls",
- },
- "link" : "https://www.w3.org/TR/WCAG22/#visible-controls",
- "level" : "AA",
- "version" : "2.2",
- "goal" :
- {
- "cat" : "-",
- "es" : "Cuando recibir el cursor del puntero o el enfoque del teclado hace que los componentes de la interfaz de usuario sean visibles, la información necesaria para identificar que los componentes de la interfaz de usuario están disponibles es visible, excepto cuando:<ul><li>La información necesaria para identificar los componentes de la interfaz de usuario está disponible a través de un componente equivalente que está visible en la misma página o en un paso diferente en un proceso de varios pasos sin necesidad de pasar el puntero o enfocar el teclado;</li><li>El componente se proporciona específicamente para mejorar la experiencia de navegación con el teclado;</li><li>Se dispone de un mecanismo para hacer visible la información de forma persistente;</li><li>Es esencial ocultar la información necesaria para identificar el componente.</li></ul>",
- "en" : "Where receiving pointer hover or keyboard focus triggers user interface components to be visible, information needed to identify that user interface components are available is visible, except when:<ul><li>The information needed to identify the user interface components is available through an equivalent component that is visible on the same page or on a different step in a multi-step process without requiring pointer hover or keyboard focus;</li><li>The component is provided specifically to enhance the experience for keyboard navigation;</li><li>A mechanism is available to make the information persistently visible;</li><li>Hiding the information needed to identify the component is essential.</li></ul>",
- },
- "intent" :
- {
- "cat" : "",
- "es" : "",
- "en" : "",
- },
- "benefits" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "verification" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "tools" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "category" : [""]
- },
- { // 3.3.1.
- "criteria" :
- {
- "cat" : "",
- "es" : "3.3.1 Identificación de errores",
- "en" : "3.3.1 Error Identification",
- },
- "link" : "https://www.w3.org/TR/WCAG21/#error-identification",
- "level" : "A",
- "version" : "2.0",
- "goal" :
- {
- "cat" : "-",
- "es" : "Si se detecta automáticamente un error de entrada, se identifica el elemento que tiene el error y se describe el error al usuario en texto.",
- "en" : "If an input error is automatically detected, the item that is in error is identified and the error is described to the user in text.",
- },
- "intent" :
- {
- "cat" : "",
- "es" : "",
- "en" : "The intent of this Success Criterion is to ensure that users are aware that an error has occurred and can determine what is wrong. The error message should be as specific as possible. In the case of an unsuccessful form submission, re-displaying the form and indicating the fields in error is insufficient for some users to perceive that an error has occurred. Screen reader users, for example, will not know there was an error until they encounter one of the indicators. They may abandon the form altogether before encountering the error indicator, thinking that the page simply is not functional.",
- },
- "benefits" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "Providing information about input errors in text allows users who are blind or colorblind to perceive the fact that an error occurred.#This Success Criterion may help people with cognitive, language, and learning disabilities who have difficulty understanding the meaning represented by icons and other visual cues.",
- },
- "verification" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "tools" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "category" : ["forms-and-UI"]
- },
-
- { // 3.3.2.
- "criteria" :
- {
- "cat" : "",
- "es" : "3.3.2 Etiquetas o instrucciones",
- "en" : "3.3.2 Labels or Instructions",
- },
- "link" : "https://www.w3.org/TR/WCAG21/#labels-or-instructions",
- "level" : "A",
- "version" : "2.0",
- "goal" :
- {
- "cat" : "-",
- "es" : "Se proporcionan etiquetas o instrucciones cuando el contenido requiere la intervención del usuario.",
- "en" : "Labels or instructions are provided when content requires user input.",
- },
- "intent" :
- {
- "cat" : "",
- "es" : "",
- "en" : "The intent of this Success Criterion is to have content authors present instructions or labels that identify the controls in a form so that users know what input data is expected. Instructions or labels may also specify data formats for fields especially if they are out of the customary formats or if there are specific rules for correct input. Content authors may also choose to make such instructions available to users only when the individual control has focus especially when instructions are long and verbose.#The intent of this Success Criterion is not to clutter the page with unnecessary information but to provide important cues and instructions that will benefit people with disabilities. Too much information or instruction can be just as harmful as too little. The goal is to make certain that enough information is provided for the user to accomplish the task without undue confusion or navigation.",
- },
- "benefits" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "Providing clear and unambiguous labels and instructions (including examples of expected data formats) helps all users - but particularly those with cognitive, language, and learning disabilities - to enter information correctly.#Providing clear and unambiguous labels and instructions (including clear identification of required fields) can prevent users from making incomplete or incorrect form submissions, which prevents users from having to navigate once more through a page/form in order to fix submission errors.",
- },
- "verification" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "tools" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "category" : ["forms-and-UI"]
- },
-
- { // 3.3.3.
- "criteria" :
- {
- "cat" : "",
- "es" : "3.3.3 Sugerencia de error",
- "en" : "3.3.3 Error Suggestion",
- },
- "link" : "https://www.w3.org/TR/WCAG21/#error-suggestion",
- "level" : "AA",
- "version" : "2.0",
- "goal" :
- {
- "cat" : "-",
- "es" : "Si se detecta automáticamente un error de entrada y se conocen sugerencias para su corrección, estas sugerencias se proporcionan al usuario, a menos que pongan en peligro la seguridad o el propósito del contenido.",
- "en" : "If an input error is automatically detected and suggestions for correction are known, then the suggestions are provided to the user, unless it would jeopardize the security or purpose of the content.",
- },
- "intent" :
- {
- "cat" : "",
- "es" : "",
- "en" : "The intent of this Success Criterion is to ensure that users receive appropriate suggestions for correction of an input error if it is possible. The WCAG 2.0 definition of 'input error' says that it is 'information provided by the user that is not accepted' by the system. Some examples of information that is not accepted include information that is required but omitted by the user and information that is provided by the user but that falls outside the required data format or allowed values.",
- },
- "benefits" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "Providing information about how to correct input errors allows users who have learning disabilities to fill in a form successfully. Users who are blind or have impaired vision understand more easily the nature of the input error and how to correct it. People with motion impairment can reduce the number of times they need to change an input value.",
- },
- "verification" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "tools" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "category" : ["forms-and-UI"]
- },
-
- { // 3.3.4.
- "criteria" :
- {
- "cat" : "",
- "es" : "3.3.4 Prevención de errores (datos financieros legales)",
- "en" : "3.3.4 Error Prevention (Legal Financial Data)",
- },
- "link" : "https://www.w3.org/TR/WCAG21/#error-prevention-legal-financial-data",
- "level" : "AA",
- "version" : "2.0",
- "goal" :
- {
- "cat" : "-",
- "es" : "Para las páginas web que generan compromisos legales o transacciones financieras para el usuario, que modifican o eliminan datos controlables por el usuario en los sistemas de almacenamiento de datos, o que envían respuestas de prueba del usuario, al menos uno de los siguientes es verdadero:<ul><li>Reversible: Las presentaciones son reversibles.</li><li>Verificado: los datos ingresados por el usuario se verifican en busca de errores de entrada y el usuario tiene la oportunidad de corregirlos.</li><li>Confirmado: hay un mecanismo disponible para revisar, confirmar y corregir la información antes de finalizar el envío.</li></ul>",
- "en" : "For Web pages that cause legal commitments or financial transactions for the user to occur, that modify or delete user-controllable data in data storage systems, or that submit user test responses, at least one of the following is true:<ul><li>Reversible : Submissions are reversible.</li><li>Checked : Data entered by the user is checked for input errors and the user is provided an opportunity to correct them.</li><li>Confirmed : A mechanism is available for reviewing, confirming, and correcting information before finalizing the submission.</li></ul>",
- },
- "intent" :
- {
- "cat" : "",
- "es" : "",
- "en" : "The intent of this Success Criterion is to help users with disabilities avoid serious consequences as the result of a mistake when performing an action that cannot be reversed. For example, purchasing non-refundable airline tickets or submitting an order to purchase stock in a brokerage account are financial transactions with serious consequences. If a user has made a mistake on the date of air travel, he or she could end up with a ticket for the wrong day that cannot be exchanged. If the user made a mistake on the number of stock shares to be purchased, he or she could end up purchasing more stock than intended. Both of these types of mistakes involve transactions that take place immediately and cannot be altered afterwards, and can be very costly. Likewise, it may be an unrecoverable error if users unintentionally modify or delete data stored in a database that they later need to access, such as their entire travel profile in a travel services web site. When referring to modification or deletion of 'user controllable' data, the intent is to prevent mass loss of data such as deleting a file or record. It is not the intent to require a confirmation for each save command or the simple creation or editing of documents, records or other data.",
- },
- "benefits" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "Providing safeguards to avoid serious consequences resulting from mistakes helps users with all disabilities who may be more likely to make mistakes.",
- },
- "verification" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "tools" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "category" : ["content"]
- },
-
- { // 3.3.5.
- "criteria" :
- {
- "cat" : "",
- "es" : "3.3.5 Ayuda",
- "en" : "3.3.5 Help",
- },
- "link" : "https://www.w3.org/TR/WCAG21/#help",
- "level" : "AAA",
- "version" : "2.0",
- "goal" :
- {
- "cat" : "-",
- "es" : "La ayuda sensible al contexto está disponible.",
- "en" : "Context-sensitive help is available.",
- },
- "intent" :
- {
- "cat" : "",
- "es" : "",
- "en" : "The intent of this Success Criterion is to help users avoid making mistakes. Some users with disabilities may be more likely to make mistakes than users without disabilities. Using context-sensitive help, users find out how to perform an operation without losing track of what they are doing.#Context-sensitive help only needs to be provided when the label is not sufficient to describe all functionality. The existence of context-sensitive help should be obvious to the user and they should be able to obtain it whenever they require it.#The content author may provide the help text, or the user agent may provide the help text based on technology-specific, programmatically determined information.",
- },
- "benefits" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "Assistance for text input helps individuals with writing disabilities and people with reading and intellectual disabilities who often have difficulty writing text in forms or other places that need text input.#Additionally, these kinds of assistance help people who are aging and have the same difficulty in text input and/or mouse operation.",
- },
- "verification" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "tools" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "category" : [""]
- },
-
- { // 3.3.6.
- "criteria" :
- {
- "cat" : "",
- "es" : "3.3.6 Prevención de errores (Todos)",
- "en" : "3.3.6 Error Prevention (All)",
- },
- "link" : "https://www.w3.org/TR/WCAG21/#error-prevention-all",
- "level" : "AAA",
- "version" : "2.0",
- "goal" :
- {
- "cat" : "-",
- "es" : "Para las páginas web que requieren que el usuario envíe información, al menos uno de los siguientes es verdadero:<ul><li>Reversible: Las presentaciones son reversibles.</li><li>Verificado: los datos ingresados por el usuario se verifican en busca de errores de entrada y el usuario tiene la oportunidad de corregirlos.</li><li>Confirmado: hay un mecanismo disponible para revisar, confirmar y corregir la información antes de finalizar el envío.</li></ul>",
- "en" : "For Web pages that require the user to submit information, at least one of the following is true:<ul><li>Reversible : Submissions are reversible.</li><li>Checked : Data entered by the user is checked for input errors and the user is provided an opportunity to correct them.</li><li>Confirmed : A mechanism is available for reviewing, confirming, and correcting information before finalizing the submission.</li></ul>",
- },
- "intent" :
- {
- "cat" : "",
- "es" : "",
- "en" : "The intent of this Success Criterion is to help users with disabilities avoid consequences that may result from making a mistake when submitting form data. This criterion builds on Success Criterion 3.3.4 in that it applies to all forms that require users to submit information.",
- },
- "benefits" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "Providing safeguards to avoid consequences resulting from mistakes helps users with all disabilities who may be more likely to make mistakes.",
- },
- "verification" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "tools" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "category" : [""]
- },
-
- { // 3.3.7.
- "criteria" :
- {
- "cat" : "",
- "es" : "3.3.7 Autenticación accesible",
- "en" : "3.3.7 Accessible Authentication",
- },
- "link" : "https://www.w3.org/TR/WCAG22/#accessible-authentication",
- "level" : "A",
- "version" : "2.2",
- "goal" :
- {
- "cat" : "-",
- "es" : "Para cada paso en un proceso de autenticación que se basa en una prueba de función cognitiva, hay al menos otro método de autenticación disponible que no se basa en una prueba de función cognitiva, o hay un mecanismo disponible para ayudar al usuario a completar la prueba de función cognitiva.",
- "en" : "For each step in an authentication process that relies on a cognitive function test, at least one other authentication method is available that does not rely on a cognitive function test, or a mechanism is available to assist the user in completing the cognitive function test.",
- },
- "intent" :
- {
- "cat" : "",
- "es" : "",
- "en" : "",
- },
- "benefits" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "verification" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "tools" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "category" : [""]
- },
- { // 3.3.8.
- "criteria" :
- {
- "cat" : "",
- "es" : "3.3.8 Entrada redundante",
- "en" : "3.3.8 Redundant entry",
- },
- "link" : "https://www.w3.org/TR/WCAG22/#redundant-entry",
- "level" : "A",
- "version" : "2.2",
- "goal" :
- {
- "cat" : "-",
- "es" : "La información previamente ingresada por o proporcionada al usuario que se requiere que se ingrese nuevamente en el mismo proceso y en la misma sesión de usuario es:<ul><li>Rellenado automáticamente, o</li><li>Disponibles para que el usuario seleccione.</li></ul>Excepto cuando:<ul><li>Volver a ingresar la información es esencial,</li><li>La información es necesaria para garantizar la seguridad del contenido, o</li><li>La información ingresada anteriormente ya no es válida.</li></ul>",
- "en" : "Information previously entered by or provided to the user that is required to be entered again in the same process and in the same user-session is either:<ul><li>auto-populated, or</li><li>available for the user to select.</li></ul>Except when:<ul><li>re-entering the information is essential,</li><li>the information is required to ensure the security of the content, or</li><li>previously entered information is no longer valid.</li></ul>",
- },
- "intent" :
- {
- "cat" : "",
- "es" : "",
- "en" : "",
- },
- "benefits" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "verification" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "tools" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "category" : [""]
- },
- { // 4.1.1.
- "criteria" :
- {
- "cat" : "",
- "es" : "4.1.1 Análisis",
- "en" : "4.1.1 Parsing",
- },
- "link" : "https://www.w3.org/TR/WCAG21/#parsing",
- "level" : "A",
- "version" : "2.0",
- "goal" :
- {
- "cat" : "-",
- "es" : "En el contenido implementado mediante lenguajes de marcado, los elementos tienen etiquetas de inicio y finalización completas, los elementos se anidan de acuerdo con sus especificaciones, los elementos no contienen atributos duplicados y cualquier ID es único, excepto donde las especificaciones permitan estas características.",
- "en" : "In content implemented using markup languages, elements have complete start and end tags, elements are nested according to their specifications, elements do not contain duplicate attributes, and any IDs are unique, except where the specifications allow these features.",
- },
- "intent" :
- {
- "cat" : "",
- "es" : "",
- "en" : "The intent of this Success Criterion is to ensure that user agents, including assistive technologies, can accurately interpret and parse content. If the content cannot be parsed into a data structure, then different user agents may present it differently or be completely unable to parse it. Some user agents use 'repair techniques' to render poorly coded content.",
- },
- "benefits" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "Ensuring that Web pages have complete start and end tags and are nested according to specification helps ensure that assistive technologies can parse the content accurately and without crashing.",
- },
- "verification" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "tools" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "category" : ["structure"]
- },
-
- { // 4.1.2.
- "criteria" :
- {
- "cat" : "",
- "es" : "4.1.2 Nombre Rol Valor",
- "en" : "4.1.2 Name Role Value",
- },
- "link" : "https://www.w3.org/TR/WCAG21/#name-role-value",
- "level" : "A",
- "version" : "2.0",
- "goal" :
- {
- "cat" : "-",
- "es" : "Para todos los componentes de la interfaz de usuario (incluidos, entre otros: elementos de formulario, enlaces y componentes generados por scripts), el nombre y la función se pueden determinar mediante programación; los estados, las propiedades y los valores que puede establecer el usuario se pueden establecer mediante programación; y la notificación de cambios en estos elementos está disponible para los agentes de usuario, incluidas las tecnologías de asistencia.",
- "en" : "For all user interface components (including but not limited to: form elements, links and components generated by scripts), the name and role can be programmatically determined; states, properties, and values that can be set by the user can be programmatically set; and notification of changes to these items is available to user agents, including assistive technologies.",
- },
- "intent" :
- {
- "cat" : "",
- "es" : "",
- "en" : "The intent of this Success Criterion is to ensure that Assistive Technologies (AT) can gather information about, activate(or set) and keep up to date on the status of user interface controls in the content.",
- },
- "benefits" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "Providing role, state, and value information on all user interface components enables compatibility with assistive technology, such as screen readers, screen magnifiers, and speech recognition software, used by people with disabilities.",
- },
- "verification" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "tools" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "category" : ["custom-controls", "forms-and-UI"]
- },
-
- { // 4.1.3.
- "criteria" :
- {
- "cat" : "",
- "es" : "4.1.3 Mensajes de estado",
- "en" : "4.1.3 Status Messages",
- },
- "link" : "https://www.w3.org/TR/WCAG21/#status-messages",
- "level" : "AA",
- "version" : "2.1",
- "goal" :
- {
- "cat" : "-",
- "es" : "En el contenido implementado mediante lenguajes de marcado, los mensajes de estado se pueden determinar mediante programación a través del rol o las propiedades, de modo que se puedan presentar al usuario mediante tecnologías de asistencia sin recibir atención.",
- "en" : "In content implemented using markup languages, status messages can be programmatically determined through role or properties such that they can be presented to the user by assistive technologies without receiving focus.",
- },
- "intent" :
- {
- "cat" : "",
- "es" : "",
- "en" : "The intent of this Success Criterion is to make users aware of important changes in content that are not given focus, and to do so in a way that doesn't unnecessarily interrupt their work.#The intended beneficiaries are blind and low vision users of assistive technologies with screen reader capabilities. An additional benefit is that assistive technologies for users with cognitive disabilities may achieve an alternative means of indicating (or even delaying or supressing) status messages, as preferred by the user.",
- },
- "benefits" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "When appropriate roles or properties are assigned to status messages, the new content is spoken by screen readers in such a way as to assist blind and low vision users. Most sighted users can observe text peripherally added to the viewport. Such content provides additional information without affecting the user's current point of regard. The ability of an assistive technology to announce such new important text content allows more users to benefit from an awareness of the information in an equivalent manner.#Assigning proper roles or properties to status messages provides possible future uses and personalization opportunities, such as the potential to be exploited by assistive technologies created for users with some cognitive disabilities. Where page authors elect to design additions to the screen which do not change the user's context (i.e., take focus), the information is arguably of less importance than something presented using a modal dialog, which must be acknowledged by the user. As such, depending on the user's preferences, an assistive technology may choose to delay, suppress, or transform such messages so a user is not unnecessarily interrupted; or conversely the assistive technology may highlight such messages where the user finds it optimal to do so.",
- },
- "verification" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "tools" :
- {
- "cat" : "-",
- "es" : "-",
- "en" : "-",
- },
- "category" : ["custom-controls"]
- }
- ]
- };
|