diff --git a/archinstall/locales/languages.json b/archinstall/locales/languages.json index 22c9c9ec..de63b28a 100644 --- a/archinstall/locales/languages.json +++ b/archinstall/locales/languages.json @@ -173,7 +173,7 @@ {"abbr": "ur", "lang": "Urdu", "translated_lang": "اردو"}, {"abbr": "uz", "lang": "Uzbek", "translated_lang": "O'zbek"}, {"abbr": "ve", "lang": "Venda"}, - {"abbr": "vi", "lang": "Vietnamese"}, + {"abbr": "vi", "lang": "Vietnamese", "translated_lang": "Tiếng Việt"}, {"abbr": "vo", "lang": "Volapük"}, {"abbr": "wa", "lang": "Walloon"}, {"abbr": "wo", "lang": "Wolof"}, diff --git a/archinstall/locales/vi/LC_MESSAGES/auto_trans.py b/archinstall/locales/vi/LC_MESSAGES/auto_trans.py new file mode 100644 index 00000000..3f998dd5 --- /dev/null +++ b/archinstall/locales/vi/LC_MESSAGES/auto_trans.py @@ -0,0 +1,68 @@ +import polib +from deep_translator import GoogleTranslator, DeeplTranslator +import re +import sys + +# --- CẤU HÌNH --- +SOURCE_FILE = 'base.po' +TARGET_FILE = 'base_translated.po' +API_KEY = None # Thay bằng key của bạn nếu dùng DeepL +TARGET_LANG = 'vi' +MODE = 'google' # Chuyển thành 'deepl' nếu muốn dùng DeepL + +def translate_text(text, mode='google', api_key=None): + if not text.strip(): + return text + + # Bảo vệ placeholders + placeholders = re.findall(r'(\{[^}]*\}|%s|%d)', text) + temp_text = text + for i, ph in enumerate(placeholders): + temp_text = temp_text.replace(ph, f" PH{i} ") + + try: + if mode == 'deepl': + if not api_key: + raise ValueError("DeepL cần API Key!") + # Dùng thư viện deep-translator cho đồng bộ + translated_text = DeeplTranslator(api_key=api_key, source='en', target='vi').translate(temp_text) + else: + # Dùng Google qua deep-translator + translated_text = GoogleTranslator(source='en', target='vi').translate(temp_text) + + # Khôi phục placeholders + for i, ph in enumerate(placeholders): + translated_text = re.sub(f"PH{i}", ph, translated_text, flags=re.IGNORECASE) + + return translated_text.strip() + except Exception as e: + print(f"Lỗi: {e}") + return None + +def main(): + po = polib.pofile(SOURCE_FILE) + untranslated_entries = [entry for entry in po if not entry.msgstr and entry.msgid] + + print(f"Tìm thấy {len(untranslated_entries)} câu chưa dịch. Bắt đầu xử lý...") + + count = 0 + for entry in untranslated_entries: + translated = translate_text(entry.msgid, mode=MODE, api_key=API_KEY) + + if translated: + entry.msgstr = translated + # Đánh dấu fuzzy để mình biết đường mà soát lại + if 'fuzzy' not in entry.flags: + entry.flags.append('fuzzy') + count += 1 + print(f"[{count}] Đã dịch: {entry.msgid[:30]}... -> {translated[:30]}...") + + # Lưu định kỳ để tránh mất dữ liệu nếu lỗi mạng + if count % 10 == 0: + po.save(TARGET_FILE) + + po.save(TARGET_FILE) + print(f"\nHoàn thành! Đã dịch {count} câu. File lưu tại: {TARGET_FILE}") + +if __name__ == "__main__": + main() \ No newline at end of file diff --git a/archinstall/locales/vi/LC_MESSAGES/base.po b/archinstall/locales/vi/LC_MESSAGES/base.po new file mode 100644 index 00000000..8d1a0f4a --- /dev/null +++ b/archinstall/locales/vi/LC_MESSAGES/base.po @@ -0,0 +1,2518 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"POT-Creation-Date: \n" +"PO-Revision-Date: \n" +"Last-Translator: BlackCat \n" +"Language-Team: \n" +"Language: vi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Poedit 3.9\n" + +msgid "[!] A log file has been created here: {} {}" +msgstr "[!] Một tệp nhật ký (log) đã được tạo ở đây: {} {}" + +msgid "" +" Please submit this issue (and file) to https://github.com/archlinux/" +"archinstall/issues" +msgstr "" +" Vui lòng gửi vấn đề này (và tệp tin) đến địa chỉ https://github.com/" +"archlinux/archinstall/issues" + +msgid "Do you really want to abort?" +msgstr "Bạn thật sự có muốn hủy bỏ không?" + +msgid "And one more time for verification: " +msgstr "Xin hãy xác nhận một lần nữa: " + +msgid "Would you like to use swap on zram?" +msgstr "Bạn có muốn sử dụng swap trên zram không?" + +msgid "Desired hostname for the installation: " +msgstr "Tên của máy mà bạn mong muốn trong quá trình cài đặt: " + +msgid "Username for required superuser with sudo privileges: " +msgstr "Tên người dùng cho tài khoản quản trị có quyền sudo:" + +msgid "Any additional users to install (leave blank for no users): " +msgstr "Thêm người dùng khác (để trống nếu không cần): " + +msgid "Should this user be a superuser (sudoer)?" +msgstr "Bạn có muốn người dùng này là quản trị viên (superuser/sudoer) không ?" + +msgid "Select a timezone" +msgstr "Vui lòng chọn múi giờ" + +msgid "Would you like to use GRUB as a bootloader instead of systemd-boot?" +msgstr "" +"Bạn có muốn GRUB là trình khởi động (bootloader) mặc định thay vì systemd-" +"boot không?" + +msgid "Choose a bootloader" +msgstr "Chọn một trình khởi động (bootloader)" + +msgid "Choose an audio server" +msgstr "Chọn hệ thống âm thanh" + +msgid "" +"Only packages such as base, base-devel, linux, linux-firmware, efibootmgr " +"and optional profile packages are installed." +msgstr "" +"Chỉ có base, base-devel, linux, linux-firmware, efibootmgr và các gói cấu " +"hình (profile) tùy chọn sẽ được cài đặt." + +msgid "" +"Note: base-devel is no longer installed by default. Add it here if you need " +"build tools." +msgstr "" +"Note: base-devel không còn được cài đặt mặc định nữa. Thêm nó ở đây nếu bạn " +"cần công cụ biên dịch." + +msgid "" +"If you desire a web browser, such as firefox or chromium, you may specify it " +"in the following prompt." +msgstr "" +"Nếu bạn cần tình duyệt như Firefox hay Chromium, bạn có thể chỉ định chúng ở " +"dòng nhắc dưới đây." + +msgid "" +"Write additional packages to install (space separated, leave blank to skip): " +msgstr "" +"Ghi tất cả gói mà bạn muốn cài đặt (cách nhau bằng dấu cách, bỏ trống để bỏ " +"qua): " + +msgid "Copy ISO network configuration to installation" +msgstr "Sao chép cấu hình mạng của ISO sang thư mục cài đặt" + +msgid "" +"Use NetworkManager (necessary for configuring internet graphically in GNOME " +"and KDE)" +msgstr "" +"Dùng NetworkManager (cần thiết cho cấu hình mạng bằng giao diện đồ họa trên " +"GNOME và KDE)" + +msgid "Select one network interface to configure" +msgstr "Chọn một giao diện mạng để cấu hình" + +msgid "" +"Select which mode to configure for \"{}\" or skip to use default mode \"{}\"" +msgstr "" +"Chọn chế độ nào để cấu hình cho \"{}\" hoặc bỏ qua để dùng cái mặc định \"{}" +"\"" + +#, python-brace-format +msgid "Enter the IP and subnet for {} (example: 192.168.0.5/24): " +msgstr "Nhập địa chỉ IP và subnet cho {} (ví dụ: 192.168.0.5/24): " + +msgid "Enter your gateway (router) IP address or leave blank for none: " +msgstr "Nhập địa chỉ IP gateway (router) của bạn hoặc bỏ trống nếu không có: " + +msgid "Enter your DNS servers (space separated, blank for none): " +msgstr "" +"Nhập máy chủ DNS mà bạn muốn (cách nhau bởi dấu cách, bỏ trống nếu muốn dùng " +"mặc định): " + +msgid "Select which filesystem your main partition should use" +msgstr "Chọn hệ thống tệp nào mà phân vùng chính của bạn nên dùng" + +msgid "Current partition layout" +msgstr "Bố cục phân vùng hiện tại" + +msgid "" +"Select what to do with\n" +"{}" +msgstr "" +"Chọn hành động cho\n" +"{}" + +msgid "Enter a desired filesystem type for the partition" +msgstr "Vui lòng nhập loại hệ thống tập tin mà bạn muốn cho phân vùng" + +msgid "" +"Enter the start location (in parted units: s, GB, %, etc. ; default: {}): " +msgstr "" +"Nhập vị trí bắt đầu của phân vùng (theo đơn vị phân vùng: s, GB, %, v.v.; " +"mặc định: {}):" + +msgid "Enter the end location (in parted units: s, GB, %, etc. ; ex: {}): " +msgstr "" +"Nhập vị trí kết thúc của phân vùng (theo đơn vị phân vùng: s, GB, %, v.v.; " +"mặc định: {}):" + +msgid "{} contains queued partitions, this will remove those, are you sure?" +msgstr "" +"{} chứa các phân vùng trong hàng đợi, hành động này sẽ loại bỏ chúng, bạn có " +"chắc chắn không?" + +msgid "" +"{}\n" +"\n" +"Select by index which partitions to delete" +msgstr "" +"{}\n" +"\n" +"Chọn số thứ tự của phân vùng cần xóa" + +msgid "" +"{}\n" +"\n" +"Select by index which partition to mount where" +msgstr "" +"{}\n" +"\n" +"Chọn số thứ tự phân vùng nàu cần gắn (mount)" + +msgid "" +" * Partition mount-points are relative to inside the installation, the boot " +"would be /boot as an example." +msgstr "" +" * Các điểm gắn phân vùng được tính tương đối với bên trong hệ thống mới, ví " +"dụ phân vùng khởi động sẽ là /boot." + +msgid "Select where to mount partition (leave blank to remove mountpoint): " +msgstr "Chọn điểm gắn cho phân vùng (để trống để xóa điểm gắn): " + +msgid "" +"{}\n" +"\n" +"Select which partition to mask for formatting" +msgstr "" +"{}\n" +"\n" +"Chọn phân vùng muốn đánh dấu để định dạng" + +msgid "" +"{}\n" +"\n" +"Select which partition to mark as encrypted" +msgstr "" +"{}\n" +"\n" +"Chọn phân vùng để mã hóa" + +msgid "" +"{}\n" +"\n" +"Select which partition to mark as bootable" +msgstr "" +"{}\n" +"\n" +"Chọn phân vùng làm phân vùng khởi động" + +msgid "" +"{}\n" +"\n" +"Select which partition to set a filesystem on" +msgstr "" +"{}\n" +"\n" +"Chọn phân vùng để đặt tệp hệ thống" + +msgid "Enter a desired filesystem type for the partition: " +msgstr "Chọn loại hệ thống tập tin mà bạn muốn cho phân vùng: " + +msgid "Archinstall language" +msgstr "Ngôn ngữ (Archinstall)" + +msgid "Wipe all selected drives and use a best-effort default partition layout" +msgstr "Xóa sạch các ổ đĩa đã chọn và dùng bố cục phân vùng mặc định tốt nhất" + +msgid "" +"Select what to do with each individual drive (followed by partition usage)" +msgstr "Chọn việc với mỗi ổ đĩa (theo sau là cách sử dụng phân vùng)" + +msgid "Select what you wish to do with the selected block devices" +msgstr "" + +msgid "" +"This is a list of pre-programmed profiles, they might make it easier to " +"install things like desktop environments" +msgstr "" + +msgid "Select keyboard layout" +msgstr "Bố cục bàn phím hiện tại" + +msgid "Select one of the regions to download packages from" +msgstr "" + +msgid "Select one or more hard drives to use and configure" +msgstr "" + +msgid "" +"For the best compatibility with your AMD hardware, you may want to use " +"either the all open-source or AMD / ATI options." +msgstr "" + +msgid "" +"For the best compatibility with your Intel hardware, you may want to use " +"either the all open-source or Intel options.\n" +msgstr "" + +msgid "" +"For the best compatibility with your Nvidia hardware, you may want to use " +"the Nvidia proprietary driver.\n" +msgstr "" + +msgid "" +"\n" +"\n" +"Select a graphics driver or leave blank to install all open-source drivers" +msgstr "" + +msgid "All open-source (default)" +msgstr "" + +msgid "Choose which kernels to use or leave blank for default \"{}\"" +msgstr "" + +msgid "Choose which locale language to use" +msgstr "Chọn ngôn ngữ địa phương muốn sử dụng" + +msgid "Choose which locale encoding to use" +msgstr "" + +msgid "Select one of the values shown below: " +msgstr "" + +msgid "Select one or more of the options below: " +msgstr "" + +msgid "Adding partition...." +msgstr "Đang thêm phân vùng...." + +msgid "" +"You need to enter a valid fs-type in order to continue. See `man parted` for " +"valid fs-type's." +msgstr "" + +msgid "Error: Listing profiles on URL \"{}\" resulted in:" +msgstr "" + +msgid "Error: Could not decode \"{}\" result as JSON:" +msgstr "" + +msgid "Keyboard layout" +msgstr "Bố cục bàn phím" + +msgid "Mirror region" +msgstr "" + +msgid "Locale language" +msgstr "Ngôn ngữ địa phương" + +msgid "Locale encoding" +msgstr "" + +msgid "Console font" +msgstr "" + +msgid "Drive(s)" +msgstr "" + +msgid "Disk layout" +msgstr "" + +msgid "Encryption password" +msgstr "" + +msgid "Swap" +msgstr "" + +msgid "Bootloader" +msgstr "Trình khởi động" + +msgid "Root password" +msgstr "" + +msgid "Superuser account" +msgstr "" + +msgid "User account" +msgstr "" + +msgid "Profile" +msgstr "" + +msgid "Audio" +msgstr "" + +msgid "Kernels" +msgstr "" + +msgid "Additional packages" +msgstr "" + +msgid "Network configuration" +msgstr "" + +msgid "Automatic time sync (NTP)" +msgstr "" + +msgid "Install ({} config(s) missing)" +msgstr "" + +msgid "" +"You decided to skip harddrive selection\n" +"and will use whatever drive-setup is mounted at {} (experimental)\n" +"WARNING: Archinstall won't check the suitability of this setup\n" +"Do you wish to continue?" +msgstr "" + +msgid "Re-using partition instance: {}" +msgstr "" + +msgid "Create a new partition" +msgstr "" + +msgid "Delete a partition" +msgstr "" + +msgid "Clear/Delete all partitions" +msgstr "" + +msgid "Assign mount-point for a partition" +msgstr "" + +msgid "Mark/Unmark a partition to be formatted (wipes data)" +msgstr "" + +msgid "Mark/Unmark a partition as encrypted" +msgstr "" + +msgid "Mark/Unmark a partition as bootable (automatic for /boot)" +msgstr "" + +msgid "Set desired filesystem for a partition" +msgstr "" + +msgid "Abort" +msgstr "" + +msgid "Hostname" +msgstr "" + +msgid "Not configured, unavailable unless setup manually" +msgstr "" + +msgid "Timezone" +msgstr "Múi giờ" + +msgid "Set/Modify the below options" +msgstr "" + +msgid "Install" +msgstr "" + +msgid "" +"Use ESC to skip\n" +"\n" +msgstr "" + +msgid "Suggest partition layout" +msgstr "" + +msgid "Enter a password: " +msgstr "" + +msgid "Enter a encryption password for {}" +msgstr "" + +msgid "Enter disk encryption password (leave blank for no encryption): " +msgstr "" + +msgid "Create a required super-user with sudo privileges: " +msgstr "" + +msgid "Enter root password (leave blank to disable root): " +msgstr "" + +msgid "Password for user \"{}\": " +msgstr "" + +msgid "" +"Verifying that additional packages exist (this might take a few seconds)" +msgstr "" + +msgid "" +"Would you like to use automatic time synchronization (NTP) with the default " +"time servers?\n" +msgstr "" + +msgid "" +"Hardware time and other post-configuration steps might be required in order " +"for NTP to work.\n" +"For more information, please check the Arch wiki" +msgstr "" + +msgid "Enter a username to create an additional user (leave blank to skip): " +msgstr "" + +msgid "Use ESC to skip\n" +msgstr "" + +msgid "" +"\n" +" Choose an object from the list, and select one of the available actions for " +"it to execute" +msgstr "" + +msgid "Cancel" +msgstr "" + +msgid "Confirm and exit" +msgstr "" + +msgid "Add" +msgstr "" + +msgid "Copy" +msgstr "" + +msgid "Edit" +msgstr "" + +msgid "Delete" +msgstr "" + +msgid "Select an action for '{}'" +msgstr "" + +msgid "Copy to new key:" +msgstr "" + +msgid "Unknown nic type: {}. Possible values are {}" +msgstr "" + +msgid "" +"\n" +"This is your chosen configuration:" +msgstr "" + +msgid "" +"Pacman is already running, waiting maximum 10 minutes for it to terminate." +msgstr "" + +msgid "" +"Pre-existing pacman lock never exited. Please clean up any existing pacman " +"sessions before using archinstall." +msgstr "" + +msgid "Choose which optional additional repositories to enable" +msgstr "" + +msgid "Add a user" +msgstr "" + +msgid "Change password" +msgstr "" + +msgid "Promote/Demote user" +msgstr "" + +msgid "Delete User" +msgstr "" + +msgid "" +"\n" +"Define a new user\n" +msgstr "" + +msgid "User Name : " +msgstr "" + +msgid "Should {} be a superuser (sudoer)?" +msgstr "" + +msgid "Define users with sudo privilege: " +msgstr "" + +msgid "No network configuration" +msgstr "" + +msgid "Set desired subvolumes on a btrfs partition" +msgstr "" + +msgid "" +"{}\n" +"\n" +"Select which partition to set subvolumes on" +msgstr "" + +msgid "Manage btrfs subvolumes for current partition" +msgstr "" + +msgid "No configuration" +msgstr "" + +msgid "Save user configuration" +msgstr "" + +msgid "Save user credentials" +msgstr "" + +msgid "Save disk layout" +msgstr "" + +msgid "Save all" +msgstr "" + +msgid "Choose which configuration to save" +msgstr "" + +msgid "Enter a directory for the configuration(s) to be saved: " +msgstr "" + +msgid "Not a valid directory: {}" +msgstr "" + +msgid "The password you are using seems to be weak," +msgstr "" + +msgid "are you sure you want to use it?" +msgstr "" + +msgid "Optional repositories" +msgstr "" + +msgid "Save configuration" +msgstr "" + +msgid "Missing configurations:\n" +msgstr "" + +msgid "Either root-password or at least 1 superuser must be specified" +msgstr "" + +msgid "Manage superuser accounts: " +msgstr "" + +msgid "Manage ordinary user accounts: " +msgstr "" + +msgid " Subvolume :{:16}" +msgstr "" + +msgid " mounted at {:16}" +msgstr "" + +msgid " with option {}" +msgstr "" + +msgid "" +"\n" +" Fill the desired values for a new subvolume \n" +msgstr "" + +msgid "Subvolume name " +msgstr "" + +msgid "Subvolume mountpoint" +msgstr "" + +msgid "Subvolume options" +msgstr "" + +msgid "Save" +msgstr "" + +msgid "Subvolume name :" +msgstr "" + +msgid "Select a mount point :" +msgstr "" + +msgid "Select the desired subvolume options " +msgstr "" + +msgid "Define users with sudo privilege, by username: " +msgstr "" + +#, python-brace-format +msgid "[!] A log file has been created here: {}" +msgstr "" + +msgid "Would you like to use BTRFS subvolumes with a default structure?" +msgstr "" + +msgid "Would you like to use BTRFS compression?" +msgstr "" + +msgid "Would you like to create a separate partition for /home?" +msgstr "" + +msgid "" +"The selected drives do not have the minimum capacity required for an " +"automatic suggestion\n" +msgstr "" + +msgid "Minimum capacity for /home partition: {}GB\n" +msgstr "" + +msgid "Minimum capacity for Arch Linux partition: {}GB" +msgstr "" + +msgid "Continue" +msgstr "" + +msgid "yes" +msgstr "" + +msgid "no" +msgstr "" + +msgid "set: {}" +msgstr "" + +msgid "Manual configuration setting must be a list" +msgstr "" + +msgid "No iface specified for manual configuration" +msgstr "" + +msgid "Manual nic configuration with no auto DHCP requires an IP address" +msgstr "" + +msgid "Add interface" +msgstr "" + +msgid "Edit interface" +msgstr "" + +msgid "Delete interface" +msgstr "" + +msgid "Select interface to add" +msgstr "" + +msgid "Manual configuration" +msgstr "" + +msgid "Mark/Unmark a partition as compressed (btrfs only)" +msgstr "" + +msgid "" +"The password you are using seems to be weak, are you sure you want to use it?" +msgstr "" + +msgid "" +"Provides a selection of desktop environments and tiling window managers, " +"e.g. gnome, kde, sway" +msgstr "" + +msgid "Select your desired desktop environment" +msgstr "" + +msgid "" +"A very basic installation that allows you to customize Arch Linux as you see " +"fit." +msgstr "" + +msgid "" +"Provides a selection of various server packages to install and enable, e.g. " +"httpd, nginx, mariadb" +msgstr "" + +msgid "" +"Choose which servers to install, if none then a minimal installation will be " +"done" +msgstr "" + +msgid "Installs a minimal system as well as xorg and graphics drivers." +msgstr "" + +msgid "Press Enter to continue." +msgstr "" + +msgid "" +"Would you like to chroot into the newly created installation and perform " +"post-installation configuration?" +msgstr "" + +msgid "Are you sure you want to reset this setting?" +msgstr "" + +msgid "Select one or more hard drives to use and configure\n" +msgstr "" + +msgid "Any modifications to the existing setting will reset the disk layout!" +msgstr "" + +msgid "" +"If you reset the harddrive selection this will also reset the current disk " +"layout. Are you sure?" +msgstr "" + +msgid "Save and exit" +msgstr "" + +msgid "" +"{}\n" +"contains queued partitions, this will remove those, are you sure?" +msgstr "" + +msgid "No audio server" +msgstr "" + +msgid "(default)" +msgstr "" + +msgid "Use ESC to skip" +msgstr "" + +msgid "" +"Use CTRL+C to reset current selection\n" +"\n" +msgstr "" + +msgid "Copy to: " +msgstr "" + +msgid "Edit: " +msgstr "" + +msgid "Key: " +msgstr "" + +msgid "Edit {}: " +msgstr "" + +msgid "Add: " +msgstr "" + +msgid "Value: " +msgstr "" + +msgid "" +"You can skip selecting a drive and partitioning and use whatever drive-setup " +"is mounted at /mnt (experimental)" +msgstr "" + +msgid "Select one of the disks or skip and use /mnt as default" +msgstr "" + +msgid "Select which partitions to mark for formatting:" +msgstr "" + +msgid "Use HSM to unlock encrypted drive" +msgstr "" + +msgid "Device" +msgstr "" + +msgid "Size" +msgstr "" + +msgid "Free space" +msgstr "" + +msgid "Bus-type" +msgstr "" + +msgid "" +"Either root-password or at least 1 user with sudo privileges must be " +"specified" +msgstr "" + +msgid "Enter username (leave blank to skip): " +msgstr "" + +msgid "The username you entered is invalid. Try again" +msgstr "" + +msgid "Should \"{}\" be a superuser (sudo)?" +msgstr "" + +msgid "Select which partitions to encrypt" +msgstr "" + +msgid "very weak" +msgstr "" + +msgid "weak" +msgstr "" + +msgid "moderate" +msgstr "" + +msgid "strong" +msgstr "" + +msgid "Add subvolume" +msgstr "" + +msgid "Edit subvolume" +msgstr "" + +msgid "Delete subvolume" +msgstr "" + +msgid "Configured {} interfaces" +msgstr "" + +msgid "" +"This option enables the number of parallel downloads that can occur during " +"installation" +msgstr "" + +msgid "" +"Enter the number of parallel downloads to be enabled.\n" +" (Enter a value between 1 to {})\n" +"Note:" +msgstr "" + +msgid "" +" - Maximum value : {} ( Allows {} parallel downloads, allows {} downloads " +"at a time )" +msgstr "" + +msgid "" +" - Minimum value : 1 ( Allows 1 parallel download, allows 2 downloads at a " +"time )" +msgstr "" + +msgid "" +" - Disable/Default : 0 ( Disables parallel downloading, allows only 1 " +"download at a time )" +msgstr "" + +#, python-brace-format +msgid "" +"Invalid input! Try again with a valid input [1 to {max_downloads}, or 0 to " +"disable]" +msgstr "" + +msgid "Parallel Downloads" +msgstr "" + +msgid "Pacman" +msgstr "" + +msgid "Color" +msgstr "" + +#, python-brace-format +msgid "Enter the number of parallel downloads (1-{})" +msgstr "" + +msgid "Enable colored output for pacman" +msgstr "" + +msgid "ESC to skip" +msgstr "" + +msgid "CTRL+C to reset" +msgstr "" + +msgid "TAB to select" +msgstr "" + +msgid "[Default value: 0] > " +msgstr "" + +msgid "" +"To be able to use this translation, please install a font manually that " +"supports the language." +msgstr "" + +msgid "The font should be stored as {}" +msgstr "" + +msgid "Archinstall requires root privileges to run. See --help for more." +msgstr "" + +msgid "Select an execution mode" +msgstr "" + +#, python-brace-format +msgid "Unable to fetch profile from specified url: {}" +msgstr "" + +#, python-brace-format +msgid "" +"Profiles must have unique name, but profile definitions with duplicate name " +"found: {}" +msgstr "" + +msgid "Select one or more devices to use and configure" +msgstr "" + +msgid "" +"If you reset the device selection this will also reset the current disk " +"layout. Are you sure?" +msgstr "" + +msgid "Existing Partitions" +msgstr "" + +msgid "Select a partitioning option" +msgstr "" + +msgid "Enter the root directory of the mounted devices: " +msgstr "" + +#, python-brace-format +msgid "Minimum capacity for /home partition: {}GiB\n" +msgstr "" + +#, python-brace-format +msgid "Minimum capacity for Arch Linux partition: {}GiB" +msgstr "" + +msgid "" +"This is a list of pre-programmed profiles_bck, they might make it easier to " +"install things like desktop environments" +msgstr "" + +msgid "Current profile selection" +msgstr "" + +msgid "Remove all newly added partitions" +msgstr "" + +msgid "Assign mountpoint" +msgstr "" + +msgid "Mark/Unmark to be formatted (wipes data)" +msgstr "" + +msgid "Mark/Unmark as bootable" +msgstr "" + +msgid "Change filesystem" +msgstr "" + +msgid "Mark/Unmark as compressed" +msgstr "" + +msgid "Set subvolumes" +msgstr "" + +msgid "Delete partition" +msgstr "" + +msgid "Partition" +msgstr "" + +msgid "" +"This partition is currently encrypted, to format it a filesystem has to be " +"specified" +msgstr "" + +msgid "" +"Partition mount-points are relative to inside the installation, the boot " +"would be /boot as an example." +msgstr "" + +msgid "" +"If mountpoint /boot is set, then the partition will also be marked as " +"bootable." +msgstr "" + +msgid "Mountpoint: " +msgstr "" + +msgid "Current free sectors on device {}:" +msgstr "" + +msgid "Total sectors: {}" +msgstr "" + +msgid "Enter the start sector (default: {}): " +msgstr "" + +msgid "" +"Enter the end sector of the partition (percentage or block number, default: " +"{}): " +msgstr "" + +msgid "This will remove all newly added partitions, continue?" +msgstr "" + +#, python-brace-format +msgid "Partition management: {}" +msgstr "" + +#, python-brace-format +msgid "Total length: {}" +msgstr "" + +msgid "Encryption type" +msgstr "" + +msgid "Iteration time" +msgstr "" + +msgid "Enter iteration time for LUKS encryption (in milliseconds)" +msgstr "" + +msgid "Higher values increase security but slow down boot time" +msgstr "" + +msgid "Default: 10000ms, Recommended range: 1000-60000" +msgstr "" + +msgid "Iteration time cannot be empty" +msgstr "" + +msgid "Iteration time must be at least 100ms" +msgstr "" + +msgid "Iteration time must be at most 120000ms" +msgstr "" + +msgid "Please enter a valid number" +msgstr "" + +msgid "Partitions" +msgstr "" + +msgid "No HSM devices available" +msgstr "" + +msgid "Partitions to be encrypted" +msgstr "" + +msgid "Select disk encryption option" +msgstr "" + +msgid "Select a FIDO2 device to use for HSM" +msgstr "" + +msgid "Use a best-effort default partition layout" +msgstr "" + +msgid "Manual Partitioning" +msgstr "" + +msgid "Pre-mounted configuration" +msgstr "" + +msgid "Unknown" +msgstr "" + +msgid "Partition encryption" +msgstr "" + +#, python-brace-format +msgid " ! Formatting {} in " +msgstr "" + +msgid "← Back" +msgstr "" + +msgid "Disk encryption" +msgstr "" + +msgid "Configuration" +msgstr "" + +msgid "Password" +msgstr "" + +msgid "All settings will be reset, are you sure?" +msgstr "" + +msgid "Back" +msgstr "" + +msgid "Please chose which greeter to install for the chosen profiles: {}" +msgstr "" + +#, python-brace-format +msgid "Environment type: {}" +msgstr "" + +msgid "" +"The proprietary Nvidia driver is not supported by Sway. It is likely that " +"you will run into issues, are you okay with that?" +msgstr "" + +msgid "Installed packages" +msgstr "" + +msgid "Add profile" +msgstr "" + +msgid "Edit profile" +msgstr "" + +msgid "Delete profile" +msgstr "" + +msgid "Profile name: " +msgstr "" + +msgid "The profile name you entered is already in use. Try again" +msgstr "" + +msgid "" +"Packages to be install with this profile (space separated, leave blank to " +"skip): " +msgstr "" + +msgid "" +"Services to be enabled with this profile (space separated, leave blank to " +"skip): " +msgstr "" + +msgid "Should this profile be enabled for installation?" +msgstr "" + +msgid "Create your own" +msgstr "" + +msgid "" +"\n" +"Select a graphics driver or leave blank to install all open-source drivers" +msgstr "" + +msgid "" +"Sway needs access to your seat (collection of hardware devices i.e. " +"keyboard, mouse, etc)" +msgstr "" + +msgid "" +"\n" +"\n" +"Choose an option to give Sway access to your hardware" +msgstr "" + +msgid "Graphics driver" +msgstr "" + +msgid "Greeter" +msgstr "" + +msgid "Please chose which greeter to install" +msgstr "" + +msgid "This is a list of pre-programmed default_profiles" +msgstr "" + +msgid "Disk configuration" +msgstr "" + +msgid "Profiles" +msgstr "" + +msgid "Finding possible directories to save configuration files ..." +msgstr "" + +msgid "Select directory (or directories) for saving configuration files" +msgstr "" + +msgid "Add a custom mirror" +msgstr "" + +msgid "Change custom mirror" +msgstr "" + +msgid "Delete custom mirror" +msgstr "" + +msgid "Enter name (leave blank to skip): " +msgstr "" + +msgid "Enter url (leave blank to skip): " +msgstr "" + +msgid "Select signature check option" +msgstr "" + +msgid "Select signature option" +msgstr "" + +msgid "Custom mirrors" +msgstr "" + +msgid "Defined" +msgstr "" + +msgid "Save user configuration (including disk layout)" +msgstr "" + +msgid "" +"Enter a directory for the configuration(s) to be saved (tab completion " +"enabled)\n" +"Save directory: " +msgstr "" + +msgid "" +"Do you want to save {} configuration file(s) in the following location?\n" +"\n" +"{}" +msgstr "" + +msgid "Saving {} configuration files to {}" +msgstr "" + +msgid "Mirrors" +msgstr "" + +msgid "Mirror regions" +msgstr "" + +msgid "" +" - Maximum value : {} ( Allows {} parallel downloads, allows " +"{max_downloads+1} downloads at a time )" +msgstr "" + +msgid "Invalid input! Try again with a valid input [1 to {}, or 0 to disable]" +msgstr "" + +msgid "Locales" +msgstr "" + +msgid "" +"Use NetworkManager (necessary to configure internet graphically in GNOME and " +"KDE)" +msgstr "" + +msgid "Total: {} / {}" +msgstr "" + +msgid "All entered values can be suffixed with a unit: B, KB, KiB, MB, MiB..." +msgstr "" + +msgid "If no unit is provided, the value is interpreted as sectors" +msgstr "" + +msgid "Enter start (default: sector {}): " +msgstr "" + +msgid "Enter end (default: {}): " +msgstr "" + +msgid "Unable to determine fido2 devices. Is libfido2 installed?" +msgstr "" + +msgid "Path" +msgstr "" + +msgid "Manufacturer" +msgstr "" + +msgid "Product" +msgstr "" + +#, python-brace-format +msgid "Invalid configuration: {}" +msgstr "" + +msgid "Ready to install" +msgstr "" + +msgid "Disks" +msgstr "" + +msgid "Packages" +msgstr "" + +msgid "Network" +msgstr "" + +msgid "Locale" +msgstr "" + +msgid "Type" +msgstr "" + +msgid "" +"This option enables the number of parallel downloads that can occur during " +"package downloads" +msgstr "" + +msgid "" +"Enter the number of parallel downloads to be enabled.\n" +"\n" +"Note:\n" +msgstr "" + +#, python-brace-format +msgid "" +" - Maximum recommended value : {} ( Allows {} parallel downloads at a time )" +msgstr "" + +msgid "" +" - Disable/Default : 0 ( Disables parallel downloading, allows only 1 " +"download at a time )\n" +msgstr "" + +msgid "Invalid input! Try again with a valid input [or 0 to disable]" +msgstr "" + +msgid "" +"Hyprland needs access to your seat (collection of hardware devices i.e. " +"keyboard, mouse, etc)" +msgstr "" + +msgid "" +"\n" +"\n" +"Choose an option to give Hyprland access to your hardware" +msgstr "" + +msgid "" +"All entered values can be suffixed with a unit: %, B, KB, KiB, MB, MiB..." +msgstr "" + +msgid "Would you like to use unified kernel images?" +msgstr "" + +msgid "Unified kernel images" +msgstr "" + +msgid "Waiting for time sync (timedatectl show) to complete." +msgstr "" + +msgid "" +"Time syncronization not completing, while you wait - check the docs for " +"workarounds: https://archinstall.readthedocs.io/" +msgstr "" + +msgid "" +"Skipping waiting for automatic time sync (this can cause issues if time is " +"out of sync during installation)" +msgstr "" + +msgid "" +"Waiting for Arch Linux keyring sync (archlinux-keyring-wkd-sync) to complete." +msgstr "" + +msgid "Selected profiles: " +msgstr "" + +msgid "" +"Time synchronization not completing, while you wait - check the docs for " +"workarounds: https://archinstall.readthedocs.io/" +msgstr "" + +msgid "Mark/Unmark as nodatacow" +msgstr "" + +msgid "Would you like to use compression or disable CoW?" +msgstr "" + +msgid "Use compression" +msgstr "" + +msgid "Disable Copy-on-Write" +msgstr "" + +msgid "" +"Provides a selection of desktop environments and tiling window managers, " +"e.g. GNOME, KDE Plasma, Sway" +msgstr "" + +#, python-brace-format +msgid "Configuration type: {}" +msgstr "" + +msgid "LVM configuration type" +msgstr "" + +msgid "" +"LVM disk encryption with more than 2 partitions is currently not supported" +msgstr "" + +msgid "" +"Use NetworkManager (necessary to configure internet graphically in GNOME and " +"KDE Plasma)" +msgstr "" + +msgid "Select a LVM option" +msgstr "" + +msgid "Partitioning" +msgstr "" + +msgid "Logical Volume Management (LVM)" +msgstr "" + +msgid "Physical volumes" +msgstr "" + +msgid "Volumes" +msgstr "" + +msgid "LVM volumes" +msgstr "" + +msgid "LVM volumes to be encrypted" +msgstr "" + +msgid "Select which LVM volumes to encrypt" +msgstr "" + +msgid "Default layout" +msgstr "" + +msgid "No Encryption" +msgstr "" + +msgid "LUKS" +msgstr "" + +msgid "LVM on LUKS" +msgstr "" + +msgid "LUKS on LVM" +msgstr "" + +msgid "Yes" +msgstr "" + +msgid "No" +msgstr "" + +msgid "Archinstall help" +msgstr "" + +msgid " (default)" +msgstr "" + +msgid "Press Ctrl+h for help" +msgstr "" + +msgid "Choose an option to give Sway access to your hardware" +msgstr "" + +msgid "Seat access" +msgstr "" + +msgid "Mountpoint" +msgstr "" + +msgid "HSM" +msgstr "" + +msgid "Enter disk encryption password (leave blank for no encryption)" +msgstr "" + +msgid "Disk encryption password" +msgstr "" + +msgid "Partition - New" +msgstr "" + +msgid "Filesystem" +msgstr "" + +msgid "Invalid size" +msgstr "" + +msgid "Start (default: sector {}): " +msgstr "" + +msgid "End (default: {}): " +msgstr "" + +msgid "Subvolume name" +msgstr "" + +msgid "Disk configuration type" +msgstr "" + +msgid "Root mount directory" +msgstr "" + +msgid "Select language" +msgstr "" + +msgid "" +"Write additional packages to install (space separated, leave blank to skip)" +msgstr "" + +msgid "Invalid download number" +msgstr "" + +msgid "Number downloads" +msgstr "" + +msgid "The username you entered is invalid" +msgstr "" + +msgid "Username" +msgstr "" + +#, python-brace-format +msgid "Should \"{}\" be a superuser (sudo)?\n" +msgstr "" + +msgid "Interfaces" +msgstr "" + +msgid "You need to enter a valid IP in IP-config mode" +msgstr "" + +msgid "Modes" +msgstr "" + +msgid "IP address" +msgstr "" + +msgid "Enter your gateway (router) IP address (leave blank for none)" +msgstr "" + +msgid "Gateway address" +msgstr "" + +msgid "Enter your DNS servers with space separated (leave blank for none)" +msgstr "" + +msgid "DNS servers" +msgstr "" + +msgid "Configure interfaces" +msgstr "" + +msgid "Kernel" +msgstr "" + +msgid "UEFI is not detected and some options are disabled" +msgstr "" + +msgid "Info" +msgstr "" + +msgid "The proprietary Nvidia driver is not supported by Sway." +msgstr "" + +msgid "It is likely that you will run into issues, are you okay with that?" +msgstr "" + +msgid "Main profile" +msgstr "" + +msgid "Confirm password" +msgstr "" + +msgid "The confirmation password did not match, please try again" +msgstr "" + +msgid "Not a valid directory" +msgstr "" + +msgid "Would you like to continue?" +msgstr "" + +msgid "Directory" +msgstr "" + +msgid "" +"Enter a directory for the configuration(s) to be saved (tab completion " +"enabled)" +msgstr "" + +#, python-brace-format +msgid "Do you want to save the configuration file(s) to {}?" +msgstr "" + +msgid "Enabled" +msgstr "" + +msgid "Disabled" +msgstr "" + +msgid "" +"Please submit this issue (and file) to https://github.com/archlinux/" +"archinstall/issues" +msgstr "" + +msgid "Mirror name" +msgstr "" + +msgid "Url" +msgstr "" + +msgid "Select signature check" +msgstr "" + +msgid "Select execution mode" +msgstr "" + +msgid "Press ? for help" +msgstr "" + +msgid "Choose an option to give Hyprland access to your hardware" +msgstr "" + +msgid "Additional repositories" +msgstr "" + +msgid "NTP" +msgstr "" + +msgid "Swap on zram" +msgstr "" + +msgid "Name" +msgstr "" + +msgid "Signature check" +msgstr "" + +#, python-brace-format +msgid "Selected free space segment on device {}:" +msgstr "" + +#, python-brace-format +msgid "Size: {} / {}" +msgstr "" + +#, python-brace-format +msgid "Size (default: {}): " +msgstr "" + +msgid "HSM device" +msgstr "" + +msgid "Some packages could not be found in the repository" +msgstr "" + +msgid "User" +msgstr "" + +msgid "The specified configuration will be applied" +msgstr "" + +msgid "Wipe" +msgstr "" + +msgid "Mark/Unmark as XBOOTLDR" +msgstr "" + +msgid "Loading packages..." +msgstr "" + +msgid "" +"Select any packages from the below list that should be installed additionally" +msgstr "" + +msgid "Add a custom repository" +msgstr "" + +msgid "Change custom repository" +msgstr "" + +msgid "Delete custom repository" +msgstr "" + +msgid "Repository name" +msgstr "" + +msgid "Add a custom server" +msgstr "" + +msgid "Change custom server" +msgstr "" + +msgid "Delete custom server" +msgstr "" + +msgid "Server url" +msgstr "" + +msgid "Select regions" +msgstr "" + +msgid "Add custom servers" +msgstr "" + +msgid "Add custom repository" +msgstr "" + +msgid "Loading mirror regions..." +msgstr "" + +msgid "Mirrors and repositories" +msgstr "" + +msgid "Selected mirror regions" +msgstr "" + +msgid "Custom servers" +msgstr "" + +msgid "Custom repositories" +msgstr "" + +msgid "Only ASCII characters are supported" +msgstr "" + +msgid "Show help" +msgstr "" + +msgid "Exit help" +msgstr "" + +msgid "Preview scroll up" +msgstr "" + +msgid "Preview scroll down" +msgstr "" + +msgid "Move up" +msgstr "" + +msgid "Move down" +msgstr "" + +msgid "Move right" +msgstr "" + +msgid "Move left" +msgstr "" + +msgid "Jump to entry" +msgstr "" + +msgid "Skip selection (if available)" +msgstr "" + +msgid "Reset selection (if available)" +msgstr "" + +msgid "Select on single select" +msgstr "" + +msgid "Select on multi select" +msgstr "" + +msgid "Reset" +msgstr "" + +msgid "Skip selection menu" +msgstr "" + +msgid "Start search mode" +msgstr "" + +msgid "Exit search mode" +msgstr "" + +msgid "General" +msgstr "" + +msgid "Navigation" +msgstr "" + +msgid "Selection" +msgstr "" + +msgid "Search" +msgstr "" + +msgid "Down" +msgstr "" + +msgid "Up" +msgstr "" + +msgid "Confirm" +msgstr "" + +msgid "Focus right" +msgstr "" + +msgid "Focus left" +msgstr "" + +msgid "Toggle" +msgstr "" + +msgid "Show/Hide help" +msgstr "" + +msgid "Quit" +msgstr "" + +msgid "First" +msgstr "" + +msgid "Last" +msgstr "" + +msgid "Select" +msgstr "" + +msgid "Page Up" +msgstr "" + +msgid "Page Down" +msgstr "" + +msgid "Page up" +msgstr "" + +msgid "Page down" +msgstr "" + +msgid "Page Left" +msgstr "" + +msgid "Page Right" +msgstr "" + +msgid "Cursor up" +msgstr "" + +msgid "Cursor down" +msgstr "" + +msgid "Cursor right" +msgstr "" + +msgid "Cursor left" +msgstr "" + +msgid "Top" +msgstr "" + +msgid "Bottom" +msgstr "" + +msgid "Home" +msgstr "" + +msgid "End" +msgstr "" + +msgid "Toggle option" +msgstr "" + +msgid "Scroll Up" +msgstr "" + +msgid "Scroll Down" +msgstr "" + +msgid "Scroll Left" +msgstr "" + +msgid "Scroll Right" +msgstr "" + +msgid "Scroll Home" +msgstr "" + +msgid "Scroll End" +msgstr "" + +msgid "Focus Next" +msgstr "" + +msgid "Focus Previous" +msgstr "" + +msgid "Copy selected text" +msgstr "" + +msgid "" +"labwc needs access to your seat (collection of hardware devices i.e. " +"keyboard, mouse, etc)" +msgstr "" + +msgid "Choose an option to give labwc access to your hardware" +msgstr "" + +msgid "" +"niri needs access to your seat (collection of hardware devices i.e. " +"keyboard, mouse, etc)" +msgstr "" + +msgid "Choose an option to give niri access to your hardware" +msgstr "" + +msgid "Mark/Unmark as ESP" +msgstr "" + +msgid "Package group:" +msgstr "" + +msgid "Exit archinstall" +msgstr "" + +msgid "Reboot system" +msgstr "" + +msgid "chroot into installation for post-installation configurations" +msgstr "" + +msgid "Installation completed" +msgstr "" + +msgid "What would you like to do next?" +msgstr "" + +#, python-brace-format +msgid "Select which mode to configure for \"{}\"" +msgstr "" + +msgid "Incorrect credentials file decryption password" +msgstr "" + +msgid "Incorrect password" +msgstr "" + +msgid "Credentials file decryption password" +msgstr "" + +msgid "Do you want to encrypt the user_credentials.json file?" +msgstr "" + +msgid "Credentials file encryption password" +msgstr "" + +#, python-brace-format +msgid "Repositories: {}" +msgstr "" + +msgid "New version available" +msgstr "" + +msgid "Passwordless login" +msgstr "" + +msgid "Second factor login" +msgstr "" + +msgid "Bluetooth" +msgstr "" + +msgid "Would you like to configure Bluetooth?" +msgstr "" + +msgid "Print service" +msgstr "" + +msgid "Would you like to configure the print service?" +msgstr "" + +msgid "Power management" +msgstr "" + +msgid "Authentication" +msgstr "" + +msgid "Applications" +msgstr "" + +msgid "U2F login method: " +msgstr "" + +msgid "Passwordless sudo: " +msgstr "" + +#, python-brace-format +msgid "Btrfs snapshot type: {}" +msgstr "" + +msgid "Syncing the system..." +msgstr "" + +msgid "Value cannot be empty" +msgstr "" + +msgid "Snapshot type" +msgstr "" + +#, python-brace-format +msgid "Snapshot type: {}" +msgstr "" + +msgid "U2F login setup" +msgstr "" + +msgid "No U2F devices found" +msgstr "" + +msgid "U2F Login Method" +msgstr "" + +msgid "Enable passwordless sudo?" +msgstr "" + +#, python-brace-format +msgid "Setting up U2F device for user: {}" +msgstr "" + +msgid "" +"You may need to enter the PIN and then touch your U2F device to register it" +msgstr "" + +msgid "Starting device modifications in " +msgstr "" + +msgid "No network connection found" +msgstr "" + +msgid "Would you like to connect to a Wifi?" +msgstr "" + +msgid "No wifi interface found" +msgstr "" + +msgid "Select wifi network to connect to" +msgstr "" + +msgid "Scanning wifi networks..." +msgstr "" + +msgid "No wifi networks found" +msgstr "" + +msgid "Failed setting up wifi" +msgstr "" + +msgid "Enter wifi password" +msgstr "" + +msgid "Ok" +msgstr "" + +msgid "Removable" +msgstr "" + +msgid "Install to removable location" +msgstr "" + +msgid "Will install to /EFI/BOOT/ (removable location)" +msgstr "" + +msgid "Will install to standard location with NVRAM entry" +msgstr "" + +msgid "" +"Would you like to install the bootloader to the default removable media " +"search location?" +msgstr "" + +msgid "" +"This installs the bootloader to /EFI/BOOT/BOOTX64.EFI (or similar) which is " +"useful for:" +msgstr "" + +msgid "USB drives or other portable external media." +msgstr "" + +msgid "Systems where you want the disk to be bootable on any computer." +msgstr "" + +msgid "Firmware that does not properly support NVRAM boot entries." +msgstr "" + +msgid "Will install to /EFI/BOOT/ (removable location, safe default)" +msgstr "" + +msgid "Will install to custom location with NVRAM entry" +msgstr "" + +msgid "" +"Firmware that does not properly support NVRAM boot entries like most MSI " +"motherboards," +msgstr "" + +msgid "most Apple Macs, many laptops..." +msgstr "" + +msgid "Language" +msgstr "" + +msgid "Compression algorithm" +msgstr "" + +msgid "" +"Only packages such as base, sudo, linux, linux-firmware, efibootmgr and " +"optional profile packages are installed." +msgstr "" + +msgid "Select zram compression algorithm:" +msgstr "" + +msgid "Use Network Manager (default backend)" +msgstr "" + +msgid "Use Network Manager (iwd backend)" +msgstr "" + +msgid "Firewall" +msgstr "" + +msgid "Additional fonts" +msgstr "" + +msgid "Select font packages to install" +msgstr "" + +msgid "Unicode font coverage for most languages" +msgstr "" + +msgid "color emoji for browsers and apps" +msgstr "" + +msgid "Chinese, Japanese, Korean characters" +msgstr "" + +msgid "Select audio configuration" +msgstr "" + +msgid "Enter credentials file decryption password" +msgstr "" + +msgid "Enter root password" +msgstr "" + +msgid "Select bootloader to install" +msgstr "" + +msgid "Configuration preview" +msgstr "" + +msgid "Enter a directory for the configuration(s) to be saved" +msgstr "" + +msgid "Select encryption type" +msgstr "" + +msgid "Select disks for the installation" +msgstr "" + +msgid "Enter a mountpoint" +msgstr "" + +#, python-brace-format +msgid "Enter a size (default: {}): " +msgstr "" + +msgid "Enter subvolume name" +msgstr "" + +msgid "Enter subvolume mountpoint" +msgstr "" + +msgid "Select a disk configuration" +msgstr "" + +msgid "Enter root mount directory" +msgstr "" + +msgid "You will use whatever drive-setup is mounted at the specified directory" +msgstr "" + +msgid "WARNING: Archinstall won't check the suitability of this setup" +msgstr "" + +msgid "Select main filesystem" +msgstr "" + +msgid "Enter a hostname" +msgstr "" + +msgid "Select timezone" +msgstr "" + +msgid "Enter the number of parallel downloads to be enabled" +msgstr "" + +#, python-brace-format +msgid "Value must be between 1 and {}" +msgstr "" + +msgid "Select which kernel(s) to install" +msgstr "" + +msgid "Enter a respository name" +msgstr "" + +msgid "Enter the repository url" +msgstr "" + +msgid "Enter server url" +msgstr "" + +msgid "Select mirror regions to be enabled" +msgstr "" + +msgid "Select optional repositories to be enabled" +msgstr "" + +msgid "Select an interface" +msgstr "" + +msgid "Choose network configuration" +msgstr "" + +msgid "Recommended: Network Manager for desktop, Manual for server" +msgstr "" + +msgid "" +"Warning: no network configuration selected. Network will need to be set up " +"manually on the installed system." +msgstr "" + +msgid "No packages found" +msgstr "" + +msgid "Select which greeter to install" +msgstr "" + +msgid "Select a profile type" +msgstr "" + +msgid "Enter new password" +msgstr "" + +msgid "Enter a username" +msgstr "" + +msgid "Enter a password" +msgstr "" + +msgid "The password did not match, please try again" +msgstr "" + +msgid "Password strength: Weak" +msgstr "" + +msgid "Password strength: Moderate" +msgstr "" + +msgid "Password strength: Strong" +msgstr "" + +msgid "" +"The selected desktop profile requires a regular user to log in via the " +"greeter" +msgstr "" + +#, python-brace-format +msgid "Environment type: {} {}" +msgstr "" + +msgid "Input cannot be empty" +msgstr "" + +msgid "Recommended" +msgstr "" + +msgid "Package" +msgstr "" + +msgid "Curated selection of KDE Plasma packages" +msgstr "" + +msgid "Dependencies" +msgstr "" + +msgid "Package group" +msgstr "" + +msgid "Extensive KDE Plasma installation" +msgstr "" + +msgid "Packages in group" +msgstr "" + +msgid "Minimal KDE Plasma installation" +msgstr "" + +msgid "Description" +msgstr "" + +msgid "Select a flavor of KDE Plasma to install" +msgstr "" + +msgid "Arial/Times/Courier replacement, Cyrillic support for Steam/games" +msgstr "" + +msgid "wide Unicode coverage, good fallback font" +msgstr "" + +#, python-brace-format +msgid "Setting up U2F login: {u2f_config.u2f_login_method.value}" +msgstr "" + +#, python-brace-format +msgid "Default: {DEFAULT_ITER_TIME}ms, Recommended range: 1000-60000" +msgstr "" + +#, python-brace-format +msgid "Setting up U2F login: {}" +msgstr "" + +#, python-brace-format +msgid "Default: {}ms, Recommended range: 1000-60000" +msgstr "" + +#, python-brace-format +msgid "{} needs access to your seat" +msgstr "" + +msgid "collection of hardware devices i.e. keyboard, mouse" +msgstr "" + +#, python-brace-format +msgid "Choose an option how to give {} access to your hardware" +msgstr "" + +#, python-brace-format +msgid "About to upload \"{}\" to the publicly accessible {}" +msgstr "" + +msgid "Do you want to continue?" +msgstr "" + +#, python-brace-format +msgid "Log uploaded successfully. URL: {}" +msgstr "" + +msgid "Failed to upload log." +msgstr "" + +msgid "ArchInstall Language" +msgstr "" + +msgid "Version" +msgstr "" + +msgid "Installation Script" +msgstr "" + +msgid "Application" +msgstr "" + +msgid "Services" +msgstr "" + +msgid "Custom commands" +msgstr "" + +msgid "Users" +msgstr "" + +msgid "Root encrypted password" +msgstr "" + +msgid "Zram enabled" +msgstr "" + +#, python-brace-format +msgid "Zram algorithm {}" +msgstr "" + +msgid "Bluetooth enabled" +msgstr "" + +#, python-brace-format +msgid "Audio server \"{}\"" +msgstr "" + +#, python-brace-format +msgid "Power management \"{}\"" +msgstr "" + +msgid "Print service enabled" +msgstr "" + +#, python-brace-format +msgid "Firewall \"{}\"" +msgstr "" + +#, python-brace-format +msgid "Extra fonts \"{}\"" +msgstr "" + +msgid "Root password set" +msgstr "" + +#, python-brace-format +msgid "Configured {} user(s)" +msgstr "" + +msgid "U2F set up" +msgstr "" + +#, python-brace-format +msgid "Bootloader \"{}\"" +msgstr "" + +msgid "UKI enabled" +msgstr "" + +msgid "Default" +msgstr "" + +msgid "Manual" +msgstr "" + +msgid "Pre-mount" +msgstr "" + +#, python-brace-format +msgid "{} layout" +msgstr "" + +#, python-brace-format +msgid "Devices {}" +msgstr "" + +msgid "LVM set up" +msgstr "" + +#, python-brace-format +msgid "{} encryption" +msgstr "" + +#, python-brace-format +msgid "Btrfs snapshot \"{}\"" +msgstr "" + +#, python-brace-format +msgid "Keyboard layout \"{}\"" +msgstr "" + +#, python-brace-format +msgid "Locale language \"{}\"" +msgstr "" + +#, python-brace-format +msgid "Locale encoding \"{}\"" +msgstr "" + +#, python-brace-format +msgid "Console font \"{}\"" +msgstr "" + +#, python-brace-format +msgid "Mirror regions \"{}\"" +msgstr "" + +#, python-brace-format +msgid "Optional repositories \"{}\"" +msgstr "" + +msgid "Custom servers set up" +msgstr "" + +msgid "Custom repositories set up" +msgstr "" + +msgid "Use standalone iwd" +msgstr "" + +msgid "Color enabled" +msgstr "" + +#, python-brace-format +msgid "{} grphics driver" +msgstr "" + +#, python-brace-format +msgid "{} greeter" +msgstr "" + +msgid "Enter a repository name" +msgstr "" diff --git a/archinstall/locales/vi/LC_MESSAGES/base_translated.po b/archinstall/locales/vi/LC_MESSAGES/base_translated.po new file mode 100644 index 00000000..6d82ee26 --- /dev/null +++ b/archinstall/locales/vi/LC_MESSAGES/base_translated.po @@ -0,0 +1,3310 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: \n" +"POT-Creation-Date: \n" +"PO-Revision-Date: \n" +"Last-Translator: BlackCat \n" +"Language-Team: \n" +"Language: vi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Poedit 3.9\n" + +msgid "[!] A log file has been created here: {} {}" +msgstr "[!] Một tệp nhật ký (log) đã được tạo ở đây: {} {}" + +msgid "" +" Please submit this issue (and file) to " +"https://github.com/archlinux/archinstall/issues" +msgstr "" +" Vui lòng gửi vấn đề này (và tệp tin) đến địa chỉ " +"https://github.com/archlinux/archinstall/issues" + +msgid "Do you really want to abort?" +msgstr "Bạn thật sự có muốn hủy bỏ không?" + +msgid "And one more time for verification: " +msgstr "Xin hãy xác nhận một lần nữa: " + +msgid "Would you like to use swap on zram?" +msgstr "Bạn có muốn sử dụng swap trên zram không?" + +msgid "Desired hostname for the installation: " +msgstr "Tên của máy mà bạn mong muốn trong quá trình cài đặt: " + +msgid "Username for required superuser with sudo privileges: " +msgstr "Tên người dùng cho tài khoản quản trị có quyền sudo:" + +msgid "Any additional users to install (leave blank for no users): " +msgstr "Thêm người dùng khác (để trống nếu không cần): " + +msgid "Should this user be a superuser (sudoer)?" +msgstr "" +"Bạn có muốn người dùng này là quản trị viên (superuser/sudoer) không ?" + +msgid "Select a timezone" +msgstr "Vui lòng chọn múi giờ" + +msgid "Would you like to use GRUB as a bootloader instead of systemd-boot?" +msgstr "" +"Bạn có muốn GRUB là trình khởi động (bootloader) mặc định thay vì systemd-" +"boot không?" + +msgid "Choose a bootloader" +msgstr "Chọn một trình khởi động (bootloader)" + +msgid "Choose an audio server" +msgstr "Chọn hệ thống âm thanh" + +msgid "" +"Only packages such as base, base-devel, linux, linux-firmware, efibootmgr " +"and optional profile packages are installed." +msgstr "" +"Chỉ có base, base-devel, linux, linux-firmware, efibootmgr và các gói cấu " +"hình (profile) tùy chọn sẽ được cài đặt." + +msgid "" +"Note: base-devel is no longer installed by default. Add it here if you need " +"build tools." +msgstr "" +"Note: base-devel không còn được cài đặt mặc định nữa. Thêm nó ở đây nếu bạn " +"cần công cụ biên dịch." + +msgid "" +"If you desire a web browser, such as firefox or chromium, you may specify it" +" in the following prompt." +msgstr "" +"Nếu bạn cần tình duyệt như Firefox hay Chromium, bạn có thể chỉ định chúng ở" +" dòng nhắc dưới đây." + +msgid "" +"Write additional packages to install (space separated, leave blank to skip):" +" " +msgstr "" +"Ghi tất cả gói mà bạn muốn cài đặt (cách nhau bằng dấu cách, bỏ trống để bỏ " +"qua): " + +msgid "Copy ISO network configuration to installation" +msgstr "Sao chép cấu hình mạng của ISO sang thư mục cài đặt" + +msgid "" +"Use NetworkManager (necessary for configuring internet graphically in GNOME " +"and KDE)" +msgstr "" +"Dùng NetworkManager (cần thiết cho cấu hình mạng bằng giao diện đồ họa trên " +"GNOME và KDE)" + +msgid "Select one network interface to configure" +msgstr "Chọn một giao diện mạng để cấu hình" + +msgid "Select which mode to configure for \"{}\" or skip to use default mode \"{}\"" +msgstr "" +"Chọn chế độ nào để cấu hình cho \"{}\" hoặc bỏ qua để dùng cái mặc định " +"\"{}\"" + +#, python-brace-format +msgid "Enter the IP and subnet for {} (example: 192.168.0.5/24): " +msgstr "Nhập địa chỉ IP và subnet cho {} (ví dụ: 192.168.0.5/24): " + +msgid "Enter your gateway (router) IP address or leave blank for none: " +msgstr "Nhập địa chỉ IP gateway (router) của bạn hoặc bỏ trống nếu không có: " + +msgid "Enter your DNS servers (space separated, blank for none): " +msgstr "" +"Nhập máy chủ DNS mà bạn muốn (cách nhau bởi dấu cách, bỏ trống nếu muốn dùng" +" mặc định): " + +msgid "Select which filesystem your main partition should use" +msgstr "Chọn hệ thống tệp nào mà phân vùng chính của bạn nên dùng" + +msgid "Current partition layout" +msgstr "Bố cục phân vùng hiện tại" + +msgid "" +"Select what to do with\n" +"{}" +msgstr "" +"Chọn hành động cho\n" +"{}" + +msgid "Enter a desired filesystem type for the partition" +msgstr "Vui lòng nhập loại hệ thống tập tin mà bạn muốn cho phân vùng" + +msgid "" +"Enter the start location (in parted units: s, GB, %, etc. ; default: {}): " +msgstr "" +"Nhập vị trí bắt đầu của phân vùng (theo đơn vị phân vùng: s, GB, %, v.v.; " +"mặc định: {}):" + +msgid "Enter the end location (in parted units: s, GB, %, etc. ; ex: {}): " +msgstr "" +"Nhập vị trí kết thúc của phân vùng (theo đơn vị phân vùng: s, GB, %, v.v.; " +"mặc định: {}):" + +msgid "{} contains queued partitions, this will remove those, are you sure?" +msgstr "" +"{} chứa các phân vùng trong hàng đợi, hành động này sẽ loại bỏ chúng, bạn có" +" chắc chắn không?" + +msgid "" +"{}\n" +"\n" +"Select by index which partitions to delete" +msgstr "" +"{}\n" +"\n" +"Chọn số thứ tự của phân vùng cần xóa" + +msgid "" +"{}\n" +"\n" +"Select by index which partition to mount where" +msgstr "" +"{}\n" +"\n" +"Chọn số thứ tự phân vùng nàu cần gắn (mount)" + +msgid "" +" * Partition mount-points are relative to inside the installation, the boot " +"would be /boot as an example." +msgstr "" +" * Các điểm gắn phân vùng được tính tương đối với bên trong hệ thống mới, ví" +" dụ phân vùng khởi động sẽ là /boot." + +msgid "Select where to mount partition (leave blank to remove mountpoint): " +msgstr "Chọn điểm gắn cho phân vùng (để trống để xóa điểm gắn): " + +msgid "" +"{}\n" +"\n" +"Select which partition to mask for formatting" +msgstr "" +"{}\n" +"\n" +"Chọn phân vùng muốn đánh dấu để định dạng" + +msgid "" +"{}\n" +"\n" +"Select which partition to mark as encrypted" +msgstr "" +"{}\n" +"\n" +"Chọn phân vùng để mã hóa" + +msgid "" +"{}\n" +"\n" +"Select which partition to mark as bootable" +msgstr "" +"{}\n" +"\n" +"Chọn phân vùng làm phân vùng khởi động" + +msgid "" +"{}\n" +"\n" +"Select which partition to set a filesystem on" +msgstr "" +"{}\n" +"\n" +"Chọn phân vùng để đặt tệp hệ thống" + +msgid "Enter a desired filesystem type for the partition: " +msgstr "Chọn loại hệ thống tập tin mà bạn muốn cho phân vùng: " + +msgid "Archinstall language" +msgstr "Ngôn ngữ (Archinstall)" + +msgid "" +"Wipe all selected drives and use a best-effort default partition layout" +msgstr "Xóa sạch các ổ đĩa đã chọn và dùng bố cục phân vùng mặc định tốt nhất" + +msgid "" +"Select what to do with each individual drive (followed by partition usage)" +msgstr "Chọn việc với mỗi ổ đĩa (theo sau là cách sử dụng phân vùng)" + +#, fuzzy +msgid "Select what you wish to do with the selected block devices" +msgstr "Chọn những gì bạn muốn làm với các thiết bị khối đã chọn" + +#, fuzzy +msgid "" +"This is a list of pre-programmed profiles, they might make it easier to " +"install things like desktop environments" +msgstr "" +"Đây là danh sách các cấu hình được lập trình sẵn, chúng có thể giúp cài đặt " +"những thứ như môi trường máy tính để bàn dễ dàng hơn" + +msgid "Select keyboard layout" +msgstr "Bố cục bàn phím hiện tại" + +#, fuzzy +msgid "Select one of the regions to download packages from" +msgstr "Chọn một trong các khu vực để tải xuống các gói từ" + +#, fuzzy +msgid "Select one or more hard drives to use and configure" +msgstr "Chọn một hoặc nhiều ổ cứng để sử dụng và cấu hình" + +#, fuzzy +msgid "" +"For the best compatibility with your AMD hardware, you may want to use " +"either the all open-source or AMD / ATI options." +msgstr "" +"Để có khả năng tương thích tốt nhất với phần cứng AMD của bạn, bạn có thể " +"muốn sử dụng tùy chọn tất cả nguồn mở hoặc AMD / ATI." + +#, fuzzy +msgid "" +"For the best compatibility with your Intel hardware, you may want to use " +"either the all open-source or Intel options.\n" +msgstr "" +"Để có khả năng tương thích tốt nhất với phần cứng Intel của bạn, bạn có thể " +"muốn sử dụng tùy chọn tất cả nguồn mở hoặc Intel." + +#, fuzzy +msgid "" +"For the best compatibility with your Nvidia hardware, you may want to use " +"the Nvidia proprietary driver.\n" +msgstr "" +"Để có khả năng tương thích tốt nhất với phần cứng Nvidia của bạn, bạn có thể" +" muốn sử dụng trình điều khiển độc quyền của Nvidia." + +#, fuzzy +msgid "" +"\n" +"\n" +"Select a graphics driver or leave blank to install all open-source drivers" +msgstr "" +"Chọn trình điều khiển đồ họa hoặc để trống để cài đặt tất cả trình điều " +"khiển nguồn mở" + +#, fuzzy +msgid "All open-source (default)" +msgstr "Tất cả nguồn mở (mặc định)" + +#, fuzzy +msgid "Choose which kernels to use or leave blank for default \"{}\"" +msgstr "Chọn hạt nhân nào sẽ sử dụng hoặc để trống mặc định \"{}\"" + +msgid "Choose which locale language to use" +msgstr "Chọn ngôn ngữ địa phương muốn sử dụng" + +#, fuzzy +msgid "Choose which locale encoding to use" +msgstr "Chọn mã hóa ngôn ngữ nào sẽ sử dụng" + +#, fuzzy +msgid "Select one of the values shown below: " +msgstr "Chọn một trong các giá trị hiển thị bên dưới:" + +#, fuzzy +msgid "Select one or more of the options below: " +msgstr "Chọn một hoặc nhiều tùy chọn bên dưới:" + +msgid "Adding partition...." +msgstr "Đang thêm phân vùng...." + +#, fuzzy +msgid "" +"You need to enter a valid fs-type in order to continue. See `man parted` for" +" valid fs-type's." +msgstr "" +"Bạn cần nhập loại fs hợp lệ để tiếp tục. Xem `man parted` để biết loại fs " +"hợp lệ." + +#, fuzzy +msgid "Error: Listing profiles on URL \"{}\" resulted in:" +msgstr "Lỗi: Liệt kê hồ sơ trên URL \"{}\" dẫn đến:" + +#, fuzzy +msgid "Error: Could not decode \"{}\" result as JSON:" +msgstr "Lỗi: Không thể giải mã kết quả \" {} \" dưới dạng JSON:" + +msgid "Keyboard layout" +msgstr "Bố cục bàn phím" + +#, fuzzy +msgid "Mirror region" +msgstr "Vùng gương" + +msgid "Locale language" +msgstr "Ngôn ngữ địa phương" + +#, fuzzy +msgid "Locale encoding" +msgstr "Mã hóa miền địa phương" + +#, fuzzy +msgid "Console font" +msgstr "Phông chữ bảng điều khiển" + +#, fuzzy +msgid "Drive(s)" +msgstr "(Các) ổ đĩa" + +#, fuzzy +msgid "Disk layout" +msgstr "Bố trí đĩa" + +#, fuzzy +msgid "Encryption password" +msgstr "Mật khẩu mã hóa" + +#, fuzzy +msgid "Swap" +msgstr "Tráo đổi" + +msgid "Bootloader" +msgstr "Trình khởi động" + +#, fuzzy +msgid "Root password" +msgstr "Mật khẩu gốc" + +#, fuzzy +msgid "Superuser account" +msgstr "Tài khoản siêu người dùng" + +#, fuzzy +msgid "User account" +msgstr "Tài khoản người dùng" + +#, fuzzy +msgid "Profile" +msgstr "Hồ sơ" + +#, fuzzy +msgid "Audio" +msgstr "Âm thanh" + +#, fuzzy +msgid "Kernels" +msgstr "hạt nhân" + +#, fuzzy +msgid "Additional packages" +msgstr "Gói bổ sung" + +#, fuzzy +msgid "Network configuration" +msgstr "Cấu hình mạng" + +#, fuzzy +msgid "Automatic time sync (NTP)" +msgstr "Đồng bộ hóa thời gian tự động (NTP)" + +#, fuzzy +msgid "Install ({} config(s) missing)" +msgstr "Cài đặt (thiếu (các) cấu hình {})" + +#, fuzzy +msgid "" +"You decided to skip harddrive selection\n" +"and will use whatever drive-setup is mounted at {} (experimental)\n" +"WARNING: Archinstall won't check the suitability of this setup\n" +"Do you wish to continue?" +msgstr "" +"Bạn quyết định bỏ qua việc lựa chọn ổ cứng\n" +"và sẽ sử dụng bất kỳ thiết lập ổ đĩa nào được gắn ở {} (thử nghiệm)\n" +"CẢNH BÁO: Archinstall sẽ không kiểm tra tính phù hợp của thiết lập này\n" +"Bạn có muốn tiếp tục không?" + +#, fuzzy +msgid "Re-using partition instance: {}" +msgstr "Sử dụng lại phiên bản phân vùng: {}" + +#, fuzzy +msgid "Create a new partition" +msgstr "Tạo một phân vùng mới" + +#, fuzzy +msgid "Delete a partition" +msgstr "Xóa một phân vùng" + +#, fuzzy +msgid "Clear/Delete all partitions" +msgstr "Xóa/Xóa tất cả các phân vùng" + +#, fuzzy +msgid "Assign mount-point for a partition" +msgstr "Gán điểm gắn kết cho một phân vùng" + +#, fuzzy +msgid "Mark/Unmark a partition to be formatted (wipes data)" +msgstr "Đánh dấu/Bỏ đánh dấu phân vùng cần định dạng (xóa dữ liệu)" + +#, fuzzy +msgid "Mark/Unmark a partition as encrypted" +msgstr "Đánh dấu/Bỏ đánh dấu phân vùng là đã mã hóa" + +#, fuzzy +msgid "Mark/Unmark a partition as bootable (automatic for /boot)" +msgstr "" +"Đánh dấu/Bỏ đánh dấu phân vùng là có khả năng khởi động (tự động cho/boot)" + +#, fuzzy +msgid "Set desired filesystem for a partition" +msgstr "Đặt hệ thống tập tin mong muốn cho một phân vùng" + +#, fuzzy +msgid "Abort" +msgstr "Hủy bỏ" + +#, fuzzy +msgid "Hostname" +msgstr "Tên máy chủ" + +#, fuzzy +msgid "Not configured, unavailable unless setup manually" +msgstr "" +"Chưa được định cấu hình, không khả dụng trừ khi được thiết lập thủ công" + +msgid "Timezone" +msgstr "Múi giờ" + +#, fuzzy +msgid "Set/Modify the below options" +msgstr "Đặt/Sửa đổi các tùy chọn bên dưới" + +#, fuzzy +msgid "Install" +msgstr "Cài đặt" + +#, fuzzy +msgid "" +"Use ESC to skip\n" +"\n" +msgstr "Sử dụng ESC để bỏ qua" + +#, fuzzy +msgid "Suggest partition layout" +msgstr "Đề xuất bố trí phân vùng" + +#, fuzzy +msgid "Enter a password: " +msgstr "Nhập mật khẩu:" + +#, fuzzy +msgid "Enter a encryption password for {}" +msgstr "Nhập mật khẩu mã hóa cho {}" + +#, fuzzy +msgid "Enter disk encryption password (leave blank for no encryption): " +msgstr "Nhập mật khẩu mã hóa ổ đĩa (để trống nếu không mã hóa):" + +#, fuzzy +msgid "Create a required super-user with sudo privileges: " +msgstr "Tạo một siêu người dùng bắt buộc với các đặc quyền sudo:" + +#, fuzzy +msgid "Enter root password (leave blank to disable root): " +msgstr "Nhập mật khẩu root (để trống để tắt root):" + +#, fuzzy +msgid "Password for user \"{}\": " +msgstr "Mật khẩu cho người dùng \" {} \":" + +#, fuzzy +msgid "" +"Verifying that additional packages exist (this might take a few seconds)" +msgstr "Xác minh rằng các gói bổ sung tồn tại (việc này có thể mất vài giây)" + +#, fuzzy +msgid "" +"Would you like to use automatic time synchronization (NTP) with the default " +"time servers?\n" +msgstr "" +"Bạn có muốn sử dụng đồng bộ hóa thời gian tự động (NTP) với máy chủ thời " +"gian mặc định không?" + +#, fuzzy +msgid "" +"Hardware time and other post-configuration steps might be required in order for NTP to work.\n" +"For more information, please check the Arch wiki" +msgstr "" +"Thời gian phần cứng và các bước sau cấu hình khác có thể được yêu cầu để NTP hoạt động.\n" +"Để biết thêm thông tin, vui lòng kiểm tra Arch wiki" + +#, fuzzy +msgid "Enter a username to create an additional user (leave blank to skip): " +msgstr "Nhập tên người dùng để tạo thêm người dùng (để trống để bỏ qua):" + +#, fuzzy +msgid "Use ESC to skip\n" +msgstr "Sử dụng ESC để bỏ qua" + +#, fuzzy +msgid "" +"\n" +" Choose an object from the list, and select one of the available actions for it to execute" +msgstr "" +"Chọn một đối tượng từ danh sách và chọn một trong các hành động có sẵn để nó" +" thực thi" + +#, fuzzy +msgid "Cancel" +msgstr "Hủy bỏ" + +#, fuzzy +msgid "Confirm and exit" +msgstr "Xác nhận và thoát" + +#, fuzzy +msgid "Add" +msgstr "Thêm vào" + +#, fuzzy +msgid "Copy" +msgstr "Sao chép" + +#, fuzzy +msgid "Edit" +msgstr "Biên tập" + +#, fuzzy +msgid "Delete" +msgstr "Xóa bỏ" + +#, fuzzy +msgid "Select an action for '{}'" +msgstr "Chọn một hành động cho “{}”" + +#, fuzzy +msgid "Copy to new key:" +msgstr "Sao chép sang khóa mới:" + +#, fuzzy +msgid "Unknown nic type: {}. Possible values are {}" +msgstr "Loại nic không xác định: {} . Giá trị có thể là {}" + +#, fuzzy +msgid "" +"\n" +"This is your chosen configuration:" +msgstr "Đây là cấu hình bạn đã chọn:" + +#, fuzzy +msgid "" +"Pacman is already running, waiting maximum 10 minutes for it to terminate." +msgstr "Pacman đang chạy, đợi tối đa 10 phút để nó kết thúc." + +#, fuzzy +msgid "" +"Pre-existing pacman lock never exited. Please clean up any existing pacman " +"sessions before using archinstall." +msgstr "" +"Khóa pacman có sẵn không bao giờ thoát. Vui lòng dọn sạch mọi phiên pacman " +"hiện có trước khi sử dụng Archinstall." + +#, fuzzy +msgid "Choose which optional additional repositories to enable" +msgstr "Chọn kho bổ sung tùy chọn nào để kích hoạt" + +#, fuzzy +msgid "Add a user" +msgstr "Thêm người dùng" + +#, fuzzy +msgid "Change password" +msgstr "Thay đổi mật khẩu" + +#, fuzzy +msgid "Promote/Demote user" +msgstr "Thăng hạng/Hạ cấp người dùng" + +#, fuzzy +msgid "Delete User" +msgstr "Xóa người dùng" + +#, fuzzy +msgid "" +"\n" +"Define a new user\n" +msgstr "Xác định người dùng mới" + +#, fuzzy +msgid "User Name : " +msgstr "Tên người dùng:" + +#, fuzzy +msgid "Should {} be a superuser (sudoer)?" +msgstr "{} có nên là siêu người dùng (sudoer) không?" + +#, fuzzy +msgid "Define users with sudo privilege: " +msgstr "Xác định người dùng có đặc quyền sudo:" + +#, fuzzy +msgid "No network configuration" +msgstr "Không có cấu hình mạng" + +#, fuzzy +msgid "Set desired subvolumes on a btrfs partition" +msgstr "Đặt các tập con mong muốn trên phân vùng btrfs" + +#, fuzzy +msgid "" +"{}\n" +"\n" +"Select which partition to set subvolumes on" +msgstr "" +"{} \n" +"\n" +"Chọn phân vùng để đặt subvolume trên" + +#, fuzzy +msgid "Manage btrfs subvolumes for current partition" +msgstr "Quản lý subvolume btrfs cho phân vùng hiện tại" + +#, fuzzy +msgid "No configuration" +msgstr "Không có cấu hình" + +#, fuzzy +msgid "Save user configuration" +msgstr "Lưu cấu hình người dùng" + +#, fuzzy +msgid "Save user credentials" +msgstr "Lưu thông tin đăng nhập của người dùng" + +#, fuzzy +msgid "Save disk layout" +msgstr "Lưu bố cục đĩa" + +#, fuzzy +msgid "Save all" +msgstr "Lưu tất cả" + +#, fuzzy +msgid "Choose which configuration to save" +msgstr "Chọn cấu hình nào để lưu" + +#, fuzzy +msgid "Enter a directory for the configuration(s) to be saved: " +msgstr "Nhập thư mục để lưu (các) cấu hình:" + +#, fuzzy +msgid "Not a valid directory: {}" +msgstr "Thư mục không hợp lệ: {}" + +#, fuzzy +msgid "The password you are using seems to be weak," +msgstr "Mật khẩu bạn đang sử dụng có vẻ yếu," + +#, fuzzy +msgid "are you sure you want to use it?" +msgstr "bạn có chắc chắn muốn sử dụng nó không?" + +#, fuzzy +msgid "Optional repositories" +msgstr "Kho lưu trữ tùy chọn" + +#, fuzzy +msgid "Save configuration" +msgstr "Lưu cấu hình" + +#, fuzzy +msgid "Missing configurations:\n" +msgstr "Thiếu cấu hình:" + +#, fuzzy +msgid "Either root-password or at least 1 superuser must be specified" +msgstr "Phải chỉ định mật khẩu gốc hoặc ít nhất 1 siêu người dùng" + +#, fuzzy +msgid "Manage superuser accounts: " +msgstr "Quản lý tài khoản siêu người dùng:" + +#, fuzzy +msgid "Manage ordinary user accounts: " +msgstr "Quản lý tài khoản người dùng thông thường:" + +#, fuzzy +msgid " Subvolume :{:16}" +msgstr "Âm lượng phụ: {:16}" + +#, fuzzy +msgid " mounted at {:16}" +msgstr "gắn ở {:16}" + +#, fuzzy +msgid " with option {}" +msgstr "với tùy chọn {}" + +#, fuzzy +msgid "" +"\n" +" Fill the desired values for a new subvolume \n" +msgstr "Điền các giá trị mong muốn cho một subvolume mới" + +#, fuzzy +msgid "Subvolume name " +msgstr "Tên tập con" + +#, fuzzy +msgid "Subvolume mountpoint" +msgstr "Điểm gắn kết âm lượng phụ" + +#, fuzzy +msgid "Subvolume options" +msgstr "Tùy chọn âm lượng phụ" + +#, fuzzy +msgid "Save" +msgstr "Cứu" + +#, fuzzy +msgid "Subvolume name :" +msgstr "Tên tập con:" + +#, fuzzy +msgid "Select a mount point :" +msgstr "Chọn điểm gắn kết:" + +#, fuzzy +msgid "Select the desired subvolume options " +msgstr "Chọn các tùy chọn âm lượng phụ mong muốn" + +#, fuzzy +msgid "Define users with sudo privilege, by username: " +msgstr "Xác định người dùng có đặc quyền sudo, theo tên người dùng:" + +#, python-brace-format, fuzzy +msgid "[!] A log file has been created here: {}" +msgstr "[!] Một tệp nhật ký đã được tạo ở đây: {}" + +#, fuzzy +msgid "Would you like to use BTRFS subvolumes with a default structure?" +msgstr "Bạn có muốn sử dụng các tập con BTRFS có cấu trúc mặc định không?" + +#, fuzzy +msgid "Would you like to use BTRFS compression?" +msgstr "Bạn có muốn sử dụng tính năng nén BTRFS không?" + +#, fuzzy +msgid "Would you like to create a separate partition for /home?" +msgstr "Bạn có muốn tạo một phân vùng riêng cho /home không?" + +#, fuzzy +msgid "" +"The selected drives do not have the minimum capacity required for an " +"automatic suggestion\n" +msgstr "" +"Các ổ đĩa đã chọn không có dung lượng tối thiểu cần thiết để tự động đề xuất" + +#, fuzzy +msgid "Minimum capacity for /home partition: {}GB\n" +msgstr "Dung lượng tối thiểu cho phân vùng /home: {} GB" + +#, fuzzy +msgid "Minimum capacity for Arch Linux partition: {}GB" +msgstr "Dung lượng tối thiểu cho phân vùng Arch Linux: {} GB" + +#, fuzzy +msgid "Continue" +msgstr "Tiếp tục" + +#, fuzzy +msgid "yes" +msgstr "Đúng" + +#, fuzzy +msgid "no" +msgstr "KHÔNG" + +#, fuzzy +msgid "set: {}" +msgstr "bộ: {}" + +#, fuzzy +msgid "Manual configuration setting must be a list" +msgstr "Cài đặt cấu hình thủ công phải là một danh sách" + +#, fuzzy +msgid "No iface specified for manual configuration" +msgstr "Không có iface được chỉ định cho cấu hình thủ công" + +#, fuzzy +msgid "Manual nic configuration with no auto DHCP requires an IP address" +msgstr "Cấu hình nic thủ công không có DHCP tự động yêu cầu địa chỉ IP" + +#, fuzzy +msgid "Add interface" +msgstr "Thêm giao diện" + +#, fuzzy +msgid "Edit interface" +msgstr "Chỉnh sửa giao diện" + +#, fuzzy +msgid "Delete interface" +msgstr "Xóa giao diện" + +#, fuzzy +msgid "Select interface to add" +msgstr "Chọn giao diện để thêm" + +#, fuzzy +msgid "Manual configuration" +msgstr "Cấu hình thủ công" + +#, fuzzy +msgid "Mark/Unmark a partition as compressed (btrfs only)" +msgstr "Đánh dấu/Bỏ đánh dấu phân vùng là đã nén (chỉ btrfs)" + +#, fuzzy +msgid "" +"The password you are using seems to be weak, are you sure you want to use " +"it?" +msgstr "" +"Mật khẩu bạn đang sử dụng có vẻ yếu, bạn có chắc chắn muốn sử dụng nó không?" + +#, fuzzy +msgid "" +"Provides a selection of desktop environments and tiling window managers, " +"e.g. gnome, kde, sway" +msgstr "" +"Cung cấp lựa chọn môi trường máy tính để bàn và trình quản lý cửa sổ xếp " +"lớp, ví dụ: gnome, kde, lắc lư" + +#, fuzzy +msgid "Select your desired desktop environment" +msgstr "Chọn môi trường máy tính để bàn mong muốn của bạn" + +#, fuzzy +msgid "" +"A very basic installation that allows you to customize Arch Linux as you see" +" fit." +msgstr "" +"Một bản cài đặt rất cơ bản cho phép bạn tùy chỉnh Arch Linux khi bạn thấy " +"phù hợp." + +#, fuzzy +msgid "" +"Provides a selection of various server packages to install and enable, e.g. " +"httpd, nginx, mariadb" +msgstr "" +"Cung cấp nhiều lựa chọn gói máy chủ khác nhau để cài đặt và kích hoạt, ví " +"dụ: httpd, nginx, mariadb" + +#, fuzzy +msgid "" +"Choose which servers to install, if none then a minimal installation will be" +" done" +msgstr "" +"Chọn máy chủ nào sẽ cài đặt, nếu không có thì cài đặt tối thiểu sẽ được thực" +" hiện" + +#, fuzzy +msgid "Installs a minimal system as well as xorg and graphics drivers." +msgstr "" +"Cài đặt một hệ thống tối thiểu cũng như trình điều khiển xorg và đồ họa." + +#, fuzzy +msgid "Press Enter to continue." +msgstr "Nhấn Enter để tiếp tục." + +#, fuzzy +msgid "" +"Would you like to chroot into the newly created installation and perform " +"post-installation configuration?" +msgstr "" +"Bạn có muốn chroot vào bản cài đặt mới tạo và thực hiện cấu hình sau khi cài" +" đặt không?" + +#, fuzzy +msgid "Are you sure you want to reset this setting?" +msgstr "Bạn có chắc chắn muốn đặt lại cài đặt này không?" + +#, fuzzy +msgid "Select one or more hard drives to use and configure\n" +msgstr "Chọn một hoặc nhiều ổ cứng để sử dụng và cấu hình" + +#, fuzzy +msgid "Any modifications to the existing setting will reset the disk layout!" +msgstr "Mọi sửa đổi đối với cài đặt hiện có sẽ đặt lại bố cục đĩa!" + +#, fuzzy +msgid "" +"If you reset the harddrive selection this will also reset the current disk " +"layout. Are you sure?" +msgstr "" +"Nếu bạn đặt lại lựa chọn ổ cứng, thao tác này cũng sẽ đặt lại bố cục đĩa " +"hiện tại. Bạn có chắc không?" + +#, fuzzy +msgid "Save and exit" +msgstr "Lưu và thoát" + +#, fuzzy +msgid "" +"{}\n" +"contains queued partitions, this will remove those, are you sure?" +msgstr "" +"{} \n" +"chứa các phân vùng được xếp hàng đợi, thao tác này sẽ xóa những phân vùng đó, bạn có chắc không?" + +#, fuzzy +msgid "No audio server" +msgstr "Không có máy chủ âm thanh" + +#, fuzzy +msgid "(default)" +msgstr "(mặc định)" + +#, fuzzy +msgid "Use ESC to skip" +msgstr "Sử dụng ESC để bỏ qua" + +#, fuzzy +msgid "" +"Use CTRL+C to reset current selection\n" +"\n" +msgstr "Sử dụng CTRL+C để đặt lại lựa chọn hiện tại" + +#, fuzzy +msgid "Copy to: " +msgstr "Sao chép vào:" + +#, fuzzy +msgid "Edit: " +msgstr "Biên tập:" + +#, fuzzy +msgid "Key: " +msgstr "Chìa khóa:" + +#, fuzzy +msgid "Edit {}: " +msgstr "Chỉnh sửa {}:" + +#, fuzzy +msgid "Add: " +msgstr "Thêm vào:" + +#, fuzzy +msgid "Value: " +msgstr "Giá trị:" + +#, fuzzy +msgid "" +"You can skip selecting a drive and partitioning and use whatever drive-setup" +" is mounted at /mnt (experimental)" +msgstr "" +"Bạn có thể bỏ qua việc chọn ổ đĩa và phân vùng và sử dụng bất kỳ thiết lập ổ" +" đĩa nào được gắn tại /mnt (thử nghiệm)" + +#, fuzzy +msgid "Select one of the disks or skip and use /mnt as default" +msgstr "Chọn một trong các đĩa hoặc bỏ qua và sử dụng /mnt làm mặc định" + +#, fuzzy +msgid "Select which partitions to mark for formatting:" +msgstr "Chọn phân vùng cần đánh dấu để định dạng:" + +#, fuzzy +msgid "Use HSM to unlock encrypted drive" +msgstr "Sử dụng HSM để mở khóa ổ đĩa được mã hóa" + +#, fuzzy +msgid "Device" +msgstr "Thiết bị" + +#, fuzzy +msgid "Size" +msgstr "Kích cỡ" + +#, fuzzy +msgid "Free space" +msgstr "Không gian trống" + +#, fuzzy +msgid "Bus-type" +msgstr "Loại xe buýt" + +#, fuzzy +msgid "" +"Either root-password or at least 1 user with sudo privileges must be " +"specified" +msgstr "" +"Phải chỉ định mật khẩu gốc hoặc ít nhất 1 người dùng có đặc quyền sudo" + +#, fuzzy +msgid "Enter username (leave blank to skip): " +msgstr "Nhập tên người dùng (để trống để bỏ qua):" + +#, fuzzy +msgid "The username you entered is invalid. Try again" +msgstr "Tên người dùng bạn đã nhập không hợp lệ. Thử lại" + +#, fuzzy +msgid "Should \"{}\" be a superuser (sudo)?" +msgstr "\" {} \" có nên là siêu người dùng (sudo) không?" + +#, fuzzy +msgid "Select which partitions to encrypt" +msgstr "Chọn phân vùng để mã hóa" + +#, fuzzy +msgid "very weak" +msgstr "rất yếu" + +#, fuzzy +msgid "weak" +msgstr "yếu đuối" + +#, fuzzy +msgid "moderate" +msgstr "vừa phải" + +#, fuzzy +msgid "strong" +msgstr "mạnh" + +#, fuzzy +msgid "Add subvolume" +msgstr "Thêm âm lượng phụ" + +#, fuzzy +msgid "Edit subvolume" +msgstr "Chỉnh sửa âm lượng phụ" + +#, fuzzy +msgid "Delete subvolume" +msgstr "Xóa tập con" + +#, fuzzy +msgid "Configured {} interfaces" +msgstr "Giao diện {} được định cấu hình" + +#, fuzzy +msgid "" +"This option enables the number of parallel downloads that can occur during " +"installation" +msgstr "" +"Tùy chọn này cho phép số lượng tải xuống song song có thể xảy ra trong quá " +"trình cài đặt" + +#, fuzzy +msgid "" +"Enter the number of parallel downloads to be enabled.\n" +" (Enter a value between 1 to {})\n" +"Note:" +msgstr "" +"Nhập số lượng tải xuống song song sẽ được kích hoạt.\n" +" (Nhập giá trị từ 1 đến {} )\n" +"Lưu ý:" + +#, fuzzy +msgid "" +" - Maximum value : {} ( Allows {} parallel downloads, allows {} downloads " +"at a time )" +msgstr "" +"- Giá trị tối đa: {} (Cho phép tải song song {}, cho phép tải {} cùng một " +"lúc)" + +#, fuzzy +msgid "" +" - Minimum value : 1 ( Allows 1 parallel download, allows 2 downloads at a" +" time )" +msgstr "" +"- Giá trị tối thiểu: 1 (Cho phép tải 1 song song, cho phép tải 2 lần cùng " +"lúc)" + +#, fuzzy +msgid "" +" - Disable/Default : 0 ( Disables parallel downloading, allows only 1 " +"download at a time )" +msgstr "" +"- Tắt/Mặc định: 0 ( Vô hiệu hóa tải xuống song song, chỉ cho phép tải xuống " +"1 lần mỗi lần )" + +#, python-brace-format, fuzzy +msgid "" +"Invalid input! Try again with a valid input [1 to {max_downloads}, or 0 to " +"disable]" +msgstr "" +"Đầu vào không hợp lệ! Hãy thử lại với giá trị đầu vào hợp lệ [1 đến " +"{max_downloads} hoặc 0 để tắt]" + +#, fuzzy +msgid "Parallel Downloads" +msgstr "Tải xuống song song" + +#, fuzzy +msgid "Pacman" +msgstr "Pacman" + +#, fuzzy +msgid "Color" +msgstr "Màu sắc" + +#, python-brace-format, fuzzy +msgid "Enter the number of parallel downloads (1-{})" +msgstr "Nhập số lượt tải song song (1- {} )" + +#, fuzzy +msgid "Enable colored output for pacman" +msgstr "Kích hoạt đầu ra màu cho pacman" + +#, fuzzy +msgid "ESC to skip" +msgstr "ESC để bỏ qua" + +#, fuzzy +msgid "CTRL+C to reset" +msgstr "CTRL+C để đặt lại" + +#, fuzzy +msgid "TAB to select" +msgstr "TAB để chọn" + +#, fuzzy +msgid "[Default value: 0] > " +msgstr "[Giá trị mặc định: 0] >" + +#, fuzzy +msgid "" +"To be able to use this translation, please install a font manually that " +"supports the language." +msgstr "" +"Để có thể sử dụng bản dịch này, vui lòng cài đặt phông chữ hỗ trợ ngôn ngữ " +"theo cách thủ công." + +#, fuzzy +msgid "The font should be stored as {}" +msgstr "Phông chữ phải được lưu dưới dạng {}" + +#, fuzzy +msgid "Archinstall requires root privileges to run. See --help for more." +msgstr "Archinstall yêu cầu quyền root để chạy. Xem --help để biết thêm." + +#, fuzzy +msgid "Select an execution mode" +msgstr "Chọn chế độ thực hiện" + +#, python-brace-format, fuzzy +msgid "Unable to fetch profile from specified url: {}" +msgstr "Không thể tìm nạp hồ sơ từ url được chỉ định: {}" + +#, python-brace-format, fuzzy +msgid "" +"Profiles must have unique name, but profile definitions with duplicate name " +"found: {}" +msgstr "" +"Hồ sơ phải có tên duy nhất, nhưng tìm thấy định nghĩa hồ sơ có tên trùng " +"lặp: {}" + +#, fuzzy +msgid "Select one or more devices to use and configure" +msgstr "Chọn một hoặc nhiều thiết bị để sử dụng và định cấu hình" + +#, fuzzy +msgid "" +"If you reset the device selection this will also reset the current disk " +"layout. Are you sure?" +msgstr "" +"Nếu bạn đặt lại lựa chọn thiết bị, thao tác này cũng sẽ đặt lại bố cục đĩa " +"hiện tại. Bạn có chắc không?" + +#, fuzzy +msgid "Existing Partitions" +msgstr "Phân vùng hiện có" + +#, fuzzy +msgid "Select a partitioning option" +msgstr "Chọn một tùy chọn phân vùng" + +#, fuzzy +msgid "Enter the root directory of the mounted devices: " +msgstr "Nhập thư mục gốc của thiết bị được gắn:" + +#, python-brace-format, fuzzy +msgid "Minimum capacity for /home partition: {}GiB\n" +msgstr "Dung lượng tối thiểu cho phân vùng /home: {} GiB" + +#, python-brace-format, fuzzy +msgid "Minimum capacity for Arch Linux partition: {}GiB" +msgstr "Dung lượng tối thiểu cho phân vùng Arch Linux: {} GiB" + +#, fuzzy +msgid "" +"This is a list of pre-programmed profiles_bck, they might make it easier to " +"install things like desktop environments" +msgstr "" +"Đây là danh sách các profile_bck được lập trình sẵn, chúng có thể giúp cài " +"đặt những thứ như môi trường máy tính để bàn dễ dàng hơn" + +#, fuzzy +msgid "Current profile selection" +msgstr "Lựa chọn hồ sơ hiện tại" + +#, fuzzy +msgid "Remove all newly added partitions" +msgstr "Xóa tất cả các phân vùng mới được thêm vào" + +#, fuzzy +msgid "Assign mountpoint" +msgstr "Chỉ định điểm gắn kết" + +#, fuzzy +msgid "Mark/Unmark to be formatted (wipes data)" +msgstr "Đánh dấu/Bỏ đánh dấu để định dạng (xóa dữ liệu)" + +#, fuzzy +msgid "Mark/Unmark as bootable" +msgstr "Đánh dấu/Bỏ đánh dấu là có khả năng khởi động" + +#, fuzzy +msgid "Change filesystem" +msgstr "Thay đổi hệ thống tập tin" + +#, fuzzy +msgid "Mark/Unmark as compressed" +msgstr "Đánh dấu/Bỏ đánh dấu là đã nén" + +#, fuzzy +msgid "Set subvolumes" +msgstr "Đặt âm lượng phụ" + +#, fuzzy +msgid "Delete partition" +msgstr "Xóa phân vùng" + +#, fuzzy +msgid "Partition" +msgstr "Phân vùng" + +#, fuzzy +msgid "" +"This partition is currently encrypted, to format it a filesystem has to be " +"specified" +msgstr "" +"Phân vùng này hiện đã được mã hóa, để định dạng nó, phải chỉ định hệ thống " +"tập tin" + +#, fuzzy +msgid "" +"Partition mount-points are relative to inside the installation, the boot " +"would be /boot as an example." +msgstr "" +"Các điểm gắn kết phân vùng có liên quan đến bên trong quá trình cài đặt, " +"khởi động sẽ là /boot làm ví dụ." + +#, fuzzy +msgid "" +"If mountpoint /boot is set, then the partition will also be marked as " +"bootable." +msgstr "" +"Nếu điểm gắn kết/khởi động được đặt thì phân vùng cũng sẽ được đánh dấu là " +"có khả năng khởi động." + +#, fuzzy +msgid "Mountpoint: " +msgstr "Điểm gắn kết:" + +#, fuzzy +msgid "Current free sectors on device {}:" +msgstr "Các lĩnh vực miễn phí hiện tại trên thiết bị {}:" + +#, fuzzy +msgid "Total sectors: {}" +msgstr "Tổng số ngành: {}" + +#, fuzzy +msgid "Enter the start sector (default: {}): " +msgstr "Nhập khu vực bắt đầu (mặc định: {} ):" + +#, fuzzy +msgid "" +"Enter the end sector of the partition (percentage or block number, default: " +"{}): " +msgstr "" +"Nhập khu vực cuối của phân vùng (phần trăm hoặc số khối, mặc định: {} ):" + +#, fuzzy +msgid "This will remove all newly added partitions, continue?" +msgstr "Điều này sẽ loại bỏ tất cả các phân vùng mới được thêm vào, tiếp tục?" + +#, python-brace-format, fuzzy +msgid "Partition management: {}" +msgstr "Quản lý phân vùng: {}" + +#, python-brace-format, fuzzy +msgid "Total length: {}" +msgstr "Tổng chiều dài: {}" + +#, fuzzy +msgid "Encryption type" +msgstr "Kiểu mã hóa" + +#, fuzzy +msgid "Iteration time" +msgstr "Thời gian lặp lại" + +#, fuzzy +msgid "Enter iteration time for LUKS encryption (in milliseconds)" +msgstr "Nhập thời gian lặp lại để mã hóa LUKS (tính bằng mili giây)" + +#, fuzzy +msgid "Higher values increase security but slow down boot time" +msgstr "Giá trị cao hơn tăng cường bảo mật nhưng làm chậm thời gian khởi động" + +#, fuzzy +msgid "Default: 10000ms, Recommended range: 1000-60000" +msgstr "Mặc định: 10000ms, Phạm vi khuyến nghị: 1000-60000" + +#, fuzzy +msgid "Iteration time cannot be empty" +msgstr "Thời gian lặp lại không được để trống" + +#, fuzzy +msgid "Iteration time must be at least 100ms" +msgstr "Thời gian lặp phải ít nhất là 100ms" + +#, fuzzy +msgid "Iteration time must be at most 120000ms" +msgstr "Thời gian lặp lại tối đa là 120000ms" + +#, fuzzy +msgid "Please enter a valid number" +msgstr "Vui lòng nhập một số hợp lệ" + +#, fuzzy +msgid "Partitions" +msgstr "Phân vùng" + +#, fuzzy +msgid "No HSM devices available" +msgstr "Không có thiết bị HSM nào" + +#, fuzzy +msgid "Partitions to be encrypted" +msgstr "Các phân vùng được mã hóa" + +#, fuzzy +msgid "Select disk encryption option" +msgstr "Chọn tùy chọn mã hóa ổ đĩa" + +#, fuzzy +msgid "Select a FIDO2 device to use for HSM" +msgstr "Chọn thiết bị FIDO2 để sử dụng cho HSM" + +#, fuzzy +msgid "Use a best-effort default partition layout" +msgstr "Sử dụng bố cục phân vùng mặc định với nỗ lực tốt nhất" + +#, fuzzy +msgid "Manual Partitioning" +msgstr "Phân vùng thủ công" + +#, fuzzy +msgid "Pre-mounted configuration" +msgstr "Cấu hình được gắn sẵn" + +#, fuzzy +msgid "Unknown" +msgstr "Không xác định" + +#, fuzzy +msgid "Partition encryption" +msgstr "Mã hóa phân vùng" + +#, python-brace-format, fuzzy +msgid " ! Formatting {} in " +msgstr "! Định dạng {} trong" + +#, fuzzy +msgid "← Back" +msgstr "← Quay lại" + +#, fuzzy +msgid "Disk encryption" +msgstr "Mã hóa ổ đĩa" + +#, fuzzy +msgid "Configuration" +msgstr "Cấu hình" + +#, fuzzy +msgid "Password" +msgstr "Mật khẩu" + +#, fuzzy +msgid "All settings will be reset, are you sure?" +msgstr "Tất cả cài đặt sẽ được đặt lại, bạn có chắc chắn không?" + +#, fuzzy +msgid "Back" +msgstr "Mặt sau" + +#, fuzzy +msgid "Please chose which greeter to install for the chosen profiles: {}" +msgstr "Vui lòng chọn cài đặt lời chào cho các cấu hình đã chọn: {}" + +#, python-brace-format, fuzzy +msgid "Environment type: {}" +msgstr "Loại môi trường: {}" + +#, fuzzy +msgid "" +"The proprietary Nvidia driver is not supported by Sway. It is likely that " +"you will run into issues, are you okay with that?" +msgstr "" +"Trình điều khiển Nvidia độc quyền không được Sway hỗ trợ. Có khả năng là bạn" +" sẽ gặp phải vấn đề, bạn có ổn với điều đó không?" + +#, fuzzy +msgid "Installed packages" +msgstr "Gói đã cài đặt" + +#, fuzzy +msgid "Add profile" +msgstr "Thêm hồ sơ" + +#, fuzzy +msgid "Edit profile" +msgstr "Chỉnh sửa hồ sơ" + +#, fuzzy +msgid "Delete profile" +msgstr "Xóa hồ sơ" + +#, fuzzy +msgid "Profile name: " +msgstr "Tên hồ sơ:" + +#, fuzzy +msgid "The profile name you entered is already in use. Try again" +msgstr "Tên hồ sơ bạn nhập đã được sử dụng. Thử lại" + +#, fuzzy +msgid "" +"Packages to be install with this profile (space separated, leave blank to " +"skip): " +msgstr "" +"Các gói sẽ được cài đặt với cấu hình này (cách nhau bằng dấu cách, để trống " +"để bỏ qua):" + +#, fuzzy +msgid "" +"Services to be enabled with this profile (space separated, leave blank to " +"skip): " +msgstr "" +"Các dịch vụ được kích hoạt với cấu hình này (cách nhau bằng dấu cách, để " +"trống để bỏ qua):" + +#, fuzzy +msgid "Should this profile be enabled for installation?" +msgstr "Cấu hình này có nên được kích hoạt để cài đặt không?" + +#, fuzzy +msgid "Create your own" +msgstr "Tạo của riêng bạn" + +#, fuzzy +msgid "" +"\n" +"Select a graphics driver or leave blank to install all open-source drivers" +msgstr "" +"Chọn trình điều khiển đồ họa hoặc để trống để cài đặt tất cả trình điều " +"khiển nguồn mở" + +#, fuzzy +msgid "" +"Sway needs access to your seat (collection of hardware devices i.e. " +"keyboard, mouse, etc)" +msgstr "" +"Sway cần quyền truy cập vào chỗ ngồi của bạn (bộ sưu tập các thiết bị phần " +"cứng, ví dụ như bàn phím, chuột, v.v.)" + +#, fuzzy +msgid "" +"\n" +"\n" +"Choose an option to give Sway access to your hardware" +msgstr "" +"Chọn một tùy chọn để cấp cho Sway quyền truy cập vào phần cứng của bạn" + +#, fuzzy +msgid "Graphics driver" +msgstr "Trình điều khiển đồ họa" + +#, fuzzy +msgid "Greeter" +msgstr "người chào hỏi" + +#, fuzzy +msgid "Please chose which greeter to install" +msgstr "Vui lòng chọn lời chào nào để cài đặt" + +#, fuzzy +msgid "This is a list of pre-programmed default_profiles" +msgstr "Đây là danh sách default_profiles được lập trình sẵn" + +#, fuzzy +msgid "Disk configuration" +msgstr "Cấu hình đĩa" + +#, fuzzy +msgid "Profiles" +msgstr "Hồ sơ" + +#, fuzzy +msgid "Finding possible directories to save configuration files ..." +msgstr "Tìm các thư mục có thể lưu file cấu hình..." + +#, fuzzy +msgid "Select directory (or directories) for saving configuration files" +msgstr "Chọn thư mục (hoặc các thư mục) để lưu file cấu hình" + +#, fuzzy +msgid "Add a custom mirror" +msgstr "Thêm một tấm gương tùy chỉnh" + +#, fuzzy +msgid "Change custom mirror" +msgstr "Thay đổi gương tùy chỉnh" + +#, fuzzy +msgid "Delete custom mirror" +msgstr "Xóa gương tùy chỉnh" + +#, fuzzy +msgid "Enter name (leave blank to skip): " +msgstr "Nhập tên (để trống để bỏ qua):" + +#, fuzzy +msgid "Enter url (leave blank to skip): " +msgstr "Nhập url (để trống để bỏ qua):" + +#, fuzzy +msgid "Select signature check option" +msgstr "Chọn tùy chọn kiểm tra chữ ký" + +#, fuzzy +msgid "Select signature option" +msgstr "Chọn tùy chọn chữ ký" + +#, fuzzy +msgid "Custom mirrors" +msgstr "Gương tùy chỉnh" + +#, fuzzy +msgid "Defined" +msgstr "Đã xác định" + +#, fuzzy +msgid "Save user configuration (including disk layout)" +msgstr "Lưu cấu hình người dùng (bao gồm cả bố cục đĩa)" + +#, fuzzy +msgid "" +"Enter a directory for the configuration(s) to be saved (tab completion enabled)\n" +"Save directory: " +msgstr "" +"Nhập thư mục để lưu (các) cấu hình (bật tính năng hoàn thành tab)\n" +"Lưu thư mục:" + +#, fuzzy +msgid "" +"Do you want to save {} configuration file(s) in the following location?\n" +"\n" +"{}" +msgstr "" +"Bạn có muốn lưu (các) tệp cấu hình {} ở vị trí sau không?\n" +"\n" +" {}" + +#, fuzzy +msgid "Saving {} configuration files to {}" +msgstr "Lưu tệp cấu hình {} vào {}" + +#, fuzzy +msgid "Mirrors" +msgstr "Gương" + +#, fuzzy +msgid "Mirror regions" +msgstr "Vùng phản chiếu" + +#, fuzzy +msgid "" +" - Maximum value : {} ( Allows {} parallel downloads, allows " +"{max_downloads+1} downloads at a time )" +msgstr "" +"- Giá trị tối đa: {} (Cho phép tải song song {}, cho phép tải " +"{max_downloads+1} cùng lúc)" + +#, fuzzy +msgid "Invalid input! Try again with a valid input [1 to {}, or 0 to disable]" +msgstr "" +"Đầu vào không hợp lệ! Hãy thử lại với giá trị đầu vào hợp lệ [1 đến {} hoặc " +"0 để tắt]" + +#, fuzzy +msgid "Locales" +msgstr "Ngôn ngữ" + +#, fuzzy +msgid "" +"Use NetworkManager (necessary to configure internet graphically in GNOME and" +" KDE)" +msgstr "" +"Sử dụng Trình quản lý mạng (cần thiết để định cấu hình đồ họa internet trong" +" Gnome và KDE)" + +#, fuzzy +msgid "Total: {} / {}" +msgstr "Tổng cộng: {}/{}" + +#, fuzzy +msgid "All entered values can be suffixed with a unit: B, KB, KiB, MB, MiB..." +msgstr "" +"Tất cả các giá trị đã nhập có thể được thêm vào một đơn vị: B, KB, KiB, MB, " +"MiB..." + +#, fuzzy +msgid "If no unit is provided, the value is interpreted as sectors" +msgstr "Nếu không có đơn vị nào được cung cấp, giá trị được hiểu là các ngành" + +#, fuzzy +msgid "Enter start (default: sector {}): " +msgstr "Nhập bắt đầu (mặc định: khu vực {} ):" + +#, fuzzy +msgid "Enter end (default: {}): " +msgstr "Nhập cuối (mặc định: {} ):" + +#, fuzzy +msgid "Unable to determine fido2 devices. Is libfido2 installed?" +msgstr "Không thể xác định thiết bị fido2. libfido2 đã được cài đặt chưa?" + +#, fuzzy +msgid "Path" +msgstr "Con đường" + +#, fuzzy +msgid "Manufacturer" +msgstr "nhà sản xuất" + +#, fuzzy +msgid "Product" +msgstr "Sản phẩm" + +#, python-brace-format, fuzzy +msgid "Invalid configuration: {}" +msgstr "Cấu hình không hợp lệ: {}" + +#, fuzzy +msgid "Ready to install" +msgstr "Sẵn sàng để cài đặt" + +#, fuzzy +msgid "Disks" +msgstr "Đĩa" + +#, fuzzy +msgid "Packages" +msgstr "Gói" + +#, fuzzy +msgid "Network" +msgstr "Mạng" + +#, fuzzy +msgid "Locale" +msgstr "Ngôn ngữ" + +#, fuzzy +msgid "Type" +msgstr "Kiểu" + +#, fuzzy +msgid "" +"This option enables the number of parallel downloads that can occur during " +"package downloads" +msgstr "" +"Tùy chọn này cho phép số lượng tải xuống song song có thể xảy ra trong quá " +"trình tải xuống gói" + +#, fuzzy +msgid "" +"Enter the number of parallel downloads to be enabled.\n" +"\n" +"Note:\n" +msgstr "" +"Nhập số lượng tải xuống song song sẽ được kích hoạt.\n" +"\n" +"Ghi chú:" + +#, python-brace-format, fuzzy +msgid "" +" - Maximum recommended value : {} ( Allows {} parallel downloads at a time )" +msgstr "" +"- Giá trị khuyến nghị tối đa: {} (Cho phép tải xuống song song {} cùng một " +"lúc)" + +#, fuzzy +msgid "" +" - Disable/Default : 0 ( Disables parallel downloading, allows only 1 " +"download at a time )\n" +msgstr "" +"- Tắt/Mặc định: 0 ( Vô hiệu hóa tải xuống song song, chỉ cho phép tải xuống " +"1 lần mỗi lần )" + +#, fuzzy +msgid "Invalid input! Try again with a valid input [or 0 to disable]" +msgstr "" +"Đầu vào không hợp lệ! Hãy thử lại với thông tin đầu vào hợp lệ [hoặc 0 để " +"tắt]" + +#, fuzzy +msgid "" +"Hyprland needs access to your seat (collection of hardware devices i.e. " +"keyboard, mouse, etc)" +msgstr "" +"Hyprland cần quyền truy cập vào chỗ ngồi của bạn (bộ sưu tập các thiết bị " +"phần cứng như bàn phím, chuột, v.v.)" + +#, fuzzy +msgid "" +"\n" +"\n" +"Choose an option to give Hyprland access to your hardware" +msgstr "" +"Chọn một tùy chọn để cấp cho Hyprland quyền truy cập vào phần cứng của bạn" + +#, fuzzy +msgid "" +"All entered values can be suffixed with a unit: %, B, KB, KiB, MB, MiB..." +msgstr "" +"Tất cả các giá trị đã nhập có thể được gắn với một đơn vị: %, B, KB, KiB, " +"MB, MiB..." + +#, fuzzy +msgid "Would you like to use unified kernel images?" +msgstr "Bạn có muốn sử dụng hình ảnh hạt nhân hợp nhất không?" + +#, fuzzy +msgid "Unified kernel images" +msgstr "Hình ảnh hạt nhân hợp nhất" + +msgid "Waiting for time sync (timedatectl show) to complete." +msgstr "" + +#, fuzzy +msgid "" +"Time syncronization not completing, while you wait - check the docs for " +"workarounds: https://archinstall.readthedocs.io/" +msgstr "" +"Quá trình đồng bộ hóa thời gian không hoàn tất trong khi bạn chờ đợi - hãy " +"kiểm tra tài liệu để biết cách giải quyết: " +"https://archinstall.readthedocs.io/" + +#, fuzzy +msgid "" +"Skipping waiting for automatic time sync (this can cause issues if time is " +"out of sync during installation)" +msgstr "" +"Bỏ qua việc chờ đồng bộ hóa thời gian tự động (điều này có thể gây ra sự cố " +"nếu thời gian không đồng bộ trong khi cài đặt)" + +#, fuzzy +msgid "" +"Waiting for Arch Linux keyring sync (archlinux-keyring-wkd-sync) to " +"complete." +msgstr "" +"Đang chờ đồng bộ hóa khóa Arch Linux (archlinux-keyring-wkd-sync) hoàn tất." + +#, fuzzy +msgid "Selected profiles: " +msgstr "Hồ sơ đã chọn:" + +#, fuzzy +msgid "" +"Time synchronization not completing, while you wait - check the docs for " +"workarounds: https://archinstall.readthedocs.io/" +msgstr "" +"Đồng bộ hóa thời gian không hoàn tất, trong khi bạn chờ đợi - hãy kiểm tra " +"tài liệu để biết cách giải quyết: https://archinstall.readthedocs.io/" + +#, fuzzy +msgid "Mark/Unmark as nodatacow" +msgstr "Đánh dấu/Bỏ đánh dấu là gật đầu" + +#, fuzzy +msgid "Would you like to use compression or disable CoW?" +msgstr "Bạn muốn sử dụng tính năng nén hay tắt CoW?" + +#, fuzzy +msgid "Use compression" +msgstr "Sử dụng tính năng nén" + +#, fuzzy +msgid "Disable Copy-on-Write" +msgstr "Tắt tính năng Sao chép khi ghi" + +#, fuzzy +msgid "" +"Provides a selection of desktop environments and tiling window managers, " +"e.g. GNOME, KDE Plasma, Sway" +msgstr "" +"Cung cấp lựa chọn môi trường máy tính để bàn và trình quản lý cửa sổ xếp " +"lớp, ví dụ: Gnome, KDE Plasma, Sway" + +#, python-brace-format, fuzzy +msgid "Configuration type: {}" +msgstr "Loại cấu hình: {}" + +#, fuzzy +msgid "LVM configuration type" +msgstr "Loại cấu hình LVM" + +#, fuzzy +msgid "" +"LVM disk encryption with more than 2 partitions is currently not supported" +msgstr "Mã hóa đĩa LVM với hơn 2 phân vùng hiện không được hỗ trợ" + +#, fuzzy +msgid "" +"Use NetworkManager (necessary to configure internet graphically in GNOME and" +" KDE Plasma)" +msgstr "" +"Sử dụng Trình quản lý mạng (cần thiết để định cấu hình đồ họa internet trong" +" Gnome và KDE Plasma)" + +#, fuzzy +msgid "Select a LVM option" +msgstr "Chọn tùy chọn LVM" + +#, fuzzy +msgid "Partitioning" +msgstr "Phân vùng" + +#, fuzzy +msgid "Logical Volume Management (LVM)" +msgstr "Quản lý khối hợp lý (LVM)" + +#, fuzzy +msgid "Physical volumes" +msgstr "Khối lượng vật lý" + +#, fuzzy +msgid "Volumes" +msgstr "Tập" + +#, fuzzy +msgid "LVM volumes" +msgstr "Khối lượng LVM" + +#, fuzzy +msgid "LVM volumes to be encrypted" +msgstr "Khối lượng LVM được mã hóa" + +#, fuzzy +msgid "Select which LVM volumes to encrypt" +msgstr "Chọn khối LVM nào sẽ mã hóa" + +#, fuzzy +msgid "Default layout" +msgstr "Bố cục mặc định" + +#, fuzzy +msgid "No Encryption" +msgstr "Không mã hóa" + +#, fuzzy +msgid "LUKS" +msgstr "LUKS" + +#, fuzzy +msgid "LVM on LUKS" +msgstr "LVM trên LUKS" + +#, fuzzy +msgid "LUKS on LVM" +msgstr "LUKS trên LVM" + +#, fuzzy +msgid "Yes" +msgstr "Đúng" + +#, fuzzy +msgid "No" +msgstr "KHÔNG" + +#, fuzzy +msgid "Archinstall help" +msgstr "Trợ giúp cài đặt Arch" + +#, fuzzy +msgid " (default)" +msgstr "(mặc định)" + +#, fuzzy +msgid "Press Ctrl+h for help" +msgstr "Nhấn Ctrl+h để được trợ giúp" + +#, fuzzy +msgid "Choose an option to give Sway access to your hardware" +msgstr "" +"Chọn một tùy chọn để cấp cho Sway quyền truy cập vào phần cứng của bạn" + +#, fuzzy +msgid "Seat access" +msgstr "Quyền truy cập chỗ ngồi" + +#, fuzzy +msgid "Mountpoint" +msgstr "điểm gắn kết" + +#, fuzzy +msgid "HSM" +msgstr "HSM" + +#, fuzzy +msgid "Enter disk encryption password (leave blank for no encryption)" +msgstr "Nhập mật khẩu mã hóa ổ đĩa (để trống nếu không mã hóa)" + +#, fuzzy +msgid "Disk encryption password" +msgstr "Mật khẩu mã hóa ổ đĩa" + +#, fuzzy +msgid "Partition - New" +msgstr "Phân vùng - Mới" + +#, fuzzy +msgid "Filesystem" +msgstr "Hệ thống tập tin" + +#, fuzzy +msgid "Invalid size" +msgstr "Kích thước không hợp lệ" + +#, fuzzy +msgid "Start (default: sector {}): " +msgstr "Bắt đầu (mặc định: khu vực {} ):" + +#, fuzzy +msgid "End (default: {}): " +msgstr "Kết thúc (mặc định: {} ):" + +#, fuzzy +msgid "Subvolume name" +msgstr "Tên tập con" + +#, fuzzy +msgid "Disk configuration type" +msgstr "Kiểu cấu hình đĩa" + +#, fuzzy +msgid "Root mount directory" +msgstr "Thư mục gắn kết gốc" + +#, fuzzy +msgid "Select language" +msgstr "Chọn ngôn ngữ" + +#, fuzzy +msgid "" +"Write additional packages to install (space separated, leave blank to skip)" +msgstr "Ghi thêm các gói cần cài đặt (cách nhau dấu cách, để trống để bỏ qua)" + +#, fuzzy +msgid "Invalid download number" +msgstr "Số tải xuống không hợp lệ" + +#, fuzzy +msgid "Number downloads" +msgstr "Số lượt tải xuống" + +#, fuzzy +msgid "The username you entered is invalid" +msgstr "Tên người dùng bạn đã nhập không hợp lệ" + +#, fuzzy +msgid "Username" +msgstr "Tên người dùng" + +#, python-brace-format, fuzzy +msgid "Should \"{}\" be a superuser (sudo)?\n" +msgstr "\" {} \" có nên là siêu người dùng (sudo) không?" + +#, fuzzy +msgid "Interfaces" +msgstr "Giao diện" + +#, fuzzy +msgid "You need to enter a valid IP in IP-config mode" +msgstr "Bạn cần nhập IP hợp lệ ở chế độ IP-config" + +#, fuzzy +msgid "Modes" +msgstr "Chế độ" + +#, fuzzy +msgid "IP address" +msgstr "địa chỉ IP" + +#, fuzzy +msgid "Enter your gateway (router) IP address (leave blank for none)" +msgstr "" +"Nhập địa chỉ IP cổng (bộ định tuyến) của bạn (không để trống nếu không)" + +#, fuzzy +msgid "Gateway address" +msgstr "Địa chỉ cổng" + +#, fuzzy +msgid "Enter your DNS servers with space separated (leave blank for none)" +msgstr "" +"Nhập máy chủ DNS của bạn có khoảng trắng được phân tách (không để trống)" + +#, fuzzy +msgid "DNS servers" +msgstr "máy chủ DNS" + +#, fuzzy +msgid "Configure interfaces" +msgstr "Cấu hình giao diện" + +#, fuzzy +msgid "Kernel" +msgstr "hạt nhân" + +#, fuzzy +msgid "UEFI is not detected and some options are disabled" +msgstr "UEFI không được phát hiện và một số tùy chọn bị tắt" + +#, fuzzy +msgid "Info" +msgstr "Thông tin" + +#, fuzzy +msgid "The proprietary Nvidia driver is not supported by Sway." +msgstr "Trình điều khiển Nvidia độc quyền không được Sway hỗ trợ." + +#, fuzzy +msgid "It is likely that you will run into issues, are you okay with that?" +msgstr "Có khả năng là bạn sẽ gặp phải vấn đề, bạn có ổn với điều đó không?" + +#, fuzzy +msgid "Main profile" +msgstr "Hồ sơ chính" + +#, fuzzy +msgid "Confirm password" +msgstr "Xác nhận mật khẩu" + +#, fuzzy +msgid "The confirmation password did not match, please try again" +msgstr "Mật khẩu xác nhận không khớp, vui lòng thử lại" + +#, fuzzy +msgid "Not a valid directory" +msgstr "Không phải là một thư mục hợp lệ" + +#, fuzzy +msgid "Would you like to continue?" +msgstr "Bạn có muốn tiếp tục không?" + +#, fuzzy +msgid "Directory" +msgstr "Thư mục" + +#, fuzzy +msgid "" +"Enter a directory for the configuration(s) to be saved (tab completion " +"enabled)" +msgstr "Nhập thư mục để lưu (các) cấu hình (bật tính năng hoàn thành tab)" + +#, python-brace-format, fuzzy +msgid "Do you want to save the configuration file(s) to {}?" +msgstr "Bạn có muốn lưu (các) tệp cấu hình vào {} không?" + +#, fuzzy +msgid "Enabled" +msgstr "Đã bật" + +#, fuzzy +msgid "Disabled" +msgstr "Tàn tật" + +#, fuzzy +msgid "" +"Please submit this issue (and file) to " +"https://github.com/archlinux/archinstall/issues" +msgstr "" +"Vui lòng gửi vấn đề này (và tệp) tới " +"https://github.com/archlinux/archinstall/issues" + +#, fuzzy +msgid "Mirror name" +msgstr "Tên gương" + +#, fuzzy +msgid "Url" +msgstr "Url" + +#, fuzzy +msgid "Select signature check" +msgstr "Chọn kiểm tra chữ ký" + +#, fuzzy +msgid "Select execution mode" +msgstr "Chọn chế độ thực hiện" + +#, fuzzy +msgid "Press ? for help" +msgstr "Nhấn ? để được giúp đỡ" + +#, fuzzy +msgid "Choose an option to give Hyprland access to your hardware" +msgstr "" +"Chọn một tùy chọn để cấp cho Hyprland quyền truy cập vào phần cứng của bạn" + +#, fuzzy +msgid "Additional repositories" +msgstr "Kho bổ sung" + +#, fuzzy +msgid "NTP" +msgstr "NTP" + +#, fuzzy +msgid "Swap on zram" +msgstr "Trao đổi trên zram" + +#, fuzzy +msgid "Name" +msgstr "Tên" + +#, fuzzy +msgid "Signature check" +msgstr "Kiểm tra chữ ký" + +#, python-brace-format, fuzzy +msgid "Selected free space segment on device {}:" +msgstr "Phân đoạn không gian trống đã chọn trên thiết bị {} :" + +#, python-brace-format, fuzzy +msgid "Size: {} / {}" +msgstr "Kích thước: {}/{}" + +#, python-brace-format, fuzzy +msgid "Size (default: {}): " +msgstr "Kích thước (mặc định: {} ):" + +#, fuzzy +msgid "HSM device" +msgstr "thiết bị HSM" + +#, fuzzy +msgid "Some packages could not be found in the repository" +msgstr "Không thể tìm thấy một số gói trong kho lưu trữ" + +#, fuzzy +msgid "User" +msgstr "người dùng" + +#, fuzzy +msgid "The specified configuration will be applied" +msgstr "Cấu hình được chỉ định sẽ được áp dụng" + +#, fuzzy +msgid "Wipe" +msgstr "Lau đi" + +#, fuzzy +msgid "Mark/Unmark as XBOOTLDR" +msgstr "Đánh dấu/Bỏ đánh dấu là XBOOTLDR" + +#, fuzzy +msgid "Loading packages..." +msgstr "Đang tải gói..." + +#, fuzzy +msgid "" +"Select any packages from the below list that should be installed " +"additionally" +msgstr "Chọn bất kỳ gói nào từ danh sách bên dưới cần được cài đặt bổ sung" + +#, fuzzy +msgid "Add a custom repository" +msgstr "Thêm kho lưu trữ tùy chỉnh" + +#, fuzzy +msgid "Change custom repository" +msgstr "Thay đổi kho lưu trữ tùy chỉnh" + +#, fuzzy +msgid "Delete custom repository" +msgstr "Xóa kho lưu trữ tùy chỉnh" + +#, fuzzy +msgid "Repository name" +msgstr "Tên kho lưu trữ" + +#, fuzzy +msgid "Add a custom server" +msgstr "Thêm một máy chủ tùy chỉnh" + +#, fuzzy +msgid "Change custom server" +msgstr "Thay đổi máy chủ tùy chỉnh" + +#, fuzzy +msgid "Delete custom server" +msgstr "Xóa máy chủ tùy chỉnh" + +#, fuzzy +msgid "Server url" +msgstr "Url máy chủ" + +#, fuzzy +msgid "Select regions" +msgstr "Chọn vùng" + +#, fuzzy +msgid "Add custom servers" +msgstr "Thêm máy chủ tùy chỉnh" + +#, fuzzy +msgid "Add custom repository" +msgstr "Thêm kho lưu trữ tùy chỉnh" + +#, fuzzy +msgid "Loading mirror regions..." +msgstr "Đang tải các vùng phản chiếu..." + +#, fuzzy +msgid "Mirrors and repositories" +msgstr "Gương và kho lưu trữ" + +#, fuzzy +msgid "Selected mirror regions" +msgstr "Vùng phản chiếu được chọn" + +#, fuzzy +msgid "Custom servers" +msgstr "Máy chủ tùy chỉnh" + +#, fuzzy +msgid "Custom repositories" +msgstr "Kho tùy chỉnh" + +#, fuzzy +msgid "Only ASCII characters are supported" +msgstr "Chỉ hỗ trợ các ký tự ASCII" + +#, fuzzy +msgid "Show help" +msgstr "Hiển thị trợ giúp" + +#, fuzzy +msgid "Exit help" +msgstr "Thoát trợ giúp" + +#, fuzzy +msgid "Preview scroll up" +msgstr "Xem trước cuộn lên" + +#, fuzzy +msgid "Preview scroll down" +msgstr "Xem trước cuộn xuống" + +#, fuzzy +msgid "Move up" +msgstr "Di chuyển lên" + +#, fuzzy +msgid "Move down" +msgstr "Di chuyển xuống" + +#, fuzzy +msgid "Move right" +msgstr "Di chuyển sang phải" + +#, fuzzy +msgid "Move left" +msgstr "Di chuyển sang trái" + +#, fuzzy +msgid "Jump to entry" +msgstr "Chuyển đến mục nhập" + +#, fuzzy +msgid "Skip selection (if available)" +msgstr "Bỏ qua lựa chọn (nếu có)" + +#, fuzzy +msgid "Reset selection (if available)" +msgstr "Đặt lại lựa chọn (nếu có)" + +#, fuzzy +msgid "Select on single select" +msgstr "Chọn trên một lần chọn" + +#, fuzzy +msgid "Select on multi select" +msgstr "Chọn trên nhiều lựa chọn" + +#, fuzzy +msgid "Reset" +msgstr "Cài lại" + +#, fuzzy +msgid "Skip selection menu" +msgstr "Bỏ qua menu lựa chọn" + +#, fuzzy +msgid "Start search mode" +msgstr "Bắt đầu chế độ tìm kiếm" + +#, fuzzy +msgid "Exit search mode" +msgstr "Thoát chế độ tìm kiếm" + +#, fuzzy +msgid "General" +msgstr "Tổng quan" + +#, fuzzy +msgid "Navigation" +msgstr "Điều hướng" + +#, fuzzy +msgid "Selection" +msgstr "Lựa chọn" + +#, fuzzy +msgid "Search" +msgstr "Tìm kiếm" + +#, fuzzy +msgid "Down" +msgstr "Xuống" + +#, fuzzy +msgid "Up" +msgstr "Hướng lên" + +#, fuzzy +msgid "Confirm" +msgstr "Xác nhận" + +#, fuzzy +msgid "Focus right" +msgstr "Lấy nét phải" + +#, fuzzy +msgid "Focus left" +msgstr "Tập trung vào bên trái" + +#, fuzzy +msgid "Toggle" +msgstr "Chuyển đổi" + +#, fuzzy +msgid "Show/Hide help" +msgstr "Hiển thị/Ẩn trợ giúp" + +#, fuzzy +msgid "Quit" +msgstr "Từ bỏ" + +#, fuzzy +msgid "First" +msgstr "Đầu tiên" + +#, fuzzy +msgid "Last" +msgstr "Cuối cùng" + +#, fuzzy +msgid "Select" +msgstr "Lựa chọn" + +#, fuzzy +msgid "Page Up" +msgstr "Trang lên" + +#, fuzzy +msgid "Page Down" +msgstr "Trang xuống" + +#, fuzzy +msgid "Page up" +msgstr "Trang lên" + +#, fuzzy +msgid "Page down" +msgstr "Trang xuống" + +#, fuzzy +msgid "Page Left" +msgstr "Trang còn lại" + +#, fuzzy +msgid "Page Right" +msgstr "Trang bên phải" + +#, fuzzy +msgid "Cursor up" +msgstr "Con trỏ lên" + +#, fuzzy +msgid "Cursor down" +msgstr "Con trỏ xuống" + +#, fuzzy +msgid "Cursor right" +msgstr "Con trỏ sang phải" + +#, fuzzy +msgid "Cursor left" +msgstr "Con trỏ sang trái" + +#, fuzzy +msgid "Top" +msgstr "Đứng đầu" + +#, fuzzy +msgid "Bottom" +msgstr "Đáy" + +#, fuzzy +msgid "Home" +msgstr "Trang chủ" + +#, fuzzy +msgid "End" +msgstr "Kết thúc" + +#, fuzzy +msgid "Toggle option" +msgstr "Tùy chọn chuyển đổi" + +#, fuzzy +msgid "Scroll Up" +msgstr "Cuộn lên" + +#, fuzzy +msgid "Scroll Down" +msgstr "Cuộn xuống" + +#, fuzzy +msgid "Scroll Left" +msgstr "Cuộn sang trái" + +#, fuzzy +msgid "Scroll Right" +msgstr "Cuộn sang phải" + +#, fuzzy +msgid "Scroll Home" +msgstr "Cuộn về nhà" + +#, fuzzy +msgid "Scroll End" +msgstr "Cuối cuộn" + +#, fuzzy +msgid "Focus Next" +msgstr "Tập trung tiếp theo" + +#, fuzzy +msgid "Focus Previous" +msgstr "Tập trung trước đó" + +#, fuzzy +msgid "Copy selected text" +msgstr "Sao chép văn bản đã chọn" + +#, fuzzy +msgid "" +"labwc needs access to your seat (collection of hardware devices i.e. " +"keyboard, mouse, etc)" +msgstr "" +"labwc cần quyền truy cập vào chỗ ngồi của bạn (bộ sưu tập các thiết bị phần " +"cứng như bàn phím, chuột, v.v.)" + +#, fuzzy +msgid "Choose an option to give labwc access to your hardware" +msgstr "Chọn một tùy chọn để cấp quyền truy cập labwc vào phần cứng của bạn" + +#, fuzzy +msgid "" +"niri needs access to your seat (collection of hardware devices i.e. " +"keyboard, mouse, etc)" +msgstr "" +"niri cần quyền truy cập vào chỗ ngồi của bạn (bộ sưu tập các thiết bị phần " +"cứng như bàn phím, chuột, v.v.)" + +#, fuzzy +msgid "Choose an option to give niri access to your hardware" +msgstr "" +"Chọn một tùy chọn để cấp cho niri quyền truy cập vào phần cứng của bạn" + +#, fuzzy +msgid "Mark/Unmark as ESP" +msgstr "Đánh dấu/Bỏ đánh dấu là ESP" + +#, fuzzy +msgid "Package group:" +msgstr "Nhóm gói:" + +#, fuzzy +msgid "Exit archinstall" +msgstr "Thoát khỏi cài đặt Arch" + +#, fuzzy +msgid "Reboot system" +msgstr "Khởi động lại hệ thống" + +#, fuzzy +msgid "chroot into installation for post-installation configurations" +msgstr "chroot vào cài đặt để cấu hình sau khi cài đặt" + +#, fuzzy +msgid "Installation completed" +msgstr "Cài đặt hoàn tất" + +#, fuzzy +msgid "What would you like to do next?" +msgstr "Bạn muốn làm gì tiếp theo?" + +#, python-brace-format, fuzzy +msgid "Select which mode to configure for \"{}\"" +msgstr "Chọn chế độ cấu hình cho \"{}\"" + +#, fuzzy +msgid "Incorrect credentials file decryption password" +msgstr "Mật khẩu giải mã tập tin thông tin xác thực không chính xác" + +#, fuzzy +msgid "Incorrect password" +msgstr "Mật khẩu không chính xác" + +#, fuzzy +msgid "Credentials file decryption password" +msgstr "Mật khẩu giải mã tập tin thông tin xác thực" + +#, fuzzy +msgid "Do you want to encrypt the user_credentials.json file?" +msgstr "Bạn có muốn mã hóa tệp user_credentials.json không?" + +#, fuzzy +msgid "Credentials file encryption password" +msgstr "Mật khẩu mã hóa tập tin thông tin xác thực" + +#, python-brace-format, fuzzy +msgid "Repositories: {}" +msgstr "Kho lưu trữ: {}" + +#, fuzzy +msgid "New version available" +msgstr "Đã có phiên bản mới" + +#, fuzzy +msgid "Passwordless login" +msgstr "Đăng nhập không cần mật khẩu" + +#, fuzzy +msgid "Second factor login" +msgstr "Đăng nhập yếu tố thứ hai" + +#, fuzzy +msgid "Bluetooth" +msgstr "Bluetooth" + +#, fuzzy +msgid "Would you like to configure Bluetooth?" +msgstr "Bạn có muốn định cấu hình Bluetooth không?" + +#, fuzzy +msgid "Print service" +msgstr "Dịch vụ in ấn" + +#, fuzzy +msgid "Would you like to configure the print service?" +msgstr "Bạn có muốn định cấu hình dịch vụ in không?" + +#, fuzzy +msgid "Power management" +msgstr "Quản lý nguồn điện" + +#, fuzzy +msgid "Authentication" +msgstr "Xác thực" + +#, fuzzy +msgid "Applications" +msgstr "Ứng dụng" + +#, fuzzy +msgid "U2F login method: " +msgstr "Phương thức đăng nhập U2F:" + +#, fuzzy +msgid "Passwordless sudo: " +msgstr "Sudo không cần mật khẩu:" + +#, python-brace-format, fuzzy +msgid "Btrfs snapshot type: {}" +msgstr "Loại ảnh chụp nhanh Btrfs: {}" + +#, fuzzy +msgid "Syncing the system..." +msgstr "Đang đồng bộ hóa hệ thống..." + +#, fuzzy +msgid "Value cannot be empty" +msgstr "Giá trị không thể trống" + +#, fuzzy +msgid "Snapshot type" +msgstr "Kiểu ảnh chụp nhanh" + +#, python-brace-format, fuzzy +msgid "Snapshot type: {}" +msgstr "Kiểu chụp nhanh: {}" + +#, fuzzy +msgid "U2F login setup" +msgstr "Thiết lập đăng nhập U2F" + +#, fuzzy +msgid "No U2F devices found" +msgstr "Không tìm thấy thiết bị U2F nào" + +#, fuzzy +msgid "U2F Login Method" +msgstr "Phương thức đăng nhập U2F" + +#, fuzzy +msgid "Enable passwordless sudo?" +msgstr "Kích hoạt sudo không mật khẩu?" + +#, python-brace-format, fuzzy +msgid "Setting up U2F device for user: {}" +msgstr "Thiết lập thiết bị U2F cho người dùng: {}" + +#, fuzzy +msgid "" +"You may need to enter the PIN and then touch your U2F device to register it" +msgstr "" +"Bạn có thể cần nhập mã PIN rồi chạm vào thiết bị U2F của mình để đăng ký" + +#, fuzzy +msgid "Starting device modifications in " +msgstr "Bắt đầu sửa đổi thiết bị trong" + +#, fuzzy +msgid "No network connection found" +msgstr "Không tìm thấy kết nối mạng" + +#, fuzzy +msgid "Would you like to connect to a Wifi?" +msgstr "Bạn có muốn kết nối với Wifi không?" + +#, fuzzy +msgid "No wifi interface found" +msgstr "Không tìm thấy giao diện wifi" + +#, fuzzy +msgid "Select wifi network to connect to" +msgstr "Chọn mạng wifi để kết nối" + +#, fuzzy +msgid "Scanning wifi networks..." +msgstr "Đang quét mạng wifi..." + +#, fuzzy +msgid "No wifi networks found" +msgstr "Không tìm thấy mạng wifi" + +#, fuzzy +msgid "Failed setting up wifi" +msgstr "Cài đặt wifi không thành công" + +#, fuzzy +msgid "Enter wifi password" +msgstr "Nhập mật khẩu wifi" + +#, fuzzy +msgid "Ok" +msgstr "Được rồi" + +#, fuzzy +msgid "Removable" +msgstr "Có thể tháo rời" + +#, fuzzy +msgid "Install to removable location" +msgstr "Cài đặt vào vị trí có thể tháo rời" + +#, fuzzy +msgid "Will install to /EFI/BOOT/ (removable location)" +msgstr "Sẽ cài đặt vào /EFI/BOOT/ (vị trí có thể tháo rời)" + +#, fuzzy +msgid "Will install to standard location with NVRAM entry" +msgstr "Sẽ cài đặt vào vị trí tiêu chuẩn với mục nhập NVRAM" + +#, fuzzy +msgid "" +"Would you like to install the bootloader to the default removable media " +"search location?" +msgstr "" +"Bạn có muốn cài đặt bộ nạp khởi động vào vị trí tìm kiếm phương tiện di động" +" mặc định không?" + +#, fuzzy +msgid "" +"This installs the bootloader to /EFI/BOOT/BOOTX64.EFI (or similar) which is " +"useful for:" +msgstr "" +"Việc này sẽ cài đặt bộ tải khởi động vào /EFI/BOOT/BOOTX64.EFI (hoặc tương " +"tự), rất hữu ích cho:" + +#, fuzzy +msgid "USB drives or other portable external media." +msgstr "Ổ USB hoặc phương tiện di động bên ngoài khác." + +#, fuzzy +msgid "Systems where you want the disk to be bootable on any computer." +msgstr "" +"Các hệ thống mà bạn muốn đĩa có khả năng khởi động trên bất kỳ máy tính nào." + +#, fuzzy +msgid "Firmware that does not properly support NVRAM boot entries." +msgstr "Phần sụn không hỗ trợ đúng cách các mục khởi động NVRAM." + +#, fuzzy +msgid "Will install to /EFI/BOOT/ (removable location, safe default)" +msgstr "Sẽ cài đặt vào /EFI/BOOT/ (vị trí có thể tháo rời, mặc định an toàn)" + +#, fuzzy +msgid "Will install to custom location with NVRAM entry" +msgstr "Sẽ cài đặt vào vị trí tùy chỉnh với mục nhập NVRAM" + +#, fuzzy +msgid "" +"Firmware that does not properly support NVRAM boot entries like most MSI " +"motherboards," +msgstr "" +"Phần sụn không hỗ trợ đúng cách các mục khởi động NVRAM như hầu hết các bo " +"mạch chủ MSI," + +#, fuzzy +msgid "most Apple Macs, many laptops..." +msgstr "hầu hết các máy Mac của Apple, nhiều máy tính xách tay..." + +#, fuzzy +msgid "Language" +msgstr "Ngôn ngữ" + +#, fuzzy +msgid "Compression algorithm" +msgstr "Thuật toán nén" + +#, fuzzy +msgid "" +"Only packages such as base, sudo, linux, linux-firmware, efibootmgr and " +"optional profile packages are installed." +msgstr "" +"Chỉ các gói như base, sudo, linux, linux-firmware, efibootmgr và các gói hồ " +"sơ tùy chọn mới được cài đặt." + +#, fuzzy +msgid "Select zram compression algorithm:" +msgstr "Chọn thuật toán nén zram:" + +#, fuzzy +msgid "Use Network Manager (default backend)" +msgstr "Sử dụng Trình quản lý mạng (phụ trợ mặc định)" + +#, fuzzy +msgid "Use Network Manager (iwd backend)" +msgstr "Sử dụng Trình quản lý mạng (phụ trợ iwd)" + +#, fuzzy +msgid "Firewall" +msgstr "Tường lửa" + +#, fuzzy +msgid "Additional fonts" +msgstr "Phông chữ bổ sung" + +#, fuzzy +msgid "Select font packages to install" +msgstr "Chọn gói font để cài đặt" + +#, fuzzy +msgid "Unicode font coverage for most languages" +msgstr "Phạm vi phông chữ Unicode cho hầu hết các ngôn ngữ" + +#, fuzzy +msgid "color emoji for browsers and apps" +msgstr "biểu tượng cảm xúc màu cho trình duyệt và ứng dụng" + +#, fuzzy +msgid "Chinese, Japanese, Korean characters" +msgstr "Ký tự Trung Quốc, Nhật Bản, Hàn Quốc" + +#, fuzzy +msgid "Select audio configuration" +msgstr "Chọn cấu hình âm thanh" + +#, fuzzy +msgid "Enter credentials file decryption password" +msgstr "Nhập mật khẩu giải mã tập tin thông tin xác thực" + +#, fuzzy +msgid "Enter root password" +msgstr "Nhập mật khẩu gốc" + +#, fuzzy +msgid "Select bootloader to install" +msgstr "Chọn bootloader để cài đặt" + +#, fuzzy +msgid "Configuration preview" +msgstr "Xem trước cấu hình" + +#, fuzzy +msgid "Enter a directory for the configuration(s) to be saved" +msgstr "Nhập thư mục để lưu (các) cấu hình" + +#, fuzzy +msgid "Select encryption type" +msgstr "Chọn loại mã hóa" + +#, fuzzy +msgid "Select disks for the installation" +msgstr "Chọn đĩa để cài đặt" + +#, fuzzy +msgid "Enter a mountpoint" +msgstr "Nhập điểm gắn kết" + +#, python-brace-format, fuzzy +msgid "Enter a size (default: {}): " +msgstr "Nhập kích thước (mặc định: {} ):" + +#, fuzzy +msgid "Enter subvolume name" +msgstr "Nhập tên tập con" + +#, fuzzy +msgid "Enter subvolume mountpoint" +msgstr "Nhập điểm gắn kết subvolume" + +#, fuzzy +msgid "Select a disk configuration" +msgstr "Chọn cấu hình đĩa" + +#, fuzzy +msgid "Enter root mount directory" +msgstr "Nhập thư mục gắn kết gốc" + +#, fuzzy +msgid "" +"You will use whatever drive-setup is mounted at the specified directory" +msgstr "" +"Bạn sẽ sử dụng bất kỳ thiết lập ổ đĩa nào được gắn vào thư mục đã chỉ định" + +#, fuzzy +msgid "WARNING: Archinstall won't check the suitability of this setup" +msgstr "" +"CẢNH BÁO: Archinstall sẽ không kiểm tra tính phù hợp của thiết lập này" + +#, fuzzy +msgid "Select main filesystem" +msgstr "Chọn hệ thống tập tin chính" + +#, fuzzy +msgid "Enter a hostname" +msgstr "Nhập tên máy chủ" + +#, fuzzy +msgid "Select timezone" +msgstr "Chọn múi giờ" + +#, fuzzy +msgid "Enter the number of parallel downloads to be enabled" +msgstr "Nhập số lượng tải song song sẽ được kích hoạt" + +#, python-brace-format, fuzzy +msgid "Value must be between 1 and {}" +msgstr "Giá trị phải nằm trong khoảng từ 1 đến {}" + +#, fuzzy +msgid "Select which kernel(s) to install" +msgstr "Chọn (các) hạt nhân để cài đặt" + +#, fuzzy +msgid "Enter a respository name" +msgstr "Nhập tên kho lưu trữ" + +#, fuzzy +msgid "Enter the repository url" +msgstr "Nhập url kho lưu trữ" + +#, fuzzy +msgid "Enter server url" +msgstr "Nhập url máy chủ" + +#, fuzzy +msgid "Select mirror regions to be enabled" +msgstr "Chọn các vùng phản chiếu sẽ được kích hoạt" + +#, fuzzy +msgid "Select optional repositories to be enabled" +msgstr "Chọn kho lưu trữ tùy chọn sẽ được kích hoạt" + +#, fuzzy +msgid "Select an interface" +msgstr "Chọn một giao diện" + +#, fuzzy +msgid "Choose network configuration" +msgstr "Chọn cấu hình mạng" + +#, fuzzy +msgid "Recommended: Network Manager for desktop, Manual for server" +msgstr "" +"Khuyến nghị: Trình quản lý mạng cho máy tính để bàn, Hướng dẫn sử dụng cho " +"máy chủ" + +#, fuzzy +msgid "" +"Warning: no network configuration selected. Network will need to be set up " +"manually on the installed system." +msgstr "" +"Cảnh báo: chưa chọn cấu hình mạng. Mạng sẽ cần được thiết lập thủ công trên " +"hệ thống đã cài đặt." + +#, fuzzy +msgid "No packages found" +msgstr "Không tìm thấy gói nào" + +#, fuzzy +msgid "Select which greeter to install" +msgstr "Chọn lời chào để cài đặt" + +#, fuzzy +msgid "Select a profile type" +msgstr "Chọn loại hồ sơ" + +#, fuzzy +msgid "Enter new password" +msgstr "Nhập mật khẩu mới" + +#, fuzzy +msgid "Enter a username" +msgstr "Nhập tên người dùng" + +#, fuzzy +msgid "Enter a password" +msgstr "Nhập mật khẩu" + +#, fuzzy +msgid "The password did not match, please try again" +msgstr "Mật khẩu không khớp, vui lòng thử lại" + +#, fuzzy +msgid "Password strength: Weak" +msgstr "Độ mạnh của mật khẩu: Yếu" + +#, fuzzy +msgid "Password strength: Moderate" +msgstr "Độ mạnh mật khẩu: Trung bình" + +#, fuzzy +msgid "Password strength: Strong" +msgstr "Độ mạnh mật khẩu: Mạnh" + +#, fuzzy +msgid "" +"The selected desktop profile requires a regular user to log in via the " +"greeter" +msgstr "" +"Cấu hình máy tính để bàn đã chọn yêu cầu người dùng thông thường đăng nhập " +"thông qua lời chào" + +#, python-brace-format, fuzzy +msgid "Environment type: {} {}" +msgstr "Loại môi trường: {} {}" + +#, fuzzy +msgid "Input cannot be empty" +msgstr "Đầu vào không thể trống" + +#, fuzzy +msgid "Recommended" +msgstr "Khuyến khích" + +#, fuzzy +msgid "Package" +msgstr "Bưu kiện" + +#, fuzzy +msgid "Curated selection of KDE Plasma packages" +msgstr "Lựa chọn các gói KDE Plasma được tuyển chọn" + +#, fuzzy +msgid "Dependencies" +msgstr "phụ thuộc" + +#, fuzzy +msgid "Package group" +msgstr "Nhóm gói" + +#, fuzzy +msgid "Extensive KDE Plasma installation" +msgstr "Cài đặt KDE Plasma mở rộng" + +#, fuzzy +msgid "Packages in group" +msgstr "Gói trong nhóm" + +#, fuzzy +msgid "Minimal KDE Plasma installation" +msgstr "Cài đặt KDE Plasma tối thiểu" + +#, fuzzy +msgid "Description" +msgstr "Sự miêu tả" + +#, fuzzy +msgid "Select a flavor of KDE Plasma to install" +msgstr "Chọn phiên bản KDE Plasma để cài đặt" + +#, fuzzy +msgid "Arial/Times/Courier replacement, Cyrillic support for Steam/games" +msgstr "Thay thế Arial/Time/Courier, hỗ trợ Cyrillic cho Steam/game" + +#, fuzzy +msgid "wide Unicode coverage, good fallback font" +msgstr "vùng phủ sóng Unicode rộng, phông chữ dự phòng tốt" + +#, python-brace-format, fuzzy +msgid "Setting up U2F login: {u2f_config.u2f_login_method.value}" +msgstr "Thiết lập đăng nhập U2F: {u2f_config.u2f_login_method.value}" + +#, python-brace-format, fuzzy +msgid "Default: {DEFAULT_ITER_TIME}ms, Recommended range: 1000-60000" +msgstr "Mặc định: {DEFAULT_ITER_TIME} ms, Phạm vi khuyến nghị: 1000-60000" + +#, python-brace-format, fuzzy +msgid "Setting up U2F login: {}" +msgstr "Thiết lập đăng nhập U2F: {}" + +#, python-brace-format, fuzzy +msgid "Default: {}ms, Recommended range: 1000-60000" +msgstr "Mặc định: {} ms, Phạm vi khuyến nghị: 1000-60000" + +#, python-brace-format, fuzzy +msgid "{} needs access to your seat" +msgstr "{} cần quyền truy cập vào chỗ ngồi của bạn" + +#, fuzzy +msgid "collection of hardware devices i.e. keyboard, mouse" +msgstr "tập hợp các thiết bị phần cứng như bàn phím, chuột" + +#, python-brace-format, fuzzy +msgid "Choose an option how to give {} access to your hardware" +msgstr "Chọn một tùy chọn về cách cấp quyền truy cập {} vào phần cứng của bạn" + +#, python-brace-format, fuzzy +msgid "About to upload \"{}\" to the publicly accessible {}" +msgstr "Sắp tải \" {} \" lên {} có thể truy cập công khai" + +#, fuzzy +msgid "Do you want to continue?" +msgstr "Bạn có muốn tiếp tục không?" + +#, python-brace-format, fuzzy +msgid "Log uploaded successfully. URL: {}" +msgstr "Nhật ký được tải lên thành công. URL: {}" + +#, fuzzy +msgid "Failed to upload log." +msgstr "Không thể tải lên nhật ký." + +#, fuzzy +msgid "ArchInstall Language" +msgstr "Ngôn ngữ cài đặt Arch" + +#, fuzzy +msgid "Version" +msgstr "Phiên bản" + +#, fuzzy +msgid "Installation Script" +msgstr "Tập lệnh cài đặt" + +#, fuzzy +msgid "Application" +msgstr "Ứng dụng" + +#, fuzzy +msgid "Services" +msgstr "Dịch vụ" + +#, fuzzy +msgid "Custom commands" +msgstr "Lệnh tùy chỉnh" + +#, fuzzy +msgid "Users" +msgstr "Người dùng" + +#, fuzzy +msgid "Root encrypted password" +msgstr "Mật khẩu được mã hóa gốc" + +#, fuzzy +msgid "Zram enabled" +msgstr "Đã bật Zram" + +#, python-brace-format, fuzzy +msgid "Zram algorithm {}" +msgstr "Thuật toán Zram {}" + +#, fuzzy +msgid "Bluetooth enabled" +msgstr "Đã bật Bluetooth" + +#, python-brace-format, fuzzy +msgid "Audio server \"{}\"" +msgstr "Máy chủ âm thanh \"{}\"" + +#, python-brace-format, fuzzy +msgid "Power management \"{}\"" +msgstr "Quản lý nguồn điện \"{}\"" + +#, fuzzy +msgid "Print service enabled" +msgstr "Đã bật dịch vụ in" + +#, python-brace-format, fuzzy +msgid "Firewall \"{}\"" +msgstr "Tường lửa \"{}\"" + +#, python-brace-format, fuzzy +msgid "Extra fonts \"{}\"" +msgstr "Phông chữ bổ sung \" {} \"" + +#, fuzzy +msgid "Root password set" +msgstr "Đã đặt mật khẩu gốc" + +#, python-brace-format, fuzzy +msgid "Configured {} user(s)" +msgstr "(Những) người dùng {} đã định cấu hình" + +#, fuzzy +msgid "U2F set up" +msgstr "thiết lập U2F" + +#, python-brace-format, fuzzy +msgid "Bootloader \"{}\"" +msgstr "Bộ nạp khởi động \"{}\"" + +#, fuzzy +msgid "UKI enabled" +msgstr "Đã bật UKI" + +#, fuzzy +msgid "Default" +msgstr "Mặc định" + +#, fuzzy +msgid "Manual" +msgstr "Thủ công" + +#, fuzzy +msgid "Pre-mount" +msgstr "Gắn trước" + +#, python-brace-format, fuzzy +msgid "{} layout" +msgstr "Bố cục {}" + +#, python-brace-format, fuzzy +msgid "Devices {}" +msgstr "Thiết bị {}" + +#, fuzzy +msgid "LVM set up" +msgstr "Thiết lập LVM" + +#, python-brace-format, fuzzy +msgid "{} encryption" +msgstr "Mã hóa {}" + +#, python-brace-format, fuzzy +msgid "Btrfs snapshot \"{}\"" +msgstr "Ảnh chụp nhanh Btrfs \" {} \"" + +#, python-brace-format, fuzzy +msgid "Keyboard layout \"{}\"" +msgstr "Bố cục bàn phím \"{}\"" + +#, python-brace-format, fuzzy +msgid "Locale language \"{}\"" +msgstr "Ngôn ngữ địa phương \" {} \"" + +#, python-brace-format, fuzzy +msgid "Locale encoding \"{}\"" +msgstr "Mã hóa miền địa phương \" {} \"" + +#, python-brace-format, fuzzy +msgid "Console font \"{}\"" +msgstr "Phông chữ bảng điều khiển \"{}\"" + +#, python-brace-format, fuzzy +msgid "Mirror regions \"{}\"" +msgstr "Vùng phản chiếu \" {} \"" + +#, python-brace-format, fuzzy +msgid "Optional repositories \"{}\"" +msgstr "Kho lưu trữ tùy chọn \"{}\"" + +#, fuzzy +msgid "Custom servers set up" +msgstr "Máy chủ tùy chỉnh được thiết lập" + +#, fuzzy +msgid "Custom repositories set up" +msgstr "Kho lưu trữ tùy chỉnh được thiết lập" + +#, fuzzy +msgid "Use standalone iwd" +msgstr "Sử dụng iwd độc lập" + +#, fuzzy +msgid "Color enabled" +msgstr "Đã bật màu" + +#, python-brace-format, fuzzy +msgid "{} grphics driver" +msgstr "Trình điều khiển đồ họa {}" + +#, python-brace-format, fuzzy +msgid "{} greeter" +msgstr "Lời chào {}" + +#, fuzzy +msgid "Enter a repository name" +msgstr "Nhập tên kho lưu trữ"