refactor: translate Chinese log messages to English in core modules

This commit is contained in:
vffuunnyy
2025-08-16 04:00:00 +07:00
parent 6051bd6d06
commit 902256d461
21 changed files with 356 additions and 352 deletions

View File

@@ -73,7 +73,7 @@ impl Timer {
logging!(
info,
Type::Timer,
"已注册的定时任务数量: {}",
"Registered timer task count: {}",
timer_map.len()
);
@@ -81,7 +81,7 @@ impl Timer {
logging!(
info,
Type::Timer,
"注册了定时任务 - uid={}, interval={}min, task_id={}",
"Registered timer task - uid={}, interval={}min, task_id={}",
uid,
task.interval_minutes,
task.task_id
@@ -100,7 +100,7 @@ impl Timer {
let uid = item.uid.as_ref()?;
if interval > 0 && cur_timestamp - updated >= interval * 60 {
logging!(info, Type::Timer, "需要立即更新的配置: uid={}", uid);
logging!(info, Type::Timer, "Profile requires immediate update: uid={}", uid);
Some(uid.clone())
} else {
None
@@ -116,7 +116,7 @@ impl Timer {
logging!(
info,
Type::Timer,
"需要立即更新的配置数量: {}",
"Number of profiles requiring immediate update: {}",
profiles_to_update.len()
);
let timer_map = self.timer_map.read();
@@ -124,7 +124,7 @@ impl Timer {
for uid in profiles_to_update {
if let Some(task) = timer_map.get(&uid) {
logging!(info, Type::Timer, "立即执行任务: uid={}", uid);
logging!(info, Type::Timer, "Executing task immediately: uid={}", uid);
if let Err(e) = delay_timer.advance_task(task.task_id) {
logging!(warn, Type::Timer, "Failed to advance task {}: {}", uid, e);
}
@@ -237,7 +237,7 @@ impl Timer {
logging!(
debug,
Type::Timer,
"找到定时更新配置: uid={}, interval={}min",
"Found scheduled update config: uid={}, interval={}min",
uid,
interval
);
@@ -251,7 +251,7 @@ impl Timer {
logging!(
debug,
Type::Timer,
"生成的定时更新配置数量: {}",
"Generated scheduled update config count: {}",
new_map.len()
);
new_map
@@ -267,7 +267,7 @@ impl Timer {
logging!(
debug,
Type::Timer,
"当前 timer_map 大小: {}",
"Current timer_map size: {}",
timer_map.len()
);
@@ -279,7 +279,7 @@ impl Timer {
logging!(
debug,
Type::Timer,
"定时任务间隔变更: uid={}, ={}, ={}",
"Timer task interval changed: uid={}, old={}, new={}",
uid,
task.interval_minutes,
interval
@@ -288,12 +288,12 @@ impl Timer {
}
None => {
// Task no longer needed
logging!(debug, Type::Timer, "定时任务已删除: uid={}", uid);
logging!(debug, Type::Timer, "Timer task removed: uid={}", uid);
diff_map.insert(uid.clone(), DiffFlag::Del(task.task_id));
}
_ => {
// Task exists with same interval, no change needed
logging!(debug, Type::Timer, "定时任务保持不变: uid={}", uid);
logging!(debug, Type::Timer, "Timer task unchanged: uid={}", uid);
}
}
}
@@ -306,7 +306,7 @@ impl Timer {
logging!(
debug,
Type::Timer,
"新增定时任务: uid={}, interval={}min",
"Added timer task: uid={}, interval={}min",
uid,
interval
);
@@ -321,6 +321,7 @@ impl Timer {
}
logging!(debug, Type::Timer, "定时任务变更数量: {}", diff_map.len());
logging!(debug, Type::Timer, "Number of timer task changes: {}", diff_map.len());
diff_map
}
@@ -363,13 +364,13 @@ impl Timer {
/// Get next update time for a profile
pub fn get_next_update_time(&self, uid: &str) -> Option<i64> {
logging!(info, Type::Timer, "获取下次更新时间,uid={}", uid);
logging!(info, Type::Timer, "Getting next update time, uid={}", uid);
let timer_map = self.timer_map.read();
let task = match timer_map.get(uid) {
Some(t) => t,
None => {
logging!(warn, Type::Timer, "找不到对应的定时任务,uid={}", uid);
logging!(warn, Type::Timer, "Corresponding timer task not found, uid={}", uid);
return None;
}
};
@@ -380,7 +381,7 @@ impl Timer {
let items = match profiles.get_items() {
Some(i) => i,
None => {
logging!(warn, Type::Timer, "获取配置列表失败");
logging!(warn, Type::Timer, "Failed to get profile list");
return None;
}
};
@@ -388,7 +389,7 @@ impl Timer {
let profile = match items.iter().find(|item| item.uid.as_deref() == Some(uid)) {
Some(p) => p,
None => {
logging!(warn, Type::Timer, "找不到对应的配置,uid={}", uid);
logging!(warn, Type::Timer, "Corresponding profile not found, uid={}", uid);
return None;
}
};
@@ -401,7 +402,7 @@ impl Timer {
logging!(
info,
Type::Timer,
"计算得到下次更新时间: {}, uid={}",
"Calculated next update time: {}, uid={}",
next_time,
uid
);
@@ -410,7 +411,7 @@ impl Timer {
logging!(
warn,
Type::Timer,
"更新时间或间隔无效,updated={}, interval={}",
"Invalid update time or interval, updated={}, interval={}",
updated,
task.interval_minutes
);
@@ -442,7 +443,7 @@ impl Timer {
logging!(
info,
Type::Timer,
"配置 {} 是否为当前激活配置: {}",
"Is profile {} currently active: {}",
uid,
is_current
);