diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:39:48 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:39:48 +0000 |
commit | 3ade071f273aaa973e44bf95d6b1d4913a18f03b (patch) | |
tree | e2f99d267ae18427645404f215b984afbe73098d /src/resources/ui/nautilus-operations-ui-manager-request-passphrase.ui | |
parent | Initial commit. (diff) | |
download | nautilus-3ade071f273aaa973e44bf95d6b1d4913a18f03b.tar.xz nautilus-3ade071f273aaa973e44bf95d6b1d4913a18f03b.zip |
Adding upstream version 43.2.upstream/43.2upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/resources/ui/nautilus-operations-ui-manager-request-passphrase.ui')
-rw-r--r-- | src/resources/ui/nautilus-operations-ui-manager-request-passphrase.ui | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/src/resources/ui/nautilus-operations-ui-manager-request-passphrase.ui b/src/resources/ui/nautilus-operations-ui-manager-request-passphrase.ui new file mode 100644 index 0000000..8c87ed1 --- /dev/null +++ b/src/resources/ui/nautilus-operations-ui-manager-request-passphrase.ui @@ -0,0 +1,49 @@ +<?xml version="1.0" encoding="UTF-8"?> +<interface> + <requires lib="gtk" version="4.0"/> + <object class="GtkDialog" id="request_passphrase_dialog"> + <property name="title" translatable="yes">Password Required</property> + <property name="modal">True</property> + <property name="destroy-with-parent">True</property> + <property name="use-header-bar">1</property> + <child internal-child="content_area"> + <object class="GtkBox"> + <property name="margin-top">20</property> + <property name="margin-bottom">20</property> + <property name="margin-start">20</property> + <property name="margin-end">20</property> + <child> + <object class="GtkLabel" id="label"> + <property name="max-width-chars">60</property> + <property name="wrap">True</property> + </object> + </child> + <child> + <object class="GtkEntry" id="entry"> + <property name="activates-default">True</property> + <property name="valign">end</property> + <property name="vexpand">True</property> + <property name="placeholder-text" translatable="yes">Enter password…</property> + <property name="visibility">False</property> + <property name="input-purpose">password</property> + </object> + </child> + </object> + </child> + <child type="action"> + <object class="GtkButton" id="cancel_button"> + <property name="label" translatable="yes">_Cancel</property> + <property name="use-underline">True</property> + </object> + </child> + <child type="action"> + <object class="GtkButton" id="extract_button"> + <property name="label" translatable="yes">Extract</property> + </object> + </child> + <action-widgets> + <action-widget response="cancel">cancel_button</action-widget> + <action-widget response="ok" default="true">extract_button</action-widget> + </action-widgets> + </object> +</interface> |