From f2d9c155d6d37dcf3af4815eff9b76c819eebbb7 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= <roland@mxchange.org> Date: Mon, 9 Nov 2009 02:32:31 +0000 Subject: [PATCH] No longer using attributes in anchor nodes --- .../ship-simu/templates/de/menu/base_menu.xml | 2 +- .../de/menu/generic_menu_entries.xml | 42 +++++++++++++------ 2 files changed, 31 insertions(+), 13 deletions(-) diff --git a/application/ship-simu/templates/de/menu/base_menu.xml b/application/ship-simu/templates/de/menu/base_menu.xml index 90fcaf5..1f1ce73 100644 --- a/application/ship-simu/templates/de/menu/base_menu.xml +++ b/application/ship-simu/templates/de/menu/base_menu.xml @@ -25,7 +25,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/> <block-list> <block> <header> - <title class="{!menu_title_class?}"> + <title id="{?menu_title_id?}" class="{!menu_title_class?}"> {?menu_title?} </title> </header> diff --git a/application/ship-simu/templates/de/menu/generic_menu_entries.xml b/application/ship-simu/templates/de/menu/generic_menu_entries.xml index 93b77a0..ea41ef5 100644 --- a/application/ship-simu/templates/de/menu/generic_menu_entries.xml +++ b/application/ship-simu/templates/de/menu/generic_menu_entries.xml @@ -31,23 +31,35 @@ along with this program. If not, see <http://www.gnu.org/licenses/> </header> <entry-list> <entry id="home"> - <anchor id="menu_home" link="Home" title="Home"> - <![CDATA[index.php?app={?app_short_name?}]]> + <anchor> + <anchor-id><![CDATA[menu_home:]]></anchor-id> + <anchor-text><![CDATA[Home:]]></anchor-text> + <anchor-title><![CDATA[Zur Startseite:]]></anchor-title> + <anchor-href><![CDATA[index.php?app={?app_short_name?}]]></anchor-href> </anchor> </entry> <entry id="login"> - <anchor id="menu_login" link="Einloggen" title="Zum Spiel {?app_name?} einloggen"> - <![CDATA[index.php?app={?app_short_name?}&page=login]]> + <anchor> + <anchor-id><![CDATA[menu_login]]></anchor-id> + <anchor-text><![CDATA[Einloggen]]></anchor-text> + <anchor-title><![CDATA[Zum Spiel {?app_name?} einloggen]]></anchor-title> + <anchor-href><![CDATA[index.php?app={?app_short_name?}&page=login]]></anchor-href> </anchor> </entry> <entry id="register"> - <anchor id="menu_register" link="Anmeldung" title="Zur Anmeldeseite"> - <![CDATA[index.php?app={?app_short_name?}&page=register]]> + <anchor> + <anchor-id><![CDATA[menu_register]]></anchor-id> + <anchor-text><![CDATA[Anmeldung]]></anchor-text> + <anchor-title><![CDATA[Zur Anmeldeseite]]></anchor-title> + <anchor-href><![CDATA[index.php?app={?app_short_name?}&page=register]]></anchor-href> </anchor> </entry> <entry id="pillory"> - <anchor id="menu_pillory" link="Pranger" title="Zum Pranger"> - <![CDATA[index.php?app={?app_short_name?}&page=pillory]]> + <anchor> + <anchor-id><![CDATA[menu_pillory]]></anchor-id> + <anchor-text><![CDATA[Pranger]]></anchor-text> + <anchor-title><![CDATA[Zum Pranger]]></anchor-title> + <anchor-href><![CDATA[index.php?app={?app_short_name?}&page=pillory]]></anchor-href> </anchor> </entry> </entry-list> @@ -65,13 +77,19 @@ along with this program. If not, see <http://www.gnu.org/licenses/> </header> <entry-list> <entry id="imprint"> - <anchor id="menu_imprint" link="Impressum" title="Impressum"> - <![CDATA[index.php?app={?app_short_name?}&page=imprint]]> + <anchor> + <anchor-id><![CDATA[menu_imprint]]></anchor-id> + <anchor-text><![CDATA[Impressum]]></anchor-text> + <anchor-title><![CDATA[Impressum]]></anchor-title> + <anchor-href><![CDATA[index.php?app={?app_short_name?}&page=imprint]]></anchor-href> </anchor> </entry> <entry id="terms"> - <anchor id="menu_terms" link="ANBs" title="Allgemeine Nutzungsbedingungen"> - <![CDATA[index.php?app={?app_short_name?}&page=terms]]> + <anchor> + <anchor-id><![CDATA[menu_terms]]></anchor-id> + <anchor-text><![CDATA[ANBs]]></anchor-text> + <anchor-title><![CDATA[Allgemeine Nutzungsbedingungen]]></anchor-title> + <anchor-href><![CDATA[index.php?app={?app_short_name?}&page=terms]]></anchor-href> </anchor> </entry> </entry-list> -- 2.39.5