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

リビジョン 3, 1.9 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: mghsm@uol.com.ar
4# Revision: $Revision: 3968 $
5# Date: $Date: 2005-10-29 14:28:44 +0200 (Sat, 29 Oct 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 Docutils.
15"""
16
17__docformat__ = 'reStructuredText'
18
19labels = {
20      'author': u'Autor',
21      'authors': u'Autores',
22      'organization': u'Organizaci\u00f3n',
23      'address': u'Direcci\u00f3n',
24      'contact': u'Contacto',
25      'version': u'Versi\u00f3n',
26      'revision': u'Revisi\u00f3n',
27      'status': u'Estado',
28      'date': u'Fecha',
29      'copyright': u'Copyright',
30      'dedication': u'Dedicatoria',
31      'abstract': u'Resumen',
32      'attention': u'\u00a1Atenci\u00f3n!',
33      'caution': u'\u00a1Precauci\u00f3n!',
34      'danger': u'\u00a1PELIGRO!',
35      'error': u'Error',
36      'hint': u'Sugerencia',
37      'important': u'Importante',
38      'note': u'Nota',
39      'tip': u'Consejo',
40      'warning': u'Advertencia',
41      'contents': u'Contenido'}
42"""Mapping of node class name to label text."""
43
44bibliographic_fields = {
45      u'autor': 'author',
46      u'autores': 'authors',
47      u'organizaci\u00f3n': 'organization',
48      u'direcci\u00f3n': 'address',
49      u'contacto': 'contact',
50      u'versi\u00f3n': 'version',
51      u'revisi\u00f3n': 'revision',
52      u'estado': 'status',
53      u'fecha': 'date',
54      u'copyright': 'copyright',
55      u'dedicatoria': 'dedication',
56      u'resumen': 'abstract'}
57"""Spanish (lowcased) to canonical name mapping for bibliographic fields."""
58
59author_separators = [';', ',']
60"""List of separator strings for the 'Authors' bibliographic field. Tried in
61order."""
Note: リポジトリブラウザについてのヘルプは TracBrowser を参照してください。