We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 42eee09 + f0fb73f commit cb447daCopy full SHA for cb447da
lang.py
@@ -170,7 +170,7 @@ def pack_to_asar(self):
170
def restore_backup(self):
171
"""完整还原操作"""
172
if not os.path.exists(self._backup_path):
173
- logging.info("Backup file not found, skip backup restore.")
+ logging.info("未找到备份文件,跳过恢复备份|Backup file not found, skip backup restore.")
174
return
175
176
shutil.copy(self._backup_path, self._original_path)
@@ -180,7 +180,7 @@ def create_backup(self):
180
"""智能备份管理(仅在缺失时创建)"""
181
182
shutil.copy(self._original_path, self._backup_path)
183
- logging.info("Created initial backup.")
+ logging.info("创建初始备份|Created initial backup.")
184
185
def manage_workspace(self):
186
# 备份
0 commit comments