1# Orca
2#
3# Copyright 2004-2009 Sun Microsystems Inc.
4# Copyright 2010-2013 The Orca Team
5#
6# This library is free software; you can redistribute it and/or
7# modify it under the terms of the GNU Lesser General Public
8# License as published by the Free Software Foundation; either
9# version 2.1 of the License, or (at your option) any later version.
10#
11# This library is distributed in the hope that it will be useful,
12# but WITHOUT ANY WARRANTY; without even the implied warranty of
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14# Lesser General Public License for more details.
15#
16# You should have received a copy of the GNU Lesser General Public
17# License along with this library; if not, write to the
18# Free Software Foundation, Inc., Franklin Street, Fifth Floor,
19# Boston MA  02110-1301 USA.
20
21"""Command names which Orca presents in speech and/or braille. These
22have been put in their own module so that we can present them in
23the correct language when users change the synthesizer language
24on the fly without having to reload a bunch of modules."""
25
26__id__        = "$Id$"
27__version__   = "$Revision$"
28__date__      = "$Date$"
29__copyright__ = "Copyright (c) 2004-2009 Sun Microsystems Inc." \
30                "Copyright (c) 2010-2013 The Orca Team"
31__license__   = "LGPL"
32
33from .orca_i18n import _
34
35# Translators: this command will move the mouse pointer to the current item
36#  without clicking on it.
37ROUTE_POINTER_TO_ITEM = _("Route the pointer to the current item")
38
39# Translators: the 'flat review' feature of Orca allows the blind user to
40# explore the text in a window in a 2D fashion.  That is, Orca treats all
41# the text from all objects in a window (e.g., buttons, labels, etc.) as a
42# sequence of words in a sequence of lines.  The flat review feature allows
43# the user to explore this text by the {previous,next} {line,word,character}.
44# Left click means to generate a left mouse button click on the current item.
45LEFT_CLICK_REVIEW_ITEM = _("Perform left click on current flat review item")
46
47# Translators: the 'flat review' feature of Orca allows the blind user to
48# explore the text in a window in a 2D fashion.  That is, Orca treats all
49# the text from all objects in a window (e.g., buttons, labels, etc.) as a
50# sequence of words in a sequence of lines.  The flat review feature allows
51# the user to explore this text by the {previous,next} {line,word,character}.
52# Right click means to generate a right mouse button click on the current item.
53RIGHT_CLICK_REVIEW_ITEM = _("Perform right click on current flat review item")
54
55# Translators: the Orca "SayAll" command allows the user to press a key and have
56# the entire document in a window be automatically spoken to the user. If the
57# user presses any key during a SayAll operation, the speech will be interrupted
58# and the cursor will be positioned at the point where the speech was interrupted.
59SAY_ALL = _("Speak entire document")
60
61# Translators: the 'flat review' feature of Orca allows the user to explore the
62# text in a window in a 2D fashion. That is, Orca treats all the text from all
63# objects in a window (e.g., buttons, labels, etc.) as a sequence of words in a
64# sequence of lines. The flat review feature allows the user to explore this text
65# by the {previous,next} {line,word,character}. This string is the name of a command
66# which causes Orca to speak the entire contents of the window using flat review.
67SAY_ALL_FLAT_REVIEW = _("Speak entire window using flat review")
68
69# Translators: the "Where Am I" feature of Orca allows a user to press a key and
70# then have information about their current context spoken and brailled to them.
71# For example, the information may include the name of the current pushbutton
72# with focus as well as its mnemonic.
73WHERE_AM_I_BASIC = _("Perform the basic Where Am I operation")
74
75# Translators: the "Where Am I" feature of Orca allows a user to press a key and
76# then have information about their current context spoken and brailled to them.
77# For example, the information may include the name of the current pushbutton
78# with focus as well as its mnemonic.
79WHERE_AM_I_DETAILED = _("Perform the detailed Where Am I operation")
80
81# Translators: This is the description of a dedicated command to speak the
82# current selection / highlighted object(s). For instance, in a text object,
83# "selection" refers to the selected/highlighted text. In a spreadsheet, it
84# refers to the selected/highlighted cells. In an file manager, it refers to
85# the selected/highlighted icons. Etc.
86WHERE_AM_I_SELECTION = _("Speak the current selection")
87
88# Translators: This is the description of a dedicated command to speak details
89# about a link, such as the uri and type of link.
90WHERE_AM_I_LINK = _("Speak link details")
91
92# Translators: This command will cause the window's status bar contents to be
93# spoken.
94PRESENT_STATUS_BAR = _("Speak the status bar")
95
96# Translators: This command will cause the window's title to be spoken.
97PRESENT_TITLE = _("Speak the title bar")
98
99# Translators: the Orca "Find" dialog allows a user to search for text in a
100# window and then move focus to that text. For example, they may want to find
101# the "OK" button.
102SHOW_FIND_GUI = _("Open the Find dialog")
103
104# Translators: the Orca "Find" dialog allows a user to search for text in a
105# window and then move focus to that text. For example, they may want to find
106# the "OK" button. This string is used for finding the next occurrence of a
107# string.
108FIND_NEXT = _("Search for the next instance of a string")
109
110# Translators: the Orca "Find" dialog allows a user to search for text in a
111# window and then move focus to that text. For example, they may want to find
112# the "OK" button. This string is used for finding the previous occurrence of a
113# string.
114FIND_PREVIOUS = _("Search for the previous instance of a string")
115
116# Translators: the 'flat review' feature of Orca allows the blind user to
117# explore the text in a window in a 2D fashion.  That is, Orca treats all
118# the text from all objects in a window (e.g., buttons, labels, etc.) as a
119# sequence of words in a sequence of lines.  The flat review feature allows
120# the user to explore this text by the {previous,next} {line,word,character}.
121TOGGLE_FLAT_REVIEW = _("Enter and exit flat review mode")
122
123# Translators: the 'flat review' feature of Orca allows the blind user to
124# explore the text in a window in a 2D fashion.  That is, Orca treats all
125# the text from all objects in a window (e.g., buttons, labels, etc.) as a
126# sequence of words in a sequence of lines.  The flat review feature allows
127# the user to explore this text by the {previous,next} {line,word,character}.
128# The home position is the beginning of the content in the window.
129REVIEW_HOME = _("Move flat review to the home position")
130
131# Translators: the 'flat review' feature of Orca allows the blind user to
132# explore the text in a window in a 2D fashion.  That is, Orca treats all
133# the text from all objects in a window (e.g., buttons, labels, etc.) as a
134# sequence of words in a sequence of lines.  The flat review feature allows
135# the user to explore this text by the {previous,next} {line,word,character}.
136# The home position is the last bit of information in the window.
137REVIEW_END = _("Move flat review to the end position")
138
139# Translators: the 'flat review' feature of Orca allows the blind user to
140# explore the text in a window in a 2D fashion.  That is, Orca treats all
141# the text from all objects in a window (e.g., buttons, labels, etc.) as a
142# sequence of words in a sequence of lines.  The flat review feature allows
143# the user to explore this text by the {previous,next} {line,word,character}.
144REVIEW_PREVIOUS_LINE = \
145    _("Move flat review to the beginning of the previous line")
146
147# Translators: the 'flat review' feature of Orca allows the blind user to
148# explore the text in a window in a 2D fashion.  That is, Orca treats all
149# the text from all objects in a window (e.g., buttons, labels, etc.) as a
150# sequence of words in a sequence of lines.  The flat review feature allows
151# the user to explore this text by the {previous,next} {line,word,character}.
152REVIEW_CURRENT_LINE = _("Speak the current flat review line")
153
154# Translators: the 'flat review' feature of Orca allows the blind user to
155# explore the text in a window in a 2D fashion.  That is, Orca treats all
156# the text from all objects in a window (e.g., buttons, labels, etc.) as a
157# sequence of words in a sequence of lines.  The flat review feature allows
158# the user to explore this text by the {previous,next} {line,word,character}.
159# This particular command will cause Orca to spell the current line character
160# by character.
161REVIEW_SPELL_CURRENT_LINE = _("Spell the current flat review line")
162
163# Translators: the 'flat review' feature of Orca allows the blind user to
164# explore the text in a window in a 2D fashion.  That is, Orca treats all
165# the text from all objects in a window (e.g., buttons, labels, etc.) as a
166# sequence of words in a sequence of lines.  The flat review feature allows
167# the user to explore this text by the {previous,next} {line,word,character}.
168# This particular command will cause Orca to spell the current line character
169# by character phonetically, saying "Alpha" for "a", "Bravo" for "b" and so on.
170REVIEW_PHONETIC_CURRENT_LINE = \
171    _("Phonetically spell the current flat review line")
172
173# Translators: the 'flat review' feature of Orca allows the blind user to
174# explore the text in a window in a 2D fashion.  That is, Orca treats all
175# the text from all objects in a window (e.g., buttons, labels, etc.) as a
176# sequence of words in a sequence of lines.  The flat review feature allows
177# the user to explore this text by the {previous,next} {line,word,character}.
178REVIEW_NEXT_LINE = _("Move flat review to the beginning of the next line")
179
180# Translators: the 'flat review' feature of Orca allows the blind user to
181# explore the text in a window in a 2D fashion.  That is, Orca treats all
182# the text from all objects in a window (e.g., buttons, labels, etc.) as a
183# sequence of words in a sequence of lines.  The flat review feature allows
184# the user to explore this text by the {previous,next} {line,word,character}.
185# Previous will go backwards in the window until you reach the top (i.e., it
186# will wrap across lines if necessary).
187REVIEW_PREVIOUS_ITEM = _("Move flat review to the previous item or word")
188
189# Translators: the 'flat review' feature of Orca allows the blind user to
190# explore the text in a window in a 2D fashion.  That is, Orca treats all
191# the text from all objects in a window (e.g., buttons, labels, etc.) as a
192# sequence of words in a sequence of lines.  The flat review feature allows
193# the user to explore this text by the {previous,next} {line,word,character}.
194# This command will speak the current word or item.
195REVIEW_CURRENT_ITEM = _("Speak the current flat review item or word")
196
197# Translators: the 'flat review' feature of Orca allows the blind user to
198# explore the text in a window in a 2D fashion.  That is, Orca treats all
199# the text from all objects in a window (e.g., buttons, labels, etc.) as a
200# sequence of words in a sequence of lines.  The flat review feature allows
201# the user to explore this text by the {previous,next} {line,word,character}.
202# This particular command will cause Orca to spell the current word or item
203# character by character.
204REVIEW_SPELL_CURRENT_ITEM = _("Spell the current flat review item or word")
205
206# Translators: the 'flat review' feature of Orca allows the blind user to
207# explore the text in a window in a 2D fashion.  That is, Orca treats all
208# the text from all objects in a window (e.g., buttons, labels, etc.) as a
209# sequence of words in a sequence of lines.  The flat review feature allows
210# the user to explore this text by the {previous,next} {line,word,character}.
211# This particular command will cause Orca to spell the current word or item
212# character by character phonetically, saying "Alpha" for "a", "Bravo" for "b"
213# and so on.
214REVIEW_PHONETIC_CURRENT_ITEM = \
215    _("Phonetically spell the current flat review item or word")
216
217# Translators: the 'flat review' feature of Orca allows the blind user to
218# explore the text in a window in a 2D fashion.  That is, Orca treats all
219# the text from all objects in a window (e.g., buttons, labels, etc.) as a
220# sequence of words in a sequence of lines.  The flat review feature allows
221# the user to explore this text by the {previous,next} {line,word,character}.
222# Next will go forwards in the window until you reach the end (i.e., it
223# will wrap across lines if necessary).
224REVIEW_NEXT_ITEM = _("Move flat review to the next item or word")
225
226# Translators: the 'flat review' feature of Orca allows the blind user to
227# explore the text in a window in a 2D fashion.  That is, Orca treats all
228# the text from all objects in a window (e.g., buttons, labels, etc.) as a
229# sequence of words in a sequence of lines.  The flat review feature allows
230# the user to explore this text by the {previous,next} {line,word,character}.
231# Above in this case means geographically above, as if you drew a vertical
232# line upward on the screen.
233REVIEW_ABOVE = _("Move flat review to the word above the current word")
234
235# Translators: the 'flat review' feature of Orca allows the blind user to
236# explore the text in a window in a 2D fashion.  That is, Orca treats all
237# the text from all objects in a window (e.g., buttons, labels, etc.) as a
238# sequence of words in a sequence of lines.  The flat review feature allows
239# the user to explore this text by the {previous,next} {line,word,character}.
240# With respect to this command, the flat review object is typically something
241# like a pushbutton, a label, or some other GUI widget. The 'speaks' means it
242# will speak the text associated with the object.
243REVIEW_CURRENT_ACCESSIBLE = _("Speak the current flat review object")
244
245# Translators: the 'flat review' feature of Orca allows the blind user to
246# explore the text in a window in a 2D fashion.  That is, Orca treats all
247# the text from all objects in a window (e.g., buttons, labels, etc.) as a
248# sequence of words in a sequence of lines.  The flat review feature allows
249# the user to explore this text by the {previous,next} {line,word,character}.
250# Below in this case means geographically below, as if you drew a vertical
251# line downward on the screen.
252REVIEW_BELOW = _("Move flat review to the word below the current word")
253
254# Translators: the 'flat review' feature of Orca allows the blind user to
255# explore the text in a window in a 2D fashion.  That is, Orca treats all
256# the text from all objects in a window (e.g., buttons, labels, etc.) as a
257# sequence of words in a sequence of lines.  The flat review feature allows
258# the user to explore this text by the {previous,next} {line,word,character}.
259# Previous will go backwards in the window until you reach the top (i.e., it
260# will wrap across lines if necessary).
261REVIEW_PREVIOUS_CHARACTER = _("Move flat review to the previous character")
262
263# Translators: the 'flat review' feature of Orca allows the blind user to
264# explore the text in a window in a 2D fashion.  That is, Orca treats all
265# the text from all objects in a window (e.g., buttons, labels, etc.) as a
266# sequence of words in a sequence of lines.  The flat review feature allows
267# the user to explore this text by the {previous,next} {line,word,character}.
268# This command will speak the current character
269REVIEW_CURRENT_CHARACTER = _("Speak the current flat review character")
270
271# Translators: the 'flat review' feature of Orca allows the blind user to
272# explore the text in a window in a 2D fashion.  That is, Orca treats all
273# the text from all objects in a window (e.g., buttons, labels, etc.) as a
274# sequence of words in a sequence of lines.  The flat review feature allows
275# the user to explore this text by the {previous,next} {line,word,character}.
276# This particular command will cause Orca to present the character phonetically,
277# saying "Alpha" for "a", "Bravo" for "b" and so on.
278REVIEW_SPELL_CURRENT_CHARACTER = \
279    _("Phonetically speak the current flat review character")
280
281# Translators: the 'flat review' feature of Orca allows the blind user to
282# explore the text in a window in a 2D fashion.  That is, Orca treats all
283# the text from all objects in a window (e.g., buttons, labels, etc.) as a
284# sequence of words in a sequence of lines.  The flat review feature allows
285# the user to explore this text by the {previous,next} {line,word,character}.
286# This particular command will cause Orca to present the character's unicode
287# value.
288REVIEW_UNICODE_CURRENT_CHARACTER = \
289    _("Speak unicode value of the current flat review character")
290
291# Translators: the 'flat review' feature of Orca allows the blind user to
292# explore the text in a window in a 2D fashion.  That is, Orca treats all
293# the text from all objects in a window (e.g., buttons, labels, etc.) as a
294# sequence of words in a sequence of lines.  The flat review feature allows
295# the user to explore this text by the {previous,next} {line,word,character}.
296# Previous will go forwards in the window until you reach the end (i.e., it
297# will wrap across lines if necessary).
298REVIEW_NEXT_CHARACTER = _("Move flat review to the next character")
299
300# Translators: the 'flat review' feature of Orca allows the blind user to
301# explore the text in a window in a 2D fashion.  That is, Orca treats all
302# the text from all objects in a window (e.g., buttons, labels, etc.) as a
303# sequence of words in a sequence of lines.  The flat review feature allows
304# the user to explore this text by the {previous,next} {line,word,character}.
305# This command will move to and present the end of the line.
306REVIEW_END_OF_LINE = _("Move flat review to the end of the line")
307
308# Translators: the 'flat review' feature of Orca allows the blind user to
309# explore the text in a window in a 2D fashion.  That is, Orca treats all
310# the text from all objects in a window (e.g., buttons, labels, etc.) as a
311# sequence of words in a sequence of lines.  The flat review feature allows
312# the user to explore this text by the {previous,next} {line,word,character}.
313# The bottom left is the bottom left of the window currently being reviewed.
314REVIEW_BOTTOM_LEFT = _("Move flat review to the bottom left")
315
316# Translators: the 'flat review' feature of Orca allows the blind user to
317# explore the text in a window in a 2D fashion.  That is, Orca treats all
318# the text from all objects in a window (e.g., buttons, labels, etc.) as a
319# sequence of words in a sequence of lines.  The flat review feature allows
320# the user to explore this text by the {previous,next} {line,word,character}.
321# This command lets the user copy the contents currently being reviewed to the
322# clipboard.
323FLAT_REVIEW_COPY = _("Copy the contents under flat review to the clipboard")
324
325# Translators: the 'flat review' feature of Orca allows the blind user to
326# explore the text in a window in a 2D fashion.  That is, Orca treats all
327# the text from all objects in a window (e.g., buttons, labels, etc.) as a
328# sequence of words in a sequence of lines.  The flat review feature allows
329# the user to explore this text by the {previous,next} {line,word,character}.
330# This command lets the user append the contents currently being reviewed to
331# the existing contents of the clipboard.
332FLAT_REVIEW_APPEND = \
333    _("Append the contents under flat review to the clipboard")
334
335# Translators: when users are navigating a table, they sometimes want the
336# entire row of a table read; other times they just want the current cell
337# to be presented to them.
338TOGGLE_TABLE_CELL_READ_MODE = \
339    _("Toggle whether to read just the current table cell or the whole row")
340
341# Translators: the attributes being presented are the text attributes, such as
342# bold, italic, font name, font size, etc.
343READ_CHAR_ATTRIBUTES = \
344    _("Read the attributes associated with the current text character")
345
346# Translators: a refreshable braille display is an external hardware device that
347# presents braille characters to the user. There are a limited number of cells
348# on the display (typically 40 cells).  Orca provides the feature to build up a
349# longer logical line and allow the user to press buttons on the braille display
350# so they can pan left and right over this line.
351PAN_BRAILLE_LEFT = _("Pan the braille display to the left")
352
353# Translators: a refreshable braille display is an external hardware device that
354# presents braille characters to the user. There are a limited number of cells
355# on the display (typically 40 cells).  Orca provides the feature to build up a
356# longer logical line and allow the user to press buttons on the braille display
357# so they can pan left and right over this line.
358PAN_BRAILLE_RIGHT = _("Pan the braille display to the right")
359
360# Translators: the 'flat review' feature of Orca allows the blind user to
361# explore the text in a window in a 2D fashion.  That is, Orca treats all
362# the text from all objects in a window (e.g., buttons, labels, etc.) as a
363# sequence of words in a sequence of lines.  The flat review feature allows
364# the user to explore this text by the {previous,next} {line,word,character}.
365# Flat review is modal, and the user can be exploring the window without
366# changing which object in the window which has focus. The feature used here
367# will return the flat review to the object with focus.
368GO_BRAILLE_HOME = _("Return to object with keyboard focus")
369
370# Translators: braille can be displayed in many ways. Contracted braille
371# provides a more efficient means to represent text, especially long
372# documents. The feature used here is an option to toggle between contracted
373# and uncontracted.
374SET_CONTRACTED_BRAILLE = _("Turn contracted braille on and off")
375
376# Translators: hardware braille displays often have buttons near each braille
377# cell. These are called cursor routing keys and are a way for a user to tell
378# the machine they are interested in a particular character on the display.
379PROCESS_ROUTING_KEY = _("Process a cursor routing key")
380
381# Translators: this is used to indicate the start point of a text selection.
382PROCESS_BRAILLE_CUT_BEGIN = _("Mark the beginning of a text selection")
383
384# Translators: this is used to indicate the end point of a text selection.
385PROCESS_BRAILLE_CUT_LINE = _("Mark the end of a text selection")
386
387# Translators: Orca has a "Learn Mode" that will allow the user to type any key
388# on the keyboard and hear what the effects of that key would be. The effects
389# might be what Orca would do if it had a handler for the particular key
390# combination, or they might just be to echo the name of the key if Orca doesn't
391# have a handler.
392ENTER_LEARN_MODE = _("Enter learn mode.  Press escape to exit learn mode")
393
394# Translators: the speech rate is how fast the speech synthesis engine will
395# generate speech.
396DECREASE_SPEECH_RATE = _("Decrease the speech rate")
397
398# Translators: the speech rate is how fast the speech synthesis engine will
399# generate speech.
400INCREASE_SPEECH_RATE = _("Increase the speech rate")
401
402# Translators: the speech pitch is how high or low in pitch/frequency the
403# speech synthesis engine will generate speech.
404DECREASE_SPEECH_PITCH = _("Decrease the speech pitch")
405
406# Translators: the speech pitch is how high or low in pitch/frequency the
407# speech synthesis engine will generate speech.
408INCREASE_SPEECH_PITCH = _("Increase the speech pitch")
409
410# Translators: the speech volume is how high or low in gain/volume the
411# speech synthesis engine will generate speech.
412INCREASE_SPEECH_VOLUME = _("Increase the speech volume")
413
414# Translators: the speech volume is how high or low in gain/volume the
415# speech synthesis engine will generate speech.
416DECREASE_SPEECH_VOLUME = _("Decrease the speech volume")
417
418# Translators: Orca allows the user to turn speech synthesis on or off.
419#  We call it 'silencing'.
420TOGGLE_SPEECH = _("Toggle the silencing of speech")
421
422# Translators: Orca's verbosity levels control how much (or how little)
423# Orca will speak when presenting objects as the user navigates within
424# applications and reads content. The levels can be toggled via command.
425# This string describes that command.
426TOGGLE_SPEECH_VERBOSITY = _("Toggle speech verbosity level")
427
428# Translators: this string is associated with the keyboard shortcut to quit
429# Orca.
430QUIT_ORCA = _("Quit the screen reader")
431
432# Translators: the preferences configuration dialog is the dialog that allows
433# users to set their preferences for Orca.
434SHOW_PREFERENCES_GUI = _("Display the preferences configuration dialog")
435
436# Translators: the preferences configuration dialog is the dialog that allows
437# users to set their preferences for a specific application within Orca.
438SHOW_APP_PREFERENCES_GUI = \
439    _("Display the application preferences configuration dialog")
440
441# Translators: Orca allows the user to enable/disable speaking of indentation
442# and justification.
443TOGGLE_SPOKEN_INDENTATION_AND_JUSTIFICATION = \
444    _("Toggle the speaking of indentation and justification")
445
446# Translators: Orca has a setting through which users can control how a number is
447# spoken. The options are digits ("1 2 3") and words ("one hundred and twenty
448# three"). This string to be translated refers to an Orca command for quickly
449# toggling between the two options.
450CHANGE_NUMBER_STYLE = _("Change spoken number style")
451
452# Translators: Orca allows users to cycle through punctuation levels. None,
453# some, most, or all, punctuation will be spoken.
454CYCLE_PUNCTUATION_LEVEL = _("Cycle to the next speaking of punctuation level")
455
456# Translators: Orca has a feature whereby users can set up different "profiles,"
457# which are collection of settings which apply to a given task, such as a
458# "Spanish" profile which would use Spanish text-to-speech and Spanish braille
459# and selected when reading Spanish content. This string to be translated refers
460# to an Orca command which makes it possible for users to quickly cycle amongst
461# their saved profiles without having to get into a GUI.
462CYCLE_SETTINGS_PROFILE = _("Cycle to the next settings profile")
463
464# Translators: Orca uses Speech Dispatcher to present content to users via text-
465# to-speech. Speech Dispatcher has a feature to control how capital letters are
466# presented: Do nothing at all, say the word 'capital' prior to presenting a
467# capital letter, or play a tone which Speech Dispatcher refers to as a sound
468# 'icon'. This string to be translated refers to an Orca command which makes it
469# possible for users to quickly cycle amongst these alternatives without having
470# to get into a GUI.
471CYCLE_CAPITALIZATION_STYLE = _("Cycle to the next capitalization style")
472
473# Translators: Orca has an "echo" setting which allows the user to configure
474# what is spoken in response to a key press. Given a user who typed "Hello
475# world.":
476# - key echo: "H e l l o space w o r l d period"
477# - word echo: "Hello" spoken when the space is pressed; "world" spoken when
478#   the period is pressed.
479# - sentence echo: "Hello world" spoken when the period is pressed.
480# A user can choose to have no echo, one type of echo, or multiple types of
481# echo. The following string refers to a command that allows the user to quickly
482# choose which type of echo is being used.
483CYCLE_KEY_ECHO = _("Cycle to the next key echo level")
484
485# Translators: this is a debug message that Orca users will not normally see. It
486# describes a debug routine that allows the user to adjust the level of debug
487# information that Orca generates at run time.
488CYCLE_DEBUG_LEVEL = _("Cycle the debug level at run time")
489
490# Translators: this command announces information regarding the relationship of
491# the given bookmark to the current position. Note that in this context, the
492# "bookmark" is storing the location of an accessible object, typically on a web
493# page.
494BOOKMARK_CURRENT_WHERE_AM_I = \
495    _("Bookmark where am I with respect to current position")
496
497# Translators: this event handler cycles through the registered bookmarks and
498# takes the user to the previous bookmark location. Note that in this context,
499# the "bookmark" is storing the location of an accessible object, typically on
500# a web page.
501BOOKMARK_GO_TO_PREVIOUS = _("Go to previous bookmark location")
502
503# Translators: this command moves the user to the location stored at the bookmark.
504# Note that in this context, the "bookmark" is storing the location of an
505# accessible object, typically on a web page.
506BOOKMARK_GO_TO = _("Go to bookmark")
507
508# Translators: this event handler cycles through the registered bookmarks and
509# takes the user to the next bookmark location. Note that in this context, the
510# "bookmark" is storing the location of an accessible object, typically on a web
511# page.
512BOOKMARK_GO_TO_NEXT = _("Go to next bookmark location")
513
514# Translators: this event handler binds an in-page accessible object location to
515# the given input key command.
516BOOKMARK_ADD = _("Add bookmark")
517
518# Translators: this event handler saves all bookmarks for the current application
519# to disk.
520BOOKMARK_SAVE = _("Save bookmarks")
521
522# Translators: Orca allows the item under the pointer to be spoken. This toggles
523# the feature without the need to get into a GUI.
524MOUSE_REVIEW_TOGGLE = _("Toggle mouse review mode")
525
526# Translators: Orca has a command to present the current time in speech and in
527# braille.
528PRESENT_CURRENT_TIME = _("Present current time")
529
530# Translators: Orca has a command to present the current date in speech and in
531# braille.
532PRESENT_CURRENT_DATE = _("Present current date")
533
534# Translators: Orca has a command to present the pixel size and location of
535# the current object. This string is how this command is described in the list
536# of keyboard shortcuts.
537PRESENT_SIZE_AND_POSITION = _("Present size and location of current object")
538
539# Translators: Orca normally intercepts all keyboard commands and only passes
540# them along to the current application when they are not Orca commands. This
541# command causes the next command issued to be passed along to the current
542# application, bypassing Orca's interception of it.
543BYPASS_NEXT_COMMAND = \
544    _("Pass the next command on to the current application")
545
546# Translators: Orca has a command to review previous chat room messages in
547# speech and braille. This string to be translated is associated with the
548# keyboard commands used to review those previous messages.
549CHAT_PREVIOUS_MESSAGE = _("Speak and braille a previous chat room message")
550
551# Translators: In chat applications, it is often possible to see that a "buddy"
552# is typing currently (e.g. via a keyboard icon or status text). Some users like
553# to have this typing status announced by Orca; others find that announcement
554# unpleasant. Therefore, it is a setting in Orca. This string to be translated
555# is associated with the command to toggle typing status presentation on or off.
556CHAT_TOGGLE_BUDDY_TYPING = \
557    _("Toggle whether we announce when our buddies are typing")
558
559# Translators: Orca has a command to review previous chat room messages in
560# speech and braille. Some users prefer to have this message history combined
561# (e.g. the last ten messages which came in, no matter what room they came
562# from). Other users prefer to have specific room history (e.g. the last ten
563# messages from #a11y). Therefore, this is a setting in Orca. This string to be
564# translated is associated with the command to toggle specific room history on
565# or off.
566CHAT_TOGGLE_MESSAGE_HISTORIES = \
567    _("Toggle whether we provide chat room specific message " \
568      "histories")
569
570# Translators: In chat applications, Orca automatically presents incoming
571# messages in speech and braille. If a user is in multiple conversations or
572# channels at the same time, it can be confusing to know what room or channel
573# a given message came from just from hearing/reading it. For this reason, Orca
574# has an option to present the name of the room first ("#a11y <joanie> hello!"
575# instead of "<joanie> hello!"). This string to be translated is associated with
576# the command to toggle room name presentation on or off.
577CHAT_TOGGLE_ROOM_NAME_PREFIX = \
578    _("Toggle whether we prefix chat room messages with " \
579      "the name of the chat room")
580
581# Translators: this is a command for a button on a refreshable braille display
582# (an external hardware device used by people who are blind). When pressing the
583# button, the display scrolls to the left.
584BRAILLE_LINE_LEFT = _("Line Left")
585
586# Translators: this is a command for a button on a refreshable braille display
587# (an external hardware device used by people who are blind). When pressing the
588# button, the display scrolls to the right.
589BRAILLE_LINE_RIGHT = _("Line Right")
590
591# Translators: this is a command for a button on a refreshable braille display
592# (an external hardware device used by people who are blind). When pressing the
593# button, the display scrolls up.
594BRAILLE_LINE_UP = _("Line Up")
595
596# Translators: this is a command for a button on a refreshable braille display
597# (an external hardware device used by people who are blind). When pressing the
598# button, the display scrolls down.
599BRAILLE_LINE_DOWN = _("Line Down")
600
601# Translators: this is a command for a button on a refreshable braille display
602# (an external hardware device used by people who are blind). When pressing the
603# button, it instructs the braille display to freeze.
604BRAILLE_FREEZE = _("Freeze")
605
606# Translators: this is a command for a button on a refreshable braille display
607# (an external hardware device used by people who are blind). When pressing the
608# button, the display scrolls to the top left of the window.
609BRAILLE_TOP_LEFT = _("Top Left")
610
611# Translators: this is a command for a button on a refreshable braille display
612# (an external hardware device used by people who are blind). When pressing the
613# button, the display scrolls to the bottom left of the window.
614BRAILLE_BOTTOM_LEFT = _("Bottom Left")
615
616# Translators: this is a command for a button on a refreshable braille display
617# (an external hardware device used by people who are blind). When pressing the
618# button, the display scrolls to position containing the cursor.
619BRAILLE_HOME = _("Cursor Position")
620
621# Translators: this is a command for a button on a refreshable braille display
622# (an external hardware device used by people who are blind). When pressing the
623# button, the display toggles between six-dot braille and eight-dot braille.
624BRAILLE_SIX_DOTS  = _("Six Dots")
625
626# Translators: this is a command for a button on a refreshable braille display
627# (an external hardware device used by people who are blind). This command
628# represents a whole set of buttons known as cursor routing keys and are a way
629# for a user to move the application's caret to the position indicated on the
630# display.
631BRAILLE_ROUTE_CURSOR = _("Cursor Routing")
632
633# Translators: this is a command for a button on a refreshable braille display
634# (an external hardware device used by people who are blind). This command
635# represents the start of a selection operation. It is called "Cut Begin" to map
636# to what BrlTTY users are used to: in character cell mode operation on virtual
637# consoles, the act of copying text is erroneously called a "cut" operation.
638BRAILLE_CUT_BEGIN = _("Cut Begin")
639
640# Translators: this is a command for a button on a refreshable braille display
641# (an external hardware device used by people who are blind). This command
642# represents marking the endpoint of a selection. It is called "Cut Line" to map
643# to what BrlTTY users are used to: in character cell mode operation on virtual
644# consoles, the act of copying text is erroneously called a "cut" operation.
645BRAILLE_CUT_LINE = _("Cut Line")
646
647# Translators: this is a command which causes Orca to present the last received
648# notification message.
649NOTIFICATION_MESSAGES_LAST = _("Present last notification message")
650
651# Translators: this is a command which causes Orca to present a list of all the
652# notification messages received.
653NOTIFICATION_MESSAGES_LIST = _("Present notification messages list")
654
655# Translators: this is a command which causes Orca to present the previous
656# notification message.
657NOTIFICATION_MESSAGES_PREVIOUS = _("Present previous notification message")
658
659# Translators: this is a command related to navigating within a document.
660CARET_NAVIGATION_NEXT_CHAR = _("Go to next character")
661
662# Translators: this is a command related to navigating within a document.
663CARET_NAVIGATION_PREV_CHAR = _("Go to previous character")
664
665# Translators: this is a command related to navigating within a document.
666CARET_NAVIGATION_NEXT_WORD = _("Go to next word")
667
668# Translators: this is a command related to navigating within a document.
669CARET_NAVIGATION_PREV_WORD = _("Go to previous word")
670
671# Translators: this is a command related to navigating within a document.
672CARET_NAVIGATION_NEXT_LINE = _("Go to next line")
673
674# Translators: this is a command related to navigating within a document.
675CARET_NAVIGATION_PREV_LINE = _("Go to previous line")
676
677# Translators: this is a command related to navigating within a document.
678CARET_NAVIGATION_FILE_START = _("Go to the top of the file")
679
680# Translators: this is a command related to navigating within a document.
681CARET_NAVIGATION_FILE_END = _("Go to the bottom of the file")
682
683# Translators: this is a command related to navigating within a document.
684CARET_NAVIGATION_LINE_START = _("Go to the beginning of the line")
685
686# Translators: this is a command related to navigating within a document.
687CARET_NAVIGATION_LINE_END = _("Go to the end of the line")
688
689# Translators: this is a command related to navigating within a document.
690CARET_NAVIGATION_NEXT_OBJECT = _("Go to the next object")
691
692# Translators: this is a command related to navigating within a document.
693CARET_NAVIGATION_PREV_OBJECT = _("Go to the previous object")
694
695# Translators: this is for causing a collapsed combo box which was reached
696# by Orca's caret navigation to be expanded.
697CARET_NAVIGATION_EXPAND_COMBO_BOX = \
698    _("Cause the current combo box to be expanded")
699
700# Translators: Gecko native caret navigation is where Firefox (or Thunderbird)
701# itself controls how the arrow keys move the caret around HTML content. It's
702# often broken, so Orca needs to provide its own support. As such, Orca offers
703# the user the ability to toggle which application is controlling the caret.
704CARET_NAVIGATION_TOGGLE = \
705    _("Switch between native and screen-reader caret navigation")
706
707# Translators: A live region is an area of a web page that is periodically
708# updated, e.g. stock ticker. http://www.w3.org/TR/wai-aria/terms#def_liveregion
709# The "politeness" level is an indication of when the user wishes to be notified
710# about a change to live region content. Examples include: never ("off"), when
711# idle ("polite"), and when there is a change ("assertive"). Orca has several
712# features to facilitate accessing live regions. This string refers to a command
713# to cycle through the different "politeness" levels.
714LIVE_REGIONS_ADVANCE_POLITENESS = _("Advance live region politeness setting")
715
716# Translators: A live region is an area of a web page that is periodically
717# updated, e.g. stock ticker. http://www.w3.org/TR/wai-aria/terms#def_liveregion
718# The "politeness" level is an indication of when the user wishes to be notified
719# about a change to live region content. Examples include: never ("off"), when
720# idle ("polite"), and when there is a change ("assertive"). Orca has several
721# features to facilitate accessing live regions. This string refers to a command
722# to turn off live regions by default.
723LIVE_REGIONS_SET_POLITENESS_OFF = \
724    _("Set default live region politeness level to off")
725
726# Translators: A live region is an area of a web page that is periodically
727# updated, e.g. stock ticker. http://www.w3.org/TR/wai-aria/terms#def_liveregion
728# This string refers to a command for reviewing up to nine stored previous live
729# messages.
730LIVE_REGIONS_REVIEW = _("Review live region announcement")
731
732# Translators: A live region is an area of a web page that is periodically
733# updated, e.g. stock ticker. http://www.w3.org/TR/wai-aria/terms#def_liveregion
734# This string refers to an Orca command which allows the user to toggle whether
735# or not Orca pays attention to changes in live regions. Note that turning off
736# monitoring of live events is NOT the same as turning the politeness level
737# to "off". The user can opt to have no notifications presented (politeness
738# level of "off") and still manually review recent updates to live regions via
739# Orca commands for doing so -- as long as the monitoring of live regions is
740# enabled.
741LIVE_REGIONS_MONITOR = _("Monitor live regions")
742
743# Translators: hovering the mouse over certain objects on a web page causes a
744# new object to appear such as a pop-up menu. This command will move the user
745# to the object which just appeared as a result of the user hovering the mouse.
746# If the user is already in the mouse over object, this command will hide the
747# mouse over and return the user to the object he/she was in.
748MOUSE_OVER_MOVE = _("Move focus into and away from the current mouse over")
749
750# Translators: Orca allows you to dynamically define which row of a spreadsheet
751# or table should be treated as containing column headers. This string refers to
752# the command to set the row.
753DYNAMIC_COLUMN_HEADER_SET = _("Set the row to use as dynamic column headers")
754
755# Translators: Orca allows you to dynamically define which row of a spreadsheet
756# or table should be treated as containing column headers. This string refers to
757# the command to unset the row so it is no longer treated as if it contained
758# column headers.
759DYNAMIC_COLUMN_HEADER_CLEAR = _("Clear the dynamic column headers")
760
761# Translators: Orca allows you to dynamically define which column of a
762# spreadsheet or table should be treated as containing row headers. This
763# string refers to the command to set the column.
764DYNAMIC_ROW_HEADER_SET = _("Set the column to use as dynamic row headers")
765
766# Translators: Orca allows you to dynamically define which column of a
767# spreadsheet or table should be treated as containing column headers. This
768# string refers to the command to unset the column so it is no longer treated
769# as if it contained row headers.
770DYNAMIC_ROW_HEADER_CLEAR = _("Clear the dynamic row headers")
771
772# Translators: This string refers to an Orca command. The "input line" refers
773# to the place where one enters formulas for a spreadsheet.
774PRESENT_INPUT_LINE = _("Present the contents of the input line")
775
776# Translators: the structural navigation keys are designed to move the caret
777# around the document content by object type. Thus H moves you to the next
778# heading, Shift H to the previous heading, T to the next table, and so on.
779# This feature needs to be toggle-able so that it does not interfere with normal
780# writing functions.
781STRUCTURAL_NAVIGATION_TOGGLE = _("Toggle structural navigation keys")
782
783# Translators: this is for navigating among blockquotes in a document.
784BLOCKQUOTE_PREV = _("Go to previous blockquote")
785
786# Translators: this is for navigating among blockquotes in a document.
787BLOCKQUOTE_NEXT = _("Go to next blockquote")
788
789# Translators: this is for navigating among blockquotes in a document.
790BLOCKQUOTE_LIST = _("Display a list of blockquotes")
791
792# Translators: this is for navigating among buttons in a document.
793BUTTON_PREV = _("Go to previous button")
794
795# Translators: this is for navigating among buttons in a document.
796BUTTON_NEXT = _("Go to next button")
797
798# Translators: this is for navigating among buttons in a document.
799BUTTON_LIST = _("Display a list of buttons")
800
801# Translators: this is for navigating among check boxes in a document.
802CHECK_BOX_PREV = _("Go to previous check box")
803
804# Translators: this is for navigating among check boxes in a document.
805CHECK_BOX_NEXT = _("Go to next check box")
806
807# Translators: this is for navigating among check boxes in a document.
808CHECK_BOX_LIST = _("Display a list of check boxes")
809
810# Translators: this is for navigating among clickable objects in a document.
811# A "clickable" is a web element with an "onClick" handler.
812CLICKABLE_PREV = _("Go to previous clickable")
813
814# Translators: this is for navigating among clickable objects in a document.
815# A "clickable" is a web element with an "onClick" handler.
816CLICKABLE_NEXT = _("Go to next clickable")
817
818# Translators: this is for navigating among clickable objects in a document.
819# A "clickable" is a web element with an "onClick" handler.
820CLICKABLE_LIST = _("Display a list of clickables")
821
822# Translators: this is for navigating among combo boxes in a document.
823COMBO_BOX_PREV = _("Go to previous combo box")
824
825# Translators: this is for navigating among combo boxes in a document.
826COMBO_BOX_NEXT = _("Go to next combo box")
827
828# Translators: This string describes a document navigation command which moves
829# to the start of the current container. Examples of containers include tables,
830# lists, and blockquotes.
831CONTAINER_START = _("Go to start of container")
832
833# Translators: This string describes a document navigation command which moves
834# to the end of the current container. Examples of containers include tables,
835# lists, and blockquotes.
836CONTAINER_END = _("Go to end of container")
837
838# Translators: this is for navigating among combo boxes in a document.
839COMBO_BOX_LIST = _("Display a list of combo boxes")
840
841# Translators: this is for navigating among entries in a document.
842ENTRY_PREV = _("Go to previous entry")
843
844# Translators: this is for navigating among entries in a document.
845ENTRY_NEXT = _("Go to next entry")
846
847# Translators: this is for navigating among entries in a document.
848ENTRY_LIST = _("Display a list of entries")
849
850# Translators: this is for navigating among form fields in a document.
851FORM_FIELD_PREV = _("Go to previous form field")
852
853# Translators: this is for navigating among form fields in a document.
854FORM_FIELD_NEXT = _("Go to next form field")
855
856# Translators: this is for navigating among form fields in a document.
857FORM_FIELD_LIST = _("Display a list of form fields")
858
859# Translators: this is for navigating among headings (e.g. <h1>) in a document.
860HEADING_PREV = _("Go to previous heading")
861
862# Translators: this is for navigating among headings (e.g. <h1>) in a document.
863HEADING_NEXT = _("Go to next heading")
864
865# Translators: this is for navigating among headings (e.g. <h1>) in a document.
866HEADING_LIST = _("Display a list of headings")
867
868# Translators: this is for navigating among headings (e.g. <h1>) in a document.
869# <h1> is a heading at level 1, <h2> is a heading at level 2, etc.
870HEADING_AT_LEVEL_PREV = _("Go to previous heading at level %d")
871
872# Translators: this is for navigating among headings (e.g. <h1>) in a document.
873# <h1> is a heading at level 1, <h2> is a heading at level 2, etc.
874HEADING_AT_LEVEL_NEXT = _("Go to next heading at level %d")
875
876# Translators: this is for navigating among headings (e.g. <h1>) in a document.
877# <h1> is a heading at level 1, <h2> is a heading at level 2, etc.
878HEADING_AT_LEVEL_LIST = _("Display a list of headings at level %d")
879
880# Translators: this is for navigating among images in a document.
881IMAGE_PREV = _("Go to previous image")
882
883# Translators: this is for navigating among images in a document.
884IMAGE_NEXT = _("Go to next image")
885
886# Translators: this is for navigating among images in a document.
887IMAGE_LIST = _("Display a list of images")
888
889# Translators: this is for navigating among ARIA landmarks in a document. ARIA
890# role landmarks are the W3C defined HTML tag attribute 'role' used to identify
891# important part of webpage like banners, main context, search etc.
892LANDMARK_PREV = _("Go to previous landmark")
893
894# Translators: this is for navigating among ARIA landmarks in a document. ARIA
895# role landmarks are the W3C defined HTML tag attribute 'role' used to identify
896# important part of webpage like banners, main context, search etc.
897LANDMARK_NEXT = _("Go to next landmark")
898
899# Translators: this is for navigating among ARIA landmarks in a document. ARIA
900# role landmarks are the W3C defined HTML tag attribute 'role' used to identify
901# important part of webpage like banners, main context, search etc.
902LANDMARK_LIST = _("Display a list of landmarks")
903
904# Translators: this is for navigating among large objects in a document.
905# A 'large object' is a logical chunk of text, such as a paragraph, a list,
906# a table, etc.
907LARGE_OBJECT_PREV = _("Go to previous large object")
908
909# Translators: this is for navigating among large objects in a document.
910# A 'large object' is a logical chunk of text, such as a paragraph, a list,
911# a table, etc.
912LARGE_OBJECT_NEXT = _("Go to next large object")
913
914# Translators: this is for navigating among large objects in a document.
915# A 'large object' is a logical chunk of text, such as a paragraph, a list,
916# a table, etc.
917LARGE_OBJECT_LIST = _("Display a list of large objects")
918
919# Translators: this is for navigating among links in a document.
920LINK_PREV = _("Go to previous link")
921
922# Translators: this is for navigating among links in a document.
923LINK_NEXT = _("Go to next link")
924
925# Translators: this is for navigating among links in a document.
926LINK_LIST = _("Display a list of links")
927
928# Translators: this is for navigating among lists in a document.
929LIST_PREV = _("Go to previous list")
930
931# Translators: this is for navigating among lists in a document.
932LIST_NEXT = _("Go to next list")
933
934# Translators: this is for navigating among lists in a document.
935LIST_LIST = _("Display a list of lists")
936
937# Translators: this is for navigating among list items in a document.
938LIST_ITEM_PREV = _("Go to previous list item")
939
940# Translators: this is for navigating among list items in a document.
941LIST_ITEM_NEXT = _("Go to next list item")
942
943# Translators: this is for navigating among list items in a document.
944LIST_ITEM_LIST = _("Display a list of list items")
945
946# Translators: this is for navigating among live regions in a document. A live
947# region is an area of a web page that is periodically updated, e.g. a stock
948# ticker. http://www.w3.org/TR/wai-aria/terms#def_liveregion
949LIVE_REGION_PREV = _("Go to previous live region")
950
951# Translators: this is for navigating among live regions in a document. A live
952# region is an area of a web page that is periodically updated, e.g. a stock
953# ticker. http://www.w3.org/TR/wai-aria/terms#def_liveregion
954LIVE_REGION_NEXT = _("Go to next live region")
955
956# Translators: this is for navigating among live regions in a document. A live
957# region is an area of a web page that is periodically updated, e.g. a stock
958# ticker. http://www.w3.org/TR/wai-aria/terms#def_liveregion
959LIVE_REGION_LAST = _("Go to the last live region which made an announcement")
960
961# Translators: this is for navigating among paragraphs in a document.
962PARAGRAPH_PREV = _("Go to previous paragraph")
963
964# Translators: this is for navigating among paragraphs in a document.
965PARAGRAPH_NEXT = _("Go to next paragraph")
966
967# Translators: this is for navigating among paragraphs in a document.
968PARAGRAPH_LIST = _("Display a list of paragraphs")
969
970# Translators: this is for navigating among radio buttons in a document.
971RADIO_BUTTON_PREV = _("Go to previous radio button")
972
973# Translators: this is for navigating among radio buttons in a document.
974RADIO_BUTTON_NEXT = _("Go to next radio button")
975
976# Translators: this is for navigating among radio buttons in a document.
977RADIO_BUTTON_LIST = _("Display a list of radio buttons")
978
979# Translators: this is for navigating among separators (e.g. <hr>) in a
980# document.
981SEPARATOR_PREV = _("Go to previous separator")
982
983# Translators: this is for navigating among separators (e.g. <hr>) in a
984# document.
985SEPARATOR_NEXT = _("Go to next separator")
986
987# Translators: this is for navigating among tables in a document.
988TABLE_PREV = _("Go to previous table")
989
990# Translators: this is for navigating among tables in a document.
991TABLE_NEXT = _("Go to next table")
992
993# Translators: this is for navigating among tables in a document.
994TABLE_LIST = _("Display a list of tables")
995
996# Translators: this is for navigating among table cells in a document.
997TABLE_CELL_DOWN = _("Go down one cell")
998
999# Translators: this is for navigating among table cells in a document.
1000TABLE_CELL_FIRST = _("Go to the first cell in a table")
1001
1002# Translators: this is for navigating among table cells in a document.
1003TABLE_CELL_LAST = _("Go to the last cell in a table")
1004
1005# Translators: this is for navigating among table cells in a document.
1006TABLE_CELL_LEFT = _("Go left one cell")
1007
1008# Translators: this is for navigating among table cells in a document.
1009TABLE_CELL_RIGHT = _("Go right one cell")
1010
1011# Translators: this is for navigating among table cells in a document.
1012TABLE_CELL_UP = _("Go up one cell")
1013
1014# Translators: When presenting the content of a line on a web page, Orca by
1015# default presents the full line, including any links or form fields on that
1016# line, in order to reflect the on-screen layout as seen by sighted users.
1017# Not all users like this presentation, however, and prefer to have objects
1018# treated as if they were on individual lines, such as is done by Windows
1019# screen readers, so that unrelated objects (e.g. links in a navbar) are not
1020# all jumbled together. As a result, this is now configurable. If layout mode
1021# is enabled, Orca will present the full line as it appears on the screen; if
1022# it is disabled, Orca will treat each object as if it were on a separate line,
1023# both for presentation and navigation. This string is associated with the Orca
1024# command to manually toggle layout mode on/off.
1025TOGGLE_LAYOUT_MODE = _("Toggle layout mode")
1026
1027# Translators: Orca has a number of commands that override the default
1028# behavior within an application. For instance, on a web page, "h" moves
1029# you to the next heading. What should happen when you press an "h" in
1030# an entry on a web page depends: If you want to resume reading content,
1031# "h" should move to the next heading; if you want to enter text, "h"
1032# should not move you to the next heading. Similarly, if you are
1033# at the bottom of an entry and press Down arrow, should you leave the
1034# entry? Again, it depends on if you want to resume reading content or
1035# if you are editing the text in the entry. Because Orca doesn't know
1036# what you want to do, it has two modes: In browse mode, Orca treats
1037# key presses as commands to read the content; in focus mode, Orca treats
1038# key presses as something that should be handled by the focused widget.
1039# This string is associated with the Orca command to manually switch
1040# between these two modes.
1041TOGGLE_PRESENTATION_MODE = _("Switch between browse mode and focus mode")
1042
1043# Translators: (Please see the previous, detailed translator notes about
1044# Focus mode and Browse mode.) In order to minimize the amount of work Orca
1045# users need to do to switch between focus mode and browse mode, Orca attempts
1046# to automatically switch to the mode which is appropriate to the current
1047# web element. Sometimes, however, this automatic mode switching is not what
1048# the user wants. A good example being web apps which have their own keyboard
1049# navigation and use interaction model. As a result, Orca has a command which
1050# enables setting a "sticky" focus mode which disables all automatic toggling.
1051# This string is associated with the Orca command to enable sticky focus mode.
1052SET_FOCUS_MODE_STICKY = _("Enable sticky focus mode")
1053
1054# Translators: (Please see the previous, detailed translator notes about
1055# Focus mode and Browse mode.) In order to minimize the amount of work Orca
1056# users need to do to switch between focus mode and browse mode, Orca attempts
1057# to automatically switch to the mode which is appropriate to the current
1058# web element. Sometimes, however, this automatic mode switching is not what
1059# the user wants. A good example being web apps which have their own keyboard
1060# navigation and use interaction model. As a result, Orca has a command which
1061# enables setting a "sticky" browse mode which disables all automatic toggling.
1062# This string is associated with the Orca command to enable sticky browse mode.
1063SET_BROWSE_MODE_STICKY = _("Enable sticky browse mode")
1064
1065# Translators: this is for navigating among unvisited links in a document.
1066UNVISITED_LINK_PREV = _("Go to previous unvisited link")
1067
1068# Translators: this is for navigating among unvisited links in a document.
1069UNVISITED_LINK_NEXT = _("Go to next unvisited link")
1070
1071# Translators: this is for navigating among unvisited links in a document.
1072UNVISITED_LINK_LIST = _("Display a list of unvisited links")
1073
1074# Translators: this is for navigating among visited links in a document.
1075VISITED_LINK_PREV = _("Go to previous visited link")
1076
1077# Translators: this is for navigating among visited links in a document.
1078VISITED_LINK_NEXT = _("Go to next visited link")
1079
1080# Translators: this is for navigating among visited links in a document.
1081VISITED_LINK_LIST = _("Display a list of visited links")
1082