Add initial install_station Python package structure
- Add install_station package with __init__.py and core modules - Include boot_manager.py for boot loader configuration (BootManager class with singleton pattern) - Add common.py with password strength validation utilities and ZFS dataset definitions - Add custom.py with Partitions class for disk partitioning management (1010 lines) - Establish foundation for GTK+ based GhostBSD installer application Modules added: - boot_manager: UEFI/BIOS boot manager selection with rEFInd and FreeBSD options - common: Password validation functions and deprecated decorator utility - custom: Comprehensive partition management with GTK+ interface
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
install-station
|
||||
install_station/boot_manager.py
|
||||
install_station/common.py
|
||||
install_station/custom.py
|
||||
install_station/data.py
|
||||
install_station/end.py
|
||||
install_station/error.py
|
||||
install_station/install.py
|
||||
install_station/install_type.py
|
||||
install_station/interface_controller.py
|
||||
install_station/language.py
|
||||
install_station/network_setup.py
|
||||
install_station/partition.py
|
||||
install_station/system_calls.py
|
||||
install_station/use_zfs.py
|
||||
install_station/welcome_live.py
|
||||
install_station/window.py
|
||||
+364
@@ -0,0 +1,364 @@
|
||||
# Arabic translations for PACKAGE package.
|
||||
# Copyright (C) 2025 THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# Eric Turgeon <EMAIL@ADDRESS>, 2025.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-07-09 20:39-0300\n"
|
||||
"PO-Revision-Date: 2025-07-09 20:27-0300\n"
|
||||
"Last-Translator: Eric Turgeon <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Arabic <(nothing)>\n"
|
||||
"Language: ar_SA\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=ASCII\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: install_station/boot_manager.py:125
|
||||
#: install_station/interface_controller.py:168
|
||||
msgid "Boot Option"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:139
|
||||
msgid "Setup rEFInd boot manager"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:153
|
||||
msgid "Setup FreeBSD boot manager"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:168
|
||||
#, python-brace-format
|
||||
msgid "FreeBSD {loader} loader only"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:13
|
||||
msgid ""
|
||||
"Installation is complete. You need to restart the\n"
|
||||
"computer in order to use the new installation.\n"
|
||||
"You can continue to use this live media, although\n"
|
||||
"any changes you make or documents you save will\n"
|
||||
"not be preserved on reboot."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:34
|
||||
msgid "Installation Completed"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:50
|
||||
msgid "Restart"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:52
|
||||
msgid "Continue"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:21
|
||||
msgid "Installation Error"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:32
|
||||
msgid "Installation has failed!"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:37
|
||||
msgid "GhostBSD issue system"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:38
|
||||
#, python-brace-format
|
||||
msgid ""
|
||||
"Please report the issue to {anchor}, and \n"
|
||||
"be sure to provide /tmp/.pc-sysinstall/pc-sysinstall.log."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:47
|
||||
msgid "Ok"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:55
|
||||
msgid "How do you want to install GhostBSD?"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:60
|
||||
msgid ""
|
||||
"<b>Disks Configuration</b>\n"
|
||||
"Install GhostBSD using Stripe, Mirror, RAIDZ1, RAIDZ2, or RAIDZ3 "
|
||||
"configurations."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:70
|
||||
msgid ""
|
||||
"<b>Multi-Boot Configuration</b>\n"
|
||||
"Install GhostBSD with ZFS alongside other operating systems."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:39
|
||||
msgid "Creating ghostbsd_installation.cfg"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:43
|
||||
msgid "Deleting partition"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:48
|
||||
msgid "Creating disk partition"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:53
|
||||
msgid "Creating new partitions"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:83
|
||||
msgid "Installation in progress"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:95
|
||||
msgid ""
|
||||
"Thank you for choosing GhostBSD!\n"
|
||||
"\n"
|
||||
"We believe every computer operating system should be simple, elegant, secure "
|
||||
"and protect your privacy while being easy to use. GhostBSD is simplifying "
|
||||
"FreeBSD for those who lack the technical expertise required to use it and "
|
||||
"lower the entry-level of using BSD. \n"
|
||||
"\n"
|
||||
"We hope you'll enjoy our BSD operating system."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:14
|
||||
msgid "Back"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:16
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:18
|
||||
#: install_station/interface_controller.py:226
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:100
|
||||
#: install_station/interface_controller.py:101
|
||||
#: install_station/welcome_live.py:112
|
||||
msgid "Welcome to GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:110
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:136
|
||||
msgid "Installation Types"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:148
|
||||
msgid "Custom Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:158
|
||||
msgid "ZFS Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:170
|
||||
msgid "Install"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:180
|
||||
msgid "Installation Progress"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:187
|
||||
msgid "Progress Bar"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:201
|
||||
#: install_station/interface_controller.py:206
|
||||
#: install_station/network_setup.py:110
|
||||
msgid "Network Setup"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:20
|
||||
msgid "Select the language you want to use with GhostBSD."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:64 install_station/welcome_live.py:110
|
||||
#: install_station/welcome_live.py:127
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:79
|
||||
msgid "Welcome To GhostBSD!"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:69 install_station/network_setup.py:129
|
||||
msgid "Network card connected to the internet"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:75 install_station/network_setup.py:135
|
||||
msgid "Network card not connected to the internet"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:78 install_station/network_setup.py:138
|
||||
msgid "No network card detected"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:86 install_station/network_setup.py:146
|
||||
msgid "WiFi card detected and connected to an access point"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:90 install_station/network_setup.py:150
|
||||
msgid "WiFi card detected but not connected to an access point"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:93 install_station/network_setup.py:153
|
||||
msgid "WiFi card not detected or not supported"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:258
|
||||
msgid "Wi-Fi Network Authentication Required"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:270
|
||||
#, python-brace-format
|
||||
msgid "{ssid} Wi-Fi Network Authentication failed"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:272
|
||||
#, python-brace-format
|
||||
msgid "Authentication required by {ssid} Wi-Fi Network"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:275
|
||||
msgid "Password:"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:278
|
||||
msgid "Show password"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:164
|
||||
msgid ""
|
||||
"Please select 1 or more drive for stripe (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:171
|
||||
msgid "Please select 2 drive for mirroring (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:179
|
||||
msgid "Please select 3 drive for RAIDZ1 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:186
|
||||
msgid "Please select 4 drive for RAIDZ2 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:193
|
||||
msgid "Please select 5 drive for RAIDZ3 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:296
|
||||
msgid "Disk"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:303
|
||||
msgid "Size(MB)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:309
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:313
|
||||
msgid "Check"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:326
|
||||
msgid "Please select one drive"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:331
|
||||
msgid "<b>Pool Type</b>"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:335
|
||||
msgid "1+ disks Stripe"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:336
|
||||
msgid "2+ disks Mirror"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:337
|
||||
msgid "3 disks RAIDZ1"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:338
|
||||
msgid "4 disks RAIDZ2"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:339
|
||||
msgid "5 disks RAIDZ3"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:349
|
||||
msgid "<b>Pool Name</b>"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:369
|
||||
msgid "Encrypt Disk"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:373
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:380
|
||||
msgid "Verify it"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:541
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:552
|
||||
msgid "Smallest disk need to be SELECTED first!\n"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:553
|
||||
msgid "All the disk selected will reset."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:16
|
||||
msgid ""
|
||||
"To run GhostBSD without installing, select \"Try GhostBSD.\"\n"
|
||||
"\n"
|
||||
"To install GhostBSD on your computer hard disk drive, click \"Install "
|
||||
"GhostBSD.\"\n"
|
||||
"\n"
|
||||
"Note: Language selection only works when selecting \"Try GhostBSD.\"\n"
|
||||
" When installing GhostBSD, the installation program is only in English."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:95 install_station/welcome_live.py:242
|
||||
msgid "Install GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:98 install_station/welcome_live.py:246
|
||||
msgid "Try GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:101
|
||||
msgid ""
|
||||
"To run GhostBSD without installing, select \"Try GhostBSD.\"\n"
|
||||
" \n"
|
||||
"\n"
|
||||
"To install GhostBSD on your computer hard disk drive, click \"Install "
|
||||
"GhostBSD.\"\n"
|
||||
"\n"
|
||||
"Note: Language selection only works when selecting \"Try GhostBSD.\"\n"
|
||||
" When installing GhostBSD, the installation program is only in English."
|
||||
msgstr ""
|
||||
+365
@@ -0,0 +1,365 @@
|
||||
# Bulgarian translations for PACKAGE package.
|
||||
# Copyright (C) 2025 THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# Eric Turgeon <EMAIL@ADDRESS>, 2025.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-07-09 20:39-0300\n"
|
||||
"PO-Revision-Date: 2025-07-09 20:26-0300\n"
|
||||
"Last-Translator: Eric Turgeon <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Bulgarian <dict@ludost.net>\n"
|
||||
"Language: bg\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=ASCII\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: install_station/boot_manager.py:125
|
||||
#: install_station/interface_controller.py:168
|
||||
msgid "Boot Option"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:139
|
||||
msgid "Setup rEFInd boot manager"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:153
|
||||
msgid "Setup FreeBSD boot manager"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:168
|
||||
#, python-brace-format
|
||||
msgid "FreeBSD {loader} loader only"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:13
|
||||
msgid ""
|
||||
"Installation is complete. You need to restart the\n"
|
||||
"computer in order to use the new installation.\n"
|
||||
"You can continue to use this live media, although\n"
|
||||
"any changes you make or documents you save will\n"
|
||||
"not be preserved on reboot."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:34
|
||||
msgid "Installation Completed"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:50
|
||||
msgid "Restart"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:52
|
||||
msgid "Continue"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:21
|
||||
msgid "Installation Error"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:32
|
||||
msgid "Installation has failed!"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:37
|
||||
msgid "GhostBSD issue system"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:38
|
||||
#, python-brace-format
|
||||
msgid ""
|
||||
"Please report the issue to {anchor}, and \n"
|
||||
"be sure to provide /tmp/.pc-sysinstall/pc-sysinstall.log."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:47
|
||||
msgid "Ok"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:55
|
||||
msgid "How do you want to install GhostBSD?"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:60
|
||||
msgid ""
|
||||
"<b>Disks Configuration</b>\n"
|
||||
"Install GhostBSD using Stripe, Mirror, RAIDZ1, RAIDZ2, or RAIDZ3 "
|
||||
"configurations."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:70
|
||||
msgid ""
|
||||
"<b>Multi-Boot Configuration</b>\n"
|
||||
"Install GhostBSD with ZFS alongside other operating systems."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:39
|
||||
msgid "Creating ghostbsd_installation.cfg"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:43
|
||||
msgid "Deleting partition"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:48
|
||||
msgid "Creating disk partition"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:53
|
||||
msgid "Creating new partitions"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:83
|
||||
msgid "Installation in progress"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:95
|
||||
msgid ""
|
||||
"Thank you for choosing GhostBSD!\n"
|
||||
"\n"
|
||||
"We believe every computer operating system should be simple, elegant, secure "
|
||||
"and protect your privacy while being easy to use. GhostBSD is simplifying "
|
||||
"FreeBSD for those who lack the technical expertise required to use it and "
|
||||
"lower the entry-level of using BSD. \n"
|
||||
"\n"
|
||||
"We hope you'll enjoy our BSD operating system."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:14
|
||||
msgid "Back"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:16
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:18
|
||||
#: install_station/interface_controller.py:226
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:100
|
||||
#: install_station/interface_controller.py:101
|
||||
#: install_station/welcome_live.py:112
|
||||
msgid "Welcome to GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:110
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:136
|
||||
msgid "Installation Types"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:148
|
||||
msgid "Custom Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:158
|
||||
msgid "ZFS Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:170
|
||||
msgid "Install"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:180
|
||||
msgid "Installation Progress"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:187
|
||||
msgid "Progress Bar"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:201
|
||||
#: install_station/interface_controller.py:206
|
||||
#: install_station/network_setup.py:110
|
||||
msgid "Network Setup"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:20
|
||||
msgid "Select the language you want to use with GhostBSD."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:64 install_station/welcome_live.py:110
|
||||
#: install_station/welcome_live.py:127
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:79
|
||||
msgid "Welcome To GhostBSD!"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:69 install_station/network_setup.py:129
|
||||
msgid "Network card connected to the internet"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:75 install_station/network_setup.py:135
|
||||
msgid "Network card not connected to the internet"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:78 install_station/network_setup.py:138
|
||||
msgid "No network card detected"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:86 install_station/network_setup.py:146
|
||||
msgid "WiFi card detected and connected to an access point"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:90 install_station/network_setup.py:150
|
||||
msgid "WiFi card detected but not connected to an access point"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:93 install_station/network_setup.py:153
|
||||
msgid "WiFi card not detected or not supported"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:258
|
||||
msgid "Wi-Fi Network Authentication Required"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:270
|
||||
#, python-brace-format
|
||||
msgid "{ssid} Wi-Fi Network Authentication failed"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:272
|
||||
#, python-brace-format
|
||||
msgid "Authentication required by {ssid} Wi-Fi Network"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:275
|
||||
msgid "Password:"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:278
|
||||
msgid "Show password"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:164
|
||||
msgid ""
|
||||
"Please select 1 or more drive for stripe (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:171
|
||||
msgid "Please select 2 drive for mirroring (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:179
|
||||
msgid "Please select 3 drive for RAIDZ1 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:186
|
||||
msgid "Please select 4 drive for RAIDZ2 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:193
|
||||
msgid "Please select 5 drive for RAIDZ3 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:296
|
||||
msgid "Disk"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:303
|
||||
msgid "Size(MB)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:309
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:313
|
||||
msgid "Check"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:326
|
||||
msgid "Please select one drive"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:331
|
||||
msgid "<b>Pool Type</b>"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:335
|
||||
msgid "1+ disks Stripe"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:336
|
||||
msgid "2+ disks Mirror"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:337
|
||||
msgid "3 disks RAIDZ1"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:338
|
||||
msgid "4 disks RAIDZ2"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:339
|
||||
msgid "5 disks RAIDZ3"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:349
|
||||
msgid "<b>Pool Name</b>"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:369
|
||||
msgid "Encrypt Disk"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:373
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:380
|
||||
msgid "Verify it"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:541
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:552
|
||||
msgid "Smallest disk need to be SELECTED first!\n"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:553
|
||||
msgid "All the disk selected will reset."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:16
|
||||
msgid ""
|
||||
"To run GhostBSD without installing, select \"Try GhostBSD.\"\n"
|
||||
"\n"
|
||||
"To install GhostBSD on your computer hard disk drive, click \"Install "
|
||||
"GhostBSD.\"\n"
|
||||
"\n"
|
||||
"Note: Language selection only works when selecting \"Try GhostBSD.\"\n"
|
||||
" When installing GhostBSD, the installation program is only in English."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:95 install_station/welcome_live.py:242
|
||||
msgid "Install GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:98 install_station/welcome_live.py:246
|
||||
msgid "Try GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:101
|
||||
msgid ""
|
||||
"To run GhostBSD without installing, select \"Try GhostBSD.\"\n"
|
||||
" \n"
|
||||
"\n"
|
||||
"To install GhostBSD on your computer hard disk drive, click \"Install "
|
||||
"GhostBSD.\"\n"
|
||||
"\n"
|
||||
"Note: Language selection only works when selecting \"Try GhostBSD.\"\n"
|
||||
" When installing GhostBSD, the installation program is only in English."
|
||||
msgstr ""
|
||||
+365
@@ -0,0 +1,365 @@
|
||||
# Catalan translations for PACKAGE package.
|
||||
# Copyright (C) 2025 THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# Eric Turgeon <EMAIL@ADDRESS>, 2025.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-07-09 20:39-0300\n"
|
||||
"PO-Revision-Date: 2025-07-09 20:26-0300\n"
|
||||
"Last-Translator: Eric Turgeon <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Catalan <ca@dodds.net>\n"
|
||||
"Language: ca\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=ASCII\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: install_station/boot_manager.py:125
|
||||
#: install_station/interface_controller.py:168
|
||||
msgid "Boot Option"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:139
|
||||
msgid "Setup rEFInd boot manager"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:153
|
||||
msgid "Setup FreeBSD boot manager"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:168
|
||||
#, python-brace-format
|
||||
msgid "FreeBSD {loader} loader only"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:13
|
||||
msgid ""
|
||||
"Installation is complete. You need to restart the\n"
|
||||
"computer in order to use the new installation.\n"
|
||||
"You can continue to use this live media, although\n"
|
||||
"any changes you make or documents you save will\n"
|
||||
"not be preserved on reboot."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:34
|
||||
msgid "Installation Completed"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:50
|
||||
msgid "Restart"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:52
|
||||
msgid "Continue"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:21
|
||||
msgid "Installation Error"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:32
|
||||
msgid "Installation has failed!"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:37
|
||||
msgid "GhostBSD issue system"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:38
|
||||
#, python-brace-format
|
||||
msgid ""
|
||||
"Please report the issue to {anchor}, and \n"
|
||||
"be sure to provide /tmp/.pc-sysinstall/pc-sysinstall.log."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:47
|
||||
msgid "Ok"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:55
|
||||
msgid "How do you want to install GhostBSD?"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:60
|
||||
msgid ""
|
||||
"<b>Disks Configuration</b>\n"
|
||||
"Install GhostBSD using Stripe, Mirror, RAIDZ1, RAIDZ2, or RAIDZ3 "
|
||||
"configurations."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:70
|
||||
msgid ""
|
||||
"<b>Multi-Boot Configuration</b>\n"
|
||||
"Install GhostBSD with ZFS alongside other operating systems."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:39
|
||||
msgid "Creating ghostbsd_installation.cfg"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:43
|
||||
msgid "Deleting partition"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:48
|
||||
msgid "Creating disk partition"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:53
|
||||
msgid "Creating new partitions"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:83
|
||||
msgid "Installation in progress"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:95
|
||||
msgid ""
|
||||
"Thank you for choosing GhostBSD!\n"
|
||||
"\n"
|
||||
"We believe every computer operating system should be simple, elegant, secure "
|
||||
"and protect your privacy while being easy to use. GhostBSD is simplifying "
|
||||
"FreeBSD for those who lack the technical expertise required to use it and "
|
||||
"lower the entry-level of using BSD. \n"
|
||||
"\n"
|
||||
"We hope you'll enjoy our BSD operating system."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:14
|
||||
msgid "Back"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:16
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:18
|
||||
#: install_station/interface_controller.py:226
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:100
|
||||
#: install_station/interface_controller.py:101
|
||||
#: install_station/welcome_live.py:112
|
||||
msgid "Welcome to GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:110
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:136
|
||||
msgid "Installation Types"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:148
|
||||
msgid "Custom Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:158
|
||||
msgid "ZFS Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:170
|
||||
msgid "Install"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:180
|
||||
msgid "Installation Progress"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:187
|
||||
msgid "Progress Bar"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:201
|
||||
#: install_station/interface_controller.py:206
|
||||
#: install_station/network_setup.py:110
|
||||
msgid "Network Setup"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:20
|
||||
msgid "Select the language you want to use with GhostBSD."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:64 install_station/welcome_live.py:110
|
||||
#: install_station/welcome_live.py:127
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:79
|
||||
msgid "Welcome To GhostBSD!"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:69 install_station/network_setup.py:129
|
||||
msgid "Network card connected to the internet"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:75 install_station/network_setup.py:135
|
||||
msgid "Network card not connected to the internet"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:78 install_station/network_setup.py:138
|
||||
msgid "No network card detected"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:86 install_station/network_setup.py:146
|
||||
msgid "WiFi card detected and connected to an access point"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:90 install_station/network_setup.py:150
|
||||
msgid "WiFi card detected but not connected to an access point"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:93 install_station/network_setup.py:153
|
||||
msgid "WiFi card not detected or not supported"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:258
|
||||
msgid "Wi-Fi Network Authentication Required"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:270
|
||||
#, python-brace-format
|
||||
msgid "{ssid} Wi-Fi Network Authentication failed"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:272
|
||||
#, python-brace-format
|
||||
msgid "Authentication required by {ssid} Wi-Fi Network"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:275
|
||||
msgid "Password:"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:278
|
||||
msgid "Show password"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:164
|
||||
msgid ""
|
||||
"Please select 1 or more drive for stripe (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:171
|
||||
msgid "Please select 2 drive for mirroring (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:179
|
||||
msgid "Please select 3 drive for RAIDZ1 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:186
|
||||
msgid "Please select 4 drive for RAIDZ2 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:193
|
||||
msgid "Please select 5 drive for RAIDZ3 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:296
|
||||
msgid "Disk"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:303
|
||||
msgid "Size(MB)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:309
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:313
|
||||
msgid "Check"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:326
|
||||
msgid "Please select one drive"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:331
|
||||
msgid "<b>Pool Type</b>"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:335
|
||||
msgid "1+ disks Stripe"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:336
|
||||
msgid "2+ disks Mirror"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:337
|
||||
msgid "3 disks RAIDZ1"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:338
|
||||
msgid "4 disks RAIDZ2"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:339
|
||||
msgid "5 disks RAIDZ3"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:349
|
||||
msgid "<b>Pool Name</b>"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:369
|
||||
msgid "Encrypt Disk"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:373
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:380
|
||||
msgid "Verify it"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:541
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:552
|
||||
msgid "Smallest disk need to be SELECTED first!\n"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:553
|
||||
msgid "All the disk selected will reset."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:16
|
||||
msgid ""
|
||||
"To run GhostBSD without installing, select \"Try GhostBSD.\"\n"
|
||||
"\n"
|
||||
"To install GhostBSD on your computer hard disk drive, click \"Install "
|
||||
"GhostBSD.\"\n"
|
||||
"\n"
|
||||
"Note: Language selection only works when selecting \"Try GhostBSD.\"\n"
|
||||
" When installing GhostBSD, the installation program is only in English."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:95 install_station/welcome_live.py:242
|
||||
msgid "Install GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:98 install_station/welcome_live.py:246
|
||||
msgid "Try GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:101
|
||||
msgid ""
|
||||
"To run GhostBSD without installing, select \"Try GhostBSD.\"\n"
|
||||
" \n"
|
||||
"\n"
|
||||
"To install GhostBSD on your computer hard disk drive, click \"Install "
|
||||
"GhostBSD.\"\n"
|
||||
"\n"
|
||||
"Note: Language selection only works when selecting \"Try GhostBSD.\"\n"
|
||||
" When installing GhostBSD, the installation program is only in English."
|
||||
msgstr ""
|
||||
+365
@@ -0,0 +1,365 @@
|
||||
# Czech translations for PACKAGE package.
|
||||
# Copyright (C) 2025 THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# Eric Turgeon <EMAIL@ADDRESS>, 2025.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-07-09 20:39-0300\n"
|
||||
"PO-Revision-Date: 2025-07-09 20:24-0300\n"
|
||||
"Last-Translator: Eric Turgeon <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Czech <translation-team-cs@lists.sourceforge.net>\n"
|
||||
"Language: cs\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=ASCII\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
||||
|
||||
#: install_station/boot_manager.py:125
|
||||
#: install_station/interface_controller.py:168
|
||||
msgid "Boot Option"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:139
|
||||
msgid "Setup rEFInd boot manager"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:153
|
||||
msgid "Setup FreeBSD boot manager"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:168
|
||||
#, python-brace-format
|
||||
msgid "FreeBSD {loader} loader only"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:13
|
||||
msgid ""
|
||||
"Installation is complete. You need to restart the\n"
|
||||
"computer in order to use the new installation.\n"
|
||||
"You can continue to use this live media, although\n"
|
||||
"any changes you make or documents you save will\n"
|
||||
"not be preserved on reboot."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:34
|
||||
msgid "Installation Completed"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:50
|
||||
msgid "Restart"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:52
|
||||
msgid "Continue"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:21
|
||||
msgid "Installation Error"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:32
|
||||
msgid "Installation has failed!"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:37
|
||||
msgid "GhostBSD issue system"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:38
|
||||
#, python-brace-format
|
||||
msgid ""
|
||||
"Please report the issue to {anchor}, and \n"
|
||||
"be sure to provide /tmp/.pc-sysinstall/pc-sysinstall.log."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:47
|
||||
msgid "Ok"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:55
|
||||
msgid "How do you want to install GhostBSD?"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:60
|
||||
msgid ""
|
||||
"<b>Disks Configuration</b>\n"
|
||||
"Install GhostBSD using Stripe, Mirror, RAIDZ1, RAIDZ2, or RAIDZ3 "
|
||||
"configurations."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:70
|
||||
msgid ""
|
||||
"<b>Multi-Boot Configuration</b>\n"
|
||||
"Install GhostBSD with ZFS alongside other operating systems."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:39
|
||||
msgid "Creating ghostbsd_installation.cfg"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:43
|
||||
msgid "Deleting partition"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:48
|
||||
msgid "Creating disk partition"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:53
|
||||
msgid "Creating new partitions"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:83
|
||||
msgid "Installation in progress"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:95
|
||||
msgid ""
|
||||
"Thank you for choosing GhostBSD!\n"
|
||||
"\n"
|
||||
"We believe every computer operating system should be simple, elegant, secure "
|
||||
"and protect your privacy while being easy to use. GhostBSD is simplifying "
|
||||
"FreeBSD for those who lack the technical expertise required to use it and "
|
||||
"lower the entry-level of using BSD. \n"
|
||||
"\n"
|
||||
"We hope you'll enjoy our BSD operating system."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:14
|
||||
msgid "Back"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:16
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:18
|
||||
#: install_station/interface_controller.py:226
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:100
|
||||
#: install_station/interface_controller.py:101
|
||||
#: install_station/welcome_live.py:112
|
||||
msgid "Welcome to GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:110
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:136
|
||||
msgid "Installation Types"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:148
|
||||
msgid "Custom Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:158
|
||||
msgid "ZFS Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:170
|
||||
msgid "Install"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:180
|
||||
msgid "Installation Progress"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:187
|
||||
msgid "Progress Bar"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:201
|
||||
#: install_station/interface_controller.py:206
|
||||
#: install_station/network_setup.py:110
|
||||
msgid "Network Setup"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:20
|
||||
msgid "Select the language you want to use with GhostBSD."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:64 install_station/welcome_live.py:110
|
||||
#: install_station/welcome_live.py:127
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:79
|
||||
msgid "Welcome To GhostBSD!"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:69 install_station/network_setup.py:129
|
||||
msgid "Network card connected to the internet"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:75 install_station/network_setup.py:135
|
||||
msgid "Network card not connected to the internet"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:78 install_station/network_setup.py:138
|
||||
msgid "No network card detected"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:86 install_station/network_setup.py:146
|
||||
msgid "WiFi card detected and connected to an access point"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:90 install_station/network_setup.py:150
|
||||
msgid "WiFi card detected but not connected to an access point"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:93 install_station/network_setup.py:153
|
||||
msgid "WiFi card not detected or not supported"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:258
|
||||
msgid "Wi-Fi Network Authentication Required"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:270
|
||||
#, python-brace-format
|
||||
msgid "{ssid} Wi-Fi Network Authentication failed"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:272
|
||||
#, python-brace-format
|
||||
msgid "Authentication required by {ssid} Wi-Fi Network"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:275
|
||||
msgid "Password:"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:278
|
||||
msgid "Show password"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:164
|
||||
msgid ""
|
||||
"Please select 1 or more drive for stripe (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:171
|
||||
msgid "Please select 2 drive for mirroring (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:179
|
||||
msgid "Please select 3 drive for RAIDZ1 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:186
|
||||
msgid "Please select 4 drive for RAIDZ2 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:193
|
||||
msgid "Please select 5 drive for RAIDZ3 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:296
|
||||
msgid "Disk"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:303
|
||||
msgid "Size(MB)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:309
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:313
|
||||
msgid "Check"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:326
|
||||
msgid "Please select one drive"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:331
|
||||
msgid "<b>Pool Type</b>"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:335
|
||||
msgid "1+ disks Stripe"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:336
|
||||
msgid "2+ disks Mirror"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:337
|
||||
msgid "3 disks RAIDZ1"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:338
|
||||
msgid "4 disks RAIDZ2"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:339
|
||||
msgid "5 disks RAIDZ3"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:349
|
||||
msgid "<b>Pool Name</b>"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:369
|
||||
msgid "Encrypt Disk"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:373
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:380
|
||||
msgid "Verify it"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:541
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:552
|
||||
msgid "Smallest disk need to be SELECTED first!\n"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:553
|
||||
msgid "All the disk selected will reset."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:16
|
||||
msgid ""
|
||||
"To run GhostBSD without installing, select \"Try GhostBSD.\"\n"
|
||||
"\n"
|
||||
"To install GhostBSD on your computer hard disk drive, click \"Install "
|
||||
"GhostBSD.\"\n"
|
||||
"\n"
|
||||
"Note: Language selection only works when selecting \"Try GhostBSD.\"\n"
|
||||
" When installing GhostBSD, the installation program is only in English."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:95 install_station/welcome_live.py:242
|
||||
msgid "Install GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:98 install_station/welcome_live.py:246
|
||||
msgid "Try GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:101
|
||||
msgid ""
|
||||
"To run GhostBSD without installing, select \"Try GhostBSD.\"\n"
|
||||
" \n"
|
||||
"\n"
|
||||
"To install GhostBSD on your computer hard disk drive, click \"Install "
|
||||
"GhostBSD.\"\n"
|
||||
"\n"
|
||||
"Note: Language selection only works when selecting \"Try GhostBSD.\"\n"
|
||||
" When installing GhostBSD, the installation program is only in English."
|
||||
msgstr ""
|
||||
+365
@@ -0,0 +1,365 @@
|
||||
# Danish translations for PACKAGE package.
|
||||
# Copyright (C) 2025 THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# Eric Turgeon <EMAIL@ADDRESS>, 2025.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-07-09 20:39-0300\n"
|
||||
"PO-Revision-Date: 2025-07-09 20:24-0300\n"
|
||||
"Last-Translator: Eric Turgeon <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Danish <dansk@dansk-gruppen.dk>\n"
|
||||
"Language: da\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=ASCII\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: install_station/boot_manager.py:125
|
||||
#: install_station/interface_controller.py:168
|
||||
msgid "Boot Option"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:139
|
||||
msgid "Setup rEFInd boot manager"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:153
|
||||
msgid "Setup FreeBSD boot manager"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:168
|
||||
#, python-brace-format
|
||||
msgid "FreeBSD {loader} loader only"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:13
|
||||
msgid ""
|
||||
"Installation is complete. You need to restart the\n"
|
||||
"computer in order to use the new installation.\n"
|
||||
"You can continue to use this live media, although\n"
|
||||
"any changes you make or documents you save will\n"
|
||||
"not be preserved on reboot."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:34
|
||||
msgid "Installation Completed"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:50
|
||||
msgid "Restart"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:52
|
||||
msgid "Continue"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:21
|
||||
msgid "Installation Error"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:32
|
||||
msgid "Installation has failed!"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:37
|
||||
msgid "GhostBSD issue system"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:38
|
||||
#, python-brace-format
|
||||
msgid ""
|
||||
"Please report the issue to {anchor}, and \n"
|
||||
"be sure to provide /tmp/.pc-sysinstall/pc-sysinstall.log."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:47
|
||||
msgid "Ok"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:55
|
||||
msgid "How do you want to install GhostBSD?"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:60
|
||||
msgid ""
|
||||
"<b>Disks Configuration</b>\n"
|
||||
"Install GhostBSD using Stripe, Mirror, RAIDZ1, RAIDZ2, or RAIDZ3 "
|
||||
"configurations."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:70
|
||||
msgid ""
|
||||
"<b>Multi-Boot Configuration</b>\n"
|
||||
"Install GhostBSD with ZFS alongside other operating systems."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:39
|
||||
msgid "Creating ghostbsd_installation.cfg"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:43
|
||||
msgid "Deleting partition"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:48
|
||||
msgid "Creating disk partition"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:53
|
||||
msgid "Creating new partitions"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:83
|
||||
msgid "Installation in progress"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:95
|
||||
msgid ""
|
||||
"Thank you for choosing GhostBSD!\n"
|
||||
"\n"
|
||||
"We believe every computer operating system should be simple, elegant, secure "
|
||||
"and protect your privacy while being easy to use. GhostBSD is simplifying "
|
||||
"FreeBSD for those who lack the technical expertise required to use it and "
|
||||
"lower the entry-level of using BSD. \n"
|
||||
"\n"
|
||||
"We hope you'll enjoy our BSD operating system."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:14
|
||||
msgid "Back"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:16
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:18
|
||||
#: install_station/interface_controller.py:226
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:100
|
||||
#: install_station/interface_controller.py:101
|
||||
#: install_station/welcome_live.py:112
|
||||
msgid "Welcome to GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:110
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:136
|
||||
msgid "Installation Types"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:148
|
||||
msgid "Custom Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:158
|
||||
msgid "ZFS Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:170
|
||||
msgid "Install"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:180
|
||||
msgid "Installation Progress"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:187
|
||||
msgid "Progress Bar"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:201
|
||||
#: install_station/interface_controller.py:206
|
||||
#: install_station/network_setup.py:110
|
||||
msgid "Network Setup"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:20
|
||||
msgid "Select the language you want to use with GhostBSD."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:64 install_station/welcome_live.py:110
|
||||
#: install_station/welcome_live.py:127
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:79
|
||||
msgid "Welcome To GhostBSD!"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:69 install_station/network_setup.py:129
|
||||
msgid "Network card connected to the internet"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:75 install_station/network_setup.py:135
|
||||
msgid "Network card not connected to the internet"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:78 install_station/network_setup.py:138
|
||||
msgid "No network card detected"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:86 install_station/network_setup.py:146
|
||||
msgid "WiFi card detected and connected to an access point"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:90 install_station/network_setup.py:150
|
||||
msgid "WiFi card detected but not connected to an access point"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:93 install_station/network_setup.py:153
|
||||
msgid "WiFi card not detected or not supported"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:258
|
||||
msgid "Wi-Fi Network Authentication Required"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:270
|
||||
#, python-brace-format
|
||||
msgid "{ssid} Wi-Fi Network Authentication failed"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:272
|
||||
#, python-brace-format
|
||||
msgid "Authentication required by {ssid} Wi-Fi Network"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:275
|
||||
msgid "Password:"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:278
|
||||
msgid "Show password"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:164
|
||||
msgid ""
|
||||
"Please select 1 or more drive for stripe (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:171
|
||||
msgid "Please select 2 drive for mirroring (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:179
|
||||
msgid "Please select 3 drive for RAIDZ1 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:186
|
||||
msgid "Please select 4 drive for RAIDZ2 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:193
|
||||
msgid "Please select 5 drive for RAIDZ3 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:296
|
||||
msgid "Disk"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:303
|
||||
msgid "Size(MB)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:309
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:313
|
||||
msgid "Check"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:326
|
||||
msgid "Please select one drive"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:331
|
||||
msgid "<b>Pool Type</b>"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:335
|
||||
msgid "1+ disks Stripe"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:336
|
||||
msgid "2+ disks Mirror"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:337
|
||||
msgid "3 disks RAIDZ1"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:338
|
||||
msgid "4 disks RAIDZ2"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:339
|
||||
msgid "5 disks RAIDZ3"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:349
|
||||
msgid "<b>Pool Name</b>"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:369
|
||||
msgid "Encrypt Disk"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:373
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:380
|
||||
msgid "Verify it"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:541
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:552
|
||||
msgid "Smallest disk need to be SELECTED first!\n"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:553
|
||||
msgid "All the disk selected will reset."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:16
|
||||
msgid ""
|
||||
"To run GhostBSD without installing, select \"Try GhostBSD.\"\n"
|
||||
"\n"
|
||||
"To install GhostBSD on your computer hard disk drive, click \"Install "
|
||||
"GhostBSD.\"\n"
|
||||
"\n"
|
||||
"Note: Language selection only works when selecting \"Try GhostBSD.\"\n"
|
||||
" When installing GhostBSD, the installation program is only in English."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:95 install_station/welcome_live.py:242
|
||||
msgid "Install GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:98 install_station/welcome_live.py:246
|
||||
msgid "Try GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:101
|
||||
msgid ""
|
||||
"To run GhostBSD without installing, select \"Try GhostBSD.\"\n"
|
||||
" \n"
|
||||
"\n"
|
||||
"To install GhostBSD on your computer hard disk drive, click \"Install "
|
||||
"GhostBSD.\"\n"
|
||||
"\n"
|
||||
"Note: Language selection only works when selecting \"Try GhostBSD.\"\n"
|
||||
" When installing GhostBSD, the installation program is only in English."
|
||||
msgstr ""
|
||||
+365
@@ -0,0 +1,365 @@
|
||||
# German translations for PACKAGE package.
|
||||
# Copyright (C) 2025 THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# Eric Turgeon <EMAIL@ADDRESS>, 2025.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-07-09 20:39-0300\n"
|
||||
"PO-Revision-Date: 2025-07-09 20:19-0300\n"
|
||||
"Last-Translator: Eric Turgeon <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: German <translation-team-de@lists.sourceforge.net>\n"
|
||||
"Language: de\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=ASCII\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: install_station/boot_manager.py:125
|
||||
#: install_station/interface_controller.py:168
|
||||
msgid "Boot Option"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:139
|
||||
msgid "Setup rEFInd boot manager"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:153
|
||||
msgid "Setup FreeBSD boot manager"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:168
|
||||
#, python-brace-format
|
||||
msgid "FreeBSD {loader} loader only"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:13
|
||||
msgid ""
|
||||
"Installation is complete. You need to restart the\n"
|
||||
"computer in order to use the new installation.\n"
|
||||
"You can continue to use this live media, although\n"
|
||||
"any changes you make or documents you save will\n"
|
||||
"not be preserved on reboot."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:34
|
||||
msgid "Installation Completed"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:50
|
||||
msgid "Restart"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:52
|
||||
msgid "Continue"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:21
|
||||
msgid "Installation Error"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:32
|
||||
msgid "Installation has failed!"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:37
|
||||
msgid "GhostBSD issue system"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:38
|
||||
#, python-brace-format
|
||||
msgid ""
|
||||
"Please report the issue to {anchor}, and \n"
|
||||
"be sure to provide /tmp/.pc-sysinstall/pc-sysinstall.log."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:47
|
||||
msgid "Ok"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:55
|
||||
msgid "How do you want to install GhostBSD?"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:60
|
||||
msgid ""
|
||||
"<b>Disks Configuration</b>\n"
|
||||
"Install GhostBSD using Stripe, Mirror, RAIDZ1, RAIDZ2, or RAIDZ3 "
|
||||
"configurations."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:70
|
||||
msgid ""
|
||||
"<b>Multi-Boot Configuration</b>\n"
|
||||
"Install GhostBSD with ZFS alongside other operating systems."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:39
|
||||
msgid "Creating ghostbsd_installation.cfg"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:43
|
||||
msgid "Deleting partition"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:48
|
||||
msgid "Creating disk partition"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:53
|
||||
msgid "Creating new partitions"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:83
|
||||
msgid "Installation in progress"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:95
|
||||
msgid ""
|
||||
"Thank you for choosing GhostBSD!\n"
|
||||
"\n"
|
||||
"We believe every computer operating system should be simple, elegant, secure "
|
||||
"and protect your privacy while being easy to use. GhostBSD is simplifying "
|
||||
"FreeBSD for those who lack the technical expertise required to use it and "
|
||||
"lower the entry-level of using BSD. \n"
|
||||
"\n"
|
||||
"We hope you'll enjoy our BSD operating system."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:14
|
||||
msgid "Back"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:16
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:18
|
||||
#: install_station/interface_controller.py:226
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:100
|
||||
#: install_station/interface_controller.py:101
|
||||
#: install_station/welcome_live.py:112
|
||||
msgid "Welcome to GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:110
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:136
|
||||
msgid "Installation Types"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:148
|
||||
msgid "Custom Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:158
|
||||
msgid "ZFS Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:170
|
||||
msgid "Install"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:180
|
||||
msgid "Installation Progress"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:187
|
||||
msgid "Progress Bar"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:201
|
||||
#: install_station/interface_controller.py:206
|
||||
#: install_station/network_setup.py:110
|
||||
msgid "Network Setup"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:20
|
||||
msgid "Select the language you want to use with GhostBSD."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:64 install_station/welcome_live.py:110
|
||||
#: install_station/welcome_live.py:127
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:79
|
||||
msgid "Welcome To GhostBSD!"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:69 install_station/network_setup.py:129
|
||||
msgid "Network card connected to the internet"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:75 install_station/network_setup.py:135
|
||||
msgid "Network card not connected to the internet"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:78 install_station/network_setup.py:138
|
||||
msgid "No network card detected"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:86 install_station/network_setup.py:146
|
||||
msgid "WiFi card detected and connected to an access point"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:90 install_station/network_setup.py:150
|
||||
msgid "WiFi card detected but not connected to an access point"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:93 install_station/network_setup.py:153
|
||||
msgid "WiFi card not detected or not supported"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:258
|
||||
msgid "Wi-Fi Network Authentication Required"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:270
|
||||
#, python-brace-format
|
||||
msgid "{ssid} Wi-Fi Network Authentication failed"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:272
|
||||
#, python-brace-format
|
||||
msgid "Authentication required by {ssid} Wi-Fi Network"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:275
|
||||
msgid "Password:"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:278
|
||||
msgid "Show password"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:164
|
||||
msgid ""
|
||||
"Please select 1 or more drive for stripe (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:171
|
||||
msgid "Please select 2 drive for mirroring (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:179
|
||||
msgid "Please select 3 drive for RAIDZ1 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:186
|
||||
msgid "Please select 4 drive for RAIDZ2 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:193
|
||||
msgid "Please select 5 drive for RAIDZ3 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:296
|
||||
msgid "Disk"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:303
|
||||
msgid "Size(MB)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:309
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:313
|
||||
msgid "Check"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:326
|
||||
msgid "Please select one drive"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:331
|
||||
msgid "<b>Pool Type</b>"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:335
|
||||
msgid "1+ disks Stripe"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:336
|
||||
msgid "2+ disks Mirror"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:337
|
||||
msgid "3 disks RAIDZ1"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:338
|
||||
msgid "4 disks RAIDZ2"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:339
|
||||
msgid "5 disks RAIDZ3"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:349
|
||||
msgid "<b>Pool Name</b>"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:369
|
||||
msgid "Encrypt Disk"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:373
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:380
|
||||
msgid "Verify it"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:541
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:552
|
||||
msgid "Smallest disk need to be SELECTED first!\n"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:553
|
||||
msgid "All the disk selected will reset."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:16
|
||||
msgid ""
|
||||
"To run GhostBSD without installing, select \"Try GhostBSD.\"\n"
|
||||
"\n"
|
||||
"To install GhostBSD on your computer hard disk drive, click \"Install "
|
||||
"GhostBSD.\"\n"
|
||||
"\n"
|
||||
"Note: Language selection only works when selecting \"Try GhostBSD.\"\n"
|
||||
" When installing GhostBSD, the installation program is only in English."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:95 install_station/welcome_live.py:242
|
||||
msgid "Install GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:98 install_station/welcome_live.py:246
|
||||
msgid "Try GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:101
|
||||
msgid ""
|
||||
"To run GhostBSD without installing, select \"Try GhostBSD.\"\n"
|
||||
" \n"
|
||||
"\n"
|
||||
"To install GhostBSD on your computer hard disk drive, click \"Install "
|
||||
"GhostBSD.\"\n"
|
||||
"\n"
|
||||
"Note: Language selection only works when selecting \"Try GhostBSD.\"\n"
|
||||
" When installing GhostBSD, the installation program is only in English."
|
||||
msgstr ""
|
||||
+365
@@ -0,0 +1,365 @@
|
||||
# Greek translations for PACKAGE package.
|
||||
# Copyright (C) 2025 THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# Eric Turgeon <EMAIL@ADDRESS>, 2025.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-07-09 20:39-0300\n"
|
||||
"PO-Revision-Date: 2025-07-09 20:24-0300\n"
|
||||
"Last-Translator: Eric Turgeon <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Greek <team@lists.gnome.gr>\n"
|
||||
"Language: el\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=ASCII\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: install_station/boot_manager.py:125
|
||||
#: install_station/interface_controller.py:168
|
||||
msgid "Boot Option"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:139
|
||||
msgid "Setup rEFInd boot manager"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:153
|
||||
msgid "Setup FreeBSD boot manager"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:168
|
||||
#, python-brace-format
|
||||
msgid "FreeBSD {loader} loader only"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:13
|
||||
msgid ""
|
||||
"Installation is complete. You need to restart the\n"
|
||||
"computer in order to use the new installation.\n"
|
||||
"You can continue to use this live media, although\n"
|
||||
"any changes you make or documents you save will\n"
|
||||
"not be preserved on reboot."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:34
|
||||
msgid "Installation Completed"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:50
|
||||
msgid "Restart"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:52
|
||||
msgid "Continue"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:21
|
||||
msgid "Installation Error"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:32
|
||||
msgid "Installation has failed!"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:37
|
||||
msgid "GhostBSD issue system"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:38
|
||||
#, python-brace-format
|
||||
msgid ""
|
||||
"Please report the issue to {anchor}, and \n"
|
||||
"be sure to provide /tmp/.pc-sysinstall/pc-sysinstall.log."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:47
|
||||
msgid "Ok"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:55
|
||||
msgid "How do you want to install GhostBSD?"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:60
|
||||
msgid ""
|
||||
"<b>Disks Configuration</b>\n"
|
||||
"Install GhostBSD using Stripe, Mirror, RAIDZ1, RAIDZ2, or RAIDZ3 "
|
||||
"configurations."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:70
|
||||
msgid ""
|
||||
"<b>Multi-Boot Configuration</b>\n"
|
||||
"Install GhostBSD with ZFS alongside other operating systems."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:39
|
||||
msgid "Creating ghostbsd_installation.cfg"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:43
|
||||
msgid "Deleting partition"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:48
|
||||
msgid "Creating disk partition"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:53
|
||||
msgid "Creating new partitions"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:83
|
||||
msgid "Installation in progress"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:95
|
||||
msgid ""
|
||||
"Thank you for choosing GhostBSD!\n"
|
||||
"\n"
|
||||
"We believe every computer operating system should be simple, elegant, secure "
|
||||
"and protect your privacy while being easy to use. GhostBSD is simplifying "
|
||||
"FreeBSD for those who lack the technical expertise required to use it and "
|
||||
"lower the entry-level of using BSD. \n"
|
||||
"\n"
|
||||
"We hope you'll enjoy our BSD operating system."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:14
|
||||
msgid "Back"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:16
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:18
|
||||
#: install_station/interface_controller.py:226
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:100
|
||||
#: install_station/interface_controller.py:101
|
||||
#: install_station/welcome_live.py:112
|
||||
msgid "Welcome to GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:110
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:136
|
||||
msgid "Installation Types"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:148
|
||||
msgid "Custom Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:158
|
||||
msgid "ZFS Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:170
|
||||
msgid "Install"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:180
|
||||
msgid "Installation Progress"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:187
|
||||
msgid "Progress Bar"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:201
|
||||
#: install_station/interface_controller.py:206
|
||||
#: install_station/network_setup.py:110
|
||||
msgid "Network Setup"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:20
|
||||
msgid "Select the language you want to use with GhostBSD."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:64 install_station/welcome_live.py:110
|
||||
#: install_station/welcome_live.py:127
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:79
|
||||
msgid "Welcome To GhostBSD!"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:69 install_station/network_setup.py:129
|
||||
msgid "Network card connected to the internet"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:75 install_station/network_setup.py:135
|
||||
msgid "Network card not connected to the internet"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:78 install_station/network_setup.py:138
|
||||
msgid "No network card detected"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:86 install_station/network_setup.py:146
|
||||
msgid "WiFi card detected and connected to an access point"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:90 install_station/network_setup.py:150
|
||||
msgid "WiFi card detected but not connected to an access point"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:93 install_station/network_setup.py:153
|
||||
msgid "WiFi card not detected or not supported"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:258
|
||||
msgid "Wi-Fi Network Authentication Required"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:270
|
||||
#, python-brace-format
|
||||
msgid "{ssid} Wi-Fi Network Authentication failed"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:272
|
||||
#, python-brace-format
|
||||
msgid "Authentication required by {ssid} Wi-Fi Network"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:275
|
||||
msgid "Password:"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:278
|
||||
msgid "Show password"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:164
|
||||
msgid ""
|
||||
"Please select 1 or more drive for stripe (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:171
|
||||
msgid "Please select 2 drive for mirroring (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:179
|
||||
msgid "Please select 3 drive for RAIDZ1 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:186
|
||||
msgid "Please select 4 drive for RAIDZ2 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:193
|
||||
msgid "Please select 5 drive for RAIDZ3 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:296
|
||||
msgid "Disk"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:303
|
||||
msgid "Size(MB)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:309
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:313
|
||||
msgid "Check"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:326
|
||||
msgid "Please select one drive"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:331
|
||||
msgid "<b>Pool Type</b>"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:335
|
||||
msgid "1+ disks Stripe"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:336
|
||||
msgid "2+ disks Mirror"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:337
|
||||
msgid "3 disks RAIDZ1"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:338
|
||||
msgid "4 disks RAIDZ2"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:339
|
||||
msgid "5 disks RAIDZ3"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:349
|
||||
msgid "<b>Pool Name</b>"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:369
|
||||
msgid "Encrypt Disk"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:373
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:380
|
||||
msgid "Verify it"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:541
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:552
|
||||
msgid "Smallest disk need to be SELECTED first!\n"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:553
|
||||
msgid "All the disk selected will reset."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:16
|
||||
msgid ""
|
||||
"To run GhostBSD without installing, select \"Try GhostBSD.\"\n"
|
||||
"\n"
|
||||
"To install GhostBSD on your computer hard disk drive, click \"Install "
|
||||
"GhostBSD.\"\n"
|
||||
"\n"
|
||||
"Note: Language selection only works when selecting \"Try GhostBSD.\"\n"
|
||||
" When installing GhostBSD, the installation program is only in English."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:95 install_station/welcome_live.py:242
|
||||
msgid "Install GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:98 install_station/welcome_live.py:246
|
||||
msgid "Try GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:101
|
||||
msgid ""
|
||||
"To run GhostBSD without installing, select \"Try GhostBSD.\"\n"
|
||||
" \n"
|
||||
"\n"
|
||||
"To install GhostBSD on your computer hard disk drive, click \"Install "
|
||||
"GhostBSD.\"\n"
|
||||
"\n"
|
||||
"Note: Language selection only works when selecting \"Try GhostBSD.\"\n"
|
||||
" When installing GhostBSD, the installation program is only in English."
|
||||
msgstr ""
|
||||
+401
@@ -0,0 +1,401 @@
|
||||
# English translations for PACKAGE package.
|
||||
# Copyright (C) 2025 THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# Eric Turgeon <EMAIL@ADDRESS>, 2025.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-07-09 20:39-0300\n"
|
||||
"PO-Revision-Date: 2025-07-09 20:26-0300\n"
|
||||
"Last-Translator: Eric Turgeon <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: English (British) <(nothing)>\n"
|
||||
"Language: en_GB\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=ASCII\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: install_station/boot_manager.py:125
|
||||
#: install_station/interface_controller.py:168
|
||||
msgid "Boot Option"
|
||||
msgstr "Boot Option"
|
||||
|
||||
#: install_station/boot_manager.py:139
|
||||
msgid "Setup rEFInd boot manager"
|
||||
msgstr "Setup rEFInd boot manager"
|
||||
|
||||
#: install_station/boot_manager.py:153
|
||||
msgid "Setup FreeBSD boot manager"
|
||||
msgstr "Setup FreeBSD boot manager"
|
||||
|
||||
#: install_station/boot_manager.py:168
|
||||
#, python-brace-format
|
||||
msgid "FreeBSD {loader} loader only"
|
||||
msgstr "FreeBSD {loader} loader only"
|
||||
|
||||
#: install_station/end.py:13
|
||||
msgid ""
|
||||
"Installation is complete. You need to restart the\n"
|
||||
"computer in order to use the new installation.\n"
|
||||
"You can continue to use this live media, although\n"
|
||||
"any changes you make or documents you save will\n"
|
||||
"not be preserved on reboot."
|
||||
msgstr ""
|
||||
"Installation is complete. You need to restart the\n"
|
||||
"computer in order to use the new installation.\n"
|
||||
"You can continue to use this live media, although\n"
|
||||
"any changes you make or documents you save will\n"
|
||||
"not be preserved on reboot."
|
||||
|
||||
#: install_station/end.py:34
|
||||
msgid "Installation Completed"
|
||||
msgstr "Installation Completed"
|
||||
|
||||
#: install_station/end.py:50
|
||||
msgid "Restart"
|
||||
msgstr "Restart"
|
||||
|
||||
#: install_station/end.py:52
|
||||
msgid "Continue"
|
||||
msgstr "Continue"
|
||||
|
||||
#: install_station/error.py:21
|
||||
msgid "Installation Error"
|
||||
msgstr "Installation Error"
|
||||
|
||||
#: install_station/error.py:32
|
||||
msgid "Installation has failed!"
|
||||
msgstr "Installation has failed!"
|
||||
|
||||
#: install_station/error.py:37
|
||||
msgid "GhostBSD issue system"
|
||||
msgstr "GhostBSD issue system"
|
||||
|
||||
#: install_station/error.py:38
|
||||
#, python-brace-format
|
||||
msgid ""
|
||||
"Please report the issue to {anchor}, and \n"
|
||||
"be sure to provide /tmp/.pc-sysinstall/pc-sysinstall.log."
|
||||
msgstr ""
|
||||
"Please report the issue to {anchor}, and \n"
|
||||
"be sure to provide /tmp/.pc-sysinstall/pc-sysinstall.log."
|
||||
|
||||
#: install_station/error.py:47
|
||||
msgid "Ok"
|
||||
msgstr "Ok"
|
||||
|
||||
#: install_station/install_type.py:55
|
||||
msgid "How do you want to install GhostBSD?"
|
||||
msgstr "How do you want to install GhostBSD?"
|
||||
|
||||
#: install_station/install_type.py:60
|
||||
msgid ""
|
||||
"<b>Disks Configuration</b>\n"
|
||||
"Install GhostBSD using Stripe, Mirror, RAIDZ1, RAIDZ2, or RAIDZ3 "
|
||||
"configurations."
|
||||
msgstr ""
|
||||
"<b>Disks Configuration</b>\n"
|
||||
"Install GhostBSD using Stripe, Mirror, RAIDZ1, RAIDZ2, or RAIDZ3 "
|
||||
"configurations."
|
||||
|
||||
#: install_station/install_type.py:70
|
||||
msgid ""
|
||||
"<b>Multi-Boot Configuration</b>\n"
|
||||
"Install GhostBSD with ZFS alongside other operating systems."
|
||||
msgstr ""
|
||||
"<b>Multi-Boot Configuration</b>\n"
|
||||
"Install GhostBSD with ZFS alongside other operating systems."
|
||||
|
||||
#: install_station/install.py:39
|
||||
msgid "Creating ghostbsd_installation.cfg"
|
||||
msgstr "Creating ghostbsd_installation.cfg"
|
||||
|
||||
#: install_station/install.py:43
|
||||
msgid "Deleting partition"
|
||||
msgstr "Deleting partition"
|
||||
|
||||
#: install_station/install.py:48
|
||||
msgid "Creating disk partition"
|
||||
msgstr "Creating disk partition"
|
||||
|
||||
#: install_station/install.py:53
|
||||
msgid "Creating new partitions"
|
||||
msgstr "Creating new partitions"
|
||||
|
||||
#: install_station/install.py:83
|
||||
msgid "Installation in progress"
|
||||
msgstr "Installation in progress"
|
||||
|
||||
#: install_station/install.py:95
|
||||
msgid ""
|
||||
"Thank you for choosing GhostBSD!\n"
|
||||
"\n"
|
||||
"We believe every computer operating system should be simple, elegant, secure "
|
||||
"and protect your privacy while being easy to use. GhostBSD is simplifying "
|
||||
"FreeBSD for those who lack the technical expertise required to use it and "
|
||||
"lower the entry-level of using BSD. \n"
|
||||
"\n"
|
||||
"We hope you'll enjoy our BSD operating system."
|
||||
msgstr ""
|
||||
"Thank you for choosing GhostBSD!\n"
|
||||
"\n"
|
||||
"We believe every computer operating system should be simple, elegant, secure "
|
||||
"and protect your privacy while being easy to use. GhostBSD is simplifying "
|
||||
"FreeBSD for those who lack the technical expertise required to use it and "
|
||||
"lower the entry-level of using BSD. \n"
|
||||
"\n"
|
||||
"We hope you'll enjoy our BSD operating system."
|
||||
|
||||
#: install_station/interface_controller.py:14
|
||||
msgid "Back"
|
||||
msgstr "Back"
|
||||
|
||||
#: install_station/interface_controller.py:16
|
||||
msgid "Cancel"
|
||||
msgstr "Cancel"
|
||||
|
||||
#: install_station/interface_controller.py:18
|
||||
#: install_station/interface_controller.py:226
|
||||
msgid "Next"
|
||||
msgstr "Next"
|
||||
|
||||
#: install_station/interface_controller.py:100
|
||||
#: install_station/interface_controller.py:101
|
||||
#: install_station/welcome_live.py:112
|
||||
msgid "Welcome to GhostBSD"
|
||||
msgstr "Welcome to GhostBSD"
|
||||
|
||||
#: install_station/interface_controller.py:110
|
||||
msgid "Button"
|
||||
msgstr "Button"
|
||||
|
||||
#: install_station/interface_controller.py:136
|
||||
msgid "Installation Types"
|
||||
msgstr "Installation Types"
|
||||
|
||||
#: install_station/interface_controller.py:148
|
||||
msgid "Custom Configuration"
|
||||
msgstr "Custom Configuration"
|
||||
|
||||
#: install_station/interface_controller.py:158
|
||||
msgid "ZFS Configuration"
|
||||
msgstr "ZFS Configuration"
|
||||
|
||||
#: install_station/interface_controller.py:170
|
||||
msgid "Install"
|
||||
msgstr "Install"
|
||||
|
||||
#: install_station/interface_controller.py:180
|
||||
msgid "Installation Progress"
|
||||
msgstr "Installation Progress"
|
||||
|
||||
#: install_station/interface_controller.py:187
|
||||
msgid "Progress Bar"
|
||||
msgstr "Progress Bar"
|
||||
|
||||
#: install_station/interface_controller.py:201
|
||||
#: install_station/interface_controller.py:206
|
||||
#: install_station/network_setup.py:110
|
||||
msgid "Network Setup"
|
||||
msgstr "Network Setup"
|
||||
|
||||
#: install_station/language.py:20
|
||||
msgid "Select the language you want to use with GhostBSD."
|
||||
msgstr "Select the language you want to use with GhostBSD."
|
||||
|
||||
#: install_station/language.py:64 install_station/welcome_live.py:110
|
||||
#: install_station/welcome_live.py:127
|
||||
msgid "Language"
|
||||
msgstr "Language"
|
||||
|
||||
#: install_station/language.py:79
|
||||
msgid "Welcome To GhostBSD!"
|
||||
msgstr "Welcome To GhostBSD!"
|
||||
|
||||
#: install_station/network_setup.py:69 install_station/network_setup.py:129
|
||||
msgid "Network card connected to the internet"
|
||||
msgstr "Network card connected to the internet"
|
||||
|
||||
#: install_station/network_setup.py:75 install_station/network_setup.py:135
|
||||
msgid "Network card not connected to the internet"
|
||||
msgstr "Network card not connected to the internet"
|
||||
|
||||
#: install_station/network_setup.py:78 install_station/network_setup.py:138
|
||||
msgid "No network card detected"
|
||||
msgstr "No network card detected"
|
||||
|
||||
#: install_station/network_setup.py:86 install_station/network_setup.py:146
|
||||
msgid "WiFi card detected and connected to an access point"
|
||||
msgstr "WiFi card detected and connected to an access point"
|
||||
|
||||
#: install_station/network_setup.py:90 install_station/network_setup.py:150
|
||||
msgid "WiFi card detected but not connected to an access point"
|
||||
msgstr "WiFi card detected but not connected to an access point"
|
||||
|
||||
#: install_station/network_setup.py:93 install_station/network_setup.py:153
|
||||
msgid "WiFi card not detected or not supported"
|
||||
msgstr "WiFi card not detected or not supported"
|
||||
|
||||
#: install_station/network_setup.py:258
|
||||
msgid "Wi-Fi Network Authentication Required"
|
||||
msgstr "Wi-Fi Network Authentication Required"
|
||||
|
||||
#: install_station/network_setup.py:270
|
||||
#, python-brace-format
|
||||
msgid "{ssid} Wi-Fi Network Authentication failed"
|
||||
msgstr "{ssid} Wi-Fi Network Authentication failed"
|
||||
|
||||
#: install_station/network_setup.py:272
|
||||
#, python-brace-format
|
||||
msgid "Authentication required by {ssid} Wi-Fi Network"
|
||||
msgstr "Authentication required by {ssid} Wi-Fi Network"
|
||||
|
||||
#: install_station/network_setup.py:275
|
||||
msgid "Password:"
|
||||
msgstr "Password:"
|
||||
|
||||
#: install_station/network_setup.py:278
|
||||
msgid "Show password"
|
||||
msgstr "Show password"
|
||||
|
||||
#: install_station/use_zfs.py:164
|
||||
msgid ""
|
||||
"Please select 1 or more drive for stripe (select the smallest disc first)"
|
||||
msgstr ""
|
||||
"Please select 1 or more drive for stripe (select the smallest disc first)"
|
||||
|
||||
#: install_station/use_zfs.py:171
|
||||
msgid "Please select 2 drive for mirroring (select the smallest disc first)"
|
||||
msgstr "Please select 2 drive for mirroring (select the smallest disc first)"
|
||||
|
||||
#: install_station/use_zfs.py:179
|
||||
msgid "Please select 3 drive for RAIDZ1 (select the smallest disc first)"
|
||||
msgstr "Please select 3 drive for RAIDZ1 (select the smallest disc first)"
|
||||
|
||||
#: install_station/use_zfs.py:186
|
||||
msgid "Please select 4 drive for RAIDZ2 (select the smallest disc first)"
|
||||
msgstr "Please select 4 drive for RAIDZ2 (select the smallest disc first)"
|
||||
|
||||
#: install_station/use_zfs.py:193
|
||||
msgid "Please select 5 drive for RAIDZ3 (select the smallest disc first)"
|
||||
msgstr "Please select 5 drive for RAIDZ3 (select the smallest disc first)"
|
||||
|
||||
#: install_station/use_zfs.py:296
|
||||
msgid "Disk"
|
||||
msgstr "Disc"
|
||||
|
||||
#: install_station/use_zfs.py:303
|
||||
msgid "Size(MB)"
|
||||
msgstr "Size(MB)"
|
||||
|
||||
#: install_station/use_zfs.py:309
|
||||
msgid "Name"
|
||||
msgstr "Name"
|
||||
|
||||
#: install_station/use_zfs.py:313
|
||||
msgid "Check"
|
||||
msgstr "Check"
|
||||
|
||||
#: install_station/use_zfs.py:326
|
||||
msgid "Please select one drive"
|
||||
msgstr "Please select one drive"
|
||||
|
||||
#: install_station/use_zfs.py:331
|
||||
msgid "<b>Pool Type</b>"
|
||||
msgstr "<b>Pool Type</b>"
|
||||
|
||||
#: install_station/use_zfs.py:335
|
||||
msgid "1+ discs Stripe"
|
||||
msgstr "1+ discs Stripe"
|
||||
|
||||
#: install_station/use_zfs.py:336
|
||||
msgid "2+ discs Mirror"
|
||||
msgstr "2+ discs Mirror"
|
||||
|
||||
#: install_station/use_zfs.py:337
|
||||
msgid "3 discs RAIDZ1"
|
||||
msgstr "3 discs RAIDZ1"
|
||||
|
||||
#: install_station/use_zfs.py:338
|
||||
msgid "4 discs RAIDZ2"
|
||||
msgstr "4 discs RAIDZ2"
|
||||
|
||||
#: install_station/use_zfs.py:339
|
||||
msgid "5 discs RAIDZ3"
|
||||
msgstr "5 discs RAIDZ3"
|
||||
|
||||
#: install_station/use_zfs.py:349
|
||||
msgid "<b>Pool Name</b>"
|
||||
msgstr "<b>Pool Name</b>"
|
||||
|
||||
#: install_station/use_zfs.py:369
|
||||
msgid "Encrypt Disc"
|
||||
msgstr "Encrypt Disc"
|
||||
|
||||
#: install_station/use_zfs.py:373
|
||||
msgid "Password"
|
||||
msgstr "Password"
|
||||
|
||||
#: install_station/use_zfs.py:380
|
||||
msgid "Verify it"
|
||||
msgstr "Verify it"
|
||||
|
||||
#: install_station/use_zfs.py:541
|
||||
msgid "Warning"
|
||||
msgstr "Warning"
|
||||
|
||||
#: install_station/use_zfs.py:552
|
||||
msgid "Smallest disc need to be SELECTED first!\n"
|
||||
msgstr "Smallest disc need to be SELECTED first!\n"
|
||||
|
||||
#: install_station/use_zfs.py:553
|
||||
msgid "All the disc selected will reset."
|
||||
msgstr "All the disc selected will reset."
|
||||
|
||||
#: install_station/welcome_live.py:16
|
||||
msgid ""
|
||||
"To run GhostBSD without installing, select \"Try GhostBSD.\"\n"
|
||||
"\n"
|
||||
"To install GhostBSD on your computer hard disc drive, click \"Install "
|
||||
"GhostBSD.\"\n"
|
||||
"\n"
|
||||
"Note: Language selection only works when selecting \"Try GhostBSD.\"\n"
|
||||
" When installing GhostBSD, the installation programme is only in English."
|
||||
msgstr ""
|
||||
"To run GhostBSD without installing, select \"Try GhostBSD.\"\n"
|
||||
"\n"
|
||||
"To install GhostBSD on your computer hard disc drive, click \"Install "
|
||||
"GhostBSD.\"\n"
|
||||
"\n"
|
||||
"Note: Language selection only works when selecting \"Try GhostBSD.\"\n"
|
||||
" When installing GhostBSD, the installation programme is only in English."
|
||||
|
||||
#: install_station/welcome_live.py:95 install_station/welcome_live.py:242
|
||||
msgid "Install GhostBSD"
|
||||
msgstr "Install GhostBSD"
|
||||
|
||||
#: install_station/welcome_live.py:98 install_station/welcome_live.py:246
|
||||
msgid "Try GhostBSD"
|
||||
msgstr "Try GhostBSD"
|
||||
|
||||
#: install_station/welcome_live.py:101
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"To run GhostBSD without installing, select \"Try GhostBSD.\"\n"
|
||||
" \n"
|
||||
"\n"
|
||||
"To install GhostBSD on your computer hard disc drive, click \"Install "
|
||||
"GhostBSD.\"\n"
|
||||
"\n"
|
||||
"Note: Language selection only works when selecting \"Try GhostBSD.\"\n"
|
||||
" When installing GhostBSD, the installation programme is only in English."
|
||||
msgstr ""
|
||||
"To run GhostBSD without installing, select \"Try GhostBSD.\"\n"
|
||||
"\n"
|
||||
"To install GhostBSD on your computer hard disc drive, click \"Install "
|
||||
"GhostBSD.\"\n"
|
||||
"\n"
|
||||
"Note: Language selection only works when selecting \"Try GhostBSD.\"\n"
|
||||
" When installing GhostBSD, the installation programme is only in English."
|
||||
+401
@@ -0,0 +1,401 @@
|
||||
# English translations for PACKAGE package.
|
||||
# Copyright (C) 2025 THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# Eric Turgeon <EMAIL@ADDRESS>, 2025.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-07-09 20:39-0300\n"
|
||||
"PO-Revision-Date: 2025-07-09 20:25-0300\n"
|
||||
"Last-Translator: Eric Turgeon <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: English\n"
|
||||
"Language: en_US\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=ASCII\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: install_station/boot_manager.py:125
|
||||
#: install_station/interface_controller.py:168
|
||||
msgid "Boot Option"
|
||||
msgstr "Boot Option"
|
||||
|
||||
#: install_station/boot_manager.py:139
|
||||
msgid "Setup rEFInd boot manager"
|
||||
msgstr "Setup rEFInd boot manager"
|
||||
|
||||
#: install_station/boot_manager.py:153
|
||||
msgid "Setup FreeBSD boot manager"
|
||||
msgstr "Setup FreeBSD boot manager"
|
||||
|
||||
#: install_station/boot_manager.py:168
|
||||
#, python-brace-format
|
||||
msgid "FreeBSD {loader} loader only"
|
||||
msgstr "FreeBSD {loader} loader only"
|
||||
|
||||
#: install_station/end.py:13
|
||||
msgid ""
|
||||
"Installation is complete. You need to restart the\n"
|
||||
"computer in order to use the new installation.\n"
|
||||
"You can continue to use this live media, although\n"
|
||||
"any changes you make or documents you save will\n"
|
||||
"not be preserved on reboot."
|
||||
msgstr ""
|
||||
"Installation is complete. You need to restart the\n"
|
||||
"computer in order to use the new installation.\n"
|
||||
"You can continue to use this live media, although\n"
|
||||
"any changes you make or documents you save will\n"
|
||||
"not be preserved on reboot."
|
||||
|
||||
#: install_station/end.py:34
|
||||
msgid "Installation Completed"
|
||||
msgstr "Installation Completed"
|
||||
|
||||
#: install_station/end.py:50
|
||||
msgid "Restart"
|
||||
msgstr "Restart"
|
||||
|
||||
#: install_station/end.py:52
|
||||
msgid "Continue"
|
||||
msgstr "Continue"
|
||||
|
||||
#: install_station/error.py:21
|
||||
msgid "Installation Error"
|
||||
msgstr "Installation Error"
|
||||
|
||||
#: install_station/error.py:32
|
||||
msgid "Installation has failed!"
|
||||
msgstr "Installation has failed!"
|
||||
|
||||
#: install_station/error.py:37
|
||||
msgid "GhostBSD issue system"
|
||||
msgstr "GhostBSD issue system"
|
||||
|
||||
#: install_station/error.py:38
|
||||
#, python-brace-format
|
||||
msgid ""
|
||||
"Please report the issue to {anchor}, and \n"
|
||||
"be sure to provide /tmp/.pc-sysinstall/pc-sysinstall.log."
|
||||
msgstr ""
|
||||
"Please report the issue to {anchor}, and \n"
|
||||
"be sure to provide /tmp/.pc-sysinstall/pc-sysinstall.log."
|
||||
|
||||
#: install_station/error.py:47
|
||||
msgid "Ok"
|
||||
msgstr "Ok"
|
||||
|
||||
#: install_station/install_type.py:55
|
||||
msgid "How do you want to install GhostBSD?"
|
||||
msgstr "How do you want to install GhostBSD?"
|
||||
|
||||
#: install_station/install_type.py:60
|
||||
msgid ""
|
||||
"<b>Disks Configuration</b>\n"
|
||||
"Install GhostBSD using Stripe, Mirror, RAIDZ1, RAIDZ2, or RAIDZ3 "
|
||||
"configurations."
|
||||
msgstr ""
|
||||
"<b>Disks Configuration</b>\n"
|
||||
"Install GhostBSD using Stripe, Mirror, RAIDZ1, RAIDZ2, or RAIDZ3 "
|
||||
"configurations."
|
||||
|
||||
#: install_station/install_type.py:70
|
||||
msgid ""
|
||||
"<b>Multi-Boot Configuration</b>\n"
|
||||
"Install GhostBSD with ZFS alongside other operating systems."
|
||||
msgstr ""
|
||||
"<b>Multi-Boot Configuration</b>\n"
|
||||
"Install GhostBSD with ZFS alongside other operating systems."
|
||||
|
||||
#: install_station/install.py:39
|
||||
msgid "Creating ghostbsd_installation.cfg"
|
||||
msgstr "Creating ghostbsd_installation.cfg"
|
||||
|
||||
#: install_station/install.py:43
|
||||
msgid "Deleting partition"
|
||||
msgstr "Deleting partition"
|
||||
|
||||
#: install_station/install.py:48
|
||||
msgid "Creating disk partition"
|
||||
msgstr "Creating disk partition"
|
||||
|
||||
#: install_station/install.py:53
|
||||
msgid "Creating new partitions"
|
||||
msgstr "Creating new partitions"
|
||||
|
||||
#: install_station/install.py:83
|
||||
msgid "Installation in progress"
|
||||
msgstr "Installation in progress"
|
||||
|
||||
#: install_station/install.py:95
|
||||
msgid ""
|
||||
"Thank you for choosing GhostBSD!\n"
|
||||
"\n"
|
||||
"We believe every computer operating system should be simple, elegant, secure "
|
||||
"and protect your privacy while being easy to use. GhostBSD is simplifying "
|
||||
"FreeBSD for those who lack the technical expertise required to use it and "
|
||||
"lower the entry-level of using BSD. \n"
|
||||
"\n"
|
||||
"We hope you'll enjoy our BSD operating system."
|
||||
msgstr ""
|
||||
"Thank you for choosing GhostBSD!\n"
|
||||
"\n"
|
||||
"We believe every computer operating system should be simple, elegant, secure "
|
||||
"and protect your privacy while being easy to use. GhostBSD is simplifying "
|
||||
"FreeBSD for those who lack the technical expertise required to use it and "
|
||||
"lower the entry-level of using BSD. \n"
|
||||
"\n"
|
||||
"We hope you'll enjoy our BSD operating system."
|
||||
|
||||
#: install_station/interface_controller.py:14
|
||||
msgid "Back"
|
||||
msgstr "Back"
|
||||
|
||||
#: install_station/interface_controller.py:16
|
||||
msgid "Cancel"
|
||||
msgstr "Cancel"
|
||||
|
||||
#: install_station/interface_controller.py:18
|
||||
#: install_station/interface_controller.py:226
|
||||
msgid "Next"
|
||||
msgstr "Next"
|
||||
|
||||
#: install_station/interface_controller.py:100
|
||||
#: install_station/interface_controller.py:101
|
||||
#: install_station/welcome_live.py:112
|
||||
msgid "Welcome to GhostBSD"
|
||||
msgstr "Welcome to GhostBSD"
|
||||
|
||||
#: install_station/interface_controller.py:110
|
||||
msgid "Button"
|
||||
msgstr "Button"
|
||||
|
||||
#: install_station/interface_controller.py:136
|
||||
msgid "Installation Types"
|
||||
msgstr "Installation Types"
|
||||
|
||||
#: install_station/interface_controller.py:148
|
||||
msgid "Custom Configuration"
|
||||
msgstr "Custom Configuration"
|
||||
|
||||
#: install_station/interface_controller.py:158
|
||||
msgid "ZFS Configuration"
|
||||
msgstr "ZFS Configuration"
|
||||
|
||||
#: install_station/interface_controller.py:170
|
||||
msgid "Install"
|
||||
msgstr "Install"
|
||||
|
||||
#: install_station/interface_controller.py:180
|
||||
msgid "Installation Progress"
|
||||
msgstr "Installation Progress"
|
||||
|
||||
#: install_station/interface_controller.py:187
|
||||
msgid "Progress Bar"
|
||||
msgstr "Progress Bar"
|
||||
|
||||
#: install_station/interface_controller.py:201
|
||||
#: install_station/interface_controller.py:206
|
||||
#: install_station/network_setup.py:110
|
||||
msgid "Network Setup"
|
||||
msgstr "Network Setup"
|
||||
|
||||
#: install_station/language.py:20
|
||||
msgid "Select the language you want to use with GhostBSD."
|
||||
msgstr "Select the language you want to use with GhostBSD."
|
||||
|
||||
#: install_station/language.py:64 install_station/welcome_live.py:110
|
||||
#: install_station/welcome_live.py:127
|
||||
msgid "Language"
|
||||
msgstr "Language"
|
||||
|
||||
#: install_station/language.py:79
|
||||
msgid "Welcome To GhostBSD!"
|
||||
msgstr "Welcome To GhostBSD!"
|
||||
|
||||
#: install_station/network_setup.py:69 install_station/network_setup.py:129
|
||||
msgid "Network card connected to the internet"
|
||||
msgstr "Network card connected to the internet"
|
||||
|
||||
#: install_station/network_setup.py:75 install_station/network_setup.py:135
|
||||
msgid "Network card not connected to the internet"
|
||||
msgstr "Network card not connected to the internet"
|
||||
|
||||
#: install_station/network_setup.py:78 install_station/network_setup.py:138
|
||||
msgid "No network card detected"
|
||||
msgstr "No network card detected"
|
||||
|
||||
#: install_station/network_setup.py:86 install_station/network_setup.py:146
|
||||
msgid "WiFi card detected and connected to an access point"
|
||||
msgstr "WiFi card detected and connected to an access point"
|
||||
|
||||
#: install_station/network_setup.py:90 install_station/network_setup.py:150
|
||||
msgid "WiFi card detected but not connected to an access point"
|
||||
msgstr "WiFi card detected but not connected to an access point"
|
||||
|
||||
#: install_station/network_setup.py:93 install_station/network_setup.py:153
|
||||
msgid "WiFi card not detected or not supported"
|
||||
msgstr "WiFi card not detected or not supported"
|
||||
|
||||
#: install_station/network_setup.py:258
|
||||
msgid "Wi-Fi Network Authentication Required"
|
||||
msgstr "Wi-Fi Network Authentication Required"
|
||||
|
||||
#: install_station/network_setup.py:270
|
||||
#, python-brace-format
|
||||
msgid "{ssid} Wi-Fi Network Authentication failed"
|
||||
msgstr "{ssid} Wi-Fi Network Authentication failed"
|
||||
|
||||
#: install_station/network_setup.py:272
|
||||
#, python-brace-format
|
||||
msgid "Authentication required by {ssid} Wi-Fi Network"
|
||||
msgstr "Authentication required by {ssid} Wi-Fi Network"
|
||||
|
||||
#: install_station/network_setup.py:275
|
||||
msgid "Password:"
|
||||
msgstr "Password:"
|
||||
|
||||
#: install_station/network_setup.py:278
|
||||
msgid "Show password"
|
||||
msgstr "Show password"
|
||||
|
||||
#: install_station/use_zfs.py:164
|
||||
msgid ""
|
||||
"Please select 1 or more drive for stripe (select the smallest disk first)"
|
||||
msgstr ""
|
||||
"Please select 1 or more drive for stripe (select the smallest disk first)"
|
||||
|
||||
#: install_station/use_zfs.py:171
|
||||
msgid "Please select 2 drive for mirroring (select the smallest disk first)"
|
||||
msgstr "Please select 2 drive for mirroring (select the smallest disk first)"
|
||||
|
||||
#: install_station/use_zfs.py:179
|
||||
msgid "Please select 3 drive for RAIDZ1 (select the smallest disk first)"
|
||||
msgstr "Please select 3 drive for RAIDZ1 (select the smallest disk first)"
|
||||
|
||||
#: install_station/use_zfs.py:186
|
||||
msgid "Please select 4 drive for RAIDZ2 (select the smallest disk first)"
|
||||
msgstr "Please select 4 drive for RAIDZ2 (select the smallest disk first)"
|
||||
|
||||
#: install_station/use_zfs.py:193
|
||||
msgid "Please select 5 drive for RAIDZ3 (select the smallest disk first)"
|
||||
msgstr "Please select 5 drive for RAIDZ3 (select the smallest disk first)"
|
||||
|
||||
#: install_station/use_zfs.py:296
|
||||
msgid "Disk"
|
||||
msgstr "Disk"
|
||||
|
||||
#: install_station/use_zfs.py:303
|
||||
msgid "Size(MB)"
|
||||
msgstr "Size(MB)"
|
||||
|
||||
#: install_station/use_zfs.py:309
|
||||
msgid "Name"
|
||||
msgstr "Name"
|
||||
|
||||
#: install_station/use_zfs.py:313
|
||||
msgid "Check"
|
||||
msgstr "Check"
|
||||
|
||||
#: install_station/use_zfs.py:326
|
||||
msgid "Please select one drive"
|
||||
msgstr "Please select one drive"
|
||||
|
||||
#: install_station/use_zfs.py:331
|
||||
msgid "<b>Pool Type</b>"
|
||||
msgstr "<b>Pool Type</b>"
|
||||
|
||||
#: install_station/use_zfs.py:335
|
||||
msgid "1+ disks Stripe"
|
||||
msgstr "1+ disks Stripe"
|
||||
|
||||
#: install_station/use_zfs.py:336
|
||||
msgid "2+ disks Mirror"
|
||||
msgstr "2+ disks Mirror"
|
||||
|
||||
#: install_station/use_zfs.py:337
|
||||
msgid "3 disks RAIDZ1"
|
||||
msgstr "3 disks RAIDZ1"
|
||||
|
||||
#: install_station/use_zfs.py:338
|
||||
msgid "4 disks RAIDZ2"
|
||||
msgstr "4 disks RAIDZ2"
|
||||
|
||||
#: install_station/use_zfs.py:339
|
||||
msgid "5 disks RAIDZ3"
|
||||
msgstr "5 disks RAIDZ3"
|
||||
|
||||
#: install_station/use_zfs.py:349
|
||||
msgid "<b>Pool Name</b>"
|
||||
msgstr "<b>Pool Name</b>"
|
||||
|
||||
#: install_station/use_zfs.py:369
|
||||
msgid "Encrypt Disk"
|
||||
msgstr "Encrypt Disk"
|
||||
|
||||
#: install_station/use_zfs.py:373
|
||||
msgid "Password"
|
||||
msgstr "Password"
|
||||
|
||||
#: install_station/use_zfs.py:380
|
||||
msgid "Verify it"
|
||||
msgstr "Verify it"
|
||||
|
||||
#: install_station/use_zfs.py:541
|
||||
msgid "Warning"
|
||||
msgstr "Warning"
|
||||
|
||||
#: install_station/use_zfs.py:552
|
||||
msgid "Smallest disk need to be SELECTED first!\n"
|
||||
msgstr "Smallest disk need to be SELECTED first!\n"
|
||||
|
||||
#: install_station/use_zfs.py:553
|
||||
msgid "All the disk selected will reset."
|
||||
msgstr "All the disk selected will reset."
|
||||
|
||||
#: install_station/welcome_live.py:16
|
||||
msgid ""
|
||||
"To run GhostBSD without installing, select \"Try GhostBSD.\"\n"
|
||||
"\n"
|
||||
"To install GhostBSD on your computer hard disk drive, click \"Install "
|
||||
"GhostBSD.\"\n"
|
||||
"\n"
|
||||
"Note: Language selection only works when selecting \"Try GhostBSD.\"\n"
|
||||
" When installing GhostBSD, the installation program is only in English."
|
||||
msgstr ""
|
||||
"To run GhostBSD without installing, select \"Try GhostBSD.\"\n"
|
||||
"\n"
|
||||
"To install GhostBSD on your computer hard disk drive, click \"Install "
|
||||
"GhostBSD.\"\n"
|
||||
"\n"
|
||||
"Note: Language selection only works when selecting \"Try GhostBSD.\"\n"
|
||||
" When installing GhostBSD, the installation program is only in English."
|
||||
|
||||
#: install_station/welcome_live.py:95 install_station/welcome_live.py:242
|
||||
msgid "Install GhostBSD"
|
||||
msgstr "Install GhostBSD"
|
||||
|
||||
#: install_station/welcome_live.py:98 install_station/welcome_live.py:246
|
||||
msgid "Try GhostBSD"
|
||||
msgstr "Try GhostBSD"
|
||||
|
||||
#: install_station/welcome_live.py:101
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"To run GhostBSD without installing, select \"Try GhostBSD.\"\n"
|
||||
" \n"
|
||||
"\n"
|
||||
"To install GhostBSD on your computer hard disk drive, click \"Install "
|
||||
"GhostBSD.\"\n"
|
||||
"\n"
|
||||
"Note: Language selection only works when selecting \"Try GhostBSD.\"\n"
|
||||
" When installing GhostBSD, the installation program is only in English."
|
||||
msgstr ""
|
||||
"To run GhostBSD without installing, select \"Try GhostBSD.\"\n"
|
||||
"\n"
|
||||
"To install GhostBSD on your computer hard disk drive, click \"Install "
|
||||
"GhostBSD.\"\n"
|
||||
"\n"
|
||||
"Note: Language selection only works when selecting \"Try GhostBSD.\"\n"
|
||||
" When installing GhostBSD, the installation program is only in English."
|
||||
+365
@@ -0,0 +1,365 @@
|
||||
# Spanish translations for PACKAGE package.
|
||||
# Copyright (C) 2025 THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# Eric Turgeon <EMAIL@ADDRESS>, 2025.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-07-09 20:39-0300\n"
|
||||
"PO-Revision-Date: 2025-07-09 20:19-0300\n"
|
||||
"Last-Translator: Eric Turgeon <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Spanish <es@tp.org.es>\n"
|
||||
"Language: es\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=ASCII\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: install_station/boot_manager.py:125
|
||||
#: install_station/interface_controller.py:168
|
||||
msgid "Boot Option"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:139
|
||||
msgid "Setup rEFInd boot manager"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:153
|
||||
msgid "Setup FreeBSD boot manager"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:168
|
||||
#, python-brace-format
|
||||
msgid "FreeBSD {loader} loader only"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:13
|
||||
msgid ""
|
||||
"Installation is complete. You need to restart the\n"
|
||||
"computer in order to use the new installation.\n"
|
||||
"You can continue to use this live media, although\n"
|
||||
"any changes you make or documents you save will\n"
|
||||
"not be preserved on reboot."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:34
|
||||
msgid "Installation Completed"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:50
|
||||
msgid "Restart"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:52
|
||||
msgid "Continue"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:21
|
||||
msgid "Installation Error"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:32
|
||||
msgid "Installation has failed!"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:37
|
||||
msgid "GhostBSD issue system"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:38
|
||||
#, python-brace-format
|
||||
msgid ""
|
||||
"Please report the issue to {anchor}, and \n"
|
||||
"be sure to provide /tmp/.pc-sysinstall/pc-sysinstall.log."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:47
|
||||
msgid "Ok"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:55
|
||||
msgid "How do you want to install GhostBSD?"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:60
|
||||
msgid ""
|
||||
"<b>Disks Configuration</b>\n"
|
||||
"Install GhostBSD using Stripe, Mirror, RAIDZ1, RAIDZ2, or RAIDZ3 "
|
||||
"configurations."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:70
|
||||
msgid ""
|
||||
"<b>Multi-Boot Configuration</b>\n"
|
||||
"Install GhostBSD with ZFS alongside other operating systems."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:39
|
||||
msgid "Creating ghostbsd_installation.cfg"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:43
|
||||
msgid "Deleting partition"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:48
|
||||
msgid "Creating disk partition"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:53
|
||||
msgid "Creating new partitions"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:83
|
||||
msgid "Installation in progress"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:95
|
||||
msgid ""
|
||||
"Thank you for choosing GhostBSD!\n"
|
||||
"\n"
|
||||
"We believe every computer operating system should be simple, elegant, secure "
|
||||
"and protect your privacy while being easy to use. GhostBSD is simplifying "
|
||||
"FreeBSD for those who lack the technical expertise required to use it and "
|
||||
"lower the entry-level of using BSD. \n"
|
||||
"\n"
|
||||
"We hope you'll enjoy our BSD operating system."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:14
|
||||
msgid "Back"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:16
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:18
|
||||
#: install_station/interface_controller.py:226
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:100
|
||||
#: install_station/interface_controller.py:101
|
||||
#: install_station/welcome_live.py:112
|
||||
msgid "Welcome to GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:110
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:136
|
||||
msgid "Installation Types"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:148
|
||||
msgid "Custom Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:158
|
||||
msgid "ZFS Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:170
|
||||
msgid "Install"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:180
|
||||
msgid "Installation Progress"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:187
|
||||
msgid "Progress Bar"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:201
|
||||
#: install_station/interface_controller.py:206
|
||||
#: install_station/network_setup.py:110
|
||||
msgid "Network Setup"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:20
|
||||
msgid "Select the language you want to use with GhostBSD."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:64 install_station/welcome_live.py:110
|
||||
#: install_station/welcome_live.py:127
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:79
|
||||
msgid "Welcome To GhostBSD!"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:69 install_station/network_setup.py:129
|
||||
msgid "Network card connected to the internet"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:75 install_station/network_setup.py:135
|
||||
msgid "Network card not connected to the internet"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:78 install_station/network_setup.py:138
|
||||
msgid "No network card detected"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:86 install_station/network_setup.py:146
|
||||
msgid "WiFi card detected and connected to an access point"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:90 install_station/network_setup.py:150
|
||||
msgid "WiFi card detected but not connected to an access point"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:93 install_station/network_setup.py:153
|
||||
msgid "WiFi card not detected or not supported"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:258
|
||||
msgid "Wi-Fi Network Authentication Required"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:270
|
||||
#, python-brace-format
|
||||
msgid "{ssid} Wi-Fi Network Authentication failed"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:272
|
||||
#, python-brace-format
|
||||
msgid "Authentication required by {ssid} Wi-Fi Network"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:275
|
||||
msgid "Password:"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:278
|
||||
msgid "Show password"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:164
|
||||
msgid ""
|
||||
"Please select 1 or more drive for stripe (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:171
|
||||
msgid "Please select 2 drive for mirroring (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:179
|
||||
msgid "Please select 3 drive for RAIDZ1 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:186
|
||||
msgid "Please select 4 drive for RAIDZ2 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:193
|
||||
msgid "Please select 5 drive for RAIDZ3 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:296
|
||||
msgid "Disk"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:303
|
||||
msgid "Size(MB)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:309
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:313
|
||||
msgid "Check"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:326
|
||||
msgid "Please select one drive"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:331
|
||||
msgid "<b>Pool Type</b>"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:335
|
||||
msgid "1+ disks Stripe"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:336
|
||||
msgid "2+ disks Mirror"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:337
|
||||
msgid "3 disks RAIDZ1"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:338
|
||||
msgid "4 disks RAIDZ2"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:339
|
||||
msgid "5 disks RAIDZ3"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:349
|
||||
msgid "<b>Pool Name</b>"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:369
|
||||
msgid "Encrypt Disk"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:373
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:380
|
||||
msgid "Verify it"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:541
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:552
|
||||
msgid "Smallest disk need to be SELECTED first!\n"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:553
|
||||
msgid "All the disk selected will reset."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:16
|
||||
msgid ""
|
||||
"To run GhostBSD without installing, select \"Try GhostBSD.\"\n"
|
||||
"\n"
|
||||
"To install GhostBSD on your computer hard disk drive, click \"Install "
|
||||
"GhostBSD.\"\n"
|
||||
"\n"
|
||||
"Note: Language selection only works when selecting \"Try GhostBSD.\"\n"
|
||||
" When installing GhostBSD, the installation program is only in English."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:95 install_station/welcome_live.py:242
|
||||
msgid "Install GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:98 install_station/welcome_live.py:246
|
||||
msgid "Try GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:101
|
||||
msgid ""
|
||||
"To run GhostBSD without installing, select \"Try GhostBSD.\"\n"
|
||||
" \n"
|
||||
"\n"
|
||||
"To install GhostBSD on your computer hard disk drive, click \"Install "
|
||||
"GhostBSD.\"\n"
|
||||
"\n"
|
||||
"Note: Language selection only works when selecting \"Try GhostBSD.\"\n"
|
||||
" When installing GhostBSD, the installation program is only in English."
|
||||
msgstr ""
|
||||
+365
@@ -0,0 +1,365 @@
|
||||
# Estonian translations for PACKAGE package.
|
||||
# Copyright (C) 2025 THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# Eric Turgeon <EMAIL@ADDRESS>, 2025.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-07-09 20:39-0300\n"
|
||||
"PO-Revision-Date: 2025-07-09 20:26-0300\n"
|
||||
"Last-Translator: Eric Turgeon <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Estonian <linux-ee@lists.eenet.ee>\n"
|
||||
"Language: et\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=ASCII\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: install_station/boot_manager.py:125
|
||||
#: install_station/interface_controller.py:168
|
||||
msgid "Boot Option"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:139
|
||||
msgid "Setup rEFInd boot manager"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:153
|
||||
msgid "Setup FreeBSD boot manager"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:168
|
||||
#, python-brace-format
|
||||
msgid "FreeBSD {loader} loader only"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:13
|
||||
msgid ""
|
||||
"Installation is complete. You need to restart the\n"
|
||||
"computer in order to use the new installation.\n"
|
||||
"You can continue to use this live media, although\n"
|
||||
"any changes you make or documents you save will\n"
|
||||
"not be preserved on reboot."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:34
|
||||
msgid "Installation Completed"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:50
|
||||
msgid "Restart"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:52
|
||||
msgid "Continue"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:21
|
||||
msgid "Installation Error"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:32
|
||||
msgid "Installation has failed!"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:37
|
||||
msgid "GhostBSD issue system"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:38
|
||||
#, python-brace-format
|
||||
msgid ""
|
||||
"Please report the issue to {anchor}, and \n"
|
||||
"be sure to provide /tmp/.pc-sysinstall/pc-sysinstall.log."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:47
|
||||
msgid "Ok"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:55
|
||||
msgid "How do you want to install GhostBSD?"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:60
|
||||
msgid ""
|
||||
"<b>Disks Configuration</b>\n"
|
||||
"Install GhostBSD using Stripe, Mirror, RAIDZ1, RAIDZ2, or RAIDZ3 "
|
||||
"configurations."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:70
|
||||
msgid ""
|
||||
"<b>Multi-Boot Configuration</b>\n"
|
||||
"Install GhostBSD with ZFS alongside other operating systems."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:39
|
||||
msgid "Creating ghostbsd_installation.cfg"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:43
|
||||
msgid "Deleting partition"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:48
|
||||
msgid "Creating disk partition"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:53
|
||||
msgid "Creating new partitions"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:83
|
||||
msgid "Installation in progress"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:95
|
||||
msgid ""
|
||||
"Thank you for choosing GhostBSD!\n"
|
||||
"\n"
|
||||
"We believe every computer operating system should be simple, elegant, secure "
|
||||
"and protect your privacy while being easy to use. GhostBSD is simplifying "
|
||||
"FreeBSD for those who lack the technical expertise required to use it and "
|
||||
"lower the entry-level of using BSD. \n"
|
||||
"\n"
|
||||
"We hope you'll enjoy our BSD operating system."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:14
|
||||
msgid "Back"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:16
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:18
|
||||
#: install_station/interface_controller.py:226
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:100
|
||||
#: install_station/interface_controller.py:101
|
||||
#: install_station/welcome_live.py:112
|
||||
msgid "Welcome to GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:110
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:136
|
||||
msgid "Installation Types"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:148
|
||||
msgid "Custom Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:158
|
||||
msgid "ZFS Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:170
|
||||
msgid "Install"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:180
|
||||
msgid "Installation Progress"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:187
|
||||
msgid "Progress Bar"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:201
|
||||
#: install_station/interface_controller.py:206
|
||||
#: install_station/network_setup.py:110
|
||||
msgid "Network Setup"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:20
|
||||
msgid "Select the language you want to use with GhostBSD."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:64 install_station/welcome_live.py:110
|
||||
#: install_station/welcome_live.py:127
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:79
|
||||
msgid "Welcome To GhostBSD!"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:69 install_station/network_setup.py:129
|
||||
msgid "Network card connected to the internet"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:75 install_station/network_setup.py:135
|
||||
msgid "Network card not connected to the internet"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:78 install_station/network_setup.py:138
|
||||
msgid "No network card detected"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:86 install_station/network_setup.py:146
|
||||
msgid "WiFi card detected and connected to an access point"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:90 install_station/network_setup.py:150
|
||||
msgid "WiFi card detected but not connected to an access point"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:93 install_station/network_setup.py:153
|
||||
msgid "WiFi card not detected or not supported"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:258
|
||||
msgid "Wi-Fi Network Authentication Required"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:270
|
||||
#, python-brace-format
|
||||
msgid "{ssid} Wi-Fi Network Authentication failed"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:272
|
||||
#, python-brace-format
|
||||
msgid "Authentication required by {ssid} Wi-Fi Network"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:275
|
||||
msgid "Password:"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:278
|
||||
msgid "Show password"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:164
|
||||
msgid ""
|
||||
"Please select 1 or more drive for stripe (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:171
|
||||
msgid "Please select 2 drive for mirroring (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:179
|
||||
msgid "Please select 3 drive for RAIDZ1 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:186
|
||||
msgid "Please select 4 drive for RAIDZ2 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:193
|
||||
msgid "Please select 5 drive for RAIDZ3 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:296
|
||||
msgid "Disk"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:303
|
||||
msgid "Size(MB)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:309
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:313
|
||||
msgid "Check"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:326
|
||||
msgid "Please select one drive"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:331
|
||||
msgid "<b>Pool Type</b>"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:335
|
||||
msgid "1+ disks Stripe"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:336
|
||||
msgid "2+ disks Mirror"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:337
|
||||
msgid "3 disks RAIDZ1"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:338
|
||||
msgid "4 disks RAIDZ2"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:339
|
||||
msgid "5 disks RAIDZ3"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:349
|
||||
msgid "<b>Pool Name</b>"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:369
|
||||
msgid "Encrypt Disk"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:373
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:380
|
||||
msgid "Verify it"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:541
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:552
|
||||
msgid "Smallest disk need to be SELECTED first!\n"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:553
|
||||
msgid "All the disk selected will reset."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:16
|
||||
msgid ""
|
||||
"To run GhostBSD without installing, select \"Try GhostBSD.\"\n"
|
||||
"\n"
|
||||
"To install GhostBSD on your computer hard disk drive, click \"Install "
|
||||
"GhostBSD.\"\n"
|
||||
"\n"
|
||||
"Note: Language selection only works when selecting \"Try GhostBSD.\"\n"
|
||||
" When installing GhostBSD, the installation program is only in English."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:95 install_station/welcome_live.py:242
|
||||
msgid "Install GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:98 install_station/welcome_live.py:246
|
||||
msgid "Try GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:101
|
||||
msgid ""
|
||||
"To run GhostBSD without installing, select \"Try GhostBSD.\"\n"
|
||||
" \n"
|
||||
"\n"
|
||||
"To install GhostBSD on your computer hard disk drive, click \"Install "
|
||||
"GhostBSD.\"\n"
|
||||
"\n"
|
||||
"Note: Language selection only works when selecting \"Try GhostBSD.\"\n"
|
||||
" When installing GhostBSD, the installation program is only in English."
|
||||
msgstr ""
|
||||
+365
@@ -0,0 +1,365 @@
|
||||
# Finnish translations for PACKAGE package.
|
||||
# Copyright (C) 2025 THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# Eric Turgeon <EMAIL@ADDRESS>, 2025.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-07-09 20:39-0300\n"
|
||||
"PO-Revision-Date: 2025-07-09 20:24-0300\n"
|
||||
"Last-Translator: Eric Turgeon <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Finnish <translation-team-fi@lists.sourceforge.net>\n"
|
||||
"Language: fi\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=ASCII\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: install_station/boot_manager.py:125
|
||||
#: install_station/interface_controller.py:168
|
||||
msgid "Boot Option"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:139
|
||||
msgid "Setup rEFInd boot manager"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:153
|
||||
msgid "Setup FreeBSD boot manager"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:168
|
||||
#, python-brace-format
|
||||
msgid "FreeBSD {loader} loader only"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:13
|
||||
msgid ""
|
||||
"Installation is complete. You need to restart the\n"
|
||||
"computer in order to use the new installation.\n"
|
||||
"You can continue to use this live media, although\n"
|
||||
"any changes you make or documents you save will\n"
|
||||
"not be preserved on reboot."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:34
|
||||
msgid "Installation Completed"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:50
|
||||
msgid "Restart"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:52
|
||||
msgid "Continue"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:21
|
||||
msgid "Installation Error"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:32
|
||||
msgid "Installation has failed!"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:37
|
||||
msgid "GhostBSD issue system"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:38
|
||||
#, python-brace-format
|
||||
msgid ""
|
||||
"Please report the issue to {anchor}, and \n"
|
||||
"be sure to provide /tmp/.pc-sysinstall/pc-sysinstall.log."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:47
|
||||
msgid "Ok"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:55
|
||||
msgid "How do you want to install GhostBSD?"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:60
|
||||
msgid ""
|
||||
"<b>Disks Configuration</b>\n"
|
||||
"Install GhostBSD using Stripe, Mirror, RAIDZ1, RAIDZ2, or RAIDZ3 "
|
||||
"configurations."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:70
|
||||
msgid ""
|
||||
"<b>Multi-Boot Configuration</b>\n"
|
||||
"Install GhostBSD with ZFS alongside other operating systems."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:39
|
||||
msgid "Creating ghostbsd_installation.cfg"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:43
|
||||
msgid "Deleting partition"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:48
|
||||
msgid "Creating disk partition"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:53
|
||||
msgid "Creating new partitions"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:83
|
||||
msgid "Installation in progress"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:95
|
||||
msgid ""
|
||||
"Thank you for choosing GhostBSD!\n"
|
||||
"\n"
|
||||
"We believe every computer operating system should be simple, elegant, secure "
|
||||
"and protect your privacy while being easy to use. GhostBSD is simplifying "
|
||||
"FreeBSD for those who lack the technical expertise required to use it and "
|
||||
"lower the entry-level of using BSD. \n"
|
||||
"\n"
|
||||
"We hope you'll enjoy our BSD operating system."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:14
|
||||
msgid "Back"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:16
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:18
|
||||
#: install_station/interface_controller.py:226
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:100
|
||||
#: install_station/interface_controller.py:101
|
||||
#: install_station/welcome_live.py:112
|
||||
msgid "Welcome to GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:110
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:136
|
||||
msgid "Installation Types"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:148
|
||||
msgid "Custom Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:158
|
||||
msgid "ZFS Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:170
|
||||
msgid "Install"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:180
|
||||
msgid "Installation Progress"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:187
|
||||
msgid "Progress Bar"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:201
|
||||
#: install_station/interface_controller.py:206
|
||||
#: install_station/network_setup.py:110
|
||||
msgid "Network Setup"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:20
|
||||
msgid "Select the language you want to use with GhostBSD."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:64 install_station/welcome_live.py:110
|
||||
#: install_station/welcome_live.py:127
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:79
|
||||
msgid "Welcome To GhostBSD!"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:69 install_station/network_setup.py:129
|
||||
msgid "Network card connected to the internet"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:75 install_station/network_setup.py:135
|
||||
msgid "Network card not connected to the internet"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:78 install_station/network_setup.py:138
|
||||
msgid "No network card detected"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:86 install_station/network_setup.py:146
|
||||
msgid "WiFi card detected and connected to an access point"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:90 install_station/network_setup.py:150
|
||||
msgid "WiFi card detected but not connected to an access point"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:93 install_station/network_setup.py:153
|
||||
msgid "WiFi card not detected or not supported"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:258
|
||||
msgid "Wi-Fi Network Authentication Required"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:270
|
||||
#, python-brace-format
|
||||
msgid "{ssid} Wi-Fi Network Authentication failed"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:272
|
||||
#, python-brace-format
|
||||
msgid "Authentication required by {ssid} Wi-Fi Network"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:275
|
||||
msgid "Password:"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:278
|
||||
msgid "Show password"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:164
|
||||
msgid ""
|
||||
"Please select 1 or more drive for stripe (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:171
|
||||
msgid "Please select 2 drive for mirroring (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:179
|
||||
msgid "Please select 3 drive for RAIDZ1 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:186
|
||||
msgid "Please select 4 drive for RAIDZ2 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:193
|
||||
msgid "Please select 5 drive for RAIDZ3 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:296
|
||||
msgid "Disk"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:303
|
||||
msgid "Size(MB)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:309
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:313
|
||||
msgid "Check"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:326
|
||||
msgid "Please select one drive"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:331
|
||||
msgid "<b>Pool Type</b>"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:335
|
||||
msgid "1+ disks Stripe"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:336
|
||||
msgid "2+ disks Mirror"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:337
|
||||
msgid "3 disks RAIDZ1"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:338
|
||||
msgid "4 disks RAIDZ2"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:339
|
||||
msgid "5 disks RAIDZ3"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:349
|
||||
msgid "<b>Pool Name</b>"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:369
|
||||
msgid "Encrypt Disk"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:373
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:380
|
||||
msgid "Verify it"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:541
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:552
|
||||
msgid "Smallest disk need to be SELECTED first!\n"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:553
|
||||
msgid "All the disk selected will reset."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:16
|
||||
msgid ""
|
||||
"To run GhostBSD without installing, select \"Try GhostBSD.\"\n"
|
||||
"\n"
|
||||
"To install GhostBSD on your computer hard disk drive, click \"Install "
|
||||
"GhostBSD.\"\n"
|
||||
"\n"
|
||||
"Note: Language selection only works when selecting \"Try GhostBSD.\"\n"
|
||||
" When installing GhostBSD, the installation program is only in English."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:95 install_station/welcome_live.py:242
|
||||
msgid "Install GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:98 install_station/welcome_live.py:246
|
||||
msgid "Try GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:101
|
||||
msgid ""
|
||||
"To run GhostBSD without installing, select \"Try GhostBSD.\"\n"
|
||||
" \n"
|
||||
"\n"
|
||||
"To install GhostBSD on your computer hard disk drive, click \"Install "
|
||||
"GhostBSD.\"\n"
|
||||
"\n"
|
||||
"Note: Language selection only works when selecting \"Try GhostBSD.\"\n"
|
||||
" When installing GhostBSD, the installation program is only in English."
|
||||
msgstr ""
|
||||
+384
@@ -0,0 +1,384 @@
|
||||
# French translations for PACKAGE package.
|
||||
# Copyright (C) 2025 THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# Eric Turgeon <EMAIL@ADDRESS>, 2025.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-07-09 20:39-0300\n"
|
||||
"PO-Revision-Date: 2025-07-09 20:35-0300\n"
|
||||
"Last-Translator: Eric Turgeon <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: French <traduc@traduc.org>\n"
|
||||
"Language: fr_CA\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#: install_station/boot_manager.py:125
|
||||
#: install_station/interface_controller.py:168
|
||||
msgid "Boot Option"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:139
|
||||
msgid "Setup rEFInd boot manager"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:153
|
||||
msgid "Setup FreeBSD boot manager"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:168
|
||||
#, python-brace-format
|
||||
msgid "FreeBSD {loader} loader only"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:13
|
||||
msgid ""
|
||||
"Installation is complete. You need to restart the\n"
|
||||
"computer in order to use the new installation.\n"
|
||||
"You can continue to use this live media, although\n"
|
||||
"any changes you make or documents you save will\n"
|
||||
"not be preserved on reboot."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:34
|
||||
msgid "Installation Completed"
|
||||
msgstr "Installation complétée"
|
||||
|
||||
#: install_station/end.py:50
|
||||
msgid "Restart"
|
||||
msgstr "Redémarrer"
|
||||
|
||||
#: install_station/end.py:52
|
||||
msgid "Continue"
|
||||
msgstr "Continuer"
|
||||
|
||||
#: install_station/error.py:21
|
||||
msgid "Installation Error"
|
||||
msgstr "Erreur d'installation"
|
||||
|
||||
#: install_station/error.py:32
|
||||
msgid "Installation has failed!"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:37
|
||||
msgid "GhostBSD issue system"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:38
|
||||
#, python-brace-format
|
||||
msgid ""
|
||||
"Please report the issue to {anchor}, and \n"
|
||||
"be sure to provide /tmp/.pc-sysinstall/pc-sysinstall.log."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:47
|
||||
msgid "Ok"
|
||||
msgstr "OK"
|
||||
|
||||
#: install_station/install_type.py:55
|
||||
msgid "How do you want to install GhostBSD?"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:60
|
||||
msgid ""
|
||||
"<b>Disks Configuration</b>\n"
|
||||
"Install GhostBSD using Stripe, Mirror, RAIDZ1, RAIDZ2, or RAIDZ3 "
|
||||
"configurations."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:70
|
||||
msgid ""
|
||||
"<b>Multi-Boot Configuration</b>\n"
|
||||
"Install GhostBSD with ZFS alongside other operating systems."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:39
|
||||
msgid "Creating ghostbsd_installation.cfg"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:43
|
||||
msgid "Deleting partition"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:48
|
||||
msgid "Creating disk partition"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:53
|
||||
msgid "Creating new partitions"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:83
|
||||
msgid "Installation in progress"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:95
|
||||
msgid ""
|
||||
"Thank you for choosing GhostBSD!\n"
|
||||
"\n"
|
||||
"We believe every computer operating system should be simple, elegant, secure "
|
||||
"and protect your privacy while being easy to use. GhostBSD is simplifying "
|
||||
"FreeBSD for those who lack the technical expertise required to use it and "
|
||||
"lower the entry-level of using BSD. \n"
|
||||
"\n"
|
||||
"We hope you'll enjoy our BSD operating system."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:14
|
||||
msgid "Back"
|
||||
msgstr "Retour"
|
||||
|
||||
#: install_station/interface_controller.py:16
|
||||
msgid "Cancel"
|
||||
msgstr "Annuler"
|
||||
|
||||
#: install_station/interface_controller.py:18
|
||||
#: install_station/interface_controller.py:226
|
||||
msgid "Next"
|
||||
msgstr "Suivant"
|
||||
|
||||
#: install_station/interface_controller.py:100
|
||||
#: install_station/interface_controller.py:101
|
||||
#: install_station/welcome_live.py:112
|
||||
msgid "Welcome to GhostBSD"
|
||||
msgstr "Bienvenue dans GhostBSD"
|
||||
|
||||
#: install_station/interface_controller.py:110
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:136
|
||||
msgid "Installation Types"
|
||||
msgstr "Types d'installation"
|
||||
|
||||
#: install_station/interface_controller.py:148
|
||||
msgid "Custom Configuration"
|
||||
msgstr "Configuration personnalisée"
|
||||
|
||||
#: install_station/interface_controller.py:158
|
||||
msgid "ZFS Configuration"
|
||||
msgstr "Configuration ZFS"
|
||||
|
||||
#: install_station/interface_controller.py:170
|
||||
msgid "Install"
|
||||
msgstr "Installer"
|
||||
|
||||
#: install_station/interface_controller.py:180
|
||||
msgid "Installation Progress"
|
||||
msgstr "Progrès de l'installation"
|
||||
|
||||
#: install_station/interface_controller.py:187
|
||||
msgid "Progress Bar"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:201
|
||||
#: install_station/interface_controller.py:206
|
||||
#: install_station/network_setup.py:110
|
||||
msgid "Network Setup"
|
||||
msgstr "Configuration réseau"
|
||||
|
||||
#: install_station/language.py:20
|
||||
msgid "Select the language you want to use with GhostBSD."
|
||||
msgstr "Sélectionnez la langue que vous voulez utiliser avec GhostBSD."
|
||||
|
||||
#: install_station/language.py:64 install_station/welcome_live.py:110
|
||||
#: install_station/welcome_live.py:127
|
||||
msgid "Language"
|
||||
msgstr "Langue"
|
||||
|
||||
#: install_station/language.py:79
|
||||
msgid "Welcome To GhostBSD!"
|
||||
msgstr "Bienvenue dans GhostBSD!"
|
||||
|
||||
#: install_station/network_setup.py:69 install_station/network_setup.py:129
|
||||
msgid "Network card connected to the internet"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:75 install_station/network_setup.py:135
|
||||
msgid "Network card not connected to the internet"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:78 install_station/network_setup.py:138
|
||||
msgid "No network card detected"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:86 install_station/network_setup.py:146
|
||||
msgid "WiFi card detected and connected to an access point"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:90 install_station/network_setup.py:150
|
||||
msgid "WiFi card detected but not connected to an access point"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:93 install_station/network_setup.py:153
|
||||
msgid "WiFi card not detected or not supported"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:258
|
||||
msgid "Wi-Fi Network Authentication Required"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:270
|
||||
#, python-brace-format
|
||||
msgid "{ssid} Wi-Fi Network Authentication failed"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:272
|
||||
#, python-brace-format
|
||||
msgid "Authentication required by {ssid} Wi-Fi Network"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:275
|
||||
msgid "Password:"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:278
|
||||
msgid "Show password"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:164
|
||||
msgid ""
|
||||
"Please select 1 or more drive for stripe (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:171
|
||||
msgid "Please select 2 drive for mirroring (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:179
|
||||
msgid "Please select 3 drive for RAIDZ1 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:186
|
||||
msgid "Please select 4 drive for RAIDZ2 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:193
|
||||
msgid "Please select 5 drive for RAIDZ3 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:296
|
||||
msgid "Disk"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:303
|
||||
msgid "Size(MB)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:309
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:313
|
||||
msgid "Check"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:326
|
||||
msgid "Please select one drive"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:331
|
||||
msgid "<b>Pool Type</b>"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:335
|
||||
msgid "1+ disks Stripe"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:336
|
||||
msgid "2+ disks Mirror"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:337
|
||||
msgid "3 disks RAIDZ1"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:338
|
||||
msgid "4 disks RAIDZ2"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:339
|
||||
msgid "5 disks RAIDZ3"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:349
|
||||
msgid "<b>Pool Name</b>"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:369
|
||||
msgid "Encrypt Disk"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:373
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:380
|
||||
msgid "Verify it"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:541
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:552
|
||||
msgid "Smallest disk need to be SELECTED first!\n"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:553
|
||||
msgid "All the disk selected will reset."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:16
|
||||
msgid ""
|
||||
"To run GhostBSD without installing, select \"Try GhostBSD.\"\n"
|
||||
"\n"
|
||||
"To install GhostBSD on your computer hard disk drive, click \"Install "
|
||||
"GhostBSD.\"\n"
|
||||
"\n"
|
||||
"Note: Language selection only works when selecting \"Try GhostBSD.\"\n"
|
||||
" When installing GhostBSD, the installation program is only in English."
|
||||
msgstr ""
|
||||
"Pour utiliser GhostBSD sans l'installer, sélectionnez \"Essayer GhostBSD.\"\n"
|
||||
"\n"
|
||||
"Pour installer GhostBSD sur le disque dur de votre ordinateur, cliquez sur "
|
||||
"\"Installer GhostBSD.\"\n"
|
||||
"\n"
|
||||
"Note : La sélection de langue fonctionne seulement quand vous sélectionnez "
|
||||
"\"Essayer GhostBSD.\"\n"
|
||||
" Quand vous installez GhostBSD, le programme d'installation est "
|
||||
"seulement en anglais."
|
||||
|
||||
#: install_station/welcome_live.py:95 install_station/welcome_live.py:242
|
||||
msgid "Install GhostBSD"
|
||||
msgstr "Installer GhostBSD"
|
||||
|
||||
#: install_station/welcome_live.py:98 install_station/welcome_live.py:246
|
||||
msgid "Try GhostBSD"
|
||||
msgstr "Essayer GhostBSD"
|
||||
|
||||
#: install_station/welcome_live.py:101
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"To run GhostBSD without installing, select \"Try GhostBSD.\"\n"
|
||||
" \n"
|
||||
"\n"
|
||||
"To install GhostBSD on your computer hard disk drive, click \"Install "
|
||||
"GhostBSD.\"\n"
|
||||
"\n"
|
||||
"Note: Language selection only works when selecting \"Try GhostBSD.\"\n"
|
||||
" When installing GhostBSD, the installation program is only in English."
|
||||
msgstr ""
|
||||
"Pour utiliser GhostBSD sans l'installer, sélectionnez \"Essayer GhostBSD.\"\n"
|
||||
"\n"
|
||||
"Pour installer GhostBSD sur le disque dur de votre ordinateur, cliquez sur "
|
||||
"\"Installer GhostBSD.\"\n"
|
||||
"\n"
|
||||
"Note : La sélection de langue fonctionne seulement quand vous sélectionnez "
|
||||
"\"Essayer GhostBSD.\"\n"
|
||||
" Quand vous installez GhostBSD, le programme d'installation est "
|
||||
"seulement en anglais."
|
||||
+384
@@ -0,0 +1,384 @@
|
||||
# French translations for PACKAGE package.
|
||||
# Copyright (C) 2025 THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# Eric Turgeon <ericturgeon@ghostbsd.org>, 2025.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-07-09 20:39-0300\n"
|
||||
"PO-Revision-Date: 2025-07-09 08:08-0300\n"
|
||||
"Last-Translator: Eric Turgeon <ericturgeon@ghostbsd.org>\n"
|
||||
"Language-Team: French <traduc@traduc.org>\n"
|
||||
"Language: fr_FR\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#: install_station/boot_manager.py:125
|
||||
#: install_station/interface_controller.py:168
|
||||
msgid "Boot Option"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:139
|
||||
msgid "Setup rEFInd boot manager"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:153
|
||||
msgid "Setup FreeBSD boot manager"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:168
|
||||
#, python-brace-format
|
||||
msgid "FreeBSD {loader} loader only"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:13
|
||||
msgid ""
|
||||
"Installation is complete. You need to restart the\n"
|
||||
"computer in order to use the new installation.\n"
|
||||
"You can continue to use this live media, although\n"
|
||||
"any changes you make or documents you save will\n"
|
||||
"not be preserved on reboot."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:34
|
||||
msgid "Installation Completed"
|
||||
msgstr "Installation terminée"
|
||||
|
||||
#: install_station/end.py:50
|
||||
msgid "Restart"
|
||||
msgstr "Redémarrer"
|
||||
|
||||
#: install_station/end.py:52
|
||||
msgid "Continue"
|
||||
msgstr "Continuer"
|
||||
|
||||
#: install_station/error.py:21
|
||||
msgid "Installation Error"
|
||||
msgstr "Erreur d'installation"
|
||||
|
||||
#: install_station/error.py:32
|
||||
msgid "Installation has failed!"
|
||||
msgstr "L'installation a échoué !"
|
||||
|
||||
#: install_station/error.py:37
|
||||
msgid "GhostBSD issue system"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:38
|
||||
#, python-brace-format
|
||||
msgid ""
|
||||
"Please report the issue to {anchor}, and \n"
|
||||
"be sure to provide /tmp/.pc-sysinstall/pc-sysinstall.log."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:47
|
||||
msgid "Ok"
|
||||
msgstr "OK"
|
||||
|
||||
#: install_station/install_type.py:55
|
||||
msgid "How do you want to install GhostBSD?"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:60
|
||||
msgid ""
|
||||
"<b>Disks Configuration</b>\n"
|
||||
"Install GhostBSD using Stripe, Mirror, RAIDZ1, RAIDZ2, or RAIDZ3 "
|
||||
"configurations."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:70
|
||||
msgid ""
|
||||
"<b>Multi-Boot Configuration</b>\n"
|
||||
"Install GhostBSD with ZFS alongside other operating systems."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:39
|
||||
msgid "Creating ghostbsd_installation.cfg"
|
||||
msgstr "Création de ghostbsd_installation.cfg"
|
||||
|
||||
#: install_station/install.py:43
|
||||
msgid "Deleting partition"
|
||||
msgstr "Suppression de la partition"
|
||||
|
||||
#: install_station/install.py:48
|
||||
msgid "Creating disk partition"
|
||||
msgstr "Création de la partition de disque"
|
||||
|
||||
#: install_station/install.py:53
|
||||
msgid "Creating new partitions"
|
||||
msgstr "Création de nouvelles partitions"
|
||||
|
||||
#: install_station/install.py:83
|
||||
msgid "Installation in progress"
|
||||
msgstr "Installation en cours"
|
||||
|
||||
#: install_station/install.py:95
|
||||
msgid ""
|
||||
"Thank you for choosing GhostBSD!\n"
|
||||
"\n"
|
||||
"We believe every computer operating system should be simple, elegant, secure "
|
||||
"and protect your privacy while being easy to use. GhostBSD is simplifying "
|
||||
"FreeBSD for those who lack the technical expertise required to use it and "
|
||||
"lower the entry-level of using BSD. \n"
|
||||
"\n"
|
||||
"We hope you'll enjoy our BSD operating system."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:14
|
||||
msgid "Back"
|
||||
msgstr "Retour"
|
||||
|
||||
#: install_station/interface_controller.py:16
|
||||
msgid "Cancel"
|
||||
msgstr "Annuler"
|
||||
|
||||
#: install_station/interface_controller.py:18
|
||||
#: install_station/interface_controller.py:226
|
||||
msgid "Next"
|
||||
msgstr "Suivant"
|
||||
|
||||
#: install_station/interface_controller.py:100
|
||||
#: install_station/interface_controller.py:101
|
||||
#: install_station/welcome_live.py:112
|
||||
msgid "Welcome to GhostBSD"
|
||||
msgstr "Bienvenue sur GhostBSD"
|
||||
|
||||
#: install_station/interface_controller.py:110
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:136
|
||||
msgid "Installation Types"
|
||||
msgstr "Types d'installation"
|
||||
|
||||
#: install_station/interface_controller.py:148
|
||||
msgid "Custom Configuration"
|
||||
msgstr "Configuration personnalisée"
|
||||
|
||||
#: install_station/interface_controller.py:158
|
||||
msgid "ZFS Configuration"
|
||||
msgstr "Configuration ZFS"
|
||||
|
||||
#: install_station/interface_controller.py:170
|
||||
msgid "Install"
|
||||
msgstr "Installer"
|
||||
|
||||
#: install_station/interface_controller.py:180
|
||||
msgid "Installation Progress"
|
||||
msgstr "Progression de l'installation"
|
||||
|
||||
#: install_station/interface_controller.py:187
|
||||
msgid "Progress Bar"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:201
|
||||
#: install_station/interface_controller.py:206
|
||||
#: install_station/network_setup.py:110
|
||||
msgid "Network Setup"
|
||||
msgstr "Configuration réseau"
|
||||
|
||||
#: install_station/language.py:20
|
||||
msgid "Select the language you want to use with GhostBSD."
|
||||
msgstr "Sélectionnez la langue que vous souhaitez utiliser avec GhostBSD."
|
||||
|
||||
#: install_station/language.py:64 install_station/welcome_live.py:110
|
||||
#: install_station/welcome_live.py:127
|
||||
msgid "Language"
|
||||
msgstr "Langue"
|
||||
|
||||
#: install_station/language.py:79
|
||||
msgid "Welcome To GhostBSD!"
|
||||
msgstr "Bienvenue sur GhostBSD !"
|
||||
|
||||
#: install_station/network_setup.py:69 install_station/network_setup.py:129
|
||||
msgid "Network card connected to the internet"
|
||||
msgstr "Carte réseau connectée à Internet"
|
||||
|
||||
#: install_station/network_setup.py:75 install_station/network_setup.py:135
|
||||
msgid "Network card not connected to the internet"
|
||||
msgstr "Carte réseau non connectée à Internet"
|
||||
|
||||
#: install_station/network_setup.py:78 install_station/network_setup.py:138
|
||||
msgid "No network card detected"
|
||||
msgstr "Aucune carte réseau détectée"
|
||||
|
||||
#: install_station/network_setup.py:86 install_station/network_setup.py:146
|
||||
msgid "WiFi card detected and connected to an access point"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:90 install_station/network_setup.py:150
|
||||
msgid "WiFi card detected but not connected to an access point"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:93 install_station/network_setup.py:153
|
||||
msgid "WiFi card not detected or not supported"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:258
|
||||
msgid "Wi-Fi Network Authentication Required"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:270
|
||||
#, python-brace-format
|
||||
msgid "{ssid} Wi-Fi Network Authentication failed"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:272
|
||||
#, python-brace-format
|
||||
msgid "Authentication required by {ssid} Wi-Fi Network"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:275
|
||||
msgid "Password:"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:278
|
||||
msgid "Show password"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:164
|
||||
msgid ""
|
||||
"Please select 1 or more drive for stripe (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:171
|
||||
msgid "Please select 2 drive for mirroring (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:179
|
||||
msgid "Please select 3 drive for RAIDZ1 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:186
|
||||
msgid "Please select 4 drive for RAIDZ2 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:193
|
||||
msgid "Please select 5 drive for RAIDZ3 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:296
|
||||
msgid "Disk"
|
||||
msgstr "Disque"
|
||||
|
||||
#: install_station/use_zfs.py:303
|
||||
msgid "Size(MB)"
|
||||
msgstr "Taille (Mo)"
|
||||
|
||||
#: install_station/use_zfs.py:309
|
||||
msgid "Name"
|
||||
msgstr "Nom"
|
||||
|
||||
#: install_station/use_zfs.py:313
|
||||
msgid "Check"
|
||||
msgstr "Vérifier"
|
||||
|
||||
#: install_station/use_zfs.py:326
|
||||
msgid "Please select one drive"
|
||||
msgstr "Veuillez sélectionner un lecteur"
|
||||
|
||||
#: install_station/use_zfs.py:331
|
||||
msgid "<b>Pool Type</b>"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:335
|
||||
msgid "1+ disks Stripe"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:336
|
||||
msgid "2+ disks Mirror"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:337
|
||||
msgid "3 disks RAIDZ1"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:338
|
||||
msgid "4 disks RAIDZ2"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:339
|
||||
msgid "5 disks RAIDZ3"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:349
|
||||
msgid "<b>Pool Name</b>"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:369
|
||||
msgid "Encrypt Disk"
|
||||
msgstr "Chiffrer le disque"
|
||||
|
||||
#: install_station/use_zfs.py:373
|
||||
msgid "Password"
|
||||
msgstr "Mot de passe"
|
||||
|
||||
#: install_station/use_zfs.py:380
|
||||
msgid "Verify it"
|
||||
msgstr "Vérifiez-le"
|
||||
|
||||
#: install_station/use_zfs.py:541
|
||||
msgid "Warning"
|
||||
msgstr "Avertissement"
|
||||
|
||||
#: install_station/use_zfs.py:552
|
||||
msgid "Smallest disk need to be SELECTED first!\n"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:553
|
||||
msgid "All the disk selected will reset."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:16
|
||||
msgid ""
|
||||
"To run GhostBSD without installing, select \"Try GhostBSD.\"\n"
|
||||
"\n"
|
||||
"To install GhostBSD on your computer hard disk drive, click \"Install "
|
||||
"GhostBSD.\"\n"
|
||||
"\n"
|
||||
"Note: Language selection only works when selecting \"Try GhostBSD.\"\n"
|
||||
" When installing GhostBSD, the installation program is only in English."
|
||||
msgstr ""
|
||||
"Pour exécuter GhostBSD sans l'installer, sélectionnez \"Essayez GhostBSD.\"\n"
|
||||
"\n"
|
||||
"Pour installer GhostBSD sur le disque dur de votre ordinateur, cliquez sur "
|
||||
"\"Installer GhostBSD.\"\n"
|
||||
"\n"
|
||||
"Remarque : La sélection de la langue ne fonctionne qu'en sélectionnant "
|
||||
"\"Essayez GhostBSD.\"\n"
|
||||
" Lors de l'installation de GhostBSD, le programme d'installation "
|
||||
"n'est qu'en anglais."
|
||||
|
||||
#: install_station/welcome_live.py:95 install_station/welcome_live.py:242
|
||||
msgid "Install GhostBSD"
|
||||
msgstr "Installer GhostBSD"
|
||||
|
||||
#: install_station/welcome_live.py:98 install_station/welcome_live.py:246
|
||||
msgid "Try GhostBSD"
|
||||
msgstr "Essayez GhostBSD"
|
||||
|
||||
#: install_station/welcome_live.py:101
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"To run GhostBSD without installing, select \"Try GhostBSD.\"\n"
|
||||
" \n"
|
||||
"\n"
|
||||
"To install GhostBSD on your computer hard disk drive, click \"Install "
|
||||
"GhostBSD.\"\n"
|
||||
"\n"
|
||||
"Note: Language selection only works when selecting \"Try GhostBSD.\"\n"
|
||||
" When installing GhostBSD, the installation program is only in English."
|
||||
msgstr ""
|
||||
"Pour exécuter GhostBSD sans l'installer, sélectionnez \"Essayez GhostBSD.\"\n"
|
||||
"\n"
|
||||
"Pour installer GhostBSD sur le disque dur de votre ordinateur, cliquez sur "
|
||||
"\"Installer GhostBSD.\"\n"
|
||||
"\n"
|
||||
"Remarque : La sélection de la langue ne fonctionne qu'en sélectionnant "
|
||||
"\"Essayez GhostBSD.\"\n"
|
||||
" Lors de l'installation de GhostBSD, le programme d'installation "
|
||||
"n'est qu'en anglais."
|
||||
+366
@@ -0,0 +1,366 @@
|
||||
# Croatian translations for PACKAGE package.
|
||||
# Copyright (C) 2025 THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# Eric Turgeon <EMAIL@ADDRESS>, 2025.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-07-09 20:39-0300\n"
|
||||
"PO-Revision-Date: 2025-07-09 20:26-0300\n"
|
||||
"Last-Translator: Eric Turgeon <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Croatian <lokalizacija@linux.hr>\n"
|
||||
"Language: hr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=ASCII\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
|
||||
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#: install_station/boot_manager.py:125
|
||||
#: install_station/interface_controller.py:168
|
||||
msgid "Boot Option"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:139
|
||||
msgid "Setup rEFInd boot manager"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:153
|
||||
msgid "Setup FreeBSD boot manager"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:168
|
||||
#, python-brace-format
|
||||
msgid "FreeBSD {loader} loader only"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:13
|
||||
msgid ""
|
||||
"Installation is complete. You need to restart the\n"
|
||||
"computer in order to use the new installation.\n"
|
||||
"You can continue to use this live media, although\n"
|
||||
"any changes you make or documents you save will\n"
|
||||
"not be preserved on reboot."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:34
|
||||
msgid "Installation Completed"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:50
|
||||
msgid "Restart"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:52
|
||||
msgid "Continue"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:21
|
||||
msgid "Installation Error"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:32
|
||||
msgid "Installation has failed!"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:37
|
||||
msgid "GhostBSD issue system"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:38
|
||||
#, python-brace-format
|
||||
msgid ""
|
||||
"Please report the issue to {anchor}, and \n"
|
||||
"be sure to provide /tmp/.pc-sysinstall/pc-sysinstall.log."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:47
|
||||
msgid "Ok"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:55
|
||||
msgid "How do you want to install GhostBSD?"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:60
|
||||
msgid ""
|
||||
"<b>Disks Configuration</b>\n"
|
||||
"Install GhostBSD using Stripe, Mirror, RAIDZ1, RAIDZ2, or RAIDZ3 "
|
||||
"configurations."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:70
|
||||
msgid ""
|
||||
"<b>Multi-Boot Configuration</b>\n"
|
||||
"Install GhostBSD with ZFS alongside other operating systems."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:39
|
||||
msgid "Creating ghostbsd_installation.cfg"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:43
|
||||
msgid "Deleting partition"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:48
|
||||
msgid "Creating disk partition"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:53
|
||||
msgid "Creating new partitions"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:83
|
||||
msgid "Installation in progress"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:95
|
||||
msgid ""
|
||||
"Thank you for choosing GhostBSD!\n"
|
||||
"\n"
|
||||
"We believe every computer operating system should be simple, elegant, secure "
|
||||
"and protect your privacy while being easy to use. GhostBSD is simplifying "
|
||||
"FreeBSD for those who lack the technical expertise required to use it and "
|
||||
"lower the entry-level of using BSD. \n"
|
||||
"\n"
|
||||
"We hope you'll enjoy our BSD operating system."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:14
|
||||
msgid "Back"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:16
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:18
|
||||
#: install_station/interface_controller.py:226
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:100
|
||||
#: install_station/interface_controller.py:101
|
||||
#: install_station/welcome_live.py:112
|
||||
msgid "Welcome to GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:110
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:136
|
||||
msgid "Installation Types"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:148
|
||||
msgid "Custom Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:158
|
||||
msgid "ZFS Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:170
|
||||
msgid "Install"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:180
|
||||
msgid "Installation Progress"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:187
|
||||
msgid "Progress Bar"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:201
|
||||
#: install_station/interface_controller.py:206
|
||||
#: install_station/network_setup.py:110
|
||||
msgid "Network Setup"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:20
|
||||
msgid "Select the language you want to use with GhostBSD."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:64 install_station/welcome_live.py:110
|
||||
#: install_station/welcome_live.py:127
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:79
|
||||
msgid "Welcome To GhostBSD!"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:69 install_station/network_setup.py:129
|
||||
msgid "Network card connected to the internet"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:75 install_station/network_setup.py:135
|
||||
msgid "Network card not connected to the internet"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:78 install_station/network_setup.py:138
|
||||
msgid "No network card detected"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:86 install_station/network_setup.py:146
|
||||
msgid "WiFi card detected and connected to an access point"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:90 install_station/network_setup.py:150
|
||||
msgid "WiFi card detected but not connected to an access point"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:93 install_station/network_setup.py:153
|
||||
msgid "WiFi card not detected or not supported"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:258
|
||||
msgid "Wi-Fi Network Authentication Required"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:270
|
||||
#, python-brace-format
|
||||
msgid "{ssid} Wi-Fi Network Authentication failed"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:272
|
||||
#, python-brace-format
|
||||
msgid "Authentication required by {ssid} Wi-Fi Network"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:275
|
||||
msgid "Password:"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:278
|
||||
msgid "Show password"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:164
|
||||
msgid ""
|
||||
"Please select 1 or more drive for stripe (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:171
|
||||
msgid "Please select 2 drive for mirroring (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:179
|
||||
msgid "Please select 3 drive for RAIDZ1 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:186
|
||||
msgid "Please select 4 drive for RAIDZ2 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:193
|
||||
msgid "Please select 5 drive for RAIDZ3 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:296
|
||||
msgid "Disk"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:303
|
||||
msgid "Size(MB)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:309
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:313
|
||||
msgid "Check"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:326
|
||||
msgid "Please select one drive"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:331
|
||||
msgid "<b>Pool Type</b>"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:335
|
||||
msgid "1+ disks Stripe"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:336
|
||||
msgid "2+ disks Mirror"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:337
|
||||
msgid "3 disks RAIDZ1"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:338
|
||||
msgid "4 disks RAIDZ2"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:339
|
||||
msgid "5 disks RAIDZ3"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:349
|
||||
msgid "<b>Pool Name</b>"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:369
|
||||
msgid "Encrypt Disk"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:373
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:380
|
||||
msgid "Verify it"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:541
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:552
|
||||
msgid "Smallest disk need to be SELECTED first!\n"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:553
|
||||
msgid "All the disk selected will reset."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:16
|
||||
msgid ""
|
||||
"To run GhostBSD without installing, select \"Try GhostBSD.\"\n"
|
||||
"\n"
|
||||
"To install GhostBSD on your computer hard disk drive, click \"Install "
|
||||
"GhostBSD.\"\n"
|
||||
"\n"
|
||||
"Note: Language selection only works when selecting \"Try GhostBSD.\"\n"
|
||||
" When installing GhostBSD, the installation program is only in English."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:95 install_station/welcome_live.py:242
|
||||
msgid "Install GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:98 install_station/welcome_live.py:246
|
||||
msgid "Try GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:101
|
||||
msgid ""
|
||||
"To run GhostBSD without installing, select \"Try GhostBSD.\"\n"
|
||||
" \n"
|
||||
"\n"
|
||||
"To install GhostBSD on your computer hard disk drive, click \"Install "
|
||||
"GhostBSD.\"\n"
|
||||
"\n"
|
||||
"Note: Language selection only works when selecting \"Try GhostBSD.\"\n"
|
||||
" When installing GhostBSD, the installation program is only in English."
|
||||
msgstr ""
|
||||
+365
@@ -0,0 +1,365 @@
|
||||
# Hungarian translations for PACKAGE package.
|
||||
# Copyright (C) 2025 THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# Eric Turgeon <EMAIL@ADDRESS>, 2025.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-07-09 20:39-0300\n"
|
||||
"PO-Revision-Date: 2025-07-09 20:24-0300\n"
|
||||
"Last-Translator: Eric Turgeon <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Hungarian <translation-team-hu@lists.sourceforge.net>\n"
|
||||
"Language: hu\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=ASCII\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: install_station/boot_manager.py:125
|
||||
#: install_station/interface_controller.py:168
|
||||
msgid "Boot Option"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:139
|
||||
msgid "Setup rEFInd boot manager"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:153
|
||||
msgid "Setup FreeBSD boot manager"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:168
|
||||
#, python-brace-format
|
||||
msgid "FreeBSD {loader} loader only"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:13
|
||||
msgid ""
|
||||
"Installation is complete. You need to restart the\n"
|
||||
"computer in order to use the new installation.\n"
|
||||
"You can continue to use this live media, although\n"
|
||||
"any changes you make or documents you save will\n"
|
||||
"not be preserved on reboot."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:34
|
||||
msgid "Installation Completed"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:50
|
||||
msgid "Restart"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:52
|
||||
msgid "Continue"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:21
|
||||
msgid "Installation Error"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:32
|
||||
msgid "Installation has failed!"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:37
|
||||
msgid "GhostBSD issue system"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:38
|
||||
#, python-brace-format
|
||||
msgid ""
|
||||
"Please report the issue to {anchor}, and \n"
|
||||
"be sure to provide /tmp/.pc-sysinstall/pc-sysinstall.log."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:47
|
||||
msgid "Ok"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:55
|
||||
msgid "How do you want to install GhostBSD?"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:60
|
||||
msgid ""
|
||||
"<b>Disks Configuration</b>\n"
|
||||
"Install GhostBSD using Stripe, Mirror, RAIDZ1, RAIDZ2, or RAIDZ3 "
|
||||
"configurations."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:70
|
||||
msgid ""
|
||||
"<b>Multi-Boot Configuration</b>\n"
|
||||
"Install GhostBSD with ZFS alongside other operating systems."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:39
|
||||
msgid "Creating ghostbsd_installation.cfg"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:43
|
||||
msgid "Deleting partition"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:48
|
||||
msgid "Creating disk partition"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:53
|
||||
msgid "Creating new partitions"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:83
|
||||
msgid "Installation in progress"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:95
|
||||
msgid ""
|
||||
"Thank you for choosing GhostBSD!\n"
|
||||
"\n"
|
||||
"We believe every computer operating system should be simple, elegant, secure "
|
||||
"and protect your privacy while being easy to use. GhostBSD is simplifying "
|
||||
"FreeBSD for those who lack the technical expertise required to use it and "
|
||||
"lower the entry-level of using BSD. \n"
|
||||
"\n"
|
||||
"We hope you'll enjoy our BSD operating system."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:14
|
||||
msgid "Back"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:16
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:18
|
||||
#: install_station/interface_controller.py:226
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:100
|
||||
#: install_station/interface_controller.py:101
|
||||
#: install_station/welcome_live.py:112
|
||||
msgid "Welcome to GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:110
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:136
|
||||
msgid "Installation Types"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:148
|
||||
msgid "Custom Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:158
|
||||
msgid "ZFS Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:170
|
||||
msgid "Install"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:180
|
||||
msgid "Installation Progress"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:187
|
||||
msgid "Progress Bar"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:201
|
||||
#: install_station/interface_controller.py:206
|
||||
#: install_station/network_setup.py:110
|
||||
msgid "Network Setup"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:20
|
||||
msgid "Select the language you want to use with GhostBSD."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:64 install_station/welcome_live.py:110
|
||||
#: install_station/welcome_live.py:127
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:79
|
||||
msgid "Welcome To GhostBSD!"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:69 install_station/network_setup.py:129
|
||||
msgid "Network card connected to the internet"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:75 install_station/network_setup.py:135
|
||||
msgid "Network card not connected to the internet"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:78 install_station/network_setup.py:138
|
||||
msgid "No network card detected"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:86 install_station/network_setup.py:146
|
||||
msgid "WiFi card detected and connected to an access point"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:90 install_station/network_setup.py:150
|
||||
msgid "WiFi card detected but not connected to an access point"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:93 install_station/network_setup.py:153
|
||||
msgid "WiFi card not detected or not supported"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:258
|
||||
msgid "Wi-Fi Network Authentication Required"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:270
|
||||
#, python-brace-format
|
||||
msgid "{ssid} Wi-Fi Network Authentication failed"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:272
|
||||
#, python-brace-format
|
||||
msgid "Authentication required by {ssid} Wi-Fi Network"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:275
|
||||
msgid "Password:"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:278
|
||||
msgid "Show password"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:164
|
||||
msgid ""
|
||||
"Please select 1 or more drive for stripe (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:171
|
||||
msgid "Please select 2 drive for mirroring (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:179
|
||||
msgid "Please select 3 drive for RAIDZ1 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:186
|
||||
msgid "Please select 4 drive for RAIDZ2 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:193
|
||||
msgid "Please select 5 drive for RAIDZ3 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:296
|
||||
msgid "Disk"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:303
|
||||
msgid "Size(MB)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:309
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:313
|
||||
msgid "Check"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:326
|
||||
msgid "Please select one drive"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:331
|
||||
msgid "<b>Pool Type</b>"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:335
|
||||
msgid "1+ disks Stripe"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:336
|
||||
msgid "2+ disks Mirror"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:337
|
||||
msgid "3 disks RAIDZ1"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:338
|
||||
msgid "4 disks RAIDZ2"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:339
|
||||
msgid "5 disks RAIDZ3"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:349
|
||||
msgid "<b>Pool Name</b>"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:369
|
||||
msgid "Encrypt Disk"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:373
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:380
|
||||
msgid "Verify it"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:541
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:552
|
||||
msgid "Smallest disk need to be SELECTED first!\n"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:553
|
||||
msgid "All the disk selected will reset."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:16
|
||||
msgid ""
|
||||
"To run GhostBSD without installing, select \"Try GhostBSD.\"\n"
|
||||
"\n"
|
||||
"To install GhostBSD on your computer hard disk drive, click \"Install "
|
||||
"GhostBSD.\"\n"
|
||||
"\n"
|
||||
"Note: Language selection only works when selecting \"Try GhostBSD.\"\n"
|
||||
" When installing GhostBSD, the installation program is only in English."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:95 install_station/welcome_live.py:242
|
||||
msgid "Install GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:98 install_station/welcome_live.py:246
|
||||
msgid "Try GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:101
|
||||
msgid ""
|
||||
"To run GhostBSD without installing, select \"Try GhostBSD.\"\n"
|
||||
" \n"
|
||||
"\n"
|
||||
"To install GhostBSD on your computer hard disk drive, click \"Install "
|
||||
"GhostBSD.\"\n"
|
||||
"\n"
|
||||
"Note: Language selection only works when selecting \"Try GhostBSD.\"\n"
|
||||
" When installing GhostBSD, the installation program is only in English."
|
||||
msgstr ""
|
||||
+365
@@ -0,0 +1,365 @@
|
||||
# Italian translations for PACKAGE package.
|
||||
# Copyright (C) 2025 THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# Eric Turgeon <EMAIL@ADDRESS>, 2025.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-07-09 20:39-0300\n"
|
||||
"PO-Revision-Date: 2025-07-09 20:19-0300\n"
|
||||
"Last-Translator: Eric Turgeon <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Italian <tp@lists.linux.it>\n"
|
||||
"Language: it\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=ASCII\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: install_station/boot_manager.py:125
|
||||
#: install_station/interface_controller.py:168
|
||||
msgid "Boot Option"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:139
|
||||
msgid "Setup rEFInd boot manager"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:153
|
||||
msgid "Setup FreeBSD boot manager"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:168
|
||||
#, python-brace-format
|
||||
msgid "FreeBSD {loader} loader only"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:13
|
||||
msgid ""
|
||||
"Installation is complete. You need to restart the\n"
|
||||
"computer in order to use the new installation.\n"
|
||||
"You can continue to use this live media, although\n"
|
||||
"any changes you make or documents you save will\n"
|
||||
"not be preserved on reboot."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:34
|
||||
msgid "Installation Completed"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:50
|
||||
msgid "Restart"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:52
|
||||
msgid "Continue"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:21
|
||||
msgid "Installation Error"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:32
|
||||
msgid "Installation has failed!"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:37
|
||||
msgid "GhostBSD issue system"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:38
|
||||
#, python-brace-format
|
||||
msgid ""
|
||||
"Please report the issue to {anchor}, and \n"
|
||||
"be sure to provide /tmp/.pc-sysinstall/pc-sysinstall.log."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:47
|
||||
msgid "Ok"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:55
|
||||
msgid "How do you want to install GhostBSD?"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:60
|
||||
msgid ""
|
||||
"<b>Disks Configuration</b>\n"
|
||||
"Install GhostBSD using Stripe, Mirror, RAIDZ1, RAIDZ2, or RAIDZ3 "
|
||||
"configurations."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:70
|
||||
msgid ""
|
||||
"<b>Multi-Boot Configuration</b>\n"
|
||||
"Install GhostBSD with ZFS alongside other operating systems."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:39
|
||||
msgid "Creating ghostbsd_installation.cfg"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:43
|
||||
msgid "Deleting partition"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:48
|
||||
msgid "Creating disk partition"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:53
|
||||
msgid "Creating new partitions"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:83
|
||||
msgid "Installation in progress"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:95
|
||||
msgid ""
|
||||
"Thank you for choosing GhostBSD!\n"
|
||||
"\n"
|
||||
"We believe every computer operating system should be simple, elegant, secure "
|
||||
"and protect your privacy while being easy to use. GhostBSD is simplifying "
|
||||
"FreeBSD for those who lack the technical expertise required to use it and "
|
||||
"lower the entry-level of using BSD. \n"
|
||||
"\n"
|
||||
"We hope you'll enjoy our BSD operating system."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:14
|
||||
msgid "Back"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:16
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:18
|
||||
#: install_station/interface_controller.py:226
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:100
|
||||
#: install_station/interface_controller.py:101
|
||||
#: install_station/welcome_live.py:112
|
||||
msgid "Welcome to GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:110
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:136
|
||||
msgid "Installation Types"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:148
|
||||
msgid "Custom Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:158
|
||||
msgid "ZFS Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:170
|
||||
msgid "Install"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:180
|
||||
msgid "Installation Progress"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:187
|
||||
msgid "Progress Bar"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:201
|
||||
#: install_station/interface_controller.py:206
|
||||
#: install_station/network_setup.py:110
|
||||
msgid "Network Setup"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:20
|
||||
msgid "Select the language you want to use with GhostBSD."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:64 install_station/welcome_live.py:110
|
||||
#: install_station/welcome_live.py:127
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:79
|
||||
msgid "Welcome To GhostBSD!"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:69 install_station/network_setup.py:129
|
||||
msgid "Network card connected to the internet"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:75 install_station/network_setup.py:135
|
||||
msgid "Network card not connected to the internet"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:78 install_station/network_setup.py:138
|
||||
msgid "No network card detected"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:86 install_station/network_setup.py:146
|
||||
msgid "WiFi card detected and connected to an access point"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:90 install_station/network_setup.py:150
|
||||
msgid "WiFi card detected but not connected to an access point"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:93 install_station/network_setup.py:153
|
||||
msgid "WiFi card not detected or not supported"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:258
|
||||
msgid "Wi-Fi Network Authentication Required"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:270
|
||||
#, python-brace-format
|
||||
msgid "{ssid} Wi-Fi Network Authentication failed"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:272
|
||||
#, python-brace-format
|
||||
msgid "Authentication required by {ssid} Wi-Fi Network"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:275
|
||||
msgid "Password:"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:278
|
||||
msgid "Show password"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:164
|
||||
msgid ""
|
||||
"Please select 1 or more drive for stripe (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:171
|
||||
msgid "Please select 2 drive for mirroring (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:179
|
||||
msgid "Please select 3 drive for RAIDZ1 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:186
|
||||
msgid "Please select 4 drive for RAIDZ2 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:193
|
||||
msgid "Please select 5 drive for RAIDZ3 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:296
|
||||
msgid "Disk"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:303
|
||||
msgid "Size(MB)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:309
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:313
|
||||
msgid "Check"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:326
|
||||
msgid "Please select one drive"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:331
|
||||
msgid "<b>Pool Type</b>"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:335
|
||||
msgid "1+ disks Stripe"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:336
|
||||
msgid "2+ disks Mirror"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:337
|
||||
msgid "3 disks RAIDZ1"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:338
|
||||
msgid "4 disks RAIDZ2"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:339
|
||||
msgid "5 disks RAIDZ3"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:349
|
||||
msgid "<b>Pool Name</b>"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:369
|
||||
msgid "Encrypt Disk"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:373
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:380
|
||||
msgid "Verify it"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:541
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:552
|
||||
msgid "Smallest disk need to be SELECTED first!\n"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:553
|
||||
msgid "All the disk selected will reset."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:16
|
||||
msgid ""
|
||||
"To run GhostBSD without installing, select \"Try GhostBSD.\"\n"
|
||||
"\n"
|
||||
"To install GhostBSD on your computer hard disk drive, click \"Install "
|
||||
"GhostBSD.\"\n"
|
||||
"\n"
|
||||
"Note: Language selection only works when selecting \"Try GhostBSD.\"\n"
|
||||
" When installing GhostBSD, the installation program is only in English."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:95 install_station/welcome_live.py:242
|
||||
msgid "Install GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:98 install_station/welcome_live.py:246
|
||||
msgid "Try GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:101
|
||||
msgid ""
|
||||
"To run GhostBSD without installing, select \"Try GhostBSD.\"\n"
|
||||
" \n"
|
||||
"\n"
|
||||
"To install GhostBSD on your computer hard disk drive, click \"Install "
|
||||
"GhostBSD.\"\n"
|
||||
"\n"
|
||||
"Note: Language selection only works when selecting \"Try GhostBSD.\"\n"
|
||||
" When installing GhostBSD, the installation program is only in English."
|
||||
msgstr ""
|
||||
+365
@@ -0,0 +1,365 @@
|
||||
# Japanese translations for PACKAGE package.
|
||||
# Copyright (C) 2025 THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# Eric Turgeon <EMAIL@ADDRESS>, 2025.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-07-09 20:39-0300\n"
|
||||
"PO-Revision-Date: 2025-07-09 20:21-0300\n"
|
||||
"Last-Translator: Eric Turgeon <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Japanese <translation-team-ja@lists.sourceforge.net>\n"
|
||||
"Language: ja\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=ASCII\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#: install_station/boot_manager.py:125
|
||||
#: install_station/interface_controller.py:168
|
||||
msgid "Boot Option"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:139
|
||||
msgid "Setup rEFInd boot manager"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:153
|
||||
msgid "Setup FreeBSD boot manager"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:168
|
||||
#, python-brace-format
|
||||
msgid "FreeBSD {loader} loader only"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:13
|
||||
msgid ""
|
||||
"Installation is complete. You need to restart the\n"
|
||||
"computer in order to use the new installation.\n"
|
||||
"You can continue to use this live media, although\n"
|
||||
"any changes you make or documents you save will\n"
|
||||
"not be preserved on reboot."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:34
|
||||
msgid "Installation Completed"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:50
|
||||
msgid "Restart"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:52
|
||||
msgid "Continue"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:21
|
||||
msgid "Installation Error"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:32
|
||||
msgid "Installation has failed!"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:37
|
||||
msgid "GhostBSD issue system"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:38
|
||||
#, python-brace-format
|
||||
msgid ""
|
||||
"Please report the issue to {anchor}, and \n"
|
||||
"be sure to provide /tmp/.pc-sysinstall/pc-sysinstall.log."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:47
|
||||
msgid "Ok"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:55
|
||||
msgid "How do you want to install GhostBSD?"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:60
|
||||
msgid ""
|
||||
"<b>Disks Configuration</b>\n"
|
||||
"Install GhostBSD using Stripe, Mirror, RAIDZ1, RAIDZ2, or RAIDZ3 "
|
||||
"configurations."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:70
|
||||
msgid ""
|
||||
"<b>Multi-Boot Configuration</b>\n"
|
||||
"Install GhostBSD with ZFS alongside other operating systems."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:39
|
||||
msgid "Creating ghostbsd_installation.cfg"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:43
|
||||
msgid "Deleting partition"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:48
|
||||
msgid "Creating disk partition"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:53
|
||||
msgid "Creating new partitions"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:83
|
||||
msgid "Installation in progress"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:95
|
||||
msgid ""
|
||||
"Thank you for choosing GhostBSD!\n"
|
||||
"\n"
|
||||
"We believe every computer operating system should be simple, elegant, secure "
|
||||
"and protect your privacy while being easy to use. GhostBSD is simplifying "
|
||||
"FreeBSD for those who lack the technical expertise required to use it and "
|
||||
"lower the entry-level of using BSD. \n"
|
||||
"\n"
|
||||
"We hope you'll enjoy our BSD operating system."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:14
|
||||
msgid "Back"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:16
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:18
|
||||
#: install_station/interface_controller.py:226
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:100
|
||||
#: install_station/interface_controller.py:101
|
||||
#: install_station/welcome_live.py:112
|
||||
msgid "Welcome to GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:110
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:136
|
||||
msgid "Installation Types"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:148
|
||||
msgid "Custom Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:158
|
||||
msgid "ZFS Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:170
|
||||
msgid "Install"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:180
|
||||
msgid "Installation Progress"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:187
|
||||
msgid "Progress Bar"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:201
|
||||
#: install_station/interface_controller.py:206
|
||||
#: install_station/network_setup.py:110
|
||||
msgid "Network Setup"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:20
|
||||
msgid "Select the language you want to use with GhostBSD."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:64 install_station/welcome_live.py:110
|
||||
#: install_station/welcome_live.py:127
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:79
|
||||
msgid "Welcome To GhostBSD!"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:69 install_station/network_setup.py:129
|
||||
msgid "Network card connected to the internet"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:75 install_station/network_setup.py:135
|
||||
msgid "Network card not connected to the internet"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:78 install_station/network_setup.py:138
|
||||
msgid "No network card detected"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:86 install_station/network_setup.py:146
|
||||
msgid "WiFi card detected and connected to an access point"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:90 install_station/network_setup.py:150
|
||||
msgid "WiFi card detected but not connected to an access point"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:93 install_station/network_setup.py:153
|
||||
msgid "WiFi card not detected or not supported"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:258
|
||||
msgid "Wi-Fi Network Authentication Required"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:270
|
||||
#, python-brace-format
|
||||
msgid "{ssid} Wi-Fi Network Authentication failed"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:272
|
||||
#, python-brace-format
|
||||
msgid "Authentication required by {ssid} Wi-Fi Network"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:275
|
||||
msgid "Password:"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:278
|
||||
msgid "Show password"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:164
|
||||
msgid ""
|
||||
"Please select 1 or more drive for stripe (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:171
|
||||
msgid "Please select 2 drive for mirroring (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:179
|
||||
msgid "Please select 3 drive for RAIDZ1 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:186
|
||||
msgid "Please select 4 drive for RAIDZ2 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:193
|
||||
msgid "Please select 5 drive for RAIDZ3 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:296
|
||||
msgid "Disk"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:303
|
||||
msgid "Size(MB)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:309
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:313
|
||||
msgid "Check"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:326
|
||||
msgid "Please select one drive"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:331
|
||||
msgid "<b>Pool Type</b>"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:335
|
||||
msgid "1+ disks Stripe"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:336
|
||||
msgid "2+ disks Mirror"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:337
|
||||
msgid "3 disks RAIDZ1"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:338
|
||||
msgid "4 disks RAIDZ2"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:339
|
||||
msgid "5 disks RAIDZ3"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:349
|
||||
msgid "<b>Pool Name</b>"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:369
|
||||
msgid "Encrypt Disk"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:373
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:380
|
||||
msgid "Verify it"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:541
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:552
|
||||
msgid "Smallest disk need to be SELECTED first!\n"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:553
|
||||
msgid "All the disk selected will reset."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:16
|
||||
msgid ""
|
||||
"To run GhostBSD without installing, select \"Try GhostBSD.\"\n"
|
||||
"\n"
|
||||
"To install GhostBSD on your computer hard disk drive, click \"Install "
|
||||
"GhostBSD.\"\n"
|
||||
"\n"
|
||||
"Note: Language selection only works when selecting \"Try GhostBSD.\"\n"
|
||||
" When installing GhostBSD, the installation program is only in English."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:95 install_station/welcome_live.py:242
|
||||
msgid "Install GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:98 install_station/welcome_live.py:246
|
||||
msgid "Try GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:101
|
||||
msgid ""
|
||||
"To run GhostBSD without installing, select \"Try GhostBSD.\"\n"
|
||||
" \n"
|
||||
"\n"
|
||||
"To install GhostBSD on your computer hard disk drive, click \"Install "
|
||||
"GhostBSD.\"\n"
|
||||
"\n"
|
||||
"Note: Language selection only works when selecting \"Try GhostBSD.\"\n"
|
||||
" When installing GhostBSD, the installation program is only in English."
|
||||
msgstr ""
|
||||
+365
@@ -0,0 +1,365 @@
|
||||
# Korean translations for PACKAGE package.
|
||||
# Copyright (C) 2025 THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# Eric Turgeon <EMAIL@ADDRESS>, 2025.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-07-09 20:39-0300\n"
|
||||
"PO-Revision-Date: 2025-07-09 20:25-0300\n"
|
||||
"Last-Translator: Eric Turgeon <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Korean <translation-team-ko@googlegroups.com>\n"
|
||||
"Language: ko\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=ASCII\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#: install_station/boot_manager.py:125
|
||||
#: install_station/interface_controller.py:168
|
||||
msgid "Boot Option"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:139
|
||||
msgid "Setup rEFInd boot manager"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:153
|
||||
msgid "Setup FreeBSD boot manager"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:168
|
||||
#, python-brace-format
|
||||
msgid "FreeBSD {loader} loader only"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:13
|
||||
msgid ""
|
||||
"Installation is complete. You need to restart the\n"
|
||||
"computer in order to use the new installation.\n"
|
||||
"You can continue to use this live media, although\n"
|
||||
"any changes you make or documents you save will\n"
|
||||
"not be preserved on reboot."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:34
|
||||
msgid "Installation Completed"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:50
|
||||
msgid "Restart"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:52
|
||||
msgid "Continue"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:21
|
||||
msgid "Installation Error"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:32
|
||||
msgid "Installation has failed!"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:37
|
||||
msgid "GhostBSD issue system"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:38
|
||||
#, python-brace-format
|
||||
msgid ""
|
||||
"Please report the issue to {anchor}, and \n"
|
||||
"be sure to provide /tmp/.pc-sysinstall/pc-sysinstall.log."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:47
|
||||
msgid "Ok"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:55
|
||||
msgid "How do you want to install GhostBSD?"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:60
|
||||
msgid ""
|
||||
"<b>Disks Configuration</b>\n"
|
||||
"Install GhostBSD using Stripe, Mirror, RAIDZ1, RAIDZ2, or RAIDZ3 "
|
||||
"configurations."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:70
|
||||
msgid ""
|
||||
"<b>Multi-Boot Configuration</b>\n"
|
||||
"Install GhostBSD with ZFS alongside other operating systems."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:39
|
||||
msgid "Creating ghostbsd_installation.cfg"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:43
|
||||
msgid "Deleting partition"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:48
|
||||
msgid "Creating disk partition"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:53
|
||||
msgid "Creating new partitions"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:83
|
||||
msgid "Installation in progress"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:95
|
||||
msgid ""
|
||||
"Thank you for choosing GhostBSD!\n"
|
||||
"\n"
|
||||
"We believe every computer operating system should be simple, elegant, secure "
|
||||
"and protect your privacy while being easy to use. GhostBSD is simplifying "
|
||||
"FreeBSD for those who lack the technical expertise required to use it and "
|
||||
"lower the entry-level of using BSD. \n"
|
||||
"\n"
|
||||
"We hope you'll enjoy our BSD operating system."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:14
|
||||
msgid "Back"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:16
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:18
|
||||
#: install_station/interface_controller.py:226
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:100
|
||||
#: install_station/interface_controller.py:101
|
||||
#: install_station/welcome_live.py:112
|
||||
msgid "Welcome to GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:110
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:136
|
||||
msgid "Installation Types"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:148
|
||||
msgid "Custom Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:158
|
||||
msgid "ZFS Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:170
|
||||
msgid "Install"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:180
|
||||
msgid "Installation Progress"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:187
|
||||
msgid "Progress Bar"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:201
|
||||
#: install_station/interface_controller.py:206
|
||||
#: install_station/network_setup.py:110
|
||||
msgid "Network Setup"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:20
|
||||
msgid "Select the language you want to use with GhostBSD."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:64 install_station/welcome_live.py:110
|
||||
#: install_station/welcome_live.py:127
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:79
|
||||
msgid "Welcome To GhostBSD!"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:69 install_station/network_setup.py:129
|
||||
msgid "Network card connected to the internet"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:75 install_station/network_setup.py:135
|
||||
msgid "Network card not connected to the internet"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:78 install_station/network_setup.py:138
|
||||
msgid "No network card detected"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:86 install_station/network_setup.py:146
|
||||
msgid "WiFi card detected and connected to an access point"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:90 install_station/network_setup.py:150
|
||||
msgid "WiFi card detected but not connected to an access point"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:93 install_station/network_setup.py:153
|
||||
msgid "WiFi card not detected or not supported"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:258
|
||||
msgid "Wi-Fi Network Authentication Required"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:270
|
||||
#, python-brace-format
|
||||
msgid "{ssid} Wi-Fi Network Authentication failed"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:272
|
||||
#, python-brace-format
|
||||
msgid "Authentication required by {ssid} Wi-Fi Network"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:275
|
||||
msgid "Password:"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:278
|
||||
msgid "Show password"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:164
|
||||
msgid ""
|
||||
"Please select 1 or more drive for stripe (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:171
|
||||
msgid "Please select 2 drive for mirroring (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:179
|
||||
msgid "Please select 3 drive for RAIDZ1 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:186
|
||||
msgid "Please select 4 drive for RAIDZ2 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:193
|
||||
msgid "Please select 5 drive for RAIDZ3 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:296
|
||||
msgid "Disk"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:303
|
||||
msgid "Size(MB)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:309
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:313
|
||||
msgid "Check"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:326
|
||||
msgid "Please select one drive"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:331
|
||||
msgid "<b>Pool Type</b>"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:335
|
||||
msgid "1+ disks Stripe"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:336
|
||||
msgid "2+ disks Mirror"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:337
|
||||
msgid "3 disks RAIDZ1"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:338
|
||||
msgid "4 disks RAIDZ2"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:339
|
||||
msgid "5 disks RAIDZ3"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:349
|
||||
msgid "<b>Pool Name</b>"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:369
|
||||
msgid "Encrypt Disk"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:373
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:380
|
||||
msgid "Verify it"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:541
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:552
|
||||
msgid "Smallest disk need to be SELECTED first!\n"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:553
|
||||
msgid "All the disk selected will reset."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:16
|
||||
msgid ""
|
||||
"To run GhostBSD without installing, select \"Try GhostBSD.\"\n"
|
||||
"\n"
|
||||
"To install GhostBSD on your computer hard disk drive, click \"Install "
|
||||
"GhostBSD.\"\n"
|
||||
"\n"
|
||||
"Note: Language selection only works when selecting \"Try GhostBSD.\"\n"
|
||||
" When installing GhostBSD, the installation program is only in English."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:95 install_station/welcome_live.py:242
|
||||
msgid "Install GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:98 install_station/welcome_live.py:246
|
||||
msgid "Try GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:101
|
||||
msgid ""
|
||||
"To run GhostBSD without installing, select \"Try GhostBSD.\"\n"
|
||||
" \n"
|
||||
"\n"
|
||||
"To install GhostBSD on your computer hard disk drive, click \"Install "
|
||||
"GhostBSD.\"\n"
|
||||
"\n"
|
||||
"Note: Language selection only works when selecting \"Try GhostBSD.\"\n"
|
||||
" When installing GhostBSD, the installation program is only in English."
|
||||
msgstr ""
|
||||
+366
@@ -0,0 +1,366 @@
|
||||
# Lithuanian translations for PACKAGE package.
|
||||
# Copyright (C) 2025 THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# Eric Turgeon <EMAIL@ADDRESS>, 2025.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-07-09 20:39-0300\n"
|
||||
"PO-Revision-Date: 2025-07-09 20:26-0300\n"
|
||||
"Last-Translator: Eric Turgeon <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Lithuanian <komp_lt@konferencijos.lt>\n"
|
||||
"Language: lt\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=ASCII\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
|
||||
"(n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#: install_station/boot_manager.py:125
|
||||
#: install_station/interface_controller.py:168
|
||||
msgid "Boot Option"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:139
|
||||
msgid "Setup rEFInd boot manager"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:153
|
||||
msgid "Setup FreeBSD boot manager"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:168
|
||||
#, python-brace-format
|
||||
msgid "FreeBSD {loader} loader only"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:13
|
||||
msgid ""
|
||||
"Installation is complete. You need to restart the\n"
|
||||
"computer in order to use the new installation.\n"
|
||||
"You can continue to use this live media, although\n"
|
||||
"any changes you make or documents you save will\n"
|
||||
"not be preserved on reboot."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:34
|
||||
msgid "Installation Completed"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:50
|
||||
msgid "Restart"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:52
|
||||
msgid "Continue"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:21
|
||||
msgid "Installation Error"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:32
|
||||
msgid "Installation has failed!"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:37
|
||||
msgid "GhostBSD issue system"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:38
|
||||
#, python-brace-format
|
||||
msgid ""
|
||||
"Please report the issue to {anchor}, and \n"
|
||||
"be sure to provide /tmp/.pc-sysinstall/pc-sysinstall.log."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:47
|
||||
msgid "Ok"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:55
|
||||
msgid "How do you want to install GhostBSD?"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:60
|
||||
msgid ""
|
||||
"<b>Disks Configuration</b>\n"
|
||||
"Install GhostBSD using Stripe, Mirror, RAIDZ1, RAIDZ2, or RAIDZ3 "
|
||||
"configurations."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:70
|
||||
msgid ""
|
||||
"<b>Multi-Boot Configuration</b>\n"
|
||||
"Install GhostBSD with ZFS alongside other operating systems."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:39
|
||||
msgid "Creating ghostbsd_installation.cfg"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:43
|
||||
msgid "Deleting partition"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:48
|
||||
msgid "Creating disk partition"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:53
|
||||
msgid "Creating new partitions"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:83
|
||||
msgid "Installation in progress"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:95
|
||||
msgid ""
|
||||
"Thank you for choosing GhostBSD!\n"
|
||||
"\n"
|
||||
"We believe every computer operating system should be simple, elegant, secure "
|
||||
"and protect your privacy while being easy to use. GhostBSD is simplifying "
|
||||
"FreeBSD for those who lack the technical expertise required to use it and "
|
||||
"lower the entry-level of using BSD. \n"
|
||||
"\n"
|
||||
"We hope you'll enjoy our BSD operating system."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:14
|
||||
msgid "Back"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:16
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:18
|
||||
#: install_station/interface_controller.py:226
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:100
|
||||
#: install_station/interface_controller.py:101
|
||||
#: install_station/welcome_live.py:112
|
||||
msgid "Welcome to GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:110
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:136
|
||||
msgid "Installation Types"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:148
|
||||
msgid "Custom Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:158
|
||||
msgid "ZFS Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:170
|
||||
msgid "Install"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:180
|
||||
msgid "Installation Progress"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:187
|
||||
msgid "Progress Bar"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:201
|
||||
#: install_station/interface_controller.py:206
|
||||
#: install_station/network_setup.py:110
|
||||
msgid "Network Setup"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:20
|
||||
msgid "Select the language you want to use with GhostBSD."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:64 install_station/welcome_live.py:110
|
||||
#: install_station/welcome_live.py:127
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:79
|
||||
msgid "Welcome To GhostBSD!"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:69 install_station/network_setup.py:129
|
||||
msgid "Network card connected to the internet"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:75 install_station/network_setup.py:135
|
||||
msgid "Network card not connected to the internet"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:78 install_station/network_setup.py:138
|
||||
msgid "No network card detected"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:86 install_station/network_setup.py:146
|
||||
msgid "WiFi card detected and connected to an access point"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:90 install_station/network_setup.py:150
|
||||
msgid "WiFi card detected but not connected to an access point"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:93 install_station/network_setup.py:153
|
||||
msgid "WiFi card not detected or not supported"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:258
|
||||
msgid "Wi-Fi Network Authentication Required"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:270
|
||||
#, python-brace-format
|
||||
msgid "{ssid} Wi-Fi Network Authentication failed"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:272
|
||||
#, python-brace-format
|
||||
msgid "Authentication required by {ssid} Wi-Fi Network"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:275
|
||||
msgid "Password:"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:278
|
||||
msgid "Show password"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:164
|
||||
msgid ""
|
||||
"Please select 1 or more drive for stripe (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:171
|
||||
msgid "Please select 2 drive for mirroring (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:179
|
||||
msgid "Please select 3 drive for RAIDZ1 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:186
|
||||
msgid "Please select 4 drive for RAIDZ2 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:193
|
||||
msgid "Please select 5 drive for RAIDZ3 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:296
|
||||
msgid "Disk"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:303
|
||||
msgid "Size(MB)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:309
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:313
|
||||
msgid "Check"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:326
|
||||
msgid "Please select one drive"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:331
|
||||
msgid "<b>Pool Type</b>"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:335
|
||||
msgid "1+ disks Stripe"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:336
|
||||
msgid "2+ disks Mirror"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:337
|
||||
msgid "3 disks RAIDZ1"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:338
|
||||
msgid "4 disks RAIDZ2"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:339
|
||||
msgid "5 disks RAIDZ3"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:349
|
||||
msgid "<b>Pool Name</b>"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:369
|
||||
msgid "Encrypt Disk"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:373
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:380
|
||||
msgid "Verify it"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:541
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:552
|
||||
msgid "Smallest disk need to be SELECTED first!\n"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:553
|
||||
msgid "All the disk selected will reset."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:16
|
||||
msgid ""
|
||||
"To run GhostBSD without installing, select \"Try GhostBSD.\"\n"
|
||||
"\n"
|
||||
"To install GhostBSD on your computer hard disk drive, click \"Install "
|
||||
"GhostBSD.\"\n"
|
||||
"\n"
|
||||
"Note: Language selection only works when selecting \"Try GhostBSD.\"\n"
|
||||
" When installing GhostBSD, the installation program is only in English."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:95 install_station/welcome_live.py:242
|
||||
msgid "Install GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:98 install_station/welcome_live.py:246
|
||||
msgid "Try GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:101
|
||||
msgid ""
|
||||
"To run GhostBSD without installing, select \"Try GhostBSD.\"\n"
|
||||
" \n"
|
||||
"\n"
|
||||
"To install GhostBSD on your computer hard disk drive, click \"Install "
|
||||
"GhostBSD.\"\n"
|
||||
"\n"
|
||||
"Note: Language selection only works when selecting \"Try GhostBSD.\"\n"
|
||||
" When installing GhostBSD, the installation program is only in English."
|
||||
msgstr ""
|
||||
+366
@@ -0,0 +1,366 @@
|
||||
# Latvian translations for PACKAGE package.
|
||||
# Copyright (C) 2025 THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# Eric Turgeon <EMAIL@ADDRESS>, 2025.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-07-09 20:39-0300\n"
|
||||
"PO-Revision-Date: 2025-07-09 20:26-0300\n"
|
||||
"Last-Translator: Eric Turgeon <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Latvian <translation-team-lv@lists.sourceforge.net>\n"
|
||||
"Language: lv\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=ASCII\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : "
|
||||
"2);\n"
|
||||
|
||||
#: install_station/boot_manager.py:125
|
||||
#: install_station/interface_controller.py:168
|
||||
msgid "Boot Option"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:139
|
||||
msgid "Setup rEFInd boot manager"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:153
|
||||
msgid "Setup FreeBSD boot manager"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:168
|
||||
#, python-brace-format
|
||||
msgid "FreeBSD {loader} loader only"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:13
|
||||
msgid ""
|
||||
"Installation is complete. You need to restart the\n"
|
||||
"computer in order to use the new installation.\n"
|
||||
"You can continue to use this live media, although\n"
|
||||
"any changes you make or documents you save will\n"
|
||||
"not be preserved on reboot."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:34
|
||||
msgid "Installation Completed"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:50
|
||||
msgid "Restart"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:52
|
||||
msgid "Continue"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:21
|
||||
msgid "Installation Error"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:32
|
||||
msgid "Installation has failed!"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:37
|
||||
msgid "GhostBSD issue system"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:38
|
||||
#, python-brace-format
|
||||
msgid ""
|
||||
"Please report the issue to {anchor}, and \n"
|
||||
"be sure to provide /tmp/.pc-sysinstall/pc-sysinstall.log."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:47
|
||||
msgid "Ok"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:55
|
||||
msgid "How do you want to install GhostBSD?"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:60
|
||||
msgid ""
|
||||
"<b>Disks Configuration</b>\n"
|
||||
"Install GhostBSD using Stripe, Mirror, RAIDZ1, RAIDZ2, or RAIDZ3 "
|
||||
"configurations."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:70
|
||||
msgid ""
|
||||
"<b>Multi-Boot Configuration</b>\n"
|
||||
"Install GhostBSD with ZFS alongside other operating systems."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:39
|
||||
msgid "Creating ghostbsd_installation.cfg"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:43
|
||||
msgid "Deleting partition"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:48
|
||||
msgid "Creating disk partition"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:53
|
||||
msgid "Creating new partitions"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:83
|
||||
msgid "Installation in progress"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:95
|
||||
msgid ""
|
||||
"Thank you for choosing GhostBSD!\n"
|
||||
"\n"
|
||||
"We believe every computer operating system should be simple, elegant, secure "
|
||||
"and protect your privacy while being easy to use. GhostBSD is simplifying "
|
||||
"FreeBSD for those who lack the technical expertise required to use it and "
|
||||
"lower the entry-level of using BSD. \n"
|
||||
"\n"
|
||||
"We hope you'll enjoy our BSD operating system."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:14
|
||||
msgid "Back"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:16
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:18
|
||||
#: install_station/interface_controller.py:226
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:100
|
||||
#: install_station/interface_controller.py:101
|
||||
#: install_station/welcome_live.py:112
|
||||
msgid "Welcome to GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:110
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:136
|
||||
msgid "Installation Types"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:148
|
||||
msgid "Custom Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:158
|
||||
msgid "ZFS Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:170
|
||||
msgid "Install"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:180
|
||||
msgid "Installation Progress"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:187
|
||||
msgid "Progress Bar"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:201
|
||||
#: install_station/interface_controller.py:206
|
||||
#: install_station/network_setup.py:110
|
||||
msgid "Network Setup"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:20
|
||||
msgid "Select the language you want to use with GhostBSD."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:64 install_station/welcome_live.py:110
|
||||
#: install_station/welcome_live.py:127
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:79
|
||||
msgid "Welcome To GhostBSD!"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:69 install_station/network_setup.py:129
|
||||
msgid "Network card connected to the internet"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:75 install_station/network_setup.py:135
|
||||
msgid "Network card not connected to the internet"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:78 install_station/network_setup.py:138
|
||||
msgid "No network card detected"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:86 install_station/network_setup.py:146
|
||||
msgid "WiFi card detected and connected to an access point"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:90 install_station/network_setup.py:150
|
||||
msgid "WiFi card detected but not connected to an access point"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:93 install_station/network_setup.py:153
|
||||
msgid "WiFi card not detected or not supported"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:258
|
||||
msgid "Wi-Fi Network Authentication Required"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:270
|
||||
#, python-brace-format
|
||||
msgid "{ssid} Wi-Fi Network Authentication failed"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:272
|
||||
#, python-brace-format
|
||||
msgid "Authentication required by {ssid} Wi-Fi Network"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:275
|
||||
msgid "Password:"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:278
|
||||
msgid "Show password"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:164
|
||||
msgid ""
|
||||
"Please select 1 or more drive for stripe (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:171
|
||||
msgid "Please select 2 drive for mirroring (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:179
|
||||
msgid "Please select 3 drive for RAIDZ1 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:186
|
||||
msgid "Please select 4 drive for RAIDZ2 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:193
|
||||
msgid "Please select 5 drive for RAIDZ3 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:296
|
||||
msgid "Disk"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:303
|
||||
msgid "Size(MB)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:309
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:313
|
||||
msgid "Check"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:326
|
||||
msgid "Please select one drive"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:331
|
||||
msgid "<b>Pool Type</b>"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:335
|
||||
msgid "1+ disks Stripe"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:336
|
||||
msgid "2+ disks Mirror"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:337
|
||||
msgid "3 disks RAIDZ1"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:338
|
||||
msgid "4 disks RAIDZ2"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:339
|
||||
msgid "5 disks RAIDZ3"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:349
|
||||
msgid "<b>Pool Name</b>"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:369
|
||||
msgid "Encrypt Disk"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:373
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:380
|
||||
msgid "Verify it"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:541
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:552
|
||||
msgid "Smallest disk need to be SELECTED first!\n"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:553
|
||||
msgid "All the disk selected will reset."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:16
|
||||
msgid ""
|
||||
"To run GhostBSD without installing, select \"Try GhostBSD.\"\n"
|
||||
"\n"
|
||||
"To install GhostBSD on your computer hard disk drive, click \"Install "
|
||||
"GhostBSD.\"\n"
|
||||
"\n"
|
||||
"Note: Language selection only works when selecting \"Try GhostBSD.\"\n"
|
||||
" When installing GhostBSD, the installation program is only in English."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:95 install_station/welcome_live.py:242
|
||||
msgid "Install GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:98 install_station/welcome_live.py:246
|
||||
msgid "Try GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:101
|
||||
msgid ""
|
||||
"To run GhostBSD without installing, select \"Try GhostBSD.\"\n"
|
||||
" \n"
|
||||
"\n"
|
||||
"To install GhostBSD on your computer hard disk drive, click \"Install "
|
||||
"GhostBSD.\"\n"
|
||||
"\n"
|
||||
"Note: Language selection only works when selecting \"Try GhostBSD.\"\n"
|
||||
" When installing GhostBSD, the installation program is only in English."
|
||||
msgstr ""
|
||||
+365
@@ -0,0 +1,365 @@
|
||||
# Dutch translations for PACKAGE package.
|
||||
# Copyright (C) 2025 THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# Eric Turgeon <EMAIL@ADDRESS>, 2025.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-07-09 20:39-0300\n"
|
||||
"PO-Revision-Date: 2025-07-09 20:22-0300\n"
|
||||
"Last-Translator: Eric Turgeon <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Dutch <vertaling@vrijschrift.org>\n"
|
||||
"Language: nl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=ASCII\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: install_station/boot_manager.py:125
|
||||
#: install_station/interface_controller.py:168
|
||||
msgid "Boot Option"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:139
|
||||
msgid "Setup rEFInd boot manager"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:153
|
||||
msgid "Setup FreeBSD boot manager"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:168
|
||||
#, python-brace-format
|
||||
msgid "FreeBSD {loader} loader only"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:13
|
||||
msgid ""
|
||||
"Installation is complete. You need to restart the\n"
|
||||
"computer in order to use the new installation.\n"
|
||||
"You can continue to use this live media, although\n"
|
||||
"any changes you make or documents you save will\n"
|
||||
"not be preserved on reboot."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:34
|
||||
msgid "Installation Completed"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:50
|
||||
msgid "Restart"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:52
|
||||
msgid "Continue"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:21
|
||||
msgid "Installation Error"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:32
|
||||
msgid "Installation has failed!"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:37
|
||||
msgid "GhostBSD issue system"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:38
|
||||
#, python-brace-format
|
||||
msgid ""
|
||||
"Please report the issue to {anchor}, and \n"
|
||||
"be sure to provide /tmp/.pc-sysinstall/pc-sysinstall.log."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:47
|
||||
msgid "Ok"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:55
|
||||
msgid "How do you want to install GhostBSD?"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:60
|
||||
msgid ""
|
||||
"<b>Disks Configuration</b>\n"
|
||||
"Install GhostBSD using Stripe, Mirror, RAIDZ1, RAIDZ2, or RAIDZ3 "
|
||||
"configurations."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:70
|
||||
msgid ""
|
||||
"<b>Multi-Boot Configuration</b>\n"
|
||||
"Install GhostBSD with ZFS alongside other operating systems."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:39
|
||||
msgid "Creating ghostbsd_installation.cfg"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:43
|
||||
msgid "Deleting partition"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:48
|
||||
msgid "Creating disk partition"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:53
|
||||
msgid "Creating new partitions"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:83
|
||||
msgid "Installation in progress"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:95
|
||||
msgid ""
|
||||
"Thank you for choosing GhostBSD!\n"
|
||||
"\n"
|
||||
"We believe every computer operating system should be simple, elegant, secure "
|
||||
"and protect your privacy while being easy to use. GhostBSD is simplifying "
|
||||
"FreeBSD for those who lack the technical expertise required to use it and "
|
||||
"lower the entry-level of using BSD. \n"
|
||||
"\n"
|
||||
"We hope you'll enjoy our BSD operating system."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:14
|
||||
msgid "Back"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:16
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:18
|
||||
#: install_station/interface_controller.py:226
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:100
|
||||
#: install_station/interface_controller.py:101
|
||||
#: install_station/welcome_live.py:112
|
||||
msgid "Welcome to GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:110
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:136
|
||||
msgid "Installation Types"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:148
|
||||
msgid "Custom Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:158
|
||||
msgid "ZFS Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:170
|
||||
msgid "Install"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:180
|
||||
msgid "Installation Progress"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:187
|
||||
msgid "Progress Bar"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:201
|
||||
#: install_station/interface_controller.py:206
|
||||
#: install_station/network_setup.py:110
|
||||
msgid "Network Setup"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:20
|
||||
msgid "Select the language you want to use with GhostBSD."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:64 install_station/welcome_live.py:110
|
||||
#: install_station/welcome_live.py:127
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:79
|
||||
msgid "Welcome To GhostBSD!"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:69 install_station/network_setup.py:129
|
||||
msgid "Network card connected to the internet"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:75 install_station/network_setup.py:135
|
||||
msgid "Network card not connected to the internet"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:78 install_station/network_setup.py:138
|
||||
msgid "No network card detected"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:86 install_station/network_setup.py:146
|
||||
msgid "WiFi card detected and connected to an access point"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:90 install_station/network_setup.py:150
|
||||
msgid "WiFi card detected but not connected to an access point"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:93 install_station/network_setup.py:153
|
||||
msgid "WiFi card not detected or not supported"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:258
|
||||
msgid "Wi-Fi Network Authentication Required"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:270
|
||||
#, python-brace-format
|
||||
msgid "{ssid} Wi-Fi Network Authentication failed"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:272
|
||||
#, python-brace-format
|
||||
msgid "Authentication required by {ssid} Wi-Fi Network"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:275
|
||||
msgid "Password:"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:278
|
||||
msgid "Show password"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:164
|
||||
msgid ""
|
||||
"Please select 1 or more drive for stripe (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:171
|
||||
msgid "Please select 2 drive for mirroring (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:179
|
||||
msgid "Please select 3 drive for RAIDZ1 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:186
|
||||
msgid "Please select 4 drive for RAIDZ2 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:193
|
||||
msgid "Please select 5 drive for RAIDZ3 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:296
|
||||
msgid "Disk"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:303
|
||||
msgid "Size(MB)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:309
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:313
|
||||
msgid "Check"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:326
|
||||
msgid "Please select one drive"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:331
|
||||
msgid "<b>Pool Type</b>"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:335
|
||||
msgid "1+ disks Stripe"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:336
|
||||
msgid "2+ disks Mirror"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:337
|
||||
msgid "3 disks RAIDZ1"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:338
|
||||
msgid "4 disks RAIDZ2"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:339
|
||||
msgid "5 disks RAIDZ3"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:349
|
||||
msgid "<b>Pool Name</b>"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:369
|
||||
msgid "Encrypt Disk"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:373
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:380
|
||||
msgid "Verify it"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:541
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:552
|
||||
msgid "Smallest disk need to be SELECTED first!\n"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:553
|
||||
msgid "All the disk selected will reset."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:16
|
||||
msgid ""
|
||||
"To run GhostBSD without installing, select \"Try GhostBSD.\"\n"
|
||||
"\n"
|
||||
"To install GhostBSD on your computer hard disk drive, click \"Install "
|
||||
"GhostBSD.\"\n"
|
||||
"\n"
|
||||
"Note: Language selection only works when selecting \"Try GhostBSD.\"\n"
|
||||
" When installing GhostBSD, the installation program is only in English."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:95 install_station/welcome_live.py:242
|
||||
msgid "Install GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:98 install_station/welcome_live.py:246
|
||||
msgid "Try GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:101
|
||||
msgid ""
|
||||
"To run GhostBSD without installing, select \"Try GhostBSD.\"\n"
|
||||
" \n"
|
||||
"\n"
|
||||
"To install GhostBSD on your computer hard disk drive, click \"Install "
|
||||
"GhostBSD.\"\n"
|
||||
"\n"
|
||||
"Note: Language selection only works when selecting \"Try GhostBSD.\"\n"
|
||||
" When installing GhostBSD, the installation program is only in English."
|
||||
msgstr ""
|
||||
+365
@@ -0,0 +1,365 @@
|
||||
# Norwegian translations for PACKAGE package.
|
||||
# Copyright (C) 2025 THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# Eric Turgeon <EMAIL@ADDRESS>, 2025.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-07-09 20:39-0300\n"
|
||||
"PO-Revision-Date: 2025-07-09 20:24-0300\n"
|
||||
"Last-Translator: Eric Turgeon <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Norwegian\n"
|
||||
"Language: no\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=ASCII\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: install_station/boot_manager.py:125
|
||||
#: install_station/interface_controller.py:168
|
||||
msgid "Boot Option"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:139
|
||||
msgid "Setup rEFInd boot manager"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:153
|
||||
msgid "Setup FreeBSD boot manager"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:168
|
||||
#, python-brace-format
|
||||
msgid "FreeBSD {loader} loader only"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:13
|
||||
msgid ""
|
||||
"Installation is complete. You need to restart the\n"
|
||||
"computer in order to use the new installation.\n"
|
||||
"You can continue to use this live media, although\n"
|
||||
"any changes you make or documents you save will\n"
|
||||
"not be preserved on reboot."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:34
|
||||
msgid "Installation Completed"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:50
|
||||
msgid "Restart"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:52
|
||||
msgid "Continue"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:21
|
||||
msgid "Installation Error"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:32
|
||||
msgid "Installation has failed!"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:37
|
||||
msgid "GhostBSD issue system"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:38
|
||||
#, python-brace-format
|
||||
msgid ""
|
||||
"Please report the issue to {anchor}, and \n"
|
||||
"be sure to provide /tmp/.pc-sysinstall/pc-sysinstall.log."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:47
|
||||
msgid "Ok"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:55
|
||||
msgid "How do you want to install GhostBSD?"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:60
|
||||
msgid ""
|
||||
"<b>Disks Configuration</b>\n"
|
||||
"Install GhostBSD using Stripe, Mirror, RAIDZ1, RAIDZ2, or RAIDZ3 "
|
||||
"configurations."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:70
|
||||
msgid ""
|
||||
"<b>Multi-Boot Configuration</b>\n"
|
||||
"Install GhostBSD with ZFS alongside other operating systems."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:39
|
||||
msgid "Creating ghostbsd_installation.cfg"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:43
|
||||
msgid "Deleting partition"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:48
|
||||
msgid "Creating disk partition"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:53
|
||||
msgid "Creating new partitions"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:83
|
||||
msgid "Installation in progress"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:95
|
||||
msgid ""
|
||||
"Thank you for choosing GhostBSD!\n"
|
||||
"\n"
|
||||
"We believe every computer operating system should be simple, elegant, secure "
|
||||
"and protect your privacy while being easy to use. GhostBSD is simplifying "
|
||||
"FreeBSD for those who lack the technical expertise required to use it and "
|
||||
"lower the entry-level of using BSD. \n"
|
||||
"\n"
|
||||
"We hope you'll enjoy our BSD operating system."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:14
|
||||
msgid "Back"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:16
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:18
|
||||
#: install_station/interface_controller.py:226
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:100
|
||||
#: install_station/interface_controller.py:101
|
||||
#: install_station/welcome_live.py:112
|
||||
msgid "Welcome to GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:110
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:136
|
||||
msgid "Installation Types"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:148
|
||||
msgid "Custom Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:158
|
||||
msgid "ZFS Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:170
|
||||
msgid "Install"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:180
|
||||
msgid "Installation Progress"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:187
|
||||
msgid "Progress Bar"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:201
|
||||
#: install_station/interface_controller.py:206
|
||||
#: install_station/network_setup.py:110
|
||||
msgid "Network Setup"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:20
|
||||
msgid "Select the language you want to use with GhostBSD."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:64 install_station/welcome_live.py:110
|
||||
#: install_station/welcome_live.py:127
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:79
|
||||
msgid "Welcome To GhostBSD!"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:69 install_station/network_setup.py:129
|
||||
msgid "Network card connected to the internet"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:75 install_station/network_setup.py:135
|
||||
msgid "Network card not connected to the internet"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:78 install_station/network_setup.py:138
|
||||
msgid "No network card detected"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:86 install_station/network_setup.py:146
|
||||
msgid "WiFi card detected and connected to an access point"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:90 install_station/network_setup.py:150
|
||||
msgid "WiFi card detected but not connected to an access point"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:93 install_station/network_setup.py:153
|
||||
msgid "WiFi card not detected or not supported"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:258
|
||||
msgid "Wi-Fi Network Authentication Required"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:270
|
||||
#, python-brace-format
|
||||
msgid "{ssid} Wi-Fi Network Authentication failed"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:272
|
||||
#, python-brace-format
|
||||
msgid "Authentication required by {ssid} Wi-Fi Network"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:275
|
||||
msgid "Password:"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:278
|
||||
msgid "Show password"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:164
|
||||
msgid ""
|
||||
"Please select 1 or more drive for stripe (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:171
|
||||
msgid "Please select 2 drive for mirroring (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:179
|
||||
msgid "Please select 3 drive for RAIDZ1 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:186
|
||||
msgid "Please select 4 drive for RAIDZ2 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:193
|
||||
msgid "Please select 5 drive for RAIDZ3 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:296
|
||||
msgid "Disk"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:303
|
||||
msgid "Size(MB)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:309
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:313
|
||||
msgid "Check"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:326
|
||||
msgid "Please select one drive"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:331
|
||||
msgid "<b>Pool Type</b>"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:335
|
||||
msgid "1+ disks Stripe"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:336
|
||||
msgid "2+ disks Mirror"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:337
|
||||
msgid "3 disks RAIDZ1"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:338
|
||||
msgid "4 disks RAIDZ2"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:339
|
||||
msgid "5 disks RAIDZ3"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:349
|
||||
msgid "<b>Pool Name</b>"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:369
|
||||
msgid "Encrypt Disk"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:373
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:380
|
||||
msgid "Verify it"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:541
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:552
|
||||
msgid "Smallest disk need to be SELECTED first!\n"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:553
|
||||
msgid "All the disk selected will reset."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:16
|
||||
msgid ""
|
||||
"To run GhostBSD without installing, select \"Try GhostBSD.\"\n"
|
||||
"\n"
|
||||
"To install GhostBSD on your computer hard disk drive, click \"Install "
|
||||
"GhostBSD.\"\n"
|
||||
"\n"
|
||||
"Note: Language selection only works when selecting \"Try GhostBSD.\"\n"
|
||||
" When installing GhostBSD, the installation program is only in English."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:95 install_station/welcome_live.py:242
|
||||
msgid "Install GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:98 install_station/welcome_live.py:246
|
||||
msgid "Try GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:101
|
||||
msgid ""
|
||||
"To run GhostBSD without installing, select \"Try GhostBSD.\"\n"
|
||||
" \n"
|
||||
"\n"
|
||||
"To install GhostBSD on your computer hard disk drive, click \"Install "
|
||||
"GhostBSD.\"\n"
|
||||
"\n"
|
||||
"Note: Language selection only works when selecting \"Try GhostBSD.\"\n"
|
||||
" When installing GhostBSD, the installation program is only in English."
|
||||
msgstr ""
|
||||
+366
@@ -0,0 +1,366 @@
|
||||
# Polish translations for PACKAGE package.
|
||||
# Copyright (C) 2025 THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# Eric Turgeon <EMAIL@ADDRESS>, 2025.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-07-09 20:39-0300\n"
|
||||
"PO-Revision-Date: 2025-07-09 20:22-0300\n"
|
||||
"Last-Translator: Eric Turgeon <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Polish <translation-team-pl@lists.sourceforge.net>\n"
|
||||
"Language: pl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=ASCII\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
|
||||
"|| n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#: install_station/boot_manager.py:125
|
||||
#: install_station/interface_controller.py:168
|
||||
msgid "Boot Option"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:139
|
||||
msgid "Setup rEFInd boot manager"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:153
|
||||
msgid "Setup FreeBSD boot manager"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:168
|
||||
#, python-brace-format
|
||||
msgid "FreeBSD {loader} loader only"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:13
|
||||
msgid ""
|
||||
"Installation is complete. You need to restart the\n"
|
||||
"computer in order to use the new installation.\n"
|
||||
"You can continue to use this live media, although\n"
|
||||
"any changes you make or documents you save will\n"
|
||||
"not be preserved on reboot."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:34
|
||||
msgid "Installation Completed"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:50
|
||||
msgid "Restart"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:52
|
||||
msgid "Continue"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:21
|
||||
msgid "Installation Error"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:32
|
||||
msgid "Installation has failed!"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:37
|
||||
msgid "GhostBSD issue system"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:38
|
||||
#, python-brace-format
|
||||
msgid ""
|
||||
"Please report the issue to {anchor}, and \n"
|
||||
"be sure to provide /tmp/.pc-sysinstall/pc-sysinstall.log."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:47
|
||||
msgid "Ok"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:55
|
||||
msgid "How do you want to install GhostBSD?"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:60
|
||||
msgid ""
|
||||
"<b>Disks Configuration</b>\n"
|
||||
"Install GhostBSD using Stripe, Mirror, RAIDZ1, RAIDZ2, or RAIDZ3 "
|
||||
"configurations."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:70
|
||||
msgid ""
|
||||
"<b>Multi-Boot Configuration</b>\n"
|
||||
"Install GhostBSD with ZFS alongside other operating systems."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:39
|
||||
msgid "Creating ghostbsd_installation.cfg"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:43
|
||||
msgid "Deleting partition"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:48
|
||||
msgid "Creating disk partition"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:53
|
||||
msgid "Creating new partitions"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:83
|
||||
msgid "Installation in progress"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:95
|
||||
msgid ""
|
||||
"Thank you for choosing GhostBSD!\n"
|
||||
"\n"
|
||||
"We believe every computer operating system should be simple, elegant, secure "
|
||||
"and protect your privacy while being easy to use. GhostBSD is simplifying "
|
||||
"FreeBSD for those who lack the technical expertise required to use it and "
|
||||
"lower the entry-level of using BSD. \n"
|
||||
"\n"
|
||||
"We hope you'll enjoy our BSD operating system."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:14
|
||||
msgid "Back"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:16
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:18
|
||||
#: install_station/interface_controller.py:226
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:100
|
||||
#: install_station/interface_controller.py:101
|
||||
#: install_station/welcome_live.py:112
|
||||
msgid "Welcome to GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:110
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:136
|
||||
msgid "Installation Types"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:148
|
||||
msgid "Custom Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:158
|
||||
msgid "ZFS Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:170
|
||||
msgid "Install"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:180
|
||||
msgid "Installation Progress"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:187
|
||||
msgid "Progress Bar"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:201
|
||||
#: install_station/interface_controller.py:206
|
||||
#: install_station/network_setup.py:110
|
||||
msgid "Network Setup"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:20
|
||||
msgid "Select the language you want to use with GhostBSD."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:64 install_station/welcome_live.py:110
|
||||
#: install_station/welcome_live.py:127
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:79
|
||||
msgid "Welcome To GhostBSD!"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:69 install_station/network_setup.py:129
|
||||
msgid "Network card connected to the internet"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:75 install_station/network_setup.py:135
|
||||
msgid "Network card not connected to the internet"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:78 install_station/network_setup.py:138
|
||||
msgid "No network card detected"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:86 install_station/network_setup.py:146
|
||||
msgid "WiFi card detected and connected to an access point"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:90 install_station/network_setup.py:150
|
||||
msgid "WiFi card detected but not connected to an access point"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:93 install_station/network_setup.py:153
|
||||
msgid "WiFi card not detected or not supported"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:258
|
||||
msgid "Wi-Fi Network Authentication Required"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:270
|
||||
#, python-brace-format
|
||||
msgid "{ssid} Wi-Fi Network Authentication failed"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:272
|
||||
#, python-brace-format
|
||||
msgid "Authentication required by {ssid} Wi-Fi Network"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:275
|
||||
msgid "Password:"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:278
|
||||
msgid "Show password"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:164
|
||||
msgid ""
|
||||
"Please select 1 or more drive for stripe (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:171
|
||||
msgid "Please select 2 drive for mirroring (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:179
|
||||
msgid "Please select 3 drive for RAIDZ1 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:186
|
||||
msgid "Please select 4 drive for RAIDZ2 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:193
|
||||
msgid "Please select 5 drive for RAIDZ3 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:296
|
||||
msgid "Disk"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:303
|
||||
msgid "Size(MB)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:309
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:313
|
||||
msgid "Check"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:326
|
||||
msgid "Please select one drive"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:331
|
||||
msgid "<b>Pool Type</b>"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:335
|
||||
msgid "1+ disks Stripe"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:336
|
||||
msgid "2+ disks Mirror"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:337
|
||||
msgid "3 disks RAIDZ1"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:338
|
||||
msgid "4 disks RAIDZ2"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:339
|
||||
msgid "5 disks RAIDZ3"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:349
|
||||
msgid "<b>Pool Name</b>"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:369
|
||||
msgid "Encrypt Disk"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:373
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:380
|
||||
msgid "Verify it"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:541
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:552
|
||||
msgid "Smallest disk need to be SELECTED first!\n"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:553
|
||||
msgid "All the disk selected will reset."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:16
|
||||
msgid ""
|
||||
"To run GhostBSD without installing, select \"Try GhostBSD.\"\n"
|
||||
"\n"
|
||||
"To install GhostBSD on your computer hard disk drive, click \"Install "
|
||||
"GhostBSD.\"\n"
|
||||
"\n"
|
||||
"Note: Language selection only works when selecting \"Try GhostBSD.\"\n"
|
||||
" When installing GhostBSD, the installation program is only in English."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:95 install_station/welcome_live.py:242
|
||||
msgid "Install GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:98 install_station/welcome_live.py:246
|
||||
msgid "Try GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:101
|
||||
msgid ""
|
||||
"To run GhostBSD without installing, select \"Try GhostBSD.\"\n"
|
||||
" \n"
|
||||
"\n"
|
||||
"To install GhostBSD on your computer hard disk drive, click \"Install "
|
||||
"GhostBSD.\"\n"
|
||||
"\n"
|
||||
"Note: Language selection only works when selecting \"Try GhostBSD.\"\n"
|
||||
" When installing GhostBSD, the installation program is only in English."
|
||||
msgstr ""
|
||||
+366
@@ -0,0 +1,366 @@
|
||||
# Portuguese translations for PACKAGE package.
|
||||
# Copyright (C) 2025 THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# Eric Turgeon <EMAIL@ADDRESS>, 2025.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-07-09 20:39-0300\n"
|
||||
"PO-Revision-Date: 2025-07-09 20:19-0300\n"
|
||||
"Last-Translator: Eric Turgeon <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Brazilian Portuguese <ldpbr-"
|
||||
"translation@lists.sourceforge.net>\n"
|
||||
"Language: pt_BR\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=ASCII\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#: install_station/boot_manager.py:125
|
||||
#: install_station/interface_controller.py:168
|
||||
msgid "Boot Option"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:139
|
||||
msgid "Setup rEFInd boot manager"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:153
|
||||
msgid "Setup FreeBSD boot manager"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:168
|
||||
#, python-brace-format
|
||||
msgid "FreeBSD {loader} loader only"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:13
|
||||
msgid ""
|
||||
"Installation is complete. You need to restart the\n"
|
||||
"computer in order to use the new installation.\n"
|
||||
"You can continue to use this live media, although\n"
|
||||
"any changes you make or documents you save will\n"
|
||||
"not be preserved on reboot."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:34
|
||||
msgid "Installation Completed"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:50
|
||||
msgid "Restart"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:52
|
||||
msgid "Continue"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:21
|
||||
msgid "Installation Error"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:32
|
||||
msgid "Installation has failed!"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:37
|
||||
msgid "GhostBSD issue system"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:38
|
||||
#, python-brace-format
|
||||
msgid ""
|
||||
"Please report the issue to {anchor}, and \n"
|
||||
"be sure to provide /tmp/.pc-sysinstall/pc-sysinstall.log."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:47
|
||||
msgid "Ok"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:55
|
||||
msgid "How do you want to install GhostBSD?"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:60
|
||||
msgid ""
|
||||
"<b>Disks Configuration</b>\n"
|
||||
"Install GhostBSD using Stripe, Mirror, RAIDZ1, RAIDZ2, or RAIDZ3 "
|
||||
"configurations."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:70
|
||||
msgid ""
|
||||
"<b>Multi-Boot Configuration</b>\n"
|
||||
"Install GhostBSD with ZFS alongside other operating systems."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:39
|
||||
msgid "Creating ghostbsd_installation.cfg"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:43
|
||||
msgid "Deleting partition"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:48
|
||||
msgid "Creating disk partition"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:53
|
||||
msgid "Creating new partitions"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:83
|
||||
msgid "Installation in progress"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:95
|
||||
msgid ""
|
||||
"Thank you for choosing GhostBSD!\n"
|
||||
"\n"
|
||||
"We believe every computer operating system should be simple, elegant, secure "
|
||||
"and protect your privacy while being easy to use. GhostBSD is simplifying "
|
||||
"FreeBSD for those who lack the technical expertise required to use it and "
|
||||
"lower the entry-level of using BSD. \n"
|
||||
"\n"
|
||||
"We hope you'll enjoy our BSD operating system."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:14
|
||||
msgid "Back"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:16
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:18
|
||||
#: install_station/interface_controller.py:226
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:100
|
||||
#: install_station/interface_controller.py:101
|
||||
#: install_station/welcome_live.py:112
|
||||
msgid "Welcome to GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:110
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:136
|
||||
msgid "Installation Types"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:148
|
||||
msgid "Custom Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:158
|
||||
msgid "ZFS Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:170
|
||||
msgid "Install"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:180
|
||||
msgid "Installation Progress"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:187
|
||||
msgid "Progress Bar"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:201
|
||||
#: install_station/interface_controller.py:206
|
||||
#: install_station/network_setup.py:110
|
||||
msgid "Network Setup"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:20
|
||||
msgid "Select the language you want to use with GhostBSD."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:64 install_station/welcome_live.py:110
|
||||
#: install_station/welcome_live.py:127
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:79
|
||||
msgid "Welcome To GhostBSD!"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:69 install_station/network_setup.py:129
|
||||
msgid "Network card connected to the internet"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:75 install_station/network_setup.py:135
|
||||
msgid "Network card not connected to the internet"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:78 install_station/network_setup.py:138
|
||||
msgid "No network card detected"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:86 install_station/network_setup.py:146
|
||||
msgid "WiFi card detected and connected to an access point"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:90 install_station/network_setup.py:150
|
||||
msgid "WiFi card detected but not connected to an access point"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:93 install_station/network_setup.py:153
|
||||
msgid "WiFi card not detected or not supported"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:258
|
||||
msgid "Wi-Fi Network Authentication Required"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:270
|
||||
#, python-brace-format
|
||||
msgid "{ssid} Wi-Fi Network Authentication failed"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:272
|
||||
#, python-brace-format
|
||||
msgid "Authentication required by {ssid} Wi-Fi Network"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:275
|
||||
msgid "Password:"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:278
|
||||
msgid "Show password"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:164
|
||||
msgid ""
|
||||
"Please select 1 or more drive for stripe (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:171
|
||||
msgid "Please select 2 drive for mirroring (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:179
|
||||
msgid "Please select 3 drive for RAIDZ1 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:186
|
||||
msgid "Please select 4 drive for RAIDZ2 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:193
|
||||
msgid "Please select 5 drive for RAIDZ3 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:296
|
||||
msgid "Disk"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:303
|
||||
msgid "Size(MB)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:309
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:313
|
||||
msgid "Check"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:326
|
||||
msgid "Please select one drive"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:331
|
||||
msgid "<b>Pool Type</b>"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:335
|
||||
msgid "1+ disks Stripe"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:336
|
||||
msgid "2+ disks Mirror"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:337
|
||||
msgid "3 disks RAIDZ1"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:338
|
||||
msgid "4 disks RAIDZ2"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:339
|
||||
msgid "5 disks RAIDZ3"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:349
|
||||
msgid "<b>Pool Name</b>"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:369
|
||||
msgid "Encrypt Disk"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:373
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:380
|
||||
msgid "Verify it"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:541
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:552
|
||||
msgid "Smallest disk need to be SELECTED first!\n"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:553
|
||||
msgid "All the disk selected will reset."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:16
|
||||
msgid ""
|
||||
"To run GhostBSD without installing, select \"Try GhostBSD.\"\n"
|
||||
"\n"
|
||||
"To install GhostBSD on your computer hard disk drive, click \"Install "
|
||||
"GhostBSD.\"\n"
|
||||
"\n"
|
||||
"Note: Language selection only works when selecting \"Try GhostBSD.\"\n"
|
||||
" When installing GhostBSD, the installation program is only in English."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:95 install_station/welcome_live.py:242
|
||||
msgid "Install GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:98 install_station/welcome_live.py:246
|
||||
msgid "Try GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:101
|
||||
msgid ""
|
||||
"To run GhostBSD without installing, select \"Try GhostBSD.\"\n"
|
||||
" \n"
|
||||
"\n"
|
||||
"To install GhostBSD on your computer hard disk drive, click \"Install "
|
||||
"GhostBSD.\"\n"
|
||||
"\n"
|
||||
"Note: Language selection only works when selecting \"Try GhostBSD.\"\n"
|
||||
" When installing GhostBSD, the installation program is only in English."
|
||||
msgstr ""
|
||||
+365
@@ -0,0 +1,365 @@
|
||||
# Portuguese translations for PACKAGE package.
|
||||
# Copyright (C) 2025 THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# Eric Turgeon <EMAIL@ADDRESS>, 2025.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-07-09 20:39-0300\n"
|
||||
"PO-Revision-Date: 2025-07-09 20:27-0300\n"
|
||||
"Last-Translator: Eric Turgeon <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Portuguese <translation-team-pt@lists.sourceforge.net>\n"
|
||||
"Language: pt\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=ASCII\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: install_station/boot_manager.py:125
|
||||
#: install_station/interface_controller.py:168
|
||||
msgid "Boot Option"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:139
|
||||
msgid "Setup rEFInd boot manager"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:153
|
||||
msgid "Setup FreeBSD boot manager"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:168
|
||||
#, python-brace-format
|
||||
msgid "FreeBSD {loader} loader only"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:13
|
||||
msgid ""
|
||||
"Installation is complete. You need to restart the\n"
|
||||
"computer in order to use the new installation.\n"
|
||||
"You can continue to use this live media, although\n"
|
||||
"any changes you make or documents you save will\n"
|
||||
"not be preserved on reboot."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:34
|
||||
msgid "Installation Completed"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:50
|
||||
msgid "Restart"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:52
|
||||
msgid "Continue"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:21
|
||||
msgid "Installation Error"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:32
|
||||
msgid "Installation has failed!"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:37
|
||||
msgid "GhostBSD issue system"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:38
|
||||
#, python-brace-format
|
||||
msgid ""
|
||||
"Please report the issue to {anchor}, and \n"
|
||||
"be sure to provide /tmp/.pc-sysinstall/pc-sysinstall.log."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:47
|
||||
msgid "Ok"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:55
|
||||
msgid "How do you want to install GhostBSD?"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:60
|
||||
msgid ""
|
||||
"<b>Disks Configuration</b>\n"
|
||||
"Install GhostBSD using Stripe, Mirror, RAIDZ1, RAIDZ2, or RAIDZ3 "
|
||||
"configurations."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:70
|
||||
msgid ""
|
||||
"<b>Multi-Boot Configuration</b>\n"
|
||||
"Install GhostBSD with ZFS alongside other operating systems."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:39
|
||||
msgid "Creating ghostbsd_installation.cfg"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:43
|
||||
msgid "Deleting partition"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:48
|
||||
msgid "Creating disk partition"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:53
|
||||
msgid "Creating new partitions"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:83
|
||||
msgid "Installation in progress"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:95
|
||||
msgid ""
|
||||
"Thank you for choosing GhostBSD!\n"
|
||||
"\n"
|
||||
"We believe every computer operating system should be simple, elegant, secure "
|
||||
"and protect your privacy while being easy to use. GhostBSD is simplifying "
|
||||
"FreeBSD for those who lack the technical expertise required to use it and "
|
||||
"lower the entry-level of using BSD. \n"
|
||||
"\n"
|
||||
"We hope you'll enjoy our BSD operating system."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:14
|
||||
msgid "Back"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:16
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:18
|
||||
#: install_station/interface_controller.py:226
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:100
|
||||
#: install_station/interface_controller.py:101
|
||||
#: install_station/welcome_live.py:112
|
||||
msgid "Welcome to GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:110
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:136
|
||||
msgid "Installation Types"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:148
|
||||
msgid "Custom Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:158
|
||||
msgid "ZFS Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:170
|
||||
msgid "Install"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:180
|
||||
msgid "Installation Progress"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:187
|
||||
msgid "Progress Bar"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:201
|
||||
#: install_station/interface_controller.py:206
|
||||
#: install_station/network_setup.py:110
|
||||
msgid "Network Setup"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:20
|
||||
msgid "Select the language you want to use with GhostBSD."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:64 install_station/welcome_live.py:110
|
||||
#: install_station/welcome_live.py:127
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:79
|
||||
msgid "Welcome To GhostBSD!"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:69 install_station/network_setup.py:129
|
||||
msgid "Network card connected to the internet"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:75 install_station/network_setup.py:135
|
||||
msgid "Network card not connected to the internet"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:78 install_station/network_setup.py:138
|
||||
msgid "No network card detected"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:86 install_station/network_setup.py:146
|
||||
msgid "WiFi card detected and connected to an access point"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:90 install_station/network_setup.py:150
|
||||
msgid "WiFi card detected but not connected to an access point"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:93 install_station/network_setup.py:153
|
||||
msgid "WiFi card not detected or not supported"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:258
|
||||
msgid "Wi-Fi Network Authentication Required"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:270
|
||||
#, python-brace-format
|
||||
msgid "{ssid} Wi-Fi Network Authentication failed"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:272
|
||||
#, python-brace-format
|
||||
msgid "Authentication required by {ssid} Wi-Fi Network"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:275
|
||||
msgid "Password:"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:278
|
||||
msgid "Show password"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:164
|
||||
msgid ""
|
||||
"Please select 1 or more drive for stripe (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:171
|
||||
msgid "Please select 2 drive for mirroring (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:179
|
||||
msgid "Please select 3 drive for RAIDZ1 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:186
|
||||
msgid "Please select 4 drive for RAIDZ2 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:193
|
||||
msgid "Please select 5 drive for RAIDZ3 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:296
|
||||
msgid "Disk"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:303
|
||||
msgid "Size(MB)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:309
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:313
|
||||
msgid "Check"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:326
|
||||
msgid "Please select one drive"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:331
|
||||
msgid "<b>Pool Type</b>"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:335
|
||||
msgid "1+ disks Stripe"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:336
|
||||
msgid "2+ disks Mirror"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:337
|
||||
msgid "3 disks RAIDZ1"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:338
|
||||
msgid "4 disks RAIDZ2"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:339
|
||||
msgid "5 disks RAIDZ3"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:349
|
||||
msgid "<b>Pool Name</b>"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:369
|
||||
msgid "Encrypt Disk"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:373
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:380
|
||||
msgid "Verify it"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:541
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:552
|
||||
msgid "Smallest disk need to be SELECTED first!\n"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:553
|
||||
msgid "All the disk selected will reset."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:16
|
||||
msgid ""
|
||||
"To run GhostBSD without installing, select \"Try GhostBSD.\"\n"
|
||||
"\n"
|
||||
"To install GhostBSD on your computer hard disk drive, click \"Install "
|
||||
"GhostBSD.\"\n"
|
||||
"\n"
|
||||
"Note: Language selection only works when selecting \"Try GhostBSD.\"\n"
|
||||
" When installing GhostBSD, the installation program is only in English."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:95 install_station/welcome_live.py:242
|
||||
msgid "Install GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:98 install_station/welcome_live.py:246
|
||||
msgid "Try GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:101
|
||||
msgid ""
|
||||
"To run GhostBSD without installing, select \"Try GhostBSD.\"\n"
|
||||
" \n"
|
||||
"\n"
|
||||
"To install GhostBSD on your computer hard disk drive, click \"Install "
|
||||
"GhostBSD.\"\n"
|
||||
"\n"
|
||||
"Note: Language selection only works when selecting \"Try GhostBSD.\"\n"
|
||||
" When installing GhostBSD, the installation program is only in English."
|
||||
msgstr ""
|
||||
+366
@@ -0,0 +1,366 @@
|
||||
# Romanian translations for PACKAGE package.
|
||||
# Copyright (C) 2025 THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# Eric Turgeon <EMAIL@ADDRESS>, 2025.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-07-09 20:39-0300\n"
|
||||
"PO-Revision-Date: 2025-07-09 20:26-0300\n"
|
||||
"Last-Translator: Eric Turgeon <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Romanian <translation-team-ro@lists.sourceforge.net>\n"
|
||||
"Language: ro\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=ASCII\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < "
|
||||
"20)) ? 1 : 2;\n"
|
||||
|
||||
#: install_station/boot_manager.py:125
|
||||
#: install_station/interface_controller.py:168
|
||||
msgid "Boot Option"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:139
|
||||
msgid "Setup rEFInd boot manager"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:153
|
||||
msgid "Setup FreeBSD boot manager"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:168
|
||||
#, python-brace-format
|
||||
msgid "FreeBSD {loader} loader only"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:13
|
||||
msgid ""
|
||||
"Installation is complete. You need to restart the\n"
|
||||
"computer in order to use the new installation.\n"
|
||||
"You can continue to use this live media, although\n"
|
||||
"any changes you make or documents you save will\n"
|
||||
"not be preserved on reboot."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:34
|
||||
msgid "Installation Completed"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:50
|
||||
msgid "Restart"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:52
|
||||
msgid "Continue"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:21
|
||||
msgid "Installation Error"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:32
|
||||
msgid "Installation has failed!"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:37
|
||||
msgid "GhostBSD issue system"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:38
|
||||
#, python-brace-format
|
||||
msgid ""
|
||||
"Please report the issue to {anchor}, and \n"
|
||||
"be sure to provide /tmp/.pc-sysinstall/pc-sysinstall.log."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:47
|
||||
msgid "Ok"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:55
|
||||
msgid "How do you want to install GhostBSD?"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:60
|
||||
msgid ""
|
||||
"<b>Disks Configuration</b>\n"
|
||||
"Install GhostBSD using Stripe, Mirror, RAIDZ1, RAIDZ2, or RAIDZ3 "
|
||||
"configurations."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:70
|
||||
msgid ""
|
||||
"<b>Multi-Boot Configuration</b>\n"
|
||||
"Install GhostBSD with ZFS alongside other operating systems."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:39
|
||||
msgid "Creating ghostbsd_installation.cfg"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:43
|
||||
msgid "Deleting partition"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:48
|
||||
msgid "Creating disk partition"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:53
|
||||
msgid "Creating new partitions"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:83
|
||||
msgid "Installation in progress"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:95
|
||||
msgid ""
|
||||
"Thank you for choosing GhostBSD!\n"
|
||||
"\n"
|
||||
"We believe every computer operating system should be simple, elegant, secure "
|
||||
"and protect your privacy while being easy to use. GhostBSD is simplifying "
|
||||
"FreeBSD for those who lack the technical expertise required to use it and "
|
||||
"lower the entry-level of using BSD. \n"
|
||||
"\n"
|
||||
"We hope you'll enjoy our BSD operating system."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:14
|
||||
msgid "Back"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:16
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:18
|
||||
#: install_station/interface_controller.py:226
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:100
|
||||
#: install_station/interface_controller.py:101
|
||||
#: install_station/welcome_live.py:112
|
||||
msgid "Welcome to GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:110
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:136
|
||||
msgid "Installation Types"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:148
|
||||
msgid "Custom Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:158
|
||||
msgid "ZFS Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:170
|
||||
msgid "Install"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:180
|
||||
msgid "Installation Progress"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:187
|
||||
msgid "Progress Bar"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:201
|
||||
#: install_station/interface_controller.py:206
|
||||
#: install_station/network_setup.py:110
|
||||
msgid "Network Setup"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:20
|
||||
msgid "Select the language you want to use with GhostBSD."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:64 install_station/welcome_live.py:110
|
||||
#: install_station/welcome_live.py:127
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:79
|
||||
msgid "Welcome To GhostBSD!"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:69 install_station/network_setup.py:129
|
||||
msgid "Network card connected to the internet"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:75 install_station/network_setup.py:135
|
||||
msgid "Network card not connected to the internet"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:78 install_station/network_setup.py:138
|
||||
msgid "No network card detected"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:86 install_station/network_setup.py:146
|
||||
msgid "WiFi card detected and connected to an access point"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:90 install_station/network_setup.py:150
|
||||
msgid "WiFi card detected but not connected to an access point"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:93 install_station/network_setup.py:153
|
||||
msgid "WiFi card not detected or not supported"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:258
|
||||
msgid "Wi-Fi Network Authentication Required"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:270
|
||||
#, python-brace-format
|
||||
msgid "{ssid} Wi-Fi Network Authentication failed"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:272
|
||||
#, python-brace-format
|
||||
msgid "Authentication required by {ssid} Wi-Fi Network"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:275
|
||||
msgid "Password:"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:278
|
||||
msgid "Show password"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:164
|
||||
msgid ""
|
||||
"Please select 1 or more drive for stripe (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:171
|
||||
msgid "Please select 2 drive for mirroring (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:179
|
||||
msgid "Please select 3 drive for RAIDZ1 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:186
|
||||
msgid "Please select 4 drive for RAIDZ2 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:193
|
||||
msgid "Please select 5 drive for RAIDZ3 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:296
|
||||
msgid "Disk"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:303
|
||||
msgid "Size(MB)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:309
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:313
|
||||
msgid "Check"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:326
|
||||
msgid "Please select one drive"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:331
|
||||
msgid "<b>Pool Type</b>"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:335
|
||||
msgid "1+ disks Stripe"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:336
|
||||
msgid "2+ disks Mirror"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:337
|
||||
msgid "3 disks RAIDZ1"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:338
|
||||
msgid "4 disks RAIDZ2"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:339
|
||||
msgid "5 disks RAIDZ3"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:349
|
||||
msgid "<b>Pool Name</b>"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:369
|
||||
msgid "Encrypt Disk"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:373
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:380
|
||||
msgid "Verify it"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:541
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:552
|
||||
msgid "Smallest disk need to be SELECTED first!\n"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:553
|
||||
msgid "All the disk selected will reset."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:16
|
||||
msgid ""
|
||||
"To run GhostBSD without installing, select \"Try GhostBSD.\"\n"
|
||||
"\n"
|
||||
"To install GhostBSD on your computer hard disk drive, click \"Install "
|
||||
"GhostBSD.\"\n"
|
||||
"\n"
|
||||
"Note: Language selection only works when selecting \"Try GhostBSD.\"\n"
|
||||
" When installing GhostBSD, the installation program is only in English."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:95 install_station/welcome_live.py:242
|
||||
msgid "Install GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:98 install_station/welcome_live.py:246
|
||||
msgid "Try GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:101
|
||||
msgid ""
|
||||
"To run GhostBSD without installing, select \"Try GhostBSD.\"\n"
|
||||
" \n"
|
||||
"\n"
|
||||
"To install GhostBSD on your computer hard disk drive, click \"Install "
|
||||
"GhostBSD.\"\n"
|
||||
"\n"
|
||||
"Note: Language selection only works when selecting \"Try GhostBSD.\"\n"
|
||||
" When installing GhostBSD, the installation program is only in English."
|
||||
msgstr ""
|
||||
+366
@@ -0,0 +1,366 @@
|
||||
# Russian translations for PACKAGE package.
|
||||
# Copyright (C) 2025 THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# Eric Turgeon <EMAIL@ADDRESS>, 2025.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-07-09 20:39-0300\n"
|
||||
"PO-Revision-Date: 2025-07-09 20:20-0300\n"
|
||||
"Last-Translator: Eric Turgeon <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Russian <gnu@d07.ru>\n"
|
||||
"Language: ru\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=ASCII\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
|
||||
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#: install_station/boot_manager.py:125
|
||||
#: install_station/interface_controller.py:168
|
||||
msgid "Boot Option"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:139
|
||||
msgid "Setup rEFInd boot manager"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:153
|
||||
msgid "Setup FreeBSD boot manager"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:168
|
||||
#, python-brace-format
|
||||
msgid "FreeBSD {loader} loader only"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:13
|
||||
msgid ""
|
||||
"Installation is complete. You need to restart the\n"
|
||||
"computer in order to use the new installation.\n"
|
||||
"You can continue to use this live media, although\n"
|
||||
"any changes you make or documents you save will\n"
|
||||
"not be preserved on reboot."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:34
|
||||
msgid "Installation Completed"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:50
|
||||
msgid "Restart"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:52
|
||||
msgid "Continue"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:21
|
||||
msgid "Installation Error"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:32
|
||||
msgid "Installation has failed!"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:37
|
||||
msgid "GhostBSD issue system"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:38
|
||||
#, python-brace-format
|
||||
msgid ""
|
||||
"Please report the issue to {anchor}, and \n"
|
||||
"be sure to provide /tmp/.pc-sysinstall/pc-sysinstall.log."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:47
|
||||
msgid "Ok"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:55
|
||||
msgid "How do you want to install GhostBSD?"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:60
|
||||
msgid ""
|
||||
"<b>Disks Configuration</b>\n"
|
||||
"Install GhostBSD using Stripe, Mirror, RAIDZ1, RAIDZ2, or RAIDZ3 "
|
||||
"configurations."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:70
|
||||
msgid ""
|
||||
"<b>Multi-Boot Configuration</b>\n"
|
||||
"Install GhostBSD with ZFS alongside other operating systems."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:39
|
||||
msgid "Creating ghostbsd_installation.cfg"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:43
|
||||
msgid "Deleting partition"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:48
|
||||
msgid "Creating disk partition"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:53
|
||||
msgid "Creating new partitions"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:83
|
||||
msgid "Installation in progress"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:95
|
||||
msgid ""
|
||||
"Thank you for choosing GhostBSD!\n"
|
||||
"\n"
|
||||
"We believe every computer operating system should be simple, elegant, secure "
|
||||
"and protect your privacy while being easy to use. GhostBSD is simplifying "
|
||||
"FreeBSD for those who lack the technical expertise required to use it and "
|
||||
"lower the entry-level of using BSD. \n"
|
||||
"\n"
|
||||
"We hope you'll enjoy our BSD operating system."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:14
|
||||
msgid "Back"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:16
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:18
|
||||
#: install_station/interface_controller.py:226
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:100
|
||||
#: install_station/interface_controller.py:101
|
||||
#: install_station/welcome_live.py:112
|
||||
msgid "Welcome to GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:110
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:136
|
||||
msgid "Installation Types"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:148
|
||||
msgid "Custom Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:158
|
||||
msgid "ZFS Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:170
|
||||
msgid "Install"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:180
|
||||
msgid "Installation Progress"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:187
|
||||
msgid "Progress Bar"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:201
|
||||
#: install_station/interface_controller.py:206
|
||||
#: install_station/network_setup.py:110
|
||||
msgid "Network Setup"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:20
|
||||
msgid "Select the language you want to use with GhostBSD."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:64 install_station/welcome_live.py:110
|
||||
#: install_station/welcome_live.py:127
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:79
|
||||
msgid "Welcome To GhostBSD!"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:69 install_station/network_setup.py:129
|
||||
msgid "Network card connected to the internet"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:75 install_station/network_setup.py:135
|
||||
msgid "Network card not connected to the internet"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:78 install_station/network_setup.py:138
|
||||
msgid "No network card detected"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:86 install_station/network_setup.py:146
|
||||
msgid "WiFi card detected and connected to an access point"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:90 install_station/network_setup.py:150
|
||||
msgid "WiFi card detected but not connected to an access point"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:93 install_station/network_setup.py:153
|
||||
msgid "WiFi card not detected or not supported"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:258
|
||||
msgid "Wi-Fi Network Authentication Required"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:270
|
||||
#, python-brace-format
|
||||
msgid "{ssid} Wi-Fi Network Authentication failed"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:272
|
||||
#, python-brace-format
|
||||
msgid "Authentication required by {ssid} Wi-Fi Network"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:275
|
||||
msgid "Password:"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:278
|
||||
msgid "Show password"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:164
|
||||
msgid ""
|
||||
"Please select 1 or more drive for stripe (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:171
|
||||
msgid "Please select 2 drive for mirroring (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:179
|
||||
msgid "Please select 3 drive for RAIDZ1 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:186
|
||||
msgid "Please select 4 drive for RAIDZ2 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:193
|
||||
msgid "Please select 5 drive for RAIDZ3 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:296
|
||||
msgid "Disk"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:303
|
||||
msgid "Size(MB)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:309
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:313
|
||||
msgid "Check"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:326
|
||||
msgid "Please select one drive"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:331
|
||||
msgid "<b>Pool Type</b>"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:335
|
||||
msgid "1+ disks Stripe"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:336
|
||||
msgid "2+ disks Mirror"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:337
|
||||
msgid "3 disks RAIDZ1"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:338
|
||||
msgid "4 disks RAIDZ2"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:339
|
||||
msgid "5 disks RAIDZ3"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:349
|
||||
msgid "<b>Pool Name</b>"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:369
|
||||
msgid "Encrypt Disk"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:373
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:380
|
||||
msgid "Verify it"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:541
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:552
|
||||
msgid "Smallest disk need to be SELECTED first!\n"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:553
|
||||
msgid "All the disk selected will reset."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:16
|
||||
msgid ""
|
||||
"To run GhostBSD without installing, select \"Try GhostBSD.\"\n"
|
||||
"\n"
|
||||
"To install GhostBSD on your computer hard disk drive, click \"Install "
|
||||
"GhostBSD.\"\n"
|
||||
"\n"
|
||||
"Note: Language selection only works when selecting \"Try GhostBSD.\"\n"
|
||||
" When installing GhostBSD, the installation program is only in English."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:95 install_station/welcome_live.py:242
|
||||
msgid "Install GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:98 install_station/welcome_live.py:246
|
||||
msgid "Try GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:101
|
||||
msgid ""
|
||||
"To run GhostBSD without installing, select \"Try GhostBSD.\"\n"
|
||||
" \n"
|
||||
"\n"
|
||||
"To install GhostBSD on your computer hard disk drive, click \"Install "
|
||||
"GhostBSD.\"\n"
|
||||
"\n"
|
||||
"Note: Language selection only works when selecting \"Try GhostBSD.\"\n"
|
||||
" When installing GhostBSD, the installation program is only in English."
|
||||
msgstr ""
|
||||
+365
@@ -0,0 +1,365 @@
|
||||
# Slovak translations for PACKAGE package.
|
||||
# Copyright (C) 2025 THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# Eric Turgeon <EMAIL@ADDRESS>, 2025.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-07-09 20:39-0300\n"
|
||||
"PO-Revision-Date: 2025-07-09 20:24-0300\n"
|
||||
"Last-Translator: Eric Turgeon <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Slovak <sk-i18n@lists.linux.sk>\n"
|
||||
"Language: sk\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=ASCII\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
||||
|
||||
#: install_station/boot_manager.py:125
|
||||
#: install_station/interface_controller.py:168
|
||||
msgid "Boot Option"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:139
|
||||
msgid "Setup rEFInd boot manager"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:153
|
||||
msgid "Setup FreeBSD boot manager"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:168
|
||||
#, python-brace-format
|
||||
msgid "FreeBSD {loader} loader only"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:13
|
||||
msgid ""
|
||||
"Installation is complete. You need to restart the\n"
|
||||
"computer in order to use the new installation.\n"
|
||||
"You can continue to use this live media, although\n"
|
||||
"any changes you make or documents you save will\n"
|
||||
"not be preserved on reboot."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:34
|
||||
msgid "Installation Completed"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:50
|
||||
msgid "Restart"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:52
|
||||
msgid "Continue"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:21
|
||||
msgid "Installation Error"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:32
|
||||
msgid "Installation has failed!"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:37
|
||||
msgid "GhostBSD issue system"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:38
|
||||
#, python-brace-format
|
||||
msgid ""
|
||||
"Please report the issue to {anchor}, and \n"
|
||||
"be sure to provide /tmp/.pc-sysinstall/pc-sysinstall.log."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:47
|
||||
msgid "Ok"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:55
|
||||
msgid "How do you want to install GhostBSD?"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:60
|
||||
msgid ""
|
||||
"<b>Disks Configuration</b>\n"
|
||||
"Install GhostBSD using Stripe, Mirror, RAIDZ1, RAIDZ2, or RAIDZ3 "
|
||||
"configurations."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:70
|
||||
msgid ""
|
||||
"<b>Multi-Boot Configuration</b>\n"
|
||||
"Install GhostBSD with ZFS alongside other operating systems."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:39
|
||||
msgid "Creating ghostbsd_installation.cfg"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:43
|
||||
msgid "Deleting partition"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:48
|
||||
msgid "Creating disk partition"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:53
|
||||
msgid "Creating new partitions"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:83
|
||||
msgid "Installation in progress"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:95
|
||||
msgid ""
|
||||
"Thank you for choosing GhostBSD!\n"
|
||||
"\n"
|
||||
"We believe every computer operating system should be simple, elegant, secure "
|
||||
"and protect your privacy while being easy to use. GhostBSD is simplifying "
|
||||
"FreeBSD for those who lack the technical expertise required to use it and "
|
||||
"lower the entry-level of using BSD. \n"
|
||||
"\n"
|
||||
"We hope you'll enjoy our BSD operating system."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:14
|
||||
msgid "Back"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:16
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:18
|
||||
#: install_station/interface_controller.py:226
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:100
|
||||
#: install_station/interface_controller.py:101
|
||||
#: install_station/welcome_live.py:112
|
||||
msgid "Welcome to GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:110
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:136
|
||||
msgid "Installation Types"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:148
|
||||
msgid "Custom Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:158
|
||||
msgid "ZFS Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:170
|
||||
msgid "Install"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:180
|
||||
msgid "Installation Progress"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:187
|
||||
msgid "Progress Bar"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:201
|
||||
#: install_station/interface_controller.py:206
|
||||
#: install_station/network_setup.py:110
|
||||
msgid "Network Setup"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:20
|
||||
msgid "Select the language you want to use with GhostBSD."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:64 install_station/welcome_live.py:110
|
||||
#: install_station/welcome_live.py:127
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:79
|
||||
msgid "Welcome To GhostBSD!"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:69 install_station/network_setup.py:129
|
||||
msgid "Network card connected to the internet"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:75 install_station/network_setup.py:135
|
||||
msgid "Network card not connected to the internet"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:78 install_station/network_setup.py:138
|
||||
msgid "No network card detected"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:86 install_station/network_setup.py:146
|
||||
msgid "WiFi card detected and connected to an access point"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:90 install_station/network_setup.py:150
|
||||
msgid "WiFi card detected but not connected to an access point"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:93 install_station/network_setup.py:153
|
||||
msgid "WiFi card not detected or not supported"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:258
|
||||
msgid "Wi-Fi Network Authentication Required"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:270
|
||||
#, python-brace-format
|
||||
msgid "{ssid} Wi-Fi Network Authentication failed"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:272
|
||||
#, python-brace-format
|
||||
msgid "Authentication required by {ssid} Wi-Fi Network"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:275
|
||||
msgid "Password:"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:278
|
||||
msgid "Show password"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:164
|
||||
msgid ""
|
||||
"Please select 1 or more drive for stripe (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:171
|
||||
msgid "Please select 2 drive for mirroring (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:179
|
||||
msgid "Please select 3 drive for RAIDZ1 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:186
|
||||
msgid "Please select 4 drive for RAIDZ2 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:193
|
||||
msgid "Please select 5 drive for RAIDZ3 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:296
|
||||
msgid "Disk"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:303
|
||||
msgid "Size(MB)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:309
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:313
|
||||
msgid "Check"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:326
|
||||
msgid "Please select one drive"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:331
|
||||
msgid "<b>Pool Type</b>"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:335
|
||||
msgid "1+ disks Stripe"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:336
|
||||
msgid "2+ disks Mirror"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:337
|
||||
msgid "3 disks RAIDZ1"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:338
|
||||
msgid "4 disks RAIDZ2"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:339
|
||||
msgid "5 disks RAIDZ3"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:349
|
||||
msgid "<b>Pool Name</b>"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:369
|
||||
msgid "Encrypt Disk"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:373
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:380
|
||||
msgid "Verify it"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:541
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:552
|
||||
msgid "Smallest disk need to be SELECTED first!\n"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:553
|
||||
msgid "All the disk selected will reset."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:16
|
||||
msgid ""
|
||||
"To run GhostBSD without installing, select \"Try GhostBSD.\"\n"
|
||||
"\n"
|
||||
"To install GhostBSD on your computer hard disk drive, click \"Install "
|
||||
"GhostBSD.\"\n"
|
||||
"\n"
|
||||
"Note: Language selection only works when selecting \"Try GhostBSD.\"\n"
|
||||
" When installing GhostBSD, the installation program is only in English."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:95 install_station/welcome_live.py:242
|
||||
msgid "Install GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:98 install_station/welcome_live.py:246
|
||||
msgid "Try GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:101
|
||||
msgid ""
|
||||
"To run GhostBSD without installing, select \"Try GhostBSD.\"\n"
|
||||
" \n"
|
||||
"\n"
|
||||
"To install GhostBSD on your computer hard disk drive, click \"Install "
|
||||
"GhostBSD.\"\n"
|
||||
"\n"
|
||||
"Note: Language selection only works when selecting \"Try GhostBSD.\"\n"
|
||||
" When installing GhostBSD, the installation program is only in English."
|
||||
msgstr ""
|
||||
+366
@@ -0,0 +1,366 @@
|
||||
# Slovenian translations for PACKAGE package.
|
||||
# Copyright (C) 2025 THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# Eric Turgeon <EMAIL@ADDRESS>, 2025.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-07-09 20:39-0300\n"
|
||||
"PO-Revision-Date: 2025-07-09 20:26-0300\n"
|
||||
"Last-Translator: Eric Turgeon <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Slovenian <translation-team-sl@lists.sourceforge.net>\n"
|
||||
"Language: sl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=ASCII\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || "
|
||||
"n%100==4 ? 2 : 3);\n"
|
||||
|
||||
#: install_station/boot_manager.py:125
|
||||
#: install_station/interface_controller.py:168
|
||||
msgid "Boot Option"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:139
|
||||
msgid "Setup rEFInd boot manager"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:153
|
||||
msgid "Setup FreeBSD boot manager"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:168
|
||||
#, python-brace-format
|
||||
msgid "FreeBSD {loader} loader only"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:13
|
||||
msgid ""
|
||||
"Installation is complete. You need to restart the\n"
|
||||
"computer in order to use the new installation.\n"
|
||||
"You can continue to use this live media, although\n"
|
||||
"any changes you make or documents you save will\n"
|
||||
"not be preserved on reboot."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:34
|
||||
msgid "Installation Completed"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:50
|
||||
msgid "Restart"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:52
|
||||
msgid "Continue"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:21
|
||||
msgid "Installation Error"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:32
|
||||
msgid "Installation has failed!"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:37
|
||||
msgid "GhostBSD issue system"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:38
|
||||
#, python-brace-format
|
||||
msgid ""
|
||||
"Please report the issue to {anchor}, and \n"
|
||||
"be sure to provide /tmp/.pc-sysinstall/pc-sysinstall.log."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:47
|
||||
msgid "Ok"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:55
|
||||
msgid "How do you want to install GhostBSD?"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:60
|
||||
msgid ""
|
||||
"<b>Disks Configuration</b>\n"
|
||||
"Install GhostBSD using Stripe, Mirror, RAIDZ1, RAIDZ2, or RAIDZ3 "
|
||||
"configurations."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:70
|
||||
msgid ""
|
||||
"<b>Multi-Boot Configuration</b>\n"
|
||||
"Install GhostBSD with ZFS alongside other operating systems."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:39
|
||||
msgid "Creating ghostbsd_installation.cfg"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:43
|
||||
msgid "Deleting partition"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:48
|
||||
msgid "Creating disk partition"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:53
|
||||
msgid "Creating new partitions"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:83
|
||||
msgid "Installation in progress"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:95
|
||||
msgid ""
|
||||
"Thank you for choosing GhostBSD!\n"
|
||||
"\n"
|
||||
"We believe every computer operating system should be simple, elegant, secure "
|
||||
"and protect your privacy while being easy to use. GhostBSD is simplifying "
|
||||
"FreeBSD for those who lack the technical expertise required to use it and "
|
||||
"lower the entry-level of using BSD. \n"
|
||||
"\n"
|
||||
"We hope you'll enjoy our BSD operating system."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:14
|
||||
msgid "Back"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:16
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:18
|
||||
#: install_station/interface_controller.py:226
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:100
|
||||
#: install_station/interface_controller.py:101
|
||||
#: install_station/welcome_live.py:112
|
||||
msgid "Welcome to GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:110
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:136
|
||||
msgid "Installation Types"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:148
|
||||
msgid "Custom Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:158
|
||||
msgid "ZFS Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:170
|
||||
msgid "Install"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:180
|
||||
msgid "Installation Progress"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:187
|
||||
msgid "Progress Bar"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:201
|
||||
#: install_station/interface_controller.py:206
|
||||
#: install_station/network_setup.py:110
|
||||
msgid "Network Setup"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:20
|
||||
msgid "Select the language you want to use with GhostBSD."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:64 install_station/welcome_live.py:110
|
||||
#: install_station/welcome_live.py:127
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:79
|
||||
msgid "Welcome To GhostBSD!"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:69 install_station/network_setup.py:129
|
||||
msgid "Network card connected to the internet"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:75 install_station/network_setup.py:135
|
||||
msgid "Network card not connected to the internet"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:78 install_station/network_setup.py:138
|
||||
msgid "No network card detected"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:86 install_station/network_setup.py:146
|
||||
msgid "WiFi card detected and connected to an access point"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:90 install_station/network_setup.py:150
|
||||
msgid "WiFi card detected but not connected to an access point"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:93 install_station/network_setup.py:153
|
||||
msgid "WiFi card not detected or not supported"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:258
|
||||
msgid "Wi-Fi Network Authentication Required"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:270
|
||||
#, python-brace-format
|
||||
msgid "{ssid} Wi-Fi Network Authentication failed"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:272
|
||||
#, python-brace-format
|
||||
msgid "Authentication required by {ssid} Wi-Fi Network"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:275
|
||||
msgid "Password:"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:278
|
||||
msgid "Show password"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:164
|
||||
msgid ""
|
||||
"Please select 1 or more drive for stripe (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:171
|
||||
msgid "Please select 2 drive for mirroring (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:179
|
||||
msgid "Please select 3 drive for RAIDZ1 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:186
|
||||
msgid "Please select 4 drive for RAIDZ2 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:193
|
||||
msgid "Please select 5 drive for RAIDZ3 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:296
|
||||
msgid "Disk"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:303
|
||||
msgid "Size(MB)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:309
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:313
|
||||
msgid "Check"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:326
|
||||
msgid "Please select one drive"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:331
|
||||
msgid "<b>Pool Type</b>"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:335
|
||||
msgid "1+ disks Stripe"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:336
|
||||
msgid "2+ disks Mirror"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:337
|
||||
msgid "3 disks RAIDZ1"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:338
|
||||
msgid "4 disks RAIDZ2"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:339
|
||||
msgid "5 disks RAIDZ3"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:349
|
||||
msgid "<b>Pool Name</b>"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:369
|
||||
msgid "Encrypt Disk"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:373
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:380
|
||||
msgid "Verify it"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:541
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:552
|
||||
msgid "Smallest disk need to be SELECTED first!\n"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:553
|
||||
msgid "All the disk selected will reset."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:16
|
||||
msgid ""
|
||||
"To run GhostBSD without installing, select \"Try GhostBSD.\"\n"
|
||||
"\n"
|
||||
"To install GhostBSD on your computer hard disk drive, click \"Install "
|
||||
"GhostBSD.\"\n"
|
||||
"\n"
|
||||
"Note: Language selection only works when selecting \"Try GhostBSD.\"\n"
|
||||
" When installing GhostBSD, the installation program is only in English."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:95 install_station/welcome_live.py:242
|
||||
msgid "Install GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:98 install_station/welcome_live.py:246
|
||||
msgid "Try GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:101
|
||||
msgid ""
|
||||
"To run GhostBSD without installing, select \"Try GhostBSD.\"\n"
|
||||
" \n"
|
||||
"\n"
|
||||
"To install GhostBSD on your computer hard disk drive, click \"Install "
|
||||
"GhostBSD.\"\n"
|
||||
"\n"
|
||||
"Note: Language selection only works when selecting \"Try GhostBSD.\"\n"
|
||||
" When installing GhostBSD, the installation program is only in English."
|
||||
msgstr ""
|
||||
+365
@@ -0,0 +1,365 @@
|
||||
# Swedish translations for PACKAGE package.
|
||||
# Copyright (C) 2025 THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# Eric Turgeon <EMAIL@ADDRESS>, 2025.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-07-09 20:39-0300\n"
|
||||
"PO-Revision-Date: 2025-07-09 20:22-0300\n"
|
||||
"Last-Translator: Eric Turgeon <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Swedish <tp-sv@listor.tp-sv.se>\n"
|
||||
"Language: sv\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=ASCII\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: install_station/boot_manager.py:125
|
||||
#: install_station/interface_controller.py:168
|
||||
msgid "Boot Option"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:139
|
||||
msgid "Setup rEFInd boot manager"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:153
|
||||
msgid "Setup FreeBSD boot manager"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:168
|
||||
#, python-brace-format
|
||||
msgid "FreeBSD {loader} loader only"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:13
|
||||
msgid ""
|
||||
"Installation is complete. You need to restart the\n"
|
||||
"computer in order to use the new installation.\n"
|
||||
"You can continue to use this live media, although\n"
|
||||
"any changes you make or documents you save will\n"
|
||||
"not be preserved on reboot."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:34
|
||||
msgid "Installation Completed"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:50
|
||||
msgid "Restart"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:52
|
||||
msgid "Continue"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:21
|
||||
msgid "Installation Error"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:32
|
||||
msgid "Installation has failed!"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:37
|
||||
msgid "GhostBSD issue system"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:38
|
||||
#, python-brace-format
|
||||
msgid ""
|
||||
"Please report the issue to {anchor}, and \n"
|
||||
"be sure to provide /tmp/.pc-sysinstall/pc-sysinstall.log."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:47
|
||||
msgid "Ok"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:55
|
||||
msgid "How do you want to install GhostBSD?"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:60
|
||||
msgid ""
|
||||
"<b>Disks Configuration</b>\n"
|
||||
"Install GhostBSD using Stripe, Mirror, RAIDZ1, RAIDZ2, or RAIDZ3 "
|
||||
"configurations."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:70
|
||||
msgid ""
|
||||
"<b>Multi-Boot Configuration</b>\n"
|
||||
"Install GhostBSD with ZFS alongside other operating systems."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:39
|
||||
msgid "Creating ghostbsd_installation.cfg"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:43
|
||||
msgid "Deleting partition"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:48
|
||||
msgid "Creating disk partition"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:53
|
||||
msgid "Creating new partitions"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:83
|
||||
msgid "Installation in progress"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:95
|
||||
msgid ""
|
||||
"Thank you for choosing GhostBSD!\n"
|
||||
"\n"
|
||||
"We believe every computer operating system should be simple, elegant, secure "
|
||||
"and protect your privacy while being easy to use. GhostBSD is simplifying "
|
||||
"FreeBSD for those who lack the technical expertise required to use it and "
|
||||
"lower the entry-level of using BSD. \n"
|
||||
"\n"
|
||||
"We hope you'll enjoy our BSD operating system."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:14
|
||||
msgid "Back"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:16
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:18
|
||||
#: install_station/interface_controller.py:226
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:100
|
||||
#: install_station/interface_controller.py:101
|
||||
#: install_station/welcome_live.py:112
|
||||
msgid "Welcome to GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:110
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:136
|
||||
msgid "Installation Types"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:148
|
||||
msgid "Custom Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:158
|
||||
msgid "ZFS Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:170
|
||||
msgid "Install"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:180
|
||||
msgid "Installation Progress"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:187
|
||||
msgid "Progress Bar"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:201
|
||||
#: install_station/interface_controller.py:206
|
||||
#: install_station/network_setup.py:110
|
||||
msgid "Network Setup"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:20
|
||||
msgid "Select the language you want to use with GhostBSD."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:64 install_station/welcome_live.py:110
|
||||
#: install_station/welcome_live.py:127
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:79
|
||||
msgid "Welcome To GhostBSD!"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:69 install_station/network_setup.py:129
|
||||
msgid "Network card connected to the internet"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:75 install_station/network_setup.py:135
|
||||
msgid "Network card not connected to the internet"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:78 install_station/network_setup.py:138
|
||||
msgid "No network card detected"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:86 install_station/network_setup.py:146
|
||||
msgid "WiFi card detected and connected to an access point"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:90 install_station/network_setup.py:150
|
||||
msgid "WiFi card detected but not connected to an access point"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:93 install_station/network_setup.py:153
|
||||
msgid "WiFi card not detected or not supported"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:258
|
||||
msgid "Wi-Fi Network Authentication Required"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:270
|
||||
#, python-brace-format
|
||||
msgid "{ssid} Wi-Fi Network Authentication failed"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:272
|
||||
#, python-brace-format
|
||||
msgid "Authentication required by {ssid} Wi-Fi Network"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:275
|
||||
msgid "Password:"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:278
|
||||
msgid "Show password"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:164
|
||||
msgid ""
|
||||
"Please select 1 or more drive for stripe (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:171
|
||||
msgid "Please select 2 drive for mirroring (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:179
|
||||
msgid "Please select 3 drive for RAIDZ1 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:186
|
||||
msgid "Please select 4 drive for RAIDZ2 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:193
|
||||
msgid "Please select 5 drive for RAIDZ3 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:296
|
||||
msgid "Disk"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:303
|
||||
msgid "Size(MB)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:309
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:313
|
||||
msgid "Check"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:326
|
||||
msgid "Please select one drive"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:331
|
||||
msgid "<b>Pool Type</b>"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:335
|
||||
msgid "1+ disks Stripe"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:336
|
||||
msgid "2+ disks Mirror"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:337
|
||||
msgid "3 disks RAIDZ1"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:338
|
||||
msgid "4 disks RAIDZ2"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:339
|
||||
msgid "5 disks RAIDZ3"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:349
|
||||
msgid "<b>Pool Name</b>"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:369
|
||||
msgid "Encrypt Disk"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:373
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:380
|
||||
msgid "Verify it"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:541
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:552
|
||||
msgid "Smallest disk need to be SELECTED first!\n"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:553
|
||||
msgid "All the disk selected will reset."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:16
|
||||
msgid ""
|
||||
"To run GhostBSD without installing, select \"Try GhostBSD.\"\n"
|
||||
"\n"
|
||||
"To install GhostBSD on your computer hard disk drive, click \"Install "
|
||||
"GhostBSD.\"\n"
|
||||
"\n"
|
||||
"Note: Language selection only works when selecting \"Try GhostBSD.\"\n"
|
||||
" When installing GhostBSD, the installation program is only in English."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:95 install_station/welcome_live.py:242
|
||||
msgid "Install GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:98 install_station/welcome_live.py:246
|
||||
msgid "Try GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:101
|
||||
msgid ""
|
||||
"To run GhostBSD without installing, select \"Try GhostBSD.\"\n"
|
||||
" \n"
|
||||
"\n"
|
||||
"To install GhostBSD on your computer hard disk drive, click \"Install "
|
||||
"GhostBSD.\"\n"
|
||||
"\n"
|
||||
"Note: Language selection only works when selecting \"Try GhostBSD.\"\n"
|
||||
" When installing GhostBSD, the installation program is only in English."
|
||||
msgstr ""
|
||||
+364
@@ -0,0 +1,364 @@
|
||||
# Thai translations for PACKAGE package.
|
||||
# Copyright (C) 2025 THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# Eric Turgeon <EMAIL@ADDRESS>, 2025.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-07-09 20:39-0300\n"
|
||||
"PO-Revision-Date: 2025-07-09 20:27-0300\n"
|
||||
"Last-Translator: Eric Turgeon <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Thai <(nothing)>\n"
|
||||
"Language: th\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=ASCII\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: install_station/boot_manager.py:125
|
||||
#: install_station/interface_controller.py:168
|
||||
msgid "Boot Option"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:139
|
||||
msgid "Setup rEFInd boot manager"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:153
|
||||
msgid "Setup FreeBSD boot manager"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:168
|
||||
#, python-brace-format
|
||||
msgid "FreeBSD {loader} loader only"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:13
|
||||
msgid ""
|
||||
"Installation is complete. You need to restart the\n"
|
||||
"computer in order to use the new installation.\n"
|
||||
"You can continue to use this live media, although\n"
|
||||
"any changes you make or documents you save will\n"
|
||||
"not be preserved on reboot."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:34
|
||||
msgid "Installation Completed"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:50
|
||||
msgid "Restart"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:52
|
||||
msgid "Continue"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:21
|
||||
msgid "Installation Error"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:32
|
||||
msgid "Installation has failed!"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:37
|
||||
msgid "GhostBSD issue system"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:38
|
||||
#, python-brace-format
|
||||
msgid ""
|
||||
"Please report the issue to {anchor}, and \n"
|
||||
"be sure to provide /tmp/.pc-sysinstall/pc-sysinstall.log."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:47
|
||||
msgid "Ok"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:55
|
||||
msgid "How do you want to install GhostBSD?"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:60
|
||||
msgid ""
|
||||
"<b>Disks Configuration</b>\n"
|
||||
"Install GhostBSD using Stripe, Mirror, RAIDZ1, RAIDZ2, or RAIDZ3 "
|
||||
"configurations."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:70
|
||||
msgid ""
|
||||
"<b>Multi-Boot Configuration</b>\n"
|
||||
"Install GhostBSD with ZFS alongside other operating systems."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:39
|
||||
msgid "Creating ghostbsd_installation.cfg"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:43
|
||||
msgid "Deleting partition"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:48
|
||||
msgid "Creating disk partition"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:53
|
||||
msgid "Creating new partitions"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:83
|
||||
msgid "Installation in progress"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:95
|
||||
msgid ""
|
||||
"Thank you for choosing GhostBSD!\n"
|
||||
"\n"
|
||||
"We believe every computer operating system should be simple, elegant, secure "
|
||||
"and protect your privacy while being easy to use. GhostBSD is simplifying "
|
||||
"FreeBSD for those who lack the technical expertise required to use it and "
|
||||
"lower the entry-level of using BSD. \n"
|
||||
"\n"
|
||||
"We hope you'll enjoy our BSD operating system."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:14
|
||||
msgid "Back"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:16
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:18
|
||||
#: install_station/interface_controller.py:226
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:100
|
||||
#: install_station/interface_controller.py:101
|
||||
#: install_station/welcome_live.py:112
|
||||
msgid "Welcome to GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:110
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:136
|
||||
msgid "Installation Types"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:148
|
||||
msgid "Custom Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:158
|
||||
msgid "ZFS Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:170
|
||||
msgid "Install"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:180
|
||||
msgid "Installation Progress"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:187
|
||||
msgid "Progress Bar"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:201
|
||||
#: install_station/interface_controller.py:206
|
||||
#: install_station/network_setup.py:110
|
||||
msgid "Network Setup"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:20
|
||||
msgid "Select the language you want to use with GhostBSD."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:64 install_station/welcome_live.py:110
|
||||
#: install_station/welcome_live.py:127
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:79
|
||||
msgid "Welcome To GhostBSD!"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:69 install_station/network_setup.py:129
|
||||
msgid "Network card connected to the internet"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:75 install_station/network_setup.py:135
|
||||
msgid "Network card not connected to the internet"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:78 install_station/network_setup.py:138
|
||||
msgid "No network card detected"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:86 install_station/network_setup.py:146
|
||||
msgid "WiFi card detected and connected to an access point"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:90 install_station/network_setup.py:150
|
||||
msgid "WiFi card detected but not connected to an access point"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:93 install_station/network_setup.py:153
|
||||
msgid "WiFi card not detected or not supported"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:258
|
||||
msgid "Wi-Fi Network Authentication Required"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:270
|
||||
#, python-brace-format
|
||||
msgid "{ssid} Wi-Fi Network Authentication failed"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:272
|
||||
#, python-brace-format
|
||||
msgid "Authentication required by {ssid} Wi-Fi Network"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:275
|
||||
msgid "Password:"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:278
|
||||
msgid "Show password"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:164
|
||||
msgid ""
|
||||
"Please select 1 or more drive for stripe (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:171
|
||||
msgid "Please select 2 drive for mirroring (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:179
|
||||
msgid "Please select 3 drive for RAIDZ1 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:186
|
||||
msgid "Please select 4 drive for RAIDZ2 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:193
|
||||
msgid "Please select 5 drive for RAIDZ3 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:296
|
||||
msgid "Disk"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:303
|
||||
msgid "Size(MB)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:309
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:313
|
||||
msgid "Check"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:326
|
||||
msgid "Please select one drive"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:331
|
||||
msgid "<b>Pool Type</b>"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:335
|
||||
msgid "1+ disks Stripe"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:336
|
||||
msgid "2+ disks Mirror"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:337
|
||||
msgid "3 disks RAIDZ1"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:338
|
||||
msgid "4 disks RAIDZ2"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:339
|
||||
msgid "5 disks RAIDZ3"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:349
|
||||
msgid "<b>Pool Name</b>"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:369
|
||||
msgid "Encrypt Disk"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:373
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:380
|
||||
msgid "Verify it"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:541
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:552
|
||||
msgid "Smallest disk need to be SELECTED first!\n"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:553
|
||||
msgid "All the disk selected will reset."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:16
|
||||
msgid ""
|
||||
"To run GhostBSD without installing, select \"Try GhostBSD.\"\n"
|
||||
"\n"
|
||||
"To install GhostBSD on your computer hard disk drive, click \"Install "
|
||||
"GhostBSD.\"\n"
|
||||
"\n"
|
||||
"Note: Language selection only works when selecting \"Try GhostBSD.\"\n"
|
||||
" When installing GhostBSD, the installation program is only in English."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:95 install_station/welcome_live.py:242
|
||||
msgid "Install GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:98 install_station/welcome_live.py:246
|
||||
msgid "Try GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:101
|
||||
msgid ""
|
||||
"To run GhostBSD without installing, select \"Try GhostBSD.\"\n"
|
||||
" \n"
|
||||
"\n"
|
||||
"To install GhostBSD on your computer hard disk drive, click \"Install "
|
||||
"GhostBSD.\"\n"
|
||||
"\n"
|
||||
"Note: Language selection only works when selecting \"Try GhostBSD.\"\n"
|
||||
" When installing GhostBSD, the installation program is only in English."
|
||||
msgstr ""
|
||||
+365
@@ -0,0 +1,365 @@
|
||||
# Turkish translations for PACKAGE package.
|
||||
# Copyright (C) 2025 THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# Eric Turgeon <EMAIL@ADDRESS>, 2025.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-07-09 20:39-0300\n"
|
||||
"PO-Revision-Date: 2025-07-09 20:24-0300\n"
|
||||
"Last-Translator: Eric Turgeon <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Turkish <gnome-turk@gnome.org>\n"
|
||||
"Language: tr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=ASCII\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: install_station/boot_manager.py:125
|
||||
#: install_station/interface_controller.py:168
|
||||
msgid "Boot Option"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:139
|
||||
msgid "Setup rEFInd boot manager"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:153
|
||||
msgid "Setup FreeBSD boot manager"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:168
|
||||
#, python-brace-format
|
||||
msgid "FreeBSD {loader} loader only"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:13
|
||||
msgid ""
|
||||
"Installation is complete. You need to restart the\n"
|
||||
"computer in order to use the new installation.\n"
|
||||
"You can continue to use this live media, although\n"
|
||||
"any changes you make or documents you save will\n"
|
||||
"not be preserved on reboot."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:34
|
||||
msgid "Installation Completed"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:50
|
||||
msgid "Restart"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:52
|
||||
msgid "Continue"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:21
|
||||
msgid "Installation Error"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:32
|
||||
msgid "Installation has failed!"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:37
|
||||
msgid "GhostBSD issue system"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:38
|
||||
#, python-brace-format
|
||||
msgid ""
|
||||
"Please report the issue to {anchor}, and \n"
|
||||
"be sure to provide /tmp/.pc-sysinstall/pc-sysinstall.log."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:47
|
||||
msgid "Ok"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:55
|
||||
msgid "How do you want to install GhostBSD?"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:60
|
||||
msgid ""
|
||||
"<b>Disks Configuration</b>\n"
|
||||
"Install GhostBSD using Stripe, Mirror, RAIDZ1, RAIDZ2, or RAIDZ3 "
|
||||
"configurations."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:70
|
||||
msgid ""
|
||||
"<b>Multi-Boot Configuration</b>\n"
|
||||
"Install GhostBSD with ZFS alongside other operating systems."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:39
|
||||
msgid "Creating ghostbsd_installation.cfg"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:43
|
||||
msgid "Deleting partition"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:48
|
||||
msgid "Creating disk partition"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:53
|
||||
msgid "Creating new partitions"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:83
|
||||
msgid "Installation in progress"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:95
|
||||
msgid ""
|
||||
"Thank you for choosing GhostBSD!\n"
|
||||
"\n"
|
||||
"We believe every computer operating system should be simple, elegant, secure "
|
||||
"and protect your privacy while being easy to use. GhostBSD is simplifying "
|
||||
"FreeBSD for those who lack the technical expertise required to use it and "
|
||||
"lower the entry-level of using BSD. \n"
|
||||
"\n"
|
||||
"We hope you'll enjoy our BSD operating system."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:14
|
||||
msgid "Back"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:16
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:18
|
||||
#: install_station/interface_controller.py:226
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:100
|
||||
#: install_station/interface_controller.py:101
|
||||
#: install_station/welcome_live.py:112
|
||||
msgid "Welcome to GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:110
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:136
|
||||
msgid "Installation Types"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:148
|
||||
msgid "Custom Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:158
|
||||
msgid "ZFS Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:170
|
||||
msgid "Install"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:180
|
||||
msgid "Installation Progress"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:187
|
||||
msgid "Progress Bar"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:201
|
||||
#: install_station/interface_controller.py:206
|
||||
#: install_station/network_setup.py:110
|
||||
msgid "Network Setup"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:20
|
||||
msgid "Select the language you want to use with GhostBSD."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:64 install_station/welcome_live.py:110
|
||||
#: install_station/welcome_live.py:127
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:79
|
||||
msgid "Welcome To GhostBSD!"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:69 install_station/network_setup.py:129
|
||||
msgid "Network card connected to the internet"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:75 install_station/network_setup.py:135
|
||||
msgid "Network card not connected to the internet"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:78 install_station/network_setup.py:138
|
||||
msgid "No network card detected"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:86 install_station/network_setup.py:146
|
||||
msgid "WiFi card detected and connected to an access point"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:90 install_station/network_setup.py:150
|
||||
msgid "WiFi card detected but not connected to an access point"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:93 install_station/network_setup.py:153
|
||||
msgid "WiFi card not detected or not supported"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:258
|
||||
msgid "Wi-Fi Network Authentication Required"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:270
|
||||
#, python-brace-format
|
||||
msgid "{ssid} Wi-Fi Network Authentication failed"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:272
|
||||
#, python-brace-format
|
||||
msgid "Authentication required by {ssid} Wi-Fi Network"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:275
|
||||
msgid "Password:"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:278
|
||||
msgid "Show password"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:164
|
||||
msgid ""
|
||||
"Please select 1 or more drive for stripe (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:171
|
||||
msgid "Please select 2 drive for mirroring (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:179
|
||||
msgid "Please select 3 drive for RAIDZ1 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:186
|
||||
msgid "Please select 4 drive for RAIDZ2 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:193
|
||||
msgid "Please select 5 drive for RAIDZ3 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:296
|
||||
msgid "Disk"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:303
|
||||
msgid "Size(MB)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:309
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:313
|
||||
msgid "Check"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:326
|
||||
msgid "Please select one drive"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:331
|
||||
msgid "<b>Pool Type</b>"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:335
|
||||
msgid "1+ disks Stripe"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:336
|
||||
msgid "2+ disks Mirror"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:337
|
||||
msgid "3 disks RAIDZ1"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:338
|
||||
msgid "4 disks RAIDZ2"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:339
|
||||
msgid "5 disks RAIDZ3"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:349
|
||||
msgid "<b>Pool Name</b>"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:369
|
||||
msgid "Encrypt Disk"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:373
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:380
|
||||
msgid "Verify it"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:541
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:552
|
||||
msgid "Smallest disk need to be SELECTED first!\n"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:553
|
||||
msgid "All the disk selected will reset."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:16
|
||||
msgid ""
|
||||
"To run GhostBSD without installing, select \"Try GhostBSD.\"\n"
|
||||
"\n"
|
||||
"To install GhostBSD on your computer hard disk drive, click \"Install "
|
||||
"GhostBSD.\"\n"
|
||||
"\n"
|
||||
"Note: Language selection only works when selecting \"Try GhostBSD.\"\n"
|
||||
" When installing GhostBSD, the installation program is only in English."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:95 install_station/welcome_live.py:242
|
||||
msgid "Install GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:98 install_station/welcome_live.py:246
|
||||
msgid "Try GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:101
|
||||
msgid ""
|
||||
"To run GhostBSD without installing, select \"Try GhostBSD.\"\n"
|
||||
" \n"
|
||||
"\n"
|
||||
"To install GhostBSD on your computer hard disk drive, click \"Install "
|
||||
"GhostBSD.\"\n"
|
||||
"\n"
|
||||
"Note: Language selection only works when selecting \"Try GhostBSD.\"\n"
|
||||
" When installing GhostBSD, the installation program is only in English."
|
||||
msgstr ""
|
||||
+365
@@ -0,0 +1,365 @@
|
||||
# Vietnamese translations for PACKAGE package.
|
||||
# Copyright (C) 2025 THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# Eric Turgeon <EMAIL@ADDRESS>, 2025.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-07-09 20:39-0300\n"
|
||||
"PO-Revision-Date: 2025-07-09 20:27-0300\n"
|
||||
"Last-Translator: Eric Turgeon <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Vietnamese <translation-team-vi@lists.sourceforge.net>\n"
|
||||
"Language: vi\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=ASCII\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#: install_station/boot_manager.py:125
|
||||
#: install_station/interface_controller.py:168
|
||||
msgid "Boot Option"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:139
|
||||
msgid "Setup rEFInd boot manager"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:153
|
||||
msgid "Setup FreeBSD boot manager"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:168
|
||||
#, python-brace-format
|
||||
msgid "FreeBSD {loader} loader only"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:13
|
||||
msgid ""
|
||||
"Installation is complete. You need to restart the\n"
|
||||
"computer in order to use the new installation.\n"
|
||||
"You can continue to use this live media, although\n"
|
||||
"any changes you make or documents you save will\n"
|
||||
"not be preserved on reboot."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:34
|
||||
msgid "Installation Completed"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:50
|
||||
msgid "Restart"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:52
|
||||
msgid "Continue"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:21
|
||||
msgid "Installation Error"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:32
|
||||
msgid "Installation has failed!"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:37
|
||||
msgid "GhostBSD issue system"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:38
|
||||
#, python-brace-format
|
||||
msgid ""
|
||||
"Please report the issue to {anchor}, and \n"
|
||||
"be sure to provide /tmp/.pc-sysinstall/pc-sysinstall.log."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:47
|
||||
msgid "Ok"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:55
|
||||
msgid "How do you want to install GhostBSD?"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:60
|
||||
msgid ""
|
||||
"<b>Disks Configuration</b>\n"
|
||||
"Install GhostBSD using Stripe, Mirror, RAIDZ1, RAIDZ2, or RAIDZ3 "
|
||||
"configurations."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:70
|
||||
msgid ""
|
||||
"<b>Multi-Boot Configuration</b>\n"
|
||||
"Install GhostBSD with ZFS alongside other operating systems."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:39
|
||||
msgid "Creating ghostbsd_installation.cfg"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:43
|
||||
msgid "Deleting partition"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:48
|
||||
msgid "Creating disk partition"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:53
|
||||
msgid "Creating new partitions"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:83
|
||||
msgid "Installation in progress"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:95
|
||||
msgid ""
|
||||
"Thank you for choosing GhostBSD!\n"
|
||||
"\n"
|
||||
"We believe every computer operating system should be simple, elegant, secure "
|
||||
"and protect your privacy while being easy to use. GhostBSD is simplifying "
|
||||
"FreeBSD for those who lack the technical expertise required to use it and "
|
||||
"lower the entry-level of using BSD. \n"
|
||||
"\n"
|
||||
"We hope you'll enjoy our BSD operating system."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:14
|
||||
msgid "Back"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:16
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:18
|
||||
#: install_station/interface_controller.py:226
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:100
|
||||
#: install_station/interface_controller.py:101
|
||||
#: install_station/welcome_live.py:112
|
||||
msgid "Welcome to GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:110
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:136
|
||||
msgid "Installation Types"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:148
|
||||
msgid "Custom Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:158
|
||||
msgid "ZFS Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:170
|
||||
msgid "Install"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:180
|
||||
msgid "Installation Progress"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:187
|
||||
msgid "Progress Bar"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:201
|
||||
#: install_station/interface_controller.py:206
|
||||
#: install_station/network_setup.py:110
|
||||
msgid "Network Setup"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:20
|
||||
msgid "Select the language you want to use with GhostBSD."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:64 install_station/welcome_live.py:110
|
||||
#: install_station/welcome_live.py:127
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:79
|
||||
msgid "Welcome To GhostBSD!"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:69 install_station/network_setup.py:129
|
||||
msgid "Network card connected to the internet"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:75 install_station/network_setup.py:135
|
||||
msgid "Network card not connected to the internet"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:78 install_station/network_setup.py:138
|
||||
msgid "No network card detected"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:86 install_station/network_setup.py:146
|
||||
msgid "WiFi card detected and connected to an access point"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:90 install_station/network_setup.py:150
|
||||
msgid "WiFi card detected but not connected to an access point"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:93 install_station/network_setup.py:153
|
||||
msgid "WiFi card not detected or not supported"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:258
|
||||
msgid "Wi-Fi Network Authentication Required"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:270
|
||||
#, python-brace-format
|
||||
msgid "{ssid} Wi-Fi Network Authentication failed"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:272
|
||||
#, python-brace-format
|
||||
msgid "Authentication required by {ssid} Wi-Fi Network"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:275
|
||||
msgid "Password:"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:278
|
||||
msgid "Show password"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:164
|
||||
msgid ""
|
||||
"Please select 1 or more drive for stripe (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:171
|
||||
msgid "Please select 2 drive for mirroring (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:179
|
||||
msgid "Please select 3 drive for RAIDZ1 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:186
|
||||
msgid "Please select 4 drive for RAIDZ2 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:193
|
||||
msgid "Please select 5 drive for RAIDZ3 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:296
|
||||
msgid "Disk"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:303
|
||||
msgid "Size(MB)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:309
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:313
|
||||
msgid "Check"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:326
|
||||
msgid "Please select one drive"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:331
|
||||
msgid "<b>Pool Type</b>"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:335
|
||||
msgid "1+ disks Stripe"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:336
|
||||
msgid "2+ disks Mirror"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:337
|
||||
msgid "3 disks RAIDZ1"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:338
|
||||
msgid "4 disks RAIDZ2"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:339
|
||||
msgid "5 disks RAIDZ3"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:349
|
||||
msgid "<b>Pool Name</b>"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:369
|
||||
msgid "Encrypt Disk"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:373
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:380
|
||||
msgid "Verify it"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:541
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:552
|
||||
msgid "Smallest disk need to be SELECTED first!\n"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:553
|
||||
msgid "All the disk selected will reset."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:16
|
||||
msgid ""
|
||||
"To run GhostBSD without installing, select \"Try GhostBSD.\"\n"
|
||||
"\n"
|
||||
"To install GhostBSD on your computer hard disk drive, click \"Install "
|
||||
"GhostBSD.\"\n"
|
||||
"\n"
|
||||
"Note: Language selection only works when selecting \"Try GhostBSD.\"\n"
|
||||
" When installing GhostBSD, the installation program is only in English."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:95 install_station/welcome_live.py:242
|
||||
msgid "Install GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:98 install_station/welcome_live.py:246
|
||||
msgid "Try GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:101
|
||||
msgid ""
|
||||
"To run GhostBSD without installing, select \"Try GhostBSD.\"\n"
|
||||
" \n"
|
||||
"\n"
|
||||
"To install GhostBSD on your computer hard disk drive, click \"Install "
|
||||
"GhostBSD.\"\n"
|
||||
"\n"
|
||||
"Note: Language selection only works when selecting \"Try GhostBSD.\"\n"
|
||||
" When installing GhostBSD, the installation program is only in English."
|
||||
msgstr ""
|
||||
+364
@@ -0,0 +1,364 @@
|
||||
# Chinese translations for PACKAGE package.
|
||||
# Copyright (C) 2025 THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# Eric Turgeon <EMAIL@ADDRESS>, 2025.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-07-09 20:39-0300\n"
|
||||
"PO-Revision-Date: 2025-07-09 20:21-0300\n"
|
||||
"Last-Translator: Eric Turgeon <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Chinese (simplified) <i18n-zh@googlegroups.com>\n"
|
||||
"Language: zh_CN\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=ASCII\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: install_station/boot_manager.py:125
|
||||
#: install_station/interface_controller.py:168
|
||||
msgid "Boot Option"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:139
|
||||
msgid "Setup rEFInd boot manager"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:153
|
||||
msgid "Setup FreeBSD boot manager"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:168
|
||||
#, python-brace-format
|
||||
msgid "FreeBSD {loader} loader only"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:13
|
||||
msgid ""
|
||||
"Installation is complete. You need to restart the\n"
|
||||
"computer in order to use the new installation.\n"
|
||||
"You can continue to use this live media, although\n"
|
||||
"any changes you make or documents you save will\n"
|
||||
"not be preserved on reboot."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:34
|
||||
msgid "Installation Completed"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:50
|
||||
msgid "Restart"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:52
|
||||
msgid "Continue"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:21
|
||||
msgid "Installation Error"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:32
|
||||
msgid "Installation has failed!"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:37
|
||||
msgid "GhostBSD issue system"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:38
|
||||
#, python-brace-format
|
||||
msgid ""
|
||||
"Please report the issue to {anchor}, and \n"
|
||||
"be sure to provide /tmp/.pc-sysinstall/pc-sysinstall.log."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:47
|
||||
msgid "Ok"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:55
|
||||
msgid "How do you want to install GhostBSD?"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:60
|
||||
msgid ""
|
||||
"<b>Disks Configuration</b>\n"
|
||||
"Install GhostBSD using Stripe, Mirror, RAIDZ1, RAIDZ2, or RAIDZ3 "
|
||||
"configurations."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:70
|
||||
msgid ""
|
||||
"<b>Multi-Boot Configuration</b>\n"
|
||||
"Install GhostBSD with ZFS alongside other operating systems."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:39
|
||||
msgid "Creating ghostbsd_installation.cfg"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:43
|
||||
msgid "Deleting partition"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:48
|
||||
msgid "Creating disk partition"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:53
|
||||
msgid "Creating new partitions"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:83
|
||||
msgid "Installation in progress"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:95
|
||||
msgid ""
|
||||
"Thank you for choosing GhostBSD!\n"
|
||||
"\n"
|
||||
"We believe every computer operating system should be simple, elegant, secure "
|
||||
"and protect your privacy while being easy to use. GhostBSD is simplifying "
|
||||
"FreeBSD for those who lack the technical expertise required to use it and "
|
||||
"lower the entry-level of using BSD. \n"
|
||||
"\n"
|
||||
"We hope you'll enjoy our BSD operating system."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:14
|
||||
msgid "Back"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:16
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:18
|
||||
#: install_station/interface_controller.py:226
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:100
|
||||
#: install_station/interface_controller.py:101
|
||||
#: install_station/welcome_live.py:112
|
||||
msgid "Welcome to GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:110
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:136
|
||||
msgid "Installation Types"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:148
|
||||
msgid "Custom Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:158
|
||||
msgid "ZFS Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:170
|
||||
msgid "Install"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:180
|
||||
msgid "Installation Progress"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:187
|
||||
msgid "Progress Bar"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:201
|
||||
#: install_station/interface_controller.py:206
|
||||
#: install_station/network_setup.py:110
|
||||
msgid "Network Setup"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:20
|
||||
msgid "Select the language you want to use with GhostBSD."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:64 install_station/welcome_live.py:110
|
||||
#: install_station/welcome_live.py:127
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:79
|
||||
msgid "Welcome To GhostBSD!"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:69 install_station/network_setup.py:129
|
||||
msgid "Network card connected to the internet"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:75 install_station/network_setup.py:135
|
||||
msgid "Network card not connected to the internet"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:78 install_station/network_setup.py:138
|
||||
msgid "No network card detected"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:86 install_station/network_setup.py:146
|
||||
msgid "WiFi card detected and connected to an access point"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:90 install_station/network_setup.py:150
|
||||
msgid "WiFi card detected but not connected to an access point"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:93 install_station/network_setup.py:153
|
||||
msgid "WiFi card not detected or not supported"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:258
|
||||
msgid "Wi-Fi Network Authentication Required"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:270
|
||||
#, python-brace-format
|
||||
msgid "{ssid} Wi-Fi Network Authentication failed"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:272
|
||||
#, python-brace-format
|
||||
msgid "Authentication required by {ssid} Wi-Fi Network"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:275
|
||||
msgid "Password:"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:278
|
||||
msgid "Show password"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:164
|
||||
msgid ""
|
||||
"Please select 1 or more drive for stripe (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:171
|
||||
msgid "Please select 2 drive for mirroring (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:179
|
||||
msgid "Please select 3 drive for RAIDZ1 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:186
|
||||
msgid "Please select 4 drive for RAIDZ2 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:193
|
||||
msgid "Please select 5 drive for RAIDZ3 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:296
|
||||
msgid "Disk"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:303
|
||||
msgid "Size(MB)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:309
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:313
|
||||
msgid "Check"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:326
|
||||
msgid "Please select one drive"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:331
|
||||
msgid "<b>Pool Type</b>"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:335
|
||||
msgid "1+ disks Stripe"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:336
|
||||
msgid "2+ disks Mirror"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:337
|
||||
msgid "3 disks RAIDZ1"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:338
|
||||
msgid "4 disks RAIDZ2"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:339
|
||||
msgid "5 disks RAIDZ3"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:349
|
||||
msgid "<b>Pool Name</b>"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:369
|
||||
msgid "Encrypt Disk"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:373
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:380
|
||||
msgid "Verify it"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:541
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:552
|
||||
msgid "Smallest disk need to be SELECTED first!\n"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:553
|
||||
msgid "All the disk selected will reset."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:16
|
||||
msgid ""
|
||||
"To run GhostBSD without installing, select \"Try GhostBSD.\"\n"
|
||||
"\n"
|
||||
"To install GhostBSD on your computer hard disk drive, click \"Install "
|
||||
"GhostBSD.\"\n"
|
||||
"\n"
|
||||
"Note: Language selection only works when selecting \"Try GhostBSD.\"\n"
|
||||
" When installing GhostBSD, the installation program is only in English."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:95 install_station/welcome_live.py:242
|
||||
msgid "Install GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:98 install_station/welcome_live.py:246
|
||||
msgid "Try GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:101
|
||||
msgid ""
|
||||
"To run GhostBSD without installing, select \"Try GhostBSD.\"\n"
|
||||
" \n"
|
||||
"\n"
|
||||
"To install GhostBSD on your computer hard disk drive, click \"Install "
|
||||
"GhostBSD.\"\n"
|
||||
"\n"
|
||||
"Note: Language selection only works when selecting \"Try GhostBSD.\"\n"
|
||||
" When installing GhostBSD, the installation program is only in English."
|
||||
msgstr ""
|
||||
+364
@@ -0,0 +1,364 @@
|
||||
# Chinese translations for PACKAGE package.
|
||||
# Copyright (C) 2025 THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# Eric Turgeon <EMAIL@ADDRESS>, 2025.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-07-09 20:39-0300\n"
|
||||
"PO-Revision-Date: 2025-07-09 20:25-0300\n"
|
||||
"Last-Translator: Eric Turgeon <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Chinese (traditional) <zh-l10n@lists.slat.org>\n"
|
||||
"Language: zh_TW\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=ASCII\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: install_station/boot_manager.py:125
|
||||
#: install_station/interface_controller.py:168
|
||||
msgid "Boot Option"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:139
|
||||
msgid "Setup rEFInd boot manager"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:153
|
||||
msgid "Setup FreeBSD boot manager"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/boot_manager.py:168
|
||||
#, python-brace-format
|
||||
msgid "FreeBSD {loader} loader only"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:13
|
||||
msgid ""
|
||||
"Installation is complete. You need to restart the\n"
|
||||
"computer in order to use the new installation.\n"
|
||||
"You can continue to use this live media, although\n"
|
||||
"any changes you make or documents you save will\n"
|
||||
"not be preserved on reboot."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:34
|
||||
msgid "Installation Completed"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:50
|
||||
msgid "Restart"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/end.py:52
|
||||
msgid "Continue"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:21
|
||||
msgid "Installation Error"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:32
|
||||
msgid "Installation has failed!"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:37
|
||||
msgid "GhostBSD issue system"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:38
|
||||
#, python-brace-format
|
||||
msgid ""
|
||||
"Please report the issue to {anchor}, and \n"
|
||||
"be sure to provide /tmp/.pc-sysinstall/pc-sysinstall.log."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/error.py:47
|
||||
msgid "Ok"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:55
|
||||
msgid "How do you want to install GhostBSD?"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:60
|
||||
msgid ""
|
||||
"<b>Disks Configuration</b>\n"
|
||||
"Install GhostBSD using Stripe, Mirror, RAIDZ1, RAIDZ2, or RAIDZ3 "
|
||||
"configurations."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install_type.py:70
|
||||
msgid ""
|
||||
"<b>Multi-Boot Configuration</b>\n"
|
||||
"Install GhostBSD with ZFS alongside other operating systems."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:39
|
||||
msgid "Creating ghostbsd_installation.cfg"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:43
|
||||
msgid "Deleting partition"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:48
|
||||
msgid "Creating disk partition"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:53
|
||||
msgid "Creating new partitions"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:83
|
||||
msgid "Installation in progress"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/install.py:95
|
||||
msgid ""
|
||||
"Thank you for choosing GhostBSD!\n"
|
||||
"\n"
|
||||
"We believe every computer operating system should be simple, elegant, secure "
|
||||
"and protect your privacy while being easy to use. GhostBSD is simplifying "
|
||||
"FreeBSD for those who lack the technical expertise required to use it and "
|
||||
"lower the entry-level of using BSD. \n"
|
||||
"\n"
|
||||
"We hope you'll enjoy our BSD operating system."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:14
|
||||
msgid "Back"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:16
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:18
|
||||
#: install_station/interface_controller.py:226
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:100
|
||||
#: install_station/interface_controller.py:101
|
||||
#: install_station/welcome_live.py:112
|
||||
msgid "Welcome to GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:110
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:136
|
||||
msgid "Installation Types"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:148
|
||||
msgid "Custom Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:158
|
||||
msgid "ZFS Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:170
|
||||
msgid "Install"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:180
|
||||
msgid "Installation Progress"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:187
|
||||
msgid "Progress Bar"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/interface_controller.py:201
|
||||
#: install_station/interface_controller.py:206
|
||||
#: install_station/network_setup.py:110
|
||||
msgid "Network Setup"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:20
|
||||
msgid "Select the language you want to use with GhostBSD."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:64 install_station/welcome_live.py:110
|
||||
#: install_station/welcome_live.py:127
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/language.py:79
|
||||
msgid "Welcome To GhostBSD!"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:69 install_station/network_setup.py:129
|
||||
msgid "Network card connected to the internet"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:75 install_station/network_setup.py:135
|
||||
msgid "Network card not connected to the internet"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:78 install_station/network_setup.py:138
|
||||
msgid "No network card detected"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:86 install_station/network_setup.py:146
|
||||
msgid "WiFi card detected and connected to an access point"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:90 install_station/network_setup.py:150
|
||||
msgid "WiFi card detected but not connected to an access point"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:93 install_station/network_setup.py:153
|
||||
msgid "WiFi card not detected or not supported"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:258
|
||||
msgid "Wi-Fi Network Authentication Required"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:270
|
||||
#, python-brace-format
|
||||
msgid "{ssid} Wi-Fi Network Authentication failed"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:272
|
||||
#, python-brace-format
|
||||
msgid "Authentication required by {ssid} Wi-Fi Network"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:275
|
||||
msgid "Password:"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/network_setup.py:278
|
||||
msgid "Show password"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:164
|
||||
msgid ""
|
||||
"Please select 1 or more drive for stripe (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:171
|
||||
msgid "Please select 2 drive for mirroring (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:179
|
||||
msgid "Please select 3 drive for RAIDZ1 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:186
|
||||
msgid "Please select 4 drive for RAIDZ2 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:193
|
||||
msgid "Please select 5 drive for RAIDZ3 (select the smallest disk first)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:296
|
||||
msgid "Disk"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:303
|
||||
msgid "Size(MB)"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:309
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:313
|
||||
msgid "Check"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:326
|
||||
msgid "Please select one drive"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:331
|
||||
msgid "<b>Pool Type</b>"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:335
|
||||
msgid "1+ disks Stripe"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:336
|
||||
msgid "2+ disks Mirror"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:337
|
||||
msgid "3 disks RAIDZ1"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:338
|
||||
msgid "4 disks RAIDZ2"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:339
|
||||
msgid "5 disks RAIDZ3"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:349
|
||||
msgid "<b>Pool Name</b>"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:369
|
||||
msgid "Encrypt Disk"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:373
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:380
|
||||
msgid "Verify it"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:541
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:552
|
||||
msgid "Smallest disk need to be SELECTED first!\n"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/use_zfs.py:553
|
||||
msgid "All the disk selected will reset."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:16
|
||||
msgid ""
|
||||
"To run GhostBSD without installing, select \"Try GhostBSD.\"\n"
|
||||
"\n"
|
||||
"To install GhostBSD on your computer hard disk drive, click \"Install "
|
||||
"GhostBSD.\"\n"
|
||||
"\n"
|
||||
"Note: Language selection only works when selecting \"Try GhostBSD.\"\n"
|
||||
" When installing GhostBSD, the installation program is only in English."
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:95 install_station/welcome_live.py:242
|
||||
msgid "Install GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:98 install_station/welcome_live.py:246
|
||||
msgid "Try GhostBSD"
|
||||
msgstr ""
|
||||
|
||||
#: install_station/welcome_live.py:101
|
||||
msgid ""
|
||||
"To run GhostBSD without installing, select \"Try GhostBSD.\"\n"
|
||||
" \n"
|
||||
"\n"
|
||||
"To install GhostBSD on your computer hard disk drive, click \"Install "
|
||||
"GhostBSD.\"\n"
|
||||
"\n"
|
||||
"Note: Language selection only works when selecting \"Try GhostBSD.\"\n"
|
||||
" When installing GhostBSD, the installation program is only in English."
|
||||
msgstr ""
|
||||
Reference in New Issue
Block a user