From e35a5bac55e0e259c7c587adfaf546484b032c92 Mon Sep 17 00:00:00 2001 From: Friendika Date: Thu, 7 Apr 2011 23:10:43 -0700 Subject: the rest of the english html templates except for htconfig --- view/de/contact_edit.tpl | 86 ----------- view/de/install_db.tpl | 40 ----- view/de/profile_advanced.php | 226 ---------------------------- view/de/profile_edit.tpl | 299 -------------------------------------- view/de/profile_entry_default.tpl | 9 -- view/de/profile_photo.tpl | 18 --- view/de/pwdreset.tpl | 16 -- view/de/settings.tpl | 177 ---------------------- view/de/settings_nick_set.tpl | 9 -- view/de/settings_nick_subdir.tpl | 9 -- 10 files changed, 889 deletions(-) delete mode 100644 view/de/contact_edit.tpl delete mode 100644 view/de/install_db.tpl delete mode 100644 view/de/profile_advanced.php delete mode 100644 view/de/profile_edit.tpl delete mode 100644 view/de/profile_entry_default.tpl delete mode 100644 view/de/profile_photo.tpl delete mode 100644 view/de/pwdreset.tpl delete mode 100644 view/de/settings.tpl delete mode 100644 view/de/settings_nick_set.tpl delete mode 100644 view/de/settings_nick_subdir.tpl (limited to 'view/de') diff --git a/view/de/contact_edit.tpl b/view/de/contact_edit.tpl deleted file mode 100644 index 0b32bdd66..000000000 --- a/view/de/contact_edit.tpl +++ /dev/null @@ -1,86 +0,0 @@ - -

$header

- -
$name
- -
- - -
- -
- $alt_text -
- $name -
-
-
-
- - - -
- - -
-
$lastupdtext$last_update -
$updpub
- $poll_interval - -
-
-
- -$insecure -$blocked -$ignored - - -
-

Kontaktinformation / Notizen

- -
-
- - - -
-

Profil Sichtbarkeit

-

Bitte wähle das Profil, das du $name gezeigt werden soll, wenn er sich dein -Profil in Friendika betrachtet. -

-
-$profile_select -
- - - - -
-

Online Reputation

-

-Gelegentlich werden sich deine Freunde nach der online Legitimität dieser -Person erkundigen. Du kannst ihnen helfen bei der Entscheidung ob sie mit -dieser Person interagieren wollen indem du den "Ruf" der Person bewertest. -

-
-$rating -
-
-

-Bitte nimm dir einen Moment um deine Auswahl zu kommentieren wenn du meinst das -könnte anderen weiter helfen. -

- -
-
-$groups - - - -
diff --git a/view/de/install_db.tpl b/view/de/install_db.tpl deleted file mode 100644 index 804ce17f3..000000000 --- a/view/de/install_db.tpl +++ /dev/null @@ -1,40 +0,0 @@ - -

Friendika Social Network

-

Installation

- -

-Um Friendika installieren zu können müssen wir wissen wie wir die Datenbank erreichen könne. Bitte kontaktire deinen Hosting Anbieter oder Seitenadministrator wenn du Fragen zu diesen Einstellungen hast. Die Datenbank die du weiter unten angibst muss bereits existieren. Sollte dies nicht der Fall sein erzeuge sie bitte bevor du mit der Installation fortfährst. -

