root/galaxy-central/eggs/docutils-0.4-py2.6.egg/docutils/parsers/rst/languages/es.py @ 3

リビジョン 3, 4.0 KB (コミッタ: kohda, 14 年 前)

Install Unix tools  http://hannonlab.cshl.edu/galaxy_unix_tools/galaxy.html

行番号 
1# -*- coding: utf-8 -*-
2# Author: Marcelo Huerta San Martテュn
3# Contact: richieadler@users.sourceforge.net
4# Revision: $Revision: 4231 $
5# Date: $Date: 2005-12-23 03:10:41 +0100 (Fri, 23 Dec 2005) $
6# Copyright: This module has been placed in the public domain.
7
8# New language mappings are welcome.  Before doing a new translation, please
9# read <http://docutils.sf.net/docs/howto/i18n.html>.  Two files must be
10# translated for each language: one in docutils/languages, the other in
11# docutils/parsers/rst/languages.
12
13"""
14Spanish-language mappings for language-dependent features of
15reStructuredText.
16"""
17
18__docformat__ = 'reStructuredText'
19
20
21directives = {
22      u'atenci\u00f3n': 'attention',
23      u'atencion': 'attention',
24      u'precauci\u00f3n': 'caution',
25      u'precaucion': 'caution',
26      u'peligro': 'danger',
27      u'error': 'error',
28      u'sugerencia': 'hint',
29      u'importante': 'important',
30      u'nota': 'note',
31      u'consejo': 'tip',
32      u'advertencia': 'warning',
33      u'exhortacion': 'admonition',
34      u'exhortaci\u00f3n': 'admonition',
35      u'nota-al-margen': 'sidebar',
36      u'tema': 'topic',
37      u'bloque-de-lineas': 'line-block',
38      u'bloque-de-l\u00edneas': 'line-block',
39      u'literal-evaluado': 'parsed-literal',
40      u'firma': 'rubric',
41      u'ep\u00edgrafe': 'epigraph',
42      u'epigrafe': 'epigraph',
43      u'destacado': 'highlights',
44      u'cita-destacada': 'pull-quote',
45      u'combinacion': 'compound',
46      u'combinaci\u00f3n': 'compound',
47      u'contenedor': 'container',
48      #'questions': 'questions',
49      #'qa': 'questions',
50      #'faq': 'questions',
51      u'tabla': 'table',
52      u'tabla-vsc': 'csv-table',
53      u'tabla-csv': 'csv-table',
54      u'tabla-lista': 'list-table',
55      u'meta': 'meta',
56      #'imagemap': 'imagemap',
57      u'imagen': 'image',
58      u'figura': 'figure',
59      u'incluir': 'include',
60      u'sin-analisis': 'raw',
61      u'sin-an\u00e1lisis': 'raw',
62      u'reemplazar': 'replace',
63      u'unicode': 'unicode',
64      u'fecha': 'date',
65      u'clase': 'class',
66      u'rol': 'role',
67      u'rol-por-omision': 'default-role',
68      u'rol-por-omisi\u00f3n': 'default-role',
69      u'titulo': 'title',
70      u't\u00edtulo': 'title',
71      u'contenido': 'contents',
72      u'numseccion': 'sectnum',
73      u'numsecci\u00f3n': 'sectnum',
74      u'numeracion-seccion': 'sectnum',
75      u'numeraci\u00f3n-secci\u00f3n': 'sectnum',
76      u'notas-destino': 'target-notes',
77      u'cabecera': 'header',
78      u'pie': 'footer',
79      #'footnotes': 'footnotes',
80      #'citations': 'citations',
81      u'restructuredtext-test-directive': 'restructuredtext-test-directive'}
82"""Spanish name to registered (in directives/__init__.py) directive name
83mapping."""
84
85roles = {
86    u'abreviatura': 'abbreviation',
87    u'ab': 'abbreviation',
88    u'acronimo': 'acronym',
89    u'acronimo': 'acronym',
90    u'ac': 'acronym',
91    u'indice': 'index',
92    u'i': 'index',
93    u'subindice': 'subscript',
94    u'sub\u00edndice': 'subscript',
95    u'superindice': 'superscript',
96    u'super\u00edndice': 'superscript',
97    u'referencia-titulo': 'title-reference',
98    u'titulo': 'title-reference',
99    u't': 'title-reference',
100    u'referencia-pep': 'pep-reference',
101    u'pep': 'pep-reference',
102    u'referencia-rfc': 'rfc-reference',
103    u'rfc': 'rfc-reference',
104    u'enfasis': 'emphasis',
105    u'\u00e9nfasis': 'emphasis',
106    u'destacado': 'strong',
107    u'literal': 'literal',              # "literal" is also a word in Spanish :-)
108    u'referencia-con-nombre': 'named-reference',
109    u'referencia-anonima': 'anonymous-reference',
110    u'referencia-an\u00f3nima': 'anonymous-reference',
111    u'referencia-nota-al-pie': 'footnote-reference',
112    u'referencia-cita': 'citation-reference',
113    u'referencia-sustitucion': 'substitution-reference',
114    u'referencia-sustituci\u00f3n': 'substitution-reference',
115    u'destino': 'target',
116    u'referencia-uri': 'uri-reference',
117    u'uri': 'uri-reference',
118    u'url': 'uri-reference',
119    u'sin-analisis': 'raw',
120    u'sin-an\u00e1lisis': 'raw',
121}
122"""Mapping of Spanish role names to canonical role names for interpreted text.
123"""
Note: リポジトリブラウザについてのヘルプは TracBrowser を参照してください。