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"""Braille translation table names. These have been put in their own module 22so that we can present them in the correct language when users change the 23synthesizer language on the fly without having to reload a bunch of modules.""" 24 25__id__ = "$Id$" 26__version__ = "$Revision$" 27__date__ = "$Date$" 28__copyright__ = "Copyright (c) 2004-2009 Sun Microsystems Inc." \ 29 "Copyright (c) 2010-2013 The Orca Team" 30__license__ = "LGPL" 31 32from .orca_i18n import _ 33 34# Translators: These is the name of a braille translation table. To learn more 35# about braille translation tables, see http://en.wikipedia.org/wiki/Braille. 36CZ_CZ_G1 = _("Czech Grade 1") 37 38# Translators: These is the name of a braille translation table. To learn more 39# about braille translation tables, see http://en.wikipedia.org/wiki/Braille. 40ES_ES_G1 = _("Spanish Grade 1") 41 42# Translators: These is the name of a braille translation table. To learn more 43# about braille translation tables, see http://en.wikipedia.org/wiki/Braille. 44FR_CA_G2 = _("Canada French Grade 2") 45 46# Translators: These is the name of a braille translation table. To learn more 47# about braille translation tables, see http://en.wikipedia.org/wiki/Braille. 48FR_FR_G2 = _("France French Grade 2") 49 50# Translators: These is the name of a braille translation table. To learn more 51# about braille translation tables, see http://en.wikipedia.org/wiki/Braille. 52LV_LV_G1 = _("Latvian Grade 1") 53 54# Translators: These is the name of a braille translation table. To learn more 55# about braille translation tables, see http://en.wikipedia.org/wiki/Braille. 56NL_NL_G1 = _("Netherlands Dutch Grade 1") 57 58# Translators: These is the name of a braille translation table. To learn more 59# about braille translation tables, see http://en.wikipedia.org/wiki/Braille. 60NO_NO_G0 = _("Norwegian Grade 0") 61 62# Translators: These is the name of a braille translation table. To learn more 63# about braille translation tables, see http://en.wikipedia.org/wiki/Braille. 64NO_NO_G1 = _("Norwegian Grade 1") 65 66# Translators: These is the name of a braille translation table. To learn more 67# about braille translation tables, see http://en.wikipedia.org/wiki/Braille. 68NO_NO_G2 = _("Norwegian Grade 2") 69 70# Translators: These is the name of a braille translation table. To learn more 71# about braille translation tables, see http://en.wikipedia.org/wiki/Braille. 72NO_NO_G3 = _("Norwegian Grade 3") 73 74# Translators: These is the name of a braille translation table. To learn more 75# about braille translation tables, see http://en.wikipedia.org/wiki/Braille. 76PL_PL_G1 = _("Polish Grade 1") 77 78# Translators: These is the name of a braille translation table. To learn more 79# about braille translation tables, see http://en.wikipedia.org/wiki/Braille. 80PT_PT_G1 = _("Portuguese Grade 1") 81 82# Translators: These is the name of a braille translation table. To learn more 83# about braille translation tables, see http://en.wikipedia.org/wiki/Braille. 84SE_SE_G1 = _("Swedish Grade 1") 85 86# Translators: These is the name of a braille translation table. To learn more 87# about braille translation tables, see http://en.wikipedia.org/wiki/Braille. 88AR_AR_G1 = _("Arabic Grade 1") 89 90# Translators: These is the name of a braille translation table. To learn more 91# about braille translation tables, see http://en.wikipedia.org/wiki/Braille. 92CY_CY_G1 = _("Welsh Grade 1") 93 94# Translators: These is the name of a braille translation table. To learn more 95# about braille translation tables, see http://en.wikipedia.org/wiki/Braille. 96CY_CY_G2 = _("Welsh Grade 2") 97 98# Translators: These is the name of a braille translation table. To learn more 99# about braille translation tables, see http://en.wikipedia.org/wiki/Braille. 100DE_DE_G0 = _("German Grade 0") 101 102# Translators: These is the name of a braille translation table. To learn more 103# about braille translation tables, see http://en.wikipedia.org/wiki/Braille. 104DE_DE_G1 = _("German Grade 1") 105 106# Translators: These is the name of a braille translation table. To learn more 107# about braille translation tables, see http://en.wikipedia.org/wiki/Braille. 108DE_DE_G2 = _("German Grade 2") 109 110# Translators: These is the name of a braille translation table. To learn more 111# about braille translation tables, see http://en.wikipedia.org/wiki/Braille. 112EN_GB_G2 = _("U.K. English Grade 2") 113 114# Translators: These is the name of a braille translation table. To learn more 115# about braille translation tables, see http://en.wikipedia.org/wiki/Braille. 116EN_GB_G1 = _("U.K. English Grade 1") 117 118# Translators: These is the name of a braille translation table. To learn more 119# about braille translation tables, see http://en.wikipedia.org/wiki/Braille. 120EN_US_G1 = _("U.S. English Grade 1") 121 122# Translators: These is the name of a braille translation table. To learn more 123# about braille translation tables, see http://en.wikipedia.org/wiki/Braille. 124EN_US_G2 = _("U.S. English Grade 2") 125 126# Translators: These is the name of a braille translation table. To learn more 127# about braille translation tables, see http://en.wikipedia.org/wiki/Braille. 128FR_CA_G1 = _("Canada French Grade 1") 129 130# Translators: These is the name of a braille translation table. To learn more 131# about braille translation tables, see http://en.wikipedia.org/wiki/Braille. 132FR_FR_G1 = _("France French Grade 1") 133 134# Translators: These is the name of a braille translation table. To learn more 135# about braille translation tables, see http://en.wikipedia.org/wiki/Braille. 136GR_GR_G1 = _("Greek Grade 1") 137 138# Translators: These is the name of a braille translation table. To learn more 139# about braille translation tables, see http://en.wikipedia.org/wiki/Braille. 140HI_IN_G1 = _("Hindi Grade 1") 141 142# Translators: These is the name of a braille translation table. To learn more 143# about braille translation tables, see http://en.wikipedia.org/wiki/Braille. 144HU_HU_8DOT = _("Hungarian 8 dot computer") 145 146# Translators: These is the name of a braille translation table. To learn more 147# about braille translation tables, see http://en.wikipedia.org/wiki/Braille. 148HU_HU_G1 = _("Hungarian Grade 1") 149 150# Translators: These is the name of a braille translation table. To learn more 151# about braille translation tables, see http://en.wikipedia.org/wiki/Braille. 152IT_IT_G1 = _("Italian Grade 1") 153 154# Translators: These is the name of a braille translation table. To learn more 155# about braille translation tables, see http://en.wikipedia.org/wiki/Braille. 156NL_BE_G1 = _("Belgium Dutch Grade 1") 157