diff --git a/gui/fragments/process.py b/gui/fragments/process.py
index 75de1c3c..22469d37 100644
--- a/gui/fragments/process.py
+++ b/gui/fragments/process.py
@@ -5,13 +5,12 @@
from PyQt5.QtCore import Qt
from PyQt5.QtWidgets import QWidget, QHBoxLayout, QVBoxLayout
-from qfluentwidgets import (ScrollArea, TitleLabel, SubtitleLabel, ListWidget, StrongBodyLabel)
+from qfluentwidgets import (ScrollArea, TitleLabel, SubtitleLabel, ListWidget, StrongBodyLabel, ComboBox)
from gui.components import expand
from gui.util.style_sheet import StyleSheet
from gui.util.translator import baasTranslator as bt
-
lock = threading.Lock()
DISPLAY_CONFIG_PATH = './config/display.json'
@@ -23,7 +22,34 @@ def __init__(self, parent, config):
self.displayWidget = QWidget()
self.displayWidget.setFixedHeight(200)
self.settingLabel = TitleLabel(self.tr("调度状态"), self)
-
+ # Scheduler switch
+ self.titleLineLayout = QHBoxLayout()
+ _scheduler_selector = config.get('new_event_enable_state')
+ _scheduler_selector_layout = QHBoxLayout()
+ _scheduler_selector_label = SubtitleLabel(self.tr("调度功能状态"), self)
+ __dict__for_scheduler_selector = {
+ '开': 'on',
+ '关': 'off',
+ '默认': 'default',
+ }
+ __reverse_dict__for_scheduler_selector = {v: k for k, v in __dict__for_scheduler_selector.items()}
+ _raw_scheduler_selector = __reverse_dict__for_scheduler_selector[_scheduler_selector]
+ self.scheduler_selector = ComboBox(self)
+ self.scheduler_selector.addItems([
+ bt.tr('ConfigTranslation', '开'),
+ bt.tr('ConfigTranslation', '关'),
+ bt.tr('ConfigTranslation', '默认'),
+ ])
+ self.scheduler_selector.setCurrentText(bt.tr('ConfigTranslation', _raw_scheduler_selector))
+ self.scheduler_selector.currentTextChanged.connect(
+ lambda x: config.set('new_event_enable_state', __dict__for_scheduler_selector[bt.undo(x)]))
+ _scheduler_selector_layout.addWidget(_scheduler_selector_label)
+ _scheduler_selector_layout.addWidget(self.scheduler_selector)
+
+ self.titleLineLayout.addWidget(self.settingLabel, 1, Qt.AlignLeft)
+ self.titleLineLayout.addLayout(_scheduler_selector_layout, 0)
+
+ # Process display
self.VBoxWrapperLayout = QVBoxLayout()
self.VBoxLayout = QVBoxLayout()
self.HBoxLayout = QHBoxLayout()
@@ -38,7 +64,6 @@ def __init__(self, parent, config):
self.vBox1.addWidget(self.label_running)
self.vBox1.addWidget(self.on_status)
-
self.vBox2 = QVBoxLayout()
self.listWidget = ListWidget(self)
self.label_queuing = SubtitleLabel(self.tr("任务队列"), self)
@@ -49,7 +74,7 @@ def __init__(self, parent, config):
self.HBoxLayout.addLayout(self.vBox1)
self.HBoxLayout.addLayout(self.vBox2)
- self.VBoxLayout.addWidget(self.settingLabel)
+ self.VBoxLayout.addLayout(self.titleLineLayout)
self.VBoxLayout.addLayout(self.HBoxLayout)
self.displayWidget.setLayout(self.VBoxLayout)
@@ -75,7 +100,8 @@ def refresh_status(self):
print(crt_task, task_list)
crt_task = crt_task if crt_task else self.tr("暂无正在执行的任务")
- task_list = [bt.tr('ConfigTranslation', task) for task in task_list] if task_list else [self.tr("暂无队列中的任务")]
+ task_list = [bt.tr('ConfigTranslation', task) for task in task_list] if task_list else [
+ self.tr("暂无队列中的任务")]
self.on_status.setText(bt.tr('ConfigTranslation', crt_task))
self.listWidget.clear()
diff --git a/gui/i18n/en_US.qm b/gui/i18n/en_US.qm
index 3964532e..2a2de515 100644
Binary files a/gui/i18n/en_US.qm and b/gui/i18n/en_US.qm differ
diff --git a/gui/i18n/en_US.ts b/gui/i18n/en_US.ts
index 6c2ec265..4a8db9a5 100644
--- a/gui/i18n/en_US.ts
+++ b/gui/i18n/en_US.ts
@@ -1,4 +1,3 @@
-
@@ -6,7 +5,7 @@
- rename
+ Rename
@@ -418,12 +417,12 @@ make sure to do it before starting the script.
- Automatic whitelist of friends (Chinese server only)
+ Automatic whitelist of friends (Chinese server only)
- Set the friend code that you need to keep in the regular friend cleanup
+ Set the friend code that you need to keep in the regular friend cleanup
@@ -431,22 +430,22 @@ make sure to do it before starting the script.
- New Configuration
+ New Configuration
- Enter the name of the new configuration:
+ Enter the name of the new configuration:
- Are you sure
+ Are you sure
- Cancel
+ Cancel
@@ -499,7 +498,7 @@ make sure to do it before starting the script.
- The name of the event
+ The name of the event
@@ -507,17 +506,17 @@ make sure to do it before starting the script.
- Open the emulator when you start Baas
+ Open the emulator when you start Baas
- Wait for the simulator to start (seconds)
+ Wait for the simulator to start (seconds)
- Whether to open more
+ Whether to open more
@@ -810,8 +809,8 @@ See Clear Hard and Normal Stages in Help
-
- Normal stage and number of sweeps(e.g. "1-1-1,1-2-3" means that stage 1-1 is swept once, then stage 1-2 is swept three times):
+
+ Normal stage and number of sweeps(e.g. "1-1-1,1-2-3" means that stage 1-1 is swept once, then stage 1-2 is swept three times):
@@ -1017,7 +1016,7 @@ For JP or Global server, you can use 'max':
- Current Events:
+ Current Event:
@@ -1052,110 +1051,112 @@ For JP or Global server, you can use 'max':
- These features may not work as expected when running multiple instances.
-Operations involving the emulator will follow the settings in "Emulator Startup Settings."
+ These features may not work as expected when running multiple instances.
+Operations involving the emulator will follow the settings in "Emulator Startup Settings.
- Enter the friend code you want to add to the whitelist (length 7, consisting of lowercase letters and numbers):
+ Enter the friend code you want to add to the whitelist (length
+ 7, consisting of lowercase letters and numbers):
- Failed to add
+ Failed to add
- The length of the user code does not meet the requirements
+ The length of the user code does not meet the requirements
- The user code format does not meet the requirements
+ The user code format does not meet the requirements
- The user code is already in the whitelist
+ The user code is already in the whitelist
- The addition was successful
+ The addition was successful
- User code
+ User code
- operate
+ operate
- Delete
+ Delete
- Customize your opponent's number:
+ Customize your opponent's number:
- Screenshot method
+ Screenshot method
- Control mode
+ Control mode
- Speed nemu >> uiautomator2 ≈ adb,
-It is recommended to use nemu and if you are using nemu, please set the 'emulator address' to your MuMu emulator path, accurate to MuMuPlayer.exe
+ Speed nemu >> uiautomator2 ≈ adb,
+It is recommended to use nemu and if you are using nemu, please
+set the 'emulator address' to your MuMu emulator path, accurate to MuMuPlayer.exe
- It is only guaranteed that there will be no problems with using uiautomator2
+ It is only guaranteed that there will be no problems with using uiautomator2
- Cafe {cafe_no} Invitation Ticket Selection Mode:
+ Cafe {cafe_no} Invitation Ticket Selection Mode:
- Select the serial number of the favorite student
+ Select the serial number of the favorite student
- Invite students with the lowest opinion rating
+ Invite students with the lowest opinion rating
- Invite students with the highest opinion rating
+ Invite students with the highest opinion rating
- Invite students to favorites
+ Invite students to favorites
- Specify a name to invite
+ Specify a name to invite
@@ -1348,7 +1349,7 @@ It is recommended to use nemu and if you are using nemu, please set the 'emulato
- Detailed Configuration
+ Detailed Configuration
@@ -1356,22 +1357,22 @@ It is recommended to use nemu and if you are using nemu, please set the 'emulato
- The name of the original configuration
+ The name of the original configuration
- The name of the modified configuration
+ The name of the modified configuration
- Are you sure
+ Are you sure
- Cancel
+ Cancel
@@ -1547,72 +1548,72 @@ It is recommended to use nemu and if you are using nemu, please set the 'emulato
- graphical user interface
+ graphical user interface
- Mica effect
+ Mica effect
- Apply translucency to windows and surfaces
+ Apply translucency to windows and surfaces
- Apply a theme
+ Apply a theme
- Change the appearance of the app
+ Change the appearance of the app
- light
+ light
- Dark
+ Dark
- Use the system settings
+ Use the system settings
- Theme colors
+ Theme colors
- Change the app's theme color
+ Change the app's theme color
- Interface zoom
+ Interface zoom
- Change the size of widgets and fonts
+ Change the size of widgets and fonts
- The update was successful
+ The update was successful
- The configuration will take effect after the reboot
+ The configuration will take effect after the reboot
@@ -1791,4 +1792,4 @@ It is recommended to use nemu and if you are using nemu, please set the 'emulato
Help
-
+
\ No newline at end of file
diff --git a/gui/i18n/ja_JP.qm b/gui/i18n/ja_JP.qm
index 048a1328..2c8ad108 100644
Binary files a/gui/i18n/ja_JP.qm and b/gui/i18n/ja_JP.qm differ
diff --git a/gui/i18n/ja_JP.ts b/gui/i18n/ja_JP.ts
index 6e0c380e..f5eda9a4 100644
--- a/gui/i18n/ja_JP.ts
+++ b/gui/i18n/ja_JP.ts
@@ -1,4 +1,3 @@
-
@@ -6,7 +5,7 @@
- 改名する
+ 名前の変更
@@ -367,62 +366,62 @@
- アクションなし
+ アクションなし
- バース出口
+ バース出口
- エミュレータを終了します
+ エミュレータを終了します
- BaasとSimulatorを終了します
+ BaasとSimulatorを終了します
- シャットダウン
+ シャットダウン
- MuMuエミュレータグローバル版
+ MuMuエミュレータグローバル版
- 終始
+ 貫通
- 噴出する
+ 爆発
- 不思議
+ 神秘
- 振動
+ 振動
- 友だちの自動ホワイトリスト(中国語サーバーのみ)
+ 友だちの自動ホワイトリスト(中国語サーバーのみ)
- 定期的なフレンドクリーンアップで保持する必要があるフレンドコードを設定します
+ 定期的なフレンドクリーンアップで保持する必要があるフレンドコードを設定します
@@ -430,22 +429,22 @@
- 新しい設定を作成する
+ 新しい設定を作成する
- 新しい設定の名前を入力します:
+ 新しい設定の名前を入力します:
- 確かですか
+ 確かですか
- キャンセル
+ キャンセル
@@ -498,7 +497,7 @@
- イベントの名前
+ イベントの名前
@@ -506,17 +505,17 @@
- Baasの起動時にエミュレータを開きます
+ Baasの起動時にエミュレータを開きます
- シミュレーターが起動するのを待つ (秒)
+ シミュレーターが起動するのを待つ (秒)
- さらに開くかどうか
+ さらに開くかどうか
@@ -676,7 +675,7 @@
- 完了したら
+ 完了したら
@@ -853,7 +852,7 @@
-
+
普通のステージ名時間(例:「1-1-1、1-2-3」は、レベルが1-1で1回プレイされ、その後、レベルが1-2で3回プレイされることを意味します):
@@ -959,194 +958,196 @@
- Baasの起動後すぐに実行
+ Baasの起動後すぐに実行
- 完了したら
+ 完了したら
- アクションなし
+ アクションなし
- バース出口
+ Baas を終了する
- エミュレータを終了します
+ エミュレータを終了します
- BaasとSimulatorを終了します
+ BaasとSimulatorを終了します
- シャットダウン
+ シャットダウン
- じゃない
+ なし
- 現在のイベント:
+ 現在のイベント:
- タスク属性に対応するテーブル
+ タスク属性に対応するテーブル
- レベル
+ ステージ
- 属性
+ 属性
- 物語
+ 物語
- タスク
+ タスク
- 挑戦
+ 挑戦
- サムスン
+ サムスン
- アチーブメントクエスト
+ アチーブメントクエスト
- これらの機能は、複数のインスタンスを実行している場合、期待どおりに動作しない可能性があります。 エミュレータが関与する操作は、エミュレータの起動設定の設定に従います。
+ これらの機能は、複数のインスタンスを実行している場合、期待どおりに動作しない可能性が
+あります。 エミュレータが関与する操作は、エミュレータの起動設定の設定に従います。
- ホワイトリストに追加するフレンドコードを入力します(長さ7、小文字と数字で構成)。
+ ホワイトリストに追加するフレンドコードを入力します(長さ7、小文字と数字で構成):
- 追加に失敗しました
+ 追加に失敗しました
- ユーザーコードの長さが要件を満たしていません
+ ユーザーコードの長さが要件を満たしていません
- ユーザー コード形式が要件を満たしていません
+ ユーザー コード形式が要件を満たしていません
- ユーザー・コードはすでにホワイトリストに登録されています
+ ユーザー・コードはすでにホワイトリストに登録されていた
- 追加は成功しました
+ 追加は成功しました
- ユーザーコード
+ ユーザーコード
- 動く
+ 動く
- 削除
+ 削除
- 対戦相手の番号をカスタマイズします。
+ 対戦相手の番号をカスタマイズする:
- スクリーンショットの方法
+ スクリーンショットの方法
- 制御モード
+ 制御モード
- 速度 nemu >> uiautomator2 ≈ adb,
-nemu の使用が推奨され、nemu を使用している場合は、「エミュレータ アドレス」を MuMu エミュレータ パスに正確に設定してくださいMuMuPlayer.exe
+ 速度 nemu >> uiautomator2 ≈ adb,
+nemu の使用が推奨され、nemu を使用している場合は、「エミュレータ
+ アドレス」を MuMu エミュレータ パスに正確に設定してくださいMuMuPlayer.exe
- uiautomator2の使用に問題がないことが保証されているだけです
+ uiautomator2の使用に問題がないことが保証されているだけです
- カフェ{cafe_no}招待チケット選択モード:
+ カフェ{cafe_no}招待チケット選択モード:
- お気に入りの生徒のシリアル番号を選択します
+ お気に入りの生徒のシリアル番号を選択する
- 評価が最も低い学生を招待する
+ 評価が最も低い学生を招待する
- 評価が最も高い学生を招待します
+ 評価が最も高い学生を招待する
- 学生をお気に入りに招待する
+ お気に入り学生を招待する
- 招待する名前の指定
+ 招待する名前の指定
@@ -1339,7 +1340,7 @@ nemu の使用が推奨され、nemu を使用している場合は、「エミ
- 構成の詳細
+ 構成の詳細
@@ -1347,22 +1348,22 @@ nemu の使用が推奨され、nemu を使用している場合は、「エミ
- 元の構成の名前
+ 元の構成の名前
- 変更された構成の名前
+ 変更された構成の名前
- 確かですか
+ 決定
- キャンセル
+ キャンセル
@@ -1415,7 +1416,7 @@ nemu の使用が推奨され、nemu を使用している場合は、「エミ
- adbのIPアドレスを入力してください
+ adbのIPアドレスを入力してください
@@ -1538,72 +1539,72 @@ nemu の使用が推奨され、nemu を使用している場合は、「エミ
- グラフィカルユーザーインターフェース
+ グラフィカルユーザーインターフェース
- マイカエフェクト
+ マイカエフェクト
- 窓と表面に半透明性を適用する
+ 窓と表面に半透明性を適用する
- テーマを適用する
+ テーマを適用する
- アプリの外観を変更する
+ アプリの外観を変更する
- 光
+ 軽い色
- 暗い
+ 暗色
- システム設定を使用する
+ システム設定を使用する
- テーマの色
+ テーマの色
- アプリのテーマの色を変更する
+ アプリのテーマの色を変更する
- インターフェースズーム
+ インターフェースズーム
- ウィジェットとフォントのサイズを変更する
+ ウィジェットとフォントのサイズを変更する
- 更新は成功しました
+ 更新は成功しました
- この設定は、再起動後に有効になります
+ この設定は、再起動後に有効になります
@@ -1782,4 +1783,4 @@ nemu の使用が推奨され、nemu を使用している場合は、「エミ
ヘルプ
-
+
\ No newline at end of file
diff --git a/gui/i18n/ko_KR.qm b/gui/i18n/ko_KR.qm
index c591cebb..9a1fa943 100644
Binary files a/gui/i18n/ko_KR.qm and b/gui/i18n/ko_KR.qm differ
diff --git a/gui/i18n/ko_KR.ts b/gui/i18n/ko_KR.ts
index 79751e85..8f310615 100644
--- a/gui/i18n/ko_KR.ts
+++ b/gui/i18n/ko_KR.ts
@@ -5,7 +5,7 @@
- 이름 바꾸기
+ 이름 바꾸기
@@ -362,67 +362,67 @@
- 미야코 갓 텍스트 x5
+ 미야코 갓 텍스트 x5
- MuMu 에뮬레이터 글로벌 버전
+ MuMu 에뮬레이터 글로벌 버전
- 조치 없음
+ 조치 없음
- Baas 종료
+ Baas 종료
- 에뮬레이터를 종료합니다.
+ 에뮬레이터를 종료합니다
- BaaS 및 시뮬레이터 종료
+ BaaS 및 시뮬레이터 종료
- 종료
+ 종료
- 내내
+ 내내
- 돋다
+ 돋다
- 신비한
+ 신비한
- 진동
+ 진동
- 친구 자동 화이트리스트 (중국 서버만 해당)
+ 친구 자동 화이트리스트 (중국 서버만 해당)
- 정기적인 친구 정리에 보관해야 하는 친구 코드를 설정하세요.
+ 정기적인 친구 정리에 보관해야 하는 친구 코드를 설정하세요
@@ -430,22 +430,22 @@
- 새 설정
+ 새 설정
- 새 설정 이름 입력 :
+ 새 설정 이름 입력 :
- 확실한가요
+ 확실한가요
- 취소
+ 취소
@@ -498,7 +498,7 @@
- 이벤트의 이름입니다
+ 이벤트의 이름입니다
@@ -506,17 +506,17 @@
- Baas를 시작할 때 에뮬레이터를 엽니다.
+ Baas를 시작할 때 에뮬레이터를 엽니다
- 시뮬레이터가 시작될 때까지 기다립니다(초).
+ 시뮬레이터가 시작될 때까지 기다립니다(초)
- 더 열지 여부
+ 더 열지 여부
@@ -676,7 +676,7 @@
- 완료되면
+ 완료되면
@@ -964,194 +964,196 @@
- 안
+ 안
- 시사 :
+ 시사 :
- 작업 속성에 해당하는 테이블입니다
+ 작업 속성에 해당하는 테이블입니다
- 수준
+ 수준
- 속성
+ 속성
- 이야기
+ 이야기
- 과업
+ 과업
- 도전
+ 도전
- 삼성
+ 삼성
- 업적 퀘스트
+ 업적 퀘스트
- Baas를 시작한 직후 실행
+ Baas를 시작한 직후 실행
- 완료되면
+ 완료되면
- 조치 없음
+ 조치 없음
- Baas 종료
+ Baas 종료
- 에뮬레이터를 종료합니다.
+ 에뮬레이터를 종료합니다
- BaaS 및 시뮬레이터 종료
+ BaaS 및 시뮬레이터 종료
- 종료
+ 종료
- 이러한 기능은 여러 인스턴스를 실행할 때 예상대로 작동하지 않을 수 있습니다. 에뮬레이터와 관련된 작업은 에뮬레이터 시작 설정의 설정을 따릅니다.
+ 이러한 기능은 여러 인스턴스를 실행할 때 예상대로 작동하지 않을 수 있습니다.
+에뮬레이터와 관련된 작업은 에뮬레이터 시작 설정의 설정을 따릅니다.
- 화이트리스트에 추가하려는 친구 코드를 입력합니다(길이 7, 소문자와 숫자로 구성).
+ 화이트리스트에 추가하려는 친구 코드를 입력합니다(길이 7, 소문자와 숫자로 구성):
- 추가하지 못했습니다.
+ 추가하지 못했습니다
- 사용자 코드의 길이가 요구 사항을 충족하지 않습니다.
+ 사용자 코드의 길이가 요구 사항을 충족하지 않습니다
- 사용자 코드 형식이 요구 사항을 충족하지 않습니다.
+ 사용자 코드 형식이 요구 사항을 충족하지 않습니다
- 사용자 코드가 이미 허용 목록에 있습니다.
+ 사용자 코드가 이미 허용 목록에 있습니다
- 추가에 성공했습니다
+ 추가에 성공했습니다
- 사용자 코드
+ 사용자 코드
- 운전하다
+ 운전하다
- 삭제하다
+ 삭제하다
- 상대방의 번호를 사용자 정의하십시오.
+ 상대방의 번호를 사용자 정의하십시오:
- 스크린샷 방법
+ 스크린샷 방법
- 제어 모드
+ 제어 모드
- Speed nemu >> uiautomator2 ≈ adb,
-nemu를 사용하는 것이 좋으며, nemu를 사용하는 경우 '에뮬레이터 주소'를 MuMu 에뮬레이터 경로로 정확하게 설정해MuMuPlayer.exe
+ Speed nemu >> uiautomator2 ≈ adb,
+nemu를 사용하는 것이 좋으며, nemu를 사용하는 경우 '에뮬레이터
+주소'를 MuMu 에뮬레이터 경로로 정확하게 설정해MuMuPlayer.exe
- uiautomator2를 사용하는 데 문제가 없다는 것만 보장됩니다.
+ uiautomator2를 사용하는 데 문제가 없다는 것만 보장됩니다
- 카페 {cafe_no} 초대권 선택 모드:
+ 카페 {cafe_no} 초대권 선택 모드:
- 좋아하는 학생의 일련 번호를 선택합니다.
+ 좋아하는 학생의 일련 번호를 선택합니다
- 의견 평가가 가장 낮은 학생을 초대합니다.
+ 의견 평가가 가장 낮은 학생을 초대합니다
- 의견 평가가 가장 높은 학생을 초대합니다.
+ 의견 평가가 가장 높은 학생을 초대합니다
- 학생을 즐겨찾기로 초대
+ 학생을 즐겨찾기로 초대
- 초대할 이름을 지정합니다
+ 초대할 이름을 지정합니다
@@ -1344,7 +1346,7 @@ nemu를 사용하는 것이 좋으며, nemu를 사용하는 경우 '에뮬레이
- 구성 세부 사항
+ 구성 세부 사항
@@ -1352,22 +1354,22 @@ nemu를 사용하는 것이 좋으며, nemu를 사용하는 경우 '에뮬레이
- 원래 구성의 이름입니다
+ 원래 구성의 이름입니다
- 수정된 구성의 이름입니다
+ 수정된 구성의 이름입니다
- 확실한가요
+ 확실한가요
- 취소
+ 취소
@@ -1420,7 +1422,7 @@ nemu를 사용하는 것이 좋으며, nemu를 사용하는 경우 '에뮬레이
- adb의 IP 주소를 입력하십시오.
+ adb의 IP 주소를 입력하십시오
@@ -1543,72 +1545,72 @@ nemu를 사용하는 것이 좋으며, nemu를 사용하는 경우 '에뮬레이
- 그래픽 사용자 인터페이스
+ 그래픽 사용자 인터페이스
- 운모 효과
+ 운모 효과
- 창과 표면에 반투명 적용(Apply translucency to windows and surfaces)
+ 창과 표면에 반투명 적용(Apply translucency to windows and surfaces)
- 테마 적용
+ 테마 적용
- 앱의 모양 변경
+ 앱의 모양 변경
- 광
+ 광
- 어둠
+ 어둠
- 시스템 설정 사용
+ 시스템 설정 사용
- 테마 색
+ 테마 색
- 앱의 테마 색 변경
+ 앱의 테마 색 변경
- 인터페이스 줌
+ 인터페이스 줌
- 위젯 및 글꼴의 크기 변경
+ 위젯 및 글꼴의 크기 변경
- 업데이트에 성공했습니다.
+ 업데이트에 성공했습니다
- 구성은 재부팅 후에 적용됩니다
+ 구성은 재부팅 후에 적용됩니다
diff --git a/gui/util/config_translation.py b/gui/util/config_translation.py
index d6160628..b18964fc 100644
--- a/gui/util/config_translation.py
+++ b/gui/util/config_translation.py
@@ -117,7 +117,7 @@ def __init__(self, parent=None):
self.tr('蓝叠国际版'): '蓝叠国际版',
# then combobox
- self.tr('无动作'): '无动作', # Do Nothing
+ self.tr('无动作'): '无动作', # Do Nothing
self.tr('退出 Baas'): '退出 Baas', # Exit Baas
self.tr('退出 模拟器'): '退出 模拟器', # Exit Emulator
self.tr('退出 Baas 和 模拟器'): '退出 Baas 和 模拟器', # Exit Baas and Emulator
@@ -128,4 +128,9 @@ def __init__(self, parent=None):
self.tr('爆发'): '爆发', # explosive
self.tr('神秘'): '神秘', # mystic
self.tr('振动'): '振动', # sonic
- }
\ No newline at end of file
+
+ # scheduler_selector_combobox
+ self.tr('开'): '开',
+ self.tr('关'): '关',
+ self.tr('默认'): '默认',
+ }