diff --git a/view/sv/profile_advanced.php b/view/sv/profile_advanced.php index 6d2ecba4d6..0891d7ff1a 100644 --- a/view/sv/profile_advanced.php +++ b/view/sv/profile_advanced.php @@ -12,7 +12,7 @@ EOT; if($a->profile['name']) { $o .= <<< EOT
-
Full Name:
+
Fullständigt namn:
{$a->profile['name']}
@@ -22,7 +22,7 @@ EOT; if($a->profile['gender']) { $o .= <<< EOT
-
Gender:
+
Kön:
{$a->profile['gender']}
@@ -32,7 +32,7 @@ EOT; if(($a->profile['dob']) && ($a->profile['dob'] != '0000-00-00')) { $o .= <<< EOT
-
Birthday:
+
Födelsedag:
EOT; // If no year, add an arbitrary one so just we can parse the month and day. @@ -50,7 +50,7 @@ $o .= '
'; if($age = age($a->profile['dob'],$a->profile['timezone'],'')) { $o .= <<< EOT
-
Age:
+
Ålder:
$age
@@ -60,7 +60,7 @@ EOT; if($a->profile['marital']) { $o .= <<< EOT
-
Status:
+
Civilstatus:
{$a->profile['marital']}
EOT; @@ -75,7 +75,7 @@ EOT; if($a->profile['sexual']) { $o .= <<< EOT
-
Sexual Preference:
+
Sexuell läggning:
{$a->profile['sexual']}
@@ -86,7 +86,7 @@ if($a->profile['homepage']) { $homepage = linkify($a->profile['homepage']); $o .= <<< EOT
-
Homepage:
+
Hemsida URL:
$homepage
@@ -96,7 +96,7 @@ EOT; if($a->profile['politic']) { $o .= <<< EOT
-
Political Views:
+
Politisk åskådning:
{$a->profile['politic']}
@@ -115,7 +115,7 @@ EOT; if($txt = prepare_text($a->profile['about'])) { $o .= <<< EOT
-
About:
+
Om:

$txt
@@ -126,7 +126,7 @@ EOT; if($txt = prepare_text($a->profile['interest'])) { $o .= <<< EOT
-
Hobbies/Interests:
+
Hobbys/Intressen:

$txt
@@ -137,7 +137,7 @@ EOT; if($txt = prepare_text($a->profile['contact'])) { $o .= <<< EOT
-
Contact information and Social Networks:
+
Kontaktuppgifter och sociala nätverk:

$txt
@@ -148,7 +148,7 @@ EOT; if($txt = prepare_text($a->profile['music'])) { $o .= <<< EOT
-
Musical interests:
+
Musik:

$txt
@@ -159,7 +159,7 @@ EOT; if($txt = prepare_text($a->profile['book'])) { $o .= <<< EOT
-
Books, literature:
+
Böcker, litteratur:

$txt
@@ -170,7 +170,7 @@ EOT; if($txt = prepare_text($a->profile['tv'])) { $o .= <<< EOT
-
Television:
+
TV:

$txt
@@ -181,7 +181,7 @@ EOT; if($txt = prepare_text($a->profile['film'])) { $o .= <<< EOT
-
Film/dance/culture/entertainment:
+
Film/dans/kultur/underhållning:

$txt
@@ -192,7 +192,7 @@ EOT; if($txt = prepare_text($a->profile['romance'])) { $o .= <<< EOT
-
Love/romance:
+
Kärlek/romantik:

$txt
@@ -203,7 +203,7 @@ EOT; if($txt = prepare_text($a->profile['work'])) { $o .= <<< EOT
-
Work/employment:
+
Arbete:

$txt
@@ -214,12 +214,10 @@ EOT; if($txt = prepare_text($a->profile['education'])) { $o .= <<< EOT
-
School/education:
+
Skola/utbildning:

$txt
EOT; } - -