- -
- - - - - -
- - - -
- - - -
- - - -
- -
-Bitte wähle die Standard-Zeitzone deiner Webseite -
- -$tzselect - -
- - -
-
- diff --git a/view/de/profile_advanced.php b/view/de/profile_advanced.php deleted file mode 100644 index ec6eb6e3a..000000000 --- a/view/de/profile_advanced.php +++ /dev/null @@ -1,226 +0,0 @@ -Profile - - -EOT; - -if($a->profile['name']) { -$o .= <<< EOT -
-
Full Name:
-
{$a->profile['name']}
-
-
-EOT; -} - -if($a->profile['gender']) { -$o .= <<< EOT -
-
Gender:
-
{$a->profile['gender']}
-
-
-EOT; -} - -if(($a->profile['dob']) && ($a->profile['dob'] != '0000-00-00')) { -$o .= <<< EOT -
-
Birthday:
-EOT; - -// If no year, add an arbitrary one so just we can parse the month and day. - -$o .= '
' - . ((intval($a->profile['dob'])) - ? day_translate(datetime_convert('UTC','UTC',$a->profile['dob'] . ' 00:00 +00:00','j F, Y')) - : day_translate(datetime_convert('UTC','UTC','2001-' . substr($a->profile['dob'],6) . ' 00:00 +00:00','j F'))) - . "
\r\n
"; - -$o .= '
'; - -} - -if($age = age($a->profile['dob'],$a->profile['timezone'],'')) { -$o .= <<< EOT -
-
Age:
-
$age
-
-
-EOT; -} - -if($a->profile['marital']) { -$o .= <<< EOT -
-
Status:
-
{$a->profile['marital']}
-EOT; - -if($a->profile['with']) - $o .= "
({$a->profile['with']})
"; -$o .= <<< EOT -
-
-EOT; -} - -if($a->profile['sexual']) { -$o .= <<< EOT -
-
Sexual Preference:
-
{$a->profile['sexual']}
-
-
-EOT; -} - -if($a->profile['homepage']) { - $homepage = linkify($a->profile['homepage']); -$o .= <<< EOT -
-
Homepage:
-
$homepage
-
-
-EOT; -} - -if($a->profile['politic']) { -$o .= <<< EOT -
-
Political Views:
-
{$a->profile['politic']}
-
-
-EOT; -} - -if($a->profile['religion']) { -$o .= <<< EOT -
-
Religion:
-
{$a->profile['religion']}
-
-
-EOT; -} - -if($txt = prepare_text($a->profile['about'])) { -$o .= <<< EOT -
-
About:
-
-
$txt
-
-
-EOT; -} - -if($txt = prepare_text($a->profile['interest'])) { -$o .= <<< EOT -
-
Hobbies/Interests:
-
-
$txt
-
-
-EOT; -} - -if($txt = prepare_text($a->profile['contact'])) { -$o .= <<< EOT -
-
Contact information and Social Networks:
-
-
$txt
-
-
-EOT; -} - -if($txt = prepare_text($a->profile['music'])) { -$o .= <<< EOT -
-
Musical interests:
-
-
$txt
-
-
-EOT; -} - -if($txt = prepare_text($a->profile['book'])) { -$o .= <<< EOT -
-
Books, literature:
-
-
$txt
-
-
-EOT; -} - -if($txt = prepare_text($a->profile['tv'])) { -$o .= <<< EOT -
-
Television:
-
-
$txt
-
-
-EOT; -} - -if($txt = prepare_text($a->profile['film'])) { -$o .= <<< EOT -
-
Film/dance/culture/entertainment:
-
-
$txt
-
-
-EOT; -} - -if($txt = prepare_text($a->profile['romance'])) { -$o .= <<< EOT -
-
Love/romance:
-
-
$txt
-
-
-EOT; -} - -if($txt = prepare_text($a->profile['work'])) { -$o .= <<< EOT -
-
Work/employment:
-
-
$txt
-
-
-EOT; -} - -if($txt = prepare_text($a->profile['education'])) { -$o .= <<< EOT -
-
School/education:
-
-
$txt
-
-
-EOT; -} - - diff --git a/view/de/profile_edit.tpl b/view/de/profile_edit.tpl deleted file mode 100644 index 0b0619420..000000000 --- a/view/de/profile_edit.tpl +++ /dev/null @@ -1,299 +0,0 @@ -

Proil Details Bearbeiten

- - - - - -$default - -
-
- -
- -
*
-
-
- -
- - -
-
- -
- - -
-
- - -
- -$gender -
-
- -
- -
-$dob $age -
-
-
- -$hide_friends - -
- -
-
- - -
- - -
-
- -
- - -
-
- - -
- - -
-
- -
- - -
-
- -
- - -
-
- -
- -
-
- -
- -$marital -
- - -
- -
- -$sexual -
-
- - - -
- - -
-
- -
- - -
-
- -
- - -
-
- -
- - -
(Used for suggesting potential friends, can be seen by others)
-
- -
- - -
(Used for searching profiles, never shown to others)
-
- - -
- -
-
- -
-

-Tell us about yourself... -

- - - -
-
-
- - -
-

-Hobbies/Interests -

