removed the last pieces of hard coded text from the templates

This commit is contained in:
lars 2005-09-07 12:57:14 +00:00
parent 08ec772ca5
commit 28380202b9
4 changed files with 17 additions and 9 deletions

View File

@ -3,6 +3,8 @@ Lang {
Name = Deutsch Name = Deutsch
Title { Title {
Top = Die CryptoBox
Slogan = Privatspähre für alle!
Init = Initialisierung der CryptoBox Init = Initialisierung der CryptoBox
Mount = Aktivierung der Crypto-Daten Mount = Aktivierung der Crypto-Daten
Umount = Deaktivierung der Crypto-Daten Umount = Deaktivierung der Crypto-Daten
@ -25,6 +27,10 @@ Lang {
EmptyLog = Das Logbuch der CryptoBox ist leer. EmptyLog = Das Logbuch der CryptoBox ist leer.
SelectLanguage = Spracheinstellung: SelectLanguage = Spracheinstellung:
RedirectNote = Klicken sie hier, falls ihr Browser die automatische Weiterleitung nicht unterstützt. RedirectNote = Klicken sie hier, falls ihr Browser die automatische Weiterleitung nicht unterstützt.
ProjectHomePage = Projekt-Seite
ProjectNote = Die CryptoBox ist ein Projekt von
DoUmount = Deaktivierung des verschlüsselten Dateisystems
DoMount = Aktivierung des verschlüsselten Dateisystems
} }
@ -36,6 +42,8 @@ Lang {
Umount = CryptoDaten deaktivieren Umount = CryptoDaten deaktivieren
PowerOff = ausschalten PowerOff = ausschalten
ReBoot = neu starten ReBoot = neu starten
Protocol = Protokoll
Documentation = Handbuch
} }

View File

@ -5,7 +5,7 @@
</div><!-- end of 'words' --> </div><!-- end of 'words' -->
<div id="footer"> <div id="footer">
<a href="https://systemausfall.org/prj/cryptobox" title="Projekt-Seite">CryptoBox-Home</a>&nbsp;&nbsp;Die CryptoBox ist ein Projekt von <a href="https://systemausfall.org/senselab" title="systemausfall.org">sense.lab</a> <a href="https://systemausfall.org/prj/cryptobox" title="<?cs var:Lang.Text.ProjectHomePage ?>">CryptoBox-Home</a>&nbsp;&nbsp;<?cs var:Lang.Text.ProjectNote ?> <a href="https://systemausfall.org/senselab" title="systemausfall.org">sense.lab</a>
</div> </div>
</div> </div>

View File

@ -20,8 +20,8 @@
<div id="main"> <div id="main">
<div id="head"> <div id="head">
<h1>Die CryptoBox</h1> <h1><?cs var:Lang.Title.Top ?></h1>
<h2>und zwar umsonst!</h2> <h2><?cs var:Lang.Title.Slogan ?></h2>
</div> </div>
<div id="content"> <div id="content">

View File

@ -1,9 +1,9 @@
<!-- mounting possible? --> <!-- mounting possible? -->
<?cs if:((Data.Status.Config == 1) && (Data.Status.InitRunning == 0)) ?> <?cs if:((Data.Status.Config == 1) && (Data.Status.InitRunning == 0)) ?>
<?cs if:(Data.Status.Mounted == 1) ?> <?cs if:(Data.Status.Mounted == 1) ?>
<a href="<?cs call:getSelfURL('action=umount_do','action') ?>" title="Deaktivierung des verschl&uuml;sselten Dateisystems">Deaktivierung</a> <a href="<?cs call:getSelfURL('action=umount_do','action') ?>" title="<?cs var:Lang.Text.DoUmount ?>"><?cs var:Lang.Button.Umount ?></a>
<?cs else ?> <?cs else ?>
<a href="<?cs call:getSelfURL('action=mount_ask','action') ?>" title="Aktivierung des verschl&uuml;sselten Dateisystems">Aktivierung</a> <a href="<?cs call:getSelfURL('action=mount_ask','action') ?>" title="<?cs var:Lang.Text.DoMount ?>"><?cs var:Lang.Button.Mount ?></a>
<?cs /if ?> <?cs /if ?>
<?cs /if ?> <?cs /if ?>
@ -12,8 +12,8 @@
<a href="<?cs call:getSelfURL('action=config_ask','action') ?>" title="Einstellungen">Einstellungen</a> <a href="<?cs call:getSelfURL('action=config_ask','action') ?>" title="Einstellungen">Einstellungen</a>
<?cs /if ?> <?cs /if ?>
<a href="<?cs call:getSelfURL('action=init_ask','action') ?>" title="Ersteinrichtung">Initialisierung</a> <a href="<?cs call:getSelfURL('action=init_ask','action') ?>" title="<?cs var:Lang.Button.DoInit ?>"><?cs var:Lang.Button.DoInit ?></a>
<a href="<?cs call:getSelfURL('action=show_log','action') ?>" title="Ereignis-Protokoll">Protokoll</a> <a href="<?cs call:getSelfURL('action=show_log','action') ?>" title="<?cs var:Lang.Button.Protocol ?>"><?cs var:Lang.Button.Protocol ?></a>
<a href="<?cs call:getSelfURL('action=doc','action') ?>" title="Nutzer-Handbuch">Hilfe</a> <a href="<?cs call:getSelfURL('action=doc','action') ?>" title="<?cs var:Lang.Button.Documentation ?>"><?cs var:Lang.Button.Documentation ?></a>
<a href="<?cs call:getSelfURL('action=shutdown_ask','action') ?>" title="Herunterfahren">Herunterfahren</a> <a href="<?cs call:getSelfURL('action=shutdown_ask','action') ?>" title="<?cs var:Lang.Button.PowerOff ?>"><?cs var:Lang.Button.PowerOff ?></a>