summaryrefslogtreecommitdiff
path: root/chess-german.el
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2002-04-16 19:36:47 +0000
committerJohn Wiegley <johnw@newartisans.com>2002-04-16 19:36:47 +0000
commitf9e74f0db1804e7eee064f8ae265438b9a1fac94 (patch)
tree12057084976c88b330727d2f87a760b5bd33599b /chess-german.el
parent7355cb4c0c8b1b36eef06d495065fb1777c9955a (diff)
*** no comment ***
Diffstat (limited to 'chess-german.el')
-rw-r--r--chess-german.el21
1 files changed, 21 insertions, 0 deletions
diff --git a/chess-german.el b/chess-german.el
new file mode 100644
index 0000000..be8c720
--- /dev/null
+++ b/chess-german.el
@@ -0,0 +1,21 @@
+(require 'chess-message)
+
+(chess-message-catalog 'german
+ '((queen . "Dame")
+ (king . "König")
+ (bishop . "Läufer")
+ (knight . "Springer")
+ (rook . "Turm")
+ (pawn . "Bauer")
+ (short-castle . "Kurze Rochade")
+ (long-castle . "Lange Rochade")
+ (check . "Schach")
+ (checkmate . "Schach matt")
+ (stalemate . "Patt")
+ (en-passant . "on possont")
+ (piece-moves . "%s nach %s")
+ (piece-takes . "%s schlägt %s auf %s")))
+
+(provide 'chess-german)
+
+;;; chess-german.el ends here