missing i18n()

wilder-5.14
Lukáš Tinkl 12 years ago
parent 0e10fda2e0
commit 5bd7f39f28
  1. 6
      applets/devicenotifier/package/contents/ui/configGeneral.qml
  2. 2
      applets/lock_logout/contents/ui/ConfigGeneral.qml
  3. 6
      applets/systemtray/package/contents/ui/ConfigEntries.qml

@ -41,17 +41,17 @@ Item {
}
Controls.RadioButton {
id: removableOnly
text: "Removable devices only"
text: i18n("Removable devices only")
exclusiveGroup: deviceFilter
}
Controls.RadioButton {
id: nonRemovableOnly
text: "Non-removable devices only"
text: i18n("Non-removable devices only")
exclusiveGroup: deviceFilter
}
Controls.RadioButton {
id: allDevices
text: "All devices"
text: i18n("All devices")
exclusiveGroup: deviceFilter
}
}

@ -47,7 +47,7 @@ Item {
id: pageColumn
spacing: itemSizeLabel.height / 2
PlasmaExtras.Title {
text: i18n("SystemTray Settings")
text: i18n("Lock/Logout Settings")
}
Column {

@ -105,9 +105,9 @@ Item {
}
model: ListModel {
id: cbItems
ListElement { text: "Auto"; val: 1 }
ListElement { text: "Shown"; val: 2 }
ListElement { text: "Hidden"; val: 0 }
ListElement { text: i18n("Auto"); val: 1 }
ListElement { text: i18n("Shown"); val: 2 }
ListElement { text: i18n("Hidden"); val: 0 }
}
}
}

Loading…
Cancel
Save