# Orca # # Copyright 2004-2009 Sun Microsystems Inc. # Copyright 2010-2013 The Orca Team # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public # License as published by the Free Software Foundation; either # version 2.1 of the License, or (at your option) any later version. # # This library is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with this library; if not, write to the # Free Software Foundation, Inc., Franklin Street, Fifth Floor, # Boston MA 02110-1301 USA. """Propeerties of accessible objects. These have been put in their own module so that we can present them in the correct language when users change the language on the fly without having to reload a bunch of modules.""" __id__ = "$Id$" __version__ = "$Revision$" __date__ = "$Date$" __copyright__ = "Copyright (c) 2004-2009 Sun Microsystems Inc." \ "Copyright (c) 2010-2013 The Orca Team" __license__ = "LGPL" from .orca_i18n import _, C_ # Translators: this is the action name for the 'toggle' action. It must be the # same string used in the *.po file for gail. ACTION_TOGGLE = _("toggle") # Translators: this is a indication of the focused icon and the count of the # total number of icons within an icon panel. An example of an icon panel is # the Nautilus folder view. ICON_INDEX_SPEECH = _("on %(index)d of %(total)d") # Translators: this refers to the position of an item in a list or group of # objects, such as menu items in a menu, radio buttons in a radio button group, # combobox item in a combobox, etc. GROUP_INDEX_SPEECH = _("%(index)d of %(total)d") # Translators: This message describes a list item in a document. Nesting level # is how "deep" the item is (e.g., a level of 2 represents a list item inside a # list that's inside another list). NESTING_LEVEL_SPEECH = _("Nesting level %d") # Translators: This message describes a list item in a document. Nesting level # is how "deep" the item is (e.g., a level of 2 represents a list item inside a # list that's inside another list). This string is specifically for braille. # Because braille displays lack real estate, we're using a shorter string than # we use for speech. NESTING_LEVEL_BRAILLE = _("LEVEL %d") # Translators: This represents the depth of a node in a TreeView (i.e. how many # ancestors the node has). This is the spoken version. NODE_LEVEL_SPEECH = _("tree level %d") # Translators: This represents the depth of a node in a TreeView (i.e. how many # ancestors the node has). This is the braille version. NODE_LEVEL_BRAILLE = _("TREE LEVEL %d") # Translators: In web content, authors can identify an element which contains # detailed information about another element. For instance, for a password # field, there may be a list of requirements (number of characters, number of # special symbols, etc.). For an image, there may be an extended description # before or after the image. Often there are visual clues connecting the # detailed information to its related object. We need to convey this non-visually. # This relationship will be presented for the object containing the details, e.g. # when arrowing into or out of it. The string substitution is for the object to # which the detailed information applies. For instance, when navigating into # the details for an image named Pythagorean Theorem, Orca would present: # "details for Pythagorean Theorem image". # See https://w3c.github.io/aria/#aria-details RELATION_DETAILS_FOR = _("details for %s") # Translators: In web content, authors can identify an element which contains # detailed information about another element. For instance, for a password # field, there may be a list of requirements (number of characters, number of # special symbols, etc.). For an image, there may be an extended description # before or after the image. Often there are visual clues connecting the # detailed information to its related object. We need to convey this non-visually. # This relationship will be presented for the object which has details to tell # the user the type of object where the details can be found so that they can # more quickly navigate to it. The string substitution is for the object to # which the detailed information applies. For instance, when navigating to # a password field which has details in a list named "Requirements", Orca would # present: "has details in Requirements list". # See https://w3c.github.io/aria/#aria-details RELATION_HAS_DETAILS = _("has details in %s") # Translators: This string should be treated as a role describing an object. # Examples of roles include "checkbox", "radio button", "paragraph", and "link." # This role refers to a container with a proposed change. This change can # include the insertion and/or deletion of content, and would typically be seen # in a collaborative editor, such as in Google Docs. ROLE_CONTENT_SUGGESTION = C_("role", "suggestion") # Translators: This string should be treated as a role describing an object. # Examples of roles include "checkbox", "radio button", "paragraph", and "link." # The reason for including the editable state as part of the role is to make it # possible for users to quickly identify combo boxes in which a value can be # typed or arrowed to. ROLE_EDITABLE_COMBO_BOX = _("editable combo box") # Translators: This string should be treated as a role describing an object. # Examples of roles include "checkbox", "radio button", "paragraph", and "link." # This role is to describe elements in web content which have the contenteditable # attribute set to true, indicating that the element can be edited by the user. ROLE_EDITABLE_CONTENT = _("editable content") # Translators: This string should be treated as a role describing an object. # Examples of roles include "checkbox", "radio button", "paragraph", and "link." # The feed role is a scrollable list of articles where scrolling may cause # articles to be added to or removed from either end of the list. # https://w3c.github.io/aria/#feed ROLE_FEED = C_("role", "feed") # Translators: This string should be treated as a role describing an object. # Examples of roles include "checkbox", "radio button", "paragraph", and "link." # The figure role is a perceivable section of content that typically contains a # graphical document, images, code snippets, or example text. # https://w3c.github.io/aria/#figure ROLE_FIGURE = C_("role", "figure") # Translators: This string should be treated as a role describing an object. # Examples of roles include "checkbox", "radio button", "paragraph", and "link." # This role refers to the abstract in a digitally-published document. # https://w3c.github.io/dpub-aria/#doc-abstract ROLE_ABSTRACT = C_("role", "abstract") # Translators: This string should be treated as a role describing an object. # Examples of roles include "checkbox", "radio button", "paragraph", and "link." # This role refers to the acknowledgments in a digitally-published document. # https://w3c.github.io/dpub-aria/#doc-acknowledgments ROLE_ACKNOWLEDGMENTS = C_("role", "acknowledgments") # Translators: This string should be treated as a role describing an object. # Examples of roles include "checkbox", "radio button", "paragraph", and "link." # This role refers to the afterword in a digitally-published document. # https://w3c.github.io/dpub-aria/#doc-afterword ROLE_AFTERWORD = C_("role", "afterword") # Translators: This string should be treated as a role describing an object. # Examples of roles include "checkbox", "radio button", "paragraph", and "link." # This role refers to the appendix in a digitally-published document. # https://w3c.github.io/dpub-aria/#doc-appendix ROLE_APPENDIX = C_("role", "appendix") # Translators: This string should be treated as a role describing an object. # Examples of roles include "checkbox", "radio button", "paragraph", and "link." # This role refers to a bibliography entry in a digitally-published document. # https://w3c.github.io/dpub-aria/#doc-biblioentry ROLE_BIBLIOENTRY = C_("role", "bibliography entry") # Translators: This string should be treated as a role describing an object. # Examples of roles include "checkbox", "radio button", "paragraph", and "link." # This role refers to the bibliography in a digitally-published document. # https://w3c.github.io/dpub-aria/#doc-bibliography ROLE_BIBLIOGRAPHY = C_("role", "bibliography") # Translators: This string should be treated as a role describing an object. # Examples of roles include "checkbox", "radio button", "paragraph", and "link." # This role refers to a chapter in a digitally-published document. # https://w3c.github.io/dpub-aria/#doc-chapter ROLE_CHAPTER = C_("role", "chapter") # Translators: This string should be treated as a role describing an object. # Examples of roles include "checkbox", "radio button", "paragraph", and "link." # This role refers to the colophon in a digitally-published document. # https://w3c.github.io/dpub-aria/#doc-colophon ROLE_COLOPHON = C_("role", "colophon") # Translators: This string should be treated as a role describing an object. # Examples of roles include "checkbox", "radio button", "paragraph", and "link." # This role refers to the conclusion in a digitally-published document. # https://w3c.github.io/dpub-aria/#doc-conclusion ROLE_CONCLUSION = C_("role", "conclusion") # Translators: This string should be treated as a role describing an object. # Examples of roles include "checkbox", "radio button", "paragraph", and "link." # This role refers to the cover in a digitally-published document. # https://w3c.github.io/dpub-aria/#doc-cover ROLE_COVER = C_("role", "cover") # Translators: This string should be treated as a role describing an object. # Examples of roles include "checkbox", "radio button", "paragraph", and "link." # This role refers to a single credit in a digitally-published document. # https://w3c.github.io/dpub-aria/#doc-credit ROLE_CREDIT = C_("role", "credit") # Translators: This string should be treated as a role describing an object. # Examples of roles include "checkbox", "radio button", "paragraph", and "link." # This role refers to the credits in a digitally-published document. # https://w3c.github.io/dpub-aria/#doc-credits ROLE_CREDITS = C_("role", "credits") # Translators: This string should be treated as a role describing an object. # Examples of roles include "checkbox", "radio button", "paragraph", and "link." # This role refers to the dedication in a digitally-published document. # https://w3c.github.io/dpub-aria/#doc-dedication ROLE_DEDICATION = C_("role", "dedication") # Translators: This string should be treated as a role describing an object. # Examples of roles include "checkbox", "radio button", "paragraph", and "link." # This role refers to a single endnote in a digitally-published document. # https://w3c.github.io/dpub-aria/#doc-endnote ROLE_ENDNOTE = C_("role", "endnote") # Translators: This string should be treated as a role describing an object. # Examples of roles include "checkbox", "radio button", "paragraph", and "link." # This role refers to the endnotes in a digitally-published document. # https://w3c.github.io/dpub-aria/#doc-endnotes ROLE_ENDNOTES = C_("role", "endnotes") # Translators: This string should be treated as a role describing an object. # Examples of roles include "checkbox", "radio button", "paragraph", and "link." # This role refers to the epigraph in a digitally-published document. # https://w3c.github.io/dpub-aria/#doc-epigraph ROLE_EPIGRAPH = C_("role", "epigraph") # Translators: This string should be treated as a role describing an object. # Examples of roles include "checkbox", "radio button", "paragraph", and "link." # This role refers to the epilogue in a digitally-published document. # https://w3c.github.io/dpub-aria/#doc-epilogue ROLE_EPILOGUE = C_("role", "epilogue") # Translators: This string should be treated as a role describing an object. # Examples of roles include "checkbox", "radio button", "paragraph", and "link." # This role refers to the errata in a digitally-published document. # https://w3c.github.io/dpub-aria/#doc-errata ROLE_ERRATA = C_("role", "errata") # Translators: This string should be treated as a role describing an object. # Examples of roles include "checkbox", "radio button", "paragraph", and "link." # This role refers to an example in a digitally-published document. # https://w3c.github.io/dpub-aria/#doc-example ROLE_EXAMPLE = C_("role", "example") # Translators: This string should be treated as a role describing an object. # Examples of roles include "checkbox", "radio button", "paragraph", and "link." # This role refers to the foreword in a digitally-published document. # https://w3c.github.io/dpub-aria/#doc-foreword ROLE_FOREWORD = C_("role", "foreword") # Translators: This string should be treated as a role describing an object. # Examples of roles include "checkbox", "radio button", "paragraph", and "link." # This role refers to the glossary in a digitally-published document. # https://w3c.github.io/dpub-aria/#doc-glossary ROLE_GLOSSARY = C_("role", "glossary") # Translators: This string should be treated as a role describing an object. # Examples of roles include "checkbox", "radio button", "paragraph", and "link." # This role refers to the index in a digitally-published document. # https://w3c.github.io/dpub-aria/#doc-index ROLE_INDEX = C_("role", "index") # Translators: This string should be treated as a role describing an object. # Examples of roles include "checkbox", "radio button", "paragraph", and "link." # This role refers to the introduction in a digitally-published document. # https://w3c.github.io/dpub-aria/#doc-introduction ROLE_INTRODUCTION = C_("role", "introduction") # Translators: This string should be treated as a role describing an object. # Examples of roles include "checkbox", "radio button", "paragraph", and "link." # This role refers to a pagebreak in a digitally-published document. # https://w3c.github.io/dpub-aria/#doc-pagebreak ROLE_PAGEBREAK = C_("role", "page break") # Translators: This string should be treated as a role describing an object. # Examples of roles include "checkbox", "radio button", "paragraph", and "link." # This role refers to a page list in a digitally-published document. # https://w3c.github.io/dpub-aria/#doc-pagelist ROLE_PAGELIST = C_("role", "page list") # Translators: This string should be treated as a role describing an object. # Examples of roles include "checkbox", "radio button", "paragraph", and "link." # This role refers to a named part in a digitally-published document. # https://w3c.github.io/dpub-aria/#doc-part ROLE_PART = C_("role", "part") # Translators: This string should be treated as a role describing an object. # Examples of roles include "checkbox", "radio button", "paragraph", and "link." # This role refers to the preface in a digitally-published document. # https://w3c.github.io/dpub-aria/#doc-preface ROLE_PREFACE = C_("role", "preface") # Translators: This string should be treated as a role describing an object. # Examples of roles include "checkbox", "radio button", "paragraph", and "link." # This role refers to the prologue in a digitally-published document. # https://w3c.github.io/dpub-aria/#doc-prologue ROLE_PROLOGUE = C_("role", "prologue") # Translators: This string should be treated as a role describing an object. # Examples of roles include "checkbox", "radio button", "paragraph", and "link." # This role refers to a pullquote in a digitally-published document. # https://w3c.github.io/dpub-aria/#doc-pullquote ROLE_PULLQUOTE = C_("role", "pullquote") # Translators: This string should be treated as a role describing an object. # Examples of roles include "checkbox", "radio button", "paragraph", and "link." # This role refers to a questions-and-answers section in a digitally-published # document. https://w3c.github.io/dpub-aria/#doc-qna # In English, "QNA" is generally recognized by native speakers. If your language # lacks the equivalent, please prefer the shortest phrase which clearly conveys # the meaning. ROLE_QNA = C_("role", "QNA") # Translators: This string should be treated as a role describing an object. # Examples of roles include "checkbox", "radio button", "paragraph", and "link." # This role refers to the subtitle in a digitally-published document. # https://w3c.github.io/dpub-aria/#doc-subtitle ROLE_SUBTITLE = C_("role", "subtitle") # Translators: This string should be treated as a role describing an object. # Examples of roles include "checkbox", "radio button", "paragraph", and "link." # This role refers to the table of contents in a digitally-published document. # https://w3c.github.io/dpub-aria/#doc-toc ROLE_TOC = C_("role", "table of contents") # Translators: The 'h' in this string represents a heading level attribute for # content that you might find in something such as HTML content (e.g.,