From: mihkel <turakas@gmail.com>
To: emacs-orgmode@gnu.org
Subject: [PATCH] Added language support for et
Date: Sun, 15 Sep 2013 23:51:24 +0300 [thread overview]
Message-ID: <878uyxst9v.fsf@gigabyte.lan> (raw)
[-- Attachment #1.1: Type: text/plain, Size: 186 bytes --]
Hi.
Here is a small patch where I modified org-export-dictionary in
lisp/ox.el to add support for Estonian language. This is my first
one. I hope everything is in good shape :)
[-- Attachment #1.2: 0001-Added-language-support-for-et.patch --]
[-- Type: text/x-patch, Size: 4807 bytes --]
From 40c3311aa0f01dca5f4bea304f646ed9647ad109 Mon Sep 17 00:00:00 2001
From: mihkel <turakas@gmail.com>
Date: Sun, 15 Sep 2013 23:34:24 +0300
Subject: [PATCH] Added language support for et
---
lisp/ox.el | 14 ++++++++++++++
1 file changed, 14 insertions(+)
diff --git a/lisp/ox.el b/lisp/ox.el
index 07239a0..3d6e9d9 100644
--- a/lisp/ox.el
+++ b/lisp/ox.el
@@ -5218,6 +5218,7 @@ them."
("de" :default "Autor")
("eo" :html "Aŭtoro")
("es" :default "Autor")
+ ("et" :default "Autor")
("fi" :html "Tekijä")
("fr" :default "Auteur")
("hu" :default "Szerzõ")
@@ -5241,6 +5242,7 @@ them."
("de" :default "Datum")
("eo" :default "Dato")
("es" :default "Fecha")
+ ("et" :default "Kuupäev")
("fi" :html "Päivämäärä")
("hu" :html "Dátum")
("is" :default "Dagsetning")
@@ -5260,6 +5262,7 @@ them."
("da" :default "Ligning")
("de" :default "Gleichung")
("es" :html "Ecuación" :default "Ecuación")
+ ("et" :default "Võrrand")
("fr" :ascii "Equation" :default "Équation")
("no" :default "Ligning")
("nb" :default "Ligning")
@@ -5270,6 +5273,7 @@ them."
("da" :default "Figur")
("de" :default "Abbildung")
("es" :default "Figura")
+ ("et" :default "Joonis")
("ja" :html "図" :utf-8 "図")
("no" :default "Illustrasjon")
("nb" :default "Illustrasjon")
@@ -5280,6 +5284,7 @@ them."
("da" :default "Figur %d")
("de" :default "Abbildung %d:")
("es" :default "Figura %d:")
+ ("et" :default "Joonis %d:")
("fr" :default "Figure %d :" :html "Figure %d :")
("ja" :html "図%d: " :utf-8 "図%d: ")
("no" :default "Illustrasjon %d")
@@ -5294,6 +5299,7 @@ them."
("de" :html "Fußnoten" :default "Fußnoten")
("eo" :default "Piednotoj")
("es" :html "Nota al pie de página" :default "Nota al pie de página")
+ ("et" :default "Allmärkused")
("fi" :default "Alaviitteet")
("fr" :default "Notes de bas de page")
("hu" :html "Lábjegyzet")
@@ -5315,6 +5321,7 @@ them."
("da" :default "Programmer")
("de" :default "Programmauflistungsverzeichnis")
("es" :default "Indice de Listados de programas")
+ ("et" :default "Loendite nimekiri")
("fr" :default "Liste des programmes")
("no" :default "Dataprogrammer")
("nb" :default "Dataprogrammer")
@@ -5323,6 +5330,7 @@ them."
("da" :default "Tabeller")
("de" :default "Tabellenverzeichnis")
("es" :default "Indice de tablas")
+ ("et" :default "Tabelite nimekiri")
("fr" :default "Liste des tableaux")
("no" :default "Tabeller")
("nb" :default "Tabeller")
@@ -5333,6 +5341,7 @@ them."
("da" :default "Program %d")
("de" :default "Programmlisting %d")
("es" :default "Listado de programa %d")
+ ("et" :default "Loend %d")
("fr" :default "Programme %d :" :html "Programme %d :")
("no" :default "Dataprogram")
("nb" :default "Dataprogram")
@@ -5341,11 +5350,13 @@ them."
("da" :default "jævnfør afsnit %s")
("de" :default "siehe Abschnitt %s")
("es" :default "vea seccion %s")
+ ("et" :default "Vaata peatükki %s")
("fr" :default "cf. section %s")
("zh-CN" :html "参见第%d节" :utf-8 "参见第%s节"))
("Table"
("de" :default "Tabelle")
("es" :default "Tabla")
+ ("et" :default "Tabel")
("fr" :default "Tableau")
("ja" :html "表" :utf-8 "表")
("zh-CN" :html "表" :utf-8 "表"))
@@ -5353,6 +5364,7 @@ them."
("da" :default "Tabel %d")
("de" :default "Tabelle %d")
("es" :default "Tabla %d")
+ ("ey" :default "Tabel %d")
("fr" :default "Tableau %d :")
("ja" :html "表%d:" :utf-8 "表%d:")
("no" :default "Tabell %d")
@@ -5367,6 +5379,7 @@ them."
("de" :default "Inhaltsverzeichnis")
("eo" :default "Enhavo")
("es" :html "Índice")
+ ("et" :default "Sisukord")
("fi" :html "Sisällysluettelo")
("fr" :ascii "Sommaire" :default "Table des matières")
("hu" :html "Tartalomjegyzék")
@@ -5388,6 +5401,7 @@ them."
("da" :default "ukendt reference")
("de" :default "Unbekannter Verweis")
("es" :default "referencia desconocida")
+ ("et" :default "Tundmatu viide")
("fr" :ascii "Destination inconnue" :default "Référence inconnue")
("zh-CN" :html "未知引用" :utf-8 "未知引用")))
"Dictionary for export engine.
--
1.8.3.1
[-- Attachment #1.3: Type: text/plain, Size: 15 bytes --]
Mihkel Vain
[-- Attachment #2: Type: application/pgp-signature, Size: 197 bytes --]
next reply other threads:[~2013-09-15 20:51 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-09-15 20:51 mihkel [this message]
2013-09-17 6:26 ` [PATCH] Added language support for et Carsten Dominik
2013-09-17 12:45 ` mihkel
2013-09-22 6:19 ` Carsten Dominik
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://www.orgmode.org/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=878uyxst9v.fsf@gigabyte.lan \
--to=turakas@gmail.com \
--cc=emacs-orgmode@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).