Skip to content

Commit

Permalink
Add spacing in qsTr
Browse files Browse the repository at this point in the history
  • Loading branch information
ValentinBuira committed Nov 18, 2024
1 parent 073df07 commit 684114c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/qml/dialogs/MMMonthlyContributorsLimitDialog.qml
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ MMComponents.MMDrawerDialog {

signal manageAccountClicked()

title: qsTr("You've reached the maximum number of active monthly contributors for your current subscription.")
title: qsTr( "You've reached the maximum number of active monthly contributors for your current subscription." )
imageSource: __style.reachedMonthlyContributorLimitImage

description: qsTr( "Upgrade your subscription or wait until next month for the limit to reset." )

primaryButton.text: apiSupportsSubscription ? qsTr("Manage account") : qsTr("Upgrade")
secondaryButton.text: qsTr("Cancel")
primaryButton.text: apiSupportsSubscription ? qsTr( "Manage account" ) : qsTr( "Upgrade" )
secondaryButton.text: qsTr( "Cancel" )

onPrimaryButtonClicked: {
root.manageAccountClicked()
Expand Down

1 comment on commit 684114c

@inputapp-bot
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

iOS - version 24.11.694411 just submitted!

Please sign in to comment.