增加update时系统时间未校时的情况
This commit is contained in:
parent
e2fe55bee3
commit
7cc2f428f3
|
@ -9,6 +9,7 @@ __all__ = (
|
|||
"ERROR_REMOVE_ESSENTIAL_PACKAGES","ERROR_NOT_DISK_SPACE","ERROR_NOT_CONFIGPKG_DEPENDENCIES","ERROR_NOT_SELFPKG_DEPENDENCIES",
|
||||
"ERROR_NOT_FIX_SYSTEM","ERROR_READ_LOCAL_DEB","ERROR_LOCAL_DEB_FORMAT","ERROR_INSTALL_DEB_BASE","ERROR_LOAD_CONFIG_FAILED",
|
||||
"ERROR_UPDATE_KEY_SIGNATURES","ERROR_UPDATE_NET_AUTHENTICATION","ERROR_UPDATE_NOTREAD_SOURCES","PRIORITY_UPGRADE_SUCCCESSED",
|
||||
"ERROR_UPDATE_INVALID_TIME",
|
||||
|
||||
"get_error_description_from_enum", "get_error_string_from_enum", "get_source_name_from_enum", "get_caller_from_enum")
|
||||
|
||||
|
@ -19,11 +20,12 @@ _ = gettext.gettext
|
|||
|
||||
PRIORITY_UPGRADE_SUCCCESSED = "priority-upgrade-successed"
|
||||
|
||||
#更新阶段
|
||||
#apt update阶段出现的错误解析
|
||||
ERROR_UPDATE_DEFAULT_FAILED = "error-update-default-failed"
|
||||
ERROR_UPDATE_KEY_SIGNATURES = "The following signatures"
|
||||
ERROR_UPDATE_NET_AUTHENTICATION ="does the network require authentication?"
|
||||
ERROR_UPDATE_NOTREAD_SOURCES = "The list of sources could not be read"
|
||||
ERROR_UPDATE_INVALID_TIME = "(invalid for another"
|
||||
|
||||
ERROR_UPDATE_SOURCE_FAILED = "error-update-source-failed"
|
||||
ERROR_NETWORK_FAILED = "error-network-failed"
|
||||
|
@ -81,6 +83,7 @@ _DESCS_ERROR = {
|
|||
ERROR_NETWORK_FAILED: _("Please check your network connection and retry."),
|
||||
ERROR_UPDATE_KEY_SIGNATURES: _("Check your source public key signature"),
|
||||
ERROR_UPDATE_NOTREAD_SOURCES: _("Please check your source list and retry."),
|
||||
ERROR_UPDATE_INVALID_TIME: _("Please check the system time and synchronize the system time before updating."),
|
||||
ERROR_UPDATE_NET_AUTHENTICATION: _("Check if your network requires authentication?"),
|
||||
ERROR_NOT_GROUPS_CONFIG: _("Unable to get group configuration package, Please check if the configuration package exists in the software source repository."),
|
||||
ERROR_NOT_INIT_PACKAGESINFIO: _("An unresolvable problem occurred while initializing the package."),
|
||||
|
|
|
@ -775,6 +775,8 @@ class InstallBackend():
|
|||
error_desc = get_error_description_from_enum(ERROR_UPDATE_NET_AUTHENTICATION)
|
||||
elif ERROR_UPDATE_NOTREAD_SOURCES in self.aptd_base.error_details:
|
||||
error_desc = get_error_description_from_enum(ERROR_UPDATE_NOTREAD_SOURCES)
|
||||
elif ERROR_UPDATE_INVALID_TIME in self.aptd_base.error_details:
|
||||
error_desc = get_error_description_from_enum(ERROR_UPDATE_INVALID_TIME)
|
||||
|
||||
if success:
|
||||
#开始生成列表
|
||||
|
|
|
@ -2754,4 +2754,7 @@ msgid "Upgrade System"
|
|||
msgstr "全盘升级"
|
||||
|
||||
msgid "kylin-unattended-upgrade"
|
||||
msgstr "自动更新"
|
||||
msgstr "自动更新"
|
||||
|
||||
msgid "Please check the system time and synchronize the system time before updating."
|
||||
msgstr "请检查系统时间,同步系统时间后再进行更新。"
|
|
@ -2687,4 +2687,7 @@ msgid "Upgrade System"
|
|||
msgstr "全盤升級"
|
||||
|
||||
msgid "kylin-unattended-upgrade"
|
||||
msgstr "自動更新"
|
||||
msgstr "自動更新"
|
||||
|
||||
msgid "Please check the system time and synchronize the system time before updating."
|
||||
msgstr "請檢查系統時間,同步系統時間后再進行更新。"
|
|
@ -2719,4 +2719,7 @@ msgid "Upgrade System"
|
|||
msgstr "全盤升級"
|
||||
|
||||
msgid "kylin-unattended-upgrade"
|
||||
msgstr "自動更新"
|
||||
msgstr "自動更新"
|
||||
|
||||
msgid "Please check the system time and synchronize the system time before updating."
|
||||
msgstr "請檢查系統時間,同步系統時間后再進行更新。"
|
Loading…
Reference in New Issue