summaryrefslogtreecommitdiff
path: root/src/GF/Command/Commands.hs
diff options
context:
space:
mode:
authoraarne <aarne@cs.chalmers.se>2009-03-17 22:04:20 +0000
committeraarne <aarne@cs.chalmers.se>2009-03-17 22:04:20 +0000
commit793dd89f7ed64652391dffc2d35e5eb6ada9e768 (patch)
tree1320dbc463a1844904798a5af1f31f82f9e020aa /src/GF/Command/Commands.hs
parentf69a8f6322213c2a435b3cf528114a7ab36015f8 (diff)
Greek (modern) transliteration scheme
Diffstat (limited to 'src/GF/Command/Commands.hs')
-rw-r--r--src/GF/Command/Commands.hs5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/GF/Command/Commands.hs b/src/GF/Command/Commands.hs
index eda61255f..e6ee4a80c 100644
--- a/src/GF/Command/Commands.hs
+++ b/src/GF/Command/Commands.hs
@@ -522,6 +522,7 @@ allCommands cod env@(pgf, mos) = Map.fromList [
return $ fromString out,
options = [
("arabic", "Arabic"),
+ ("greek", "Greek (modern)"),
("devanagari","Devanagari"),
("telugu", "Telugu"),
("thai", "Thai")
@@ -681,7 +682,8 @@ stringOpOptions = [
("from_cp1251","decode from cp1251 (Cyrillic used in Bulgarian resource)"),
("from_arabic","from unicode to GF Arabic transliteration"),
("from_devanagari","from unicode to GF Devanagari transliteration"),
- ("from_thai","from unicode to GF Telugu transliteration"),
+ ("from_greek","from unicode to GF modern Greek transliteration"),
+ ("from_telugu","from unicode to GF Telugu transliteration"),
("from_thai","from unicode to GF Thai transliteration"),
("from_utf8","decode from utf8 (default)"),
("lextext","text-like lexer"),
@@ -690,6 +692,7 @@ stringOpOptions = [
("to_cp1251","encode to cp1251 (Cyrillic used in Bulgarian resource)"),
("to_arabic","from GF Arabic transliteration to unicode"),
("to_devanagari","from GF Devanagari transliteration to unicode"),
+ ("to_greek","from GF modern Greek transliteration to unicode"),
("to_html","wrap in a html file with linebreaks"),
("to_telugu","from GF Telugu transliteration to unicode"),
("to_thai","from GF Thai transliteration to unicode"),