summaryrefslogtreecommitdiff
path: root/po/fi/preseed.po
diff options
context:
space:
mode:
Diffstat (limited to 'po/fi/preseed.po')
-rw-r--r--po/fi/preseed.po215
1 files changed, 8 insertions, 207 deletions
diff --git a/po/fi/preseed.po b/po/fi/preseed.po
index ef7986b97..312da8164 100644
--- a/po/fi/preseed.po
+++ b/po/fi/preseed.po
@@ -1636,14 +1636,6 @@ msgstr ""
#. Tag: para
#: preseed.xml:817
#, no-c-format
-#| msgid ""
-#| "The parameter <classname>mirror/udeb/suite</classname> determines the "
-#| "suite for additional components for the installer. It is only useful to "
-#| "set this if components are actually downloaded over the network and "
-#| "should match the suite that was used to build the initrd for the "
-#| "installation method used for the installation. By default the value for "
-#| "<classname>mirror/udeb/suite</classname> is the same as <classname>mirror/"
-#| "suite</classname>."
msgid ""
"The parameter <classname>mirror/udeb/suite</classname> determines the suite "
"for additional components for the installer. It is only useful to set this "
@@ -1651,7 +1643,12 @@ msgid ""
"suite that was used to build the initrd for the installation method used for "
"the installation. Normally the installer will automatically use the correct "
"value and there should be no need to set this."
-msgstr "Parametri <classname>mirror/udeb/suite</classname> kertoo mistä julkaisusta asentimen lisäosat noudetaan. Tästä parametrista on hyötyä vain jos osat tosiaan noudetaan verkosta ja sen on vastattava käytetyn asennustavan initrd:n tekemisessä käytettyä julkaisua. Normaalisti asennin käyttää automaattisesti oikeata arvoa eikä pitäisi olla tarvetta asettaa tätä."
+msgstr ""
+"Parametri <classname>mirror/udeb/suite</classname> kertoo mistä julkaisusta "
+"asentimen lisäosat noudetaan. Tästä parametrista on hyötyä vain jos osat "
+"tosiaan noudetaan verkosta ja sen on vastattava käytetyn asennustavan initrd:"
+"n tekemisessä käytettyä julkaisua. Normaalisti asennin käyttää "
+"automaattisesti oikeata arvoa eikä pitäisi olla tarvetta asettaa tätä."
#. Tag: screen
#: preseed.xml:828
@@ -1723,14 +1720,6 @@ msgstr "Osiointi"
#. Tag: para
#: preseed.xml:841
#, no-c-format
-#| msgid ""
-#| "Using preseeding to partition the harddisk is very much limited to what "
-#| "is supported by <classname>partman-auto</classname>. You can choose to "
-#| "partition either existing free space on a disk or a whole disk. The "
-#| "layout of the disk can be determined by using a predefined recipe, a "
-#| "custom recipe from a recipe file or a recipe included in the "
-#| "preconfiguration file. It is currently not possible to partition multiple "
-#| "disks using preseeding."
msgid ""
"Using preseeding to partition the harddisk is limited to what is supported "
"by <classname>partman-auto</classname>. You can choose to partition either "
@@ -1782,80 +1771,12 @@ msgstr ""
#. Tag: title
#: preseed.xml:878
#, no-c-format
-#| msgid "Partitioning"
msgid "Partitioning example"
msgstr "Esimerkki osioinnista"
#. Tag: screen
#: preseed.xml:880
#, no-c-format
-#| msgid ""
-#| "# If the system has free space you can choose to only partition that "
-#| "space.\n"
-#| "# This is only honoured if partman-auto/method (below) is not set.\n"
-#| "#d-i partman-auto/init_automatically_partition select biggest_free\n"
-#| "\n"
-#| "# Alternatively, you can specify a disk to partition. The device name "
-#| "must\n"
-#| "# be given in traditional non-devfs format.\n"
-#| "# Note: A disk must be specified, unless the system has only one disk.\n"
-#| "# For example, to use the first SCSI/SATA hard disk:\n"
-#| "#d-i partman-auto/disk string /dev/sda\n"
-#| "# In addition, you'll need to specify the method to use.\n"
-#| "# The presently available methods are: \"regular\", \"lvm\" and \"crypto"
-#| "\"\n"
-#| "d-i partman-auto/method string lvm\n"
-#| "\n"
-#| "# If one of the disks that are going to be automatically partitioned\n"
-#| "# contains an old LVM configuration, the user will normally receive a\n"
-#| "# warning. This can be preseeded away...\n"
-#| "d-i partman-lvm/device_remove_lvm boolean true\n"
-#| "# The same applies to pre-existing software RAID array:\n"
-#| "d-i partman-md/device_remove_md boolean true\n"
-#| "# And the same goes for the confirmation to write the lvm partitions.\n"
-#| "d-i partman-lvm/confirm boolean true\n"
-#| "\n"
-#| "# You can choose one of the three predefined partitioning recipes:\n"
-#| "# - atomic: all files in one partition\n"
-#| "# - home: separate /home partition\n"
-#| "# - multi: separate /home, /usr, /var, and /tmp partitions\n"
-#| "d-i partman-auto/choose_recipe select atomic\n"
-#| "\n"
-#| "# Or provide a recipe of your own...\n"
-#| "# The recipe format is documented in the file devel/partman-auto-recipe."
-#| "txt.\n"
-#| "# If you have a way to get a recipe file into the d-i environment, you "
-#| "can\n"
-#| "# just point at it.\n"
-#| "#d-i partman-auto/expert_recipe_file string /hd-media/recipe\n"
-#| "\n"
-#| "# If not, you can put an entire recipe into the preconfiguration file in "
-#| "one\n"
-#| "# (logical) line. This example creates a small /boot partition, suitable\n"
-#| "# swap, and uses the rest of the space for the root partition:\n"
-#| "#d-i partman-auto/expert_recipe string \\\n"
-#| "# boot-root :: \\\n"
-#| "# 40 50 100 ext3 \\\n"
-#| "# $primary{ } $bootable{ } \\\n"
-#| "# method{ format } format{ } \\\n"
-#| "# use_filesystem{ } filesystem{ ext3 } \\\n"
-#| "# mountpoint{ /boot } \\\n"
-#| "# . \\\n"
-#| "# 500 10000 1000000000 ext3 \\\n"
-#| "# method{ format } format{ } \\\n"
-#| "# use_filesystem{ } filesystem{ ext3 } \\\n"
-#| "# mountpoint{ / } \\\n"
-#| "# . \\\n"
-#| "# 64 512 300% linux-swap \\\n"
-#| "# method{ swap } format{ } \\\n"
-#| "# .\n"
-#| "\n"
-#| "# This makes partman automatically partition without confirmation, "
-#| "provided\n"
-#| "# that you told it what to do using one of the methods above.\n"
-#| "d-i partman-partitioning/confirm_write_new_label boolean true\n"
-#| "d-i partman/choose_partition select finish\n"
-#| "d-i partman/confirm boolean true"
msgid ""
"# If the system has free space you can choose to only partition that space.\n"
"# This is only honoured if partman-auto/method (below) is not set.\n"
@@ -2042,55 +1963,6 @@ msgstr ""
#. Tag: screen
#: preseed.xml:905
#, no-c-format
-#| msgid ""
-#| "# NOTE: this option is of beta release quality and should be used "
-#| "carefully\n"
-#| "\n"
-#| "# The method should be set to \"raid\".\n"
-#| "#d-i partman-auto/method string raid\n"
-#| "# Specify the disks to be partitioned. They will all get the same "
-#| "layout,\n"
-#| "# so this will only work if the disks are the same size.\n"
-#| "#d-i partman-auto/disk string /dev/sda /dev/sdb\n"
-#| "\n"
-#| "# Next you need to specify the physical partitions that will be used. \n"
-#| "#d-i partman-auto/expert_recipe string \\\n"
-#| "# multiraid :: \\\n"
-#| "# 1000 5000 4000 raid \\\n"
-#| "# $primary{ } method{ raid } \\\n"
-#| "# . \\\n"
-#| "# 64 512 300% raid \\\n"
-#| "# method{ raid } \\\n"
-#| "# . \\\n"
-#| "# 500 10000 1000000000 raid \\\n"
-#| "# method{ raid } \\\n"
-#| "# .\n"
-#| "\n"
-#| "# Last you need to specify how the previously defined partitions will be\n"
-#| "# used in the RAID setup. Remember to use the correct partition numbers\n"
-#| "# for logical partitions.\n"
-#| "# Parameters are:\n"
-#| "# &lt;raidtype&gt; &lt;devcount&gt; &lt;sparecount&gt; &lt;fstype&gt; &lt;"
-#| "mountpoint&gt; \\\n"
-#| "# &lt;devices&gt; &lt;sparedevices&gt;\n"
-#| "# RAID levels 0, 1, 5, 6 and 10 are supported; devices are separated "
-#| "using \"#\"\n"
-#| "#d-i partman-auto-raid/recipe string \\\n"
-#| "# 1 2 0 ext3 / \\\n"
-#| "# /dev/sda1#/dev/sdb1 \\\n"
-#| "# . \\\n"
-#| "# 1 2 0 swap - \\\n"
-#| "# /dev/sda5#/dev/sdb5 \\\n"
-#| "# . \\\n"
-#| "# 0 2 0 ext3 /home \\\n"
-#| "# /dev/sda6#/dev/sdb6 \\\n"
-#| "# .\n"
-#| "\n"
-#| "# This makes partman automatically partition without confirmation.\n"
-#| "d-i partman-md/confirm boolean true\n"
-#| "d-i partman-partitioning/confirm_write_new_label boolean true\n"
-#| "d-i partman/choose_partition select finish\n"
-#| "d-i partman/confirm boolean true"
msgid ""
"# The method should be set to \"raid\".\n"
"#d-i partman-auto/method string raid\n"
@@ -2277,15 +2149,6 @@ msgstr ""
#. Tag: screen
#: preseed.xml:951
#, no-c-format
-#| msgid ""
-#| "# Select the initramfs generator used to generate the initrd for 2.6 "
-#| "kernels.\n"
-#| "#d-i base-installer/kernel/linux/initramfs-generators string yaird\n"
-#| "\n"
-#| "# The kernel image (meta) package to be installed; \"none\" can be used "
-#| "if no\n"
-#| "# kernel is to be installed.\n"
-#| "#d-i base-installer/kernel/image string linux-image-2.6-486"
msgid ""
"# Configure APT to not install recommended packages by default. Use of this\n"
"# option can result in an incomplete system and should only be used by very\n"
@@ -2628,31 +2491,6 @@ msgstr ""
#. Tag: screen
#: preseed.xml:1070
#, no-c-format
-#| msgid ""
-#| "#tasksel tasksel/first multiselect standard, web-server\n"
-#| "# If the desktop task is selected, install the kde and xfce desktops\n"
-#| "# instead of the default gnome desktop.\n"
-#| "#tasksel tasksel/desktop multiselect kde, xfce\n"
-#| "\n"
-#| "# Individual additional packages to install\n"
-#| "#d-i pkgsel/include string openssh-server build-essential\n"
-#| "# By default, packages that are only Recommended by packages installed "
-#| "using\n"
-#| "# pkgsel/include (as opposed to their dependencies) will not be "
-#| "installed.\n"
-#| "# Uncomment this line to install Recommends as well.\n"
-#| "#d-i pkgsel/include/install-recommends boolean true\n"
-#| "# Whether to upgrade packages after debootstrap.\n"
-#| "# Allowed values: none, safe-upgrade, full-upgrade\n"
-#| "#d-i pkgsel/upgrade select none\n"
-#| "\n"
-#| "# Some versions of the installer can report back on what software you "
-#| "have\n"
-#| "# installed, and what software you use. The default is not to report "
-#| "back,\n"
-#| "# but sending reports helps the project determine what software is most\n"
-#| "# popular and include it on CDs.\n"
-#| "#popularity-contest popularity-contest/participate boolean false"
msgid ""
"#tasksel tasksel/first multiselect standard, web-server\n"
"# If the desktop task is selected, install the kde and xfce desktops\n"
@@ -2697,44 +2535,6 @@ msgstr "Käynnistyslataimen asennus"
#. Tag: screen
#: preseed.xml:1077
#, no-c-format
-#| msgid ""
-#| "# Grub is the default boot loader (for x86). If you want lilo installed\n"
-#| "# instead, uncomment this:\n"
-#| "#d-i grub-installer/skip boolean true\n"
-#| "# To also skip installing lilo, and install no bootloader, uncomment "
-#| "this\n"
-#| "# too:\n"
-#| "#d-i lilo-installer/skip boolean true\n"
-#| "\n"
-#| "# This is fairly safe to set, it makes grub install automatically to the "
-#| "MBR\n"
-#| "# if no other operating system is detected on the machine.\n"
-#| "d-i grub-installer/only_debian boolean true\n"
-#| "\n"
-#| "# This one makes grub-installer install to the MBR if it also finds some "
-#| "other\n"
-#| "# OS, which is less safe as it might not be able to boot that other OS.\n"
-#| "d-i grub-installer/with_other_os boolean true\n"
-#| "\n"
-#| "# Alternatively, if you want to install to a location other than the "
-#| "mbr,\n"
-#| "# uncomment and edit these lines:\n"
-#| "#d-i grub-installer/only_debian boolean false\n"
-#| "#d-i grub-installer/with_other_os boolean false\n"
-#| "#d-i grub-installer/bootdev string (hd0,0)\n"
-#| "# To install grub to multiple disks:\n"
-#| "#d-i grub-installer/bootdev string (hd0,0) (hd1,0) (hd2,0)\n"
-#| "\n"
-#| "# Optional password for grub, either in clear text\n"
-#| "#d-i grub-installer/password password r00tme\n"
-#| "#d-i grub-installer/password-again password r00tme\n"
-#| "# or encrypted using an MD5 hash, see grub-md5-crypt(8).\n"
-#| "#d-i grub-installer/password-crypted password [MD5 hash]\n"
-#| "\n"
-#| "# Use the following option to add additional boot parameters for the\n"
-#| "# installed system (if supported by the bootloader installer).\n"
-#| "# Note: options passed to the installer will be added automatically.\n"
-#| "#d-i debian-installer/add-kernel-opts string nousb"
msgid ""
"# Grub is the default boot loader (for x86). If you want lilo installed\n"
"# instead, uncomment this:\n"
@@ -2784,7 +2584,8 @@ msgstr ""
"# ei asenneta, poista myös tästä kommentit:\n"
"#d-i lilo-installer/skip boolean true\n"
"\n"
-"# Muutamaa epätavallista osiointitapaa lukuun ottamatta, GRUB 2 on nyt vakio. \n"
+"# Muutamaa epätavallista osiointitapaa lukuun ottamatta, GRUB 2 on nyt "
+"vakio. \n"
"# Jos vanhaa GRUB:ia jostain tietystä syystä tarvitaan, poistetaan tästä\n"
"# kommenttimerkki:\n"
"#d-i grub-installer/grub2_instead_of_grub_legacy boolean false\n"