Compare commits

...

2 Commits

Author SHA1 Message Date
Mitternacht822 19dc4deaba fix: fixed translation for subscription key field on page about subscription key info 2026-03-06 20:44:50 +04:00
vkamn ca639d293d chore: bump version (#2319) 2026-03-06 23:11:03 +08:00
3 changed files with 10 additions and 3 deletions
+1 -1
View File
@@ -12,7 +12,7 @@ string(TIMESTAMP CURRENT_DATE "%Y-%m-%d")
set(RELEASE_DATE "${CURRENT_DATE}")
set(APP_MAJOR_VERSION ${CMAKE_PROJECT_VERSION_MAJOR}.${CMAKE_PROJECT_VERSION_MINOR}.${CMAKE_PROJECT_VERSION_PATCH})
set(APP_ANDROID_VERSION_CODE 2114)
set(APP_ANDROID_VERSION_CODE 2115)
if(${CMAKE_SYSTEM_NAME} STREQUAL "Linux")
set(MZ_PLATFORM_NAME "linux")
+5
View File
@@ -2070,6 +2070,11 @@ Thank you for staying with us!</source>
</context>
<context>
<name>PageSettingsApiSubscriptionKey</name>
<message>
<location filename="../ui/qml/Pages2/PageSettingsApiSubscriptionKey.qml" line="72"/>
<source>Subscription key</source>
<translation>Ключ для подключения</translation>
</message>
<message>
<location filename="../ui/qml/Pages2/PageSettingsApiSubscriptionKey.qml" line="85"/>
<source>Copy key</source>
@@ -69,7 +69,8 @@ PageType {
Layout.leftMargin: 16
Layout.rightMargin: 16
Layout.topMargin: 16
text: qsTr(root.processedServer.name + "\nsubscription key")
text: (root.processedServer && root.processedServer.name ? root.processedServer.name : "")
+ "\n" + qsTr("Subscription key")
font.pixelSize: 32
font.bold: true
color: AmneziaStyle.color.paleGray
@@ -206,7 +207,8 @@ PageType {
Header2Type {
Layout.fillWidth: true
headerText: qsTr(root.processedServer.name + " Subscription key")
headerText: (root.processedServer && root.processedServer.name ? root.processedServer.name : "")
+ "\n" + qsTr("Subscription key")
}
TextArea {