Skip to content

Commit

Permalink
Fix Jojo stand names
Browse files Browse the repository at this point in the history
  • Loading branch information
naghim committed Mar 27, 2024
1 parent 5676acb commit 9666d39
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 15 deletions.
6 changes: 3 additions & 3 deletions examples/gallery/app/resource/i18n/gallery.zh_CN.ts
Original file line number Diff line number Diff line change
Expand Up @@ -495,7 +495,7 @@ In that case, I would accept it no matter which side the ball falls on.</source>
</message>
<message>
<location filename="../../view/layout_interface.py" line="38"/>
<source>Crazy diamond</source>
<source>Crazy Diamond</source>
<translation>疯狂钻石</translation>
</message>
<message>
Expand Down Expand Up @@ -551,7 +551,7 @@ In that case, I would accept it no matter which side the ball falls on.</source>
</message>
<message>
<location filename="../../view/view_interface.py" line="91"/>
<source>Made in Haven</source>
<source>Made in Heaven</source>
<translation>天堂制造</translation>
</message>
<message>
Expand All @@ -566,7 +566,7 @@ In that case, I would accept it no matter which side the ball falls on.</source>
</message>
<message>
<location filename="../../view/view_interface.py" line="92"/>
<source>Crazy diamond</source>
<source>Crazy Diamond</source>
<translation>疯狂钻石</translation>
</message>
<message>
Expand Down
6 changes: 3 additions & 3 deletions examples/gallery/app/resource/i18n/gallery.zh_HK.ts
Original file line number Diff line number Diff line change
Expand Up @@ -495,7 +495,7 @@ In that case, I would accept it no matter which side the ball falls on.</source>
</message>
<message>
<location filename="../../view/layout_interface.py" line="38"/>
<source>Crazy diamond</source>
<source>Crazy Diamond</source>
<translation>瘋狂鑽石</translation>
</message>
<message>
Expand Down Expand Up @@ -551,7 +551,7 @@ In that case, I would accept it no matter which side the ball falls on.</source>
</message>
<message>
<location filename="../../view/view_interface.py" line="91"/>
<source>Made in Haven</source>
<source>Made in Heaven</source>
<translation>天堂製造</translation>
</message>
<message>
Expand All @@ -566,7 +566,7 @@ In that case, I would accept it no matter which side the ball falls on.</source>
</message>
<message>
<location filename="../../view/view_interface.py" line="92"/>
<source>Crazy diamond</source>
<source>Crazy Diamond</source>
<translation>瘋狂鑽石</translation>
</message>
<message>
Expand Down
2 changes: 1 addition & 1 deletion examples/gallery/app/view/layout_interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def __init__(self, parent=None):
def createWidget(self, animation=False):
texts = [
self.tr('Star Platinum'), self.tr('Hierophant Green'),
self.tr('Silver Chariot'), self.tr('Crazy diamond'),
self.tr('Silver Chariot'), self.tr('Crazy Diamond'),
self.tr("Heaven's Door"), self.tr('Killer Queen'),
self.tr("Gold Experience"), self.tr('Sticky Fingers'),
self.tr("Sex Pistols"), self.tr('Dirty Deeds Done Dirt Cheap'),
Expand Down
4 changes: 2 additions & 2 deletions examples/gallery/app/view/text_interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ def __init__(self, parent=None):
lineEdit.setFixedWidth(230)
stands = [
"Star Platinum", "Hierophant Green",
"Made in Haven", "King Crimson",
"Silver Chariot", "Crazy diamond",
"Made in Heaven", "King Crimson",
"Silver Chariot", "Crazy Diamond",
"Metallica", "Another One Bites The Dust",
"Heaven's Door", "Killer Queen",
"The Grateful Dead", "Stone Free",
Expand Down
4 changes: 2 additions & 2 deletions examples/gallery/app/view/view_interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,8 @@ def __init__(self, parent=None):

stands = [
self.tr("Star Platinum"), self.tr("Hierophant Green"),
self.tr("Made in Haven"), self.tr("King Crimson"),
self.tr("Silver Chariot"), self.tr("Crazy diamond"),
self.tr("Made in Heaven"), self.tr("King Crimson"),
self.tr("Silver Chariot"), self.tr("Crazy Diamond"),
self.tr("Metallica"), self.tr("Another One Bites The Dust"),
self.tr("Heaven's Door"), self.tr("Killer Queen"),
self.tr("The Grateful Dead"), self.tr("Stone Free"),
Expand Down
4 changes: 2 additions & 2 deletions examples/material/acrylic_line_edit/demo.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ def __init__(self):
# add completer
stands = [
"Star Platinum", "Hierophant Green",
"Made in Haven", "King Crimson",
"Silver Chariot", "Crazy diamond",
"Made in Heaven", "King Crimson",
"Silver Chariot", "Crazy Diamond",
"Metallica", "Another One Bites The Dust",
"Heaven's Door", "Killer Queen",
"The Grateful Dead", "Stone Free",
Expand Down
4 changes: 2 additions & 2 deletions examples/text/line_edit/demo.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ def __init__(self):
# add completer
stands = [
"Star Platinum", "Hierophant Green",
"Made in Haven", "King Crimson",
"Silver Chariot", "Crazy diamond",
"Made in Heaven", "King Crimson",
"Silver Chariot", "Crazy Diamond",
"Metallica", "Another One Bites The Dust",
"Heaven's Door", "Killer Queen",
"The Grateful Dead", "Stone Free",
Expand Down

0 comments on commit 9666d39

Please sign in to comment.