mirror of
https://github.com/283375/arcaea-offline-pyside-ui.git
synced 2025-07-01 12:26:26 +00:00
impr: add TabOverview
database describe label
This commit is contained in:
@ -17,6 +17,13 @@
|
|||||||
<item>
|
<item>
|
||||||
<widget class="QWidget" name="widget" native="true"/>
|
<widget class="QWidget" name="widget" native="true"/>
|
||||||
</item>
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QLabel" name="databaseDescribeLabel">
|
||||||
|
<property name="text">
|
||||||
|
<string extracomment="This database now have {} packs, {} songs, {} difficulties, {} chart info ({} complete) and {} scores.">databaseDescribeLabel {} {} {} {} {} {}</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<widget class="QWidget" name="widget_2" native="true">
|
<widget class="QWidget" name="widget_2" native="true">
|
||||||
<property name="sizePolicy">
|
<property name="sizePolicy">
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
################################################################################
|
################################################################################
|
||||||
## Form generated from reading UI file 'tabOverview.ui'
|
## Form generated from reading UI file 'tabOverview.ui'
|
||||||
##
|
##
|
||||||
## Created by: Qt User Interface Compiler version 6.5.0
|
## Created by: Qt User Interface Compiler version 6.5.2
|
||||||
##
|
##
|
||||||
## WARNING! All changes made in this file will be lost when recompiling UI file!
|
## WARNING! All changes made in this file will be lost when recompiling UI file!
|
||||||
################################################################################
|
################################################################################
|
||||||
@ -31,6 +31,11 @@ class Ui_TabOverview(object):
|
|||||||
|
|
||||||
self.verticalLayout.addWidget(self.widget)
|
self.verticalLayout.addWidget(self.widget)
|
||||||
|
|
||||||
|
self.databaseDescribeLabel = QLabel(TabOverview)
|
||||||
|
self.databaseDescribeLabel.setObjectName(u"databaseDescribeLabel")
|
||||||
|
|
||||||
|
self.verticalLayout.addWidget(self.databaseDescribeLabel)
|
||||||
|
|
||||||
self.widget_2 = QWidget(TabOverview)
|
self.widget_2 = QWidget(TabOverview)
|
||||||
self.widget_2.setObjectName(u"widget_2")
|
self.widget_2.setObjectName(u"widget_2")
|
||||||
sizePolicy = QSizePolicy(QSizePolicy.Preferred, QSizePolicy.Expanding)
|
sizePolicy = QSizePolicy(QSizePolicy.Preferred, QSizePolicy.Expanding)
|
||||||
@ -103,6 +108,7 @@ class Ui_TabOverview(object):
|
|||||||
# setupUi
|
# setupUi
|
||||||
|
|
||||||
def retranslateUi(self, TabOverview):
|
def retranslateUi(self, TabOverview):
|
||||||
|
self.databaseDescribeLabel.setText(QCoreApplication.translate("TabOverview", u"databaseDescribeLabel {} {} {} {} {} {}", None))
|
||||||
pass
|
pass
|
||||||
# retranslateUi
|
# retranslateUi
|
||||||
|
|
||||||
|
@ -21,3 +21,18 @@ class TabOverview(Ui_TabOverview, QWidget):
|
|||||||
def updateOverview(self):
|
def updateOverview(self):
|
||||||
b30 = self.db.get_b30() or 0.00
|
b30 = self.db.get_b30() or 0.00
|
||||||
self.b30Label.setText(str(f"{b30:.3f}"))
|
self.b30Label.setText(str(f"{b30:.3f}"))
|
||||||
|
self.retranslateUi(self)
|
||||||
|
|
||||||
|
def retranslateUi(self, *args):
|
||||||
|
super().retranslateUi(self)
|
||||||
|
db = Database()
|
||||||
|
describeText = self.databaseDescribeLabel.text()
|
||||||
|
describeText = describeText.format(
|
||||||
|
db.count_packs(),
|
||||||
|
db.count_songs(),
|
||||||
|
db.count_difficulties(),
|
||||||
|
db.count_chart_infos(),
|
||||||
|
db.count_complete_chart_infos(),
|
||||||
|
db.count_scores(),
|
||||||
|
)
|
||||||
|
self.databaseDescribeLabel.setText(describeText)
|
||||||
|
@ -749,6 +749,15 @@ validation</translation>
|
|||||||
<translation>Select Image SIFT Database</translation>
|
<translation>Select Image SIFT Database</translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
|
<context>
|
||||||
|
<name>TabOverview</name>
|
||||||
|
<message>
|
||||||
|
<location filename="../../designer/tabs/tabOverview.ui" line="23"/>
|
||||||
|
<source>databaseDescribeLabel {} {} {} {} {} {}</source>
|
||||||
|
<extracomment>This database now have {} packs, {} songs, {} difficulties, {} chart info ({} complete) and {} scores.</extracomment>
|
||||||
|
<translation>This database now have {} packs, {} songs, {} difficulties, {} chart info ({} complete) and {} scores.</translation>
|
||||||
|
</message>
|
||||||
|
</context>
|
||||||
<context>
|
<context>
|
||||||
<name>TabToolsEntry</name>
|
<name>TabToolsEntry</name>
|
||||||
<message>
|
<message>
|
||||||
@ -933,107 +942,107 @@ validation</translation>
|
|||||||
<context>
|
<context>
|
||||||
<name>TabTools_StepCalculator</name>
|
<name>TabTools_StepCalculator</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../designer/tabs/tabTools/tabTools_StepCalculator.ui" line="109"/>
|
<location filename="../../designer/tabs/tabTools/tabTools_StepCalculator.ui" line="90"/>
|
||||||
<source>legacyPlay.noOptions</source>
|
<source>legacyPlay.noOptions</source>
|
||||||
<translation>No options</translation>
|
<translation>No options</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../designer/tabs/tabTools/tabTools_StepCalculator.ui" line="159"/>
|
<location filename="../../designer/tabs/tabTools/tabTools_StepCalculator.ui" line="140"/>
|
||||||
<source>legacyPlayPlus.useFragments</source>
|
<source>legacyPlayPlus.useFragments</source>
|
||||||
<translation>Use Fragments</translation>
|
<translation>Use Fragments</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../designer/tabs/tabTools/tabTools_StepCalculator.ui" line="202"/>
|
<location filename="../../designer/tabs/tabTools/tabTools_StepCalculator.ui" line="183"/>
|
||||||
<source>play.memoryBoost</source>
|
<source>play.memoryBoost</source>
|
||||||
<translation>Memory boost</translation>
|
<translation>Memory boost</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../designer/tabs/tabTools/tabTools_StepCalculator.ui" line="213"/>
|
<location filename="../../designer/tabs/tabTools/tabTools_StepCalculator.ui" line="194"/>
|
||||||
<source>partner.title</source>
|
<source>partner.title</source>
|
||||||
<translation>Partner</translation>
|
<translation>Partner</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../designer/tabs/tabTools/tabTools_StepCalculator.ui" line="221"/>
|
<location filename="../../designer/tabs/tabTools/tabTools_StepCalculator.ui" line="202"/>
|
||||||
<source>partner.stepValueLabel</source>
|
<source>partner.stepValueLabel</source>
|
||||||
<translation>STEP value</translation>
|
<translation>STEP value</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../designer/tabs/tabTools/tabTools_StepCalculator.ui" line="255"/>
|
<location filename="../../designer/tabs/tabTools/tabTools_StepCalculator.ui" line="236"/>
|
||||||
<source>partner.skill.title</source>
|
<source>partner.skill.title</source>
|
||||||
<translation>Partner Skill</translation>
|
<translation>Partner Skill</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../designer/tabs/tabTools/tabTools_StepCalculator.ui" line="272"/>
|
<location filename="../../designer/tabs/tabTools/tabTools_StepCalculator.ui" line="253"/>
|
||||||
<source>partner.skill.stepBonus</source>
|
<source>partner.skill.stepBonus</source>
|
||||||
<translation>Step bonus</translation>
|
<translation>Step bonus</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../designer/tabs/tabTools/tabTools_StepCalculator.ui" line="279"/>
|
<location filename="../../designer/tabs/tabTools/tabTools_StepCalculator.ui" line="260"/>
|
||||||
<source>partner.skill.finalMultiplier</source>
|
<source>partner.skill.finalMultiplier</source>
|
||||||
<translation>Final multiplier</translation>
|
<translation>Final multiplier</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../designer/tabs/tabTools/tabTools_StepCalculator.ui" line="308"/>
|
<location filename="../../designer/tabs/tabTools/tabTools_StepCalculator.ui" line="289"/>
|
||||||
<source>partner.skill.presets</source>
|
<source>partner.skill.presets</source>
|
||||||
<translation>Preset Datas</translation>
|
<translation>Preset Datas</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../designer/tabs/tabTools/tabTools_StepCalculator.ui" line="314"/>
|
<location filename="../../designer/tabs/tabTools/tabTools_StepCalculator.ui" line="295"/>
|
||||||
<source>partner.skill.presets.awakenedEto</source>
|
<source>partner.skill.presets.awakenedEto</source>
|
||||||
<translation>Eto (Awakened)</translation>
|
<translation>Eto (Awakened)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../designer/tabs/tabTools/tabTools_StepCalculator.ui" line="321"/>
|
<location filename="../../designer/tabs/tabTools/tabTools_StepCalculator.ui" line="302"/>
|
||||||
<source>partner.skill.presets.awakenedIlith</source>
|
<source>partner.skill.presets.awakenedIlith</source>
|
||||||
<translation>Ilith (Awakened)</translation>
|
<translation>Ilith (Awakened)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../designer/tabs/tabTools/tabTools_StepCalculator.ui" line="328"/>
|
<location filename="../../designer/tabs/tabTools/tabTools_StepCalculator.ui" line="309"/>
|
||||||
<source>partner.skill.presets.awakenedLuna</source>
|
<source>partner.skill.presets.awakenedLuna</source>
|
||||||
<translation>Luna (Awakened)</translation>
|
<translation>Luna (Awakened)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../designer/tabs/tabTools/tabTools_StepCalculator.ui" line="335"/>
|
<location filename="../../designer/tabs/tabTools/tabTools_StepCalculator.ui" line="316"/>
|
||||||
<source>partner.skill.presets.amaneBelowEx</source>
|
<source>partner.skill.presets.amaneBelowEx</source>
|
||||||
<translation>Amane (Below EX)</translation>
|
<translation>Amane (Below EX)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../designer/tabs/tabTools/tabTools_StepCalculator.ui" line="342"/>
|
<location filename="../../designer/tabs/tabTools/tabTools_StepCalculator.ui" line="323"/>
|
||||||
<source>partner.skill.presets.maya</source>
|
<source>partner.skill.presets.maya</source>
|
||||||
<translation>Maya</translation>
|
<translation>Maya</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../designer/tabs/tabTools/tabTools_StepCalculator.ui" line="370"/>
|
<location filename="../../designer/tabs/tabTools/tabTools_StepCalculator.ui" line="351"/>
|
||||||
<source>calculate.toStep</source>
|
<source>calculate.toStep</source>
|
||||||
<translation>Calculate to Step</translation>
|
<translation>Calculate to Step</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../designer/tabs/tabTools/tabTools_StepCalculator.ui" line="398"/>
|
<location filename="../../designer/tabs/tabTools/tabTools_StepCalculator.ui" line="379"/>
|
||||||
<source>calculate.toStep.playResultLabel</source>
|
<source>calculate.toStep.playResultLabel</source>
|
||||||
<translation>Play result</translation>
|
<translation>Play result</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../designer/tabs/tabTools/tabTools_StepCalculator.ui" line="405"/>
|
<location filename="../../designer/tabs/tabTools/tabTools_StepCalculator.ui" line="412"/>
|
||||||
<source>calculate.toStep.calculatePlayResultFromScoreButton</source>
|
<source>calculate.toStep.calculatePlayResultFromScoreButton</source>
|
||||||
<translation>Calculate from Score</translation>
|
<translation>Calculate from Score</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../designer/tabs/tabTools/tabTools_StepCalculator.ui" line="418"/>
|
<location filename="../../designer/tabs/tabTools/tabTools_StepCalculator.ui" line="392"/>
|
||||||
<source>calculate.toStep.resultLabel</source>
|
<source>calculate.toStep.resultLabel</source>
|
||||||
<translation>Result</translation>
|
<translation>Result</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../designer/tabs/tabTools/tabTools_StepCalculator.ui" line="441"/>
|
<location filename="../../designer/tabs/tabTools/tabTools_StepCalculator.ui" line="422"/>
|
||||||
<source>calculate.fromStep</source>
|
<source>calculate.fromStep</source>
|
||||||
<translation>Calculate from Step</translation>
|
<translation>Calculate from Step</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../designer/tabs/tabTools/tabTools_StepCalculator.ui" line="450"/>
|
<location filename="../../designer/tabs/tabTools/tabTools_StepCalculator.ui" line="431"/>
|
||||||
<source>calculate.fromStep.targetStepLabel</source>
|
<source>calculate.fromStep.targetStepLabel</source>
|
||||||
<translation>Target step value</translation>
|
<translation>Target step value</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../designer/tabs/tabTools/tabTools_StepCalculator.ui" line="473"/>
|
<location filename="../../designer/tabs/tabTools/tabTools_StepCalculator.ui" line="454"/>
|
||||||
<source>calculate.fromStep.resultLabel</source>
|
<source>calculate.fromStep.resultLabel</source>
|
||||||
<translation>Result (play rating)</translation>
|
<translation>Result (play rating)</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -748,6 +748,15 @@
|
|||||||
<translation>选择图像 SIFT 特征值数据库</translation>
|
<translation>选择图像 SIFT 特征值数据库</translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
|
<context>
|
||||||
|
<name>TabOverview</name>
|
||||||
|
<message>
|
||||||
|
<location filename="../../designer/tabs/tabOverview.ui" line="23"/>
|
||||||
|
<source>databaseDescribeLabel {} {} {} {} {} {}</source>
|
||||||
|
<extracomment>This database now have {} packs, {} songs, {} difficulties, {} chart info ({} complete) and {} scores.</extracomment>
|
||||||
|
<translation>数据库中有 {} 个曲包,{} 首歌曲,{} 个难度,{} 个谱面信息({} 个完整),{} 个分数记录。</translation>
|
||||||
|
</message>
|
||||||
|
</context>
|
||||||
<context>
|
<context>
|
||||||
<name>TabToolsEntry</name>
|
<name>TabToolsEntry</name>
|
||||||
<message>
|
<message>
|
||||||
@ -932,107 +941,107 @@
|
|||||||
<context>
|
<context>
|
||||||
<name>TabTools_StepCalculator</name>
|
<name>TabTools_StepCalculator</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../designer/tabs/tabTools/tabTools_StepCalculator.ui" line="109"/>
|
<location filename="../../designer/tabs/tabTools/tabTools_StepCalculator.ui" line="90"/>
|
||||||
<source>legacyPlay.noOptions</source>
|
<source>legacyPlay.noOptions</source>
|
||||||
<translation>没有选项</translation>
|
<translation>没有选项</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../designer/tabs/tabTools/tabTools_StepCalculator.ui" line="159"/>
|
<location filename="../../designer/tabs/tabTools/tabTools_StepCalculator.ui" line="140"/>
|
||||||
<source>legacyPlayPlus.useFragments</source>
|
<source>legacyPlayPlus.useFragments</source>
|
||||||
<translation>使用残片</translation>
|
<translation>使用残片</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../designer/tabs/tabTools/tabTools_StepCalculator.ui" line="202"/>
|
<location filename="../../designer/tabs/tabTools/tabTools_StepCalculator.ui" line="183"/>
|
||||||
<source>play.memoryBoost</source>
|
<source>play.memoryBoost</source>
|
||||||
<translation>源韵强化</translation>
|
<translation>源韵强化</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../designer/tabs/tabTools/tabTools_StepCalculator.ui" line="213"/>
|
<location filename="../../designer/tabs/tabTools/tabTools_StepCalculator.ui" line="194"/>
|
||||||
<source>partner.title</source>
|
<source>partner.title</source>
|
||||||
<translation>搭档</translation>
|
<translation>搭档</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../designer/tabs/tabTools/tabTools_StepCalculator.ui" line="221"/>
|
<location filename="../../designer/tabs/tabTools/tabTools_StepCalculator.ui" line="202"/>
|
||||||
<source>partner.stepValueLabel</source>
|
<source>partner.stepValueLabel</source>
|
||||||
<translation>STEP 值</translation>
|
<translation>STEP 值</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../designer/tabs/tabTools/tabTools_StepCalculator.ui" line="255"/>
|
<location filename="../../designer/tabs/tabTools/tabTools_StepCalculator.ui" line="236"/>
|
||||||
<source>partner.skill.title</source>
|
<source>partner.skill.title</source>
|
||||||
<translation>搭档技能</translation>
|
<translation>搭档技能</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../designer/tabs/tabTools/tabTools_StepCalculator.ui" line="272"/>
|
<location filename="../../designer/tabs/tabTools/tabTools_StepCalculator.ui" line="253"/>
|
||||||
<source>partner.skill.stepBonus</source>
|
<source>partner.skill.stepBonus</source>
|
||||||
<translation>步数加成</translation>
|
<translation>步数加成</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../designer/tabs/tabTools/tabTools_StepCalculator.ui" line="279"/>
|
<location filename="../../designer/tabs/tabTools/tabTools_StepCalculator.ui" line="260"/>
|
||||||
<source>partner.skill.finalMultiplier</source>
|
<source>partner.skill.finalMultiplier</source>
|
||||||
<translation>最终乘算</translation>
|
<translation>最终乘算</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../designer/tabs/tabTools/tabTools_StepCalculator.ui" line="308"/>
|
<location filename="../../designer/tabs/tabTools/tabTools_StepCalculator.ui" line="289"/>
|
||||||
<source>partner.skill.presets</source>
|
<source>partner.skill.presets</source>
|
||||||
<translation>预置数据</translation>
|
<translation>预置数据</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../designer/tabs/tabTools/tabTools_StepCalculator.ui" line="314"/>
|
<location filename="../../designer/tabs/tabTools/tabTools_StepCalculator.ui" line="295"/>
|
||||||
<source>partner.skill.presets.awakenedEto</source>
|
<source>partner.skill.presets.awakenedEto</source>
|
||||||
<translation>爱托(觉醒)</translation>
|
<translation>爱托(觉醒)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../designer/tabs/tabTools/tabTools_StepCalculator.ui" line="321"/>
|
<location filename="../../designer/tabs/tabTools/tabTools_StepCalculator.ui" line="302"/>
|
||||||
<source>partner.skill.presets.awakenedIlith</source>
|
<source>partner.skill.presets.awakenedIlith</source>
|
||||||
<translation>依莉丝(觉醒)</translation>
|
<translation>依莉丝(觉醒)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../designer/tabs/tabTools/tabTools_StepCalculator.ui" line="328"/>
|
<location filename="../../designer/tabs/tabTools/tabTools_StepCalculator.ui" line="309"/>
|
||||||
<source>partner.skill.presets.awakenedLuna</source>
|
<source>partner.skill.presets.awakenedLuna</source>
|
||||||
<translation>露娜(觉醒)</translation>
|
<translation>露娜(觉醒)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../designer/tabs/tabTools/tabTools_StepCalculator.ui" line="335"/>
|
<location filename="../../designer/tabs/tabTools/tabTools_StepCalculator.ui" line="316"/>
|
||||||
<source>partner.skill.presets.amaneBelowEx</source>
|
<source>partner.skill.presets.amaneBelowEx</source>
|
||||||
<translation>天音(EX 以下)</translation>
|
<translation>天音(EX 以下)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../designer/tabs/tabTools/tabTools_StepCalculator.ui" line="342"/>
|
<location filename="../../designer/tabs/tabTools/tabTools_StepCalculator.ui" line="323"/>
|
||||||
<source>partner.skill.presets.maya</source>
|
<source>partner.skill.presets.maya</source>
|
||||||
<translation>摩耶</translation>
|
<translation>摩耶</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../designer/tabs/tabTools/tabTools_StepCalculator.ui" line="370"/>
|
<location filename="../../designer/tabs/tabTools/tabTools_StepCalculator.ui" line="351"/>
|
||||||
<source>calculate.toStep</source>
|
<source>calculate.toStep</source>
|
||||||
<translation>正算</translation>
|
<translation>正算</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../designer/tabs/tabTools/tabTools_StepCalculator.ui" line="398"/>
|
<location filename="../../designer/tabs/tabTools/tabTools_StepCalculator.ui" line="379"/>
|
||||||
<source>calculate.toStep.playResultLabel</source>
|
<source>calculate.toStep.playResultLabel</source>
|
||||||
<translation>单曲 PTT</translation>
|
<translation>单曲 PTT</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../designer/tabs/tabTools/tabTools_StepCalculator.ui" line="405"/>
|
<location filename="../../designer/tabs/tabTools/tabTools_StepCalculator.ui" line="412"/>
|
||||||
<source>calculate.toStep.calculatePlayResultFromScoreButton</source>
|
<source>calculate.toStep.calculatePlayResultFromScoreButton</source>
|
||||||
<translation>从分数计算</translation>
|
<translation>从分数计算</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../designer/tabs/tabTools/tabTools_StepCalculator.ui" line="418"/>
|
<location filename="../../designer/tabs/tabTools/tabTools_StepCalculator.ui" line="392"/>
|
||||||
<source>calculate.toStep.resultLabel</source>
|
<source>calculate.toStep.resultLabel</source>
|
||||||
<translation>结果</translation>
|
<translation>结果</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../designer/tabs/tabTools/tabTools_StepCalculator.ui" line="441"/>
|
<location filename="../../designer/tabs/tabTools/tabTools_StepCalculator.ui" line="422"/>
|
||||||
<source>calculate.fromStep</source>
|
<source>calculate.fromStep</source>
|
||||||
<translation>逆算</translation>
|
<translation>逆算</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../designer/tabs/tabTools/tabTools_StepCalculator.ui" line="450"/>
|
<location filename="../../designer/tabs/tabTools/tabTools_StepCalculator.ui" line="431"/>
|
||||||
<source>calculate.fromStep.targetStepLabel</source>
|
<source>calculate.fromStep.targetStepLabel</source>
|
||||||
<translation>目标 STEP 值</translation>
|
<translation>目标 STEP 值</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../designer/tabs/tabTools/tabTools_StepCalculator.ui" line="473"/>
|
<location filename="../../designer/tabs/tabTools/tabTools_StepCalculator.ui" line="454"/>
|
||||||
<source>calculate.fromStep.resultLabel</source>
|
<source>calculate.fromStep.resultLabel</source>
|
||||||
<translation>结果(单曲 PTT)</translation>
|
<translation>结果(单曲 PTT)</translation>
|
||||||
</message>
|
</message>
|
||||||
|
Reference in New Issue
Block a user