-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #38 from lgolouz/lgolouz_zxtr-37
Fixed [ZXTR-37] Implement support of localization
- Loading branch information
Showing
25 changed files
with
1,208 additions
and
424 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
# Generated sources | ||
generated/ | ||
|
||
# C++ objects and libs | ||
*.slo | ||
*.lo | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,11 +16,13 @@ import QtQuick.Controls 1.3 | |
import QtQuick.Dialogs 1.3 | ||
import QtQuick.Layouts 1.15 | ||
|
||
import "." | ||
|
||
Dialog { | ||
id: aboutDialog | ||
|
||
visible: false | ||
title: "About..." | ||
title: Translations.id_about_window_header | ||
standardButtons: StandardButton.Ok | ||
modality: Qt.WindowModal | ||
width: 300 | ||
|
@@ -39,22 +41,29 @@ Dialog { | |
Text { | ||
id: emailText | ||
anchors.top: skipText.bottom | ||
text: 'E-mail: <a href="mailto:[email protected]">[email protected]</a>' | ||
text: Translations.id_email_link | ||
onLinkActivated: Qt.openUrlExternally(link) | ||
} | ||
Text { | ||
id: youtubeText | ||
anchors.top: emailText.bottom | ||
text: 'YouTube channel: <a href="https://www.youtube.com/channel/UCz_ktTqWVekT0P4zVW8Xgcg">Советы компьютерного энтузиаста</a> - <a href="https://www.youtube.com/channel/UCz_ktTqWVekT0P4zVW8Xgcg">Computer Enthusiast Tips</a>' | ||
text: Translations.id_youtube_channel_link | ||
onLinkActivated: Qt.openUrlExternally(link) | ||
} | ||
Text { | ||
id: skip2Text | ||
id: donationText | ||
anchors.top: youtubeText.bottom | ||
text: Translations.id_donations_link | ||
onLinkActivated: Qt.openUrlExternally(link) | ||
} | ||
|
||
Text { | ||
id: skip2Text | ||
anchors.top: donationText.bottom | ||
text: "" | ||
} | ||
Text { | ||
anchors.top: skip2Text.bottom | ||
text: "Please click the highlighted links to open" | ||
text: Translations.id_please_click_to_open_link | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.