- - - -
-
-
- - -
-

-Contact information and Social Networks -

- - - -
-
- - - -
- -
-
- - -
-

-Musical interests -

- - - -
-
- - -
-

-Books, literature -

- - - -
-
- - - - -
-

-Television -

- - - -
-
- - - - -
-

-Film/dance/culture/entertainment -

- - - -
-
- - - -
- -
-
- - -
-

-Love/romance -

- - - -
-
- - - - -
-

-Work/employment -

- - - -
-
- - - - -
-

-School/education -

- - - -
-
- - - - -
- -
-
- - - - - \ No newline at end of file diff --git a/view/de/profile_entry_default.tpl b/view/de/profile_entry_default.tpl deleted file mode 100644 index dff6b53f7..000000000 --- a/view/de/profile_entry_default.tpl +++ /dev/null @@ -1,9 +0,0 @@ - -
-
-Profilbild -
-
- -
-
diff --git a/view/de/profile_photo.tpl b/view/de/profile_photo.tpl deleted file mode 100644 index 10d7d7b97..000000000 --- a/view/de/profile_photo.tpl +++ /dev/null @@ -1,18 +0,0 @@ -

Profilbild Hochladen

- -
- -
- - -
- -
- -
- -
- - diff --git a/view/de/pwdreset.tpl b/view/de/pwdreset.tpl deleted file mode 100644 index 30aca0748..000000000 --- a/view/de/pwdreset.tpl +++ /dev/null @@ -1,16 +0,0 @@ -

Zurücksetzen des Passworts

- -

-Dein Passwort wurde wie gewünscht zurück gesetzt. -

-

-Dein neues Passwort lautet: -

-

-$newpass -

-

-Sichere oder kopiere dein neues Passwort und melde dich dann hier an. -

-

-Nachdem du dich angemeldet hast kannst du dein Passwort auf der "Einstellungen" Seite ändern. \ No newline at end of file diff --git a/view/de/settings.tpl b/view/de/settings.tpl deleted file mode 100644 index 1924fc8e1..000000000 --- a/view/de/settings.tpl +++ /dev/null @@ -1,177 +0,0 @@ -

Account Einstellungen

- - - -$uexport - -$nickname_block - - -
- - -

Grundeinstellungen

- -
- - -
-
- -
- - -
-
- - - -
- -$zoneselect -
-
- -
- - -
-
- -
- - -
-
- - - - -
- -$theme -
-
- -
- -
- - -

Sicherheits und Privatsphären Einstellungen

- - - - -
- - -
(um SPAM zu verhindern)
-
-
- - - - -$profile_in_dir - -$profile_in_net_dir - - - -
- -
- - -
-
- -
- - -
-
- - - -
Automatically expire (delete) posts older than days
-
- - -
- -
- - - -

Benachrichtigungs Einstellungen

- - -
-
Benachrichtigungsemail senden wenn:
- - -
- - -
- - -
- - -
- - -
-
-
- -
- -
- - -

Passwort Einstellungen

- - -
-

-Lass die Passwortfelder frei außer du willst das Passwort ändern. -

- - -
-
- -
- - -
-
- -
- $oidhtml -
-
- - -
- -
- - -

Erweiterte Seiteneinstellungen

- -$pagetype - -
- -
- - diff --git a/view/de/settings_nick_set.tpl b/view/de/settings_nick_set.tpl deleted file mode 100644 index 9336951d4..000000000 --- a/view/de/settings_nick_set.tpl +++ /dev/null @@ -1,9 +0,0 @@ - -
-

-Deine Profiladresse lautet '$nickname@$basepath' -

-$subdir - -
-
diff --git a/view/de/settings_nick_subdir.tpl b/view/de/settings_nick_subdir.tpl deleted file mode 100644 index fa189a769..000000000 --- a/view/de/settings_nick_subdir.tpl +++ /dev/null @@ -1,9 +0,0 @@ -

-Es scheint so als ob deine Friendika Installation in einem Unterverzeichnis von $hostname -liegt, es könnte deshalb unzuverlässig arbeiten. -

-

-Solltest du irgendwelche Probleme haben versuche bitte folgende Profil Adresse -'$baseurl/profile/$nickname' eventuell funktioniert es damit -besser. -

-- cgit v1.2.3