mirror of
https://github.com/amnezia-vpn/amnezia-client.git
synced 2026-05-08 14:33:23 +00:00
fix: fixed translation for subscription key field on page about subscription key info
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user