#!/usr/bin/perl use XML::Parser; use MDK::Common; my $help; my $dir = "doc/manual/literal/drakx"; my @langs = grep { /^..$/ && -e "$dir/$_/drakx-help.xml" } all($dir) or die "no XML help found in $dir\n"; my %helps = map { my $lang = $_; my $p = new XML::Parser(Style => 'Tree'); my $tree = $p->parsefile("$dir/$lang/drakx-help.xml"); $lang => rewrite2(rewrite1(@$tree), $lang); } @langs; my $base = delete $helps{en} || die; save_help($base); foreach my $lang (keys %helps) { local *F; my ($charset) = cat_("$lang.po") =~ /charset=([^\\]+)/ or die "missing charset in $lang.po\n"; open F, "| iconv -f utf8 -t $charset//TRANSLIT > help-$lang.pot"; #open F, "|cat - > help-$lang.pot"; print F "\n"; foreach my $id (keys %{$helps{$lang}}) { $base->{$id} or die "$lang:$id doesn't exist in english\n"; print F qq(# DO NOT BOTHER TO MODIFY HERE, SEE:\n# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/$lang/drakx-help.xml\n); print F qq(msgid ""\n"); print F join(qq(\\n"\n"), split "\n", $base->{$id}); print F qq("\nmsgstr ""\n"); print F join(qq(\\n"\n"), split "\n", $helps{$lang}{$id}); print F qq("\n\n); } } sub save_help { my ($help) = @_; local *F; open F, "| LC_ALL=fr iconv -f utf8 -t ascii//TRANSLIT > ../../help.pm"; print F q{package help; use common; # IMPORTANT: Don't edit this File - It is automatically generated # from the manuals !!! # Write a mail to if you want # it changed. %steps = ( empty => '', }; print F qq( $_ => __("$help->{$_}"), ) foreach sort keys %$help; print F ");\n"; } # i don't like the default tree format given by XML::Parser, # rewrite it in my own tree format sub rewrite1 { my ($tag, $tree) = @_; my ($attr, @nodes) = @$tree; my @l; while (@nodes) { my ($tag, $tree) = splice(@nodes, 0, 2); if ($tag eq '0') { foreach ($tree) { s/\s+/ /gs; s/"/\\"/g; } push @l, $tree } elsif ($tag eq 'screen') { $tree->[1] eq '0' or die "screen tag contains non CDATA\n"; push @l, $tree->[2]; } else { push @l, rewrite1($tag, $tree); } } { attr => $attr, tag => lc $tag, children => \@l }; } # return the list of nodes named $tag sub find { my ($tag, $tree) = @_; if (!ref($tree)) { (); } elsif ($tree->{tag} eq $tag) { $tree; } else { map { find($tag, $_) } @{$tree->{children}}; } } sub rewrite2 { my ($tree, $lang) = @_; our $i18ned_open_text_quote = $ {{ fr => "« ", de => "„"}}{$lang}; our $i18ned_close_text_quote = $ {{ fr => " »", de => "“"}}{$lang}; our $i18ned_open_label_quote = $ {{ fr => "« ", de => "„"}}{$lang}; our $i18ned_close_label_quote = $ {{ fr => " »", de => "“"}}{$lang}; our $i18ned_open_command_quote = $ {{ fr => "« ", de => "„"}}{$lang}; our $i18ned_close_command_quote = $ {{ fr => " »", de => "“"}}{$lang}; our $i18ned_open_input_quote = $ {{ fr => "« ", de => "»"}}{$lang}; our $i18ned_close_input_quote = $ {{ fr => " »", de => "«"}}{$lang}; our $i18ned_open_key_quote = $ {{ de => "["}}{$lang}; our $i18ned_close_key_quote = $ {{ de => "]"}}{$lang}; # rewrite2_ fills in $help $help = {}; rewrite2_($tree); $help; } sub rewrite2_ { my ($tree) = @_; ref($tree) or return $tree; my $text = do { my @l = map { rewrite2_($_) } @{$tree->{children}}; my $text; foreach (grep { !/^\s*$/ } @l) { s/^ // if $text =~ /\s$/; $text =~ s/ $// if /^\s/; $text =~ s/\n+$// if /^\n/; $text .= $_; } $text; }; if (0) { } elsif (member($tree->{tag}, 'para', 'itemizedlist', 'orderedlist')) { $text =~ s/^\s(?!\s)//; $text =~ s/^( ?\n)+//; $text =~ s/\s+$//; qq(\n$text\n); } elsif (member($tree->{tag}, 'quote', 'citetitle', 'foreignphrase')) { ($i18ned_open_text_quote || "``") . $text . ($i18ned_close_text_quote || "''"); } elsif (member($tree->{tag}, 'guilabel', 'guibutton', 'guimenu', 'literal')) { ($i18ned_open_label_quote || "\\\"") . $text . ($i18ned_close_label_quote || "\\\""); } elsif ($tree->{tag} eq 'command') { ($i18ned_open_command_quote || "\\\"") . $text . ($i18ned_close_command_quote || "\\\""); } elsif ($tree->{tag} eq 'userinput') { ($i18ned_open_input_quote || ">>") . $text . ($i18ned_close_input_quote || "<<"); } elsif ($tree->{tag} eq 'keycap') { ($i18ned_open_key_quote || "[") . $text . ($i18ned_close_key_quote || "]"); } elsif (member($tree->{tag}, 'keysym')) { qq($text); } elsif (member($tree->{tag}, 'footnote')) { '(*)' } elsif ($tree->{tag} eq 'warning') { $text =~ s/^(\s+)/$1!! /; $text =~ s/(\s+)$/ !!$1/; $text; } elsif ($tree->{tag} eq 'listitem') { my $cnt; $text =~ s/^\s+//; $text =~ s/^/' ' . ($cnt++ ? ' ' : '* ')/emg; "\n$text\n"; } elsif (member($tree->{tag}, 'acronym', 'application', 'emphasis', 'indexterm', 'keycombo', 'note', 'primary', 'superscript', 'systemitem', 'tip', 'ulink', 'xref' )) { # ignored tags $text; } elsif (member($tree->{tag}, 'title', 'article')) { # dropped tags ''; } elsif ($tree->{tag} eq 'sect1') { $text =~ s/^\s+//; my @footnotes = map { my $s = rewrite2_({ %$_, tag => 'para' }); $s =~ s/^\s+//; "(*) $s"; } find('footnote', $tree); $help->{$tree->{attr}{id}} = aerate($text . join('', @footnotes)); ''; } elsif ($tree->{tag} eq 'screen') { qq(\n$text\n); } else { die "unknown tag $tree->{tag}\n"; } } sub aerate { my ($s) = @_; #- the warp_text column is adjusted so that xgettext do not wrap text around #- which cause msgmerge to add a lot of fuzzy my $s2 = join("\n\n", map { join("\n", warp_text($_, 75)) } split "\n", $s); $s2; } 0f1a61af9d58a4d66e1a86c2a050d3e391fd2.tar.bz2
drakx-installer-help-c1c0f1a61af9d58a4d66e1a86c2a050d3e391fd2.tar.xz
drakx-installer-help-c1c0f1a61af9d58a4d66e1a86c2a050d3e391fd2.zip
updated and 3 new Swedish files from Calenco
Diffstat (limited to 'sv')
-rw-r--r--sv/acceptLicense.html6
-rw-r--r--sv/ask_mntpoint_s.html14
-rw-r--r--sv/chooseDesktop.html60
-rw-r--r--sv/configureServices.html8
-rw-r--r--sv/configureTimezoneUTC.html12
-rw-r--r--sv/configureX_card_list.html98
-rw-r--r--sv/configureX_chooser.html8
-rw-r--r--sv/diskdrake.html12
-rw-r--r--sv/exitInstall.html65
-rw-r--r--sv/index.html52
-rw-r--r--sv/installUpdates.html9
-rw-r--r--sv/misc-params.html24
-rw-r--r--sv/resizeFATChoose.html6
-rw-r--r--sv/securityLevel.html6
-rw-r--r--sv/selectCountry.html104
-rw-r--r--sv/selectLanguage.html12
-rw-r--r--sv/setupBootloader.html102
-rw-r--r--sv/setupBootloaderExpert.html354
-rw-r--r--sv/takeOverHdChoose.html10
19 files changed, 415 insertions, 547 deletions
diff --git a/sv/acceptLicense.html b/sv/acceptLicense.html
index a57a36f..9c0983b 100644
--- a/sv/acceptLicense.html
+++ b/sv/acceptLicense.html
@@ -4,8 +4,8 @@
<title>Anteckningar f&ouml;r Licens och Release</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
- <link rel="home" href="index.html" title="Installation with DrakX">
- <link rel="up" href="index.html" title="Installation with DrakX">
+ <link rel="home" href="index.html" title="Installation med DrakX">
+ <link rel="up" href="index.html" title="Installation med DrakX">
<link rel="prev" href="selectLanguage.html" title="Var v&auml;nlig v&auml;lj spr&aring;k att anv&auml;nda">
<link rel="next" href="resizeFATChoose.html" title="&Auml;ndra storlek p&aring; Windows&reg;-partitionen"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
<!--
@@ -13,7 +13,7 @@
table { font-family: sans-serif; font-size: 13px }
--></style></head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
- <div lang="" class="section" title="Anteckningar f&ouml;r Licens och Release">
+ <div lang="sv" class="section" title="Anteckningar f&ouml;r Licens och Release">
<div class="titlepage">
<div>
<div>
diff --git a/sv/ask_mntpoint_s.html b/sv/ask_mntpoint_s.html
index bda1a9b..3782f3c 100644
--- a/sv/ask_mntpoint_s.html
+++ b/sv/ask_mntpoint_s.html
@@ -4,8 +4,8 @@
<title>V&auml;lj monteringspunkterna</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
- <link rel="home" href="index.html" title="Installation with DrakX">
- <link rel="up" href="index.html" title="Installation with DrakX">
+ <link rel="home" href="index.html" title="Installation med DrakX">
+ <link rel="up" href="index.html" title="Installation med DrakX">
<link rel="prev" href="takeOverHdChoose.html" title="V&auml;lj h&aring;rddisk att radera f&ouml;r Mageia">
<link rel="next" href="diskdrake.html" title="Anpassad diskpartionering med DiskDrake"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
<!--
@@ -13,7 +13,7 @@
table { font-family: sans-serif; font-size: 13px }
--></style></head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
- <div lang="" class="section" title="V&auml;lj monteringspunkterna">
+ <div lang="sv" class="section" title="V&auml;lj monteringspunkterna">
<div class="titlepage">
<div>
<div>
@@ -49,10 +49,10 @@
</p>
- <div class="note" title="Note" style="margin-left: 0.5in; margin-right: 0.5in;">
+ <div class="note" title="Notera" style="margin-left: 0.5in; margin-right: 0.5in;">
<table border="0" summary="Note">
<tr>
- <td rowspan="2" align="center" valign="top" width="25"><img alt="[Note]" src="note.png"></td>
+ <td rowspan="2" align="center" valign="top" width="25"><img alt="[Notera]" src="note.png"></td>
<th align="left"></th>
</tr>
<tr>
@@ -107,10 +107,10 @@
</div>
- <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
+ <div class="warning" title="Varning" style="margin-left: 0.5in; margin-right: 0.5in;">
<table border="0" summary="Warning">
<tr>
- <td rowspan="2" align="center" valign="top" width="25"><img alt="[Warning]" src="warning.png"></td>
+ <td rowspan="2" align="center" valign="top" width="25"><img alt="[Varning]" src="warning.png"></td>
<th align="left"></th>
</tr>
<tr>
diff --git a/sv/chooseDesktop.html b/sv/chooseDesktop.html
new file mode 100644
index 0000000..5e90572
--- /dev/null
+++ b/sv/chooseDesktop.html
@@ -0,0 +1,60 @@
+<html>
+ <head>
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+
+ <title>Val av skrivbordsmilj&ouml;</title>
+ <meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
+ <link rel="home" href="index.html" title="Installation med DrakX">
+ <link rel="up" href="index.html" title="Installation med DrakX">
+ <link rel="prev" href="diskdrake.html" title="Anpassad diskpartionering med DiskDrake">
+ <link rel="next" href="configureX_chooser.html" title="St&auml;lla in X, grafikkort och konfiguration av monitor"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
+ <!--
+ body { font-family: sans-serif; font-size: 13px }
+ table { font-family: sans-serif; font-size: 13px }
+ --></style></head>
+ <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
+ <div lang="sv" class="section" title="Val av skrivbordsmilj&ouml;">
+ <div class="titlepage">
+ <div>
+ <div>
+ <h2 class="title"><a name="chooseDesktop"></a>Val av skrivbordsmilj&ouml;
+ </h2>
+ </div>
+ </div>
+ </div>
+
+
+
+
+
+
+
+
+
+
+ <p>Beroende p&aring; dina val h&auml;r, s&aring; kan det finnas flera f&ouml;nster f&ouml;r att
+ finjustera ditt val.
+ </p>
+
+
+ <p>Efter dom olika valen kommer du att se ett bildspel under paket
+ installationen. Bildspelet f&aring;r du fram genom att klicka p&aring;
+ <span class="guilabel">Detaljer</span> knappen
+ </p>
+
+
+
+
+ <p>V&auml;lj antingen <span class="application">KDE</span> eller
+ <span class="application">Gnome</span> skrivbordsmilj&ouml; beroenda av vad du tycker
+ om. B&auml;gge kommer med anv&auml;ndbara verktyg och applikationer. Bocka f&ouml;r
+ <span class="guilabel">Custom</span> om du inte vill anv&auml;nda n&aring;gon av dessa eller
+ b&aring;da, eller om du vill annat &auml;n dessa standard programmen f&ouml;r dessa
+ skrivbordsmilj&ouml;erna. <span class="application">LXDE</span> skrivbordsmilj&ouml; &auml;r
+ l&auml;ttare &auml;n dom tv&aring; tidigare, Med mindre &ouml;gongodis och f&auml;rre programpaket
+ installerade som standard.
+ </p>
+
+ </div>
+ </body>
+</html>
diff --git a/sv/configureServices.html b/sv/configureServices.html
index eaffae5..76ddaf1 100644
--- a/sv/configureServices.html
+++ b/sv/configureServices.html
@@ -4,16 +4,16 @@
<title>Konfigurera dina tj&auml;nster</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
- <link rel="home" href="index.html" title="Installation with DrakX">
- <link rel="up" href="index.html" title="Installation with DrakX">
- <link rel="prev" href="selectCountry.html" title="V&auml;lj ditt Land / Region">
+ <link rel="home" href="index.html" title="Installation med DrakX">
+ <link rel="up" href="index.html" title="Installation med DrakX">
+ <link rel="prev" href="selectCountry.html" title="V&auml;lj ditt land / region">
<link rel="next" href="securityLevel.html" title="S&auml;kerhetsniv&aring;"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
<!--
body { font-family: sans-serif; font-size: 13px }
table { font-family: sans-serif; font-size: 13px }
--></style></head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
- <div lang="" class="section" title="Konfigurera dina tj&auml;nster">
+ <div lang="sv" class="section" title="Konfigurera dina tj&auml;nster">
<div class="titlepage">
<div>
<div>
diff --git a/sv/configureTimezoneUTC.html b/sv/configureTimezoneUTC.html
index db84c79..23ccfb7 100644
--- a/sv/configureTimezoneUTC.html
+++ b/sv/configureTimezoneUTC.html
@@ -4,16 +4,16 @@
<title>St&auml;ll in din tidszon</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
- <link rel="home" href="index.html" title="Installation with DrakX">
- <link rel="up" href="index.html" title="Installation with DrakX">
+ <link rel="home" href="index.html" title="Installation med DrakX">
+ <link rel="up" href="index.html" title="Installation med DrakX">
<link rel="prev" href="misc-params.html" title="Sammanfattning av diverse parametrar">
- <link rel="next" href="selectCountry.html" title="V&auml;lj ditt Land / Region"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
+ <link rel="next" href="selectCountry.html" title="V&auml;lj ditt land / region"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
<!--
body { font-family: sans-serif; font-size: 13px }
table { font-family: sans-serif; font-size: 13px }
--></style></head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
- <div lang="" class="section" title="St&auml;ll in din tidszon">
+ <div lang="sv" class="section" title="St&auml;ll in din tidszon">
<div class="titlepage">
<div>
<div>
@@ -45,10 +45,10 @@
</p>
- <div class="note" title="Note" style="margin-left: 0.5in; margin-right: 0.5in;">
+ <div class="note" title="Notera" style="margin-left: 0.5in; margin-right: 0.5in;">
<table border="0" summary="Note">
<tr>
- <td rowspan="2" align="center" valign="top" width="25"><img alt="[Note]" src="note.png"></td>
+ <td rowspan="2" align="center" valign="top" width="25"><img alt="[Notera]" src="note.png"></td>
<th align="left"></th>
</tr>
<tr>
diff --git a/sv/configureX_card_list.html b/sv/configureX_card_list.html
new file mode 100644
index 0000000..8660c2f
--- /dev/null
+++ b/sv/configureX_card_list.html
@@ -0,0 +1,98 @@
+<html>
+ <head>
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+
+ <title>V&auml;lj en X-server (Konfigurera ditt grafikkort)</title>
+ <meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
+ <link rel="home" href="index.html" title="Installation med DrakX">
+ <link rel="up" href="index.html" title="Installation med DrakX">
+ <link rel="prev" href="configureX_chooser.html" title="St&auml;lla in X, grafikkort och konfiguration av monitor">
+ <link rel="next" href="setupBootloader.html" title="Bootloader main options"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
+ <!--
+ body { font-family: sans-serif; font-size: 13px }
+ table { font-family: sans-serif; font-size: 13px }
+ --></style></head>
+ <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
+ <div lang="sv" class="section" title="V&auml;lj en X-server (Konfigurera ditt grafikkort)">
+ <div class="titlepage">
+ <div>
+ <div>
+ <h2 class="title"><a name="configureX_card_list"></a>V&auml;lj en X-server (Konfigurera
+ ditt grafikkort)
+ </h2>
+ </div>
+ </div>
+ </div>
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <p>DrakX har en v&auml;ldigt omfattande databas av grafikkort och kommer
+ oftast att identifiera ditt nuvarande grafikkort r&auml;tt.
+ </p>
+
+
+ <p>Om installationen inte har korrekt uppt&auml;ckt ditt grafikkort och du vet
+ vilket du har s&aring; kan du v&auml;lja det fr&aring;n tr&auml;det genom:
+ </p>
+ <div class="itemizedlist">
+ <ul class="itemizedlist">
+ <li class="listitem">
+
+ <p>tillverkare</p>
+
+ </li>
+ <li class="listitem">
+
+ <p>sedan namnet p&aring; ditt kort</p>
+
+ </li>
+ <li class="listitem">
+
+ <p>och korttyp</p>
+
+ </li>
+ </ul>
+ </div>
+
+
+ <p>Om du inte kan hitta ditt kort i listan &ouml;ver tillverkare (f&ouml;r att det
+ &auml;nnu inte finns i databasen eller att det &auml;r ett &auml;ldre kort) s&aring; kan du hitta
+ en passande drivrutin i Xorg-kategorin
+ </p>
+
+
+ <p>Xorg-listan erbjuder mer &auml;n 40 vanliga och grafikkortsdrivrutiner med
+ &ouml;ppen k&auml;llkod. Om du fortfarande inte kan hitta en namngiven drivrutin f&ouml;r
+ ditt kort s&aring; finns det valet att anv&auml;nda vesa-drivrutinen som
+ tillhandah&aring;ller grundl&auml;ggande kapaciteter.
+ </p>
+
+
+ <p>Var medveten om att om du v&auml;ljer en drivrutin som inte passar s&aring; kan
+ du enbart ha tillg&aring;ng till kommandorad-gr&auml;nssnittet.
+ </p>
+
+
+ <p>En del grafikkortstillverkare tillhandah&aring;ller drivrutiner f&ouml;r Linux
+ vilket enbart finns tillg&auml;ngligt i Non-Free eller Tainted-medierna och i
+ vissa fall enbart fr&aring;n kortets tillverkares hemsida.
+ </p>
+
+
+ <p>Non-free och Tainted-medierna beh&ouml;ver vara aktiverade f&ouml;r att f&aring;
+ tillg&aring;ng till dem, du borde g&ouml;ra detta efter din f&ouml;rsta omstart.
+ </p>
+
+ </div>
+ </body>
+</html>
diff --git a/sv/configureX_chooser.html b/sv/configureX_chooser.html
index 5fdd3d6..74cd3a8 100644
--- a/sv/configureX_chooser.html
+++ b/sv/configureX_chooser.html
@@ -4,10 +4,10 @@
<title>St&auml;lla in X, grafikkort och konfiguration av monitor</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
- <link rel="home" href="index.html" title="Installation with DrakX">
- <link rel="up" href="index.html" title="Installation with DrakX">
- <link rel="prev" href="diskdrake.html" title="Anpassad diskpartionering med DiskDrake">
- <link rel="next" href="setupBootloader.html" title="Bootloader main options"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
+ <link rel="home" href="index.html" title="Installation med DrakX">
+ <link rel="up" href="index.html" title="Installation med DrakX">
+ <link rel="prev" href="chooseDesktop.html" title="Val av skrivbordsmilj&ouml;">
+ <link rel="next" href="configureX_card_list.html" title="V&auml;lj en X-server (Konfigurera ditt grafikkort)"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
<!--
body { font-family: sans-serif; font-size: 13px }
table { font-family: sans-serif; font-size: 13px }
diff --git a/sv/diskdrake.html b/sv/diskdrake.html
index d1c154f..167c171 100644
--- a/sv/diskdrake.html
+++ b/sv/diskdrake.html
@@ -4,16 +4,16 @@
<title>Anpassad diskpartionering med DiskDrake</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
- <link rel="home" href="index.html" title="Installation with DrakX">
- <link rel="up" href="index.html" title="Installation with DrakX">
+ <link rel="home" href="index.html" title="Installation med DrakX">
+ <link rel="up" href="index.html" title="Installation med DrakX">
<link rel="prev" href="ask_mntpoint_s.html" title="V&auml;lj monteringspunkterna">
- <link rel="next" href="configureX_chooser.html" title="St&auml;lla in X, grafikkort och konfiguration av monitor"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
+ <link rel="next" href="chooseDesktop.html" title="Val av skrivbordsmilj&ouml;"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
<!--
body { font-family: sans-serif; font-size: 13px }
table { font-family: sans-serif; font-size: 13px }
--></style></head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
- <div lang="" class="section" title="Anpassad diskpartionering med DiskDrake">
+ <div lang="sv" class="section" title="Anpassad diskpartionering med DiskDrake">
<div class="titlepage">
<div>
<div>
@@ -42,10 +42,10 @@
- <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
+ <div class="warning" title="Varning" style="margin-left: 0.5in; margin-right: 0.5in;">
<table border="0" summary="Warning">
<tr>
- <td rowspan="2" align="center" valign="top" width="25"><img alt="[Warning]" src="warning.png"></td>
+ <td rowspan="2" align="center" valign="top" width="25"><img alt="[Varning]" src="warning.png"></td>
<th align="left"></th>
</tr>
<tr>
diff --git a/sv/exitInstall.html b/sv/exitInstall.html
new file mode 100644
index 0000000..9ce3d9a
--- /dev/null
+++ b/sv/exitInstall.html
@@ -0,0 +1,65 @@
+<html>
+ <head>
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+
+ <title>Grattis</title>
+ <meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
+ <link rel="home" href="index.html" title="Installation med DrakX">
+ <link rel="up" href="index.html" title="Installation med DrakX">
+ <link rel="prev" href="installUpdates.html" title="Uppdateringar"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
+ <!--
+ body { font-family: sans-serif; font-size: 13px }
+ table { font-family: sans-serif; font-size: 13px }
+ --></style></head>
+ <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
+ <div lang="sv" class="section" title="Grattis">
+ <div class="titlepage">
+ <div>
+ <div>
+ <h2 class="title"><a name="exitInstall"></a>Grattis
+ </h2>
+ </div>
+ </div>
+ </div>
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <p><a name="exitInstall-pa1"></a>Du har installerat f&auml;rdigt och
+ konfigurerat <span class="application">Mageia</span> och det &auml;r nu s&auml;kert att ta
+ bort installationsmediet och att starta om din dator.
+ </p>
+
+
+ <p><a name="exitInstall-pa2"></a>Efter omstarten i
+ uppstartshanterarens ruta s&aring; kan du v&auml;lja mellan operativsystemen i din
+ dator (om du har fler &auml;n ett).
+ </p>
+
+
+ <p><a name="exitInstall-pa3"></a>Om du inte justerade
+ inst&auml;llningarna f&ouml;r uppstartshanteraren s&aring; kommer din Mageia-installation
+ automatiskt bli vald och startad.
+ </p>
+
+
+ <p><a name="exitInstall-pa4"></a>Njut!
+ </p>
+
+
+ <p><a name="exitInstall-pa5"></a>Bes&ouml;k www.mageia.org om du har
+ n&aring;gra fr&aring;gor eller om du vill bidra till Mageia
+ </p>
+
+ </div>
+ </body>
+</html>
diff --git a/sv/index.html b/sv/index.html
index f28911d..8be2346 100644
--- a/sv/index.html
+++ b/sv/index.html
@@ -2,22 +2,26 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
- <title>Installation with DrakX</title>
+ <title>Installation med DrakX</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
- <link rel="home" href="index.html" title="Installation with DrakX">
+ <link rel="home" href="index.html" title="Installation med DrakX">
<link rel="next" href="selectLanguage.html" title="Var v&auml;nlig v&auml;lj spr&aring;k att anv&auml;nda"><style xmlns="http://www.w3.org/TR/xhtml1/transitional" type="text/css">
<!--
body { font-family: sans-serif; font-size: 13px }
table { font-family: sans-serif; font-size: 13px }
--></style></head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
- <div lang="sv" class="article" title="Installation with DrakX">
+ <div lang="sv" class="article" title="Installation med DrakX">
<div class="titlepage">
<div>
<div>
- <h2 class="title"><a name="Quick-Startup"></a>Installation with DrakX
+ <h2 class="title"><a name="Quick-Startup"></a>Installation med DrakX
</h2>
</div>
+ <div>
+ <div class="othercredit">
+ <h3 class="othercredit"> </h3><code class="email">&lt;<a class="email" href="mailto:i18n@mageia.eu">i18n@mageia.eu</a>&gt;</code></div>
+ </div>
</div>
<hr>
</div>
@@ -40,13 +44,15 @@
<dt><span class="section"><a href="ask_mntpoint_s.html">V&auml;lj monteringspunkterna</a></span></dt>
<dt><span class="section"><a href="diskdrake.html">Anpassad diskpartionering med
DiskDrake</a></span></dt>
+ <dt><span class="section"><a href="chooseDesktop.html">Val av skrivbordsmilj&ouml;</a></span></dt>
<dt><span class="section"><a href="configureX_chooser.html">St&auml;lla in X, grafikkort och konfiguration av
monitor</a></span></dt>
- <dt><span class="section"><a href="setupBootloader.html">Bootloader main
- options</a></span></dt>
+ <dt><span class="section"><a href="configureX_card_list.html">V&auml;lj en X-server (Konfigurera
+ ditt grafikkort)</a></span></dt>
+ <dt><span class="section"><a href="setupBootloader.html">Bootloader main options</a></span></dt>
<dd>
<dl>
- <dt><span class="section"><a href="setupBootloader.html#usingMageiaBootloader">Using the Mageia
+ <dt><span class="section"><a href="setupBootloader.html#usingMageiaBootloader">Using a Mageia
bootloader</a></span></dt>
<dt><span class="section"><a href="setupBootloader.html#usingExistingBootloader">Using an
existing bootloader</a></span></dt>
@@ -54,16 +60,6 @@
advanced option</a></span></dt>
</dl>
</dd>
- <dt><span class="section"><a href="setupBootloaderExpert.html">Anv&auml;ndning av startladdare som
- expert</a></span></dt>
- <dd>
- <dl>
- <dt><span class="section"><a href="setupBootloaderExpert.html#addingGRUB2system">L&auml;gga till ett GRUB2-baserat
- system manuellt</a></span></dt>
- <dt><span class="section"><a href="setupBootloaderExpert.html#usingExistingBootloaderGRUB2">Anv&auml;nda en
- existerande startladdare f&ouml;r GRUB2</a></span></dt>
- </dl>
- </dd>
<dt><span class="section"><a href="misc-params.html">Sammanfattning av diverse parametrar</a></span></dt>
<dd>
<dl>
@@ -76,23 +72,28 @@
</dd>
<dt><span class="section"><a href="configureTimezoneUTC.html">St&auml;ll in din
tidszon</a></span></dt>
- <dt><span class="section"><a href="selectCountry.html">V&auml;lj ditt Land /
- Region</a></span></dt>
+ <dt><span class="section"><a href="selectCountry.html">V&auml;lj ditt land / region</a></span></dt>
<dd>
<dl>
- <dt><span class="section"><a href="selectCountry.html#inputMethod">Input method</a></span></dt>
+ <dt><span class="section"><a href="selectCountry.html#inputMethod">Inmatningsmetod</a></span></dt>
</dl>
</dd>
<dt><span class="section"><a href="configureServices.html">Konfigurera dina
tj&auml;nster</a></span></dt>
<dt><span class="section"><a href="securityLevel.html">S&auml;kerhetsniv&aring;</a></span></dt>
<dt><span class="section"><a href="installUpdates.html">Uppdateringar</a></span></dt>
+ <dt><span class="section"><a href="exitInstall.html">Grattis</a></span></dt>
</dl>
</div>
-
+
+
+
+
+
+
@@ -115,17 +116,20 @@
-
+
+
+
+
@@ -141,7 +145,9 @@
-
+
+
+
</div>
</body>
diff --git a/sv/installUpdates.html b/sv/installUpdates.html