tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

accessibility.ftl (4380B)


      1 # This Source Code Form is subject to the terms of the Mozilla Public
      2 # License, v. 2.0. If a copy of the MPL was not distributed with this
      3 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
      4 
      5 ### These strings are used inside the Accessibility panel.
      6 
      7 accessibility-learn-more = Learn more
      8 
      9 accessibility-text-label-header = Text Labels and Names
     10 
     11 accessibility-keyboard-header = Keyboard
     12 
     13 ## These strings are used in the overlay displayed when running an audit in the accessibility panel
     14 
     15 accessibility-progress-initializing = Initializing…
     16   .aria-valuetext = Initializing…
     17 
     18 # This string is displayed in the audit progress bar in the accessibility panel.
     19 # Variables:
     20 #   $nodeCount (Integer) - The number of nodes for which the audit was run so far.
     21 accessibility-progress-progressbar =
     22     { $nodeCount ->
     23         [one] Checking { $nodeCount } node
     24        *[other] Checking { $nodeCount } nodes
     25     }
     26 
     27 accessibility-progress-finishing = Finishing up…
     28   .aria-valuetext = Finishing up…
     29 
     30 ## Text entries that are used as text alternative for icons that depict accessibility issues.
     31 
     32 accessibility-warning =
     33   .alt = Warning
     34 
     35 accessibility-fail =
     36   .alt = Error
     37 
     38 accessibility-best-practices =
     39   .alt = Best Practices
     40 
     41 ## Text entries for a paragraph used in the accessibility panel sidebar's checks section
     42 ## that describe that currently selected accessible object has an accessibility issue
     43 ## with its text label or accessible name.
     44 
     45 accessibility-text-label-issue-area = Use <code>alt</code> attribute to label <div>area</div> elements that have the <span>href</span> attribute. <a>Learn more</a>
     46 
     47 accessibility-text-label-issue-dialog = Dialogs should be labeled. <a>Learn more</a>
     48 
     49 accessibility-text-label-issue-document-title = Documents must have a <code>title</code>. <a>Learn more</a>
     50 
     51 accessibility-text-label-issue-embed = Embedded content must be labeled. <a>Learn more</a>
     52 
     53 accessibility-text-label-issue-figure = Figures with optional captions should be labeled. <a>Learn more</a>
     54 
     55 accessibility-text-label-issue-fieldset = <code>fieldset</code> elements must be labeled. <a>Learn more</a>
     56 
     57 accessibility-text-label-issue-fieldset-legend2 = Use a <code>legend</code> element to label a <span>fieldset</span>. <a>Learn more</a>
     58 
     59 accessibility-text-label-issue-form = Form elements must be labeled. <a>Learn more</a>
     60 
     61 accessibility-text-label-issue-form-visible = Form elements should have a visible text label. <a>Learn more</a>
     62 
     63 accessibility-text-label-issue-frame = <code>frame</code> elements must be labeled. <a>Learn more</a>
     64 
     65 accessibility-text-label-issue-glyph = Use <code>alt</code> attribute to label <span>mglyph</span> elements. <a>Learn more</a>
     66 
     67 accessibility-text-label-issue-heading = Headings must be labeled. <a>Learn more</a>
     68 
     69 accessibility-text-label-issue-heading-content = Headings should have visible text content. <a>Learn more</a>
     70 
     71 accessibility-text-label-issue-iframe = Use <code>title</code> attribute to describe <span>iframe</span> content. <a>Learn more</a>
     72 
     73 accessibility-text-label-issue-image = Content with images must be labeled. <a>Learn more</a>
     74 
     75 accessibility-text-label-issue-interactive = Interactive elements must be labeled. <a>Learn more</a>
     76 
     77 accessibility-text-label-issue-optgroup-label2 = Use a <code>label</code> attribute to label an <span>optgroup</span>. <a>Learn more</a>
     78 
     79 accessibility-text-label-issue-toolbar = Toolbars must be labeled when there is more than one toolbar. <a>Learn more</a>
     80 
     81 ## Text entries for a paragraph used in the accessibility panel sidebar's checks section
     82 ## that describe that currently selected accessible object has a keyboard accessibility
     83 ## issue.
     84 
     85 accessibility-keyboard-issue-semantics = Focusable elements should have interactive semantics. <a>Learn more</a>
     86 
     87 accessibility-keyboard-issue-tabindex = Avoid using <code>tabindex</code> attribute greater than zero. <a>Learn more</a>
     88 
     89 accessibility-keyboard-issue-action = Interactive elements must be able to be activated using a keyboard. <a>Learn more</a>
     90 
     91 accessibility-keyboard-issue-focusable = Interactive elements must be focusable. <a>Learn more</a>
     92 
     93 accessibility-keyboard-issue-focus-visible = Focusable element may be missing focus styling. <a>Learn more</a>
     94 
     95 accessibility-keyboard-issue-mouse-only = Clickable elements must be focusable and should have interactive semantics. <a>Learn more</a>