summaryrefslogtreecommitdiff
path: root/po/ko/preseed.po
diff options
context:
space:
mode:
Diffstat (limited to 'po/ko/preseed.po')
-rw-r--r--po/ko/preseed.po149
1 files changed, 53 insertions, 96 deletions
diff --git a/po/ko/preseed.po b/po/ko/preseed.po
index abdfdb380..e57bd5b6b 100644
--- a/po/ko/preseed.po
+++ b/po/ko/preseed.po
@@ -12,8 +12,8 @@ msgid ""
msgstr ""
"Project-Id-Version: preseed.xml\n"
"Report-Msgid-Bugs-To: debian-boot@lists.debian.org\n"
-"POT-Creation-Date: 2019-06-22 16:23+0000\n"
-"PO-Revision-Date: 2019-06-13 01:44+0900\n"
+"POT-Creation-Date: 2019-08-16 23:12+0000\n"
+"PO-Revision-Date: 2019-08-09 18:15+0900\n"
"Last-Translator: Changwoo Ryu <cwryu@debian.org>\n"
"Language-Team: Korean <debian-i10n-korean@lists.debian.org>\n"
"Language: ko\n"
@@ -1149,13 +1149,15 @@ msgstr ""
#, no-c-format
msgid ""
"Note that the above example limits this filename to DHCP clients that "
-"identify themselves as \"d-i\", so it will not affect regular DHCP clients, "
-"but only the installer. You can also put the text in a stanza for only one "
-"particular host to avoid preseeding all installs on your network."
-msgstr ""
-"위의 예에서 자신을 \"d-i\"라고 주장하는 DHCP 클라이언트에만 이 파일 이름을 전"
-"달하므로 일반 DHCP 클라이언트에는 아무런 영향이 없습니다. 특정 호스트에 대해"
-"서만 설정하면 네트워크의 모든 시스템을 미리 설정하지 않게 만들 수 있습니다."
+"identify themselves as <quote>d-i</quote>, so it will not affect regular "
+"DHCP clients, but only the installer. You can also put the text in a stanza "
+"for only one particular host to avoid preseeding all installs on your "
+"network."
+msgstr ""
+"위의 예에서 자신을 <quote>d-i</quote>라고 주장하는 DHCP 클라이언트에만 이 파"
+"일 이름을 전달하므로 일반 DHCP 클라이언트에는 아무런 영향이 없습니다. 특정 호"
+"스트에 대해서만 설정하면 네트워크의 모든 시스템을 미리 설정하지 않게 만들 수 "
+"있습니다."
#. Tag: para
#: preseed.xml:582
@@ -2092,91 +2094,7 @@ msgstr "파티션 예제"
# 주의: 메시지 번역과 통일
#. Tag: screen
#: preseed.xml:971
-#, fuzzy, 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 may specify a disk to partition. If the system has "
-#| "only\n"
-#| "# one disk the installer will default to using that, but otherwise the "
-#| "device\n"
-#| "# name must be given in traditional, non-devfs format (so e.g. /dev/sda\n"
-#| "# and not e.g. /dev/discs/disc0/disc).\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:\n"
-#| "# - regular: use the usual partition types for your architecture\n"
-#| "# - lvm: use LVM to partition the disk\n"
-#| "# - crypto: use LVM within an encrypted partition\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"
-#| "d-i partman-lvm/confirm_nooverwrite 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, /var, and /tmp partitions\n"
-#| "d-i partman-auto/choose_recipe select atomic\n"
-#| "\n"
-#| "# Or provide a recipe of your own...\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"
-#| "# The full recipe format is documented in the file partman-auto-recipe."
-#| "txt\n"
-#| "# included in the 'debian-installer' package or available from D-I "
-#| "source\n"
-#| "# repository. This also documents how to specify settings such as file\n"
-#| "# system labels, volume group names and which physical devices to "
-#| "include\n"
-#| "# in a volume group.\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\n"
-#| "d-i partman/confirm_nooverwrite boolean true\n"
-#| "\n"
-#| "# When disk encryption is enabled, skip wiping the partitions "
-#| "beforehand.\n"
-#| "#d-i partman-auto-crypto/erase_disks boolean false"
+#, 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"
@@ -2280,6 +2198,11 @@ msgstr ""
"# - crypto: 암호화한 파티션에 LVM을 사용\n"
"d-i partman-auto/method string lvm\n"
"\n"
+"# LVM 볼륨 그룹에 사용할 용량을 직접 지정할 수 있습니다. 그 크기를 단위와\n"
+"# 함께 지정하거나 (예: 20 GB), 빈 공간의 퍼센트값을 지정하거나, 또는 'max'\n"
+"# 키워드로 빈 공간 전체를 지정할 수 있습니다.\n"
+"d-i partman-auto-lvm/guided_size string max\n"
+"\n"
"# 자동으로 파티션할 디스크 중에 과거 LVM 설정이 남아 있을 경우, 경고 메시지"
"를\n"
"# 받게 됩니다. 이 경고를 미리 설정으로 무시할 수 있습니다...\n"
@@ -2605,7 +2528,37 @@ msgstr ""
#. Tag: screen
#: preseed.xml:1059
-#, no-c-format
+#, fuzzy, no-c-format
+#| msgid ""
+#| "# You can choose to install non-free and contrib software.\n"
+#| "#d-i apt-setup/non-free boolean true\n"
+#| "#d-i apt-setup/contrib boolean true\n"
+#| "# Uncomment this if you don't want to use a network mirror.\n"
+#| "#d-i apt-setup/use_mirror boolean false\n"
+#| "# Select which update services to use; define the mirrors to be used.\n"
+#| "# Values shown below are the normal defaults.\n"
+#| "#d-i apt-setup/services-select multiselect security, updates\n"
+#| "#d-i apt-setup/security_host string security.debian.org\n"
+#| "\n"
+#| "# Additional repositories, local[0-9] available\n"
+#| "#d-i apt-setup/local0/repository string \\\n"
+#| "# http://local.server/debian stable main\n"
+#| "#d-i apt-setup/local0/comment string local server\n"
+#| "# Enable deb-src lines\n"
+#| "#d-i apt-setup/local0/source boolean true\n"
+#| "# URL to the public key of the local repository; you must provide a key "
+#| "or\n"
+#| "# apt will complain about the unauthenticated repository and so the\n"
+#| "# sources.list line will be left commented out\n"
+#| "#d-i apt-setup/local0/key string http://local.server/key\n"
+#| "\n"
+#| "# By default the installer requires that repositories be authenticated\n"
+#| "# using a known gpg key. This setting can be used to disable that\n"
+#| "# authentication. Warning: Insecure, not recommended.\n"
+#| "#d-i debian-installer/allow_unauthenticated boolean true\n"
+#| "\n"
+#| "# Uncomment this to add multiarch configuration for i386\n"
+#| "#d-i apt-setup/multiarch string i386"
msgid ""
"# You can choose to install non-free and contrib software.\n"
"#d-i apt-setup/non-free boolean true\n"
@@ -2625,8 +2578,12 @@ msgid ""
"#d-i apt-setup/local0/source boolean true\n"
"# URL to the public key of the local repository; you must provide a key or\n"
"# apt will complain about the unauthenticated repository and so the\n"
-"# sources.list line will be left commented out\n"
+"# sources.list line will be left commented out.\n"
"#d-i apt-setup/local0/key string http://local.server/key\n"
+"# If the provided key file ends in \".asc\" the key file needs to be an\n"
+"# ASCII-armoured PGP key, if it ends in \".gpg\" it needs to use the\n"
+"# \"GPG key public keyring\" format, the \"keybox database\" format is\n"
+"# currently not supported.\n"
"\n"
"# By default the installer requires that repositories be authenticated\n"
"# using a known gpg key. This setting can be used to disable that\n"