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/sv/profile_advanced.php | 223 ------------------------------------------- 1 file changed, 223 deletions(-) delete mode 100644 view/sv/profile_advanced.php (limited to 'view/sv/profile_advanced.php') diff --git a/view/sv/profile_advanced.php b/view/sv/profile_advanced.php deleted file mode 100644 index 0891d7ff1..000000000 --- a/view/sv/profile_advanced.php +++ /dev/null @@ -1,223 +0,0 @@ -Profile - - -EOT; - -if($a->profile['name']) { -$o .= <<< EOT -
-
Fullständigt namn:
-
{$a->profile['name']}
-
-
-EOT; -} - -if($a->profile['gender']) { -$o .= <<< EOT -
-
Kön:
-
{$a->profile['gender']}
-
-
-EOT; -} - -if(($a->profile['dob']) && ($a->profile['dob'] != '0000-00-00')) { -$o .= <<< EOT -
-
Födelsedag:
-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 -
-
Ålder:
-
$age
-
-
-EOT; -} - -if($a->profile['marital']) { -$o .= <<< EOT -
-
Civilstatus:
-
{$a->profile['marital']}
-EOT; - -if($a->profile['with']) - $o .= "
({$a->profile['with']})
"; -$o .= <<< EOT -
-
-EOT; -} - -if($a->profile['sexual']) { -$o .= <<< EOT -
-
Sexuell läggning:
-
{$a->profile['sexual']}
-
-
-EOT; -} - -if($a->profile['homepage']) { - $homepage = linkify($a->profile['homepage']); -$o .= <<< EOT -
-
Hemsida URL:
-
$homepage
-
-
-EOT; -} - -if($a->profile['politic']) { -$o .= <<< EOT -
-
Politisk åskådning:
-
{$a->profile['politic']}
-
-
-EOT; -} - -if($a->profile['religion']) { -$o .= <<< EOT -
-
Religion:
-
{$a->profile['religion']}
-
-
-EOT; -} -if($txt = prepare_text($a->profile['about'])) { -$o .= <<< EOT -
-
Om:
-
-
$txt
-
-
-EOT; -} - -if($txt = prepare_text($a->profile['interest'])) { -$o .= <<< EOT -
-
Hobbys/Intressen:
-
-
$txt
-
-
-EOT; -} - -if($txt = prepare_text($a->profile['contact'])) { -$o .= <<< EOT -
-
Kontaktuppgifter och sociala nätverk:
-
-
$txt
-
-
-EOT; -} - -if($txt = prepare_text($a->profile['music'])) { -$o .= <<< EOT -
-
Musik:
-
-
$txt
-
-
-EOT; -} - -if($txt = prepare_text($a->profile['book'])) { -$o .= <<< EOT -
-
Böcker, litteratur:
-
-
$txt
-
-
-EOT; -} - -if($txt = prepare_text($a->profile['tv'])) { -$o .= <<< EOT -
-
TV:
-
-
$txt
-
-
-EOT; -} - -if($txt = prepare_text($a->profile['film'])) { -$o .= <<< EOT -
-
Film/dans/kultur/underhållning:
-
-
$txt
-
-
-EOT; -} - -if($txt = prepare_text($a->profile['romance'])) { -$o .= <<< EOT -
-
Kärlek/romantik:
-
-
$txt
-
-
-EOT; -} - -if($txt = prepare_text($a->profile['work'])) { -$o .= <<< EOT -
-
Arbete:
-
-
$txt
-
-
-EOT; -} - -if($txt = prepare_text($a->profile['education'])) { -$o .= <<< EOT -
-
Skola/utbildning:
-
-
$txt
-
-
-EOT; -} -- cgit v1.2.3