Skip to content

Add missing qsTr #89

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions examples/demo_threading/qml/Panel.qml
Original file line number Diff line number Diff line change
Expand Up @@ -93,10 +93,10 @@ Item {
font.weight: Font.Light
lineHeight: 0.9
color: "#a9deff"
text:"<p><b>Rust</b></p>
text: qsTr("<p><b>Rust</b></p>
<p>A programming language empowering everyone to build reliable and efficient software.</p>
<p>Blazingly fast and memory-efficient: with no runtime or garbage collector, it can power performance-critical services, run on embedded devices, and easily integrate with other languages.</p>
<p>Rust's rich type system and ownership model guarantee memory-safety and thread-safety - enabling you to eliminate many classes of bugs at compile-time.</p>"
<p>Rust's rich type system and ownership model guarantee memory-safety and thread-safety - enabling you to eliminate many classes of bugs at compile-time.</p>")
anchors.left: kdabL.right
anchors.leftMargin: 25
y: rust.y - 10
Expand Down