diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:45:20 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:45:20 +0000 |
commit | ae1c76ff830d146d41e88d6fba724c0a54bce868 (patch) | |
tree | 3c354bec95af07be35fc71a4b738268496f1a1c4 /panels/network/wireless-security/eap-method-ttls.ui | |
parent | Initial commit. (diff) | |
download | gnome-control-center-ae1c76ff830d146d41e88d6fba724c0a54bce868.tar.xz gnome-control-center-ae1c76ff830d146d41e88d6fba724c0a54bce868.zip |
Adding upstream version 1:43.6.upstream/1%43.6upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'panels/network/wireless-security/eap-method-ttls.ui')
-rw-r--r-- | panels/network/wireless-security/eap-method-ttls.ui | 160 |
1 files changed, 160 insertions, 0 deletions
diff --git a/panels/network/wireless-security/eap-method-ttls.ui b/panels/network/wireless-security/eap-method-ttls.ui new file mode 100644 index 0000000..b10dac2 --- /dev/null +++ b/panels/network/wireless-security/eap-method-ttls.ui @@ -0,0 +1,160 @@ +<?xml version="1.0" encoding="UTF-8"?> +<interface> + <requires lib="gtk+" version="3.4"/> + <object class="GtkListStore" id="inner_auth_model"> + <columns> + <!-- column-name label --> + <column type="gchararray"/> + <!-- column-name id --> + <column type="gchararray"/> + </columns> + <data> + <row> + <col id="0" translatable="yes">PAP</col> + <col id="1">pap</col> + </row> + <row> + <col id="0" translatable="yes">MSCHAP</col> + <col id="1">mschap</col> + </row> + <row> + <col id="0" translatable="yes">MSCHAPv2</col> + <col id="1">mschapv2</col> + </row> + <row> + <col id="0" translatable="yes">MSCHAPv2 (no EAP)</col> + <col id="1">plain_mschapv2</col> + </row> + <row> + <col id="0" translatable="yes">CHAP</col> + <col id="1">chap</col> + </row> + <row> + <col id="0" translatable="yes">MD5</col> + <col id="1">md5</col> + </row> + <row> + <col id="0" translatable="yes">GTC</col> + <col id="1">gtc</col> + </row> + </data> + </object> + <template class="EAPMethodTTLS" parent="GtkGrid"> + <property name="column_spacing">6</property> + <property name="row_spacing">6</property> + <child> + <object class="GtkLabel" id="anon_identity_label"> + <property name="xalign">1</property> + <property name="label" translatable="yes">Anony_mous identity</property> + <property name="use_underline">True</property> + <property name="mnemonic_widget">anon_identity_entry</property> + <layout> + <property name="column">0</property> + <property name="row">0</property> + </layout> + </object> + </child> + <child> + <object class="GtkEntry" id="anon_identity_entry"> + <property name="hexpand">True</property> + <layout> + <property name="column">1</property> + <property name="row">0</property> + </layout> + </object> + </child> + <child> + <object class="GtkLabel" id="domain_match_label"> + <property name="label" translatable="yes">_Domain</property> + <property name="use_underline">True</property> + <property name="mnemonic_widget">domain_match_entry</property> + <property name="xalign">1</property> + <layout> + <property name="column">0</property> + <property name="row">1</property> + </layout> + </object> + </child> + <child> + <object class="GtkEntry" id="domain_match_entry"> + <property name="hexpand">True</property> + <layout> + <property name="column">1</property> + <property name="row">1</property> + </layout> + </object> + </child> + <child> + <object class="GtkLabel" id="ca_cert_label"> + <property name="label" translatable="yes">C_A certificate</property> + <property name="use_underline">True</property> + <property name="mnemonic_widget">ca_cert_button</property> + <property name="xalign">1</property> + <layout> + <property name="column">0</property> + <property name="row">2</property> + </layout> + </object> + </child> + <child> + <object class="WsFileChooserButton" id="ca_cert_button"> + <property name="hexpand">True</property> + <layout> + <property name="column">1</property> + <property name="row">2</property> + </layout> + </object> + </child> + <child> + <object class="GtkCheckButton" id="ca_cert_not_required_check"> + <property name="label" translatable="yes">No CA certificate is _required</property> + <property name="halign">start</property> + <property name="hexpand">True</property> + <property name="use_underline">True</property> + <layout> + <property name="column">1</property> + <property name="row">3</property> + </layout> + </object> + </child> + <child> + <object class="GtkLabel" id="inner_auth_label"> + <property name="label" translatable="yes">_Inner authentication</property> + <property name="use_underline">True</property> + <property name="mnemonic_widget">inner_auth_combo</property> + <property name="xalign">1</property> + <layout> + <property name="column">0</property> + <property name="row">4</property> + </layout> + </object> + </child> + <child> + <object class="GtkComboBox" id="inner_auth_combo"> + <property name="hexpand">True</property> + <property name="model">inner_auth_model</property> + <layout> + <property name="column">1</property> + <property name="row">4</property> + </layout> + <child> + <object class="GtkCellRendererText"/> + <attributes> + <attribute name="text">0</attribute> + </attributes> + </child> + </object> + </child> + <child> + <object class="GtkBox" id="inner_auth_box"> + <property name="orientation">vertical</property> + <property name="spacing">6</property> + <layout> + <property name="column">0</property> + <property name="row">5</property> + <property name="column-span">2</property> + </layout> + </object> + </child> + </template> +</interface> |