From 3404b95cec41e6b65a94c6175d2edab18f288762 Mon Sep 17 00:00:00 2001 From: wasneet <3689701918@qq.com> Date: Mon, 21 Apr 2025 22:00:38 +0800 Subject: [PATCH] =?UTF-8?q?=E7=9D=A1=E8=A6=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- translate/import.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/translate/import.py b/translate/import.py index 1775963..224346f 100644 --- a/translate/import.py +++ b/translate/import.py @@ -8,12 +8,12 @@ import datetime from tools import convert_zh_to_tw, import_translation_json # ========== 配置区域 ========== -IMPORTLANG = input("语言?(跳过则语言默认为zh_CN)") # 語言選項 +IMPORTLANG = input("🟢 語言是?(留空則為zh_CN):") # 語言選項 if len(IMPORTLANG) == 0: IMPORTLANG = "zh_CN" -VERSION = "v" + input("版本号?(跳过则记录构建日期)") # 版本號 +VERSION = "v" + input("🟢 版本號是?(留空則為當日日期):") # 版本號 if len(VERSION) == 1: - VERSION = "构建于" + str(datetime.date.today()) + VERSION = "build-in-" + str(datetime.date.today()) WEBLATE_PATH = os.path.abspath("../psoutertale-weblate") SOURCE_DIR = Path("../Petrichor-PSTVL").resolve() # ==============================