From 33628a27d6b1bcb8df4a0980727ce094657ae9a3 Mon Sep 17 00:00:00 2001 From: Ing Date: Mon, 9 Oct 2023 14:51:18 +0800 Subject: [PATCH] add kernelpanic --- files/board/arpl/overlayfs/opt/arpl/boot.sh | 13 +- files/board/arpl/overlayfs/opt/arpl/init.sh | 1 + .../arpl/overlayfs/opt/arpl/lang/arpl.pot | 597 +++++++++--------- .../arpl/overlayfs/opt/arpl/lang/zh_CN.mo | Bin 21896 -> 22286 bytes .../arpl/overlayfs/opt/arpl/lang/zh_CN.po | 581 ++++++++--------- .../arpl/overlayfs/opt/arpl/lang/zh_HK.mo | Bin 21839 -> 22228 bytes .../arpl/overlayfs/opt/arpl/lang/zh_HK.po | 583 ++++++++--------- .../arpl/overlayfs/opt/arpl/lang/zh_TW.mo | Bin 22804 -> 23189 bytes .../arpl/overlayfs/opt/arpl/lang/zh_TW.po | 31 +- files/board/arpl/overlayfs/opt/arpl/menu.sh | 31 +- 10 files changed, 944 insertions(+), 893 deletions(-) diff --git a/files/board/arpl/overlayfs/opt/arpl/boot.sh b/files/board/arpl/overlayfs/opt/arpl/boot.sh index fdc017f6..bd87c549 100755 --- a/files/board/arpl/overlayfs/opt/arpl/boot.sh +++ b/files/board/arpl/overlayfs/opt/arpl/boot.sh @@ -39,7 +39,7 @@ if [ "$(sha256sum "${ORI_ZIMAGE_FILE}" | awk '{print$1}')" != "${ZIMAGE_HASH}" ] /opt/arpl/zimage-patch.sh if [ $? -ne 0 ]; then dialog --backtitle "$(backtitle)" --colors --title "$(TEXT "Error")" \ - --msgbox "$(TEXT "zImage not patched:\n")$(<"${LOG_FILE}")" 12 70 + --msgbox "$(TEXT "zImage not patched,\nPlease upgrade the bootloader version and try again.\nPatch error:\n")$(<"${LOG_FILE}")" 12 70 exit 1 fi fi @@ -52,7 +52,7 @@ if [ "${RAMDISK_HASH_CUR}" != "${RAMDISK_HASH}" ]; then /opt/arpl/ramdisk-patch.sh if [ $? -ne 0 ]; then dialog --backtitle "$(backtitle)" --colors --title "$(TEXT "Error")" \ - --msgbox "$(TEXT "Ramdisk not patched:\n")$(<"${LOG_FILE}")" 12 70 + --msgbox "$(TEXT "Ramdisk not patched,\nPlease upgrade the bootloader version and try again.\nPatch error:\n")$(<"${LOG_FILE}")" 12 70 exit 1 fi # Update SHA256 hash @@ -78,7 +78,7 @@ echo -e "$(TEXT "CPU: ") \033[1;36m${CPU}\033[0m" echo -e "$(TEXT "MEM: ") \033[1;36m${MEM}\033[0m" if [ ! -f "${MODEL_CONFIG_PATH}/${MODEL}.yml" ] || [ -z "$(readConfigKey "productvers.[${PRODUCTVER}]" "${MODEL_CONFIG_PATH}/${MODEL}.yml")" ]; then - echo -e "\033[1;33m*** $(printf "$(TEXT "The current version of arpl does not support booting %s-%s, please rebuild.")" "${MODEL}" "${PRODUCTVER}") ***\033[0m" + echo -e "\033[1;33m*** $(printf "$(TEXT "The current version of bootloader does not support booting %s-%s, please upgrade and rebuild.")" "${MODEL}" "${PRODUCTVER}") ***\033[0m" exit 1 fi @@ -109,6 +109,7 @@ done < <(readConfigMap "cmdline" "${USER_CONFIG_FILE}") # KVER=$(readModelKey "${MODEL}" "productvers.[${PRODUCTVER}].kver") +KERNELPANIC="$(readConfigKey "kernelpanic" "${USER_CONFIG_FILE}")" if [ ! "${BUS}" = "usb" ]; then LOADER_DEVICE_NAME=$(echo ${LOADER_DISK} | sed 's|/dev/||') @@ -122,7 +123,7 @@ CMDLINE_LINE="" grep -q "force_junior" /proc/cmdline && CMDLINE_LINE+="force_junior " [ ${EFI} -eq 1 ] && CMDLINE_LINE+="withefi " || CMDLINE_LINE+="noefi " [ ! "${BUS}" = "usb" ] && CMDLINE_LINE+="synoboot_satadom=${DOM} dom_szmax=${SIZE} " -CMDLINE_LINE+="console=ttyS0,115200n8 earlyprintk earlycon=uart8250,io,0x3f8,115200n8 root=/dev/md0 skip_vender_mac_interfaces=0,1,2,3,4,5,6,7 loglevel=15 log_buf_len=32M" +CMDLINE_LINE+="panic=${KERNELPANIC:-0} console=ttyS0,115200n8 earlyprintk earlycon=uart8250,io,0x3f8,115200n8 root=/dev/md0 skip_vender_mac_interfaces=0,1,2,3,4,5,6,7 loglevel=15 log_buf_len=32M" for KEY in ${!CMDLINE[@]}; do VALUE="${CMDLINE[${KEY}]}" CMDLINE_LINE+=" ${KEY}" @@ -194,11 +195,11 @@ else w | awk '{print $1" "$2" "$4" "$5" "$6}' >WB MSG="" while test ${BOOTWAIT} -ge 0; do - MSG="$(printf "\033[1;33m$(TEXT "%2ds (accessing arpl will interrupt boot)")\033[0m" "${BOOTWAIT}")" + MSG="$(printf "\033[1;33m$(TEXT "%2ds (Changing access(ssh/web) status will interrupt boot)")\033[0m" "${BOOTWAIT}")" echo -en "\r${MSG}" w | awk '{print $1" "$2" "$4" "$5" "$6}' >WC if ! diff WB WC >/dev/null 2>&1; then - echo -en "\r\033[1;33m$(TEXT "A new access is connected, the boot process is interrupted.")\033[0m\n" + echo -en "\r\033[1;33m$(TEXT "access(ssh/web) status has changed and booting is interrupted.")\033[0m\n" rm -f WB WC exit 0 fi diff --git a/files/board/arpl/overlayfs/opt/arpl/init.sh b/files/board/arpl/overlayfs/opt/arpl/init.sh index a3f786c6..7bf862bd 100755 --- a/files/board/arpl/overlayfs/opt/arpl/init.sh +++ b/files/board/arpl/overlayfs/opt/arpl/init.sh @@ -81,6 +81,7 @@ if [ ! -f "${USER_CONFIG_FILE}" ]; then writeConfigKey "bootwait" "10" "${USER_CONFIG_FILE}" writeConfigKey "bootipwait" "10" "${USER_CONFIG_FILE}" writeConfigKey "kernelway" "power" "${USER_CONFIG_FILE}" + writeConfigKey "kernelpanic" "5" "${USER_CONFIG_FILE}" writeConfigKey "odp" "false" "${USER_CONFIG_FILE}" writeConfigKey "model" "" "${USER_CONFIG_FILE}" writeConfigKey "productver" "" "${USER_CONFIG_FILE}" diff --git a/files/board/arpl/overlayfs/opt/arpl/lang/arpl.pot b/files/board/arpl/overlayfs/opt/arpl/lang/arpl.pot index 8a97c650..6847e57c 100644 --- a/files/board/arpl/overlayfs/opt/arpl/lang/arpl.pot +++ b/files/board/arpl/overlayfs/opt/arpl/lang/arpl.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-07 22:31+0800\n" +"POT-Creation-Date: 2023-10-09 14:30+0800\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: boot.sh:8 init.sh:159 +#: boot.sh:8 init.sh:160 msgid "Loader is not configured!" msgstr "" @@ -29,21 +29,25 @@ msgstr "" msgid "DSM zImage changed" msgstr "" -#: boot.sh:41 boot.sh:54 menu.sh:773 menu.sh:781 menu.sh:807 menu.sh:835 -#: menu.sh:847 menu.sh:871 menu.sh:879 menu.sh:930 menu.sh:943 menu.sh:950 +#: boot.sh:41 boot.sh:54 menu.sh:775 menu.sh:783 menu.sh:809 menu.sh:838 +#: menu.sh:850 menu.sh:874 menu.sh:882 menu.sh:933 menu.sh:946 menu.sh:953 msgid "Error" msgstr "" -#: boot.sh:42 menu.sh:944 -msgid "zImage not patched:\\n" +#: boot.sh:42 menu.sh:947 +msgid "" +"zImage not patched,\\nPlease upgrade the bootloader version and try again." +"\\nPatch error:\\n" msgstr "" #: boot.sh:51 msgid "DSM Ramdisk changed" msgstr "" -#: boot.sh:55 menu.sh:951 -msgid "Ramdisk not patched:\\n" +#: boot.sh:55 menu.sh:954 +msgid "" +"Ramdisk not patched,\\nPlease upgrade the bootloader version and try again." +"\\nPatch error:\\n" msgstr "" #: boot.sh:73 @@ -72,66 +76,67 @@ msgstr "" #: boot.sh:81 msgid "" -"The current version of arpl does not support booting %s-%s, please rebuild." +"The current version of bootloader does not support booting %s-%s, please " +"upgrade and rebuild." msgstr "" -#: boot.sh:131 +#: boot.sh:132 msgid "Cmdline:\\n" msgstr "" -#: boot.sh:137 +#: boot.sh:138 msgid "Reboot to boot directly in DSM" msgstr "" -#: boot.sh:143 init.sh:172 +#: boot.sh:144 init.sh:173 msgid "Detected %s network cards." msgstr "" -#: boot.sh:144 init.sh:173 +#: boot.sh:145 init.sh:174 msgid "Checking Connect." msgstr "" -#: boot.sh:164 +#: boot.sh:165 msgid "Waiting IP.(For reference only)" msgstr "" -#: boot.sh:171 init.sh:198 +#: boot.sh:172 init.sh:199 msgid "DOWN" msgstr "" -#: boot.sh:175 init.sh:202 +#: boot.sh:176 init.sh:203 msgid "NOT CONNECTED" msgstr "" -#: boot.sh:179 init.sh:206 +#: boot.sh:180 init.sh:207 msgid "TIMEOUT (Please check the IP on the router.)" msgstr "" -#: boot.sh:185 +#: boot.sh:186 msgid "Access \\033[1;34mhttp://%s:5000\\033[0m to connect the DSM via web." msgstr "" -#: boot.sh:197 -msgid "%2ds (accessing arpl will interrupt boot)" +#: boot.sh:198 +msgid "%2ds (Changing access(ssh/web) status will interrupt boot)" msgstr "" -#: boot.sh:201 -msgid "A new access is connected, the boot process is interrupted." +#: boot.sh:202 +msgid "access(ssh/web) status has changed and booting is interrupted." msgstr "" -#: boot.sh:211 +#: boot.sh:212 msgid "Loading DSM kernel..." msgstr "" -#: boot.sh:215 +#: boot.sh:216 msgid "Warning, running kexec with --noefi param, strange things will happen!!" msgstr "" -#: boot.sh:220 +#: boot.sh:221 msgid "Booting..." msgstr "" -#: boot.sh:222 +#: boot.sh:223 msgid "" "[This interface will not be operational.\\nPlease wait for a few minutes " "before using the http://find.synology.com/ or Synology Assistant find DSM " @@ -158,996 +163,1000 @@ msgstr "" msgid "Network devices not found!" msgstr "" -#: init.sh:126 +#: init.sh:127 msgid "Loader disk neither USB or DoM" msgstr "" -#: init.sh:134 +#: init.sh:135 msgid "Loader disk:" msgstr "" -#: init.sh:141 +#: init.sh:142 msgid "Resizing %s" msgstr "" -#: init.sh:152 +#: init.sh:153 msgid "Loading keymap" msgstr "" -#: init.sh:162 +#: init.sh:163 msgid "User requested edit settings." msgstr "" -#: init.sh:191 +#: init.sh:192 msgid "Waiting IP." msgstr "" -#: init.sh:212 +#: init.sh:213 msgid "" "Access \\033[1;34mhttp://%s:7681\\033[0m to configure the loader via web " "terminal." msgstr "" -#: init.sh:222 +#: init.sh:223 msgid "Call \\033[1;32mmenu.sh\\033[0m to configure loader" msgstr "" -#: init.sh:224 +#: init.sh:225 msgid "User config is on" msgstr "" -#: init.sh:225 +#: init.sh:226 msgid "Default SSH Root password is" msgstr "" -#: init.sh:231 +#: init.sh:232 msgid "" "You have less than 4GB of RAM, if errors occur in loader creation, please " "increase the amount of memory." msgstr "" -#: menu.sh:88 +#: menu.sh:89 msgid "Model" msgstr "" -#: menu.sh:89 +#: menu.sh:90 msgid "Reading models" msgstr "" -#: menu.sh:119 +#: menu.sh:120 msgid "Disable flags restriction" msgstr "" -#: menu.sh:120 +#: menu.sh:121 msgid "Show all models" msgstr "" -#: menu.sh:122 +#: menu.sh:123 msgid "Choose the model" msgstr "" -#: menu.sh:169 +#: menu.sh:170 msgid "Choose a product version" msgstr "" -#: menu.sh:179 menu.sh:185 menu.sh:190 menu.sh:196 menu.sh:222 menu.sh:242 +#: menu.sh:180 menu.sh:186 menu.sh:191 menu.sh:197 menu.sh:223 menu.sh:243 msgid "Product Version" msgstr "" -#: menu.sh:180 +#: menu.sh:181 msgid "" "The current version has been set to %s. Do you want to reset the version?" msgstr "" -#: menu.sh:186 +#: menu.sh:187 msgid "" "This version does not support UEFI startup, Please select another version or " "switch the startup mode." msgstr "" -#: menu.sh:191 +#: menu.sh:192 msgid "" "This version only support usb startup, Please select another version or " "switch the startup mode." msgstr "" -#: menu.sh:197 +#: menu.sh:198 msgid "Get pat data .." msgstr "" -#: menu.sh:216 +#: menu.sh:217 msgid "" "Failed to get pat data,\\nPlease manually fill in the URL and md5sum of the " "corresponding version of pat." msgstr "" -#: menu.sh:220 +#: menu.sh:221 msgid "Successfully to get pat data,\\nPlease confirm or modify as needed." msgstr "" -#: menu.sh:223 +#: menu.sh:224 msgid "Retry" msgstr "" -#: menu.sh:243 +#: menu.sh:244 msgid "Reconfiguring Synoinfo, Addons and Modules" msgstr "" -#: menu.sh:286 menu.sh:424 menu.sh:561 menu.sh:678 menu.sh:1765 +#: menu.sh:287 menu.sh:425 menu.sh:562 menu.sh:679 menu.sh:1784 msgid "Choose a option" msgstr "" -#: menu.sh:287 +#: menu.sh:288 msgid "Add an addon" msgstr "" -#: menu.sh:288 +#: menu.sh:289 msgid "Delete addon(s)" msgstr "" -#: menu.sh:289 +#: menu.sh:290 msgid "Show user addons" msgstr "" -#: menu.sh:290 +#: menu.sh:291 msgid "Show all available addons" msgstr "" -#: menu.sh:291 +#: menu.sh:292 msgid "Upload a external addon" msgstr "" -#: menu.sh:292 menu.sh:429 menu.sh:557 menu.sh:673 menu.sh:1003 menu.sh:1762 -#: menu.sh:1940 menu.sh:2012 +#: menu.sh:293 menu.sh:430 menu.sh:558 menu.sh:674 menu.sh:1007 menu.sh:1781 +#: menu.sh:1959 menu.sh:2031 msgid "Exit" msgstr "" -#: menu.sh:304 menu.sh:309 menu.sh:315 menu.sh:327 menu.sh:335 menu.sh:353 -#: menu.sh:367 menu.sh:372 menu.sh:376 menu.sh:390 menu.sh:394 menu.sh:402 -#: menu.sh:405 +#: menu.sh:305 menu.sh:310 menu.sh:316 menu.sh:328 menu.sh:336 menu.sh:354 +#: menu.sh:368 menu.sh:373 menu.sh:377 menu.sh:391 menu.sh:395 menu.sh:403 +#: menu.sh:406 msgid "Addons" msgstr "" -#: menu.sh:305 +#: menu.sh:306 msgid "No available addons to add" msgstr "" -#: menu.sh:310 +#: menu.sh:311 msgid "Select an addon" msgstr "" -#: menu.sh:316 +#: menu.sh:317 msgid "Type a optional params to addon" msgstr "" -#: menu.sh:328 +#: menu.sh:329 msgid "No user addons to remove" msgstr "" -#: menu.sh:336 +#: menu.sh:337 msgid "Select addon to remove" msgstr "" -#: menu.sh:373 menu.sh:1307 menu.sh:1338 menu.sh:1371 menu.sh:1839 +#: menu.sh:374 menu.sh:1326 menu.sh:1357 menu.sh:1390 menu.sh:1858 msgid "This feature is only available when accessed via web/ssh." msgstr "" -#: menu.sh:377 +#: menu.sh:378 msgid "Please upload the *.addons file." msgstr "" -#: menu.sh:391 menu.sh:529 menu.sh:1866 menu.sh:1880 +#: menu.sh:392 menu.sh:530 menu.sh:1885 menu.sh:1899 msgid "Not a valid file, please try again!" msgstr "" -#: menu.sh:395 +#: menu.sh:396 msgid "The addon already exists. Do you want to overwrite it?" msgstr "" -#: menu.sh:403 +#: menu.sh:404 msgid "Addon '%s' added to loader, Please enable it in 'Add an addon' menu." msgstr "" -#: menu.sh:406 +#: menu.sh:407 msgid "File format not recognized!" msgstr "" -#: menu.sh:425 +#: menu.sh:426 msgid "Show/Select modules" msgstr "" -#: menu.sh:426 +#: menu.sh:427 msgid "Select loaded modules" msgstr "" -#: menu.sh:427 +#: menu.sh:428 msgid "Upload a external module" msgstr "" -#: menu.sh:428 +#: menu.sh:429 msgid "Priority use of official drivers:" msgstr "" -#: menu.sh:435 menu.sh:448 menu.sh:485 menu.sh:505 menu.sh:508 menu.sh:524 -#: menu.sh:528 +#: menu.sh:436 menu.sh:449 menu.sh:486 menu.sh:506 menu.sh:509 menu.sh:525 +#: menu.sh:529 msgid "Modules" msgstr "" -#: menu.sh:436 +#: menu.sh:437 msgid "Reading modules" msgstr "" -#: menu.sh:449 +#: menu.sh:450 msgid "Select all" msgstr "" -#: menu.sh:450 +#: menu.sh:451 msgid "Deselect all" msgstr "" -#: menu.sh:451 +#: menu.sh:452 msgid "Select modules to include" msgstr "" -#: menu.sh:486 +#: menu.sh:487 msgid "Selecting loaded modules" msgstr "" -#: menu.sh:500 +#: menu.sh:501 msgid "" "This function is experimental and dangerous. If you don't know much, please " "exit.\\n" msgstr "" -#: menu.sh:501 +#: menu.sh:502 msgid "" "The imported .ko of this function will be implanted into the corresponding " "arch's modules package, which will affect all models of the arch.\\n" msgstr "" -#: menu.sh:502 +#: menu.sh:503 msgid "" "This program will not determine the availability of imported modules or even " "make type judgments, as please double check if it is correct.\\n" msgstr "" -#: menu.sh:503 +#: menu.sh:504 msgid "" "If you want to remove it, please go to the \"Update Menu\" -> \"Update " "modules\" to forcibly update the modules. All imports will be reset.\\n" msgstr "" -#: menu.sh:504 +#: menu.sh:505 msgid "Do you want to continue?" msgstr "" -#: menu.sh:509 +#: menu.sh:510 msgid "Please upload the *.ko file." msgstr "" -#: menu.sh:525 +#: menu.sh:526 msgid "Module '%s' added to %s-%s" msgstr "" -#: menu.sh:550 +#: menu.sh:551 msgid "Add/edit a cmdline item" msgstr "" -#: menu.sh:551 +#: menu.sh:552 msgid "Delete cmdline item(s)" msgstr "" -#: menu.sh:553 +#: menu.sh:554 msgid "Define SN/MAC" msgstr "" -#: menu.sh:555 +#: menu.sh:556 msgid "Show user added cmdline" msgstr "" -#: menu.sh:556 +#: menu.sh:557 msgid "Show model inherent cmdline" msgstr "" -#: menu.sh:566 menu.sh:572 menu.sh:582 menu.sh:590 menu.sh:606 menu.sh:616 -#: menu.sh:645 menu.sh:653 +#: menu.sh:567 menu.sh:573 menu.sh:583 menu.sh:591 menu.sh:607 menu.sh:617 +#: menu.sh:646 menu.sh:654 msgid "Cmdline" msgstr "" -#: menu.sh:567 +#: menu.sh:568 msgid "Type a name of cmdline" msgstr "" -#: menu.sh:573 +#: menu.sh:574 msgid "Type a value of '%s' cmdline" msgstr "" -#: menu.sh:583 +#: menu.sh:584 msgid "No user cmdline to remove" msgstr "" -#: menu.sh:591 +#: menu.sh:592 msgid "Select cmdline to remove" msgstr "" -#: menu.sh:602 +#: menu.sh:603 msgid "Note: (MAC will not be set to NIC)" msgstr "" -#: menu.sh:607 +#: menu.sh:608 msgid "Random" msgstr "" -#: menu.sh:617 +#: menu.sh:618 msgid "Invalid SN/MAC, retry?" msgstr "" -#: menu.sh:670 +#: menu.sh:671 msgid "Add/edit a synoinfo item" msgstr "" -#: menu.sh:671 +#: menu.sh:672 msgid "Delete synoinfo item(s)" msgstr "" -#: menu.sh:672 +#: menu.sh:673 msgid "Show synoinfo entries" msgstr "" -#: menu.sh:683 menu.sh:689 menu.sh:700 menu.sh:708 menu.sh:725 +#: menu.sh:684 menu.sh:690 menu.sh:701 menu.sh:709 menu.sh:726 msgid "Synoinfo" msgstr "" -#: menu.sh:684 +#: menu.sh:685 msgid "Type a name of synoinfo entry" msgstr "" -#: menu.sh:690 +#: menu.sh:691 msgid "Type a value of '%s' synoinfo entry" msgstr "" -#: menu.sh:701 +#: menu.sh:702 msgid "No synoinfo entries to remove" msgstr "" -#: menu.sh:709 +#: menu.sh:710 msgid "Select synoinfo entry to remove" msgstr "" -#: menu.sh:748 +#: menu.sh:749 msgid "%s cached." msgstr "" -#: menu.sh:752 +#: menu.sh:753 msgid "Cleaning cache" msgstr "" -#: menu.sh:759 +#: menu.sh:760 msgid "" "Based on the current network situation, switch to %s mirror to downloading." msgstr "" -#: menu.sh:763 +#: menu.sh:764 msgid "Downloading %s" msgstr "" -#: menu.sh:774 menu.sh:836 -msgid "Check internet or cache disk space" +#: menu.sh:774 menu.sh:837 +msgid "Check internet or cache disk space.\\nError: %d" msgstr "" -#: menu.sh:779 +#: menu.sh:781 msgid "Checking hash of %s: " msgstr "" -#: menu.sh:782 +#: menu.sh:784 msgid "md5 Hash of pat not match, try again!" msgstr "" -#: menu.sh:786 menu.sh:888 menu.sh:898 +#: menu.sh:788 menu.sh:891 menu.sh:901 msgid "OK" msgstr "" -#: menu.sh:790 +#: menu.sh:792 msgid "Disassembling %s: " msgstr "" -#: menu.sh:795 +#: menu.sh:797 msgid "Uncompressed tar" msgstr "" -#: menu.sh:799 +#: menu.sh:801 msgid "Compressed tar" msgstr "" -#: menu.sh:803 +#: menu.sh:805 msgid "Encrypted" msgstr "" -#: menu.sh:808 +#: menu.sh:810 msgid "" "Could not determine if pat file is encrypted or not, maybe corrupted, try " "again!" msgstr "" -#: menu.sh:818 +#: menu.sh:820 msgid "Extractor cached." msgstr "" -#: menu.sh:825 +#: menu.sh:827 msgid "Downloading old pat to extract synology .pat extractor..." msgstr "" -#: menu.sh:865 menu.sh:868 +#: menu.sh:868 menu.sh:871 msgid "Extracting..." msgstr "" -#: menu.sh:880 +#: menu.sh:883 msgid "pat Invalid, try again!" msgstr "" -#: menu.sh:883 +#: menu.sh:886 msgid "Setting hash: " msgstr "" -#: menu.sh:890 +#: menu.sh:893 msgid "Copying files: " msgstr "" -#: menu.sh:931 +#: menu.sh:934 msgid "Addon %s not found!" msgstr "" -#: menu.sh:957 menu.sh:1991 +#: menu.sh:960 menu.sh:2010 msgid "Cleaning" msgstr "" -#: menu.sh:959 +#: menu.sh:962 msgid "Ready!" msgstr "" -#: menu.sh:972 +#: menu.sh:975 msgid "Switch LKM version:" msgstr "" -#: menu.sh:975 +#: menu.sh:978 msgid "Switch direct boot:" msgstr "" -#: menu.sh:977 +#: menu.sh:980 msgid "Timeout of get ip in boot:" msgstr "" -#: menu.sh:978 +#: menu.sh:981 msgid "Timeout of boot wait:" msgstr "" -#: menu.sh:979 +#: menu.sh:982 msgid "kernel switching method:" msgstr "" -#: menu.sh:982 -msgid "Set static IP" -msgstr "" - #: menu.sh:983 -msgid "Edit user config file manually" -msgstr "" - -#: menu.sh:984 -msgid "Edit grub.cfg file manually" -msgstr "" - -#: menu.sh:985 -msgid "Try to recovery a DSM installed system" +msgid "Reboot on kernel panic:" msgstr "" #: menu.sh:986 -msgid "Show SATA(s) # ports and drives" +msgid "Set static IP" +msgstr "" + +#: menu.sh:987 +msgid "Edit user config file manually" msgstr "" #: menu.sh:988 -msgid "show/modify the current pat data" +msgid "Edit grub.cfg file manually" +msgstr "" + +#: menu.sh:989 +msgid "Try to recovery a DSM installed system" msgstr "" #: menu.sh:990 -msgid "Allow downgrade installation" -msgstr "" - -#: menu.sh:991 -msgid "Format disk(s) # Without loader disk" +msgid "Show SATA(s) # ports and drives" msgstr "" #: menu.sh:992 -msgid "Reset DSM system password" +msgid "show/modify the current pat data" msgstr "" -#: menu.sh:993 -msgid "Save modifications of '/opt/arpl'" +#: menu.sh:994 +msgid "Allow downgrade installation" msgstr "" #: menu.sh:995 -msgid "Custom dts file # Need rebuild" +msgid "Format disk(s) # Without loader disk" msgstr "" -#: menu.sh:998 -msgid "Backup bootloader disk # test" +#: menu.sh:996 +msgid "Reset DSM system password" +msgstr "" + +#: menu.sh:997 +msgid "Save modifications of '/opt/arpl'" msgstr "" #: menu.sh:999 -msgid "Restore bootloader disk # test" -msgstr "" - -#: menu.sh:1001 -msgid "Install development tools" +msgid "Custom dts file # Need rebuild" msgstr "" #: menu.sh:1002 -msgid "Show dsm logo:" +msgid "Backup bootloader disk # test" msgstr "" -#: menu.sh:1005 menu.sh:1023 menu.sh:1035 menu.sh:1063 menu.sh:1087 -#: menu.sh:1151 menu.sh:1158 menu.sh:1176 menu.sh:1189 menu.sh:1192 -#: menu.sh:1202 menu.sh:1203 menu.sh:1208 menu.sh:1212 menu.sh:1223 -#: menu.sh:1225 menu.sh:1242 menu.sh:1247 menu.sh:1255 menu.sh:1261 -#: menu.sh:1274 menu.sh:1277 menu.sh:1283 menu.sh:1286 menu.sh:1301 -#: menu.sh:1306 menu.sh:1310 menu.sh:1325 menu.sh:1330 menu.sh:1337 -#: menu.sh:1341 menu.sh:1344 menu.sh:1349 menu.sh:1359 menu.sh:1364 -#: menu.sh:1370 menu.sh:1374 menu.sh:1391 menu.sh:1394 menu.sh:1400 -#: menu.sh:1408 menu.sh:1416 menu.sh:1425 menu.sh:1427 -msgid "Advanced" +#: menu.sh:1003 +msgid "Restore bootloader disk # test" +msgstr "" + +#: menu.sh:1005 +msgid "Install development tools" msgstr "" #: menu.sh:1006 +msgid "Show dsm logo:" +msgstr "" + +#: menu.sh:1009 menu.sh:1027 menu.sh:1039 menu.sh:1059 menu.sh:1082 +#: menu.sh:1106 menu.sh:1170 menu.sh:1177 menu.sh:1195 menu.sh:1208 +#: menu.sh:1211 menu.sh:1221 menu.sh:1222 menu.sh:1227 menu.sh:1231 +#: menu.sh:1242 menu.sh:1244 menu.sh:1261 menu.sh:1266 menu.sh:1274 +#: menu.sh:1280 menu.sh:1293 menu.sh:1296 menu.sh:1302 menu.sh:1305 +#: menu.sh:1320 menu.sh:1325 menu.sh:1329 menu.sh:1344 menu.sh:1349 +#: menu.sh:1356 menu.sh:1360 menu.sh:1363 menu.sh:1368 menu.sh:1378 +#: menu.sh:1383 menu.sh:1389 menu.sh:1393 menu.sh:1410 menu.sh:1413 +#: menu.sh:1419 menu.sh:1427 menu.sh:1435 menu.sh:1444 menu.sh:1446 +msgid "Advanced" +msgstr "" + +#: menu.sh:1010 msgid "Advanced option" msgstr "" -#: menu.sh:1024 menu.sh:1036 -msgid "Choose a waiting time(seconds)" +#: menu.sh:1028 menu.sh:1040 menu.sh:1060 +msgid "Choose a time(seconds)" msgstr "" -#: menu.sh:1051 +#: menu.sh:1070 msgid "Temporary IP: (UI will not refresh)" msgstr "" -#: menu.sh:1088 +#: menu.sh:1107 msgid "Set IP.." msgstr "" -#: menu.sh:1149 +#: menu.sh:1168 msgid "\\nTotal of ports: %s\\n" msgstr "" -#: menu.sh:1150 +#: menu.sh:1169 msgid "" "\\nPorts with color \\Z1red\\Zn as DUMMY, color \\Z2\\Zbgreen\\Zn has drive " "connected." msgstr "" -#: menu.sh:1157 +#: menu.sh:1176 msgid "pat: (editable)" msgstr "" -#: menu.sh:1173 +#: menu.sh:1192 msgid "" "This feature will allow you to downgrade the installation by removing the " "VERSION file from the first partition of all disks.\\n" msgstr "" -#: menu.sh:1174 +#: menu.sh:1193 msgid "Therefore, please insert all disks before continuing.\\n" msgstr "" -#: menu.sh:1175 menu.sh:1209 +#: menu.sh:1194 menu.sh:1228 msgid "" "Warning:\\nThis operation is irreversible. Please backup important data. Do " "you want to continue?" msgstr "" -#: menu.sh:1190 +#: menu.sh:1209 msgid "Removing ..." msgstr "" -#: menu.sh:1191 +#: menu.sh:1210 msgid "Remove VERSION file for all disks completed." msgstr "" -#: menu.sh:1213 +#: menu.sh:1232 msgid "" "Warning:\\nThe current hds is in raid, do you still want to format them?" msgstr "" -#: menu.sh:1224 +#: menu.sh:1243 msgid "Formatting ..." msgstr "" -#: menu.sh:1226 +#: menu.sh:1245 msgid "Formatting is complete." msgstr "" -#: menu.sh:1243 +#: menu.sh:1262 msgid "The installed Syno system not found in the currently inserted disks!" msgstr "" -#: menu.sh:1248 +#: menu.sh:1267 msgid "Choose a user name" msgstr "" -#: menu.sh:1256 +#: menu.sh:1275 msgid "Type a new password for user '%s'" msgstr "" -#: menu.sh:1262 +#: menu.sh:1281 msgid "Invalid password" msgstr "" -#: menu.sh:1275 +#: menu.sh:1294 msgid "Resetting ..." msgstr "" -#: menu.sh:1278 +#: menu.sh:1297 msgid "Password reset completed." msgstr "" -#: menu.sh:1284 menu.sh:1342 menu.sh:1395 +#: menu.sh:1303 menu.sh:1361 menu.sh:1414 msgid "" "Warning:\\nDo not terminate midway, otherwise it may cause damage to the " "arpl. Do you want to continue?" msgstr "" -#: menu.sh:1287 +#: menu.sh:1306 msgid "Saving ..." msgstr "" -#: menu.sh:1302 +#: menu.sh:1321 msgid "Save is complete." msgstr "" -#: menu.sh:1311 +#: menu.sh:1330 msgid "" "Currently, only dts format files are supported. Please prepare and click to " "confirm uploading.\\n(saved in /mnt/p3/users/)" msgstr "" -#: menu.sh:1326 +#: menu.sh:1345 msgid "Not a valid dts file, please try again!" msgstr "" -#: menu.sh:1331 +#: menu.sh:1350 msgid "A valid dts file, Automatically import at compile time." msgstr "" -#: menu.sh:1345 +#: menu.sh:1364 msgid "Backuping..." msgstr "" -#: menu.sh:1350 +#: menu.sh:1369 msgid "" "Failed to generate backup. There may be insufficient memory. Please clear " "the cache and try again!" msgstr "" -#: menu.sh:1357 +#: menu.sh:1376 msgid "Click on the address above to download." msgstr "" -#: menu.sh:1358 +#: menu.sh:1377 msgid "" "Please confirm the completion of the download before closing this window." msgstr "" -#: menu.sh:1365 +#: menu.sh:1384 msgid "backup is complete." msgstr "" -#: menu.sh:1375 +#: menu.sh:1394 msgid "" "Please upload the backup file.\\nCurrently, zip(github) and img.gz(backup) " "compressed file formats are supported." msgstr "" -#: menu.sh:1392 +#: menu.sh:1411 msgid "Not a valid .zip/.img.gz file, please try again!" msgstr "" -#: menu.sh:1401 +#: menu.sh:1420 msgid "Writing..." msgstr "" -#: menu.sh:1409 +#: menu.sh:1428 msgid "Restore bootloader disk with success to %s!\\nReboot?" msgstr "" -#: menu.sh:1417 +#: menu.sh:1436 msgid "" "This option only installs opkg package management, allowing you to install " "more tools for use and debugging. Do you want to continue?" msgstr "" -#: menu.sh:1426 +#: menu.sh:1445 msgid "opkg installing ..." msgstr "" -#: menu.sh:1428 +#: menu.sh:1447 msgid "" "opkg install is complete. Please reconnect to SSH/web, or execute 'source ~/." "bashrc'" msgstr "" -#: menu.sh:1443 menu.sh:1480 menu.sh:1487 +#: menu.sh:1462 menu.sh:1499 menu.sh:1506 msgid "Try recovery DSM" msgstr "" -#: menu.sh:1444 +#: menu.sh:1463 msgid "Trying to recovery a DSM installed system" msgstr "" -#: menu.sh:1470 +#: menu.sh:1489 msgid "Found a installation:\\nModel: %s\\nProductversion: %s" msgstr "" -#: menu.sh:1474 +#: menu.sh:1493 msgid "\\nSerial: %s" msgstr "" -#: menu.sh:1488 +#: menu.sh:1507 msgid "Unfortunately I couldn't mount the DSM partition!" msgstr "" -#: menu.sh:1496 menu.sh:1502 menu.sh:1525 +#: menu.sh:1515 menu.sh:1521 menu.sh:1544 msgid "Edit with caution" msgstr "" -#: menu.sh:1536 +#: menu.sh:1555 msgid "Alert" msgstr "" -#: menu.sh:1537 +#: menu.sh:1556 msgid "Config changed, would you like to rebuild the loader?" msgstr "" -#: menu.sh:1549 menu.sh:1933 +#: menu.sh:1568 menu.sh:1952 msgid "Choose a language" msgstr "" -#: menu.sh:1563 +#: menu.sh:1582 msgid "Choose a layout" msgstr "" -#: menu.sh:1575 +#: menu.sh:1594 msgid "Choice a keymap" msgstr "" -#: menu.sh:1594 menu.sh:1647 menu.sh:1698 menu.sh:1770 menu.sh:1773 -#: menu.sh:1776 menu.sh:1779 menu.sh:1786 menu.sh:1793 menu.sh:1800 -#: menu.sh:1807 +#: menu.sh:1613 menu.sh:1666 menu.sh:1717 menu.sh:1789 menu.sh:1792 +#: menu.sh:1795 menu.sh:1798 menu.sh:1805 menu.sh:1812 menu.sh:1819 +#: menu.sh:1826 msgid "Update %s" msgstr "" -#: menu.sh:1597 +#: menu.sh:1616 msgid "Checking last version" msgstr "" -#: menu.sh:1610 menu.sh:1613 +#: menu.sh:1629 menu.sh:1632 msgid "Error checking new version" msgstr "" -#: menu.sh:1620 +#: menu.sh:1639 msgid "No new version." msgstr "" -#: menu.sh:1624 +#: menu.sh:1643 msgid "No new version. Actual version is %s\\nForce update?" msgstr "" -#: menu.sh:1629 +#: menu.sh:1648 msgid "Downloading last version" msgstr "" -#: menu.sh:1635 menu.sh:1638 +#: menu.sh:1654 menu.sh:1657 msgid "Error downloading new version" msgstr "" -#: menu.sh:1649 menu.sh:1700 +#: menu.sh:1668 menu.sh:1719 msgid "Extracting last version" msgstr "" -#: menu.sh:1653 +#: menu.sh:1672 msgid "Error extracting update file" msgstr "" -#: menu.sh:1660 +#: menu.sh:1679 msgid "Checksum do not match!" msgstr "" -#: menu.sh:1669 +#: menu.sh:1688 msgid "" "The current version does not support upgrading to the latest update.zip. " "Please remake the bootloader disk!" msgstr "" -#: menu.sh:1674 +#: menu.sh:1693 msgid "Installing new files" msgstr "" -#: menu.sh:1691 +#: menu.sh:1710 msgid "Arpl updated with success to %s!\\nReboot?" msgstr "" -#: menu.sh:1706 +#: menu.sh:1725 msgid "Installing new %s" msgstr "" -#: menu.sh:1735 menu.sh:1738 +#: menu.sh:1754 menu.sh:1757 msgid "%s updated with success!" msgstr "" -#: menu.sh:1752 +#: menu.sh:1771 msgid "Update all" msgstr "" -#: menu.sh:1753 +#: menu.sh:1772 msgid "Update arpl" msgstr "" -#: menu.sh:1754 +#: menu.sh:1773 msgid "Update addons" msgstr "" -#: menu.sh:1755 +#: menu.sh:1774 msgid "Update modules" msgstr "" -#: menu.sh:1756 +#: menu.sh:1775 msgid "Update LKMs" msgstr "" -#: menu.sh:1758 +#: menu.sh:1777 msgid "Set proxy server" msgstr "" -#: menu.sh:1760 +#: menu.sh:1779 msgid "Local upload" msgstr "" -#: menu.sh:1761 +#: menu.sh:1780 msgid "Pre Release:" msgstr "" -#: menu.sh:1770 menu.sh:1793 +#: menu.sh:1789 menu.sh:1812 msgid "addons" msgstr "" -#: menu.sh:1773 menu.sh:1800 +#: menu.sh:1792 menu.sh:1819 msgid "modules" msgstr "" -#: menu.sh:1776 menu.sh:1807 +#: menu.sh:1795 menu.sh:1826 msgid "LKMs" msgstr "" -#: menu.sh:1779 menu.sh:1786 +#: menu.sh:1798 menu.sh:1805 msgid "arpl" msgstr "" -#: menu.sh:1816 menu.sh:1827 menu.sh:1838 menu.sh:1848 menu.sh:1865 -#: menu.sh:1879 +#: menu.sh:1835 menu.sh:1846 menu.sh:1857 menu.sh:1867 menu.sh:1884 +#: menu.sh:1898 msgid "Update" msgstr "" -#: menu.sh:1817 +#: menu.sh:1836 msgid "Please enter a proxy server url" msgstr "" -#: menu.sh:1828 +#: menu.sh:1847 msgid "Invalid proxy server url, continue?" msgstr "" -#: menu.sh:1843 +#: menu.sh:1862 msgid "" "Please keep the attachment name consistent with the attachment name on " "Github.\\n" msgstr "" -#: menu.sh:1844 +#: menu.sh:1863 msgid "Upload update.zip will update arpl.\\n" msgstr "" -#: menu.sh:1845 +#: menu.sh:1864 msgid "Upload addons.zip will update Addons.\\n" msgstr "" -#: menu.sh:1846 +#: menu.sh:1865 msgid "Upload modules.zip will update Modules.\\n" msgstr "" -#: menu.sh:1847 +#: menu.sh:1866 msgid "Upload rp-lkms.zip will update LKMs.\\n" msgstr "" -#: menu.sh:1896 +#: menu.sh:1915 msgid "This person is very lazy and hasn't written anything." msgstr "" -#: menu.sh:1897 +#: menu.sh:1916 msgid "Edit" msgstr "" -#: menu.sh:1914 +#: menu.sh:1933 msgid "Choose a model" msgstr "" -#: menu.sh:1916 +#: menu.sh:1935 msgid "Choose a version" msgstr "" -#: menu.sh:1918 +#: menu.sh:1937 msgid "Addons menu" msgstr "" -#: menu.sh:1919 +#: menu.sh:1938 msgid "Modules menu" msgstr "" -#: menu.sh:1920 +#: menu.sh:1939 msgid "Cmdline menu" msgstr "" -#: menu.sh:1921 +#: menu.sh:1940 msgid "Synoinfo menu" msgstr "" -#: menu.sh:1924 +#: menu.sh:1943 msgid "Advanced menu" msgstr "" -#: menu.sh:1927 +#: menu.sh:1946 msgid "Build the loader" msgstr "" -#: menu.sh:1931 +#: menu.sh:1950 msgid "Boot the loader" msgstr "" -#: menu.sh:1934 +#: menu.sh:1953 msgid "Choose a keymap" msgstr "" -#: menu.sh:1936 +#: menu.sh:1955 msgid "Clean disk cache" msgstr "" -#: menu.sh:1938 +#: menu.sh:1957 msgid "Update menu" msgstr "" -#: menu.sh:1939 +#: menu.sh:1958 msgid "Notepad" msgstr "" -#: menu.sh:1943 +#: menu.sh:1962 msgid "Main menu" msgstr "" -#: menu.sh:2007 +#: menu.sh:2026 msgid "Choose a action" msgstr "" -#: menu.sh:2008 +#: menu.sh:2027 msgid "Poweroff" msgstr "" -#: menu.sh:2009 +#: menu.sh:2028 msgid "Reboot" msgstr "" -#: menu.sh:2010 +#: menu.sh:2029 msgid "Reboot to arpl" msgstr "" -#: menu.sh:2011 +#: menu.sh:2030 msgid "Back to shell" msgstr "" -#: menu.sh:2037 +#: menu.sh:2056 msgid "Call \\033[1;32mmenu.sh\\033[0m to return to menu" msgstr "" diff --git a/files/board/arpl/overlayfs/opt/arpl/lang/zh_CN.mo b/files/board/arpl/overlayfs/opt/arpl/lang/zh_CN.mo index 9d1d3700e4a530a684999b50dae74401c40f289b..b2b368aa8abe3e520d24e052522160191c19f81e 100644 GIT binary patch delta 6362 zcmb{0cXU)$0>|+iNCGKf2)%_7Aw@z6NR9Lk5ebSkBM_1?2|^Mx0TvNPdapxM5nL2O zDPavn2_RKmWI=I30XbHZ5CKK8tYzbVe|Z=6?D3yHXW!vBpZo5-ci(OEP!??WTei#3 z`%$?68pBb|&zMFyr>ZgOl&^=W)|dr#j7h+S7>viU9=?Me@GAC1S6yS0Fcm{_5Aw$x z;X~J7#G3dG_QpUe1C8;TL<%8PJb*mgjK*r1j(6ZB48Xal4lc$R+=jaDJ#37hpdMU~ zi5ODfxqmpSs>RSw|v+H`%C; z&axPKJB{t|GODBDOrw^nDSD?;@KA`r8>p!XWj_6}CTh*oQ)M#g3ek;yb?QSDqqR>_n%X8qN}x;$MKk=O~lp*k=X>9m=F{4vk) zp()*mL3j$aH_oFT^dZu=`5x8LT1}jGTBADF9@X*tQSBr*@ftIZLKYPncoy}*1eY<* za2TqC(@+g8!nU{>HS!N|A(o;>`1qYp!;7&N=g*;L=2g^^p2WNG5^AQ)y%aRkfTqp} zgHbocpbNXBrZNTffGpG|T!8A>M*ICvRD(sRnK^=*nNzm@ENX@>p!UiwRJ-1vDQHTn z(k)$3$J!b-!u#+ZOh!%Z3e-~VLUrgZjK@z=n=zbeqi7P4rp;*717~6-T!^}F2@c>_ zZ(gFntecytT^ZKg8F>n74QF8vZbI$;ut=xp^^wUlk*JRL$5A-K_qBgbuWC+G6NneB zpP&}86g79hA{)h2r{8yDON_-4sJWSo>gp=g6zxF0sftkdoj`4dVhq3r(az$#qS@B! zS{o|#LmY}))G_vaGOB|!QFFNxwWzP49(WivC70~?KVenQYsNUcs1d3|El~rx7j^wW z)cxaQyv_sW*b7#pw)G3B2OUDq#Cg=Vyn*_mmt#*1XF7ELkTnz4f$69R&qK}BYSdyM z!S+~;k6|Nki;C4X3-A#t-os@W&t1Lokk!AX^S8(V>_q)cr0-@wK8W|mu?)Bz^$M%q zik*Xr=*9~;7Q3t05U z>;$TvFOWaxXFdY4WgF*r))qrJ?~2uMAO>p;BkUKc)@;;TO~Z;e32N;(Bm2kfM|JRX zREMkaqhrULwpas4p*lPP^}t1_4zI<2Scs2edBr(%=w@qKYcH;EK<;qzD*_n>zD zKhTAjaU}j5Tlg6>yrVP4v)Ksh@Ltr^A48VkoWmYiIYF-tWBQ;vydJgYTTq+)Fnaa! zy-cA$evKMI!o7|?to>0947MiQ`b-R`J_j}Bvr$X;SJa4iqwYJ21Mq!R`>xJTeN<=G zUl+8cLO+`xs0#)n%WH-pgEezdBRq)lcm_4{Ur__7*2U>aQ)@eGe^mPqTQjVath2f> z|GHo~6&lF~`$az1<@|uHKWFPpt>4;uKNdcS>uRCeiNHqK0=35dQ5{V}?WxhI>obv8 zfbn=KXv#Jsf6Puk((pQJmk;UY%*ZtBEUZoaLe$7NVSU_#nxQkOz4I~F!LLvQ3G8k= zh&pe98nCw)1^rBhp?W&bnuEGv2DZeNsHHiC8sQ0yz|T<+ti+Df$ih+AH9~dtE^8;$ zo)~Pu&p__;nrsT1IxninOHecM0`|hsP$P`wecKGXqaNr+jd&7jrsknKyc;LrF;oZQ zX++ocMcp?X^_+AJ<@sg?1+B$mRL=|19}l7)cocO*DQe{9sI_d^+i5rwwGrQ zpfRZSCZJ}^h>pABGKa z5>_l3s>6ryPP}X_M|I5AmszhwA&P=tKzCy_c11Omj{5n{#s+u*H4`7;Ap8;ou`};g z?V(<%r5cQ?&%^;+}09^XW5#%jEkG_rz}attUIi4 zT0cU~zz?YVD-U!=7>0VF3!7pb>N!JDdu6W5)f9FKaRc(57HLe1z_)E+pF^wE@{_K-LJKIh$^is@ABKwi_P)*xmDlTa5f z##npddj05lIzqRoh)B}U4d=lf3rp$KaQu8lVNBbr@9T|oEJiX>gTd@k&z#iud zbJ6-0Y7YbqaW-W$)D(8Nj>J&Tb5ZwuQEUAo2H|!L#=WTP4qH!G)U*DVDCmY_`^9zC zl>dl&Q0N2BCTfn6oF}3ll#AMw>rmJ2NA3P|s0V&&>wiSeMEHaJ{}hhFuDA>P>Gyww zLN#nR)ahX_WO+;yPR9+X1{yr%tZ_Ql;yefAaV}~Ah3Jn5QSBW?{aoM07%W9yS7Vsd zem#r~ry`AldOiiia3yNDZbp7N=FMTgOJNb-0E%bGbuyRyg|Hnfwh2@mjrnX((wtLs z9<|?IvFF+v>YI)dqODfRPiM|poRago6!?3#VtaLDi&xa@ef18}4C0oSALXM&uHZb5G$Ct94mn74JWd`V<8;E&ojjpm!E+Q25gi+e)|=%rndA-9jkG2;$*bgP za*afhd87kzlPM&X=qMoHkl{Mv_=$W<*iPmdvY5O@3XSiJ@apxo^2f;*a+X98&3U4) zM$IU13Z>Dc2GKErR3{JXgrm8G`Pj;y{_Wr|OmmA|AeYH!M8^vbfBLC?sbeSkS~E0X zXH0KP_?hUZ_a)JxUxSWO4(3_xY|H+r7n?u#K5y%SDC=!GldLC=Y`yT3$>d!ULf$4{ zskRC?={QQJl3z#_GM?N%2H8US?FyVtibx(gL4GC8$oJ&-vC|;!>}w z(t#oP0MT)$L&d*3Ort!ByiOL9S>%0^O-jik(uw?=)FC=D$PN-jV#z0@FBwd9#E=l4 z*$%y@`PfRLNhp=4rle4a%zJWlnTQd)%qn zS!tdaUqr*$g3N~XLwd(1XC+N=r+D11Njd4cDQRw3UWVH>E;~DKLN;f)uF39PPiA(O zDQ1Y8u3FKkGd-@%tUR7MDJRdJ7FRH+ zeXQUAX9QC_46V}1)w*rMJ@LMC9X@PWF|+E@)k7OgmTf6rR9N!V%#zjnikGkV?dup{ zP`y*cf6Z}h=eI*j))khm+Y?>7bybY7taDUBT$d$5@yzhm{MU+?&Mz(6T6|zlasGkQ zg$qhH>?qz>ST=v@)%-QTO=j8Zr?2Mc`-=J|G%B7qx8(WPOJ=SpnY%=-&R<%xc6afL z{NhF15(;khebhh5Huda!-y?|)f^75q3JazruB#F}+&v*Rdm?L@UC`jczJBq4I-KIy lUUfzk>vCGYx_SGR*LRkz-5FOfW@vN2w*PC-6Oyyce*jhzh714z delta 5974 zcmYk<4S3Gw0>|-tGaEBAmW>U2#;}=}nXq9IVzR|e1H4jovZ)l_k8aA{=eOC&(kX3<+FH)kNa#3 zzmgPDy@aUnLt<=7B6pgQ_0s$=h?uDgtF@i)|q zTemi5Bz8jGUx*sOLe$unp+E08>+1`~Y{8zK*oi&xECyq6gfZ>0EjGtN*b>vN(~wCp zPoiG5(z?aEA9Y`qt)E0aw^nuDZ*EYa)5bs2m=+j?>R}?b!y&dl#ae`#p;FX?mSJaH zivf59H3R=bjrbJmx@zo=*HImfV;bFBt7HnZaVhGBe$1nmqyze47u1^dKy`2kY6%`d zO??sSfeTPG@f>Q+x1l=n4l+h_44G6@hkA~0JLX>_Z^>KL!|teh3MS(Ns17VgI&D@W z|IF)rXiAS`V?2-A8$Y04bPaijX&U8pG#>SwR8+_ALv=hm%I!R;h=wUNl;Je2L%nc} z%a|CPf$HE2)B|3@JMm4_$gkiMyp0;+;%Mi&8}Sb6`%p9U5o&4AVF$eGrl6^A$qrKw z+aR4c(Wn~+p$i{GP30`q3(8QN@MToT_S^GEP|y1eH8WqKX6C$YuS3nykEp%k4x}4; za0}FwM4>L|W=%znFcW)W5o&6;qL!)()uFSPfWM+PV;s{)(TqXfWoDvY_yYRk2IM}s z*+gLk4F{1~Hvt`;ACS)IqCN|?+16kIR-$%)=T1(?6Oc(XDX5N4Ld{%0`s3568Cr%q zzt*ptO=%ixZL?7?oQs;7mG=C8Y()JN)Mh$~>QEhOq&HC4 zH;i-c?}&Q-K-BqBsLeeQ-Fnd+3fk4nQ4idP`o6!3gYlTHhcGQ_kHJQmgnIGasF@mt zTJw3>2RGn!Jc%Q4NWAltybQ~!pNePwhfTpZc3wxo~d>{_TN%$CUwe?_j=49#*pgQ&js$=dd3ezYY z$Coj=xAXNog+bK2u#lRezNnGjkA65FLvaGC<9VnKF2Vq;z;U=AbzLCqs)4pcZN@(6 z(&`SQptYKc@jk{p;hZqrlboI&MNRov$WMg1h%C1WW`o>~DVUCKREJNX*8CgPF299$ zU|2u)1ID8UQd}?VKi4)aL_J`Mb(L-3ge_=)4K?KlQEPV^Tj3?teGU3MyF3K-f(fYh z3~L_hTQk?5FU3UOZ=RvRpv)oENN=J>+Gv0?1Km&~=#T2iXlthRajfsSb(M9Kb&vHR z>i(m)eg@rYxMUlCM~yHr#d%;X>U?k1?oPGs>DY$)B-C2ZLv5;3)TUa2x_%w<)i+yF zGj;;+!f!DPU3anm+T~@mYRYz7D^YvmAZp~FV{5EK&5-XvXA^~D81)Vqj{Q(Gk#6gg zPy;AIeM^?2I=afbd7#_5U@r~bI8lY_$aT~RZ(%zOA7pneYGlJu*NsMX^g-(k)Sh?> zb$%^sw{Jpq%!}&qJIGkfNjHTd6vEib8sP-g+83j4T!R|%cGOJ0g&I*c=Hg9M2eSB` z)^&4G_dSDp(MzZo??o-eVN}O1p&z=hQqT);pl*nyHyU{&YAr{h9y|fH6w^^1n2&m} z2lc=WsF~Sn>#w7B`vKGpzH8ghS!ex8+#fMQpL=!O<3o(-So0ll)>-Ppm;7_QTXflld)?<6rg9=ca zs06iCPucc$w!Ycc520qJ3bhm`P&0Ynp1+LRgg;|D-fw*Q!R~<3sGi+}dO#j(SI50K{7lpydcoE!Mlk=n@Hh=xoA2;WyotK8>%C5U z3O1rX2K7TS0b?)+wf5zxwcmlYmg8-GI_myqwtcVlpKc1; z)n`$=`ghb6wjS-6h(Xjxq8{)NYOSBZ##oAhSdO}GjrCRA?nPaH$hKFZX8Z)|J?;w> zw25wGCyW{6yl5n9Qx>2ud>*yyD^M@|(6*mI&BXV}B$%Xh=a+2}vJcG%*bIZmIvs3> z%)W`oC-nU^uHtNCep+*=y-sx~O zhEVU1?J*5CpnUW(o+}{{Zr%O~`GGu5W)nS1Tjh^Ki^N|h^?zon?F+&#Gq0(_!C30I zrph&B0MSm-k>K$E&vHt4k$jTO-(>YCuJHLO;lDWb$4Wl+>(H5KPk%&eiH@6OL4C>j zVrpS_lV5C`XzDrBJj$(I-$|SYT;N<^lj0A|4I&#K_rpfLH3dt$@e6dEFwwd zF*1u}5glG~jXb0Z$1U30<{Ruue3%IxtI1GuoqR>UCg;hYkM^EdLPOo5wy6TIlEtd?la+F|w7!ktVcV zL>*Nmp45>YdAK;9BxI zDIy`{6gf?FJIc? z=+ni=Gd5{lKwnp4V!vKJJ-d=l2iEO6d~x-z`U^KFC&bjO+Ee>tY2D%VHRW5nx-Kl= zePQXgy2FcVw>?w0aYyxmikejw-MybDM>X)=9&priE+rzo`oR3^1FzLqEV*!~tY&rP z#nt;_Yqze5^IlK!H1<>u@8@lrnr(YBH!Z@uK5cbCP|ePbb%)Dq)@`}4c#n7BxM4ot O%JDHie*GTFGyelG\n" "Language-Team: Chinese (simplified) \n" "Language: zh_CN\n" @@ -16,34 +16,38 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: boot.sh:8 init.sh:159 +#: boot.sh:8 init.sh:160 msgid "Loader is not configured!" msgstr "引导未配置!" #: boot.sh:20 init.sh:41 msgid "Welcome to %s" -msgstr "欢迎来到 %s" +msgstr "Welcome to %s" #: boot.sh:38 msgid "DSM zImage changed" msgstr "DSM zImage 已更改" -#: boot.sh:41 boot.sh:54 menu.sh:773 menu.sh:781 menu.sh:807 menu.sh:835 -#: menu.sh:847 menu.sh:871 menu.sh:879 menu.sh:930 menu.sh:943 menu.sh:950 +#: boot.sh:41 boot.sh:54 menu.sh:775 menu.sh:783 menu.sh:809 menu.sh:838 +#: menu.sh:850 menu.sh:874 menu.sh:882 menu.sh:933 menu.sh:946 menu.sh:953 msgid "Error" msgstr "错误" -#: boot.sh:42 menu.sh:944 -msgid "zImage not patched:\\n" -msgstr "zImage打补丁失败:\\n" +#: boot.sh:42 menu.sh:947 +msgid "" +"zImage not patched,\\nPlease upgrade the bootloader version and try again." +"\\nPatch error:\\n" +msgstr "zImage打补丁失败,\\n请升级引导版本并重试.\\nPatch 错误:\\n" #: boot.sh:51 msgid "DSM Ramdisk changed" msgstr "DSM Ramdisk 已更改" -#: boot.sh:55 menu.sh:951 -msgid "Ramdisk not patched:\\n" -msgstr "Ramdisk打补丁失败:\\n" +#: boot.sh:55 menu.sh:954 +msgid "" +"Ramdisk not patched,\\nPlease upgrade the bootloader version and try again." +"\\nPatch error:\\n" +msgstr "Ramdisk打补丁失败,\\n请升级引导版本并重试.\\nPatch 错误:\\n" #: boot.sh:73 msgid "Model:" @@ -71,66 +75,67 @@ msgstr "MEM: " #: boot.sh:81 msgid "" -"The current version of arpl does not support booting %s-%s, please rebuild." -msgstr "当前版本的arpl不支持引导 %s-%s, 请重新编译." +"The current version of bootloader does not support booting %s-%s, please " +"upgrade and rebuild." +msgstr "当前版本的引导盘不支持引导 %s-%s, 请升级并重新编译." -#: boot.sh:131 +#: boot.sh:132 msgid "Cmdline:\\n" msgstr "Cmdline:\\n" -#: boot.sh:137 +#: boot.sh:138 msgid "Reboot to boot directly in DSM" msgstr "重启并直接进入DSM引导" -#: boot.sh:143 init.sh:172 +#: boot.sh:144 init.sh:173 msgid "Detected %s network cards." msgstr "检测到 %s 个网卡." -#: boot.sh:144 init.sh:173 +#: boot.sh:145 init.sh:174 msgid "Checking Connect." msgstr "检查连接." -#: boot.sh:164 +#: boot.sh:165 msgid "Waiting IP.(For reference only)" msgstr "获取 IP.(仅供参考)" -#: boot.sh:171 init.sh:198 +#: boot.sh:172 init.sh:199 msgid "DOWN" msgstr "关闭" -#: boot.sh:175 init.sh:202 +#: boot.sh:176 init.sh:203 msgid "NOT CONNECTED" msgstr "未连接" -#: boot.sh:179 init.sh:206 +#: boot.sh:180 init.sh:207 msgid "TIMEOUT (Please check the IP on the router.)" msgstr "超时 (请检查路由器上的IP.)" -#: boot.sh:185 +#: boot.sh:186 msgid "Access \\033[1;34mhttp://%s:5000\\033[0m to connect the DSM via web." msgstr "在浏览器中访问 \\033[1;34mhttp://%s:5000\\033[0m 链接 DSM." -#: boot.sh:197 -msgid "%2ds (accessing arpl will interrupt boot)" -msgstr "%2ds (访问arpl将中断启动)" +#: boot.sh:198 +msgid "%2ds (Changing access(ssh/web) status will interrupt boot)" +msgstr "%2ds ((ssh/web)连接状态改变将中断启动)" -#: boot.sh:201 -msgid "A new access is connected, the boot process is interrupted." -msgstr "新的连接, 启动过程被中断." +#: boot.sh:202 +msgid "access(ssh/web) status has changed and booting is interrupted." +msgstr "(ssh/web)连接状态已改变, 启动被中断." -#: boot.sh:211 +#: boot.sh:212 msgid "Loading DSM kernel..." msgstr "加载 DSM 内核..." -#: boot.sh:215 +#: boot.sh:216 msgid "Warning, running kexec with --noefi param, strange things will happen!!" msgstr "警告, 使用'--noefi'参数运行'kexec', 可能有不好的事情发生!!" -#: boot.sh:220 +#: boot.sh:221 msgid "Booting..." msgstr "引导中..." -#: boot.sh:222 +#: boot.sh:223 msgid "" "[This interface will not be operational.\\nPlease wait for a few minutes " "before using the http://find.synology.com/ or Synology Assistant find DSM " @@ -157,255 +162,255 @@ msgstr "挂载 %s 失败" msgid "Network devices not found!" msgstr "未找到网卡!" -#: init.sh:126 +#: init.sh:127 msgid "Loader disk neither USB or DoM" msgstr "引导磁盘仅支持 USB 或者 DoM" -#: init.sh:134 +#: init.sh:135 msgid "Loader disk:" msgstr "引导盘:" -#: init.sh:141 +#: init.sh:142 msgid "Resizing %s" msgstr "重置 %s 大小" -#: init.sh:152 +#: init.sh:153 msgid "Loading keymap" msgstr "加载键盘映射" -#: init.sh:162 +#: init.sh:163 msgid "User requested edit settings." msgstr "用户触发编辑设置." -#: init.sh:191 +#: init.sh:192 msgid "Waiting IP." msgstr "获取 IP." -#: init.sh:212 +#: init.sh:213 msgid "" "Access \\033[1;34mhttp://%s:7681\\033[0m to configure the loader via web " "terminal." msgstr "在浏览器中访问 \\033[1;34mhttp://%s:7681\\033[0m 进入WEB终端进行配置." -#: init.sh:222 +#: init.sh:223 msgid "Call \\033[1;32mmenu.sh\\033[0m to configure loader" msgstr "执行 \\033[1;32mmenu.sh\\033[0m 进入设置菜单" -#: init.sh:224 +#: init.sh:225 msgid "User config is on" msgstr "用户配置文件位于" -#: init.sh:225 +#: init.sh:226 msgid "Default SSH Root password is" msgstr "默认SSH的root密码为" -#: init.sh:231 +#: init.sh:232 msgid "" "You have less than 4GB of RAM, if errors occur in loader creation, please " "increase the amount of memory." msgstr "您的RAM不足4GB, 如果在创建引导时出现错误,请增加内存." -#: menu.sh:88 +#: menu.sh:89 msgid "Model" msgstr "型号" -#: menu.sh:89 +#: menu.sh:90 msgid "Reading models" msgstr "读取型号" -#: menu.sh:119 +#: menu.sh:120 msgid "Disable flags restriction" msgstr "禁用标志限制" -#: menu.sh:120 +#: menu.sh:121 msgid "Show all models" msgstr "显示所有型号" -#: menu.sh:122 +#: menu.sh:123 msgid "Choose the model" msgstr "选择型号" -#: menu.sh:169 +#: menu.sh:170 msgid "Choose a product version" msgstr "选择版本" -#: menu.sh:179 menu.sh:185 menu.sh:190 menu.sh:196 menu.sh:222 menu.sh:242 +#: menu.sh:180 menu.sh:186 menu.sh:191 menu.sh:197 menu.sh:223 menu.sh:243 msgid "Product Version" msgstr "版本" -#: menu.sh:180 +#: menu.sh:181 msgid "" "The current version has been set to %s. Do you want to reset the version?" msgstr "当前版本已设置为%s. 是否要重置版本?" -#: menu.sh:186 +#: menu.sh:187 msgid "" "This version does not support UEFI startup, Please select another version or " "switch the startup mode." msgstr "该版本不支持UEFI启动, 请选择其他版本或者切换启动模式." -#: menu.sh:191 +#: menu.sh:192 msgid "" "This version only support usb startup, Please select another version or " "switch the startup mode." msgstr "该版本仅支持 usb 启动, 请选择其他版本或者切换启动模式." -#: menu.sh:197 +#: menu.sh:198 msgid "Get pat data .." msgstr "获取pat数据 .." -#: menu.sh:216 +#: menu.sh:217 msgid "" "Failed to get pat data,\\nPlease manually fill in the URL and md5sum of the " "corresponding version of pat." msgstr "获取pat数据失败,\\n请手动填写相应版本pat的URL和MD5." -#: menu.sh:220 +#: menu.sh:221 msgid "Successfully to get pat data,\\nPlease confirm or modify as needed." msgstr "获取pat数据成功,\\n请确认或者按需修改." -#: menu.sh:223 +#: menu.sh:224 msgid "Retry" msgstr "重试" -#: menu.sh:243 +#: menu.sh:244 msgid "Reconfiguring Synoinfo, Addons and Modules" msgstr "重新配置概要, 插件和模块" -#: menu.sh:286 menu.sh:424 menu.sh:561 menu.sh:678 menu.sh:1765 +#: menu.sh:287 menu.sh:425 menu.sh:562 menu.sh:679 menu.sh:1784 msgid "Choose a option" msgstr "选择一个选项" -#: menu.sh:287 +#: menu.sh:288 msgid "Add an addon" msgstr "添加插件" -#: menu.sh:288 +#: menu.sh:289 msgid "Delete addon(s)" msgstr "删除插件(s)" -#: menu.sh:289 +#: menu.sh:290 msgid "Show user addons" msgstr "显示用户插件" -#: menu.sh:290 +#: menu.sh:291 msgid "Show all available addons" msgstr "显示所有可用插件" -#: menu.sh:291 +#: menu.sh:292 msgid "Upload a external addon" msgstr "上传外部插件" -#: menu.sh:292 menu.sh:429 menu.sh:557 menu.sh:673 menu.sh:1003 menu.sh:1762 -#: menu.sh:1940 menu.sh:2012 +#: menu.sh:293 menu.sh:430 menu.sh:558 menu.sh:674 menu.sh:1007 menu.sh:1781 +#: menu.sh:1959 menu.sh:2031 msgid "Exit" msgstr "退出" -#: menu.sh:304 menu.sh:309 menu.sh:315 menu.sh:327 menu.sh:335 menu.sh:353 -#: menu.sh:367 menu.sh:372 menu.sh:376 menu.sh:390 menu.sh:394 menu.sh:402 -#: menu.sh:405 +#: menu.sh:305 menu.sh:310 menu.sh:316 menu.sh:328 menu.sh:336 menu.sh:354 +#: menu.sh:368 menu.sh:373 menu.sh:377 menu.sh:391 menu.sh:395 menu.sh:403 +#: menu.sh:406 msgid "Addons" msgstr "插件" -#: menu.sh:305 +#: menu.sh:306 msgid "No available addons to add" msgstr "没有可用的插件可添加" -#: menu.sh:310 +#: menu.sh:311 msgid "Select an addon" msgstr "选择插件" -#: menu.sh:316 +#: menu.sh:317 msgid "Type a optional params to addon" msgstr "输入插件的加载参数" -#: menu.sh:328 +#: menu.sh:329 msgid "No user addons to remove" msgstr "没有要删除的用户插件" -#: menu.sh:336 +#: menu.sh:337 msgid "Select addon to remove" msgstr "选择要删除的插件" -#: menu.sh:373 menu.sh:1307 menu.sh:1338 menu.sh:1371 menu.sh:1839 +#: menu.sh:374 menu.sh:1326 menu.sh:1357 menu.sh:1390 menu.sh:1858 msgid "This feature is only available when accessed via web/ssh." msgstr "此功能仅在通过web/ssh访问时可用." -#: menu.sh:377 +#: menu.sh:378 msgid "Please upload the *.addons file." msgstr "请上传 *.addons 文件." -#: menu.sh:391 menu.sh:529 menu.sh:1866 menu.sh:1880 +#: menu.sh:392 menu.sh:530 menu.sh:1885 menu.sh:1899 msgid "Not a valid file, please try again!" msgstr "不是有效的文件, 请重试!" -#: menu.sh:395 +#: menu.sh:396 msgid "The addon already exists. Do you want to overwrite it?" msgstr "该插件已存在, 是否覆盖?" -#: menu.sh:403 +#: menu.sh:404 msgid "Addon '%s' added to loader, Please enable it in 'Add an addon' menu." msgstr "插件 '%s' 已添加到引导中, 请在'添加插件' 菜单中开启." -#: menu.sh:406 +#: menu.sh:407 msgid "File format not recognized!" msgstr "文件格式无法识别!" -#: menu.sh:425 +#: menu.sh:426 msgid "Show/Select modules" msgstr "显示/选择模块" -#: menu.sh:426 +#: menu.sh:427 msgid "Select loaded modules" msgstr "选择已识别的模块" -#: menu.sh:427 +#: menu.sh:428 msgid "Upload a external module" msgstr "上传一个外部模块" -#: menu.sh:428 +#: menu.sh:429 msgid "Priority use of official drivers:" msgstr "优先使用官方模块:" -#: menu.sh:435 menu.sh:448 menu.sh:485 menu.sh:505 menu.sh:508 menu.sh:524 -#: menu.sh:528 +#: menu.sh:436 menu.sh:449 menu.sh:486 menu.sh:506 menu.sh:509 menu.sh:525 +#: menu.sh:529 msgid "Modules" msgstr "模块" -#: menu.sh:436 +#: menu.sh:437 msgid "Reading modules" msgstr "读取模块中" -#: menu.sh:449 +#: menu.sh:450 msgid "Select all" msgstr "选择全部" -#: menu.sh:450 +#: menu.sh:451 msgid "Deselect all" msgstr "取消全选" -#: menu.sh:451 +#: menu.sh:452 msgid "Select modules to include" msgstr "选择要加载的插件" -#: menu.sh:486 +#: menu.sh:487 msgid "Selecting loaded modules" msgstr "选择已识别的模块" -#: menu.sh:500 +#: menu.sh:501 msgid "" "This function is experimental and dangerous. If you don't know much, please " "exit.\\n" msgstr "这个功能是实验性的, 很危险. 如果你知道的不多, 请退出. \\n" -#: menu.sh:501 +#: menu.sh:502 msgid "" "The imported .ko of this function will be implanted into the corresponding " "arch's modules package, which will affect all models of the arch.\\n" msgstr "" "该功能导入 .ko 将被植入相应的架构的模块包中, 这将影响该架构的所有型号.\\n" -#: menu.sh:502 +#: menu.sh:503 msgid "" "This program will not determine the availability of imported modules or even " "make type judgments, as please double check if it is correct.\\n" @@ -413,7 +418,7 @@ msgstr "" "该程序不会判断导入的驱动模块的可用性, 甚至不会做类型判断, 因从请你再三确认是" "否正确.\\n" -#: menu.sh:503 +#: menu.sh:504 msgid "" "If you want to remove it, please go to the \"Update Menu\" -> \"Update " "modules\" to forcibly update the modules. All imports will be reset.\\n" @@ -421,739 +426,743 @@ msgstr "" "如果您想删除它, 请转到 \"更新\"->\"更新模块\" 强制更新模块, 所有导入都将被重" "置.\\n" -#: menu.sh:504 +#: menu.sh:505 msgid "Do you want to continue?" msgstr "是否继续?" -#: menu.sh:509 +#: menu.sh:510 msgid "Please upload the *.ko file." msgstr "请上传 *.ko 文件." -#: menu.sh:525 +#: menu.sh:526 msgid "Module '%s' added to %s-%s" msgstr "模块 '%s' 已添加到 %s-%s" -#: menu.sh:550 +#: menu.sh:551 msgid "Add/edit a cmdline item" msgstr "添加/编辑cmdline参数" -#: menu.sh:551 +#: menu.sh:552 msgid "Delete cmdline item(s)" msgstr "删除cmdline参数(s)" -#: menu.sh:553 +#: menu.sh:554 msgid "Define SN/MAC" msgstr "自定义 SN/MAC" -#: menu.sh:555 +#: menu.sh:556 msgid "Show user added cmdline" msgstr "显示用户添加的cmdline参数" -#: menu.sh:556 +#: menu.sh:557 msgid "Show model inherent cmdline" msgstr "显示型号默认的cmdline参数" -#: menu.sh:566 menu.sh:572 menu.sh:582 menu.sh:590 menu.sh:606 menu.sh:616 -#: menu.sh:645 menu.sh:653 +#: menu.sh:567 menu.sh:573 menu.sh:583 menu.sh:591 menu.sh:607 menu.sh:617 +#: menu.sh:646 menu.sh:654 msgid "Cmdline" msgstr "Cmdline" -#: menu.sh:567 +#: menu.sh:568 msgid "Type a name of cmdline" msgstr "输入参数的名称" -#: menu.sh:573 +#: menu.sh:574 msgid "Type a value of '%s' cmdline" msgstr "输入 '%s' 参数的值" -#: menu.sh:583 +#: menu.sh:584 msgid "No user cmdline to remove" msgstr "没有用户参数被删除" -#: menu.sh:591 +#: menu.sh:592 msgid "Select cmdline to remove" msgstr "选择要删除的参数" -#: menu.sh:602 +#: menu.sh:603 msgid "Note: (MAC will not be set to NIC)" msgstr "注意: (MAC 不会设置到 NIC)" -#: menu.sh:607 +#: menu.sh:608 msgid "Random" msgstr "随机" -#: menu.sh:617 +#: menu.sh:618 msgid "Invalid SN/MAC, retry?" msgstr "无效 SN/MAC, 重试?" -#: menu.sh:670 +#: menu.sh:671 msgid "Add/edit a synoinfo item" msgstr "添加/编辑Synoinfo参数" -#: menu.sh:671 +#: menu.sh:672 msgid "Delete synoinfo item(s)" msgstr "删除Synoinfo参数(s)" -#: menu.sh:672 +#: menu.sh:673 msgid "Show synoinfo entries" msgstr "显示Synoinfo参数" -#: menu.sh:683 menu.sh:689 menu.sh:700 menu.sh:708 menu.sh:725 +#: menu.sh:684 menu.sh:690 menu.sh:701 menu.sh:709 menu.sh:726 msgid "Synoinfo" msgstr "Synoinfo" -#: menu.sh:684 +#: menu.sh:685 msgid "Type a name of synoinfo entry" msgstr "输入参数的名称" -#: menu.sh:690 +#: menu.sh:691 msgid "Type a value of '%s' synoinfo entry" msgstr "输入 '%s' 参数的值" -#: menu.sh:701 +#: menu.sh:702 msgid "No synoinfo entries to remove" msgstr "没有Synoinfo参数被删除" -#: menu.sh:709 +#: menu.sh:710 msgid "Select synoinfo entry to remove" msgstr "选择要删除的参数" -#: menu.sh:748 +#: menu.sh:749 msgid "%s cached." msgstr "%s 已缓存." -#: menu.sh:752 +#: menu.sh:753 msgid "Cleaning cache" msgstr "清除缓存" -#: menu.sh:759 +#: menu.sh:760 msgid "" "Based on the current network situation, switch to %s mirror to downloading." msgstr "根据当前的网络状况, 已切换到 %s 镜像服务器进行下载." -#: menu.sh:763 +#: menu.sh:764 msgid "Downloading %s" msgstr "下载 %s 中" -#: menu.sh:774 menu.sh:836 -msgid "Check internet or cache disk space" -msgstr "请检查网络连接或磁盘空间" +#: menu.sh:774 menu.sh:837 +msgid "Check internet or cache disk space.\\nError: %d" +msgstr "请检查网络连接或磁盘空间.\\nError: %d" -#: menu.sh:779 +#: menu.sh:781 msgid "Checking hash of %s: " msgstr "检查 %s 的 hash: " -#: menu.sh:782 +#: menu.sh:784 msgid "md5 Hash of pat not match, try again!" msgstr "pat 的 md5 Hash值 不匹配, 请重试!" -#: menu.sh:786 menu.sh:888 menu.sh:898 +#: menu.sh:788 menu.sh:891 menu.sh:901 msgid "OK" msgstr "OK" -#: menu.sh:790 +#: menu.sh:792 msgid "Disassembling %s: " msgstr "解压 %s: " -#: menu.sh:795 +#: menu.sh:797 msgid "Uncompressed tar" msgstr "未压缩tar" -#: menu.sh:799 +#: menu.sh:801 msgid "Compressed tar" msgstr "压缩tar" -#: menu.sh:803 +#: menu.sh:805 msgid "Encrypted" msgstr "已加密" -#: menu.sh:808 +#: menu.sh:810 msgid "" "Could not determine if pat file is encrypted or not, maybe corrupted, try " "again!" msgstr "无法确定pat文件是否加密, 可能已损坏, 请重试!" -#: menu.sh:818 +#: menu.sh:820 msgid "Extractor cached." msgstr "已存在解密程序." -#: menu.sh:825 +#: menu.sh:827 msgid "Downloading old pat to extract synology .pat extractor..." msgstr "下载旧 pat, 提取 .pat 解密程序中..." -#: menu.sh:865 menu.sh:868 +#: menu.sh:868 menu.sh:871 msgid "Extracting..." msgstr "解压中..." -#: menu.sh:880 +#: menu.sh:883 msgid "pat Invalid, try again!" msgstr "无效的 pat, 请重试!" -#: menu.sh:883 +#: menu.sh:886 msgid "Setting hash: " msgstr "设置 hash: " -#: menu.sh:890 +#: menu.sh:893 msgid "Copying files: " msgstr "拷贝文件: " -#: menu.sh:931 +#: menu.sh:934 msgid "Addon %s not found!" msgstr "插件 %s 未找到!" -#: menu.sh:957 menu.sh:1974 +#: menu.sh:960 menu.sh:2010 msgid "Cleaning" msgstr "清除中" -#: menu.sh:959 +#: menu.sh:962 msgid "Ready!" msgstr "已就绪!" -#: menu.sh:972 +#: menu.sh:975 msgid "Switch LKM version:" msgstr "选择LKM版本:" -#: menu.sh:975 +#: menu.sh:978 msgid "Switch direct boot:" msgstr "切换直接启动:" -#: menu.sh:977 +#: menu.sh:980 msgid "Timeout of get ip in boot:" msgstr "启动时获取IP的超时时间:" -#: menu.sh:978 +#: menu.sh:981 msgid "Timeout of boot wait:" msgstr "启动超时时间:" -#: menu.sh:979 +#: menu.sh:982 msgid "kernel switching method:" msgstr "内核切换的方式:" -#: menu.sh:982 +#: menu.sh:983 +msgid "Reboot on kernel panic:" +msgstr "内核恐慌时重新启动:" + +#: menu.sh:986 msgid "Set static IP" msgstr "设置静态 IP" -#: menu.sh:983 +#: menu.sh:987 msgid "Edit user config file manually" msgstr "手动编辑用户配置文件" -#: menu.sh:984 +#: menu.sh:988 msgid "Edit grub.cfg file manually" msgstr "手动编辑 grub.cfg 文件" -#: menu.sh:985 +#: menu.sh:989 msgid "Try to recovery a DSM installed system" msgstr "尝试恢复已安装DSM的系统" -#: menu.sh:986 +#: menu.sh:990 msgid "Show SATA(s) # ports and drives" msgstr "显示SATA(s) # 端口和驱动器" -#: menu.sh:988 +#: menu.sh:992 msgid "show/modify the current pat data" msgstr "显示/修改当前pat下载链接" -#: menu.sh:990 +#: menu.sh:994 msgid "Allow downgrade installation" msgstr "允许降级安装" -#: menu.sh:991 +#: menu.sh:995 msgid "Format disk(s) # Without loader disk" msgstr "格式化磁盘(s) # 不含启动盘" -#: menu.sh:992 +#: menu.sh:996 msgid "Reset DSM system password" msgstr "重置 DSM 系统密码" -#: menu.sh:993 +#: menu.sh:997 msgid "Save modifications of '/opt/arpl'" msgstr "保存'/opt/arpl'的修改" -#: menu.sh:995 +#: menu.sh:999 msgid "Custom dts file # Need rebuild" msgstr "自定义 dts 文件 # 需要重新编译" -#: menu.sh:998 +#: menu.sh:1002 msgid "Backup bootloader disk # test" msgstr "备份启动盘 # 测试" -#: menu.sh:999 +#: menu.sh:1003 msgid "Restore bootloader disk # test" msgstr "恢复启动盘 # 测试" -#: menu.sh:1001 +#: menu.sh:1005 msgid "Install development tools" msgstr "安装开发者工具" -#: menu.sh:1002 +#: menu.sh:1006 msgid "Show dsm logo:" msgstr "显示 dsm logo:" -#: menu.sh:1005 menu.sh:1023 menu.sh:1035 menu.sh:1063 menu.sh:1087 -#: menu.sh:1151 menu.sh:1158 menu.sh:1176 menu.sh:1189 menu.sh:1192 -#: menu.sh:1202 menu.sh:1203 menu.sh:1208 menu.sh:1212 menu.sh:1223 -#: menu.sh:1225 menu.sh:1242 menu.sh:1247 menu.sh:1255 menu.sh:1261 -#: menu.sh:1274 menu.sh:1277 menu.sh:1283 menu.sh:1286 menu.sh:1301 -#: menu.sh:1306 menu.sh:1310 menu.sh:1325 menu.sh:1330 menu.sh:1337 -#: menu.sh:1341 menu.sh:1344 menu.sh:1349 menu.sh:1359 menu.sh:1364 -#: menu.sh:1370 menu.sh:1374 menu.sh:1391 menu.sh:1394 menu.sh:1400 -#: menu.sh:1408 menu.sh:1416 menu.sh:1425 menu.sh:1427 +#: menu.sh:1009 menu.sh:1027 menu.sh:1039 menu.sh:1059 menu.sh:1082 +#: menu.sh:1106 menu.sh:1170 menu.sh:1177 menu.sh:1195 menu.sh:1208 +#: menu.sh:1211 menu.sh:1221 menu.sh:1222 menu.sh:1227 menu.sh:1231 +#: menu.sh:1242 menu.sh:1244 menu.sh:1261 menu.sh:1266 menu.sh:1274 +#: menu.sh:1280 menu.sh:1293 menu.sh:1296 menu.sh:1302 menu.sh:1305 +#: menu.sh:1320 menu.sh:1325 menu.sh:1329 menu.sh:1344 menu.sh:1349 +#: menu.sh:1356 menu.sh:1360 menu.sh:1363 menu.sh:1368 menu.sh:1378 +#: menu.sh:1383 menu.sh:1389 menu.sh:1393 menu.sh:1410 menu.sh:1413 +#: menu.sh:1419 menu.sh:1427 menu.sh:1435 menu.sh:1444 menu.sh:1446 msgid "Advanced" msgstr "高级" -#: menu.sh:1006 +#: menu.sh:1010 msgid "Advanced option" msgstr "高级设置" -#: menu.sh:1024 menu.sh:1036 -msgid "Choose a waiting time(seconds)" -msgstr "选择一个等待时间(秒)" +#: menu.sh:1028 menu.sh:1040 menu.sh:1060 +msgid "Choose a time(seconds)" +msgstr "选择一个时间(秒)" -#: menu.sh:1051 +#: menu.sh:1070 msgid "Temporary IP: (UI will not refresh)" msgstr "临时 IP: (UI 不会刷新)" -#: menu.sh:1088 +#: menu.sh:1107 msgid "Set IP.." msgstr "设置 IP.." -#: menu.sh:1149 +#: menu.sh:1168 msgid "\\nTotal of ports: %s\\n" msgstr "\\n端口总数: %s\\n" -#: menu.sh:1150 +#: menu.sh:1169 msgid "" "\\nPorts with color \\Z1red\\Zn as DUMMY, color \\Z2\\Zbgreen\\Zn has drive " "connected." msgstr "\\n\\Z1红色\\Zn 为模拟端口, \\Z2\\Zb绿色\\Zn 为已驱动的物理端口." -#: menu.sh:1157 +#: menu.sh:1176 msgid "pat: (editable)" msgstr "pat: (可编辑)" -#: menu.sh:1173 +#: menu.sh:1192 msgid "" "This feature will allow you to downgrade the installation by removing the " "VERSION file from the first partition of all disks.\\n" msgstr "此功能通过删除所有磁盘的第一个分区的VERSION文件来允许你降级安装.\\n" -#: menu.sh:1174 +#: menu.sh:1193 msgid "Therefore, please insert all disks before continuing.\\n" msgstr "因此, 请插入所有磁盘后再进行操作.\\n" -#: menu.sh:1175 menu.sh:1209 +#: menu.sh:1194 menu.sh:1228 msgid "" "Warning:\\nThis operation is irreversible. Please backup important data. Do " "you want to continue?" msgstr "警告:\\n该操作不可逆, 请提前备份重要数据. 是否继续?" -#: menu.sh:1190 +#: menu.sh:1209 msgid "Removing ..." msgstr "删除中..." -#: menu.sh:1191 +#: menu.sh:1210 msgid "Remove VERSION file for all disks completed." msgstr "已移除所有磁盘的 VERSION 文件." -#: menu.sh:1213 +#: menu.sh:1232 msgid "" "Warning:\\nThe current hds is in raid, do you still want to format them?" msgstr "警告:\\n当前的硬盘处于raid中,是否仍要格式化?" -#: menu.sh:1224 +#: menu.sh:1243 msgid "Formatting ..." msgstr "格式化中..." -#: menu.sh:1226 +#: menu.sh:1245 msgid "Formatting is complete." msgstr "格式化完成." -#: menu.sh:1243 +#: menu.sh:1262 msgid "The installed Syno system not found in the currently inserted disks!" msgstr "未在当前插入的硬盘中找到已安装的syno系统!" -#: menu.sh:1248 +#: menu.sh:1267 msgid "Choose a user name" msgstr "选择一个用户" -#: menu.sh:1256 +#: menu.sh:1275 msgid "Type a new password for user '%s'" msgstr "输入用户 '%s' 的新密码" -#: menu.sh:1262 +#: menu.sh:1281 msgid "Invalid password" msgstr "无效密码" -#: menu.sh:1275 +#: menu.sh:1294 msgid "Resetting ..." msgstr "重置中 ..." -#: menu.sh:1278 +#: menu.sh:1297 msgid "Password reset completed." msgstr "重置密码完成." -#: menu.sh:1284 menu.sh:1342 menu.sh:1395 +#: menu.sh:1303 menu.sh:1361 menu.sh:1414 msgid "" "Warning:\\nDo not terminate midway, otherwise it may cause damage to the " "arpl. Do you want to continue?" msgstr "警告:\\n请不要中途停止, 否则将导致arpl引导损毁, 是否继续?" -#: menu.sh:1287 +#: menu.sh:1306 msgid "Saving ..." msgstr "保存中..." -#: menu.sh:1302 +#: menu.sh:1321 msgid "Save is complete." msgstr "保存完成." -#: menu.sh:1311 +#: menu.sh:1330 msgid "" "Currently, only dts format files are supported. Please prepare and click to " "confirm uploading.\\n(saved in /mnt/p3/users/)" msgstr "" "目前, 只支持dts格式的文件, 请准备并点击确认上传.\\n(保存于 /mnt/p3/users/ 中)" -#: menu.sh:1326 +#: menu.sh:1345 msgid "Not a valid dts file, please try again!" msgstr "dts 文件无效, 请重试!" -#: menu.sh:1331 +#: menu.sh:1350 msgid "A valid dts file, Automatically import at compile time." msgstr "dts 文件有效, 将在编译时自动导入." -#: menu.sh:1345 +#: menu.sh:1364 msgid "Backuping..." msgstr "备份中..." -#: menu.sh:1350 +#: menu.sh:1369 msgid "" "Failed to generate backup. There may be insufficient memory. Please clear " "the cache and try again!" msgstr "生成备份失败, 可能内存不足, 请清除缓存重试!" -#: menu.sh:1357 +#: menu.sh:1376 msgid "Click on the address above to download." msgstr "点击上面的地址下载." -#: menu.sh:1358 +#: menu.sh:1377 msgid "" "Please confirm the completion of the download before closing this window." msgstr "请确认下载完成再关闭此窗口." -#: menu.sh:1365 +#: menu.sh:1384 msgid "backup is complete." msgstr "备份完成." -#: menu.sh:1375 +#: menu.sh:1394 msgid "" "Please upload the backup file.\\nCurrently, zip(github) and img.gz(backup) " "compressed file formats are supported." msgstr "请上传备份的文件\\n当前支持 zip(github) 和 img.gz(backup) 格式." -#: menu.sh:1392 +#: menu.sh:1411 msgid "Not a valid .zip/.img.gz file, please try again!" msgstr "不是有效的.zip/.img.gz文件, 请重试!" -#: menu.sh:1401 +#: menu.sh:1420 msgid "Writing..." msgstr "写入中..." -#: menu.sh:1409 +#: menu.sh:1428 msgid "Restore bootloader disk with success to %s!\\nReboot?" msgstr "成功恢复启动盘到 %s!\\n重启?" -#: menu.sh:1417 +#: menu.sh:1436 msgid "" "This option only installs opkg package management, allowing you to install " "more tools for use and debugging. Do you want to continue?" msgstr "" "该选项仅安装 opkg 包管理工具, 使你能够安装更多的工具以供使用和调试, 是否继续?" -#: menu.sh:1426 +#: menu.sh:1445 msgid "opkg installing ..." msgstr "opkg 安装中 ..." -#: menu.sh:1428 +#: menu.sh:1447 msgid "" "opkg install is complete. Please reconnect to SSH/web, or execute 'source ~/." "bashrc'" msgstr "opkg 安装完成. 请重新链接 SSH/web, 或者执行 'source ~/.bashrc'" -#: menu.sh:1443 menu.sh:1480 menu.sh:1487 +#: menu.sh:1462 menu.sh:1499 menu.sh:1506 msgid "Try recovery DSM" msgstr "尝试恢复DSM系统" -#: menu.sh:1444 +#: menu.sh:1463 msgid "Trying to recovery a DSM installed system" msgstr "尝试恢复已安装的DSM系统中" -#: menu.sh:1470 +#: menu.sh:1489 msgid "Found a installation:\\nModel: %s\\nProductversion: %s" msgstr "找到已安装:\\n型号: %s\\n版本: %s" -#: menu.sh:1474 +#: menu.sh:1493 msgid "\\nSerial: %s" msgstr "\\nSN: %s" -#: menu.sh:1488 +#: menu.sh:1507 msgid "Unfortunately I couldn't mount the DSM partition!" msgstr "很遗憾, 我无法挂载DSM分区!" -#: menu.sh:1496 menu.sh:1502 menu.sh:1525 +#: menu.sh:1515 menu.sh:1521 menu.sh:1544 msgid "Edit with caution" msgstr "请谨慎编辑" -#: menu.sh:1536 +#: menu.sh:1555 msgid "Alert" msgstr "警告" -#: menu.sh:1537 +#: menu.sh:1556 msgid "Config changed, would you like to rebuild the loader?" msgstr "配置已更改, 是否重新编译引导?" -#: menu.sh:1549 menu.sh:1933 +#: menu.sh:1568 menu.sh:1952 msgid "Choose a language" msgstr "选择语言" -#: menu.sh:1563 +#: menu.sh:1582 msgid "Choose a layout" msgstr "选择布局" -#: menu.sh:1575 +#: menu.sh:1594 msgid "Choice a keymap" msgstr "选择键盘映射" -#: menu.sh:1594 menu.sh:1647 menu.sh:1698 menu.sh:1770 menu.sh:1773 -#: menu.sh:1776 menu.sh:1779 menu.sh:1786 menu.sh:1793 menu.sh:1800 -#: menu.sh:1807 +#: menu.sh:1613 menu.sh:1666 menu.sh:1717 menu.sh:1789 menu.sh:1792 +#: menu.sh:1795 menu.sh:1798 menu.sh:1805 menu.sh:1812 menu.sh:1819 +#: menu.sh:1826 msgid "Update %s" msgstr "更新 %s" -#: menu.sh:1597 +#: menu.sh:1616 msgid "Checking last version" msgstr "检测新版本中" -#: menu.sh:1610 menu.sh:1613 +#: menu.sh:1629 menu.sh:1632 msgid "Error checking new version" msgstr "检测新版本错误" -#: menu.sh:1620 +#: menu.sh:1639 msgid "No new version." msgstr "没有新版本." -#: menu.sh:1624 +#: menu.sh:1643 msgid "No new version. Actual version is %s\\nForce update?" msgstr "没有新版本. 实际版本为 %s\\n强制更新?" -#: menu.sh:1629 +#: menu.sh:1648 msgid "Downloading last version" msgstr "下载新版本中" -#: menu.sh:1635 menu.sh:1638 +#: menu.sh:1654 menu.sh:1657 msgid "Error downloading new version" msgstr "下载新版本错误" -#: menu.sh:1649 menu.sh:1700 +#: menu.sh:1668 menu.sh:1719 msgid "Extracting last version" msgstr "解压新版本" -#: menu.sh:1653 +#: menu.sh:1672 msgid "Error extracting update file" msgstr "更新文件解压错误" -#: menu.sh:1660 +#: menu.sh:1679 msgid "Checksum do not match!" msgstr "Checksum不匹配!" -#: menu.sh:1669 +#: menu.sh:1688 msgid "" "The current version does not support upgrading to the latest update.zip. " "Please remake the bootloader disk!" msgstr "当前版本不支持最新的update.zip升级, 请重新制作引导盘!" -#: menu.sh:1674 +#: menu.sh:1693 msgid "Installing new files" msgstr "安装更新中" -#: menu.sh:1691 +#: menu.sh:1710 msgid "Arpl updated with success to %s!\\nReboot?" msgstr "Arpl更新成功 %s!\\n重启?" -#: menu.sh:1706 +#: menu.sh:1725 msgid "Installing new %s" msgstr "安装新 %s 中" -#: menu.sh:1735 menu.sh:1738 +#: menu.sh:1754 menu.sh:1757 msgid "%s updated with success!" msgstr "%s 更新成功!" -#: menu.sh:1752 +#: menu.sh:1771 msgid "Update all" msgstr "更新所有" -#: menu.sh:1753 +#: menu.sh:1772 msgid "Update arpl" msgstr "更新arpl" -#: menu.sh:1754 +#: menu.sh:1773 msgid "Update addons" msgstr "更新插件" -#: menu.sh:1755 +#: menu.sh:1774 msgid "Update modules" msgstr "更新模块" -#: menu.sh:1756 +#: menu.sh:1775 msgid "Update LKMs" msgstr "更新LKMs" -#: menu.sh:1758 +#: menu.sh:1777 msgid "Set proxy server" msgstr "设置代理" -#: menu.sh:1760 +#: menu.sh:1779 msgid "Local upload" msgstr "本地上传" -#: menu.sh:1761 +#: menu.sh:1780 msgid "Pre Release:" msgstr "预发布: " -#: menu.sh:1770 menu.sh:1793 +#: menu.sh:1789 menu.sh:1812 msgid "addons" msgstr "插件" -#: menu.sh:1773 menu.sh:1800 +#: menu.sh:1792 menu.sh:1819 msgid "modules" msgstr "模块" -#: menu.sh:1776 menu.sh:1807 +#: menu.sh:1795 menu.sh:1826 msgid "LKMs" msgstr "LKMs" -#: menu.sh:1779 menu.sh:1786 +#: menu.sh:1798 menu.sh:1805 msgid "arpl" msgstr "arpl" -#: menu.sh:1816 menu.sh:1827 menu.sh:1838 menu.sh:1848 menu.sh:1865 -#: menu.sh:1879 +#: menu.sh:1835 menu.sh:1846 menu.sh:1857 menu.sh:1867 menu.sh:1884 +#: menu.sh:1898 msgid "Update" msgstr "更新" -#: menu.sh:1817 +#: menu.sh:1836 msgid "Please enter a proxy server url" msgstr "请输入代理服务器url" -#: menu.sh:1828 +#: menu.sh:1847 msgid "Invalid proxy server url, continue?" msgstr "无效的代理服务器url, 是否继续?" -#: menu.sh:1843 +#: menu.sh:1862 msgid "" "Please keep the attachment name consistent with the attachment name on " "Github.\\n" msgstr "请保持附件名称与 github 上附件名称一致.\\n" -#: menu.sh:1844 +#: menu.sh:1863 msgid "Upload update.zip will update arpl.\\n" msgstr "上传 update.zip 将更新 arpl.\\n" -#: menu.sh:1845 +#: menu.sh:1864 msgid "Upload addons.zip will update Addons.\\n" msgstr "上传 addons.zip 将更新 插件.\\n" -#: menu.sh:1846 +#: menu.sh:1865 msgid "Upload modules.zip will update Modules.\\n" msgstr "上传 modules.zip 将更新 模块.\\n" -#: menu.sh:1847 +#: menu.sh:1866 msgid "Upload rp-lkms.zip will update LKMs.\\n" msgstr "上传 rp-lkms.zip 将更新 LKMs.\\n" -#: menu.sh:1896 +#: menu.sh:1915 msgid "This person is very lazy and hasn't written anything." msgstr "这个人很懒, 什么也没有写." -#: menu.sh:1897 +#: menu.sh:1916 msgid "Edit" msgstr "编辑" -#: menu.sh:1914 +#: menu.sh:1933 msgid "Choose a model" msgstr "选择型号" -#: menu.sh:1916 +#: menu.sh:1935 msgid "Choose a version" msgstr "选择版本" -#: menu.sh:1918 +#: menu.sh:1937 msgid "Addons menu" msgstr "插件" -#: menu.sh:1919 +#: menu.sh:1938 msgid "Modules menu" msgstr "模块" -#: menu.sh:1920 +#: menu.sh:1939 msgid "Cmdline menu" msgstr "设置Cmdline" -#: menu.sh:1921 +#: menu.sh:1940 msgid "Synoinfo menu" msgstr "设置Synoinfo" -#: menu.sh:1924 +#: menu.sh:1943 msgid "Advanced menu" msgstr "高级设置" -#: menu.sh:1927 +#: menu.sh:1946 msgid "Build the loader" msgstr "编译引导" -#: menu.sh:1931 +#: menu.sh:1950 msgid "Boot the loader" msgstr "启动" -#: menu.sh:1934 +#: menu.sh:1953 msgid "Choose a keymap" msgstr "选择键盘" -#: menu.sh:1936 +#: menu.sh:1955 msgid "Clean disk cache" msgstr "清除磁盘缓存" -#: menu.sh:1938 +#: menu.sh:1957 msgid "Update menu" msgstr "更新" -#: menu.sh:1939 +#: menu.sh:1958 msgid "Notepad" msgstr "备注" -#: menu.sh:1943 +#: menu.sh:1962 msgid "Main menu" msgstr "主菜单" -#: menu.sh:2007 +#: menu.sh:2026 msgid "Choose a action" msgstr "选择动作" -#: menu.sh:2008 +#: menu.sh:2027 msgid "Poweroff" msgstr "关机" -#: menu.sh:2009 +#: menu.sh:2028 msgid "Reboot" msgstr "重启" -#: menu.sh:2010 +#: menu.sh:2029 msgid "Reboot to arpl" msgstr "重启到arpl" -#: menu.sh:2011 +#: menu.sh:2030 msgid "Back to shell" msgstr "退出到shell" -#: menu.sh:2037 +#: menu.sh:2056 msgid "Call \\033[1;32mmenu.sh\\033[0m to return to menu" msgstr "执行 \\033[1;32mmenu.sh\\033[0m 重新进入设置菜单" diff --git a/files/board/arpl/overlayfs/opt/arpl/lang/zh_HK.mo b/files/board/arpl/overlayfs/opt/arpl/lang/zh_HK.mo index ad8f1deaad1f327a095a85ff08400a66f623b5a3..9aca8aa7eb2a4b44181129edc6bea2c1d4b9397e 100644 GIT binary patch delta 6410 zcmb{0d03TI0>|-#p(3Cuh`1nLS0F)!Oq0ZYM@^GTi%f(Y-~z@)%bezlxdBS*RZ1)I z(bCi`N6a+Kt){ZgEG@C7tmNX7Wi{C|IoW)FyhrQlng3?qhaaDF&VBED)_Yx!Yza8F zEx`MESl}wd)iA)AD4ZW;Og80j8mrZq#m$UK#$pV{*ReSs!Jc>q2cRp`m@$}%p|}(I zF$ejj`>QYA!g(CI1}sQ0@MIYF%F+a-S;83##5+{ zuV5;Mv~b>kCu-o?s5uoN9h*mL^%_$`A(4jV*cD&HM))Ik!8$FCX@ZFufdj1*kja~T z)Ib+n%dHzx@7rbTZ=s%h!q#iBIsKcTDd<6sTNx9EF{qIyTT`v+s1=%ydeAJ4!39_! zx1mrVJDY-sLNs1LElnuv8HnMiJ!_5{SUhrz>5E$W zbkqZpN?-9(&`j&L zb7mNfdP5w#upeqEGf*Amp$_3<)WFu-*SDb__%do`4x(1(9ov2swL&LQXXQuKbG?@- zXi0(?mTqWfO+?LbB;JVWsHI(o+N$SK19}s?;g_hx7{;ki|2dPy-!?cj0*7_krPFwH&6U z9#&aTp*FDwwRXQD2gNjE+&5qX#^ZR@+AKf~bp>jPoqujjdihQth4#9 zSdO)ZmPCU-h-s)zz1P-fp$1rlTFd3AP2Ga(@BnH_PTJRh!6544an310rLSVI}HVZ$NdlAGH$4QOEKE>Vtj-2VfY>q5AFCT+{#_Ms>UpwNfil zn|%;_U^Py~C~xQ5-8GBx9vVKxGVI2?2H}2dV1o0f$Z+gMdl52rvlqwVEnV0Kd=&K+ z7SWZHgQ@7o6F3R`a0E563e+j~zDPkc`vBQy^CdDl6O`y|MH1>b4@YfPHfjlrQKxP* zYG!Yso^uZQF_-yO4-=A{&sld2q231@;s^}Z9LC!hGOhWjy_$oy-z2ELUyqz0vllhM zuTcYT$cK&-Z@Oa>ybCqpX{ZiMPy;T0pbq&y^yZkyv4DPbuj7yBdrr``+XQj`*hTj&qZzBT5N^eQ13g8!|`L(^Ig52_L$!6 zzi#MGgFZI>Q8$c0w%3eBCTr%SX80<`ePK05Qs0Q0;Xd1b)cUz?KaUM~{fcc5;vhs(k3j8l5^6<~QDPGSQ%;p6&QNmH)@F&+j<4+#zUwrI*#4(Eb4vH zsZM)W45B^|)$vH|fa$0eEkd1vwa8e^0n{1t29I?96_|qAG!!FW)8>2Zg$bja8?!Nv z`Wl>wuOr)U+K=Y%+BgN(VHN%buON>wb8dCc%3G)jG#lgmec=Y=6V#qwLVb~hjdkjsu_5)LsQ2HF+Utj~0Ty8}mSQNDTQ}6Uv;W&E=nZ@A z3x`lkegxIgSE$2x89QOy+nkPuVSDP+QC~F6QKx?ss>6e*_rHr;iE3m~Owu?$8CZlv z>EG<9pc&Lpb4D0}tgdN?5918fQh$ruGBgDwK@T+IdgGJ&hMq5g~}s0^H0p$R()R`A$^GcD`qAB zm1u%|s?A~IBf5Sjb5-Edj%YVtAU~0-SE%p3CT+a;QSD9^ldj}ZvX|%@KwhaWIlr_e z?~wVnO^5P2JB46eM!gHs=Y18KL0%=g?kD$<$*OSmBM<3Q@DzppMAurP1H<;1T(Xb! zC5a@Q>>#Vjc@jewlAgp(9w3=SS0(v@+^GuJFXT(YF*0jNDS4CZGQM+Rjaq2uUnkFy zqa>PW%~O3%!ehJ{lqQlUMAtOZh}^9TS4Ri)g_SdX?cxtg^CLMyJ|kZdT^k(!>u;S) zUE9d_TA@X%vAhXzndqbUEz#A~q4uA(Dn3Da+qOW|7h53jU1!@GP}V1@h&)cBY`gH1 zS>yu}Lf$6dskJ_D(shW;CjTb&$rN(+8f6Ptt~TH!r6u=nMy9&7f;KMNm(9O?7*CiyzJb( zY*$8RrrYC*^>}i+hCJY&9Ov>BW)#l!_?9;7U0F9W`MS_9>3M?-3i1n*T^+N0eOsPw zSeQHA9qVyt=I3R3;(XDq;wy7owFns$pPn~nnmfbecFmlTU67IGb`|EhU6b?k3#a8% zD{#$n7kF~>^IREuS+2r@*{+Q2jNCk)J|?3uGsoptAHI2=`Zng4sqTV2_cYgxjJ({; ztu@ zK4;D-bZ2#`9MvN};Qup&**(+h_i`n6Prk96?^w^OR<$duA)WQ@^OrqSQ?koHx5&S8 z&za{-d@tSHtunM%)SuQkw)gH3|LS>X%YCsmn^wg6KI$D)**qn?K?>`km8yRFZ~j$} zvD|02mR2uaRI_tU^((8Yx0lrvFZMtA-09sL&n{YeX7k2tD|>dy3um@G?JFCS996ww zlYiZAf6+4kf+gx=(Ncf;_Ucs?)upSFE8iTF7ufY|d8vPMMa_nyn)MZ@cQ5s?e8In@ z$a%i2qbH%GC*F0fTe|X%OMSaeysOeRGQ2+edW`#Lw?EIgbgq9vY4uAxoJq&Koc_+N b-+FrYHh=j`T`J?!!UOvMPm@bd&olo4o2{Eq delta 6025 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 DW~KWh diff --git a/files/board/arpl/overlayfs/opt/arpl/lang/zh_HK.po b/files/board/arpl/overlayfs/opt/arpl/lang/zh_HK.po index aa3a323c..e0a05e11 100644 --- a/files/board/arpl/overlayfs/opt/arpl/lang/zh_HK.po +++ b/files/board/arpl/overlayfs/opt/arpl/lang/zh_HK.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: arpl-i18n\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-07 22:31+0800\n" -"PO-Revision-Date: 2023-10-07 22:31+0800\n" +"POT-Creation-Date: 2023-10-09 14:30+0800\n" +"PO-Revision-Date: 2023-10-09 14:30+0800\n" "Last-Translator: ing \n" "Language-Team: Chinese (HongKong) \n" "Language: zh_HK\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: boot.sh:8 init.sh:159 +#: boot.sh:8 init.sh:160 msgid "Loader is not configured!" msgstr "引導未設置!" @@ -28,22 +28,26 @@ msgstr "Welcome to %s" msgid "DSM zImage changed" msgstr "DSM zImage 已變更" -#: boot.sh:41 boot.sh:54 menu.sh:773 menu.sh:781 menu.sh:807 menu.sh:835 -#: menu.sh:847 menu.sh:871 menu.sh:879 menu.sh:930 menu.sh:943 menu.sh:950 +#: boot.sh:41 boot.sh:54 menu.sh:775 menu.sh:783 menu.sh:809 menu.sh:838 +#: menu.sh:850 menu.sh:874 menu.sh:882 menu.sh:933 menu.sh:946 menu.sh:953 msgid "Error" msgstr "錯誤" -#: boot.sh:42 menu.sh:944 -msgid "zImage not patched:\\n" -msgstr "zImage打補丁失敗:\\n" +#: boot.sh:42 menu.sh:947 +msgid "" +"zImage not patched,\\nPlease upgrade the bootloader version and try again." +"\\nPatch error:\\n" +msgstr "zImage patch 失敗,\\n請升級引導版本並重試.\\nPatch 錯誤:\\n" #: boot.sh:51 msgid "DSM Ramdisk changed" msgstr "DSM Ramdisk 已變更" -#: boot.sh:55 menu.sh:951 -msgid "Ramdisk not patched:\\n" -msgstr "Ramdisk打補丁失敗:\\n" +#: boot.sh:55 menu.sh:954 +msgid "" +"Ramdisk not patched,\\nPlease upgrade the bootloader version and try again." +"\\nPatch error:\\n" +msgstr "Ramdisk patch 失敗,\\n請升級引導版本並重試.\\nPatch 錯誤:\\n" #: boot.sh:73 msgid "Model:" @@ -71,66 +75,67 @@ msgstr "MEM: " #: boot.sh:81 msgid "" -"The current version of arpl does not support booting %s-%s, please rebuild." -msgstr "當前版本的arpl不支持引導 %s-%s, 請重新編譯." +"The current version of bootloader does not support booting %s-%s, please " +"upgrade and rebuild." +msgstr "當前版本的開機磁碟不支持引導 %s-%s, 請升級並重新編譯." -#: boot.sh:131 +#: boot.sh:132 msgid "Cmdline:\\n" msgstr "Cmdline:\\n" -#: boot.sh:137 +#: boot.sh:138 msgid "Reboot to boot directly in DSM" msgstr "重啓並直接進入DSM引導" -#: boot.sh:143 init.sh:172 +#: boot.sh:144 init.sh:173 msgid "Detected %s network cards." msgstr "檢測到 %s 個網卡." -#: boot.sh:144 init.sh:173 +#: boot.sh:145 init.sh:174 msgid "Checking Connect." msgstr "檢查連接." -#: boot.sh:164 +#: boot.sh:165 msgid "Waiting IP.(For reference only)" msgstr "獲取 IP.(僅供參考)" -#: boot.sh:171 init.sh:198 +#: boot.sh:172 init.sh:199 msgid "DOWN" msgstr "關閉" -#: boot.sh:175 init.sh:202 +#: boot.sh:176 init.sh:203 msgid "NOT CONNECTED" msgstr "未連接" -#: boot.sh:179 init.sh:206 +#: boot.sh:180 init.sh:207 msgid "TIMEOUT (Please check the IP on the router.)" msgstr "超時 (請檢查路由器上的IP.)" -#: boot.sh:185 +#: boot.sh:186 msgid "Access \\033[1;34mhttp://%s:5000\\033[0m to connect the DSM via web." msgstr "在瀏覽器中訪問 \\033[1;34mhttp://%s:5000\\033[0m 連結 DSM." -#: boot.sh:197 -msgid "%2ds (accessing arpl will interrupt boot)" -msgstr "%2ds (訪問arpl將中斷啟動)" +#: boot.sh:198 +msgid "%2ds (Changing access(ssh/web) status will interrupt boot)" +msgstr "%2ds ((ssh/web)链接状态改變將中斷啟動)" -#: boot.sh:201 -msgid "A new access is connected, the boot process is interrupted." -msgstr "新的連接, 啟動過程被中斷." +#: boot.sh:202 +msgid "access(ssh/web) status has changed and booting is interrupted." +msgstr "(ssh/web)链接狀態已改變, 啟動被中斷." -#: boot.sh:211 +#: boot.sh:212 msgid "Loading DSM kernel..." msgstr "加載 DSM kernel..." -#: boot.sh:215 +#: boot.sh:216 msgid "Warning, running kexec with --noefi param, strange things will happen!!" msgstr "警告, 使用'--noefi'參數運行'kexec', 可能有不好的事情發生!!" -#: boot.sh:220 +#: boot.sh:221 msgid "Booting..." msgstr "引導中..." -#: boot.sh:222 +#: boot.sh:223 msgid "" "[This interface will not be operational.\\nPlease wait for a few minutes " "before using the http://find.synology.com/ or Synology Assistant find DSM " @@ -147,7 +152,7 @@ msgstr "引導磁碟似乎已損壞!" #: init.sh:20 msgid "There are multiple loader disks, please insert only one loader disk!" -msgstr "存在多個引導磁碟,請僅插入一個引導磁碟!" +msgstr "存在多個引導磁碟, 請僅插入一個引導磁碟!" #: init.sh:32 init.sh:33 init.sh:34 msgid "Can't mount %s" @@ -157,255 +162,255 @@ msgstr "掛載 %s 失敗" msgid "Network devices not found!" msgstr "網卡未找到!" -#: init.sh:126 +#: init.sh:127 msgid "Loader disk neither USB or DoM" msgstr "引導磁碟僅支持 USB 或者 DoM" -#: init.sh:134 +#: init.sh:135 msgid "Loader disk:" msgstr "引導盤:" -#: init.sh:141 +#: init.sh:142 msgid "Resizing %s" msgstr "重置 %s 大小" -#: init.sh:152 +#: init.sh:153 msgid "Loading keymap" msgstr "加載keymap" -#: init.sh:162 +#: init.sh:163 msgid "User requested edit settings." msgstr "用戶觸發編輯設定." -#: init.sh:191 +#: init.sh:192 msgid "Waiting IP." msgstr "獲取 IP." -#: init.sh:212 +#: init.sh:213 msgid "" "Access \\033[1;34mhttp://%s:7681\\033[0m to configure the loader via web " "terminal." msgstr "在瀏覽器中訪問 \\033[1;34mhttp://%s:7681\\033[0m 進入WEB終端進行配寘." -#: init.sh:222 +#: init.sh:223 msgid "Call \\033[1;32mmenu.sh\\033[0m to configure loader" msgstr "執行 \\033[1;32mmenu.sh\\033[0m 進入設定選單" -#: init.sh:224 +#: init.sh:225 msgid "User config is on" msgstr "用戶設定檔位於" -#: init.sh:225 +#: init.sh:226 msgid "Default SSH Root password is" msgstr "默認SSH的root密碼為" -#: init.sh:231 +#: init.sh:232 msgid "" "You have less than 4GB of RAM, if errors occur in loader creation, please " "increase the amount of memory." -msgstr "您的RAM不足4GB, 如果在創建引導時出現錯誤,請新增記憶體." +msgstr "您的RAM不足4GB, 如果在創建引導時出現錯誤, 請新增記憶體." -#: menu.sh:88 +#: menu.sh:89 msgid "Model" msgstr "型號" -#: menu.sh:89 +#: menu.sh:90 msgid "Reading models" msgstr "讀取型號" -#: menu.sh:119 +#: menu.sh:120 msgid "Disable flags restriction" msgstr "禁用標誌限制" -#: menu.sh:120 +#: menu.sh:121 msgid "Show all models" msgstr "顯示所有型號" -#: menu.sh:122 +#: menu.sh:123 msgid "Choose the model" msgstr "選擇型號" -#: menu.sh:169 +#: menu.sh:170 msgid "Choose a product version" msgstr "選擇版本" -#: menu.sh:179 menu.sh:185 menu.sh:190 menu.sh:196 menu.sh:222 menu.sh:242 +#: menu.sh:180 menu.sh:186 menu.sh:191 menu.sh:197 menu.sh:223 menu.sh:243 msgid "Product Version" msgstr "版本" -#: menu.sh:180 +#: menu.sh:181 msgid "" "The current version has been set to %s. Do you want to reset the version?" msgstr "當前版本已設定為%s. 是否要重置版本?" -#: menu.sh:186 +#: menu.sh:187 msgid "" "This version does not support UEFI startup, Please select another version or " "switch the startup mode." msgstr "該版本不支持UEFI啟動, 請選擇其他版本或者切換啟動模式." -#: menu.sh:191 +#: menu.sh:192 msgid "" "This version only support usb startup, Please select another version or " "switch the startup mode." msgstr "該版本僅支持 usb 啟動, 請選擇其他版本或者切換啟動模式." -#: menu.sh:197 +#: menu.sh:198 msgid "Get pat data .." msgstr "獲取pat數據 .." -#: menu.sh:216 +#: menu.sh:217 msgid "" "Failed to get pat data,\\nPlease manually fill in the URL and md5sum of the " "corresponding version of pat." msgstr "獲取pat數據失敗,\\n請手動填寫相應版本pat的URL和MD5." -#: menu.sh:220 +#: menu.sh:221 msgid "Successfully to get pat data,\\nPlease confirm or modify as needed." msgstr "獲取pat數據成功,\\n請確認或者按需修改." -#: menu.sh:223 +#: menu.sh:224 msgid "Retry" msgstr "重試" -#: menu.sh:243 +#: menu.sh:244 msgid "Reconfiguring Synoinfo, Addons and Modules" msgstr "重新配寘 Syninfo, 挿件和模塊" -#: menu.sh:286 menu.sh:424 menu.sh:561 menu.sh:678 menu.sh:1765 +#: menu.sh:287 menu.sh:425 menu.sh:562 menu.sh:679 menu.sh:1784 msgid "Choose a option" msgstr "設定" -#: menu.sh:287 +#: menu.sh:288 msgid "Add an addon" msgstr "添加挿件" -#: menu.sh:288 +#: menu.sh:289 msgid "Delete addon(s)" msgstr "删除挿件(s)" -#: menu.sh:289 +#: menu.sh:290 msgid "Show user addons" msgstr "顯示用戶挿件" -#: menu.sh:290 +#: menu.sh:291 msgid "Show all available addons" msgstr "顯示所有可用挿件" -#: menu.sh:291 +#: menu.sh:292 msgid "Upload a external addon" msgstr "上傳外部挿件" -#: menu.sh:292 menu.sh:429 menu.sh:557 menu.sh:673 menu.sh:1003 menu.sh:1762 -#: menu.sh:1940 menu.sh:2012 +#: menu.sh:293 menu.sh:430 menu.sh:558 menu.sh:674 menu.sh:1007 menu.sh:1781 +#: menu.sh:1959 menu.sh:2031 msgid "Exit" msgstr "退出" -#: menu.sh:304 menu.sh:309 menu.sh:315 menu.sh:327 menu.sh:335 menu.sh:353 -#: menu.sh:367 menu.sh:372 menu.sh:376 menu.sh:390 menu.sh:394 menu.sh:402 -#: menu.sh:405 +#: menu.sh:305 menu.sh:310 menu.sh:316 menu.sh:328 menu.sh:336 menu.sh:354 +#: menu.sh:368 menu.sh:373 menu.sh:377 menu.sh:391 menu.sh:395 menu.sh:403 +#: menu.sh:406 msgid "Addons" msgstr "挿件" -#: menu.sh:305 +#: menu.sh:306 msgid "No available addons to add" msgstr "沒有可用的挿件可添加" -#: menu.sh:310 +#: menu.sh:311 msgid "Select an addon" msgstr "選擇挿件" -#: menu.sh:316 +#: menu.sh:317 msgid "Type a optional params to addon" msgstr "輸入挿件的加載參數" -#: menu.sh:328 +#: menu.sh:329 msgid "No user addons to remove" msgstr "沒有要删除的用戶挿件" -#: menu.sh:336 +#: menu.sh:337 msgid "Select addon to remove" msgstr "選擇要删除的挿件" -#: menu.sh:373 menu.sh:1307 menu.sh:1338 menu.sh:1371 menu.sh:1839 +#: menu.sh:374 menu.sh:1326 menu.sh:1357 menu.sh:1390 menu.sh:1858 msgid "This feature is only available when accessed via web/ssh." msgstr "此功能僅通過web/ssh訪問時可用." -#: menu.sh:377 +#: menu.sh:378 msgid "Please upload the *.addons file." msgstr "請上傳 *.addons 檔案." -#: menu.sh:391 menu.sh:529 menu.sh:1866 menu.sh:1880 +#: menu.sh:392 menu.sh:530 menu.sh:1885 menu.sh:1899 msgid "Not a valid file, please try again!" msgstr "不是有效的檔案, 請重試!" -#: menu.sh:395 +#: menu.sh:396 msgid "The addon already exists. Do you want to overwrite it?" msgstr "該挿件已存在, 是否覆盖?" -#: menu.sh:403 +#: menu.sh:404 msgid "Addon '%s' added to loader, Please enable it in 'Add an addon' menu." msgstr "挿件 '%s' 已添加到引導中, 請在'添加挿件'選單中開啟." -#: menu.sh:406 +#: menu.sh:407 msgid "File format not recognized!" msgstr "檔案格式無法識別!" -#: menu.sh:425 +#: menu.sh:426 msgid "Show/Select modules" msgstr "顯示/選擇模塊" -#: menu.sh:426 +#: menu.sh:427 msgid "Select loaded modules" msgstr "選擇已識別的模塊" -#: menu.sh:427 +#: menu.sh:428 msgid "Upload a external module" msgstr "上傳一個外部模塊" -#: menu.sh:428 +#: menu.sh:429 msgid "Priority use of official drivers:" msgstr "優先使用官方驅動:" -#: menu.sh:435 menu.sh:448 menu.sh:485 menu.sh:505 menu.sh:508 menu.sh:524 -#: menu.sh:528 +#: menu.sh:436 menu.sh:449 menu.sh:486 menu.sh:506 menu.sh:509 menu.sh:525 +#: menu.sh:529 msgid "Modules" msgstr "模塊" -#: menu.sh:436 +#: menu.sh:437 msgid "Reading modules" msgstr "讀取模塊中" -#: menu.sh:449 +#: menu.sh:450 msgid "Select all" msgstr "全選全部" -#: menu.sh:450 +#: menu.sh:451 msgid "Deselect all" msgstr "取消全選" -#: menu.sh:451 +#: menu.sh:452 msgid "Select modules to include" msgstr "選擇要加載的挿件" -#: menu.sh:486 +#: menu.sh:487 msgid "Selecting loaded modules" msgstr "選擇已識別的模塊" -#: menu.sh:500 +#: menu.sh:501 msgid "" "This function is experimental and dangerous. If you don't know much, please " "exit.\\n" msgstr "該功能是實驗性的且危險的, 如果你不瞭解, 請退出.\\n" -#: menu.sh:501 +#: menu.sh:502 msgid "" "The imported .ko of this function will be implanted into the corresponding " "arch's modules package, which will affect all models of the arch.\\n" msgstr "" "該功能導入 .ko 將被植入相應的架構的模塊包中, 這將影響該架構的所有型號.\\n" -#: menu.sh:502 +#: menu.sh:503 msgid "" "This program will not determine the availability of imported modules or even " "make type judgments, as please double check if it is correct.\\n" @@ -413,7 +418,7 @@ msgstr "" "該程式不會判斷導入的驅動模塊的可用性, 甚至不會做類型判斷, 因從請你再三確認是" "否正確.\\n" -#: menu.sh:503 +#: menu.sh:504 msgid "" "If you want to remove it, please go to the \"Update Menu\" -> \"Update " "modules\" to forcibly update the modules. All imports will be reset.\\n" @@ -421,739 +426,743 @@ msgstr "" "如果您想删除它, 請轉到 \"更新\"->\"更新模塊\" 強制更新模塊, 所有導入都將被重" "置.\\n" -#: menu.sh:504 +#: menu.sh:505 msgid "Do you want to continue?" msgstr "是否繼續?" -#: menu.sh:509 +#: menu.sh:510 msgid "Please upload the *.ko file." msgstr "請上傳 *.ko 檔案." -#: menu.sh:525 +#: menu.sh:526 msgid "Module '%s' added to %s-%s" msgstr "模塊 '%s' 已添加到 %s-%s" -#: menu.sh:550 +#: menu.sh:551 msgid "Add/edit a cmdline item" msgstr "添加/編輯cmdline參數" -#: menu.sh:551 +#: menu.sh:552 msgid "Delete cmdline item(s)" msgstr "删除cmdline參數(s)" -#: menu.sh:553 +#: menu.sh:554 msgid "Define SN/MAC" msgstr "自定義 SN/MAC" -#: menu.sh:555 +#: menu.sh:556 msgid "Show user added cmdline" msgstr "顯示用戶添加的cmdline參數" -#: menu.sh:556 +#: menu.sh:557 msgid "Show model inherent cmdline" msgstr "顯示型號默認的cmdline參數" -#: menu.sh:566 menu.sh:572 menu.sh:582 menu.sh:590 menu.sh:606 menu.sh:616 -#: menu.sh:645 menu.sh:653 +#: menu.sh:567 menu.sh:573 menu.sh:583 menu.sh:591 menu.sh:607 menu.sh:617 +#: menu.sh:646 menu.sh:654 msgid "Cmdline" msgstr "Cmdline" -#: menu.sh:567 +#: menu.sh:568 msgid "Type a name of cmdline" msgstr "輸入參數的名稱" -#: menu.sh:573 +#: menu.sh:574 msgid "Type a value of '%s' cmdline" msgstr "輸入 '%s' 參數的值" -#: menu.sh:583 +#: menu.sh:584 msgid "No user cmdline to remove" msgstr "沒有用戶參數被删除" -#: menu.sh:591 +#: menu.sh:592 msgid "Select cmdline to remove" msgstr "選擇要删除的參數" -#: menu.sh:602 +#: menu.sh:603 msgid "Note: (MAC will not be set to NIC)" msgstr "注意: (MAC 不會設定到 NIC)" -#: menu.sh:607 +#: menu.sh:608 msgid "Random" msgstr "隨機" -#: menu.sh:617 +#: menu.sh:618 msgid "Invalid SN/MAC, retry?" msgstr "無效 SN/MAC, 重試?" -#: menu.sh:670 +#: menu.sh:671 msgid "Add/edit a synoinfo item" msgstr "添加/編輯Synoinfo參數" -#: menu.sh:671 +#: menu.sh:672 msgid "Delete synoinfo item(s)" msgstr "删除Synoinfo參數(s)" -#: menu.sh:672 +#: menu.sh:673 msgid "Show synoinfo entries" msgstr "顯示 Synoinfo 參數" -#: menu.sh:683 menu.sh:689 menu.sh:700 menu.sh:708 menu.sh:725 +#: menu.sh:684 menu.sh:690 menu.sh:701 menu.sh:709 menu.sh:726 msgid "Synoinfo" msgstr "Synoinfo" -#: menu.sh:684 +#: menu.sh:685 msgid "Type a name of synoinfo entry" msgstr "輸入參數的名稱" -#: menu.sh:690 +#: menu.sh:691 msgid "Type a value of '%s' synoinfo entry" msgstr "輸入 '%s' 參數的值”" -#: menu.sh:701 +#: menu.sh:702 msgid "No synoinfo entries to remove" msgstr "沒有 Synoinfo 參數被删除" -#: menu.sh:709 +#: menu.sh:710 msgid "Select synoinfo entry to remove" msgstr "選擇要删除的參數" -#: menu.sh:748 +#: menu.sh:749 msgid "%s cached." msgstr "%s 已緩存." -#: menu.sh:752 +#: menu.sh:753 msgid "Cleaning cache" msgstr "清除緩存" -#: menu.sh:759 +#: menu.sh:760 msgid "" "Based on the current network situation, switch to %s mirror to downloading." msgstr "根據當前的網絡狀況, 已切換到 %s 鏡像伺服器進行下載." -#: menu.sh:763 +#: menu.sh:764 msgid "Downloading %s" msgstr "下載 %s 中" -#: menu.sh:774 menu.sh:836 -msgid "Check internet or cache disk space" -msgstr "請檢查internet或磁碟空間" +#: menu.sh:774 menu.sh:837 +msgid "Check internet or cache disk space.\\nError: %d" +msgstr "請檢查internet或磁碟空間.\\nError: %d" -#: menu.sh:779 +#: menu.sh:781 msgid "Checking hash of %s: " msgstr "檢查 %s 的 hash: " -#: menu.sh:782 +#: menu.sh:784 msgid "md5 Hash of pat not match, try again!" msgstr "pat 的 md5 Hash 不匹配, 請重試!" -#: menu.sh:786 menu.sh:888 menu.sh:898 +#: menu.sh:788 menu.sh:891 menu.sh:901 msgid "OK" msgstr "OK" -#: menu.sh:790 +#: menu.sh:792 msgid "Disassembling %s: " msgstr "解壓 %s: " -#: menu.sh:795 +#: menu.sh:797 msgid "Uncompressed tar" msgstr "未壓縮 tar" -#: menu.sh:799 +#: menu.sh:801 msgid "Compressed tar" msgstr "壓縮 tar" -#: menu.sh:803 +#: menu.sh:805 msgid "Encrypted" msgstr "已加密" -#: menu.sh:808 +#: menu.sh:810 msgid "" "Could not determine if pat file is encrypted or not, maybe corrupted, try " "again!" msgstr "無法確定pat檔案是否加密, 可能已損壞, 請重試!" -#: menu.sh:818 +#: menu.sh:820 msgid "Extractor cached." msgstr "已存在解密程式." -#: menu.sh:825 +#: menu.sh:827 msgid "Downloading old pat to extract synology .pat extractor..." msgstr "下載舊 pat, 選取 .pat 解密程式中..." -#: menu.sh:865 menu.sh:868 +#: menu.sh:868 menu.sh:871 msgid "Extracting..." msgstr "解壓中..." -#: menu.sh:880 +#: menu.sh:883 msgid "pat Invalid, try again!" msgstr "無效的 pat, 請重試!" -#: menu.sh:883 +#: menu.sh:886 msgid "Setting hash: " msgstr "設定 hash: " -#: menu.sh:890 +#: menu.sh:893 msgid "Copying files: " msgstr "拷貝檔案: " -#: menu.sh:931 +#: menu.sh:934 msgid "Addon %s not found!" msgstr "挿件 %s 未找到!" -#: menu.sh:957 menu.sh:1991 +#: menu.sh:960 menu.sh:2010 msgid "Cleaning" msgstr "清除中" -#: menu.sh:959 +#: menu.sh:962 msgid "Ready!" msgstr "已就绪!" -#: menu.sh:972 +#: menu.sh:975 msgid "Switch LKM version:" msgstr "選擇LKM版本:" -#: menu.sh:975 +#: menu.sh:978 msgid "Switch direct boot:" msgstr "切換直接啟動:" -#: menu.sh:977 +#: menu.sh:980 msgid "Timeout of get ip in boot:" msgstr "啟動時取得 IP 的超時時間:" -#: menu.sh:978 +#: menu.sh:981 msgid "Timeout of boot wait:" msgstr "啟動超時時間:" -#: menu.sh:979 +#: menu.sh:982 msgid "kernel switching method:" msgstr "內核切換的管道:" -#: menu.sh:982 +#: menu.sh:983 +msgid "Reboot on kernel panic:" +msgstr "內核恐慌時重新啟動:" + +#: menu.sh:986 msgid "Set static IP" msgstr "設定靜態 IP" -#: menu.sh:983 +#: menu.sh:987 msgid "Edit user config file manually" msgstr "編輯用戶設定檔" -#: menu.sh:984 +#: menu.sh:988 msgid "Edit grub.cfg file manually" msgstr "編輯 grub.cfg" -#: menu.sh:985 +#: menu.sh:989 msgid "Try to recovery a DSM installed system" msgstr "嘗試恢復已安裝DSM的系統" -#: menu.sh:986 +#: menu.sh:990 msgid "Show SATA(s) # ports and drives" msgstr "顯示SATA(s) # 埠和驅動器" -#: menu.sh:988 +#: menu.sh:992 msgid "show/modify the current pat data" msgstr "顯示/修改當前pat下載連結" -#: menu.sh:990 +#: menu.sh:994 msgid "Allow downgrade installation" msgstr "允許降級安裝" -#: menu.sh:991 +#: menu.sh:995 msgid "Format disk(s) # Without loader disk" msgstr "格式化磁碟(s) # 不含開機磁碟" -#: menu.sh:992 +#: menu.sh:996 msgid "Reset DSM system password" msgstr "重置 DSM 系統密碼" -#: menu.sh:993 +#: menu.sh:997 msgid "Save modifications of '/opt/arpl'" msgstr "保存'/opt/arpl'的修改" -#: menu.sh:995 +#: menu.sh:999 msgid "Custom dts file # Need rebuild" msgstr "自定義dts檔案 # 需要重新編譯" -#: menu.sh:998 +#: menu.sh:1002 msgid "Backup bootloader disk # test" msgstr "備份開機磁碟 # 測試" -#: menu.sh:999 +#: menu.sh:1003 msgid "Restore bootloader disk # test" msgstr "恢復開機磁碟 # 測試" -#: menu.sh:1001 +#: menu.sh:1005 msgid "Install development tools" msgstr "安裝開發者工具" -#: menu.sh:1002 +#: menu.sh:1006 msgid "Show dsm logo:" msgstr "顯示 dsm logo:" -#: menu.sh:1005 menu.sh:1023 menu.sh:1035 menu.sh:1063 menu.sh:1087 -#: menu.sh:1151 menu.sh:1158 menu.sh:1176 menu.sh:1189 menu.sh:1192 -#: menu.sh:1202 menu.sh:1203 menu.sh:1208 menu.sh:1212 menu.sh:1223 -#: menu.sh:1225 menu.sh:1242 menu.sh:1247 menu.sh:1255 menu.sh:1261 -#: menu.sh:1274 menu.sh:1277 menu.sh:1283 menu.sh:1286 menu.sh:1301 -#: menu.sh:1306 menu.sh:1310 menu.sh:1325 menu.sh:1330 menu.sh:1337 -#: menu.sh:1341 menu.sh:1344 menu.sh:1349 menu.sh:1359 menu.sh:1364 -#: menu.sh:1370 menu.sh:1374 menu.sh:1391 menu.sh:1394 menu.sh:1400 -#: menu.sh:1408 menu.sh:1416 menu.sh:1425 menu.sh:1427 +#: menu.sh:1009 menu.sh:1027 menu.sh:1039 menu.sh:1059 menu.sh:1082 +#: menu.sh:1106 menu.sh:1170 menu.sh:1177 menu.sh:1195 menu.sh:1208 +#: menu.sh:1211 menu.sh:1221 menu.sh:1222 menu.sh:1227 menu.sh:1231 +#: menu.sh:1242 menu.sh:1244 menu.sh:1261 menu.sh:1266 menu.sh:1274 +#: menu.sh:1280 menu.sh:1293 menu.sh:1296 menu.sh:1302 menu.sh:1305 +#: menu.sh:1320 menu.sh:1325 menu.sh:1329 menu.sh:1344 menu.sh:1349 +#: menu.sh:1356 menu.sh:1360 menu.sh:1363 menu.sh:1368 menu.sh:1378 +#: menu.sh:1383 menu.sh:1389 menu.sh:1393 menu.sh:1410 menu.sh:1413 +#: menu.sh:1419 menu.sh:1427 menu.sh:1435 menu.sh:1444 menu.sh:1446 msgid "Advanced" msgstr "高級" -#: menu.sh:1006 +#: menu.sh:1010 msgid "Advanced option" msgstr "高級設定" -#: menu.sh:1024 menu.sh:1036 -msgid "Choose a waiting time(seconds)" -msgstr "選擇一個等待時間(秒)" +#: menu.sh:1028 menu.sh:1040 menu.sh:1060 +msgid "Choose a time(seconds)" +msgstr "選擇一個時間(秒)" -#: menu.sh:1051 +#: menu.sh:1070 msgid "Temporary IP: (UI will not refresh)" msgstr "臨時 IP: (UI 不會重繪)" -#: menu.sh:1088 +#: menu.sh:1107 msgid "Set IP.." msgstr "設定 IP.." -#: menu.sh:1149 +#: menu.sh:1168 msgid "\\nTotal of ports: %s\\n" msgstr "\\n埠總數: %s\\n" -#: menu.sh:1150 +#: menu.sh:1169 msgid "" "\\nPorts with color \\Z1red\\Zn as DUMMY, color \\Z2\\Zbgreen\\Zn has drive " "connected." msgstr "\\n\\Z1红色\\Zn 為類比埠, \\Z2\\Zb绿色\\Zn 為已驅動的物理埠." -#: menu.sh:1157 +#: menu.sh:1176 msgid "pat: (editable)" msgstr "pat: (可編輯)" -#: menu.sh:1173 +#: menu.sh:1192 msgid "" "This feature will allow you to downgrade the installation by removing the " "VERSION file from the first partition of all disks.\\n" msgstr "此功能通過删除所有磁碟的第一個分區的VERSION檔案來允許你降級安裝.\\n" -#: menu.sh:1174 +#: menu.sh:1193 msgid "Therefore, please insert all disks before continuing.\\n" msgstr "囙此, 請插入所有磁碟後再進行操作.\\n" -#: menu.sh:1175 menu.sh:1209 +#: menu.sh:1194 menu.sh:1228 msgid "" "Warning:\\nThis operation is irreversible. Please backup important data. Do " "you want to continue?" msgstr "警告:\\n該操作不可逆, 請提前備份重要數據. 是否繼續?" -#: menu.sh:1190 +#: menu.sh:1209 msgid "Removing ..." msgstr "删除中..." -#: menu.sh:1191 +#: menu.sh:1210 msgid "Remove VERSION file for all disks completed." msgstr "已移除所有磁碟的 VERSION 檔案." -#: menu.sh:1213 +#: menu.sh:1232 msgid "" "Warning:\\nThe current hds is in raid, do you still want to format them?" msgstr "警告:\\n當前的硬碟處於raid中, 是否仍要格式化?" -#: menu.sh:1224 +#: menu.sh:1243 msgid "Formatting ..." msgstr "格式化中..." -#: menu.sh:1226 +#: menu.sh:1245 msgid "Formatting is complete." msgstr "格式化完成." -#: menu.sh:1243 +#: menu.sh:1262 msgid "The installed Syno system not found in the currently inserted disks!" msgstr "未在當前插入的硬碟中找到已安裝的syno系統!" -#: menu.sh:1248 +#: menu.sh:1267 msgid "Choose a user name" msgstr "選擇一個用戶" -#: menu.sh:1256 +#: menu.sh:1275 msgid "Type a new password for user '%s'" msgstr "輸入用戶 '%s' 的新密碼" -#: menu.sh:1262 +#: menu.sh:1281 msgid "Invalid password" msgstr "無效密碼" -#: menu.sh:1275 +#: menu.sh:1294 msgid "Resetting ..." msgstr "重置中 ..." -#: menu.sh:1278 +#: menu.sh:1297 msgid "Password reset completed." msgstr "重置密碼完成." -#: menu.sh:1284 menu.sh:1342 menu.sh:1395 +#: menu.sh:1303 menu.sh:1361 menu.sh:1414 msgid "" "Warning:\\nDo not terminate midway, otherwise it may cause damage to the " "arpl. Do you want to continue?" msgstr "警告:\\n請不要中途停止, 否則將導致arpl引導損毀, 是否繼續?" -#: menu.sh:1287 +#: menu.sh:1306 msgid "Saving ..." msgstr "保存中..." -#: menu.sh:1302 +#: menu.sh:1321 msgid "Save is complete." msgstr "保存完成." -#: menu.sh:1311 +#: menu.sh:1330 msgid "" "Currently, only dts format files are supported. Please prepare and click to " "confirm uploading.\\n(saved in /mnt/p3/users/)" msgstr "" "現時, 只支持dts格式的檔案, 請準備並點擊確認上傳.\\n(保存於 /mnt/p3/users/ 中)" -#: menu.sh:1326 +#: menu.sh:1345 msgid "Not a valid dts file, please try again!" msgstr "dts 檔案無效, 請重試!" -#: menu.sh:1331 +#: menu.sh:1350 msgid "A valid dts file, Automatically import at compile time." msgstr "dts 檔案有效, 將在編譯時自動導入." -#: menu.sh:1345 +#: menu.sh:1364 msgid "Backuping..." msgstr "備份中..." -#: menu.sh:1350 +#: menu.sh:1369 msgid "" "Failed to generate backup. There may be insufficient memory. Please clear " "the cache and try again!" msgstr "生成備份失敗, 可能記憶體不足, 請清除緩存重試!" -#: menu.sh:1357 +#: menu.sh:1376 msgid "Click on the address above to download." msgstr "點擊上面的地址下載." -#: menu.sh:1358 +#: menu.sh:1377 msgid "" "Please confirm the completion of the download before closing this window." msgstr "請確認下載完成再關閉此視窗." -#: menu.sh:1365 +#: menu.sh:1384 msgid "backup is complete." msgstr "備份完成." -#: menu.sh:1375 +#: menu.sh:1394 msgid "" "Please upload the backup file.\\nCurrently, zip(github) and img.gz(backup) " "compressed file formats are supported." msgstr "請上傳備份的檔案\\n當前支持 zip(github) 和 img.gz(backup) 格式." -#: menu.sh:1392 +#: menu.sh:1411 msgid "Not a valid .zip/.img.gz file, please try again!" msgstr "不是有效的.zip/.img.gz檔案, 請重試!" -#: menu.sh:1401 +#: menu.sh:1420 msgid "Writing..." msgstr "寫入中..." -#: menu.sh:1409 +#: menu.sh:1428 msgid "Restore bootloader disk with success to %s!\\nReboot?" msgstr "成功恢復開機磁碟到 %s!\\n重啓?" -#: menu.sh:1417 +#: menu.sh:1436 msgid "" "This option only installs opkg package management, allowing you to install " "more tools for use and debugging. Do you want to continue?" msgstr "" "該選項僅安裝 opkg 包管理工具, 使你能够安裝更多的工具以供使用和調試, 是否繼續?" -#: menu.sh:1426 +#: menu.sh:1445 msgid "opkg installing ..." msgstr "opkg 安裝中 ..." -#: menu.sh:1428 +#: menu.sh:1447 msgid "" "opkg install is complete. Please reconnect to SSH/web, or execute 'source ~/." "bashrc'" msgstr "opkg 安裝完成. 請重新連結 SSH/web, 或者執行 'source ~/.bashrc'" -#: menu.sh:1443 menu.sh:1480 menu.sh:1487 +#: menu.sh:1462 menu.sh:1499 menu.sh:1506 msgid "Try recovery DSM" msgstr "嘗試恢復DSM系統" -#: menu.sh:1444 +#: menu.sh:1463 msgid "Trying to recovery a DSM installed system" msgstr "嘗試恢復已安裝的DSM系統中" -#: menu.sh:1470 +#: menu.sh:1489 msgid "Found a installation:\\nModel: %s\\nProductversion: %s" msgstr "找到已安裝:\\n型號: %s\\n版本: %s" -#: menu.sh:1474 +#: menu.sh:1493 msgid "\\nSerial: %s" msgstr "\\nSN: %s" -#: menu.sh:1488 +#: menu.sh:1507 msgid "Unfortunately I couldn't mount the DSM partition!" msgstr "很遺憾, 我無法掛載DSM分區!" -#: menu.sh:1496 menu.sh:1502 menu.sh:1525 +#: menu.sh:1515 menu.sh:1521 menu.sh:1544 msgid "Edit with caution" msgstr "請謹慎編輯" -#: menu.sh:1536 +#: menu.sh:1555 msgid "Alert" msgstr "警告" -#: menu.sh:1537 +#: menu.sh:1556 msgid "Config changed, would you like to rebuild the loader?" msgstr "配寘已更改, 是否重新編譯引導?" -#: menu.sh:1549 menu.sh:1933 +#: menu.sh:1568 menu.sh:1952 msgid "Choose a language" msgstr "選擇語言" -#: menu.sh:1563 +#: menu.sh:1582 msgid "Choose a layout" msgstr "選擇佈局" -#: menu.sh:1575 +#: menu.sh:1594 msgid "Choice a keymap" msgstr "選擇鍵盤" -#: menu.sh:1594 menu.sh:1647 menu.sh:1698 menu.sh:1770 menu.sh:1773 -#: menu.sh:1776 menu.sh:1779 menu.sh:1786 menu.sh:1793 menu.sh:1800 -#: menu.sh:1807 +#: menu.sh:1613 menu.sh:1666 menu.sh:1717 menu.sh:1789 menu.sh:1792 +#: menu.sh:1795 menu.sh:1798 menu.sh:1805 menu.sh:1812 menu.sh:1819 +#: menu.sh:1826 msgid "Update %s" msgstr "更新 %s" -#: menu.sh:1597 +#: menu.sh:1616 msgid "Checking last version" msgstr "檢測新版本中" -#: menu.sh:1610 menu.sh:1613 +#: menu.sh:1629 menu.sh:1632 msgid "Error checking new version" msgstr "檢測新版本錯誤" -#: menu.sh:1620 +#: menu.sh:1639 msgid "No new version." msgstr "沒有新版本." -#: menu.sh:1624 +#: menu.sh:1643 msgid "No new version. Actual version is %s\\nForce update?" msgstr "沒有新版本. 實際版本為 %s\\n強制更新?" -#: menu.sh:1629 +#: menu.sh:1648 msgid "Downloading last version" msgstr "下載新版本中" -#: menu.sh:1635 menu.sh:1638 +#: menu.sh:1654 menu.sh:1657 msgid "Error downloading new version" msgstr "下載新版本錯誤" -#: menu.sh:1649 menu.sh:1700 +#: menu.sh:1668 menu.sh:1719 msgid "Extracting last version" msgstr "解壓新版本" -#: menu.sh:1653 +#: menu.sh:1672 msgid "Error extracting update file" msgstr "更新檔案解壓錯誤" -#: menu.sh:1660 +#: menu.sh:1679 msgid "Checksum do not match!" msgstr "Checksum不匹配!" -#: menu.sh:1669 +#: menu.sh:1688 msgid "" "The current version does not support upgrading to the latest update.zip. " "Please remake the bootloader disk!" msgstr "當前版本不支持最新的update.zip陞級, 請重新製作引導盤!" -#: menu.sh:1674 +#: menu.sh:1693 msgid "Installing new files" msgstr "安裝更新中" -#: menu.sh:1691 +#: menu.sh:1710 msgid "Arpl updated with success to %s!\\nReboot?" msgstr "Arpl更新成功 %s!\\n重啓?" -#: menu.sh:1706 +#: menu.sh:1725 msgid "Installing new %s" msgstr "安裝新 %s 中" -#: menu.sh:1735 menu.sh:1738 +#: menu.sh:1754 menu.sh:1757 msgid "%s updated with success!" msgstr "%s 更新成功!" -#: menu.sh:1752 +#: menu.sh:1771 msgid "Update all" msgstr "更新所有" -#: menu.sh:1753 +#: menu.sh:1772 msgid "Update arpl" msgstr "更新arpl" -#: menu.sh:1754 +#: menu.sh:1773 msgid "Update addons" msgstr "更新挿件" -#: menu.sh:1755 +#: menu.sh:1774 msgid "Update modules" msgstr "更新模塊" -#: menu.sh:1756 +#: menu.sh:1775 msgid "Update LKMs" msgstr "更新LKMs" -#: menu.sh:1758 +#: menu.sh:1777 msgid "Set proxy server" msgstr "設定代理" -#: menu.sh:1760 +#: menu.sh:1779 msgid "Local upload" msgstr "本地上傳" -#: menu.sh:1761 +#: menu.sh:1780 msgid "Pre Release:" msgstr "預發佈: " -#: menu.sh:1770 menu.sh:1793 +#: menu.sh:1789 menu.sh:1812 msgid "addons" msgstr "挿件" -#: menu.sh:1773 menu.sh:1800 +#: menu.sh:1792 menu.sh:1819 msgid "modules" msgstr "模塊" -#: menu.sh:1776 menu.sh:1807 +#: menu.sh:1795 menu.sh:1826 msgid "LKMs" msgstr "LKMs" -#: menu.sh:1779 menu.sh:1786 +#: menu.sh:1798 menu.sh:1805 msgid "arpl" msgstr "arpl" -#: menu.sh:1816 menu.sh:1827 menu.sh:1838 menu.sh:1848 menu.sh:1865 -#: menu.sh:1879 +#: menu.sh:1835 menu.sh:1846 menu.sh:1857 menu.sh:1867 menu.sh:1884 +#: menu.sh:1898 msgid "Update" msgstr "更新" -#: menu.sh:1817 +#: menu.sh:1836 msgid "Please enter a proxy server url" msgstr "請輸入代理伺服器url" -#: menu.sh:1828 +#: menu.sh:1847 msgid "Invalid proxy server url, continue?" msgstr "無效的代理伺服器url, 是否繼續?" -#: menu.sh:1843 +#: menu.sh:1862 msgid "" "Please keep the attachment name consistent with the attachment name on " "Github.\\n" msgstr "請保持附件名稱與github上附件名稱一致.\\n" -#: menu.sh:1844 +#: menu.sh:1863 msgid "Upload update.zip will update arpl.\\n" msgstr "上傳 update.zip 将更新 arpl.\\n" -#: menu.sh:1845 +#: menu.sh:1864 msgid "Upload addons.zip will update Addons.\\n" msgstr "上傳 addons.zip 将更新 挿件.\\n" -#: menu.sh:1846 +#: menu.sh:1865 msgid "Upload modules.zip will update Modules.\\n" msgstr "上傳 modules.zip 将更新 模塊.\\n" -#: menu.sh:1847 +#: menu.sh:1866 msgid "Upload rp-lkms.zip will update LKMs.\\n" msgstr "上傳 rp-lkms.zip 将更新 LKMs.\\n" -#: menu.sh:1896 +#: menu.sh:1915 msgid "This person is very lazy and hasn't written anything." msgstr "這個人很懶, 什麼也沒有寫." -#: menu.sh:1897 +#: menu.sh:1916 msgid "Edit" msgstr "編輯" -#: menu.sh:1914 +#: menu.sh:1933 msgid "Choose a model" msgstr "選擇型號" -#: menu.sh:1916 +#: menu.sh:1935 msgid "Choose a version" msgstr "選擇版本" -#: menu.sh:1918 +#: menu.sh:1937 msgid "Addons menu" msgstr "挿件" -#: menu.sh:1919 +#: menu.sh:1938 msgid "Modules menu" msgstr "模塊" -#: menu.sh:1920 +#: menu.sh:1939 msgid "Cmdline menu" msgstr "設定 Cmdline" -#: menu.sh:1921 +#: menu.sh:1940 msgid "Synoinfo menu" msgstr "設定 Synoinfo" -#: menu.sh:1924 +#: menu.sh:1943 msgid "Advanced menu" msgstr "高級設定" -#: menu.sh:1927 +#: menu.sh:1946 msgid "Build the loader" msgstr "編譯引導" -#: menu.sh:1931 +#: menu.sh:1950 msgid "Boot the loader" msgstr "啟動" -#: menu.sh:1934 +#: menu.sh:1953 msgid "Choose a keymap" msgstr "選擇鍵盤" -#: menu.sh:1936 +#: menu.sh:1955 msgid "Clean disk cache" msgstr "清除磁碟緩存" -#: menu.sh:1938 +#: menu.sh:1957 msgid "Update menu" msgstr "更新" -#: menu.sh:1939 +#: menu.sh:1958 msgid "Notepad" msgstr "備註" -#: menu.sh:1943 +#: menu.sh:1962 msgid "Main menu" msgstr "主選單" -#: menu.sh:2007 +#: menu.sh:2026 msgid "Choose a action" msgstr "選擇動作" -#: menu.sh:2008 +#: menu.sh:2027 msgid "Poweroff" msgstr "關機" -#: menu.sh:2009 +#: menu.sh:2028 msgid "Reboot" msgstr "重啓" -#: menu.sh:2010 +#: menu.sh:2029 msgid "Reboot to arpl" msgstr "重啓到arpl" -#: menu.sh:2011 +#: menu.sh:2030 msgid "Back to shell" msgstr "退出到shell" -#: menu.sh:2037 +#: menu.sh:2056 msgid "Call \\033[1;32mmenu.sh\\033[0m to return to menu" msgstr "執行 \\033[1;32mmenu.sh\\033[0m 重新進入設定選單" diff --git a/files/board/arpl/overlayfs/opt/arpl/lang/zh_TW.mo b/files/board/arpl/overlayfs/opt/arpl/lang/zh_TW.mo index 5bc05f10930db91e0849b1e6d362fa745c60c38f..93e60d61e74ed8c8ef7971f1864a7a6feaca4f5b 100644 GIT binary patch delta 6561 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 B^Wy*j diff --git a/files/board/arpl/overlayfs/opt/arpl/lang/zh_TW.po b/files/board/arpl/overlayfs/opt/arpl/lang/zh_TW.po index a9f651e0..4adb72ba 100644 --- a/files/board/arpl/overlayfs/opt/arpl/lang/zh_TW.po +++ b/files/board/arpl/overlayfs/opt/arpl/lang/zh_TW.po @@ -17,8 +17,8 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 3.3.2\n" -msgid "%2ds (accessing arpl will interrupt boot)" -msgstr "%2ds (存取 arpl 將中斷開機)" +msgid "%2ds (Changing access(ssh/web) status will interrupt boot)" +msgstr "%2ds ((ssh/web)链接状态改變將中斷啟動)" msgid "%s cached." msgstr "%s 已快取。" @@ -29,8 +29,8 @@ msgstr "%s 更新成功!" msgid "'Not set MACs' is enabled." msgstr "'不設定 MACs' 已啟用。" -msgid "A new access is connected, the boot process is interrupted." -msgstr "新的存取已連接,開機過程已中斷。" +msgid "access(ssh/web) status has changed and booting is interrupted." +msgstr "(ssh/web)链接狀態已改變,開機過程已中斷。" msgid "A valid dts file, Automatically import at compile time." msgstr "dts 檔案有效,將在編譯時自動匯入。" @@ -116,8 +116,8 @@ msgstr "掛載 %s 失敗" msgid "Changing MAC" msgstr "修改 MAC" -msgid "Check internet or cache disk space" -msgstr "請檢查網際網路或磁碟空間" +msgid "Check internet or cache disk space.\\nError: %d" +msgstr "請檢查網際網路或磁碟空間.\\nError: %d" msgid "Checking Connect." msgstr "檢查連線。" @@ -161,8 +161,8 @@ msgstr "選擇使用者" msgid "Choose a version" msgstr "選擇版本" -msgid "Choose a waiting time(seconds)" -msgstr "選擇一個等待時間(秒)" +msgid "Choose a time(seconds)" +msgstr "選擇一個時間(秒)" msgid "Choose modules to include" msgstr "選擇要載入的模組" @@ -485,8 +485,8 @@ msgstr "優先使用官方驅動程式:" msgid "Product Version" msgstr "產品版本" -msgid "Ramdisk not patched:\\n" -msgstr "Ramdisk 修補失敗:\\n" +msgid "Ramdisk not patched,\\nPlease upgrade the bootloader version and try again.\\nPatch error:\\n" +msgstr "Ramdisk 修補失敗,\\n請升級引導版本並重試.\\n修補錯誤:\\n" msgid "Reading models" msgstr "讀取型號" @@ -500,6 +500,9 @@ msgstr "已就绪!" msgid "Reboot" msgstr "重新開機" +msgid "Reboot on kernel panic:" +msgstr "內核恐慌時重新開機:" + msgid "Reboot to arpl" msgstr "重開機到 ARPL" @@ -632,8 +635,8 @@ msgstr "該增益集已存在,是否覆寫?" msgid "The current version does not support upgrading to the latest update.zip. Please remake the bootloader disk!" msgstr "目前版本不支援最新的 update.zip 升級,請重新製作開機碟!" -msgid "The current version of arpl does not support booting %s-%s, please rebuild." -msgstr "目前版本的 arpl 不支援開機 %s-%s,請重新編譯。" +msgid "The current version of bootloader does not support booting %s-%s, please upgrade and rebuild." +msgstr "當前版本的開機磁碟不支持開機 %s-%s, 請升級並重新編譯." msgid "The imported .ko of this function will be implanted into the corresponding arch's modules package, which will affect all models of the arch.\\n" msgstr "該功能匯入 .ko 將植入相對架構的模組套件。這將影響該架構的所有型號。\\n" @@ -833,6 +836,6 @@ msgstr "pat: (可編輯)" msgid "show/modify the current pat data" msgstr "顯示/修改目前 pat 下載連結" -msgid "zImage not patched:\\n" -msgstr "zImage 修補失敗:\\n" +msgid "zImage not patched,\\nPlease upgrade the bootloader version and try again.\\nPatch error:\\n" +msgstr "zImage 修補失敗,\\n請升級引導版本並重試.\\n修補錯誤:\\n" diff --git a/files/board/arpl/overlayfs/opt/arpl/menu.sh b/files/board/arpl/overlayfs/opt/arpl/menu.sh index 8c30fce7..a03f1045 100755 --- a/files/board/arpl/overlayfs/opt/arpl/menu.sh +++ b/files/board/arpl/overlayfs/opt/arpl/menu.sh @@ -33,6 +33,7 @@ PRERELEASE="$(readConfigKey "prerelease" "${USER_CONFIG_FILE}")" BOOTWAIT="$(readConfigKey "bootwait" "${USER_CONFIG_FILE}")" BOOTIPWAIT="$(readConfigKey "bootipwait" "${USER_CONFIG_FILE}")" KERNELWAY="$(readConfigKey "kernelway" "${USER_CONFIG_FILE}")" +KERNELPANIC="$(readConfigKey "kernelpanic" "${USER_CONFIG_FILE}")" ODP="$(readConfigKey "odp" "${USER_CONFIG_FILE}")" # official drivers priorities SN="$(readConfigKey "sn" "${USER_CONFIG_FILE}")" MAC1="$(readConfigKey "mac1" "${USER_CONFIG_FILE}")" @@ -770,8 +771,9 @@ function extractDsmFiles() { STATUS=$(curl -k -w "%{http_code}" -L "${PATURL}" -o "${PAT_PATH}" --progress-bar) if [ $? -ne 0 -o ${STATUS} -ne 200 ]; then rm -f "${PAT_PATH}" + MSG="$(printf "$(TEXT "Check internet or cache disk space.\nError: %d")" "${STATUS}")" dialog --backtitle "$(backtitle)" --colors --title "$(TEXT "Error")" \ - --msgbox "$(TEXT "Check internet or cache disk space")" 0 0 + --msgbox "${MSG}" 0 0 return 1 fi fi @@ -832,8 +834,9 @@ function extractDsmFiles() { STATUS=$(curl -k -w "%{http_code}" -L "${OLDPATURL}" -o "${OLDPAT_PATH}" --progress-bar) if [ $? -ne 0 -o ${STATUS} -ne 200 ]; then rm -f "${OLDPAT_PATH}" + MSG="$(printf "$(TEXT "Check internet or cache disk space.\nError: %d")" "${STATUS}")" dialog --backtitle "$(backtitle)" --colors --title "$(TEXT "Error")" \ - --msgbox "$(TEXT "Check internet or cache disk space")" 0 0 + --msgbox "${MSG}" 0 0 return 1 fi fi @@ -941,14 +944,14 @@ function make() { /opt/arpl/zimage-patch.sh if [ $? -ne 0 ]; then dialog --backtitle "$(backtitle)" --colors --title "$(TEXT "Error")" \ - --msgbox "$(TEXT "zImage not patched:\n")$(<"${LOG_FILE}")" 0 0 + --msgbox "$(TEXT "zImage not patched,\nPlease upgrade the bootloader version and try again.\nPatch error:\n")$(<"${LOG_FILE}")" 0 0 return 1 fi /opt/arpl/ramdisk-patch.sh if [ $? -ne 0 ]; then dialog --backtitle "$(backtitle)" --colors --title "$(TEXT "Error")" \ - --msgbox "$(TEXT "Ramdisk not patched:\n")$(<"${LOG_FILE}")" 0 0 + --msgbox "$(TEXT "Ramdisk not patched,\nPlease upgrade the bootloader version and try again.\nPatch error:\n")$(<"${LOG_FILE}")" 0 0 return 1 fi PRODUCTVER="$(readConfigKey "productver" "${USER_CONFIG_FILE}")" @@ -977,6 +980,7 @@ function advancedMenu() { echo "i \"$(TEXT "Timeout of get ip in boot:") \Z4${BOOTIPWAIT}\Zn\"" >>"${TMP_PATH}/menu" echo "w \"$(TEXT "Timeout of boot wait:") \Z4${BOOTWAIT}\Zn\"" >>"${TMP_PATH}/menu" echo "k \"$(TEXT "kernel switching method:") \Z4${KERNELWAY}\Zn\"" >>"${TMP_PATH}/menu" + echo "n \"$(TEXT "Reboot on kernel panic:") \Z4${KERNELPANIC}\Zn\"" >>"${TMP_PATH}/menu" fi fi echo "m \"$(TEXT "Set static IP")\"" >>"${TMP_PATH}/menu" @@ -1021,7 +1025,7 @@ function advancedMenu() { i) ITEMS="$(echo -e "1 \n5 \n10 \n30 \n60 \n")" dialog --backtitle "$(backtitle)" --colors --title "$(TEXT "Advanced")" \ - --default-item "${BOOTIPWAIT}" --no-items --menu "$(TEXT "Choose a waiting time(seconds)")" 0 0 0 ${ITEMS} \ + --default-item "${BOOTIPWAIT}" --no-items --menu "$(TEXT "Choose a time(seconds)")" 0 0 0 ${ITEMS} \ 2>${TMP_PATH}/resp [ $? -ne 0 ] && return resp=$(cat ${TMP_PATH}/resp 2>/dev/null) @@ -1033,7 +1037,7 @@ function advancedMenu() { w) ITEMS="$(echo -e "1 \n5 \n10 \n30 \n60 \n")" dialog --backtitle "$(backtitle)" --colors --title "$(TEXT "Advanced")" \ - --default-item "${BOOTWAIT}" --no-items --menu "$(TEXT "Choose a waiting time(seconds)")" 0 0 0 ${ITEMS} \ + --default-item "${BOOTWAIT}" --no-items --menu "$(TEXT "Choose a time(seconds)")" 0 0 0 ${ITEMS} \ 2>${TMP_PATH}/resp [ $? -ne 0 ] && return resp=$(cat ${TMP_PATH}/resp 2>/dev/null) @@ -1047,6 +1051,21 @@ function advancedMenu() { writeConfigKey "kernelway" "${KERNELWAY}" "${USER_CONFIG_FILE}" NEXT="e" ;; + n) + rm -f "${TMP_PATH}/opts" + echo "5 \"Reboot after 5 seconds\"" >>"${TMP_PATH}/opts" + echo "0 \"No reboot\"" >>"${TMP_PATH}/opts" + echo "-1 \"Restart immediately\"" >>"${TMP_PATH}/opts" + dialog --backtitle "$(backtitle)" --colors --title "$(TEXT "Advanced")" \ + --default-item "${KERNELPANIC}" --menu "$(TEXT "Choose a time(seconds)")" 0 0 0 --file "${TMP_PATH}/opts" \ + 2>${TMP_PATH}/resp + [ $? -ne 0 ] && return + resp=$(cat ${TMP_PATH}/resp 2>/dev/null) + [ -z "${resp}" ] && return + KERNELPANIC=${resp} + writeConfigKey "kernelpanic" "${KERNELPANIC}" "${USER_CONFIG_FILE}" + NEXT="e" + ;; m) MSG="$(TEXT "Temporary IP: (UI will not refresh)")" ITEMS=""