update: changed usd symbol to euro
This commit is contained in:
parent
043f1fd2b0
commit
796eb5ae76
1 changed files with 30 additions and 4 deletions
|
|
@ -3001,10 +3001,10 @@ class WireGuardPage(Page):
|
|||
label.setAlignment(QtCore.Qt.AlignmentFlag.AlignCenter)
|
||||
label.setWordWrap(True)
|
||||
if geometry == (570, 170, 210, 105):
|
||||
text1 = "VPN for the whole PC\n($1/month - 1 location)"
|
||||
text1 = "VPN for the whole PC\n(€1/month - 1 location)"
|
||||
label.setText(text1)
|
||||
elif geometry == (570, 385, 210, 115):
|
||||
text2 = "1 Profile.\n1 Country.\nIsolated VPN for just the browser\n(1$/month)"
|
||||
text2 = "1 Profile.\n1 Country.\nIsolated VPN for just the browser\n(1€/month)"
|
||||
label.setText(text2)
|
||||
|
||||
# Conexión de la señal clicked del botón con la función correspondiente
|
||||
|
|
@ -8081,7 +8081,7 @@ class DurationSelectionPage(Page):
|
|||
|
||||
self.combo_box = QComboBox(self)
|
||||
self.combo_box.setGeometry(200, 200, 400, 60)
|
||||
self.combo_box.addItems(["1 month ($1)", "3 months ($3)", "6 months ($5)", "12 months ($10)"])
|
||||
self.combo_box.addItems(["1 month (€1)", "3 months (€3)", "6 months (€5)", "12 months (€10)"])
|
||||
self.combo_box.setEditable(False)
|
||||
self.combo_box.setMaxVisibleItems(4)
|
||||
self.combo_box.setDuplicatesEnabled(True)
|
||||
|
|
@ -8090,15 +8090,41 @@ class DurationSelectionPage(Page):
|
|||
QComboBox {
|
||||
font-size: 16px;
|
||||
padding: 10px;
|
||||
border: 2px solid #ccc;
|
||||
background-color: #000000;
|
||||
color: #00ffff;
|
||||
border: 2px solid #00ffff;
|
||||
border-radius: 8px;
|
||||
}
|
||||
QComboBox::drop-down {
|
||||
width: 30px;
|
||||
background-color: #1a1a1a;
|
||||
border-left: 1px solid #00ffff;
|
||||
}
|
||||
QComboBox::down-arrow {
|
||||
width: 12px;
|
||||
height: 12px;
|
||||
color: #00ffff;
|
||||
}
|
||||
QComboBox QAbstractItemView {
|
||||
background-color: #0a0a0a;
|
||||
border: 1px solid #00ffff;
|
||||
border-radius: 4px;
|
||||
selection-background-color: #003333;
|
||||
selection-color: #00ffff;
|
||||
}
|
||||
QComboBox QAbstractItemView::item {
|
||||
padding: 8px;
|
||||
border: none;
|
||||
color: #00ffff;
|
||||
background-color: #0a0a0a;
|
||||
}
|
||||
QComboBox QAbstractItemView::item:hover {
|
||||
background-color: #1a1a1a;
|
||||
color: #00ffff;
|
||||
}
|
||||
QComboBox QAbstractItemView::item:selected {
|
||||
background-color: #003333;
|
||||
color: #00ffff;
|
||||
}
|
||||
""")
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue