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 9dc4933
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 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 Down
2 changes: 1 addition & 1 deletion examples/gallery/app/resource/i18n/gallery.zh_HK.ts
Original file line number Diff line number Diff line change
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 Down
2 changes: 1 addition & 1 deletion examples/gallery/app/view/text_interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def __init__(self, parent=None):
lineEdit.setFixedWidth(230)
stands = [
"Star Platinum", "Hierophant Green",
"Made in Haven", "King Crimson",
"Made in Heaven", "King Crimson",
"Silver Chariot", "Crazy diamond",
"Metallica", "Another One Bites The Dust",
"Heaven's Door", "Killer Queen",
Expand Down
2 changes: 1 addition & 1 deletion examples/gallery/app/view/view_interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ 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("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"),
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 9dc4933

Please sign in to comment.