summaryrefslogtreecommitdiff
path: root/i18n.c
diff options
context:
space:
mode:
authorMartin Prochnow <nordlicht@martins-kabuff.de>2006-03-09 15:01:38 +0100
committerAndreas Mair <andreas@vdr-developer.org>2006-03-09 15:01:38 +0100
commit93372f4ecc69a079c0e5c5af9169f39222983667 (patch)
treef341ea604e6fd1a8e175ee78a70cab88a6006623 /i18n.c
downloadvdr-plugin-extrecmenu-93372f4ecc69a079c0e5c5af9169f39222983667.tar.gz
vdr-plugin-extrecmenu-93372f4ecc69a079c0e5c5af9169f39222983667.tar.bz2
Version 0.1 (Initial revision).v0.1
Diffstat (limited to 'i18n.c')
-rw-r--r--i18n.c48
1 files changed, 48 insertions, 0 deletions
diff --git a/i18n.c b/i18n.c
new file mode 100644
index 0000000..f5c9bc3
--- /dev/null
+++ b/i18n.c
@@ -0,0 +1,48 @@
+/*
+ * See the README file for copyright information and how to reach the author.
+ */
+
+#include "i18n.h"
+
+const tI18nPhrase Phrases[] = {
+ { "Extended recordings menu",
+ "Erweitertes Aufzeichnungs-Menü",
+ },
+ { "Button$Open",
+ "Öffnen",
+ },
+ { "Button$Cancel",
+ "Abbrechen",
+ },
+ { "Button$Play",
+ "Wiedergabe",
+ },
+ { "Button$Rewind",
+ "Anfang",
+ },
+ { "Button$Create",
+ "Anlegen",
+ },
+ { "Button$Select",
+ "Auswählen",
+ },
+ { "Button$Edit",
+ "Editieren",
+ },
+ { "Button$Rename",
+ "Umbenennen",
+ },
+ { "Button$Move",
+ "Verschieben",
+ },
+ { "Button$Delete",
+ "Löschen",
+ },
+ { "New folder",
+ "Neues Verzeichnis",
+ },
+ { "Rename recording",
+ "Aufzeichnung umbenennen",
+ },
+ { NULL }
+ };