diff --git a/mobile/package/contents/ui/ConnectionEditorDialog.qml b/mobile/package/contents/ui/ConnectionEditorDialog.qml index a1f0fd56..1a909fb6 100644 --- a/mobile/package/contents/ui/ConnectionEditorDialog.qml +++ b/mobile/package/contents/ui/ConnectionEditorDialog.qml @@ -1,62 +1,62 @@ /* * * Copyright 2017 Martin Kacej <> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Library General Public License as * published by the Free Software Foundation; either version 2 or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Library General Public License for more details * * You should have received a copy of the GNU Library General Public * License along with this program; if not, write to the * Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ import QtQuick 2.2 import QtQuick.Controls 1.4 as Controls import QtQuick.Layouts 1.2 import org.kde.plasma.core 2.0 as PlasmaCore import org.kde.plasma.components 2.0 as PlasmaComponents import org.kde.plasma.extras 2.0 as PlasmaExtras Item { property var details property var str: 0 Column { anchors.fill: parent PlasmaComponents.Label { anchors.left: parent.left text: i18n("SSID") } PlasmaComponents.TextField { width: 100 // units.GridUnit * 100 } PlasmaComponents.Label { anchors.left: parent.left text: i18n("Security") } Controls.ComboBox { - model: ["None","WEP","WPA","802.1x EAP"] + model: [i18n("None"), i18n("WEP Key"), i18n("Dynamic WEP"), i18n("WPA/WPA2 Personal"), i18n("WPA/WPA2 Enterprise")] } RowLayout { PlasmaComponents.Label { anchors.left: parent.left text: i18n("Advanced options") } PlasmaComponents.Switch { } } } }