diff --git a/CASA/CASA.changes b/CASA/CASA.changes
index 5ac5b660..ed42e9e6 100644
--- a/CASA/CASA.changes
+++ b/CASA/CASA.changes
@@ -1,3 +1,10 @@
+Thu Oct 12 16:26:13 MDT 2006 - jnorman@novell.com
+
+- Copy feature added. Users can copy secrets from one store
+ to another.
+
+-------------------------------------------------------------------
+
Wed Oct 11 15:29:13 IST 2006 - smanojna@novell.com
- Some fixes for Distribution of Firefox Password Manager secrets.
diff --git a/CASA/gui/Common.cs b/CASA/gui/Common.cs
index b9139966..60aa3c6f 100644
--- a/CASA/gui/Common.cs
+++ b/CASA/gui/Common.cs
@@ -84,11 +84,13 @@ public class Common
public static int MAX_STORES = 10;
- public static string STORENAME_MICASA = "miCASA",
+ public static string STORENAME_MICASA = "miCASA",
STORENAME_FIREFOX = "Firefox",
STORENAME_MOZILLA = "Mozilla",
STORENAME_KDEWALLET = "KDE Wallet",
STORENAME_GNOMEKEYRING = "GNOME Keyring";
+
+ public static string[] saStoreNameList = {"miCASA", "Firefox", "Mozilla", "KDE Wallet", "GNOME Keyring"};
///##############################################################
diff --git a/CASA/gui/CopySecret.cs b/CASA/gui/CopySecret.cs
new file mode 100644
index 00000000..2268c6a7
--- /dev/null
+++ b/CASA/gui/CopySecret.cs
@@ -0,0 +1,288 @@
+using System;
+using System.Text;
+using System.Collections;
+
+using Gtk;
+using Glade;
+
+
+namespace Novell.CASA.GUI
+{
+ ///
+ /// Summary description for CopySecret.
+ ///
+ public class CopySecret
+ {
+ #region Glade Widgets
+
+ [Glade.Widget]
+ Gtk.Dialog dialogCopySecret;
+
+ [Glade.Widget]
+ Gtk.CheckButton checkbuttonMiCASA,
+ checkbuttonFPM,
+ checkbuttonMPM,
+ checkbuttonKDE,
+ checkbuttonGNOME;
+
+ [Glade.Widget]
+ Gtk.Entry
+ entryMiCASA,
+ entryFPM,
+ entryMPM,
+ entryKDE,
+ entryGNOME;
+
+ [Glade.Widget]
+ Gtk.Label
+ labelMiCASA,
+ labelFPM,
+ labelMPM,
+ labelKDE,
+ labelGNOME;
+
+ #endregion
+
+ private string m_sSecretID = "http://www.novell.com";
+ private string[] m_saKeys;
+ private string[] m_saValues;
+
+ public CopySecret(string sSrcSecretID, string[] saKeys, string[] saValues)
+ {
+ m_sSecretID = sSrcSecretID;
+ m_saKeys = saKeys;
+ m_saValues = saValues;
+ }
+
+ public void Show()
+ {
+ Glade.XML gxmlTemp = new Glade.XML (Common.GladeFile, "dialogCopySecret", null);
+ gxmlTemp.Autoconnect (this);
+ InitDialog();
+ dialogCopySecret.Show();
+ }
+
+ private void InitDialog()
+ {
+ if (Common.IS_MICASA)
+ {
+ checkbuttonMiCASA.Visible = checkbuttonMiCASA.Sensitive = Common.IS_MICASA_AVAILABLE;
+ checkbuttonMiCASA.Toggled += new EventHandler(checkbuttonMiCASA_Toggled);
+ labelMiCASA.Visible = entryMiCASA.Visible = Common.IS_MICASA_AVAILABLE;
+
+ if (m_sSecretID.StartsWith("http:"))
+ entryMiCASA.Text = m_sSecretID.Substring(7);
+ else
+ entryMiCASA.Text = m_sSecretID;
+ }
+
+ if (Common.IS_FIREFOX)
+ {
+ checkbuttonFPM.Visible = checkbuttonFPM.Sensitive = Common.IS_FIREFOX_AVAILABLE;
+ checkbuttonFPM.Toggled += new EventHandler(checkbuttonFPM_Toggled);
+ labelFPM.Visible = entryFPM.Visible = Common.IS_FIREFOX_AVAILABLE;
+
+ if (!m_sSecretID.StartsWith("http:"))
+ entryFPM.Text = "http://"+m_sSecretID;
+ else
+ entryFPM.Text = m_sSecretID;
+ }
+
+ if (Common.IS_MOZILLA)
+ {
+ checkbuttonMPM.Visible = checkbuttonMPM.Sensitive = Common.IS_MOZILLA_AVAILABLE;
+ checkbuttonMPM.Toggled += new EventHandler(checkbuttonMPM_Toggled);
+ labelMPM.Visible = entryMPM.Visible = Common.IS_MOZILLA_AVAILABLE;
+ entryMPM.Text = m_sSecretID;
+ }
+
+ if (Common.IS_KDEWALLET)
+ {
+ checkbuttonKDE.Visible = checkbuttonKDE.Sensitive = Common.IS_KDEWALLET_AVAILABLE;
+ checkbuttonKDE.Toggled += new EventHandler(checkbuttonKDE_Toggled);
+ labelKDE.Visible = entryKDE.Visible = Common.IS_KDEWALLET_AVAILABLE;
+ entryKDE.Text = m_sSecretID;
+ }
+
+ if (Common.IS_GNOMEKEYRING)
+ {
+ checkbuttonGNOME.Visible = checkbuttonGNOME.Sensitive = Common.IS_GNOMEKEYRING_AVAILABLE;
+ checkbuttonGNOME.Toggled += new EventHandler(checkbuttonGNOME_Toggled);
+ labelGNOME.Visible = entryGNOME.Visible = Common.IS_GNOMEKEYRING_AVAILABLE;
+ entryGNOME.Text = m_sSecretID;
+ }
+ }
+
+ public void on_buttonCopyCancel_clicked(object obj, EventArgs args)
+ {
+ if (dialogCopySecret != null)
+ {
+ dialogCopySecret.Destroy();
+ }
+ }
+
+
+ public void on_buttonCopyOK_clicked(object obj, EventArgs args)
+ {
+
+ StringBuilder sb = new StringBuilder();
+ // copy to micasa
+ if ((checkbuttonMiCASA.Active) && (entryMiCASA.Text.Length > 0))
+ {
+ sb.Append(DoCopy(entryMiCASA.Text, Common.STORE_MICASA));
+ sb.Append("\r\n");
+ }
+
+ // copy to Firefox
+ if ((checkbuttonFPM.Active) && (entryFPM.Text.Length > 0))
+ {
+ sb.Append(DoCopy(entryFPM.Text, Common.STORE_FIREFOX));
+ sb.Append("\r\n");
+ }
+
+ // copy to Mozilla
+ if ((checkbuttonMPM.Active) && (entryMPM.Text.Length > 0))
+ {
+ sb.Append(DoCopy(entryMPM.Text, Common.STORE_MOZILLA));
+ sb.Append("\r\n");
+ }
+
+ // copy to kde wallet
+ if ((checkbuttonKDE.Active) && entryKDE.Text.Length > 0)
+ {
+ sb.Append(DoCopy(entryKDE.Text, Common.STORE_KDEWALLET));
+ sb.Append("\r\n");
+ }
+
+ // copy to GNOME keyring
+ if ((checkbuttonGNOME.Active) && entryGNOME.Text.Length > 0)
+ {
+ sb.Append(DoCopy(entryGNOME.Text, Common.STORE_GNOMEKEYRING));
+ sb.Append("\r\n");
+ }
+
+ if (sb.Length > 0)
+ {
+ CommonGUI.DisplayMessage(Gtk.MessageType.Info, "Copy to ...\r\n" + sb.ToString());
+ }
+ else
+ {
+ CommonGUI.DisplayMessage(Gtk.MessageType.Info, "No stores selected");
+ }
+
+ if (dialogCopySecret != null)
+ {
+ dialogCopySecret.Destroy();
+ }
+
+ }
+
+ private void checkbuttonMiCASA_Toggled(object sender, EventArgs e)
+ {
+ entryMiCASA.Sensitive = checkbuttonMiCASA.Active;
+ }
+
+ private void checkbuttonFPM_Toggled(object sender, EventArgs e)
+ {
+ entryFPM.Sensitive = checkbuttonFPM.Active;
+ }
+
+ private void checkbuttonMPM_Toggled(object sender, EventArgs e)
+ {
+ entryMPM.Sensitive = checkbuttonMPM.Active;
+ }
+
+ private void checkbuttonKDE_Toggled(object sender, EventArgs e)
+ {
+ entryKDE.Sensitive = checkbuttonKDE.Active;
+ }
+
+ private void checkbuttonGNOME_Toggled(object sender, EventArgs e)
+ {
+ entryGNOME.Sensitive = checkbuttonGNOME.Active;
+ }
+
+
+ private string DoCopy(string sNewSecretName, int iTargetStore)
+ {
+ Logger.DbgLog("GUI:CopySecret.DoCopy() - BEGIN");
+
+ TreeModel model;
+ TreeIter iter;
+
+ TreeModel modelSecret;
+ TreeIter iterSecret, iterKey;
+
+ string[] NativeKeys = null,
+ NativeValues = null;
+
+ try
+ {
+ NativeKeys = new string[Common.MAX_NATIVE_ELEMENTS];
+ NativeValues = new string[Common.MAX_NATIVE_ELEMENTS];
+ NativeKeys[Common.INDEX_NATIVEINFO_FOLDERNAME] = Common.NATIVEINFO_FOLDERNAME;
+ NativeKeys[Common.INDEX_NATIVEINFO_TYPEID] = Common.NATIVEINFO_TYPEID;
+ NativeKeys[Common.INDEX_NATIVEINFO_SYNC] = Common.NATIVEINFO_SYNC;
+ NativeKeys[Common.INDEX_NATIVEINFO_SYNCTYPE] = Common.NATIVEINFO_SYNCTYPE;
+ NativeKeys[Common.INDEX_NATIVEINFO_MODIFIEDTIME] = Common.NATIVEINFO_MODIFIEDTIME;
+ NativeValues[Common.INDEX_NATIVEINFO_FOLDERNAME] = null;
+
+ if (iTargetStore == Common.STORE_FIREFOX)
+ {
+ NativeValues[Common.INDEX_NATIVEINFO_TYPEID] = "Signon";
+ }
+ else if (iTargetStore == Common.STORE_GNOMEKEYRING)
+ {
+ NativeValues[Common.INDEX_NATIVEINFO_TYPEID] = "Network Password";
+ }
+ else
+ {
+ NativeValues[Common.INDEX_NATIVEINFO_TYPEID] = null;
+ }
+
+ NativeValues[Common.INDEX_NATIVEINFO_SYNC] = null;
+ NativeValues[Common.INDEX_NATIVEINFO_SYNCTYPE] = null;
+ NativeValues[Common.INDEX_NATIVEINFO_MODIFIEDTIME] = null;
+
+ TreeStore tsTargetSecret;
+ TreeView tvTargetSecret = new TreeView();
+ if (iTargetStore == Common.STORE_FIREFOX)
+ {
+ ArrayList arrIsPassword = new ArrayList();
+ for (int i=0; i -1)
+ arrIsPassword.Add(true);
+ else
+ arrIsPassword.Add(false);
+ }
+
+ bool[] IsPassword = (bool[])arrIsPassword.ToArray(typeof(bool));
+ tsTargetSecret = new TreeStore(typeof(string), typeof(string[]), typeof(string[]), typeof(string), typeof(string[]), typeof(string[]), typeof(bool[]));
+ iterSecret = tsTargetSecret.AppendValues(sNewSecretName, m_saKeys, m_saValues, DataEngines.AD.GetDefaultProfileName(Common.STORE_FIREFOX), NativeKeys, NativeValues, IsPassword);
+ }
+ else
+ {
+ tsTargetSecret = new TreeStore(typeof(string), typeof(string[]), typeof(string[]), typeof(string), typeof(string[]), typeof(string[]));
+ iterSecret = tsTargetSecret.AppendValues(sNewSecretName, m_saKeys, m_saValues, "Default", NativeKeys, NativeValues);
+ }
+
+ modelSecret = tvTargetSecret.Model = tsTargetSecret;
+
+ if( Common.STATUS_SUCCESS == StoreDataInterface.UpdateStore(iTargetStore, Common.OPERATION_ADD_SECRET, "", "", ref modelSecret, ref iterSecret) )
+ {
+ return Common.saStoreNameList[iTargetStore] + " Success";
+ }
+ else
+ {
+ return Common.saStoreNameList[iTargetStore] + " Failed";
+ }
+
+ }
+ catch (Exception e)
+ {
+ return (Common.saStoreNameList[iTargetStore] + " : " + e.ToString());
+ }
+ }
+ }
+}
diff --git a/CASA/gui/Firefox.cs b/CASA/gui/Firefox.cs
index b441ad5b..9b29d5da 100644
--- a/CASA/gui/Firefox.cs
+++ b/CASA/gui/Firefox.cs
@@ -222,8 +222,8 @@ public class Firefox : Store
if( 0 != tvSecretIDFirefox.Selection.CountSelectedRows() )
{
- cmiNewSecret.Sensitive = cmiNewKey.Sensitive = true;
- cmiLink.Sensitive = cmiCopy.Sensitive = false;
+ cmiNewSecret.Sensitive = cmiNewKey.Sensitive = cmiCopy.Sensitive = true;
+ cmiLink.Sensitive = false;
}
else
{
@@ -1210,8 +1210,31 @@ public class Firefox : Store
///
public void OnCopyActivated(object obj, EventArgs args)
{
+ TreeModel model;
+ TreeIter iter;
+
+ try
+ {
+ if( tvSecretIDFirefox.Selection.GetSelected (out model, out iter) )
+ {
+ string selected = null;
+ string[] saKeys, saValues;
+
+ selected = (string) model.GetValue (iter, 0);
+ saKeys = (string[]) model.GetValue(iter, 1);
+ saValues = (string[]) model.GetValue(iter, 2);
+
+ CopySecret cs = new CopySecret(selected, saKeys, saValues);
+ cs.Show();
+ }
+ }
+ catch
+ {
+
+ }
}
+
///#######################################################################
/// VALIDATE STRINGS FOR SPECIAL CHARACTERS
diff --git a/CASA/gui/GnomeKeyring.cs b/CASA/gui/GnomeKeyring.cs
index ed655931..5854d5e0 100644
--- a/CASA/gui/GnomeKeyring.cs
+++ b/CASA/gui/GnomeKeyring.cs
@@ -243,7 +243,10 @@ public class GnomeKeyring : Store
menuRightClick.Popup(null, null, null, IntPtr.Zero, 3, Gtk.Global.CurrentEventTime);
if( 0 != tvSecretIDGnomeKeyring.Selection.CountSelectedRows() )
- cmiLink.Sensitive = cmiCopy.Sensitive = false;
+ {
+ cmiLink.Sensitive = false;
+ cmiCopy.Sensitive = true;
+ }
else
cmiNewKey.Sensitive = cmiView.Sensitive = cmiLink.Sensitive = cmiCopy.Sensitive = cmiDelete.Sensitive = false;
}
@@ -929,6 +932,23 @@ public class GnomeKeyring : Store
///
public void OnCopyActivated(object obj, EventArgs args)
{
+ Logger.DbgLog("GUI:GnomeKeyring.OnCopyActivated() - BEGIN");
+ if( 0 != tvSecretIDGnomeKeyring.Selection.CountSelectedRows() )
+ {
+ TreeModel model;
+ TreeIter iter;
+ string selected = null;
+ if( tvSecretIDGnomeKeyring.Selection.GetSelected (out model, out iter) )
+ {
+ selected = (string) model.GetValue (iter, 0);
+ string[] saKeys = (string[]) model.GetValue(iter, 1);
+ string[] saValues = (string[]) model.GetValue(iter, 2);
+
+ CopySecret cs = new CopySecret(selected, saKeys, saValues);
+ cs.Show();
+ }
+ }
+ Logger.DbgLog("GUI:GnomeKeyring.OnCopyActivated() - END");
}
diff --git a/CASA/gui/KdeWallet.cs b/CASA/gui/KdeWallet.cs
index 6969ce68..1a8430a3 100644
--- a/CASA/gui/KdeWallet.cs
+++ b/CASA/gui/KdeWallet.cs
@@ -242,7 +242,10 @@ public class KdeWallet : Store
menuRightClick.Popup(null, null, null, IntPtr.Zero, 3, Gtk.Global.CurrentEventTime);
if( 0 != tvSecretIDKdeWallet.Selection.CountSelectedRows() )
- cmiLink.Sensitive = cmiCopy.Sensitive = false;
+ {
+ cmiLink.Sensitive = false;
+ cmiCopy.Sensitive = true;
+ }
else
cmiNewKey.Sensitive = cmiView.Sensitive = cmiLink.Sensitive = cmiCopy.Sensitive = cmiDelete.Sensitive = false;
}
@@ -926,7 +929,23 @@ public class KdeWallet : Store
///
public void OnCopyActivated(object obj, EventArgs args)
{
-
+ Logger.DbgLog("GUI:KdeWallet.OnCopyActivated() - BEGIN");
+ if( 0 != tvSecretIDKdeWallet.Selection.CountSelectedRows() )
+ {
+ TreeModel model;
+ TreeIter iter;
+ string selected = null;
+ if( tvSecretIDKdeWallet.Selection.GetSelected (out model, out iter) )
+ {
+ selected = (string) model.GetValue (iter, 0);
+ string[] saKeys = (string[]) model.GetValue(iter, 1);
+ string[] saValues = (string[]) model.GetValue(iter, 2);
+
+ CopySecret cs = new CopySecret(selected, saKeys, saValues);
+ cs.Show();
+ }
+ }
+ Logger.DbgLog("GUI:KdeWallet.OnCopyActivated() - END");
}
diff --git a/CASA/gui/Makefile.am b/CASA/gui/Makefile.am
index ebb6abc5..63858ad2 100644
--- a/CASA/gui/Makefile.am
+++ b/CASA/gui/Makefile.am
@@ -60,6 +60,7 @@ MODULE_EXT =exe
CSFILES =$(srcdir)/AssemblyInfo.cs \
$(srcdir)/CasaMain.cs \
$(srcdir)/CasaTray.cs \
+ $(srcdir)/CopySecret.cs \
$(srcdir)/DbgFileChooser.cs \
$(srcdir)/TrayLib.cs \
$(srcdir)/ExportSecrets.cs \
diff --git a/CASA/gui/MiCasa.cs b/CASA/gui/MiCasa.cs
index 897190bb..a4656cc1 100644
--- a/CASA/gui/MiCasa.cs
+++ b/CASA/gui/MiCasa.cs
@@ -240,7 +240,7 @@ public class MiCasa : Store
menuRightClick.Popup(null, null, null, IntPtr.Zero, 3, Gtk.Global.CurrentEventTime);
if( 0 != tvSecretIDMiCasa.Selection.CountSelectedRows() )
- cmiCopy.Sensitive = false;
+ cmiCopy.Sensitive = true;
else
cmiNewKey.Sensitive = cmiView.Sensitive = cmiLink.Sensitive = cmiCopy.Sensitive = cmiDelete.Sensitive = false;
}
@@ -957,7 +957,29 @@ public class MiCasa : Store
///
public void OnCopyActivated(object obj, EventArgs args)
{
+ Logger.DbgLog("GUI:MiCasa.OnCopyActivated() - BEGIN");
+ if( 0 != tvSecretIDMiCasa.Selection.CountSelectedRows() )
+ {
+
+ TreeModel model;
+ TreeIter iter;
+ string selected = null;
+ string[] saKeys, saValues;
+
+ if( tvSecretIDMiCasa.Selection.GetSelected (out model, out iter) )
+ {
+ selected = (string) model.GetValue (iter, 0);
+ if (selected.StartsWith("SS_CredSet"))
+ selected = selected.Substring(11);
+
+ saKeys = (string[]) model.GetValue(iter, 1);
+ saValues = (string[]) model.GetValue(iter, 2);
+
+ CopySecret cs = new CopySecret(selected, saKeys, saValues);
+ cs.Show();
+ }
+ }
}
public void on_helpbuttonLinkKeys_clicked(object obj, EventArgs args)
diff --git a/CASA/gui/images/casa.glade b/CASA/gui/images/casa.glade
index 800d787f..4b892d13 100644
--- a/CASA/gui/images/casa.glade
+++ b/CASA/gui/images/casa.glade
@@ -1,14496 +1,15087 @@
-
-
-
-
-
-
- Novell CASA Manager
- GTK_WINDOW_TOPLEVEL
- GTK_WIN_POS_CENTER
- False
- 250
- 525
- True
- True
- CASAicons.ico
- True
- False
- False
- GDK_WINDOW_TYPE_HINT_NORMAL
- GDK_GRAVITY_NORTH_WEST
- True
- False
-
-
-
- True
- False
- 0
-
-
-
- True
- False
- 0
-
-
-
-
- 0
- True
- True
-
-
-
-
- 0
- False
- False
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
- casa-logo-left.png
- 0.5
- 0.5
- 0
- 0
-
-
- 0
- False
- True
-
-
-
-
-
- True
-
-
- 0
- True
- True
-
-
-
-
-
- True
- casa-logo-right.png
- 0.5
- 0.5
- 0
- 0
-
-
- 0
- False
- True
-
-
-
-
- 0
- False
- True
-
-
-
-
-
- 8
- True
- True
- True
- True
- True
- True
- False
- GTK_POS_TOP
- True
- False
-
-
-
-
- True
- False
- 0
-
-
-
- 6
- True
- True
- GTK_POLICY_AUTOMATIC
- GTK_POLICY_AUTOMATIC
- GTK_SHADOW_IN
- GTK_CORNER_TOP_LEFT
-
-
-
- True
- True
- True
- True
- True
- True
- True
- False
- True
- False
- False
- False
-
-
-
-
- 0
- True
- True
-
-
-
-
-
- True
- <b>:: Native Information ::</b>
- False
- True
- GTK_JUSTIFY_CENTER
- False
- False
- 0.5
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- False
- False
-
-
-
-
-
- 6
- True
- True
- GTK_POLICY_AUTOMATIC
- GTK_POLICY_AUTOMATIC
- GTK_SHADOW_IN
- GTK_CORNER_TOP_LEFT
-
-
-
- True
- True
- False
- True
- False
- True
- False
- False
- False
-
-
-
-
- 0
- False
- True
-
-
-
-
- False
- True
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
- CASA_32.png
- 0.5
- 0.5
- 0
- 0
-
-
- 0
- False
- True
-
-
-
-
-
- True
- <b>miCASA</b>
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0.5
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 6
- False
- False
-
-
-
-
- tab
-
-
-
-
-
- True
- False
- 0
-
-
-
- 6
- True
- True
- GTK_POLICY_AUTOMATIC
- GTK_POLICY_AUTOMATIC
- GTK_SHADOW_IN
- GTK_CORNER_TOP_LEFT
-
-
-
- True
- True
- True
- True
- True
- False
- True
- False
- False
- False
-
-
-
-
- 0
- True
- True
-
-
-
-
-
- True
- <b>:: Native Information ::</b>
- False
- True
- GTK_JUSTIFY_CENTER
- False
- False
- 0.5
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- False
- False
-
-
-
-
-
- 6
- True
- True
- GTK_POLICY_AUTOMATIC
- GTK_POLICY_AUTOMATIC
- GTK_SHADOW_IN
- GTK_CORNER_TOP_LEFT
-
-
-
- True
- True
- False
- True
- False
- True
- False
- False
- False
-
-
-
-
- 0
- False
- True
-
-
-
-
- False
- True
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
- firefox-logo.png
- 0.5
- 0.5
- 0
- 0
-
-
- 0
- False
- True
-
-
-
-
-
- True
- <b>Firefox</b>
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0.5
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 6
- False
- False
-
-
-
-
- tab
-
-
-
-
-
- True
- False
- 0
-
-
-
- 6
- True
- True
- GTK_POLICY_AUTOMATIC
- GTK_POLICY_AUTOMATIC
- GTK_SHADOW_IN
- GTK_CORNER_TOP_LEFT
-
-
-
- True
- True
- True
- True
- True
- False
- True
- False
- False
- False
-
-
-
-
- 0
- True
- True
-
-
-
-
-
- True
- <b>:: Native Information ::</b>
- False
- True
- GTK_JUSTIFY_CENTER
- False
- False
- 0.5
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- False
- False
-
-
-
-
-
- 6
- True
- True
- GTK_POLICY_AUTOMATIC
- GTK_POLICY_AUTOMATIC
- GTK_SHADOW_IN
- GTK_CORNER_TOP_LEFT
-
-
-
- True
- True
- False
- True
- False
- True
- False
- False
- False
-
-
-
-
- 0
- False
- True
-
-
-
-
- False
- True
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
- mozilla-logo.png
- 0.5
- 0.5
- 0
- 0
-
-
- 0
- False
- True
-
-
-
-
-
- True
- <b>Mozilla</b>
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0.5
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 6
- False
- False
-
-
-
-
- tab
-
-
-
-
-
- True
- False
- 0
-
-
-
- 6
- True
- True
- GTK_POLICY_AUTOMATIC
- GTK_POLICY_AUTOMATIC
- GTK_SHADOW_IN
- GTK_CORNER_TOP_LEFT
-
-
-
- True
- True
- True
- True
- True
- False
- True
- False
- False
- False
-
-
-
-
- 0
- True
- True
-
-
-
-
-
- True
- <b>:: Native Information ::</b>
- False
- True
- GTK_JUSTIFY_CENTER
- False
- False
- 0.5
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- False
- False
-
-
-
-
-
- 6
- True
- True
- GTK_POLICY_AUTOMATIC
- GTK_POLICY_AUTOMATIC
- GTK_SHADOW_IN
- GTK_CORNER_TOP_LEFT
-
-
-
- True
- True
- False
- True
- False
- True
- False
- False
- False
-
-
-
-
- 0
- False
- True
-
-
-
-
- False
- True
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
- kwallet-logo.png
- 0.5
- 0.5
- 0
- 0
-
-
- 0
- False
- True
-
-
-
-
-
- True
- <b>KDE Wallet</b>
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0.5
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 6
- False
- False
-
-
-
-
- tab
-
-
-
-
-
- True
- False
- 0
-
-
-
- 6
- True
- True
- GTK_POLICY_AUTOMATIC
- GTK_POLICY_AUTOMATIC
- GTK_SHADOW_IN
- GTK_CORNER_TOP_LEFT
-
-
-
- True
- True
- True
- True
- True
- False
- True
- False
- False
- False
-
-
-
-
- 0
- True
- True
-
-
-
-
-
- True
- <b>:: Native Information ::</b>
- False
- True
- GTK_JUSTIFY_CENTER
- False
- False
- 0.5
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- False
- False
-
-
-
-
-
- 6
- True
- True
- GTK_POLICY_AUTOMATIC
- GTK_POLICY_AUTOMATIC
- GTK_SHADOW_IN
- GTK_CORNER_TOP_LEFT
-
-
-
- True
- True
- False
- True
- False
- True
- False
- False
- False
-
-
-
-
- 0
- False
- True
-
-
-
-
- False
- True
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
- keyring-logo.png
- 0.5
- 0.5
- 0
- 0
-
-
- 0
- False
- True
-
-
-
-
-
- True
- <b>GNOME Keyring</b>
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0.5
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 6
- False
- False
-
-
-
-
- tab
-
-
-
-
- 0
- True
- True
-
-
-
-
-
- True
- True
-
-
- 0
- False
- False
- GTK_PACK_END
-
-
-
-
-
-
-
- 4
- True
- Warning
- GTK_WINDOW_TOPLEVEL
- GTK_WIN_POS_CENTER_ON_PARENT
- True
- False
- True
- CASAicons.ico
- True
- False
- False
- GDK_WINDOW_TYPE_HINT_DIALOG
- GDK_GRAVITY_NORTH_WEST
- True
- False
- True
-
-
-
- True
- False
- 0
-
-
-
- True
- GTK_BUTTONBOX_END
-
-
-
- True
- True
- True
- gtk-help
- True
- GTK_RELIEF_NONE
- True
- -11
-
-
-
-
-
-
- True
- True
- True
- gtk-no
- True
- GTK_RELIEF_NORMAL
- True
- -9
-
-
-
-
-
-
- True
- True
- True
- True
- True
- gtk-yes
- True
- GTK_RELIEF_NORMAL
- True
- -8
-
-
-
-
-
- 0
- False
- True
- GTK_PACK_END
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
- False
- 0
-
-
-
- True
- gtk-dialog-question
- 6
- 0.5
- 0.5
- 0
- 0
-
-
- 0
- False
- True
-
-
-
-
- 4
- True
- True
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
- <b>Are you sure you want to Refresh
-all the stores?</b>
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 5
- False
- False
-
-
-
-
-
- True
- Refreshing stores will fetch Secrets from
-their backend stores.
- False
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 4
- False
- False
-
-
-
-
-
- True
- True
- Do not show this in the future
- True
- GTK_RELIEF_NORMAL
- True
- False
- False
- True
-
-
- 0
- False
- False
-
-
-
-
- 0
- True
- True
-
-
-
-
- 0
- True
- True
-
-
-
-
-
-
-
- 4
- True
- New Secret
- GTK_WINDOW_TOPLEVEL
- GTK_WIN_POS_CENTER_ON_PARENT
- True
- True
- True
- CASAicons.ico
- True
- False
- False
- GDK_WINDOW_TYPE_HINT_DIALOG
- GDK_GRAVITY_NORTH_WEST
- True
- False
- True
-
-
-
- True
- False
- 0
-
-
-
- True
- GTK_BUTTONBOX_END
-
-
-
- True
- True
- True
- gtk-help
- True
- GTK_RELIEF_NONE
- True
- -11
-
-
-
-
-
-
- True
- True
- True
- gtk-cancel
- True
- GTK_RELIEF_NORMAL
- True
- -6
-
-
-
-
-
-
- True
- True
- True
- gtk-ok
- True
- GTK_RELIEF_NORMAL
- True
- -5
-
-
-
-
-
- 0
- False
- True
- GTK_PACK_END
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
- False
- 0
-
-
-
- True
- False
- 0
-
-
-
- True
- gtk-new
- 5
- 0.5
- 0.5
- 0
- 0
-
-
- 6
- False
- True
-
-
-
-
- 4
- False
- True
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
- <b>Add new Secrets or Key-Value pairs</b>
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 5
- False
- False
-
-
-
-
-
- True
- Enter the Key-value pairs and click Add button to add Key-Value pairs or click Delete button to remove newly added Key-Value pairs from the list.
- False
- True
- GTK_JUSTIFY_LEFT
- True
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 4
- False
- False
-
-
-
-
- 12
- True
- True
-
-
-
-
- 0
- False
- True
-
-
-
-
-
- True
- 3
- 2
- False
- 4
- 4
-
-
-
- True
- 0
- 1
- GTK_SHADOW_IN
-
-
-
- True
- 0.5
- 0.5
- 1
- 1
- 6
- 6
- 6
- 6
-
-
-
- True
- 5
- 3
- False
- 4
- 4
-
-
-
- True
- <b>Key:</b>
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 0
- 1
- fill
-
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
- True
- GTK_RELIEF_NORMAL
- True
-
-
-
-
- True
- gtk-remove
- 4
- 0.5
- 0.5
- 0
- 0
-
-
-
-
- 0
- False
- False
-
-
-
-
- 2
- 3
- 3
- 4
- fill
- fill
-
-
-
-
-
- True
- True
- GTK_POLICY_AUTOMATIC
- GTK_POLICY_AUTOMATIC
- GTK_SHADOW_IN
- GTK_CORNER_TOP_LEFT
-
-
-
- True
- True
- True
- True
- False
- True
- False
- False
- False
-
-
-
-
- 0
- 2
- 3
- 4
-
-
-
-
-
- True
- True
- True
- True
- 512
-
- True
- *
- False
-
-
- 0
- 1
- 1
- 2
-
-
-
-
-
-
- True
- True
- True
- True
- 512
-
- True
- *
- False
-
-
- 1
- 2
- 1
- 2
-
-
-
-
-
-
- True
- True
- GTK_RELIEF_NORMAL
- True
-
-
-
-
- True
- gtk-add
- 4
- 0.5
- 0.5
- 0
- 0
-
-
-
-
- 2
- 3
- 1
- 2
- fill
-
-
-
-
-
-
- True
- <b>Key-Value pairs:</b>
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 3
- 2
- 3
- fill
-
-
-
-
-
-
- True
- <b>Value:</b>
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 1
- 3
- 0
- 1
- fill
-
-
-
-
-
-
- True
- True
- Show Values in clear text.
- True
- GTK_RELIEF_NORMAL
- True
- False
- False
- True
-
-
-
- 0
- 3
- 4
- 5
- fill
-
-
-
-
-
-
-
-
-
-
- True
-
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0.5
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- label_item
-
-
-
-
- 0
- 2
- 2
- 3
- fill
-
-
-
-
-
- True
- <b>Secret ID:</b>
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 2
- 0
- 1
- fill
-
-
-
-
-
-
- True
- True
- True
- True
- 512
-
- True
- *
- False
-
-
- 0
- 2
- 1
- 2
-
-
-
-
-
- 6
- True
- True
-
-
-
-
- 0
- True
- True
-
-
-
-
-
-
-
- 4
- True
- Link Key-Value pairs
- GTK_WINDOW_TOPLEVEL
- GTK_WIN_POS_CENTER_ON_PARENT
- True
- True
- True
- CASAicons.ico
- True
- False
- False
- GDK_WINDOW_TYPE_HINT_DIALOG
- GDK_GRAVITY_NORTH_WEST
- True
- False
- True
-
-
-
- True
- False
- 0
-
-
-
- True
- GTK_BUTTONBOX_END
-
-
-
- True
- True
- True
- gtk-help
- True
- GTK_RELIEF_NONE
- True
- -11
-
-
-
-
-
-
- True
- True
- True
- gtk-close
- True
- GTK_RELIEF_NORMAL
- True
- -7
-
-
-
-
-
- 0
- False
- True
- GTK_PACK_END
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
- False
- 0
-
-
-
- True
- False
- 0
-
-
-
- True
- gtk-jump-to
- 5
- 0.5
- 0.5
- 0
- 0
-
-
- 6
- False
- True
-
-
-
-
- 4
- False
- True
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
- <b>Link Key-Value pairs</b>
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 5
- False
- True
-
-
-
-
-
- True
- You can link two or more keys using this dialog. Further, linking two password keys will keep their values synchronized.
- False
- True
- GTK_JUSTIFY_LEFT
- True
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 4
- False
- False
-
-
-
-
- 12
- True
- True
-
-
-
-
- 0
- False
- True
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
- 3
- 2
- False
- 3
- 6
-
-
-
- True
- True
- True
- True
- 0
-
- True
- *
- False
-
-
- 1
- 2
- 2
- 3
-
-
-
-
-
-
- True
- <b>Key:</b>
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 1
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 1
- 2
- fill
- fill
-
-
-
-
-
- True
- <b>Value:</b>
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 1
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 2
- 3
- fill
- fill
-
-
-
-
-
- True
- <b>Secret ID:</b>
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 1
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 0
- 1
- fill
- fill
-
-
-
-
-
- True
-
- False
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 1
- 2
- 0
- 1
- fill
-
-
-
-
-
-
- True
-
- False
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 1
- 2
- 1
- 2
- fill
-
-
-
-
-
- 0
- True
- True
-
-
-
-
- 6
- False
- True
-
-
-
-
-
- True
- 0
- 0
- GTK_SHADOW_IN
-
-
-
- True
- 0.5
- 0.5
- 1
- 1
- 0
- 10
- 10
- 10
-
-
-
- True
- 5
- 3
- False
- 4
- 4
-
-
-
- True
- False
- 0
-
-
-
- True
- Remove the Link of selected Key-Value pair.
- True
- GTK_RELIEF_NORMAL
- True
-
-
-
-
- True
- gtk-remove
- 4
- 0.5
- 0.5
- 0
- 0
-
-
-
-
- 0
- False
- False
-
-
-
-
- 2
- 3
- 4
- 5
- fill
- fill
-
-
-
-
-
- True
- <b>Existing Linked Keys:</b>
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 3
- 3
- 4
- fill
-
-
-
-
-
-
- True
-
-
- 0
- 3
- 2
- 3
- 4
- fill
- fill
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
- Link the selected Key-Value pair.
- True
- GTK_RELIEF_NORMAL
- True
-
-
-
-
- True
- gtk-add
- 4
- 0.5
- 0.5
- 0
- 0
-
-
-
-
- 32
- False
- False
-
-
-
-
- 2
- 3
- 1
- 2
- fill
- fill
-
-
-
-
-
- True
- True
- GTK_POLICY_AUTOMATIC
- GTK_POLICY_AUTOMATIC
- GTK_SHADOW_IN
- GTK_CORNER_TOP_LEFT
-
-
-
- True
- True
- True
- True
- False
- True
- False
- False
- False
-
-
-
-
- 0
- 2
- 4
- 5
- fill
-
-
-
-
-
- True
- <b>Select the Keys to be Linked:</b>
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 4
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 3
- 0
- 1
- fill
-
-
-
-
-
-
- True
- True
- True
- False
- GTK_POS_TOP
- True
- False
-
-
-
- True
- False
- 0
-
-
-
- True
- False
- 0
-
-
-
- 6
- True
- True
- GTK_POLICY_AUTOMATIC
- GTK_POLICY_AUTOMATIC
- GTK_SHADOW_IN
- GTK_CORNER_TOP_LEFT
-
-
-
- True
- True
- True
- True
- True
- True
- False
- False
- False
-
-
-
-
- 0
- True
- True
-
-
-
-
-
- True
- GTK_ARROW_RIGHT
- GTK_SHADOW_OUT
- 0.5
- 0.5
- 0
- 0
-
-
- 0
- False
- False
-
-
-
-
-
- 6
- True
- True
- GTK_POLICY_AUTOMATIC
- GTK_POLICY_AUTOMATIC
- GTK_SHADOW_IN
- GTK_CORNER_TOP_LEFT
-
-
-
- True
- True
- True
- True
- True
- True
- False
- False
- False
-
-
-
-
- 0
- True
- True
-
-
-
-
- 0
- True
- True
-
-
-
-
- False
- True
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
- CASA_32.png
- 0.5
- 0.5
- 0
- 0
-
-
- 0
- False
- True
-
-
-
-
-
- True
- miCASA
- False
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0.5
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 6
- False
- False
-
-
-
-
- tab
-
-
-
-
-
- True
- False
- 0
-
-
-
- 6
- True
- True
- GTK_POLICY_AUTOMATIC
- GTK_POLICY_AUTOMATIC
- GTK_SHADOW_IN
- GTK_CORNER_TOP_LEFT
-
-
-
- True
- True
- True
- True
- True
- True
- False
- False
- False
-
-
-
-
- 0
- True
- True
-
-
-
-
- False
- True
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
- firefox-logo.png
- 0.5
- 0.5
- 0
- 0
-
-
- 0
- False
- True
-
-
-
-
-
- True
- Firefox
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0.5
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 6
- False
- False
-
-
-
-
- tab
-
-
-
-
-
- True
- False
- 0
-
-
-
- 6
- True
- True
- GTK_POLICY_AUTOMATIC
- GTK_POLICY_AUTOMATIC
- GTK_SHADOW_IN
- GTK_CORNER_TOP_LEFT
-
-
-
- True
- True
- True
- True
- True
- True
- False
- False
- False
-
-
-
-
- 0
- True
- True
-
-
-
-
- False
- True
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
- mozilla-logo.png
- 0.5
- 0.5
- 0
- 0
-
-
- 0
- False
- True
-
-
-
-
-
- True
- Mozilla
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0.5
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 6
- False
- False
-
-
-
-
- tab
-
-
-
-
-
- True
- False
- 0
-
-
-
- 6
- True
- True
- GTK_POLICY_AUTOMATIC
- GTK_POLICY_AUTOMATIC
- GTK_SHADOW_IN
- GTK_CORNER_TOP_LEFT
-
-
-
- True
- True
- True
- True
- True
- True
- False
- False
- False
-
-
-
-
- 0
- True
- True
-
-
-
-
- False
- True
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
- kwallet-logo.png
- 0.5
- 0.5
- 0
- 0
-
-
- 0
- False
- True
-
-
-
-
-
- True
- KDE Wallet
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0.5
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 6
- False
- False
-
-
-
-
- tab
-
-
-
-
-
- True
- False
- 0
-
-
-
- 6
- True
- True
- GTK_POLICY_AUTOMATIC
- GTK_POLICY_AUTOMATIC
- GTK_SHADOW_IN
- GTK_CORNER_TOP_LEFT
-
-
-
- True
- True
- True
- True
- True
- True
- False
- False
- False
-
-
-
-
- 0
- True
- True
-
-
-
-
- False
- True
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
- keyring-logo.png
- 0.5
- 0.5
- 0
- 0
-
-
- 0
- False
- True
-
-
-
-
-
- True
- GNOME Keyring
- False
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0.5
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 6
- False
- False
-
-
-
-
- tab
-
-
-
-
- 0
- 2
- 1
- 2
-
-
-
-
-
-
-
-
-
- True
-
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0.5
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- label_item
-
-
-
-
- 6
- True
- True
-
-
-
-
- 0
- True
- True
-
-
-
-
-
-
-
- 4
- True
- Warning
- GTK_WINDOW_TOPLEVEL
- GTK_WIN_POS_CENTER_ON_PARENT
- True
- False
- True
- CASAicons.ico
- True
- False
- False
- GDK_WINDOW_TYPE_HINT_DIALOG
- GDK_GRAVITY_NORTH_WEST
- True
- False
- True
-
-
-
- True
- False
- 0
-
-
-
- True
- GTK_BUTTONBOX_END
-
-
-
- True
- True
- True
- gtk-no
- True
- GTK_RELIEF_NORMAL
- True
- -9
-
-
-
-
-
-
- True
- True
- True
- True
- True
- gtk-yes
- True
- GTK_RELIEF_NORMAL
- True
- -8
-
-
-
-
-
- 0
- False
- True
- GTK_PACK_END
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
- False
- 0
-
-
-
- True
- gtk-dialog-question
- 6
- 0.5
- 0.5
- 0
- 0
-
-
- 0
- False
- True
-
-
-
-
- 4
- True
- True
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
- <b>Are you sure you want to delete this secret?</b>
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 5
- False
- False
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
- <b>Secret ID : </b>
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0.5
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- False
- False
-
-
-
-
-
- True
- True
- False
- True
- 0
-
- False
- *
- False
-
-
- 0
- True
- True
-
-
-
-
- 6
- False
- False
-
-
-
-
-
- True
- This will delete the selected secret and all its associated key-value pairs.
- False
- False
- GTK_JUSTIFY_LEFT
- True
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 4
- False
- False
-
-
-
-
-
- True
- Do not show this in the future
- True
- GTK_RELIEF_NORMAL
- True
- False
- False
- True
-
-
- 0
- False
- False
-
-
-
-
- 0
- True
- True
-
-
-
-
- 0
- True
- True
-
-
-
-
-
-
-
- 4
- True
- Warning
- GTK_WINDOW_TOPLEVEL
- GTK_WIN_POS_CENTER_ON_PARENT
- True
- False
- True
- CASAicons.ico
- True
- False
- False
- GDK_WINDOW_TYPE_HINT_DIALOG
- GDK_GRAVITY_NORTH_WEST
- True
- False
- True
-
-
-
- True
- False
- 0
-
-
-
- True
- GTK_BUTTONBOX_END
-
-
-
- True
- True
- True
- gtk-help
- True
- GTK_RELIEF_NONE
- True
- -11
-
-
-
-
-
- True
- True
- True
- gtk-no
- True
- GTK_RELIEF_NORMAL
- True
- -9
-
-
-
-
-
- True
- True
- True
- True
- True
- gtk-yes
- True
- GTK_RELIEF_NORMAL
- True
- -8
-
-
-
-
- 0
- False
- True
- GTK_PACK_END
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
- False
- 0
-
-
-
- True
- gtk-dialog-question
- 6
- 0.5
- 0.5
- 0
- 0
-
-
- 0
- False
- True
-
-
-
-
- 4
- True
- True
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
- <b>Are you sure you want to Quit
-the application?</b>
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 5
- False
- False
-
-
-
-
-
- True
- This will quit the CASA Management
-Console.
- False
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 4
- False
- False
-
-
-
-
- 0
- True
- True
-
-
-
-
- 0
- True
- True
-
-
-
-
-
-
-
- True
- Persistent Storage
- GTK_WINDOW_TOPLEVEL
- GTK_WIN_POS_CENTER_ON_PARENT
- True
- False
- True
- CASAicons.ico
- True
- False
- False
- GDK_WINDOW_TYPE_HINT_DIALOG
- GDK_GRAVITY_NORTH_WEST
- True
- False
- True
-
-
-
- True
- False
- 0
-
-
-
- True
- GTK_BUTTONBOX_END
-
-
-
- True
- True
- True
- gtk-help
- True
- GTK_RELIEF_NONE
- True
- -11
-
-
-
-
-
- True
- True
- True
- gtk-cancel
- True
- GTK_RELIEF_NORMAL
- True
- -6
-
-
-
-
-
-
- True
- True
- True
- gtk-ok
- True
- GTK_RELIEF_NORMAL
- True
- -5
-
-
-
-
-
- 0
- False
- True
- GTK_PACK_END
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
- False
- 0
-
-
-
- True
- False
- 0
-
-
-
- True
- gtk-dialog-authentication
- 6
- 0.5
- 0.5
- 0
- 0
-
-
- 4
- False
- True
-
-
-
-
- 4
- True
- True
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
- <b>Set Master Password for Persistent Storage</b>
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 5
- False
- False
-
-
-
-
-
- True
- The Master Password is used to encrypt and
-secure your persistent credentials. You are
-prompted for the Master Password at startup.
- False
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 4
- False
- False
-
-
-
-
- 0
- True
- True
-
-
-
-
- 0
- True
- True
-
-
-
-
-
- 6
- True
- 0
- 0.5
- GTK_SHADOW_IN
-
-
-
- True
- 0.5
- 0.5
- 1
- 1
- 0
- 0
- 12
- 0
-
-
-
- 6
- True
- 3
- 2
- False
- 6
- 6
-
-
-
- True
- Master Password :
- False
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 1
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 0
- 1
- fill
-
-
-
-
-
-
- True
- Re-enter Master Password :
- False
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 1
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 1
- 2
- fill
-
-
-
-
-
-
- Master Password Hint :
- False
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 1
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 2
- 3
- fill
-
-
-
-
-
-
- True
- True
- True
- False
- 512
-
- True
- *
- False
-
-
- 1
- 2
- 0
- 1
-
-
-
-
-
-
- True
- True
- True
- False
- 512
-
- True
- *
- False
-
-
- 1
- 2
- 1
- 2
-
-
-
-
-
-
- True
- True
- True
- 512
-
- True
- *
- False
-
-
- 1
- 2
- 2
- 3
-
-
-
-
-
-
-
-
-
- 0
- True
- True
-
-
-
-
- 0
- True
- True
-
-
-
-
-
-
-
- True
- Preferences
- GTK_WINDOW_TOPLEVEL
- GTK_WIN_POS_CENTER_ON_PARENT
- True
- True
- True
- CASAicons.ico
- True
- False
- False
- GDK_WINDOW_TYPE_HINT_DIALOG
- GDK_GRAVITY_NORTH_WEST
- True
- False
- True
-
-
-
- True
- False
- 0
-
-
-
- True
- GTK_BUTTONBOX_END
-
-
-
- True
- True
- True
- gtk-help
- True
- GTK_RELIEF_NONE
- True
- -11
-
-
-
-
-
-
- True
- True
- True
- gtk-cancel
- True
- GTK_RELIEF_NORMAL
- True
- -6
-
-
-
-
-
-
- True
- True
- True
- gtk-ok
- True
- GTK_RELIEF_NORMAL
- True
- -5
-
-
-
-
-
- 0
- False
- True
- GTK_PACK_END
-
-
-
-
-
- True
- False
- 0
-
-
-
- 6
- True
- 0
- 0.5
- GTK_SHADOW_IN
-
-
-
- True
- 0.5
- 0.5
- 1
- 1
- 0
- 0
- 12
- 0
-
-
-
- 4
- True
- False
- 0
-
-
-
- True
- False
- 0
-
-
-
- True
- True
- Encrpyt and save miCASA secrets to disk (Persistent)
- True
- GTK_RELIEF_NORMAL
- True
- True
- False
- True
-
-
-
- 0
- False
- False
-
-
-
-
- 0
- True
- True
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
- False
- 0
-
-
-
- True
-
- False
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0.5
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- False
- False
-
-
-
-
-
- True
- True
- True
- True
- 0
-
- True
- *
- False
-
-
- 3
- True
- True
-
-
-
-
-
- True
- True
- GTK_RELIEF_NORMAL
- False
-
-
-
-
- True
- gtk-find
- 4
- 0.5
- 0.5
- 0
- 0
-
-
-
-
- 0
- False
- False
-
-
-
-
- 0
- True
- True
-
-
-
-
- 0
- True
- True
-
-
-
-
-
-
-
-
-
- True
- <b> miCASA Store options </b>
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0.5
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- label_item
-
-
-
-
- 0
- False
- True
-
-
-
-
-
- 6
- True
- 0
- 0.5
- GTK_SHADOW_IN
-
-
-
- True
- 0.5
- 0.5
- 1
- 1
- 0
- 0
- 12
- 0
-
-
-
- 4
- True
- False
- 0
-
-
-
- True
- True
- Show CASA Manager icon in notify area
- True
- GTK_RELIEF_NORMAL
- True
- True
- False
- True
-
-
-
- 0
- False
- False
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
-
- False
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0.5
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- False
- False
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
- True
- Display CASA Manager when icon is clicked
- True
- GTK_RELIEF_NORMAL
- True
- False
- False
- True
-
-
-
- 0
- False
- False
-
-
-
-
-
- True
- True
- Lock/Unlock secrets when icon is clicked
- True
- GTK_RELIEF_NORMAL
- True
- False
- False
- True
- radiobutton1
-
-
-
- 0
- False
- False
-
-
-
-
- 0
- True
- True
-
-
-
-
- 0
- True
- True
-
-
-
-
-
-
-
-
-
- True
- <b> CASA Manager Options </b>
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0.5
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- label_item
-
-
-
-
- 0
- False
- True
-
-
-
-
-
- 6
- True
- 0
- 0.5
- GTK_SHADOW_IN
-
-
-
- True
- 0.5
- 0.5
- 1
- 1
- 0
- 0
- 12
- 0
-
-
-
- 4
- True
- False
- 0
-
-
-
- True
- True
- Firefox Password Manager
- True
- GTK_RELIEF_NORMAL
- True
- False
- False
- True
-
-
- 0
- False
- False
-
-
-
-
-
- True
- Mozilla Password Manager
- True
- GTK_RELIEF_NORMAL
- True
- False
- False
- True
-
-
- 0
- False
- False
-
-
-
-
-
- True
- True
- KDE Wallet
- True
- GTK_RELIEF_NORMAL
- True
- False
- False
- True
-
-
- 0
- False
- False
-
-
-
-
-
- True
- True
- GNOME Keyring
- True
- GTK_RELIEF_NORMAL
- True
- False
- False
- True
-
-
- 0
- False
- False
-
-
-
-
-
-
-
-
-
- True
- <b> Stores supported </b>
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0.5
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- label_item
-
-
-
-
- 0
- True
- True
-
-
-
-
-
- 6
- 0
- 0.5
- GTK_SHADOW_IN
-
-
-
- True
- 0.5
- 0.5
- 1
- 1
- 0
- 0
- 12
- 0
-
-
-
- 6
- True
- False
- 0
-
-
-
- True
- Refresh all stores after every
- False
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 1
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 4
- False
- True
-
-
-
-
-
- True
- True
- 1
- 0
- False
- GTK_UPDATE_ALWAYS
- False
- False
- 0 0 100 1 10 10
-
-
- 4
- False
- True
-
-
-
-
-
- True
- seconds.
- False
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0.5
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 4
- False
- False
-
-
-
-
-
-
-
-
-
- True
- <b> Auto refresh</b>
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0.5
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- label_item
-
-
-
-
- 0
- False
- True
-
-
-
-
- 0
- True
- True
-
-
-
-
-
-
-
-
-
- True
- About CASA
- GTK_WINDOW_TOPLEVEL
- GTK_WIN_POS_CENTER_ON_PARENT
- True
- False
- True
- CASAicons.ico
- True
- False
- False
- GDK_WINDOW_TYPE_HINT_DIALOG
- GDK_GRAVITY_NORTH_WEST
- True
- False
- True
-
-
-
- True
- False
- 0
-
-
-
- True
- GTK_BUTTONBOX_EDGE
-
-
-
- True
- True
- True
- GTK_RELIEF_NONE
- True
- -7
-
-
-
-
- True
- novell-logo.png
- 0.5
- 0.5
- 0
- 0
-
-
-
-
-
-
-
- True
- True
- True
- True
- gtk-close
- True
- GTK_RELIEF_NORMAL
- True
- -7
-
-
-
-
-
- 0
- False
- True
- GTK_PACK_END
-
-
-
-
-
- 4
- True
- False
- 0
-
-
-
- True
- False
- 0
-
-
-
- True
- casa-logo-left.png
- 0.5
- 0.5
- 0
- 0
-
-
- 0
- False
- True
-
-
-
-
-
- True
-
-
- 0
- True
- True
-
-
-
-
-
- True
- casa-logo-right.png
- 0.5
- 0.5
- 0
- 0
-
-
- 0
- False
- True
-
-
-
-
- 0
- True
- True
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
-
- False
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0.5
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- False
- False
-
-
-
-
-
- True
- <b>Version 1.6</b>
- False
- True
- GTK_JUSTIFY_RIGHT
- False
- False
- 0.5
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- False
- False
- GTK_PACK_END
-
-
-
-
- 2
- False
- False
-
-
-
-
-
- True
- True
- True
- True
- GTK_POS_TOP
- False
- False
-
-
-
- 4
- True
- 0
- 0.5
- GTK_SHADOW_IN
-
-
-
- 4
- True
- 0.5
- 0.5
- 1
- 1
- 0
- 0
- 0
- 0
-
-
-
- True
- <b>.:| C A S A |:.</b>
-<b>Common Authentication Services Adapter</b>
-Version 1.6 (c) 2006, Novell Inc.
-.......................................................................................................................
-CASA is the common cross-platform foundation for authentication and single sign-on services for the users of Novell Linux Desktop and Microsoft Windows operating systems. Applications that integrate CASA can securely authenticate and cache credentials for single sign-on purposes.
-
-CASA Manager provides users a single place to manage credentials for KWallet, Gnome Keyring and Firefox Password Manager.
- False
- True
- GTK_JUSTIFY_CENTER
- True
- False
- 0.5
- 0.5
- 6
- 6
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
-
-
-
-
- False
- True
-
-
-
-
-
- True
- <b>About</b>
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0.5
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- tab
-
-
-
-
-
- 4
- True
- True
- GTK_POLICY_AUTOMATIC
- GTK_POLICY_AUTOMATIC
- GTK_SHADOW_IN
- GTK_CORNER_TOP_LEFT
-
-
-
- True
- GTK_SHADOW_NONE
-
-
-
- True
- False
- 0
-
-
-
- True
- <b>Cameron Mashayekhi
-Jim Norman
-Poorna Pushkala
-Ahmed SK Anis
-Manohar Mathias
-CSL Manojna
-Nagareshwar Talekar
-L Sreevatsa
-Todd Throne
-Juan Carlos Luciani
-Michael Bright
-Kal Larsen
-Kyle Bullock
-Colin Green
-</b>
- False
- True
- GTK_JUSTIFY_CENTER
- False
- False
- 0.5
- 0.5
- 6
- 6
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- True
- True
-
-
-
-
-
-
-
-
- False
- True
-
-
-
-
-
- True
- <b>Contributors</b>
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0.5
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- tab
-
-
-
-
-
- 4
- True
- True
- GTK_POLICY_AUTOMATIC
- GTK_POLICY_AUTOMATIC
- GTK_SHADOW_IN
- GTK_CORNER_TOP_LEFT
-
-
-
- True
- True
- False
- False
- True
- GTK_JUSTIFY_CENTER
- GTK_WRAP_WORD
- True
- 0
- 0
- 0
- 10
- 10
- 0
-
-Copyright (C) 2005-2006 Novell, Inc. All Rights Reserved.
-
-This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; version 2.1 of the License.
-
-This library 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 Lesser General Public License for more details.
-
-You should have received a copy of the GNU Lesser General Public License along with this library; if not, Novell, Inc.
-
-To contact Novell about this file by physical or electronic mail, you may find current contact information at www.novell.com.
-
-.................................................ooO0Ooo.................................................
-
-
-
-
- False
- True
-
-
-
-
-
- True
- <b>License</b>
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0.5
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- tab
-
-
-
-
- 6
- True
- True
-
-
-
-
- 0
- True
- True
-
-
-
-
-
-
-
- True
- CASA - Master Password
- GTK_WINDOW_TOPLEVEL
- GTK_WIN_POS_CENTER_ALWAYS
- True
- False
- True
- CASAicons.ico
- True
- False
- False
- GDK_WINDOW_TYPE_HINT_DIALOG
- GDK_GRAVITY_NORTH_WEST
- True
- False
- True
-
-
-
-
- True
- False
- 0
-
-
-
- True
- GTK_BUTTONBOX_END
-
-
-
- True
- True
- True
- gtk-help
- True
- GTK_RELIEF_NONE
- True
- -11
-
-
-
-
-
-
- True
- True
- True
- gtk-close
- True
- GTK_RELIEF_NORMAL
- True
- -7
-
-
-
-
-
-
- True
- True
- True
- gtk-ok
- True
- GTK_RELIEF_NORMAL
- True
- -5
-
-
-
-
-
- 0
- False
- True
- GTK_PACK_END
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
- False
- 0
-
-
-
- True
- False
- 0
-
-
-
- True
- gtk-dialog-authentication
- 6
- 0.5
- 0.5
- 0
- 0
-
-
- 4
- False
- True
-
-
-
-
- 4
- True
- True
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
- <b>Master Password Authentication</b>
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 4
- False
- False
-
-
-
-
-
- True
- The Master Password is used to encrypt and
-secure your persistent credentials. You are
-prompted for the Master Password at startup.
- False
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 4
- False
- False
-
-
-
-
- 0
- True
- True
-
-
-
-
- 0
- True
- True
-
-
-
-
-
- 6
- True
- 0
- 0.5
- GTK_SHADOW_IN
-
-
-
- True
- 0.5
- 0.5
- 1
- 1
- 0
- 0
- 12
- 0
-
-
-
- 6
- True
- 3
- 2
- False
- 6
- 6
-
-
-
- True
- Master Password :
- False
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 1
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 0
- 1
- fill
-
-
-
-
-
-
- True
- Re-enter Password :
- False
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 1
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 1
- 2
- fill
-
-
-
-
-
-
- True
- True
- True
- False
- 512
-
- True
- *
- False
-
-
-
- 1
- 2
- 0
- 1
-
-
-
-
-
-
- True
- True
- True
- False
- 512
-
- True
- *
- False
-
-
-
- 1
- 2
- 1
- 2
-
-
-
-
-
-
- Remember for :
- False
- False
- GTK_JUSTIFY_RIGHT
- False
- False
- 1
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 2
- 3
- fill
-
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
- 1
- 0
- True
- GTK_UPDATE_ALWAYS
- False
- False
- 5 5 300 10 60 60
-
-
- 0
- True
- True
-
-
-
-
-
- seconds
- False
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0.5
- 0.5
- 10
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- False
- False
-
-
-
-
- 1
- 2
- 2
- 3
- fill
- fill
-
-
-
-
-
-
-
-
- 0
- True
- True
-
-
-
-
- 0
- True
- True
-
-
-
-
-
-
-
- True
- CASA Manager - Help
- GTK_WINDOW_TOPLEVEL
- GTK_WIN_POS_NONE
- False
- True
- True
- CASAicons.ico
- True
- False
- False
- GDK_WINDOW_TYPE_HINT_NORMAL
- GDK_GRAVITY_NORTH_WEST
- True
- False
-
-
-
- True
- False
- 0
-
-
-
- True
- False
- 0
-
-
-
- True
- GTK_ORIENTATION_HORIZONTAL
- GTK_TOOLBAR_ICONS
- True
- True
-
-
-
- True
-
- True
- gtk-home
- True
- True
- False
-
-
- False
- True
-
-
-
-
-
- True
-
- True
- gtk-go-back
- True
- False
- False
-
-
- False
- True
-
-
-
-
-
- True
- gtk-go-forward
- True
- True
- False
-
-
- False
- True
-
-
-
-
- 0
- True
- True
-
-
-
-
- 0
- False
- False
-
-
-
-
-
-
-
-
-
- True
- True
-
-
- 0
- False
- False
-
-
-
-
-
-
-
- 4
- True
- Manage Secret
- GTK_WINDOW_TOPLEVEL
- GTK_WIN_POS_CENTER_ON_PARENT
- True
- True
- True
- CASAicons.ico
- True
- False
- False
- GDK_WINDOW_TYPE_HINT_DIALOG
- GDK_GRAVITY_NORTH_WEST
- True
- False
- True
-
-
-
- True
- False
- 0
-
-
-
- True
- GTK_BUTTONBOX_END
-
-
-
- True
- True
- True
- gtk-help
- True
- GTK_RELIEF_NONE
- True
- -11
-
-
-
-
-
-
- True
- True
- True
- gtk-cancel
- True
- GTK_RELIEF_NORMAL
- True
- -6
-
-
-
-
-
-
- True
- True
- True
- gtk-ok
- True
- GTK_RELIEF_NORMAL
- True
- -5
-
-
-
-
-
- 0
- False
- True
- GTK_PACK_END
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
- False
- 0
-
-
-
- True
- False
- 0
-
-
-
- True
- gtk-find-and-replace
- 5
- 0.5
- 0.5
- 0
- 0
-
-
- 6
- False
- True
-
-
-
-
- 4
- False
- True
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
- <b>Manage Secrets and Key-Value pairs</b>
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 5
- False
- False
-
-
-
-
-
- True
- To EDIT a Key-Value pair, select and single-click the respective Value and enter the new Value.
- False
- True
- GTK_JUSTIFY_LEFT
- True
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 4
- False
- False
-
-
-
-
- 12
- True
- True
-
-
-
-
- 0
- False
- True
-
-
-
-
-
- True
- 3
- 2
- False
- 4
- 4
-
-
-
- True
- 0
- 1
- GTK_SHADOW_IN
-
-
-
- True
- 0.5
- 0.5
- 1
- 1
- 6
- 6
- 6
- 6
-
-
-
- True
- 5
- 3
- False
- 4
- 4
-
-
-
- True
- <b>Key:</b>
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 0
- 1
- fill
-
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
- Remove the selected Key-Value pair.
- True
- GTK_RELIEF_NORMAL
- True
-
-
-
-
- True
- gtk-remove
- 4
- 0.5
- 0.5
- 0
- 0
-
-
-
-
- 0
- False
- False
-
-
-
-
- 2
- 3
- 3
- 4
- fill
- fill
-
-
-
-
-
- True
- True
- GTK_POLICY_AUTOMATIC
- GTK_POLICY_AUTOMATIC
- GTK_SHADOW_IN
- GTK_CORNER_TOP_LEFT
-
-
-
- True
- True
- True
- True
- False
- True
- False
- False
- False
-
-
-
-
- 0
- 2
- 3
- 4
-
-
-
-
-
- True
- True
- True
- True
- 512
-
- True
- *
- False
-
-
- 0
- 1
- 1
- 2
-
-
-
-
-
-
- True
- True
- True
- True
- 512
-
- True
- *
- False
-
-
- 1
- 2
- 1
- 2
-
-
-
-
-
-
- True
- Add the new Key-Value pair.
- True
- GTK_RELIEF_NORMAL
- True
-
-
-
-
- True
- gtk-add
- 4
- 0.5
- 0.5
- 0
- 0
-
-
-
-
- 2
- 3
- 1
- 2
- fill
-
-
-
-
-
-
- True
- <b>Key-Value pairs:</b>
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 3
- 2
- 3
- fill
-
-
-
-
-
-
- True
- <b>Value:</b>
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 1
- 3
- 0
- 1
- fill
-
-
-
-
-
-
- True
- True
- Show Values in clear text.
- True
- GTK_RELIEF_NORMAL
- True
- False
- False
- True
-
-
-
- 0
- 3
- 4
- 5
- fill
-
-
-
-
-
-
-
-
-
-
- True
-
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0.5
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- label_item
-
-
-
-
- 0
- 2
- 2
- 3
- fill
-
-
-
-
-
- True
- <b>Secret ID:</b>
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 2
- 0
- 1
- fill
-
-
-
-
-
-
- True
- True
- False
- True
- 512
-
- True
- *
- False
-
-
- 0
- 2
- 1
- 2
-
-
-
-
-
- 6
- True
- True
-
-
-
-
- 0
- True
- True
-
-
-
-
-
-
-
- 4
- True
- Warning
- GTK_WINDOW_TOPLEVEL
- GTK_WIN_POS_CENTER_ALWAYS
- False
- False
- True
- CASAicons.ico
- True
- False
- False
- GDK_WINDOW_TYPE_HINT_DIALOG
- GDK_GRAVITY_NORTH_WEST
- True
- False
- True
-
-
-
-
- True
- False
- 0
-
-
-
- True
- GTK_BUTTONBOX_END
-
-
-
- True
- True
- True
- gtk-close
- True
- GTK_RELIEF_NORMAL
- True
- -7
-
-
-
-
-
- 0
- False
- True
- GTK_PACK_END
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
- False
- 0
-
-
-
- True
- gtk-dialog-warning
- 6
- 0.5
- 0.5
- 0
- 0
-
-
- 0
- False
- True
-
-
-
-
- 4
- True
- True
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
- <b>Cannot run CASAManager (GUI) as another
-instance is already running.</b>
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 5
- False
- False
-
-
-
-
-
- True
- Quit from currently running instance of CASAManager
-and try running CASAManager again.
- False
- False
- GTK_JUSTIFY_LEFT
- True
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 4
- False
- False
-
-
-
-
- 0
- True
- True
-
-
-
-
- 0
- False
- True
-
-
-
-
-
-
-
- True
- Warning
- GTK_WINDOW_TOPLEVEL
- GTK_WIN_POS_CENTER_ON_PARENT
- True
- False
- True
- CASAicons.ico
- True
- False
- False
- GDK_WINDOW_TYPE_HINT_DIALOG
- GDK_GRAVITY_NORTH_WEST
- True
- False
- True
-
-
-
- True
- False
- 0
-
-
-
- True
- GTK_BUTTONBOX_END
-
-
-
- True
- True
- True
- gtk-close
- True
- GTK_RELIEF_NORMAL
- True
- -7
-
-
-
-
-
-
- True
- True
- True
- True
- True
- GTK_RELIEF_NORMAL
- True
- -5
-
-
-
-
- True
- 0.5
- 0.5
- 0
- 0
- 0
- 0
- 0
- 0
-
-
-
- True
- False
- 2
-
-
-
- True
- gtk-redo
- 4
- 0.5
- 0.5
- 0
- 0
-
-
- 0
- False
- False
-
-
-
-
-
- True
- _Retry
- True
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0.5
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- False
- False
-
-
-
-
-
-
-
-
-
-
- 0
- False
- True
- GTK_PACK_END
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
- False
- 0
-
-
-
- True
- gtk-dialog-warning
- 6
- 0.5
- 0.5
- 0
- 0
-
-
- 0
- False
- True
-
-
-
-
- 4
- True
- True
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
- <b>Retry signing in entering the correct Master Password.</b>
- False
- True
- GTK_JUSTIFY_LEFT
- True
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 5
- False
- False
-
-
-
-
-
- True
- Further you can choose to quit CASAManager by cilcking the Close button.
- False
- False
- GTK_JUSTIFY_LEFT
- True
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 4
- False
- False
-
-
-
-
- 0
- True
- True
-
-
-
-
- 0
- True
- True
-
-
-
-
-
-
-
- True
- Warning
- GTK_WINDOW_TOPLEVEL
- GTK_WIN_POS_CENTER_ON_PARENT
- True
- False
- True
- CASAicons.ico
- True
- False
- False
- GDK_WINDOW_TYPE_HINT_DIALOG
- GDK_GRAVITY_NORTH_WEST
- True
- False
- True
-
-
-
- True
- False
- 0
-
-
-
- True
- GTK_BUTTONBOX_END
-
-
-
- True
- True
- True
- True
- True
- GTK_RELIEF_NORMAL
- True
- -5
-
-
-
-
- True
- 0.5
- 0.5
- 0
- 0
- 0
- 0
- 0
- 0
-
-
-
- True
- False
- 2
-
-
-
- True
- gtk-redo
- 4
- 0.5
- 0.5
- 0
- 0
-
-
- 0
- False
- False
-
-
-
-
-
- True
- _Retry
- True
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0.5
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- False
- False
-
-
-
-
-
-
-
-
-
-
- 0
- False
- True
- GTK_PACK_END
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
- False
- 0
-
-
-
- True
- gtk-dialog-warning
- 6
- 0.5
- 0.5
- 0
- 0
-
-
- 0
- False
- True
-
-
-
-
- 4
- True
- True
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
- <b>Master Password is too short.</b>
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 5
- False
- False
-
-
-
-
-
- True
- The Master Password should be at least eight characters in length.
- False
- False
- GTK_JUSTIFY_LEFT
- True
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 4
- False
- False
-
-
-
-
- 0
- True
- True
-
-
-
-
- 0
- True
- True
-
-
-
-
-
-
-
- True
- CASA Manager - Debug Log
- GTK_WINDOW_TOPLEVEL
- GTK_WIN_POS_NONE
- False
- 300
- 300
- True
- True
- CASAicons.ico
- True
- False
- False
- GDK_WINDOW_TYPE_HINT_DIALOG
- GDK_GRAVITY_NORTH_WEST
- True
- False
- True
-
-
-
- True
- False
- 0
-
-
-
- True
- GTK_BUTTONBOX_END
-
-
-
- True
- True
- True
- gtk-close
- True
- GTK_RELIEF_NORMAL
- True
- -7
-
-
-
-
- 0
- False
- True
- GTK_PACK_END
-
-
-
-
-
- 4
- True
- True
- GTK_POLICY_AUTOMATIC
- GTK_POLICY_AUTOMATIC
- GTK_SHADOW_IN
- GTK_CORNER_TOP_LEFT
-
-
-
- True
- True
- True
- False
- False
- True
- False
- False
- False
-
-
-
-
- 0
- True
- True
-
-
-
-
-
-
-
- True
- Master Password
- GTK_WINDOW_TOPLEVEL
- GTK_WIN_POS_CENTER_ON_PARENT
- True
- False
- True
- CASAicons.ico
- True
- False
- False
- GDK_WINDOW_TYPE_HINT_DIALOG
- GDK_GRAVITY_NORTH_WEST
- True
- False
- True
-
-
-
- True
- False
- 0
-
-
-
- True
- GTK_BUTTONBOX_END
-
-
-
- True
- True
- True
- gtk-help
- True
- GTK_RELIEF_NONE
- True
- -11
-
-
-
-
-
-
- True
- True
- True
- gtk-cancel
- True
- GTK_RELIEF_NORMAL
- True
- -6
-
-
-
-
-
-
- True
- True
- True
- gtk-ok
- True
- GTK_RELIEF_NORMAL
- True
- -5
-
-
-
-
-
- 0
- False
- True
- GTK_PACK_END
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
- False
- 0
-
-
-
- True
- False
- 0
-
-
-
- True
- gtk-dialog-authentication
- 6
- 0.5
- 0.5
- 0
- 0
-
-
- 4
- False
- True
-
-
-
-
- 4
- True
- True
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
- <b>Change Master Password</b>
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 4
- False
- False
-
-
-
-
-
- True
- The Master Password is used to encrypt and
-secure your persistent credentials. You are
-prompted for the Master Password at startup.
- False
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 4
- False
- False
-
-
-
-
- 0
- True
- True
-
-
-
-
- 0
- True
- True
-
-
-
-
-
- 6
- True
- 0
- 0.5
- GTK_SHADOW_IN
-
-
-
- True
- 0.5
- 0.5
- 1
- 1
- 0
- 0
- 12
- 0
-
-
-
- 6
- True
- 4
- 2
- False
- 6
- 6
-
-
-
- True
- Current Master Password :
- True
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 1
- 0.5
- 0
- 0
- entryOldMP
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 0
- 1
- fill
-
-
-
-
-
-
- True
- New Master Password :
- False
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 1
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 1
- 2
- fill
-
-
-
-
-
-
- True
- True
- True
- False
- 512
-
- True
- *
- False
-
-
- 1
- 2
- 0
- 1
-
-
-
-
-
-
- True
- True
- True
- False
- 512
-
- True
- *
- False
-
-
- 1
- 2
- 1
- 2
-
-
-
-
-
-
- True
- Re-enter Master Password :
- False
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 1
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 2
- 3
- fill
-
-
-
-
-
-
- True
- True
- True
- False
- 512
-
- True
- *
- False
-
-
- 1
- 2
- 2
- 3
-
-
-
-
-
-
- Master Password Hint :
- False
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 1
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 3
- 4
- fill
-
-
-
-
-
-
- True
- True
- True
- 512
-
- True
- *
- False
-
-
- 1
- 2
- 3
- 4
-
-
-
-
-
-
-
-
-
- 0
- True
- True
-
-
-
-
- 0
- True
- True
-
-
-
-
-
-
-
- 4
- True
- Information
- GTK_WINDOW_TOPLEVEL
- GTK_WIN_POS_CENTER_ALWAYS
- True
- False
- True
- CASAicons.ico
- True
- False
- False
- GDK_WINDOW_TYPE_HINT_DIALOG
- GDK_GRAVITY_NORTH_WEST
- True
- False
- True
-
-
-
- True
- False
- 0
-
-
-
- True
- GTK_BUTTONBOX_END
-
-
-
- True
- True
- True
- True
- True
- gtk-close
- True
- GTK_RELIEF_NORMAL
- True
- -7
-
-
-
-
-
- 0
- False
- True
- GTK_PACK_END
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
- False
- 0
-
-
-
- True
- gtk-dialog-info
- 6
- 0.5
- 0.5
- 0
- 0
-
-
- 0
- False
- True
-
-
-
-
- 4
- True
- True
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
- <b>CASA Manager will continue to run as an icon in the system tray/notification area.</b>
- False
- True
- GTK_JUSTIFY_LEFT
- True
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 5
- False
- False
-
-
-
-
-
- True
- True
- Do not show this in the future
- True
- GTK_RELIEF_NORMAL
- True
- False
- False
- True
-
-
- 4
- False
- False
-
-
-
-
- 0
- True
- True
-
-
-
-
- 0
- True
- True
-
-
-
-
-
-
-
- True
- Workstation Password
- GTK_WINDOW_TOPLEVEL
- GTK_WIN_POS_CENTER_ALWAYS
- True
- False
- True
- CASAicons.ico
- True
- False
- False
- GDK_WINDOW_TYPE_HINT_DIALOG
- GDK_GRAVITY_NORTH_WEST
- True
- False
- True
-
-
-
- True
- False
- 0
-
-
-
- True
- GTK_BUTTONBOX_END
-
-
-
- True
- True
- True
- gtk-help
- True
- GTK_RELIEF_NONE
- True
- -11
-
-
-
-
-
-
- True
- True
- True
- gtk-close
- True
- GTK_RELIEF_NORMAL
- True
- -7
-
-
-
-
-
-
- True
- True
- True
- gtk-ok
- True
- GTK_RELIEF_NORMAL
- True
- -5
-
-
-
-
-
- 0
- False
- True
- GTK_PACK_END
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
- False
- 0
-
-
-
- True
- False
- 0
-
-
-
- True
- gtk-dialog-authentication
- 6
- 0.5
- 0.5
- 0
- 0
-
-
- 4
- False
- True
-
-
-
-
- 4
- True
- True
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
- <b>Enter Workstation Password</b>
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 4
- False
- False
-
-
-
-
-
- True
- CASA encypts your credentials and writes them in your home directory. To retrieve them, please enter your workstation / desktop password.
- False
- False
- GTK_JUSTIFY_LEFT
- True
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 4
- False
- False
-
-
-
-
- 0
- True
- True
-
-
-
-
- 0
- True
- True
-
-
-
-
-
- True
-
- True
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0.5
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- False
- False
-
-
-
-
-
- 6
- True
- 0
- 0.5
- GTK_SHADOW_IN
-
-
-
- True
- 0.5
- 0.5
- 1
- 1
- 0
- 0
- 12
- 0
-
-
-
- 6
- True
- 2
- 2
- False
- 6
- 6
-
-
-
- True
- Workstation Password :
- False
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 1
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 0
- 1
- fill
-
-
-
-
-
-
- True
- Re-enter Password :
- False
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 1
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 1
- 2
- fill
-
-
-
-
-
-
- True
- True
- True
- False
- 512
-
- True
- *
- False
-
-
-
- 1
- 2
- 0
- 1
-
-
-
-
-
-
- True
- True
- True
- False
- 512
-
- True
- *
- False
-
-
-
- 1
- 2
- 1
- 2
-
-
-
-
-
-
-
-
-
- 0
- True
- True
-
-
-
-
- 0
- True
- True
-
-
-
-
-
-
-
- 4
- True
- KDE Wallet - New Secret
- GTK_WINDOW_TOPLEVEL
- GTK_WIN_POS_CENTER_ON_PARENT
- True
- False
- True
- CASAicons.ico
- True
- False
- False
- GDK_WINDOW_TYPE_HINT_DIALOG
- GDK_GRAVITY_NORTH_WEST
- True
- False
- True
-
-
-
- True
- False
- 0
-
-
-
- True
- GTK_BUTTONBOX_END
-
-
-
- True
- True
- True
- gtk-help
- True
- GTK_RELIEF_NONE
- True
- -11
-
-
-
-
-
-
- True
- True
- True
- gtk-cancel
- True
- GTK_RELIEF_NORMAL
- True
- -6
-
-
-
-
-
-
- True
- True
- True
- gtk-ok
- True
- GTK_RELIEF_NORMAL
- True
- -5
-
-
-
-
-
- 0
- False
- True
- GTK_PACK_END
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
- False
- 0
-
-
-
- True
- False
- 0
-
-
-
- True
- gtk-new
- 5
- 0.5
- 0.5
- 0
- 0
-
-
- 6
- False
- True
-
-
-
-
- 4
- False
- True
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
- <b>Adding Sign-On information for Konquerer</b>
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 5
- False
- False
-
-
-
-
-
- True
- Enter the URL of the website for which you wish to enable Single Sign-On in Konquerer web browser. Further, enter the username and password entries for that site in the corresponding textboxes.
- False
- True
- GTK_JUSTIFY_LEFT
- True
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 4
- False
- False
-
-
-
-
- 12
- True
- True
-
-
-
-
- 0
- False
- True
-
-
-
-
-
- True
- 1
- 2
- False
- 4
- 4
-
-
-
- True
- 0
- 1
- GTK_SHADOW_IN
-
-
-
- True
- 0.5
- 0.5
- 1
- 1
- 6
- 6
- 6
- 6
-
-
-
- True
- 8
- 2
- False
- 4
- 4
-
-
-
- True
- Enter the form-element name of the password input textbox.
- True
- True
- True
- 512
-
- True
- *
- False
-
-
- 0
- 1
- 7
- 8
-
-
-
-
-
-
- True
- <b>Password</b>
-Key:
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 6
- 7
- fill
-
-
-
-
-
-
- True
- Enter the form-element name of the username input textbox.
- True
- True
- True
- 512
-
- True
- *
- False
-
-
- 0
- 1
- 5
- 6
-
-
-
-
-
-
- True
- <b>Username</b>
-Key:
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 4
- 5
- fill
-
-
-
-
-
-
- True
- Enter your password here.
- True
- True
- False
- 512
-
- True
- *
- False
-
-
- 1
- 2
- 7
- 8
-
-
-
-
-
-
- True
- <b></b>
-Value:
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 1
- 2
- 6
- 7
- fill
-
-
-
-
-
-
- True
- Enter your username here.
- True
- True
- True
- 512
-
- True
- *
- False
-
-
- 1
- 2
- 5
- 6
-
-
-
-
-
-
- True
- <b></b>
-Value:
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 1
- 2
- 4
- 5
- fill
-
-
-
-
-
-
- True
- Enter the URL of the website here.
- True
- True
- True
- True
- True
- True
- 512
-
- True
- *
- False
-
-
- 0
- 2
- 3
- 4
-
-
-
-
-
-
- True
- <b>URL:</b>
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 2
- 2
- 3
- fill
-
-
-
-
-
-
- True
- <b>Templates:</b>
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 2
- 0
- 1
- fill
-
-
-
-
-
-
- True
- False
- True
- False
- True
- False
-
-
-
- True
- True
- False
- True
- 512
-
- True
- *
- False
-
-
-
-
-
-
- True
- GTK_SELECTION_BROWSE
-
-
-
-
- 0
- 2
- 1
- 2
- fill
-
-
-
-
-
-
-
-
-
- True
-
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0.5
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- label_item
-
-
-
-
- 0
- 2
- 0
- 1
- fill
-
-
-
-
- 6
- True
- True
-
-
-
-
- 0
- True
- True
-
-
-
-
-
-
-
- 4
- True
- KDE Wallet - New Secret
- GTK_WINDOW_TOPLEVEL
- GTK_WIN_POS_CENTER_ON_PARENT
- True
- False
- True
- CASAicons.ico
- True
- False
- False
- GDK_WINDOW_TYPE_HINT_DIALOG
- GDK_GRAVITY_NORTH_WEST
- True
- False
- True
-
-
-
- True
- False
- 0
-
-
-
- True
- GTK_BUTTONBOX_END
-
-
-
- True
- True
- True
- gtk-help
- True
- GTK_RELIEF_NONE
- True
- -11
-
-
-
-
-
-
- True
- True
- True
- gtk-cancel
- True
- GTK_RELIEF_NORMAL
- True
- -6
-
-
-
-
-
-
- True
- True
- True
- gtk-ok
- True
- GTK_RELIEF_NORMAL
- True
- -5
-
-
-
-
-
- 0
- False
- True
- GTK_PACK_END
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
- False
- 0
-
-
-
- True
- False
- 0
-
-
-
- True
- gtk-new
- 5
- 0.5
- 0.5
- 0
- 0
-
-
- 6
- False
- True
-
-
-
-
- 4
- False
- True
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
- <b>Adding Sign-On information for Kopete</b>
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 5
- False
- False
-
-
-
-
-
- True
- Enter the following account details for enabling Single Sign-On for Kopete instant messenger.
- False
- True
- GTK_JUSTIFY_LEFT
- True
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 4
- False
- False
-
-
-
-
- 12
- True
- True
-
-
-
-
- 0
- False
- True
-
-
-
-
-
- True
- 0
- 1
- GTK_SHADOW_IN
-
-
-
- True
- 0.5
- 0.5
- 1
- 1
- 6
- 6
- 6
- 6
-
-
-
- True
- 3
- 2
- False
- 4
- 4
-
-
-
- True
- Enter your username/screen name here.
- True
- True
- True
- 512
-
- True
- *
- False
-
-
- 1
- 2
- 1
- 2
-
-
-
-
-
-
- True
- <b>Username:</b>
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 1
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 1
- 2
-
-
-
-
-
-
- True
- <b>Protocol:</b>
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 1
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 0
- 1
- fill
-
-
-
-
-
-
- True
- <b>Password:</b>
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 1
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 2
- 3
- fill
-
-
-
-
-
-
- True
- Enter your password here.
- True
- True
- False
- 512
-
- True
- *
- False
-
-
- 1
- 2
- 2
- 3
-
-
-
-
-
-
- True
- False
- True
- False
- True
- False
-
-
-
- True
- True
- True
- True
- 512
-
- True
- *
- False
-
-
-
-
-
- True
- GTK_SELECTION_BROWSE
-
-
-
-
- 1
- 2
- 0
- 1
- fill
-
-
-
-
-
-
-
-
-
- True
-
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0.5
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- label_item
-
-
-
-
- 6
- True
- True
-
-
-
-
- 0
- True
- True
-
-
-
-
-
-
-
- 4
- True
- GNOME Keyring - New Secret
- GTK_WINDOW_TOPLEVEL
- GTK_WIN_POS_CENTER_ON_PARENT
- True
- False
- True
- CASAicons.ico
- True
- False
- False
- GDK_WINDOW_TYPE_HINT_DIALOG
- GDK_GRAVITY_NORTH_WEST
- True
- False
- True
-
-
-
- True
- False
- 0
-
-
-
- True
- GTK_BUTTONBOX_END
-
-
-
- True
- True
- True
- gtk-help
- True
- GTK_RELIEF_NONE
- True
- -11
-
-
-
-
-
-
- True
- True
- True
- gtk-cancel
- True
- GTK_RELIEF_NORMAL
- True
- -6
-
-
-
-
-
-
- True
- True
- True
- gtk-ok
- True
- GTK_RELIEF_NORMAL
- True
- -5
-
-
-
-
-
- 0
- False
- True
- GTK_PACK_END
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
- False
- 0
-
-
-
- True
- False
- 0
-
-
-
- True
- gtk-new
- 5
- 0.5
- 0.5
- 0
- 0
-
-
- 6
- False
- True
-
-
-
-
- 4
- False
- True
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
- <b>Adding Sign-On information for Network Manager</b>
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 5
- False
- False
-
-
-
-
-
- True
- Enter the following details to enable Single Sign-On for NetworkManager and Nautilus network browser.
- False
- True
- GTK_JUSTIFY_LEFT
- True
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 4
- False
- False
-
-
-
-
- 12
- True
- True
-
-
-
-
- 0
- False
- True
-
-
-
-
-
- True
- 0
- 1
- GTK_SHADOW_IN
-
-
-
- True
- 0.5
- 0.5
- 1
- 1
- 6
- 6
- 6
- 6
-
-
-
- True
- 5
- 2
- False
- 4
- 4
-
-
-
- True
- True
- False
- False
- True
- True
-
-
-
- True
- True
- False
- True
- 512
-
- True
- *
- False
-
-
-
-
-
-
- True
- GTK_SELECTION_BROWSE
-
-
-
- True
- True
-
-
-
-
-
-
-
- 1
- 2
- 0
- 1
- fill
- fill
-
-
-
-
-
- True
- <b>Server _type:</b>
- True
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 1
- 0.5
- 0
- 0
- entry32
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 0
- 1
-
-
-
-
-
-
- True
- <b>_Server:</b>
- True
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 1
- 0.5
- 0
- 0
- entryNetworkManagerUsername
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 1
- 2
- fill
-
-
-
-
-
-
- True
- <b>_Username:</b>
- True
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 1
- 0.5
- 0
- 0
- entryNetworkManagerUsername
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 2
- 3
- fill
-
-
-
-
-
-
- True
- <b>_Password:</b>
- True
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 1
- 0.5
- 0
- 0
- entryNetworkManagerPassword
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 3
- 4
- fill
-
-
-
-
-
-
- True
- Enter the hostname/IP address of the server.
- True
- True
- True
- 512
-
- True
- *
- False
-
-
- 1
- 2
- 1
- 2
-
-
-
-
-
-
- True
- Enter your username here.
- True
- True
- True
- 512
-
- True
- *
- False
-
-
- 1
- 2
- 2
- 3
-
-
-
-
-
-
- True
- Enter your password here.
- True
- True
- False
- 512
-
- True
- *
- False
-
-
- 1
- 2
- 3
- 4
-
-
-
-
-
-
- 4
- True
- True
- False
- 4
-
-
-
- True
- 5
- 2
- False
- 4
- 4
-
-
-
- True
- True
- True
- True
- 512
-
- True
- *
- False
-
-
- 1
- 2
- 4
- 5
-
-
-
-
-
-
- True
- Enter the Windows share name here.
- True
- True
- True
- 512
-
- True
- *
- False
-
-
- 1
- 2
- 3
- 4
-
-
-
-
-
-
- True
- Enter the port number. This is an optional information.
- True
- True
- True
- 512
-
- True
- *
- False
-
-
- 1
- 2
- 2
- 3
-
-
-
-
-
-
- Enter your folder name or the path.
- True
- True
- True
- 512
-
- True
- *
- False
-
-
- 1
- 2
- 1
- 2
-
-
-
-
-
-
- True
- <b>_Domain name:</b>
- True
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 1
- 0.5
- 0
- 0
- entryNetworkManagerDomain
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 4
- 5
-
-
-
-
-
-
- True
- <b>S_hare:</b>
- True
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 1
- 0.5
- 0
- 0
- entryNetworkManagerShare
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 3
- 4
-
-
-
-
-
-
- True
- <b>_Port:</b>
- True
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 1
- 0.5
- 0
- 0
- entryNetworkManagerPort
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 2
- 3
-
-
-
-
-
-
- <b>_Folder:</b>
- True
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 1
- 0.5
- 0
- 0
- entryNetworkManagerFolder
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 1
- 2
-
-
-
-
-
-
- Enter a name for this connection.
- True
- True
- True
- 512
-
- True
- *
- False
-
-
- 1
- 2
- 0
- 1
-
-
-
-
-
-
- <b>Connection _name:</b>
- True
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 1
- 0.5
- 0
- 0
- entryNetworkManagerCName
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 0
- 1
- fill
-
-
-
-
-
-
-
-
- True
- <b>_Optional information</b>
- True
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0.5
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- label_item
-
-
-
-
- 0
- 2
- 4
- 5
- fill
-
-
-
-
-
-
-
-
-
- True
-
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0.5
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- label_item
-
-
-
-
- 6
- True
- True
-
-
-
-
- 0
- True
- True
-
-
-
-
-
-
-
- 4
- True
- GNOME Keyring - New Secret
- GTK_WINDOW_TOPLEVEL
- GTK_WIN_POS_CENTER_ON_PARENT
- True
- False
- True
- CASAicons.ico
- True
- False
- False
- GDK_WINDOW_TYPE_HINT_DIALOG
- GDK_GRAVITY_NORTH_WEST
- True
- False
- True
-
-
-
- True
- False
- 0
-
-
-
- True
- GTK_BUTTONBOX_END
-
-
-
- True
- True
- True
- gtk-help
- True
- GTK_RELIEF_NONE
- True
- -11
-
-
-
-
-
-
- True
- True
- True
- gtk-cancel
- True
- GTK_RELIEF_NORMAL
- True
- -6
-
-
-
-
-
-
- True
- True
- True
- gtk-ok
- True
- GTK_RELIEF_NORMAL
- True
- -5
-
-
-
-
-
- 0
- False
- True
- GTK_PACK_END
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
- False
- 0
-
-
-
- True
- False
- 0
-
-
-
- True
- gtk-new
- 5
- 0.5
- 0.5
- 0
- 0
-
-
- 6
- False
- True
-
-
-
-
- 4
- False
- True
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
- <b>Adding Sign-On information for Gaim</b>
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 5
- False
- False
-
-
-
-
-
- True
- Enter the following account details for enabling Single Sign-On for Gaim instant messenger.
- False
- True
- GTK_JUSTIFY_LEFT
- True
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 4
- False
- False
-
-
-
-
- 12
- True
- True
-
-
-
-
- 0
- False
- True
-
-
-
-
-
- True
- 0
- 1
- GTK_SHADOW_IN
-
-
-
- True
- 0.5
- 0.5
- 1
- 1
- 6
- 6
- 6
- 6
-
-
-
- True
- 3
- 2
- False
- 4
- 4
-
-
-
- True
- Enter your username/screen name here.
- True
- True
- True
- 512
-
- True
- *
- False
-
-
- 1
- 2
- 1
- 2
-
-
-
-
-
-
- True
- <b>Username:</b>
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 1
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 1
- 2
-
-
-
-
-
-
- True
- <b>Protocol:</b>
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 1
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 0
- 1
- fill
-
-
-
-
-
-
- True
- <b>Password:</b>
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 1
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 2
- 3
- fill
-
-
-
-
-
-
- True
- Enter your password here.
- True
- True
- False
- 512
-
- True
- *
- False
-
-
- 1
- 2
- 2
- 3
-
-
-
-
-
-
- True
- False
- True
- False
- True
- False
-
-
-
- True
- True
- True
- True
- 512
-
- True
- *
- False
-
-
-
-
-
- True
- GTK_SELECTION_BROWSE
-
-
-
-
- 1
- 2
- 0
- 1
- fill
-
-
-
-
-
-
-
-
-
- True
-
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0.5
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- label_item
-
-
-
-
- 6
- True
- True
-
-
-
-
- 0
- True
- True
-
-
-
-
-
-
-
- 4
- True
- KDE Wallet - New Secret
- GTK_WINDOW_TOPLEVEL
- GTK_WIN_POS_CENTER_ON_PARENT
- True
- False
- True
- CASAicons.ico
- True
- False
- False
- GDK_WINDOW_TYPE_HINT_DIALOG
- GDK_GRAVITY_NORTH_WEST
- True
- False
- True
-
-
-
- True
- False
- 0
-
-
-
- True
- GTK_BUTTONBOX_END
-
-
-
- True
- True
- True
- gtk-help
- True
- GTK_RELIEF_NONE
- True
- -11
-
-
-
-
-
-
- True
- True
- True
- gtk-cancel
- True
- GTK_RELIEF_NORMAL
- True
- -6
-
-
-
-
-
-
- True
- True
- True
- gtk-ok
- True
- GTK_RELIEF_NORMAL
- True
- -5
-
-
-
-
-
- 0
- False
- True
- GTK_PACK_END
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
- False
- 0
-
-
-
- True
- False
- 0
-
-
-
- True
- gtk-new
- 5
- 0.5
- 0.5
- 0
- 0
-
-
- 6
- False
- True
-
-
-
-
- 4
- False
- True
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
- <b>Adding Sign-On information for Firefox</b>
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 5
- False
- False
-
-
-
-
-
- True
- Enter the URL of the website for which you wish to enable Single Sign-On in Firefox web browser. Further, enter the username and password entries for that site in the corresponding textboxes.
- False
- True
- GTK_JUSTIFY_LEFT
- True
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 4
- False
- False
-
-
-
-
- 12
- True
- True
-
-
-
-
- 0
- False
- True
-
-
-
-
-
- True
- 1
- 2
- False
- 4
- 4
-
-
-
- True
- 0
- 1
- GTK_SHADOW_IN
-
-
-
- True
- 0.5
- 0.5
- 1
- 1
- 6
- 6
- 6
- 6
-
-
-
- True
- 8
- 2
- False
- 4
- 4
-
-
-
- True
- Enter the form-element name of the password input textbox.
- True
- True
- True
- 512
-
- True
- *
- False
-
-
- 0
- 1
- 7
- 8
-
-
-
-
-
-
- True
- <b>Password</b>
-Key:
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 6
- 7
- fill
-
-
-
-
-
-
- True
- Enter the form-element name of the username input textbox.
- True
- True
- True
- 512
-
- True
- *
- False
-
-
- 0
- 1
- 5
- 6
-
-
-
-
-
-
- True
- <b>Username</b>
-Key:
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 4
- 5
- fill
-
-
-
-
-
-
- True
- Enter your password here.
- True
- True
- False
- 512
-
- True
- *
- False
-
-
- 1
- 2
- 7
- 8
-
-
-
-
-
-
- True
- <b></b>
-Value:
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 1
- 2
- 6
- 7
- fill
-
-
-
-
-
-
- True
- Enter your username here.
- True
- True
- True
- 512
-
- True
- *
- False
-
-
- 1
- 2
- 5
- 6
-
-
-
-
-
-
- True
- <b></b>
-Value:
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 1
- 2
- 4
- 5
- fill
-
-
-
-
-
-
- True
- Enter the URL of the website here.
- True
- True
- True
- True
- True
- True
- 512
-
- True
- *
- False
-
-
- 0
- 2
- 3
- 4
-
-
-
-
-
-
- True
- <b>URL:</b>
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 2
- 2
- 3
- fill
-
-
-
-
-
-
- True
- <b>Templates:</b>
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 2
- 0
- 1
- fill
-
-
-
-
-
-
- True
- False
- True
- False
- True
- False
-
-
-
- True
- True
- False
- True
- 512
-
- True
- *
- False
-
-
-
-
-
-
- True
- GTK_SELECTION_BROWSE
-
-
-
-
- 0
- 2
- 1
- 2
- fill
-
-
-
-
-
-
-
-
-
- True
-
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0.5
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- label_item
-
-
-
-
- 0
- 2
- 0
- 1
- fill
-
-
-
-
- 6
- True
- True
-
-
-
-
- 0
- True
- True
-
-
-
-
-
-
-
- True
- Firefox - Master Password
- GTK_WINDOW_TOPLEVEL
- GTK_WIN_POS_CENTER_ON_PARENT
- True
- False
- True
- CASAicons.ico
- True
- False
- False
- GDK_WINDOW_TYPE_HINT_DIALOG
- GDK_GRAVITY_NORTH_WEST
- True
- False
- True
-
-
-
- True
- False
- 0
-
-
-
- True
- GTK_BUTTONBOX_END
-
-
-
- True
- True
- True
- gtk-help
- True
- GTK_RELIEF_NONE
- True
- -11
-
-
-
-
-
-
- True
- True
- True
- gtk-close
- True
- GTK_RELIEF_NORMAL
- True
- -7
-
-
-
-
-
-
- True
- True
- True
- gtk-ok
- True
- GTK_RELIEF_NORMAL
- True
- -5
-
-
-
-
-
- 0
- False
- True
- GTK_PACK_END
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
- False
- 0
-
-
-
- True
- False
- 0
-
-
-
- True
- gtk-dialog-authentication
- 6
- 0.5
- 0.5
- 0
- 0
-
-
- 6
- False
- True
-
-
-
-
- 4
- True
- True
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
- <b>Master Password authentication</b>
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 5
- False
- False
-
-
-
-
-
- True
- The Firefox password manager is locked with
-a master password. Please enter the master
-password to view the secrets.
- False
- False
- GTK_JUSTIFY_LEFT
- True
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 4
- False
- False
-
-
-
-
- 0
- True
- True
-
-
-
-
- 0
- True
- True
-
-
-
-
-
- 6
- True
- 0
- 0.5
- GTK_SHADOW_IN
-
-
-
- True
- 0.5
- 0.5
- 1
- 1
- 0
- 0
- 12
- 0
-
-
-
- 6
- True
- 1
- 2
- False
- 6
- 6
-
-
-
- True
- Master Password :
- False
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 1
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 0
- 1
- fill
-
-
-
-
-
-
- True
- True
- True
- False
- 512
-
- True
- *
- False
-
-
-
- 1
- 2
- 0
- 1
-
-
-
-
-
-
-
-
-
- 0
- True
- True
-
-
-
-
- 0
- True
- True
-
-
-
-
-
-
-
- 4
- True
- Warning
- GTK_WINDOW_TOPLEVEL
- GTK_WIN_POS_CENTER_ON_PARENT
- True
- False
- True
- CASAicons.ico
- True
- False
- False
- GDK_WINDOW_TYPE_HINT_DIALOG
- GDK_GRAVITY_NORTH_WEST
- True
- False
- True
-
-
-
- True
- False
- 0
-
-
-
- True
- GTK_BUTTONBOX_END
-
-
-
- True
- True
- True
- gtk-close
- True
- GTK_RELIEF_NORMAL
- True
- -7
-
-
-
-
-
- 0
- False
- True
- GTK_PACK_END
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
- False
- 0
-
-
-
- True
- gtk-dialog-warning
- 6
- 0.5
- 0.5
- 0
- 0
-
-
- 0
- False
- True
-
-
-
-
- 4
- True
- True
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
- <b>The Secret ID and Key names may only contain
-the following characters
-0-9, a-z, A-Z, and any of ~!@#$%^()_+-[]{};",./?</b>
- False
- True
- GTK_JUSTIFY_LEFT
- True
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 5
- False
- False
-
-
-
-
-
- True
- Avoid using these special characters for Secret ID and Key names * : ' \ & = < >
- False
- False
- GTK_JUSTIFY_LEFT
- True
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 4
- False
- False
-
-
-
-
- 0
- True
- True
-
-
-
-
- 0
- False
- True
-
-
-
-
-
-
-
- True
- Warning
- GTK_WINDOW_TOPLEVEL
- GTK_WIN_POS_CENTER_ON_PARENT
- True
- False
- True
- CASAicons.ico
- True
- False
- False
- GDK_WINDOW_TYPE_HINT_DIALOG
- GDK_GRAVITY_NORTH_WEST
- True
- False
- True
-
-
-
- True
- False
- 0
-
-
-
- True
- GTK_BUTTONBOX_END
-
-
-
- True
- True
- True
- True
- True
- GTK_RELIEF_NORMAL
- True
- -3
-
-
-
-
- True
- 0.5
- 0.5
- 0
- 0
- 0
- 0
- 0
- 0
-
-
-
- True
- False
- 2
-
-
-
- True
- gtk-delete
- 4
- 0.5
- 0.5
- 0
- 0
-
-
- 0
- False
- False
-
-
-
-
-
- True
- _Delete
- True
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0.5
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- False
- False
-
-
-
-
-
-
-
-
-
-
-
- True
- True
- True
- True
- True
- GTK_RELIEF_NORMAL
- True
- -7
-
-
-
-
- True
- 0.5
- 0.5
- 0
- 0
- 0
- 0
- 0
- 0
-
-
-
- True
- False
- 2
-
-
-
- True
- gtk-redo
- 4
- 0.5
- 0.5
- 0
- 0
-
-
- 0
- False
- False
-
-
-
-
-
- True
- _Retry
- True
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0.5
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- False
- False
-
-
-
-
-
-
-
-
-
-
- 0
- False
- True
- GTK_PACK_END
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
- False
- 0
-
-
-
- True
- gtk-dialog-warning
- 6
- 0.5
- 0.5
- 0
- 0
-
-
- 0
- False
- True
-
-
-
-
- 4
- True
- True
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
- <b>The password you entered does not match.</b>
- False
- True
- GTK_JUSTIFY_LEFT
- True
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 5
- False
- False
-
-
-
-
-
- True
- The password you entered does not match the one encrypting your secrets. You can retry entering your workstation password to recover your secrets, or you can delete them.
- False
- False
- GTK_JUSTIFY_LEFT
- True
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 4
- False
- False
-
-
-
-
- 0
- True
- True
-
-
-
-
- 0
- True
- True
-
-
-
-
-
-
-
- True
- CASA - Export Secrets
- GTK_WINDOW_TOPLEVEL
- GTK_WIN_POS_CENTER_ALWAYS
- True
- False
- True
- CASAicons.ico
- True
- False
- False
- GDK_WINDOW_TYPE_HINT_DIALOG
- GDK_GRAVITY_NORTH_WEST
- True
- False
- True
-
-
-
- True
- False
- 0
-
-
-
- True
- GTK_BUTTONBOX_END
-
-
-
- True
- True
- True
- gtk-help
- True
- GTK_RELIEF_NONE
- True
- -11
-
-
-
-
-
- True
- True
- True
- gtk-close
- True
- GTK_RELIEF_NORMAL
- True
- -7
-
-
-
-
-
-
- True
- True
- True
- gtk-ok
- True
- GTK_RELIEF_NORMAL
- True
- -5
-
-
-
-
-
- 0
- False
- True
- GTK_PACK_END
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
- False
- 0
-
-
-
- True
- False
- 0
-
-
-
- True
- gtk-dialog-authentication
- 6
- 0.5
- 0.5
- 0
- 0
-
-
- 4
- False
- True
-
-
-
-
- 4
- True
- True
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
- <b>Export miCASA Secrets</b>
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 4
- False
- False
-
-
-
-
-
- True
- Your Master Password is required to
-export your secrets. Your secrets will
-be encrypted using your Master Password.
-
-If you wish, you can export your secrets
-in clear text.
- False
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 4
- False
- False
-
-
-
-
- 0
- True
- True
-
-
-
-
- 0
- True
- True
-
-
-
-
-
- 6
- True
- 0
- 0.5
- GTK_SHADOW_IN
-
-
-
- True
- 0.5
- 0.5
- 1
- 1
- 0
- 0
- 12
- 0
-
-
-
- 6
- True
- 3
- 2
- False
- 6
- 6
-
-
-
- True
- Master Password :
- False
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 1
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 0
- 1
- fill
-
-
-
-
-
-
- True
- True
- True
- False
- 512
-
- True
- *
- False
-
-
- 1
- 2
- 0
- 1
-
-
-
-
-
-
- True
- True
- Do not encrypt export file
- True
- GTK_RELIEF_NORMAL
- True
- False
- False
- True
-
-
- 1
- 2
- 1
- 2
- fill
-
-
-
-
-
-
-
-
-
- 0
- True
- True
-
-
-
-
- 0
- True
- True
-
-
-
-
-
-
-
- True
- CASA - Import Secrets
- GTK_WINDOW_TOPLEVEL
- GTK_WIN_POS_CENTER_ALWAYS
- True
- False
- True
- CASAicons.ico
- True
- False
- False
- GDK_WINDOW_TYPE_HINT_DIALOG
- GDK_GRAVITY_NORTH_WEST
- True
- False
- True
-
-
-
- True
- False
- 0
-
-
-
- True
- GTK_BUTTONBOX_END
-
-
-
- True
- True
- True
- gtk-help
- True
- GTK_RELIEF_NONE
- True
- -11
-
-
-
-
-
- True
- True
- True
- gtk-close
- True
- GTK_RELIEF_NORMAL
- True
- -7
-
-
-
-
-
-
- True
- True
- True
- gtk-ok
- True
- GTK_RELIEF_NORMAL
- True
- -5
-
-
-
-
-
- 0
- False
- True
- GTK_PACK_END
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
- False
- 0
-
-
-
- True
- False
- 0
-
-
-
- True
- gtk-dialog-authentication
- 6
- 0.5
- 0.5
- 0
- 0
-
-
- 4
- False
- True
-
-
-
-
- 4
- True
- True
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
- <b>Import miCASA Secrets</b>
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 4
- False
- False
-
-
-
-
-
- True
- The file you selected appears
-to be encypted. Please enter
-the Master Password used
-to encrypt this file
- False
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 4
- False
- False
-
-
-
-
- 0
- True
- True
-
-
-
-
- 0
- True
- True
-
-
-
-
-
- 6
- True
- 0
- 0.5
- GTK_SHADOW_IN
-
-
-
- True
- 0.5
- 0.5
- 1
- 1
- 0
- 0
- 12
- 0
-
-
-
- 6
- True
- 3
- 2
- False
- 6
- 6
-
-
-
- True
- Master Password :
- False
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 1
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 0
- 1
- fill
-
-
-
-
-
-
- True
- True
- True
- False
- 512
-
- True
- *
- False
-
-
- 1
- 2
- 0
- 1
-
-
-
-
-
-
-
-
-
- 0
- True
- True
-
-
-
-
- 0
- True
- True
-
-
-
-
-
-
-
- True
- Choose File
- GTK_WINDOW_TOPLEVEL
- GTK_WIN_POS_CENTER_ON_PARENT
- True
- 500
- 525
- True
- True
- CASAicons.ico
- True
- False
- False
- GDK_WINDOW_TYPE_HINT_DIALOG
- GDK_GRAVITY_NORTH_WEST
- True
- False
- True
-
-
-
-
- True
- False
- 0
-
-
-
- True
- GTK_BUTTONBOX_END
-
-
-
- True
- True
- True
- gtk-cancel
- True
- GTK_RELIEF_NORMAL
- True
- -6
-
-
-
-
-
-
- True
- True
- True
- gtk-ok
- True
- GTK_RELIEF_NORMAL
- True
- -5
-
-
-
-
-
- 0
- False
- True
- GTK_PACK_END
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
- False
- 0
-
-
-
- True
- Location:
- False
- False
- GTK_JUSTIFY_RIGHT
- False
- False
- 0.5
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 4
- False
- False
-
-
-
-
-
- 50
- True
- True
- GTK_POLICY_NEVER
- GTK_POLICY_AUTOMATIC
- GTK_SHADOW_IN
- GTK_CORNER_TOP_LEFT
-
-
-
- True
- True
- False
- False
- False
- True
- False
- False
- False
-
-
-
-
- 8
- True
- True
-
-
-
-
- 0
- True
- True
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
- False
- 0
-
-
-
- True
- True
- True
- True
- 0
-
- True
- *
- False
-
-
- 0
- True
- True
-
-
-
-
-
- True
- True
- GTK_RELIEF_NORMAL
- True
-
-
-
-
- True
- gtk-go-up
- 4
- 0.5
- 0.5
- 0
- 0
-
-
-
-
- 8
- False
- False
-
-
-
-
-
- True
- True
- New Folder
- True
- GTK_RELIEF_NORMAL
- True
-
-
-
- 0
- False
- False
-
-
-
-
- 0
- False
- False
-
-
-
-
-
- True
- True
- GTK_POLICY_NEVER
- GTK_POLICY_ALWAYS
- GTK_SHADOW_IN
- GTK_CORNER_TOP_LEFT
-
-
-
- True
- True
- True
- False
- False
- True
- False
- False
- False
-
-
-
-
- 6
- True
- True
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
- File name:
- False
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0.5
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 5
- False
- False
-
-
-
-
-
- True
- True
- True
- True
- 0
-
- True
- *
- False
-
-
- 5
- True
- True
-
-
-
-
- 0
- False
- True
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
- Filter:
- False
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0.5
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 5
- False
- False
-
-
-
-
-
- True
- True
- True
- True
- 0
- *.casa
- True
- *
- False
-
-
-
- 5
- True
- True
-
-
-
-
- 0
- False
- True
-
-
-
-
- 0
- True
- True
-
-
-
-
- 0
- True
- True
-
-
-
-
-
-
-
- True
- New Folder
- GTK_WINDOW_TOPLEVEL
- GTK_WIN_POS_CENTER_ON_PARENT
- True
- True
- False
- True
- False
- False
- GDK_WINDOW_TYPE_HINT_DIALOG
- GDK_GRAVITY_NORTH_WEST
- True
- False
- True
-
-
-
- True
- False
- 0
-
-
-
- True
- GTK_BUTTONBOX_END
-
-
-
- True
- True
- True
- gtk-cancel
- True
- GTK_RELIEF_NORMAL
- True
- -6
-
-
-
-
-
-
- True
- True
- True
- gtk-ok
- True
- GTK_RELIEF_NORMAL
- True
- -5
-
-
-
-
-
- 0
- False
- True
- GTK_PACK_END
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
- Enter folder name
- False
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0.5
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- False
- False
-
-
-
-
-
- True
- True
- True
- True
- 0
-
- True
- *
- False
-
-
- 0
- False
- False
-
-
-
-
- 0
- False
- False
-
-
-
-
-
-
-
-
-
- True
- CASA - Debug File chooser
- GTK_WINDOW_TOPLEVEL
- GTK_WIN_POS_CENTER_ON_PARENT
- True
- True
- True
- CASAicons.ico
- True
- False
- False
- GDK_WINDOW_TYPE_HINT_DIALOG
- GDK_GRAVITY_NORTH_WEST
- True
- False
- True
-
-
-
- True
- False
- 0
-
-
-
- True
- GTK_BUTTONBOX_END
-
-
-
- True
- True
- True
- gtk-help
- True
- GTK_RELIEF_NONE
- True
- -11
-
-
-
-
-
- True
- True
- True
- gtk-close
- True
- GTK_RELIEF_NORMAL
- True
- -7
-
-
-
-
-
- True
- True
- True
- gtk-ok
- True
- GTK_RELIEF_NORMAL
- True
- -5
-
-
-
-
- 0
- False
- True
- GTK_PACK_END
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
- False
- 0
-
-
-
- True
- False
- 0
-
-
-
- True
- gtk-dialog-authentication
- 6
- 0.5
- 0.5
- 0
- 0
-
-
- 4
- False
- True
-
-
-
-
- 4
- True
- True
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
- <b>Debug file Chooser</b>
- False
- True
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 4
- False
- False
-
-
-
-
-
- True
- This will be removed
- False
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 4
- False
- False
-
-
-
-
- 0
- True
- True
-
-
-
-
- 0
- True
- True
-
-
-
-
-
- 6
- True
- 0
- 0.5
- GTK_SHADOW_IN
-
-
-
- True
- 0.5
- 0.5
- 1
- 1
- 0
- 0
- 12
- 0
-
-
-
- True
- 3
- 3
- False
- 0
- 0
-
-
-
- True
- Save File
- False
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 0
- 1
- fill
-
-
-
-
-
-
- True
- Open File
- False
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 1
- 2
- fill
-
-
-
-
-
-
- True
- Choose Directory
- False
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- 1
- 2
- 3
- fill
-
-
-
-
-
-
- True
- True
- True
- True
- 0
-
- True
- *
- False
-
-
- 1
- 2
- 0
- 1
-
-
-
-
-
-
- True
- True
- True
- True
- 0
-
- True
- *
- False
-
-
- 1
- 2
- 1
- 2
-
-
-
-
-
-
- True
- True
- True
- True
- 0
-
- True
- *
- False
-
-
- 1
- 2
- 2
- 3
-
-
-
-
-
-
- True
- True
- Save As...
- True
- GTK_RELIEF_NORMAL
- True
-
-
-
- 2
- 3
- 0
- 1
- fill
-
-
-
-
-
-
- True
- True
- Open file
- True
- GTK_RELIEF_NORMAL
- True
-
-
-
- 2
- 3
- 1
- 2
- fill
-
-
-
-
-
-
- True
- True
- Choose Dir
- True
- GTK_RELIEF_NORMAL
- True
-
-
-
- 2
- 3
- 2
- 3
- fill
-
-
-
-
-
-
-
-
-
- 0
- True
- True
-
-
-
-
- 0
- True
- True
-
-
-
-
-
-
-
- True
- Edit Secret Policy
- GTK_WINDOW_TOPLEVEL
- GTK_WIN_POS_CENTER_ON_PARENT
- True
- 200
- 530
- True
- False
- True
- False
- False
- GDK_WINDOW_TYPE_HINT_DIALOG
- GDK_GRAVITY_NORTH_WEST
- True
- False
- True
-
-
-
- True
- False
- 0
-
-
-
- True
- GTK_BUTTONBOX_END
-
-
-
- True
- True
- True
- gtk-help
- True
- GTK_RELIEF_NORMAL
- True
- -11
-
-
-
-
-
- True
- True
- True
- gtk-apply
- True
- GTK_RELIEF_NORMAL
- True
- -10
-
-
-
-
-
-
- True
- True
- True
- gtk-cancel
- True
- GTK_RELIEF_NORMAL
- True
- -6
-
-
-
-
-
-
- True
- True
- True
- gtk-ok
- True
- GTK_RELIEF_NORMAL
- True
- -5
-
-
-
-
-
- 0
- False
- True
- GTK_PACK_END
-
-
-
-
-
- 64
- 64
- True
- True
- GTK_POLICY_AUTOMATIC
- GTK_POLICY_ALWAYS
- GTK_SHADOW_IN
- GTK_CORNER_TOP_LEFT
-
-
-
- True
- True
- True
- False
- False
- True
- False
- False
- False
-
-
-
-
- 0
- True
- True
-
-
-
-
-
-
-
- True
- Select non-persistent Secrets
- GTK_WINDOW_TOPLEVEL
- GTK_WIN_POS_CENTER_ON_PARENT
- True
- 250
- 500
- True
- False
- True
- False
- False
- GDK_WINDOW_TYPE_HINT_DIALOG
- GDK_GRAVITY_NORTH_WEST
- True
- False
- True
-
-
-
- True
- False
- 0
-
-
-
- True
- GTK_BUTTONBOX_END
-
-
-
- True
- True
- True
- gtk-help
- True
- GTK_RELIEF_NORMAL
- True
- -11
-
-
-
-
-
- True
- True
- True
- gtk-apply
- True
- GTK_RELIEF_NORMAL
- True
- -10
-
-
-
-
-
-
- True
- True
- True
- gtk-cancel
- True
- GTK_RELIEF_NORMAL
- True
- -6
-
-
-
-
-
-
- True
- True
- True
- gtk-ok
- True
- GTK_RELIEF_NORMAL
- True
- -5
-
-
-
-
-
- 0
- False
- True
- GTK_PACK_END
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
- True
- GTK_POLICY_ALWAYS
- GTK_POLICY_ALWAYS
- GTK_SHADOW_IN
- GTK_CORNER_TOP_LEFT
-
-
-
- True
- True
- True
- False
- False
- True
- False
- False
- False
-
-
-
-
- 0
- True
- True
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
-
-
-
-
-
-
-
- False
- False
- GTK_JUSTIFY_LEFT
- False
- False
- 0.5
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 0
- False
- False
-
-
-
-
-
- True
- True
- GTK_RELIEF_NORMAL
- True
-
-
-
-
- True
- gtk-go-forward
- 4
- 0.5
- 0.5
- 0
- 0
-
-
-
-
- 7
- False
- False
-
-
-
-
-
- True
- True
- GTK_RELIEF_NORMAL
- True
-
-
-
-
- True
- gtk-go-back
- 4
- 0.5
- 0.5
- 0
- 0
-
-
-
-
- 0
- False
- False
-
-
-
-
- 19
- False
- True
-
-
-
-
-
- True
- True
- GTK_POLICY_ALWAYS
- GTK_POLICY_ALWAYS
- GTK_SHADOW_IN
- GTK_CORNER_TOP_LEFT
-
-
-
- True
- True
- True
- False
- False
- True
- False
- False
- False
-
-
-
-
- 0
- True
- True
-
-
-
-
- 0
- True
- True
-
-
-
-
-
-
-
- 4
- True
- Warning - Invalid Secret
- GTK_WINDOW_TOPLEVEL
- GTK_WIN_POS_CENTER_ON_PARENT
- True
- False
- True
- CASAicons.ico
- True
- False
- False
- GDK_WINDOW_TYPE_HINT_DIALOG
- GDK_GRAVITY_NORTH_WEST
- True
- False
- True
-
-
-
- True
- False
- 0
-
-
-
- True
- GTK_BUTTONBOX_END
-
-
-
- True
- True
- True
- gtk-close
- True
- GTK_RELIEF_NORMAL
- True
- -7
-
-
-
-
-
- 0
- False
- True
- GTK_PACK_END
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
- False
- 0
-
-
-
- True
- gtk-dialog-warning
- 6
- 0.5
- 0.5
- 0
- 0
-
-
- 0
- False
- True
-
-
-
-
- 4
- True
- True
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
- <b>A Firefox Password Manager secret should have two key-value pairs.</b>
- False
- True
- GTK_JUSTIFY_LEFT
- True
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 5
- False
- False
-
-
-
-
-
- True
- Add two key-value pairs with one of them flagged as password by enabling the corresponding checkbox.
- False
- False
- GTK_JUSTIFY_LEFT
- True
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 4
- False
- False
-
-
-
-
- 0
- True
- True
-
-
-
-
- 0
- False
- True
-
-
-
-
-
-
-
- 4
- True
- Warning - Identical Secret
- GTK_WINDOW_TOPLEVEL
- GTK_WIN_POS_CENTER_ON_PARENT
- True
- False
- True
- CASAicons.ico
- True
- False
- False
- GDK_WINDOW_TYPE_HINT_DIALOG
- GDK_GRAVITY_NORTH_WEST
- True
- False
- True
-
-
-
- True
- False
- 0
-
-
-
- True
- GTK_BUTTONBOX_END
-
-
-
- True
- True
- True
- gtk-close
- True
- GTK_RELIEF_NORMAL
- True
- -7
-
-
-
-
-
- 0
- False
- True
- GTK_PACK_END
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
- False
- 0
-
-
-
- True
- gtk-dialog-warning
- 6
- 0.5
- 0.5
- 0
- 0
-
-
- 0
- False
- True
-
-
-
-
- 4
- True
- True
-
-
-
-
-
- True
- False
- 0
-
-
-
- True
- <b>An identical secret with similar username value
-already exists in the Firefox Password Manager.</b>
- False
- True
- GTK_JUSTIFY_LEFT
- True
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 5
- False
- False
-
-
-
-
-
- True
- Secrets with identical secret ID must have unique
-username values.
- False
- False
- GTK_JUSTIFY_LEFT
- True
- False
- 0
- 0.5
- 0
- 0
- PANGO_ELLIPSIZE_NONE
- -1
- False
- 0
-
-
- 4
- False
- False
-
-
-
-
- 0
- True
- True
-
-
-
-
- 0
- False
- True
-
-
-
-
-
-
-
+
+
+
+
+
+
+ Novell CASA Manager
+ GTK_WINDOW_TOPLEVEL
+ GTK_WIN_POS_CENTER
+ False
+ 250
+ 525
+ True
+ True
+ CASAicons.ico
+ True
+ False
+ False
+ GDK_WINDOW_TYPE_HINT_NORMAL
+ GDK_GRAVITY_NORTH_WEST
+ True
+ False
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ False
+ 0
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+ 0
+ False
+ False
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ casa-logo-left.png
+ 0.5
+ 0.5
+ 0
+ 0
+
+
+ 0
+ False
+ True
+
+
+
+
+
+ True
+
+
+ 0
+ True
+ True
+
+
+
+
+
+ True
+ casa-logo-right.png
+ 0.5
+ 0.5
+ 0
+ 0
+
+
+ 0
+ False
+ True
+
+
+
+
+ 0
+ False
+ True
+
+
+
+
+
+ 8
+ True
+ True
+ True
+ True
+ True
+ True
+ False
+ GTK_POS_TOP
+ True
+ False
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ 6
+ True
+ True
+ GTK_POLICY_AUTOMATIC
+ GTK_POLICY_AUTOMATIC
+ GTK_SHADOW_IN
+ GTK_CORNER_TOP_LEFT
+
+
+
+ True
+ True
+ True
+ True
+ True
+ True
+ True
+ False
+ True
+ False
+ False
+ False
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+
+ True
+ <b>:: Native Information ::</b>
+ False
+ True
+ GTK_JUSTIFY_CENTER
+ False
+ False
+ 0.5
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 0
+ False
+ False
+
+
+
+
+
+ 6
+ True
+ True
+ GTK_POLICY_AUTOMATIC
+ GTK_POLICY_AUTOMATIC
+ GTK_SHADOW_IN
+ GTK_CORNER_TOP_LEFT
+
+
+
+ True
+ True
+ False
+ True
+ False
+ True
+ False
+ False
+ False
+
+
+
+
+ 0
+ False
+ True
+
+
+
+
+ False
+ True
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ CASA_32.png
+ 0.5
+ 0.5
+ 0
+ 0
+
+
+ 0
+ False
+ True
+
+
+
+
+
+ True
+ <b>miCASA</b>
+ False
+ True
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0.5
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 6
+ False
+ False
+
+
+
+
+ tab
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ 6
+ True
+ True
+ GTK_POLICY_AUTOMATIC
+ GTK_POLICY_AUTOMATIC
+ GTK_SHADOW_IN
+ GTK_CORNER_TOP_LEFT
+
+
+
+ True
+ True
+ True
+ True
+ True
+ False
+ True
+ False
+ False
+ False
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+
+ True
+ <b>:: Native Information ::</b>
+ False
+ True
+ GTK_JUSTIFY_CENTER
+ False
+ False
+ 0.5
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 0
+ False
+ False
+
+
+
+
+
+ 6
+ True
+ True
+ GTK_POLICY_AUTOMATIC
+ GTK_POLICY_AUTOMATIC
+ GTK_SHADOW_IN
+ GTK_CORNER_TOP_LEFT
+
+
+
+ True
+ True
+ False
+ True
+ False
+ True
+ False
+ False
+ False
+
+
+
+
+ 0
+ False
+ True
+
+
+
+
+ False
+ True
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ firefox-logo.png
+ 0.5
+ 0.5
+ 0
+ 0
+
+
+ 0
+ False
+ True
+
+
+
+
+
+ True
+ <b>Firefox</b>
+ False
+ True
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0.5
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 6
+ False
+ False
+
+
+
+
+ tab
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ 6
+ True
+ True
+ GTK_POLICY_AUTOMATIC
+ GTK_POLICY_AUTOMATIC
+ GTK_SHADOW_IN
+ GTK_CORNER_TOP_LEFT
+
+
+
+ True
+ True
+ True
+ True
+ True
+ False
+ True
+ False
+ False
+ False
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+
+ True
+ <b>:: Native Information ::</b>
+ False
+ True
+ GTK_JUSTIFY_CENTER
+ False
+ False
+ 0.5
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 0
+ False
+ False
+
+
+
+
+
+ 6
+ True
+ True
+ GTK_POLICY_AUTOMATIC
+ GTK_POLICY_AUTOMATIC
+ GTK_SHADOW_IN
+ GTK_CORNER_TOP_LEFT
+
+
+
+ True
+ True
+ False
+ True
+ False
+ True
+ False
+ False
+ False
+
+
+
+
+ 0
+ False
+ True
+
+
+
+
+ False
+ True
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ mozilla-logo.png
+ 0.5
+ 0.5
+ 0
+ 0
+
+
+ 0
+ False
+ True
+
+
+
+
+
+ True
+ <b>Mozilla</b>
+ False
+ True
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0.5
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 6
+ False
+ False
+
+
+
+
+ tab
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ 6
+ True
+ True
+ GTK_POLICY_AUTOMATIC
+ GTK_POLICY_AUTOMATIC
+ GTK_SHADOW_IN
+ GTK_CORNER_TOP_LEFT
+
+
+
+ True
+ True
+ True
+ True
+ True
+ False
+ True
+ False
+ False
+ False
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+
+ True
+ <b>:: Native Information ::</b>
+ False
+ True
+ GTK_JUSTIFY_CENTER
+ False
+ False
+ 0.5
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 0
+ False
+ False
+
+
+
+
+
+ 6
+ True
+ True
+ GTK_POLICY_AUTOMATIC
+ GTK_POLICY_AUTOMATIC
+ GTK_SHADOW_IN
+ GTK_CORNER_TOP_LEFT
+
+
+
+ True
+ True
+ False
+ True
+ False
+ True
+ False
+ False
+ False
+
+
+
+
+ 0
+ False
+ True
+
+
+
+
+ False
+ True
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ kwallet-logo.png
+ 0.5
+ 0.5
+ 0
+ 0
+
+
+ 0
+ False
+ True
+
+
+
+
+
+ True
+ <b>KDE Wallet</b>
+ False
+ True
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0.5
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 6
+ False
+ False
+
+
+
+
+ tab
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ 6
+ True
+ True
+ GTK_POLICY_AUTOMATIC
+ GTK_POLICY_AUTOMATIC
+ GTK_SHADOW_IN
+ GTK_CORNER_TOP_LEFT
+
+
+
+ True
+ True
+ True
+ True
+ True
+ False
+ True
+ False
+ False
+ False
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+
+ True
+ <b>:: Native Information ::</b>
+ False
+ True
+ GTK_JUSTIFY_CENTER
+ False
+ False
+ 0.5
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 0
+ False
+ False
+
+
+
+
+
+ 6
+ True
+ True
+ GTK_POLICY_AUTOMATIC
+ GTK_POLICY_AUTOMATIC
+ GTK_SHADOW_IN
+ GTK_CORNER_TOP_LEFT
+
+
+
+ True
+ True
+ False
+ True
+ False
+ True
+ False
+ False
+ False
+
+
+
+
+ 0
+ False
+ True
+
+
+
+
+ False
+ True
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ keyring-logo.png
+ 0.5
+ 0.5
+ 0
+ 0
+
+
+ 0
+ False
+ True
+
+
+
+
+
+ True
+ <b>GNOME Keyring</b>
+ False
+ True
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0.5
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 6
+ False
+ False
+
+
+
+
+ tab
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+
+ True
+ True
+
+
+ 0
+ False
+ False
+ GTK_PACK_END
+
+
+
+
+
+
+
+ 4
+ True
+ Warning
+ GTK_WINDOW_TOPLEVEL
+ GTK_WIN_POS_CENTER_ON_PARENT
+ True
+ False
+ True
+ CASAicons.ico
+ True
+ False
+ False
+ GDK_WINDOW_TYPE_HINT_DIALOG
+ GDK_GRAVITY_NORTH_WEST
+ True
+ False
+ True
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ GTK_BUTTONBOX_END
+
+
+
+ True
+ True
+ True
+ gtk-help
+ True
+ GTK_RELIEF_NONE
+ True
+ -11
+
+
+
+
+
+
+ True
+ True
+ True
+ gtk-no
+ True
+ GTK_RELIEF_NORMAL
+ True
+ -9
+
+
+
+
+
+
+ True
+ True
+ True
+ True
+ True
+ gtk-yes
+ True
+ GTK_RELIEF_NORMAL
+ True
+ -8
+
+
+
+
+
+ 0
+ False
+ True
+ GTK_PACK_END
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ gtk-dialog-question
+ 6
+ 0.5
+ 0.5
+ 0
+ 0
+
+
+ 0
+ False
+ True
+
+
+
+
+ 4
+ True
+ True
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ <b>Are you sure you want to Refresh
+all the stores?</b>
+ False
+ True
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 5
+ False
+ False
+
+
+
+
+
+ True
+ Refreshing stores will fetch Secrets from
+their backend stores.
+ False
+ False
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 4
+ False
+ False
+
+
+
+
+
+ True
+ True
+ Do not show this in the future
+ True
+ GTK_RELIEF_NORMAL
+ True
+ False
+ False
+ True
+
+
+ 0
+ False
+ False
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+
+
+
+ 4
+ True
+ New Secret
+ GTK_WINDOW_TOPLEVEL
+ GTK_WIN_POS_CENTER_ON_PARENT
+ True
+ True
+ True
+ CASAicons.ico
+ True
+ False
+ False
+ GDK_WINDOW_TYPE_HINT_DIALOG
+ GDK_GRAVITY_NORTH_WEST
+ True
+ False
+ True
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ GTK_BUTTONBOX_END
+
+
+
+ True
+ True
+ True
+ gtk-help
+ True
+ GTK_RELIEF_NONE
+ True
+ -11
+
+
+
+
+
+
+ True
+ True
+ True
+ gtk-cancel
+ True
+ GTK_RELIEF_NORMAL
+ True
+ -6
+
+
+
+
+
+
+ True
+ True
+ True
+ gtk-ok
+ True
+ GTK_RELIEF_NORMAL
+ True
+ -5
+
+
+
+
+
+ 0
+ False
+ True
+ GTK_PACK_END
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ gtk-new
+ 5
+ 0.5
+ 0.5
+ 0
+ 0
+
+
+ 6
+ False
+ True
+
+
+
+
+ 4
+ False
+ True
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ <b>Add new Secrets or Key-Value pairs</b>
+ False
+ True
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 5
+ False
+ False
+
+
+
+
+
+ True
+ Enter the Key-value pairs and click Add button to add Key-Value pairs or click Delete button to remove newly added Key-Value pairs from the list.
+ False
+ True
+ GTK_JUSTIFY_LEFT
+ True
+ False
+ 0
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 4
+ False
+ False
+
+
+
+
+ 12
+ True
+ True
+
+
+
+
+ 0
+ False
+ True
+
+
+
+
+
+ True
+ 3
+ 2
+ False
+ 4
+ 4
+
+
+
+ True
+ 0
+ 1
+ GTK_SHADOW_IN
+
+
+
+ True
+ 0.5
+ 0.5
+ 1
+ 1
+ 6
+ 6
+ 6
+ 6
+
+
+
+ True
+ 5
+ 3
+ False
+ 4
+ 4
+
+
+
+ True
+ <b>Key:</b>
+ False
+ True
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 0
+ 1
+ 0
+ 1
+ fill
+
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ True
+ GTK_RELIEF_NORMAL
+ True
+
+
+
+
+ True
+ gtk-remove
+ 4
+ 0.5
+ 0.5
+ 0
+ 0
+
+
+
+
+ 0
+ False
+ False
+
+
+
+
+ 2
+ 3
+ 3
+ 4
+ fill
+ fill
+
+
+
+
+
+ True
+ True
+ GTK_POLICY_AUTOMATIC
+ GTK_POLICY_AUTOMATIC
+ GTK_SHADOW_IN
+ GTK_CORNER_TOP_LEFT
+
+
+
+ True
+ True
+ True
+ True
+ False
+ True
+ False
+ False
+ False
+
+
+
+
+ 0
+ 2
+ 3
+ 4
+
+
+
+
+
+ True
+ True
+ True
+ True
+ 512
+
+ True
+ *
+ False
+
+
+ 0
+ 1
+ 1
+ 2
+
+
+
+
+
+
+ True
+ True
+ True
+ True
+ 512
+
+ True
+ *
+ False
+
+
+ 1
+ 2
+ 1
+ 2
+
+
+
+
+
+
+ True
+ True
+ GTK_RELIEF_NORMAL
+ True
+
+
+
+
+ True
+ gtk-add
+ 4
+ 0.5
+ 0.5
+ 0
+ 0
+
+
+
+
+ 2
+ 3
+ 1
+ 2
+ fill
+
+
+
+
+
+
+ True
+ <b>Key-Value pairs:</b>
+ False
+ True
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 0
+ 3
+ 2
+ 3
+ fill
+
+
+
+
+
+
+ True
+ <b>Value:</b>
+ False
+ True
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 1
+ 3
+ 0
+ 1
+ fill
+
+
+
+
+
+
+ True
+ True
+ Show Values in clear text.
+ True
+ GTK_RELIEF_NORMAL
+ True
+ False
+ False
+ True
+
+
+
+ 0
+ 3
+ 4
+ 5
+ fill
+
+
+
+
+
+
+
+
+
+
+ True
+
+ False
+ True
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0.5
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ label_item
+
+
+
+
+ 0
+ 2
+ 2
+ 3
+ fill
+
+
+
+
+
+ True
+ <b>Secret ID:</b>
+ False
+ True
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 0
+ 2
+ 0
+ 1
+ fill
+
+
+
+
+
+
+ True
+ True
+ True
+ True
+ 512
+
+ True
+ *
+ False
+
+
+ 0
+ 2
+ 1
+ 2
+
+
+
+
+
+ 6
+ True
+ True
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+
+
+
+ 4
+ True
+ Link Key-Value pairs
+ GTK_WINDOW_TOPLEVEL
+ GTK_WIN_POS_CENTER_ON_PARENT
+ True
+ True
+ True
+ CASAicons.ico
+ True
+ False
+ False
+ GDK_WINDOW_TYPE_HINT_DIALOG
+ GDK_GRAVITY_NORTH_WEST
+ True
+ False
+ True
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ GTK_BUTTONBOX_END
+
+
+
+ True
+ True
+ True
+ gtk-help
+ True
+ GTK_RELIEF_NONE
+ True
+ -11
+
+
+
+
+
+
+ True
+ True
+ True
+ gtk-close
+ True
+ GTK_RELIEF_NORMAL
+ True
+ -7
+
+
+
+
+
+ 0
+ False
+ True
+ GTK_PACK_END
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ gtk-jump-to
+ 5
+ 0.5
+ 0.5
+ 0
+ 0
+
+
+ 6
+ False
+ True
+
+
+
+
+ 4
+ False
+ True
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ <b>Link Key-Value pairs</b>
+ False
+ True
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 5
+ False
+ True
+
+
+
+
+
+ True
+ You can link two or more keys using this dialog. Further, linking two password keys will keep their values synchronized.
+ False
+ True
+ GTK_JUSTIFY_LEFT
+ True
+ False
+ 0
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 4
+ False
+ False
+
+
+
+
+ 12
+ True
+ True
+
+
+
+
+ 0
+ False
+ True
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ 3
+ 2
+ False
+ 3
+ 6
+
+
+
+ True
+ True
+ True
+ True
+ 0
+
+ True
+ *
+ False
+
+
+ 1
+ 2
+ 2
+ 3
+
+
+
+
+
+
+ True
+ <b>Key:</b>
+ False
+ True
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 1
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 0
+ 1
+ 1
+ 2
+ fill
+ fill
+
+
+
+
+
+ True
+ <b>Value:</b>
+ False
+ True
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 1
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 0
+ 1
+ 2
+ 3
+ fill
+ fill
+
+
+
+
+
+ True
+ <b>Secret ID:</b>
+ False
+ True
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 1
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 0
+ 1
+ 0
+ 1
+ fill
+ fill
+
+
+
+
+
+ True
+
+ False
+ False
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 1
+ 2
+ 0
+ 1
+ fill
+
+
+
+
+
+
+ True
+
+ False
+ False
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 1
+ 2
+ 1
+ 2
+ fill
+
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+ 6
+ False
+ True
+
+
+
+
+
+ True
+ 0
+ 0
+ GTK_SHADOW_IN
+
+
+
+ True
+ 0.5
+ 0.5
+ 1
+ 1
+ 0
+ 10
+ 10
+ 10
+
+
+
+ True
+ 5
+ 3
+ False
+ 4
+ 4
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ Remove the Link of selected Key-Value pair.
+ True
+ GTK_RELIEF_NORMAL
+ True
+
+
+
+
+ True
+ gtk-remove
+ 4
+ 0.5
+ 0.5
+ 0
+ 0
+
+
+
+
+ 0
+ False
+ False
+
+
+
+
+ 2
+ 3
+ 4
+ 5
+ fill
+ fill
+
+
+
+
+
+ True
+ <b>Existing Linked Keys:</b>
+ False
+ True
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 0
+ 3
+ 3
+ 4
+ fill
+
+
+
+
+
+
+ True
+
+
+ 0
+ 3
+ 2
+ 3
+ 4
+ fill
+ fill
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ Link the selected Key-Value pair.
+ True
+ GTK_RELIEF_NORMAL
+ True
+
+
+
+
+ True
+ gtk-add
+ 4
+ 0.5
+ 0.5
+ 0
+ 0
+
+
+
+
+ 32
+ False
+ False
+
+
+
+
+ 2
+ 3
+ 1
+ 2
+ fill
+ fill
+
+
+
+
+
+ True
+ True
+ GTK_POLICY_AUTOMATIC
+ GTK_POLICY_AUTOMATIC
+ GTK_SHADOW_IN
+ GTK_CORNER_TOP_LEFT
+
+
+
+ True
+ True
+ True
+ True
+ False
+ True
+ False
+ False
+ False
+
+
+
+
+ 0
+ 2
+ 4
+ 5
+ fill
+
+
+
+
+
+ True
+ <b>Select the Keys to be Linked:</b>
+ False
+ True
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0
+ 0.5
+ 0
+ 4
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 0
+ 3
+ 0
+ 1
+ fill
+
+
+
+
+
+
+ True
+ True
+ True
+ False
+ GTK_POS_TOP
+ True
+ False
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ False
+ 0
+
+
+
+ 6
+ True
+ True
+ GTK_POLICY_AUTOMATIC
+ GTK_POLICY_AUTOMATIC
+ GTK_SHADOW_IN
+ GTK_CORNER_TOP_LEFT
+
+
+
+ True
+ True
+ True
+ True
+ True
+ True
+ False
+ False
+ False
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+
+ True
+ GTK_ARROW_RIGHT
+ GTK_SHADOW_OUT
+ 0.5
+ 0.5
+ 0
+ 0
+
+
+ 0
+ False
+ False
+
+
+
+
+
+ 6
+ True
+ True
+ GTK_POLICY_AUTOMATIC
+ GTK_POLICY_AUTOMATIC
+ GTK_SHADOW_IN
+ GTK_CORNER_TOP_LEFT
+
+
+
+ True
+ True
+ True
+ True
+ True
+ True
+ False
+ False
+ False
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+ False
+ True
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ CASA_32.png
+ 0.5
+ 0.5
+ 0
+ 0
+
+
+ 0
+ False
+ True
+
+
+
+
+
+ True
+ miCASA
+ False
+ False
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0.5
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 6
+ False
+ False
+
+
+
+
+ tab
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ 6
+ True
+ True
+ GTK_POLICY_AUTOMATIC
+ GTK_POLICY_AUTOMATIC
+ GTK_SHADOW_IN
+ GTK_CORNER_TOP_LEFT
+
+
+
+ True
+ True
+ True
+ True
+ True
+ True
+ False
+ False
+ False
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+ False
+ True
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ firefox-logo.png
+ 0.5
+ 0.5
+ 0
+ 0
+
+
+ 0
+ False
+ True
+
+
+
+
+
+ True
+ Firefox
+ False
+ True
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0.5
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 6
+ False
+ False
+
+
+
+
+ tab
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ 6
+ True
+ True
+ GTK_POLICY_AUTOMATIC
+ GTK_POLICY_AUTOMATIC
+ GTK_SHADOW_IN
+ GTK_CORNER_TOP_LEFT
+
+
+
+ True
+ True
+ True
+ True
+ True
+ True
+ False
+ False
+ False
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+ False
+ True
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ mozilla-logo.png
+ 0.5
+ 0.5
+ 0
+ 0
+
+
+ 0
+ False
+ True
+
+
+
+
+
+ True
+ Mozilla
+ False
+ True
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0.5
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 6
+ False
+ False
+
+
+
+
+ tab
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ 6
+ True
+ True
+ GTK_POLICY_AUTOMATIC
+ GTK_POLICY_AUTOMATIC
+ GTK_SHADOW_IN
+ GTK_CORNER_TOP_LEFT
+
+
+
+ True
+ True
+ True
+ True
+ True
+ True
+ False
+ False
+ False
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+ False
+ True
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ kwallet-logo.png
+ 0.5
+ 0.5
+ 0
+ 0
+
+
+ 0
+ False
+ True
+
+
+
+
+
+ True
+ KDE Wallet
+ False
+ True
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0.5
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 6
+ False
+ False
+
+
+
+
+ tab
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ 6
+ True
+ True
+ GTK_POLICY_AUTOMATIC
+ GTK_POLICY_AUTOMATIC
+ GTK_SHADOW_IN
+ GTK_CORNER_TOP_LEFT
+
+
+
+ True
+ True
+ True
+ True
+ True
+ True
+ False
+ False
+ False
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+ False
+ True
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ keyring-logo.png
+ 0.5
+ 0.5
+ 0
+ 0
+
+
+ 0
+ False
+ True
+
+
+
+
+
+ True
+ GNOME Keyring
+ False
+ False
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0.5
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 6
+ False
+ False
+
+
+
+
+ tab
+
+
+
+
+ 0
+ 2
+ 1
+ 2
+
+
+
+
+
+
+
+
+
+ True
+
+ False
+ True
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0.5
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ label_item
+
+
+
+
+ 6
+ True
+ True
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+
+
+
+ 4
+ True
+ Warning
+ GTK_WINDOW_TOPLEVEL
+ GTK_WIN_POS_CENTER_ON_PARENT
+ True
+ False
+ True
+ CASAicons.ico
+ True
+ False
+ False
+ GDK_WINDOW_TYPE_HINT_DIALOG
+ GDK_GRAVITY_NORTH_WEST
+ True
+ False
+ True
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ GTK_BUTTONBOX_END
+
+
+
+ True
+ True
+ True
+ gtk-no
+ True
+ GTK_RELIEF_NORMAL
+ True
+ -9
+
+
+
+
+
+
+ True
+ True
+ True
+ True
+ True
+ gtk-yes
+ True
+ GTK_RELIEF_NORMAL
+ True
+ -8
+
+
+
+
+
+ 0
+ False
+ True
+ GTK_PACK_END
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ gtk-dialog-question
+ 6
+ 0.5
+ 0.5
+ 0
+ 0
+
+
+ 0
+ False
+ True
+
+
+
+
+ 4
+ True
+ True
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ <b>Are you sure you want to delete this secret?</b>
+ False
+ True
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 5
+ False
+ False
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ <b>Secret ID : </b>
+ False
+ True
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0.5
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 0
+ False
+ False
+
+
+
+
+
+ True
+ True
+ False
+ True
+ 0
+
+ False
+ *
+ False
+
+
+ 0
+ True
+ True
+
+
+
+
+ 6
+ False
+ False
+
+
+
+
+
+ True
+ This will delete the selected secret and all its associated key-value pairs.
+ False
+ False
+ GTK_JUSTIFY_LEFT
+ True
+ False
+ 0
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 4
+ False
+ False
+
+
+
+
+
+ True
+ Do not show this in the future
+ True
+ GTK_RELIEF_NORMAL
+ True
+ False
+ False
+ True
+
+
+ 0
+ False
+ False
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+
+
+
+ 4
+ True
+ Warning
+ GTK_WINDOW_TOPLEVEL
+ GTK_WIN_POS_CENTER_ON_PARENT
+ True
+ False
+ True
+ CASAicons.ico
+ True
+ False
+ False
+ GDK_WINDOW_TYPE_HINT_DIALOG
+ GDK_GRAVITY_NORTH_WEST
+ True
+ False
+ True
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ GTK_BUTTONBOX_END
+
+
+
+ True
+ True
+ True
+ gtk-help
+ True
+ GTK_RELIEF_NONE
+ True
+ -11
+
+
+
+
+
+ True
+ True
+ True
+ gtk-no
+ True
+ GTK_RELIEF_NORMAL
+ True
+ -9
+
+
+
+
+
+ True
+ True
+ True
+ True
+ True
+ gtk-yes
+ True
+ GTK_RELIEF_NORMAL
+ True
+ -8
+
+
+
+
+ 0
+ False
+ True
+ GTK_PACK_END
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ gtk-dialog-question
+ 6
+ 0.5
+ 0.5
+ 0
+ 0
+
+
+ 0
+ False
+ True
+
+
+
+
+ 4
+ True
+ True
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ <b>Are you sure you want to Quit
+the application?</b>
+ False
+ True
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 5
+ False
+ False
+
+
+
+
+
+ True
+ This will quit the CASA Management
+Console.
+ False
+ False
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 4
+ False
+ False
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+
+
+
+ True
+ Persistent Storage
+ GTK_WINDOW_TOPLEVEL
+ GTK_WIN_POS_CENTER_ON_PARENT
+ True
+ False
+ True
+ CASAicons.ico
+ True
+ False
+ False
+ GDK_WINDOW_TYPE_HINT_DIALOG
+ GDK_GRAVITY_NORTH_WEST
+ True
+ False
+ True
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ GTK_BUTTONBOX_END
+
+
+
+ True
+ True
+ True
+ gtk-help
+ True
+ GTK_RELIEF_NONE
+ True
+ -11
+
+
+
+
+
+ True
+ True
+ True
+ gtk-cancel
+ True
+ GTK_RELIEF_NORMAL
+ True
+ -6
+
+
+
+
+
+
+ True
+ True
+ True
+ gtk-ok
+ True
+ GTK_RELIEF_NORMAL
+ True
+ -5
+
+
+
+
+
+ 0
+ False
+ True
+ GTK_PACK_END
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ gtk-dialog-authentication
+ 6
+ 0.5
+ 0.5
+ 0
+ 0
+
+
+ 4
+ False
+ True
+
+
+
+
+ 4
+ True
+ True
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ <b>Set Master Password for Persistent Storage</b>
+ False
+ True
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 5
+ False
+ False
+
+
+
+
+
+ True
+ The Master Password is used to encrypt and
+secure your persistent credentials. You are
+prompted for the Master Password at startup.
+ False
+ False
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 4
+ False
+ False
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+
+ 6
+ True
+ 0
+ 0.5
+ GTK_SHADOW_IN
+
+
+
+ True
+ 0.5
+ 0.5
+ 1
+ 1
+ 0
+ 0
+ 12
+ 0
+
+
+
+ 6
+ True
+ 3
+ 2
+ False
+ 6
+ 6
+
+
+
+ True
+ Master Password :
+ False
+ False
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 1
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 0
+ 1
+ 0
+ 1
+ fill
+
+
+
+
+
+
+ True
+ Re-enter Master Password :
+ False
+ False
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 1
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 0
+ 1
+ 1
+ 2
+ fill
+
+
+
+
+
+
+ Master Password Hint :
+ False
+ False
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 1
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 0
+ 1
+ 2
+ 3
+ fill
+
+
+
+
+
+
+ True
+ True
+ True
+ False
+ 512
+
+ True
+ *
+ False
+
+
+ 1
+ 2
+ 0
+ 1
+
+
+
+
+
+
+ True
+ True
+ True
+ False
+ 512
+
+ True
+ *
+ False
+
+
+ 1
+ 2
+ 1
+ 2
+
+
+
+
+
+
+ True
+ True
+ True
+ 512
+
+ True
+ *
+ False
+
+
+ 1
+ 2
+ 2
+ 3
+
+
+
+
+
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+
+
+
+ True
+ Preferences
+ GTK_WINDOW_TOPLEVEL
+ GTK_WIN_POS_CENTER_ON_PARENT
+ True
+ True
+ True
+ CASAicons.ico
+ True
+ False
+ False
+ GDK_WINDOW_TYPE_HINT_DIALOG
+ GDK_GRAVITY_NORTH_WEST
+ True
+ False
+ True
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ GTK_BUTTONBOX_END
+
+
+
+ True
+ True
+ True
+ gtk-help
+ True
+ GTK_RELIEF_NONE
+ True
+ -11
+
+
+
+
+
+
+ True
+ True
+ True
+ gtk-cancel
+ True
+ GTK_RELIEF_NORMAL
+ True
+ -6
+
+
+
+
+
+
+ True
+ True
+ True
+ gtk-ok
+ True
+ GTK_RELIEF_NORMAL
+ True
+ -5
+
+
+
+
+
+ 0
+ False
+ True
+ GTK_PACK_END
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ 6
+ True
+ 0
+ 0.5
+ GTK_SHADOW_IN
+
+
+
+ True
+ 0.5
+ 0.5
+ 1
+ 1
+ 0
+ 0
+ 12
+ 0
+
+
+
+ 4
+ True
+ False
+ 0
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ True
+ Encrpyt and save miCASA secrets to disk (Persistent)
+ True
+ GTK_RELIEF_NORMAL
+ True
+ True
+ False
+ True
+
+
+
+ 0
+ False
+ False
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+
+ False
+ False
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0.5
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 0
+ False
+ False
+
+
+
+
+
+ True
+ True
+ True
+ True
+ 0
+
+ True
+ *
+ False
+
+
+ 3
+ True
+ True
+
+
+
+
+
+ True
+ True
+ GTK_RELIEF_NORMAL
+ False
+
+
+
+
+ True
+ gtk-find
+ 4
+ 0.5
+ 0.5
+ 0
+ 0
+
+
+
+
+ 0
+ False
+ False
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+
+
+
+
+
+ True
+ <b> miCASA Store options </b>
+ False
+ True
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0.5
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ label_item
+
+
+
+
+ 0
+ False
+ True
+
+
+
+
+
+ 6
+ True
+ 0
+ 0.5
+ GTK_SHADOW_IN
+
+
+
+ True
+ 0.5
+ 0.5
+ 1
+ 1
+ 0
+ 0
+ 12
+ 0
+
+
+
+ 4
+ True
+ False
+ 0
+
+
+
+ True
+ True
+ Show CASA Manager icon in notify area
+ True
+ GTK_RELIEF_NORMAL
+ True
+ True
+ False
+ True
+
+
+
+ 0
+ False
+ False
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+
+ False
+ False
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0.5
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 0
+ False
+ False
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ True
+ Display CASA Manager when icon is clicked
+ True
+ GTK_RELIEF_NORMAL
+ True
+ False
+ False
+ True
+
+
+
+ 0
+ False
+ False
+
+
+
+
+
+ True
+ True
+ Lock/Unlock secrets when icon is clicked
+ True
+ GTK_RELIEF_NORMAL
+ True
+ False
+ False
+ True
+ radiobutton1
+
+
+
+ 0
+ False
+ False
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+
+
+
+
+
+ True
+ <b> CASA Manager Options </b>
+ False
+ True
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0.5
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ label_item
+
+
+
+
+ 0
+ False
+ True
+
+
+
+
+
+ 6
+ True
+ 0
+ 0.5
+ GTK_SHADOW_IN
+
+
+
+ True
+ 0.5
+ 0.5
+ 1
+ 1
+ 0
+ 0
+ 12
+ 0
+
+
+
+ 4
+ True
+ False
+ 0
+
+
+
+ True
+ True
+ Firefox Password Manager
+ True
+ GTK_RELIEF_NORMAL
+ True
+ False
+ False
+ True
+
+
+ 0
+ False
+ False
+
+
+
+
+
+ True
+ Mozilla Password Manager
+ True
+ GTK_RELIEF_NORMAL
+ True
+ False
+ False
+ True
+
+
+ 0
+ False
+ False
+
+
+
+
+
+ True
+ True
+ KDE Wallet
+ True
+ GTK_RELIEF_NORMAL
+ True
+ False
+ False
+ True
+
+
+ 0
+ False
+ False
+
+
+
+
+
+ True
+ True
+ GNOME Keyring
+ True
+ GTK_RELIEF_NORMAL
+ True
+ False
+ False
+ True
+
+
+ 0
+ False
+ False
+
+
+
+
+
+
+
+
+
+ True
+ <b> Stores supported </b>
+ False
+ True
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0.5
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ label_item
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+
+ 6
+ 0
+ 0.5
+ GTK_SHADOW_IN
+
+
+
+ True
+ 0.5
+ 0.5
+ 1
+ 1
+ 0
+ 0
+ 12
+ 0
+
+
+
+ 6
+ True
+ False
+ 0
+
+
+
+ True
+ Refresh all stores after every
+ False
+ False
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 1
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 4
+ False
+ True
+
+
+
+
+
+ True
+ True
+ 1
+ 0
+ False
+ GTK_UPDATE_ALWAYS
+ False
+ False
+ 0 0 100 1 10 10
+
+
+ 4
+ False
+ True
+
+
+
+
+
+ True
+ seconds.
+ False
+ False
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0.5
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 4
+ False
+ False
+
+
+
+
+
+
+
+
+
+ True
+ <b> Auto refresh</b>
+ False
+ True
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0.5
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ label_item
+
+
+
+
+ 0
+ False
+ True
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+
+
+
+
+
+ True
+ About CASA
+ GTK_WINDOW_TOPLEVEL
+ GTK_WIN_POS_CENTER_ON_PARENT
+ True
+ False
+ True
+ CASAicons.ico
+ True
+ False
+ False
+ GDK_WINDOW_TYPE_HINT_DIALOG
+ GDK_GRAVITY_NORTH_WEST
+ True
+ False
+ True
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ GTK_BUTTONBOX_EDGE
+
+
+
+ True
+ True
+ True
+ GTK_RELIEF_NONE
+ True
+ -7
+
+
+
+
+ True
+ novell-logo.png
+ 0.5
+ 0.5
+ 0
+ 0
+
+
+
+
+
+
+
+ True
+ True
+ True
+ True
+ gtk-close
+ True
+ GTK_RELIEF_NORMAL
+ True
+ -7
+
+
+
+
+
+ 0
+ False
+ True
+ GTK_PACK_END
+
+
+
+
+
+ 4
+ True
+ False
+ 0
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ casa-logo-left.png
+ 0.5
+ 0.5
+ 0
+ 0
+
+
+ 0
+ False
+ True
+
+
+
+
+
+ True
+
+
+ 0
+ True
+ True
+
+
+
+
+
+ True
+ casa-logo-right.png
+ 0.5
+ 0.5
+ 0
+ 0
+
+
+ 0
+ False
+ True
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+
+ False
+ False
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0.5
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 0
+ False
+ False
+
+
+
+
+
+ True
+ <b>Version 1.6</b>
+ False
+ True
+ GTK_JUSTIFY_RIGHT
+ False
+ False
+ 0.5
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 0
+ False
+ False
+ GTK_PACK_END
+
+
+
+
+ 2
+ False
+ False
+
+
+
+
+
+ True
+ True
+ True
+ True
+ GTK_POS_TOP
+ False
+ False
+
+
+
+ 4
+ True
+ 0
+ 0.5
+ GTK_SHADOW_IN
+
+
+
+ 4
+ True
+ 0.5
+ 0.5
+ 1
+ 1
+ 0
+ 0
+ 0
+ 0
+
+
+
+ True
+ <b>.:| C A S A |:.</b>
+<b>Common Authentication Services Adapter</b>
+Version 1.6 (c) 2006, Novell Inc.
+.......................................................................................................................
+CASA is the common cross-platform foundation for authentication and single sign-on services for the users of Novell Linux Desktop and Microsoft Windows operating systems. Applications that integrate CASA can securely authenticate and cache credentials for single sign-on purposes.
+
+CASA Manager provides users a single place to manage credentials for KWallet, Gnome Keyring and Firefox Password Manager.
+ False
+ True
+ GTK_JUSTIFY_CENTER
+ True
+ False
+ 0.5
+ 0.5
+ 6
+ 6
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+
+
+
+
+ False
+ True
+
+
+
+
+
+ True
+ <b>About</b>
+ False
+ True
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0.5
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ tab
+
+
+
+
+
+ 4
+ True
+ True
+ GTK_POLICY_AUTOMATIC
+ GTK_POLICY_AUTOMATIC
+ GTK_SHADOW_IN
+ GTK_CORNER_TOP_LEFT
+
+
+
+ True
+ GTK_SHADOW_NONE
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ <b>Cameron Mashayekhi
+Jim Norman
+Poorna Pushkala
+Ahmed SK Anis
+Manohar Mathias
+CSL Manojna
+Nagareshwar Talekar
+L Sreevatsa
+Todd Throne
+Juan Carlos Luciani
+Michael Bright
+Kal Larsen
+Kyle Bullock
+Colin Green
+</b>
+ False
+ True
+ GTK_JUSTIFY_CENTER
+ False
+ False
+ 0.5
+ 0.5
+ 6
+ 6
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 0
+ True
+ True
+
+
+
+
+
+
+
+
+ False
+ True
+
+
+
+
+
+ True
+ <b>Contributors</b>
+ False
+ True
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0.5
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ tab
+
+
+
+
+
+ 4
+ True
+ True
+ GTK_POLICY_AUTOMATIC
+ GTK_POLICY_AUTOMATIC
+ GTK_SHADOW_IN
+ GTK_CORNER_TOP_LEFT
+
+
+
+ True
+ True
+ False
+ False
+ True
+ GTK_JUSTIFY_CENTER
+ GTK_WRAP_WORD
+ True
+ 0
+ 0
+ 0
+ 10
+ 10
+ 0
+
+Copyright (C) 2005-2006 Novell, Inc. All Rights Reserved.
+
+This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; version 2.1 of the License.
+
+This library 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 Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public License along with this library; if not, Novell, Inc.
+
+To contact Novell about this file by physical or electronic mail, you may find current contact information at www.novell.com.
+
+.................................................ooO0Ooo.................................................
+
+
+
+
+ False
+ True
+
+
+
+
+
+ True
+ <b>License</b>
+ False
+ True
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0.5
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ tab
+
+
+
+
+ 6
+ True
+ True
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+
+
+
+ True
+ CASA - Master Password
+ GTK_WINDOW_TOPLEVEL
+ GTK_WIN_POS_CENTER_ALWAYS
+ True
+ False
+ True
+ CASAicons.ico
+ True
+ False
+ False
+ GDK_WINDOW_TYPE_HINT_DIALOG
+ GDK_GRAVITY_NORTH_WEST
+ True
+ False
+ True
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ GTK_BUTTONBOX_END
+
+
+
+ True
+ True
+ True
+ gtk-help
+ True
+ GTK_RELIEF_NONE
+ True
+ -11
+
+
+
+
+
+
+ True
+ True
+ True
+ gtk-close
+ True
+ GTK_RELIEF_NORMAL
+ True
+ -7
+
+
+
+
+
+
+ True
+ True
+ True
+ gtk-ok
+ True
+ GTK_RELIEF_NORMAL
+ True
+ -5
+
+
+
+
+
+ 0
+ False
+ True
+ GTK_PACK_END
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ gtk-dialog-authentication
+ 6
+ 0.5
+ 0.5
+ 0
+ 0
+
+
+ 4
+ False
+ True
+
+
+
+
+ 4
+ True
+ True
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ <b>Master Password Authentication</b>
+ False
+ True
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 4
+ False
+ False
+
+
+
+
+
+ True
+ The Master Password is used to encrypt and
+secure your persistent credentials. You are
+prompted for the Master Password at startup.
+ False
+ False
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 4
+ False
+ False
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+
+ 6
+ True
+ 0
+ 0.5
+ GTK_SHADOW_IN
+
+
+
+ True
+ 0.5
+ 0.5
+ 1
+ 1
+ 0
+ 0
+ 12
+ 0
+
+
+
+ 6
+ True
+ 3
+ 2
+ False
+ 6
+ 6
+
+
+
+ True
+ Master Password :
+ False
+ False
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 1
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 0
+ 1
+ 0
+ 1
+ fill
+
+
+
+
+
+
+ True
+ Re-enter Password :
+ False
+ False
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 1
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 0
+ 1
+ 1
+ 2
+ fill
+
+
+
+
+
+
+ True
+ True
+ True
+ False
+ 512
+
+ True
+ *
+ False
+
+
+
+ 1
+ 2
+ 0
+ 1
+
+
+
+
+
+
+ True
+ True
+ True
+ False
+ 512
+
+ True
+ *
+ False
+
+
+
+ 1
+ 2
+ 1
+ 2
+
+
+
+
+
+
+ Remember for :
+ False
+ False
+ GTK_JUSTIFY_RIGHT
+ False
+ False
+ 1
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 0
+ 1
+ 2
+ 3
+ fill
+
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ 1
+ 0
+ True
+ GTK_UPDATE_ALWAYS
+ False
+ False
+ 5 5 300 10 60 60
+
+
+ 0
+ True
+ True
+
+
+
+
+
+ seconds
+ False
+ False
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0.5
+ 0.5
+ 10
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 0
+ False
+ False
+
+
+
+
+ 1
+ 2
+ 2
+ 3
+ fill
+ fill
+
+
+
+
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+
+
+
+ True
+ CASA Manager - Help
+ GTK_WINDOW_TOPLEVEL
+ GTK_WIN_POS_NONE
+ False
+ True
+ True
+ CASAicons.ico
+ True
+ False
+ False
+ GDK_WINDOW_TYPE_HINT_NORMAL
+ GDK_GRAVITY_NORTH_WEST
+ True
+ False
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ GTK_ORIENTATION_HORIZONTAL
+ GTK_TOOLBAR_ICONS
+ True
+ True
+
+
+
+ True
+
+ True
+ gtk-home
+ True
+ True
+ False
+
+
+ False
+ True
+
+
+
+
+
+ True
+
+ True
+ gtk-go-back
+ True
+ False
+ False
+
+
+ False
+ True
+
+
+
+
+
+ True
+ gtk-go-forward
+ True
+ True
+ False
+
+
+ False
+ True
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+ 0
+ False
+ False
+
+
+
+
+
+
+
+
+
+ True
+ True
+
+
+ 0
+ False
+ False
+
+
+
+
+
+
+
+ 4
+ True
+ Manage Secret
+ GTK_WINDOW_TOPLEVEL
+ GTK_WIN_POS_CENTER_ON_PARENT
+ True
+ True
+ True
+ CASAicons.ico
+ True
+ False
+ False
+ GDK_WINDOW_TYPE_HINT_DIALOG
+ GDK_GRAVITY_NORTH_WEST
+ True
+ False
+ True
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ GTK_BUTTONBOX_END
+
+
+
+ True
+ True
+ True
+ gtk-help
+ True
+ GTK_RELIEF_NONE
+ True
+ -11
+
+
+
+
+
+
+ True
+ True
+ True
+ gtk-cancel
+ True
+ GTK_RELIEF_NORMAL
+ True
+ -6
+
+
+
+
+
+
+ True
+ True
+ True
+ gtk-ok
+ True
+ GTK_RELIEF_NORMAL
+ True
+ -5
+
+
+
+
+
+ 0
+ False
+ True
+ GTK_PACK_END
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ gtk-find-and-replace
+ 5
+ 0.5
+ 0.5
+ 0
+ 0
+
+
+ 6
+ False
+ True
+
+
+
+
+ 4
+ False
+ True
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ <b>Manage Secrets and Key-Value pairs</b>
+ False
+ True
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 5
+ False
+ False
+
+
+
+
+
+ True
+ To EDIT a Key-Value pair, select and single-click the respective Value and enter the new Value.
+ False
+ True
+ GTK_JUSTIFY_LEFT
+ True
+ False
+ 0
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 4
+ False
+ False
+
+
+
+
+ 12
+ True
+ True
+
+
+
+
+ 0
+ False
+ True
+
+
+
+
+
+ True
+ 3
+ 2
+ False
+ 4
+ 4
+
+
+
+ True
+ 0
+ 1
+ GTK_SHADOW_IN
+
+
+
+ True
+ 0.5
+ 0.5
+ 1
+ 1
+ 6
+ 6
+ 6
+ 6
+
+
+
+ True
+ 5
+ 3
+ False
+ 4
+ 4
+
+
+
+ True
+ <b>Key:</b>
+ False
+ True
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 0
+ 1
+ 0
+ 1
+ fill
+
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ Remove the selected Key-Value pair.
+ True
+ GTK_RELIEF_NORMAL
+ True
+
+
+
+
+ True
+ gtk-remove
+ 4
+ 0.5
+ 0.5
+ 0
+ 0
+
+
+
+
+ 0
+ False
+ False
+
+
+
+
+ 2
+ 3
+ 3
+ 4
+ fill
+ fill
+
+
+
+
+
+ True
+ True
+ GTK_POLICY_AUTOMATIC
+ GTK_POLICY_AUTOMATIC
+ GTK_SHADOW_IN
+ GTK_CORNER_TOP_LEFT
+
+
+
+ True
+ True
+ True
+ True
+ False
+ True
+ False
+ False
+ False
+
+
+
+
+ 0
+ 2
+ 3
+ 4
+
+
+
+
+
+ True
+ True
+ True
+ True
+ 512
+
+ True
+ *
+ False
+
+
+ 0
+ 1
+ 1
+ 2
+
+
+
+
+
+
+ True
+ True
+ True
+ True
+ 512
+
+ True
+ *
+ False
+
+
+ 1
+ 2
+ 1
+ 2
+
+
+
+
+
+
+ True
+ Add the new Key-Value pair.
+ True
+ GTK_RELIEF_NORMAL
+ True
+
+
+
+
+ True
+ gtk-add
+ 4
+ 0.5
+ 0.5
+ 0
+ 0
+
+
+
+
+ 2
+ 3
+ 1
+ 2
+ fill
+
+
+
+
+
+
+ True
+ <b>Key-Value pairs:</b>
+ False
+ True
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 0
+ 3
+ 2
+ 3
+ fill
+
+
+
+
+
+
+ True
+ <b>Value:</b>
+ False
+ True
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 1
+ 3
+ 0
+ 1
+ fill
+
+
+
+
+
+
+ True
+ True
+ Show Values in clear text.
+ True
+ GTK_RELIEF_NORMAL
+ True
+ False
+ False
+ True
+
+
+
+ 0
+ 3
+ 4
+ 5
+ fill
+
+
+
+
+
+
+
+
+
+
+ True
+
+ False
+ True
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0.5
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ label_item
+
+
+
+
+ 0
+ 2
+ 2
+ 3
+ fill
+
+
+
+
+
+ True
+ <b>Secret ID:</b>
+ False
+ True
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 0
+ 2
+ 0
+ 1
+ fill
+
+
+
+
+
+
+ True
+ True
+ False
+ True
+ 512
+
+ True
+ *
+ False
+
+
+ 0
+ 2
+ 1
+ 2
+
+
+
+
+
+ 6
+ True
+ True
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+
+
+
+ 4
+ True
+ Warning
+ GTK_WINDOW_TOPLEVEL
+ GTK_WIN_POS_CENTER_ALWAYS
+ False
+ False
+ True
+ CASAicons.ico
+ True
+ False
+ False
+ GDK_WINDOW_TYPE_HINT_DIALOG
+ GDK_GRAVITY_NORTH_WEST
+ True
+ False
+ True
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ GTK_BUTTONBOX_END
+
+
+
+ True
+ True
+ True
+ gtk-close
+ True
+ GTK_RELIEF_NORMAL
+ True
+ -7
+
+
+
+
+
+ 0
+ False
+ True
+ GTK_PACK_END
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ gtk-dialog-warning
+ 6
+ 0.5
+ 0.5
+ 0
+ 0
+
+
+ 0
+ False
+ True
+
+
+
+
+ 4
+ True
+ True
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ <b>Cannot run CASAManager (GUI) as another
+instance is already running.</b>
+ False
+ True
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 5
+ False
+ False
+
+
+
+
+
+ True
+ Quit from currently running instance of CASAManager
+and try running CASAManager again.
+ False
+ False
+ GTK_JUSTIFY_LEFT
+ True
+ False
+ 0
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 4
+ False
+ False
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+ 0
+ False
+ True
+
+
+
+
+
+
+
+ True
+ Warning
+ GTK_WINDOW_TOPLEVEL
+ GTK_WIN_POS_CENTER_ON_PARENT
+ True
+ False
+ True
+ CASAicons.ico
+ True
+ False
+ False
+ GDK_WINDOW_TYPE_HINT_DIALOG
+ GDK_GRAVITY_NORTH_WEST
+ True
+ False
+ True
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ GTK_BUTTONBOX_END
+
+
+
+ True
+ True
+ True
+ gtk-close
+ True
+ GTK_RELIEF_NORMAL
+ True
+ -7
+
+
+
+
+
+
+ True
+ True
+ True
+ True
+ True
+ GTK_RELIEF_NORMAL
+ True
+ -5
+
+
+
+
+ True
+ 0.5
+ 0.5
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+
+
+
+ True
+ False
+ 2
+
+
+
+ True
+ gtk-redo
+ 4
+ 0.5
+ 0.5
+ 0
+ 0
+
+
+ 0
+ False
+ False
+
+
+
+
+
+ True
+ _Retry
+ True
+ False
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0.5
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 0
+ False
+ False
+
+
+
+
+
+
+
+
+
+
+ 0
+ False
+ True
+ GTK_PACK_END
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ gtk-dialog-warning
+ 6
+ 0.5
+ 0.5
+ 0
+ 0
+
+
+ 0
+ False
+ True
+
+
+
+
+ 4
+ True
+ True
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ <b>Retry signing in entering the correct Master Password.</b>
+ False
+ True
+ GTK_JUSTIFY_LEFT
+ True
+ False
+ 0
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 5
+ False
+ False
+
+
+
+
+
+ True
+ Further you can choose to quit CASAManager by cilcking the Close button.
+ False
+ False
+ GTK_JUSTIFY_LEFT
+ True
+ False
+ 0
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 4
+ False
+ False
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+
+
+
+ True
+ Warning
+ GTK_WINDOW_TOPLEVEL
+ GTK_WIN_POS_CENTER_ON_PARENT
+ True
+ False
+ True
+ CASAicons.ico
+ True
+ False
+ False
+ GDK_WINDOW_TYPE_HINT_DIALOG
+ GDK_GRAVITY_NORTH_WEST
+ True
+ False
+ True
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ GTK_BUTTONBOX_END
+
+
+
+ True
+ True
+ True
+ True
+ True
+ GTK_RELIEF_NORMAL
+ True
+ -5
+
+
+
+
+ True
+ 0.5
+ 0.5
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+
+
+
+ True
+ False
+ 2
+
+
+
+ True
+ gtk-redo
+ 4
+ 0.5
+ 0.5
+ 0
+ 0
+
+
+ 0
+ False
+ False
+
+
+
+
+
+ True
+ _Retry
+ True
+ False
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0.5
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 0
+ False
+ False
+
+
+
+
+
+
+
+
+
+
+ 0
+ False
+ True
+ GTK_PACK_END
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ gtk-dialog-warning
+ 6
+ 0.5
+ 0.5
+ 0
+ 0
+
+
+ 0
+ False
+ True
+
+
+
+
+ 4
+ True
+ True
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ <b>Master Password is too short.</b>
+ False
+ True
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 5
+ False
+ False
+
+
+
+
+
+ True
+ The Master Password should be at least eight characters in length.
+ False
+ False
+ GTK_JUSTIFY_LEFT
+ True
+ False
+ 0
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 4
+ False
+ False
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+
+
+
+ True
+ CASA Manager - Debug Log
+ GTK_WINDOW_TOPLEVEL
+ GTK_WIN_POS_NONE
+ False
+ 300
+ 300
+ True
+ True
+ CASAicons.ico
+ True
+ False
+ False
+ GDK_WINDOW_TYPE_HINT_DIALOG
+ GDK_GRAVITY_NORTH_WEST
+ True
+ False
+ True
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ GTK_BUTTONBOX_END
+
+
+
+ True
+ True
+ True
+ gtk-close
+ True
+ GTK_RELIEF_NORMAL
+ True
+ -7
+
+
+
+
+ 0
+ False
+ True
+ GTK_PACK_END
+
+
+
+
+
+ 4
+ True
+ True
+ GTK_POLICY_AUTOMATIC
+ GTK_POLICY_AUTOMATIC
+ GTK_SHADOW_IN
+ GTK_CORNER_TOP_LEFT
+
+
+
+ True
+ True
+ True
+ False
+ False
+ True
+ False
+ False
+ False
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+
+
+
+ True
+ Master Password
+ GTK_WINDOW_TOPLEVEL
+ GTK_WIN_POS_CENTER_ON_PARENT
+ True
+ False
+ True
+ CASAicons.ico
+ True
+ False
+ False
+ GDK_WINDOW_TYPE_HINT_DIALOG
+ GDK_GRAVITY_NORTH_WEST
+ True
+ False
+ True
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ GTK_BUTTONBOX_END
+
+
+
+ True
+ True
+ True
+ gtk-help
+ True
+ GTK_RELIEF_NONE
+ True
+ -11
+
+
+
+
+
+
+ True
+ True
+ True
+ gtk-cancel
+ True
+ GTK_RELIEF_NORMAL
+ True
+ -6
+
+
+
+
+
+
+ True
+ True
+ True
+ gtk-ok
+ True
+ GTK_RELIEF_NORMAL
+ True
+ -5
+
+
+
+
+
+ 0
+ False
+ True
+ GTK_PACK_END
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ gtk-dialog-authentication
+ 6
+ 0.5
+ 0.5
+ 0
+ 0
+
+
+ 4
+ False
+ True
+
+
+
+
+ 4
+ True
+ True
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ <b>Change Master Password</b>
+ False
+ True
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 4
+ False
+ False
+
+
+
+
+
+ True
+ The Master Password is used to encrypt and
+secure your persistent credentials. You are
+prompted for the Master Password at startup.
+ False
+ False
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 4
+ False
+ False
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+
+ 6
+ True
+ 0
+ 0.5
+ GTK_SHADOW_IN
+
+
+
+ True
+ 0.5
+ 0.5
+ 1
+ 1
+ 0
+ 0
+ 12
+ 0
+
+
+
+ 6
+ True
+ 4
+ 2
+ False
+ 6
+ 6
+
+
+
+ True
+ Current Master Password :
+ True
+ False
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 1
+ 0.5
+ 0
+ 0
+ entryOldMP
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 0
+ 1
+ 0
+ 1
+ fill
+
+
+
+
+
+
+ True
+ New Master Password :
+ False
+ False
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 1
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 0
+ 1
+ 1
+ 2
+ fill
+
+
+
+
+
+
+ True
+ True
+ True
+ False
+ 512
+
+ True
+ *
+ False
+
+
+ 1
+ 2
+ 0
+ 1
+
+
+
+
+
+
+ True
+ True
+ True
+ False
+ 512
+
+ True
+ *
+ False
+
+
+ 1
+ 2
+ 1
+ 2
+
+
+
+
+
+
+ True
+ Re-enter Master Password :
+ False
+ False
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 1
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 0
+ 1
+ 2
+ 3
+ fill
+
+
+
+
+
+
+ True
+ True
+ True
+ False
+ 512
+
+ True
+ *
+ False
+
+
+ 1
+ 2
+ 2
+ 3
+
+
+
+
+
+
+ Master Password Hint :
+ False
+ False
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 1
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 0
+ 1
+ 3
+ 4
+ fill
+
+
+
+
+
+
+ True
+ True
+ True
+ 512
+
+ True
+ *
+ False
+
+
+ 1
+ 2
+ 3
+ 4
+
+
+
+
+
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+
+
+
+ 4
+ True
+ Information
+ GTK_WINDOW_TOPLEVEL
+ GTK_WIN_POS_CENTER_ALWAYS
+ True
+ False
+ True
+ CASAicons.ico
+ True
+ False
+ False
+ GDK_WINDOW_TYPE_HINT_DIALOG
+ GDK_GRAVITY_NORTH_WEST
+ True
+ False
+ True
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ GTK_BUTTONBOX_END
+
+
+
+ True
+ True
+ True
+ True
+ True
+ gtk-close
+ True
+ GTK_RELIEF_NORMAL
+ True
+ -7
+
+
+
+
+
+ 0
+ False
+ True
+ GTK_PACK_END
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ gtk-dialog-info
+ 6
+ 0.5
+ 0.5
+ 0
+ 0
+
+
+ 0
+ False
+ True
+
+
+
+
+ 4
+ True
+ True
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ <b>CASA Manager will continue to run as an icon in the system tray/notification area.</b>
+ False
+ True
+ GTK_JUSTIFY_LEFT
+ True
+ False
+ 0
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 5
+ False
+ False
+
+
+
+
+
+ True
+ True
+ Do not show this in the future
+ True
+ GTK_RELIEF_NORMAL
+ True
+ False
+ False
+ True
+
+
+ 4
+ False
+ False
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+
+
+
+ True
+ Workstation Password
+ GTK_WINDOW_TOPLEVEL
+ GTK_WIN_POS_CENTER_ALWAYS
+ True
+ False
+ True
+ CASAicons.ico
+ True
+ False
+ False
+ GDK_WINDOW_TYPE_HINT_DIALOG
+ GDK_GRAVITY_NORTH_WEST
+ True
+ False
+ True
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ GTK_BUTTONBOX_END
+
+
+
+ True
+ True
+ True
+ gtk-help
+ True
+ GTK_RELIEF_NONE
+ True
+ -11
+
+
+
+
+
+
+ True
+ True
+ True
+ gtk-close
+ True
+ GTK_RELIEF_NORMAL
+ True
+ -7
+
+
+
+
+
+
+ True
+ True
+ True
+ gtk-ok
+ True
+ GTK_RELIEF_NORMAL
+ True
+ -5
+
+
+
+
+
+ 0
+ False
+ True
+ GTK_PACK_END
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ gtk-dialog-authentication
+ 6
+ 0.5
+ 0.5
+ 0
+ 0
+
+
+ 4
+ False
+ True
+
+
+
+
+ 4
+ True
+ True
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ <b>Enter Workstation Password</b>
+ False
+ True
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 4
+ False
+ False
+
+
+
+
+
+ True
+ CASA encypts your credentials and writes them in your home directory. To retrieve them, please enter your workstation / desktop password.
+ False
+ False
+ GTK_JUSTIFY_LEFT
+ True
+ False
+ 0
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 4
+ False
+ False
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+
+ True
+
+ True
+ True
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0.5
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 0
+ False
+ False
+
+
+
+
+
+ 6
+ True
+ 0
+ 0.5
+ GTK_SHADOW_IN
+
+
+
+ True
+ 0.5
+ 0.5
+ 1
+ 1
+ 0
+ 0
+ 12
+ 0
+
+
+
+ 6
+ True
+ 2
+ 2
+ False
+ 6
+ 6
+
+
+
+ True
+ Workstation Password :
+ False
+ False
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 1
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 0
+ 1
+ 0
+ 1
+ fill
+
+
+
+
+
+
+ True
+ Re-enter Password :
+ False
+ False
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 1
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 0
+ 1
+ 1
+ 2
+ fill
+
+
+
+
+
+
+ True
+ True
+ True
+ False
+ 512
+
+ True
+ *
+ False
+
+
+
+ 1
+ 2
+ 0
+ 1
+
+
+
+
+
+
+ True
+ True
+ True
+ False
+ 512
+
+ True
+ *
+ False
+
+
+
+ 1
+ 2
+ 1
+ 2
+
+
+
+
+
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+
+
+
+ 4
+ True
+ KDE Wallet - New Secret
+ GTK_WINDOW_TOPLEVEL
+ GTK_WIN_POS_CENTER_ON_PARENT
+ True
+ False
+ True
+ CASAicons.ico
+ True
+ False
+ False
+ GDK_WINDOW_TYPE_HINT_DIALOG
+ GDK_GRAVITY_NORTH_WEST
+ True
+ False
+ True
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ GTK_BUTTONBOX_END
+
+
+
+ True
+ True
+ True
+ gtk-help
+ True
+ GTK_RELIEF_NONE
+ True
+ -11
+
+
+
+
+
+
+ True
+ True
+ True
+ gtk-cancel
+ True
+ GTK_RELIEF_NORMAL
+ True
+ -6
+
+
+
+
+
+
+ True
+ True
+ True
+ gtk-ok
+ True
+ GTK_RELIEF_NORMAL
+ True
+ -5
+
+
+
+
+
+ 0
+ False
+ True
+ GTK_PACK_END
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ gtk-new
+ 5
+ 0.5
+ 0.5
+ 0
+ 0
+
+
+ 6
+ False
+ True
+
+
+
+
+ 4
+ False
+ True
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ <b>Adding Sign-On information for Konquerer</b>
+ False
+ True
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 5
+ False
+ False
+
+
+
+
+
+ True
+ Enter the URL of the website for which you wish to enable Single Sign-On in Konquerer web browser. Further, enter the username and password entries for that site in the corresponding textboxes.
+ False
+ True
+ GTK_JUSTIFY_LEFT
+ True
+ False
+ 0
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 4
+ False
+ False
+
+
+
+
+ 12
+ True
+ True
+
+
+
+
+ 0
+ False
+ True
+
+
+
+
+
+ True
+ 1
+ 2
+ False
+ 4
+ 4
+
+
+
+ True
+ 0
+ 1
+ GTK_SHADOW_IN
+
+
+
+ True
+ 0.5
+ 0.5
+ 1
+ 1
+ 6
+ 6
+ 6
+ 6
+
+
+
+ True
+ 8
+ 2
+ False
+ 4
+ 4
+
+
+
+ True
+ Enter the form-element name of the password input textbox.
+ True
+ True
+ True
+ 512
+
+ True
+ *
+ False
+
+
+ 0
+ 1
+ 7
+ 8
+
+
+
+
+
+
+ True
+ <b>Password</b>
+Key:
+ False
+ True
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 0
+ 1
+ 6
+ 7
+ fill
+
+
+
+
+
+
+ True
+ Enter the form-element name of the username input textbox.
+ True
+ True
+ True
+ 512
+
+ True
+ *
+ False
+
+
+ 0
+ 1
+ 5
+ 6
+
+
+
+
+
+
+ True
+ <b>Username</b>
+Key:
+ False
+ True
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 0
+ 1
+ 4
+ 5
+ fill
+
+
+
+
+
+
+ True
+ Enter your password here.
+ True
+ True
+ False
+ 512
+
+ True
+ *
+ False
+
+
+ 1
+ 2
+ 7
+ 8
+
+
+
+
+
+
+ True
+ <b></b>
+Value:
+ False
+ True
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 1
+ 2
+ 6
+ 7
+ fill
+
+
+
+
+
+
+ True
+ Enter your username here.
+ True
+ True
+ True
+ 512
+
+ True
+ *
+ False
+
+
+ 1
+ 2
+ 5
+ 6
+
+
+
+
+
+
+ True
+ <b></b>
+Value:
+ False
+ True
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 1
+ 2
+ 4
+ 5
+ fill
+
+
+
+
+
+
+ True
+ Enter the URL of the website here.
+ True
+ True
+ True
+ True
+ True
+ True
+ 512
+
+ True
+ *
+ False
+
+
+ 0
+ 2
+ 3
+ 4
+
+
+
+
+
+
+ True
+ <b>URL:</b>
+ False
+ True
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 0
+ 2
+ 2
+ 3
+ fill
+
+
+
+
+
+
+ True
+ <b>Templates:</b>
+ False
+ True
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 0
+ 2
+ 0
+ 1
+ fill
+
+
+
+
+
+
+ True
+ False
+ True
+ False
+ True
+ False
+
+
+
+ True
+ True
+ False
+ True
+ 512
+
+ True
+ *
+ False
+
+
+
+
+
+
+ True
+ GTK_SELECTION_BROWSE
+
+
+
+
+ 0
+ 2
+ 1
+ 2
+ fill
+
+
+
+
+
+
+
+
+
+ True
+
+ False
+ True
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0.5
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ label_item
+
+
+
+
+ 0
+ 2
+ 0
+ 1
+ fill
+
+
+
+
+ 6
+ True
+ True
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+
+
+
+ 4
+ True
+ KDE Wallet - New Secret
+ GTK_WINDOW_TOPLEVEL
+ GTK_WIN_POS_CENTER_ON_PARENT
+ True
+ False
+ True
+ CASAicons.ico
+ True
+ False
+ False
+ GDK_WINDOW_TYPE_HINT_DIALOG
+ GDK_GRAVITY_NORTH_WEST
+ True
+ False
+ True
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ GTK_BUTTONBOX_END
+
+
+
+ True
+ True
+ True
+ gtk-help
+ True
+ GTK_RELIEF_NONE
+ True
+ -11
+
+
+
+
+
+
+ True
+ True
+ True
+ gtk-cancel
+ True
+ GTK_RELIEF_NORMAL
+ True
+ -6
+
+
+
+
+
+
+ True
+ True
+ True
+ gtk-ok
+ True
+ GTK_RELIEF_NORMAL
+ True
+ -5
+
+
+
+
+
+ 0
+ False
+ True
+ GTK_PACK_END
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ gtk-new
+ 5
+ 0.5
+ 0.5
+ 0
+ 0
+
+
+ 6
+ False
+ True
+
+
+
+
+ 4
+ False
+ True
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ <b>Adding Sign-On information for Kopete</b>
+ False
+ True
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 5
+ False
+ False
+
+
+
+
+
+ True
+ Enter the following account details for enabling Single Sign-On for Kopete instant messenger.
+ False
+ True
+ GTK_JUSTIFY_LEFT
+ True
+ False
+ 0
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 4
+ False
+ False
+
+
+
+
+ 12
+ True
+ True
+
+
+
+
+ 0
+ False
+ True
+
+
+
+
+
+ True
+ 0
+ 1
+ GTK_SHADOW_IN
+
+
+
+ True
+ 0.5
+ 0.5
+ 1
+ 1
+ 6
+ 6
+ 6
+ 6
+
+
+
+ True
+ 3
+ 2
+ False
+ 4
+ 4
+
+
+
+ True
+ Enter your username/screen name here.
+ True
+ True
+ True
+ 512
+
+ True
+ *
+ False
+
+
+ 1
+ 2
+ 1
+ 2
+
+
+
+
+
+
+ True
+ <b>Username:</b>
+ False
+ True
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 1
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 0
+ 1
+ 1
+ 2
+
+
+
+
+
+
+ True
+ <b>Protocol:</b>
+ False
+ True
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 1
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 0
+ 1
+ 0
+ 1
+ fill
+
+
+
+
+
+
+ True
+ <b>Password:</b>
+ False
+ True
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 1
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 0
+ 1
+ 2
+ 3
+ fill
+
+
+
+
+
+
+ True
+ Enter your password here.
+ True
+ True
+ False
+ 512
+
+ True
+ *
+ False
+
+
+ 1
+ 2
+ 2
+ 3
+
+
+
+
+
+
+ True
+ False
+ True
+ False
+ True
+ False
+
+
+
+ True
+ True
+ True
+ True
+ 512
+
+ True
+ *
+ False
+
+
+
+
+
+ True
+ GTK_SELECTION_BROWSE
+
+
+
+
+ 1
+ 2
+ 0
+ 1
+ fill
+
+
+
+
+
+
+
+
+
+ True
+
+ False
+ True
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0.5
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ label_item
+
+
+
+
+ 6
+ True
+ True
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+
+
+
+ 4
+ True
+ GNOME Keyring - New Secret
+ GTK_WINDOW_TOPLEVEL
+ GTK_WIN_POS_CENTER_ON_PARENT
+ True
+ False
+ True
+ CASAicons.ico
+ True
+ False
+ False
+ GDK_WINDOW_TYPE_HINT_DIALOG
+ GDK_GRAVITY_NORTH_WEST
+ True
+ False
+ True
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ GTK_BUTTONBOX_END
+
+
+
+ True
+ True
+ True
+ gtk-help
+ True
+ GTK_RELIEF_NONE
+ True
+ -11
+
+
+
+
+
+
+ True
+ True
+ True
+ gtk-cancel
+ True
+ GTK_RELIEF_NORMAL
+ True
+ -6
+
+
+
+
+
+
+ True
+ True
+ True
+ gtk-ok
+ True
+ GTK_RELIEF_NORMAL
+ True
+ -5
+
+
+
+
+
+ 0
+ False
+ True
+ GTK_PACK_END
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ gtk-new
+ 5
+ 0.5
+ 0.5
+ 0
+ 0
+
+
+ 6
+ False
+ True
+
+
+
+
+ 4
+ False
+ True
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ <b>Adding Sign-On information for Network Manager</b>
+ False
+ True
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 5
+ False
+ False
+
+
+
+
+
+ True
+ Enter the following details to enable Single Sign-On for NetworkManager and Nautilus network browser.
+ False
+ True
+ GTK_JUSTIFY_LEFT
+ True
+ False
+ 0
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 4
+ False
+ False
+
+
+
+
+ 12
+ True
+ True
+
+
+
+
+ 0
+ False
+ True
+
+
+
+
+
+ True
+ 0
+ 1
+ GTK_SHADOW_IN
+
+
+
+ True
+ 0.5
+ 0.5
+ 1
+ 1
+ 6
+ 6
+ 6
+ 6
+
+
+
+ True
+ 5
+ 2
+ False
+ 4
+ 4
+
+
+
+ True
+ True
+ False
+ False
+ True
+ True
+
+
+
+ True
+ True
+ False
+ True
+ 512
+
+ True
+ *
+ False
+
+
+
+
+
+
+ True
+ GTK_SELECTION_BROWSE
+
+
+
+ True
+ True
+
+
+
+
+
+
+
+ 1
+ 2
+ 0
+ 1
+ fill
+ fill
+
+
+
+
+
+ True
+ <b>Server _type:</b>
+ True
+ True
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 1
+ 0.5
+ 0
+ 0
+ entry32
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 0
+ 1
+ 0
+ 1
+
+
+
+
+
+
+ True
+ <b>_Server:</b>
+ True
+ True
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 1
+ 0.5
+ 0
+ 0
+ entryNetworkManagerUsername
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 0
+ 1
+ 1
+ 2
+ fill
+
+
+
+
+
+
+ True
+ <b>_Username:</b>
+ True
+ True
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 1
+ 0.5
+ 0
+ 0
+ entryNetworkManagerUsername
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 0
+ 1
+ 2
+ 3
+ fill
+
+
+
+
+
+
+ True
+ <b>_Password:</b>
+ True
+ True
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 1
+ 0.5
+ 0
+ 0
+ entryNetworkManagerPassword
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 0
+ 1
+ 3
+ 4
+ fill
+
+
+
+
+
+
+ True
+ Enter the hostname/IP address of the server.
+ True
+ True
+ True
+ 512
+
+ True
+ *
+ False
+
+
+ 1
+ 2
+ 1
+ 2
+
+
+
+
+
+
+ True
+ Enter your username here.
+ True
+ True
+ True
+ 512
+
+ True
+ *
+ False
+
+
+ 1
+ 2
+ 2
+ 3
+
+
+
+
+
+
+ True
+ Enter your password here.
+ True
+ True
+ False
+ 512
+
+ True
+ *
+ False
+
+
+ 1
+ 2
+ 3
+ 4
+
+
+
+
+
+
+ 4
+ True
+ True
+ False
+ 4
+
+
+
+ True
+ 5
+ 2
+ False
+ 4
+ 4
+
+
+
+ True
+ True
+ True
+ True
+ 512
+
+ True
+ *
+ False
+
+
+ 1
+ 2
+ 4
+ 5
+
+
+
+
+
+
+ True
+ Enter the Windows share name here.
+ True
+ True
+ True
+ 512
+
+ True
+ *
+ False
+
+
+ 1
+ 2
+ 3
+ 4
+
+
+
+
+
+
+ True
+ Enter the port number. This is an optional information.
+ True
+ True
+ True
+ 512
+
+ True
+ *
+ False
+
+
+ 1
+ 2
+ 2
+ 3
+
+
+
+
+
+
+ Enter your folder name or the path.
+ True
+ True
+ True
+ 512
+
+ True
+ *
+ False
+
+
+ 1
+ 2
+ 1
+ 2
+
+
+
+
+
+
+ True
+ <b>_Domain name:</b>
+ True
+ True
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 1
+ 0.5
+ 0
+ 0
+ entryNetworkManagerDomain
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 0
+ 1
+ 4
+ 5
+
+
+
+
+
+
+ True
+ <b>S_hare:</b>
+ True
+ True
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 1
+ 0.5
+ 0
+ 0
+ entryNetworkManagerShare
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 0
+ 1
+ 3
+ 4
+
+
+
+
+
+
+ True
+ <b>_Port:</b>
+ True
+ True
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 1
+ 0.5
+ 0
+ 0
+ entryNetworkManagerPort
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 0
+ 1
+ 2
+ 3
+
+
+
+
+
+
+ <b>_Folder:</b>
+ True
+ True
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 1
+ 0.5
+ 0
+ 0
+ entryNetworkManagerFolder
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 0
+ 1
+ 1
+ 2
+
+
+
+
+
+
+ Enter a name for this connection.
+ True
+ True
+ True
+ 512
+
+ True
+ *
+ False
+
+
+ 1
+ 2
+ 0
+ 1
+
+
+
+
+
+
+ <b>Connection _name:</b>
+ True
+ True
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 1
+ 0.5
+ 0
+ 0
+ entryNetworkManagerCName
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 0
+ 1
+ 0
+ 1
+ fill
+
+
+
+
+
+
+
+
+ True
+ <b>_Optional information</b>
+ True
+ True
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0.5
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ label_item
+
+
+
+
+ 0
+ 2
+ 4
+ 5
+ fill
+
+
+
+
+
+
+
+
+
+ True
+
+ False
+ True
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0.5
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ label_item
+
+
+
+
+ 6
+ True
+ True
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+
+
+
+ 4
+ True
+ GNOME Keyring - New Secret
+ GTK_WINDOW_TOPLEVEL
+ GTK_WIN_POS_CENTER_ON_PARENT
+ True
+ False
+ True
+ CASAicons.ico
+ True
+ False
+ False
+ GDK_WINDOW_TYPE_HINT_DIALOG
+ GDK_GRAVITY_NORTH_WEST
+ True
+ False
+ True
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ GTK_BUTTONBOX_END
+
+
+
+ True
+ True
+ True
+ gtk-help
+ True
+ GTK_RELIEF_NONE
+ True
+ -11
+
+
+
+
+
+
+ True
+ True
+ True
+ gtk-cancel
+ True
+ GTK_RELIEF_NORMAL
+ True
+ -6
+
+
+
+
+
+
+ True
+ True
+ True
+ gtk-ok
+ True
+ GTK_RELIEF_NORMAL
+ True
+ -5
+
+
+
+
+
+ 0
+ False
+ True
+ GTK_PACK_END
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ gtk-new
+ 5
+ 0.5
+ 0.5
+ 0
+ 0
+
+
+ 6
+ False
+ True
+
+
+
+
+ 4
+ False
+ True
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ <b>Adding Sign-On information for Gaim</b>
+ False
+ True
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 5
+ False
+ False
+
+
+
+
+
+ True
+ Enter the following account details for enabling Single Sign-On for Gaim instant messenger.
+ False
+ True
+ GTK_JUSTIFY_LEFT
+ True
+ False
+ 0
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 4
+ False
+ False
+
+
+
+
+ 12
+ True
+ True
+
+
+
+
+ 0
+ False
+ True
+
+
+
+
+
+ True
+ 0
+ 1
+ GTK_SHADOW_IN
+
+
+
+ True
+ 0.5
+ 0.5
+ 1
+ 1
+ 6
+ 6
+ 6
+ 6
+
+
+
+ True
+ 3
+ 2
+ False
+ 4
+ 4
+
+
+
+ True
+ Enter your username/screen name here.
+ True
+ True
+ True
+ 512
+
+ True
+ *
+ False
+
+
+ 1
+ 2
+ 1
+ 2
+
+
+
+
+
+
+ True
+ <b>Username:</b>
+ False
+ True
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 1
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 0
+ 1
+ 1
+ 2
+
+
+
+
+
+
+ True
+ <b>Protocol:</b>
+ False
+ True
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 1
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 0
+ 1
+ 0
+ 1
+ fill
+
+
+
+
+
+
+ True
+ <b>Password:</b>
+ False
+ True
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 1
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 0
+ 1
+ 2
+ 3
+ fill
+
+
+
+
+
+
+ True
+ Enter your password here.
+ True
+ True
+ False
+ 512
+
+ True
+ *
+ False
+
+
+ 1
+ 2
+ 2
+ 3
+
+
+
+
+
+
+ True
+ False
+ True
+ False
+ True
+ False
+
+
+
+ True
+ True
+ True
+ True
+ 512
+
+ True
+ *
+ False
+
+
+
+
+
+ True
+ GTK_SELECTION_BROWSE
+
+
+
+
+ 1
+ 2
+ 0
+ 1
+ fill
+
+
+
+
+
+
+
+
+
+ True
+
+ False
+ True
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0.5
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ label_item
+
+
+
+
+ 6
+ True
+ True
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+
+
+
+ 4
+ True
+ KDE Wallet - New Secret
+ GTK_WINDOW_TOPLEVEL
+ GTK_WIN_POS_CENTER_ON_PARENT
+ True
+ False
+ True
+ CASAicons.ico
+ True
+ False
+ False
+ GDK_WINDOW_TYPE_HINT_DIALOG
+ GDK_GRAVITY_NORTH_WEST
+ True
+ False
+ True
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ GTK_BUTTONBOX_END
+
+
+
+ True
+ True
+ True
+ gtk-help
+ True
+ GTK_RELIEF_NONE
+ True
+ -11
+
+
+
+
+
+
+ True
+ True
+ True
+ gtk-cancel
+ True
+ GTK_RELIEF_NORMAL
+ True
+ -6
+
+
+
+
+
+
+ True
+ True
+ True
+ gtk-ok
+ True
+ GTK_RELIEF_NORMAL
+ True
+ -5
+
+
+
+
+
+ 0
+ False
+ True
+ GTK_PACK_END
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ gtk-new
+ 5
+ 0.5
+ 0.5
+ 0
+ 0
+
+
+ 6
+ False
+ True
+
+
+
+
+ 4
+ False
+ True
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ <b>Adding Sign-On information for Firefox</b>
+ False
+ True
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 5
+ False
+ False
+
+
+
+
+
+ True
+ Enter the URL of the website for which you wish to enable Single Sign-On in Firefox web browser. Further, enter the username and password entries for that site in the corresponding textboxes.
+ False
+ True
+ GTK_JUSTIFY_LEFT
+ True
+ False
+ 0
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 4
+ False
+ False
+
+
+
+
+ 12
+ True
+ True
+
+
+
+
+ 0
+ False
+ True
+
+
+
+
+
+ True
+ 1
+ 2
+ False
+ 4
+ 4
+
+
+
+ True
+ 0
+ 1
+ GTK_SHADOW_IN
+
+
+
+ True
+ 0.5
+ 0.5
+ 1
+ 1
+ 6
+ 6
+ 6
+ 6
+
+
+
+ True
+ 8
+ 2
+ False
+ 4
+ 4
+
+
+
+ True
+ Enter the form-element name of the password input textbox.
+ True
+ True
+ True
+ 512
+
+ True
+ *
+ False
+
+
+ 0
+ 1
+ 7
+ 8
+
+
+
+
+
+
+ True
+ <b>Password</b>
+Key:
+ False
+ True
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 0
+ 1
+ 6
+ 7
+ fill
+
+
+
+
+
+
+ True
+ Enter the form-element name of the username input textbox.
+ True
+ True
+ True
+ 512
+
+ True
+ *
+ False
+
+
+ 0
+ 1
+ 5
+ 6
+
+
+
+
+
+
+ True
+ <b>Username</b>
+Key:
+ False
+ True
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 0
+ 1
+ 4
+ 5
+ fill
+
+
+
+
+
+
+ True
+ Enter your password here.
+ True
+ True
+ False
+ 512
+
+ True
+ *
+ False
+
+
+ 1
+ 2
+ 7
+ 8
+
+
+
+
+
+
+ True
+ <b></b>
+Value:
+ False
+ True
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 1
+ 2
+ 6
+ 7
+ fill
+
+
+
+
+
+
+ True
+ Enter your username here.
+ True
+ True
+ True
+ 512
+
+ True
+ *
+ False
+
+
+ 1
+ 2
+ 5
+ 6
+
+
+
+
+
+
+ True
+ <b></b>
+Value:
+ False
+ True
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 1
+ 2
+ 4
+ 5
+ fill
+
+
+
+
+
+
+ True
+ Enter the URL of the website here.
+ True
+ True
+ True
+ True
+ True
+ True
+ 512
+
+ True
+ *
+ False
+
+
+ 0
+ 2
+ 3
+ 4
+
+
+
+
+
+
+ True
+ <b>URL:</b>
+ False
+ True
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 0
+ 2
+ 2
+ 3
+ fill
+
+
+
+
+
+
+ True
+ <b>Templates:</b>
+ False
+ True
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 0
+ 2
+ 0
+ 1
+ fill
+
+
+
+
+
+
+ True
+ False
+ True
+ False
+ True
+ False
+
+
+
+ True
+ True
+ False
+ True
+ 512
+
+ True
+ *
+ False
+
+
+
+
+
+
+ True
+ GTK_SELECTION_BROWSE
+
+
+
+
+ 0
+ 2
+ 1
+ 2
+ fill
+
+
+
+
+
+
+
+
+
+ True
+
+ False
+ True
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0.5
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ label_item
+
+
+
+
+ 0
+ 2
+ 0
+ 1
+ fill
+
+
+
+
+ 6
+ True
+ True
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+
+
+
+ True
+ Firefox - Master Password
+ GTK_WINDOW_TOPLEVEL
+ GTK_WIN_POS_CENTER_ON_PARENT
+ True
+ False
+ True
+ CASAicons.ico
+ True
+ False
+ False
+ GDK_WINDOW_TYPE_HINT_DIALOG
+ GDK_GRAVITY_NORTH_WEST
+ True
+ False
+ True
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ GTK_BUTTONBOX_END
+
+
+
+ True
+ True
+ True
+ gtk-help
+ True
+ GTK_RELIEF_NONE
+ True
+ -11
+
+
+
+
+
+
+ True
+ True
+ True
+ gtk-close
+ True
+ GTK_RELIEF_NORMAL
+ True
+ -7
+
+
+
+
+
+
+ True
+ True
+ True
+ gtk-ok
+ True
+ GTK_RELIEF_NORMAL
+ True
+ -5
+
+
+
+
+
+ 0
+ False
+ True
+ GTK_PACK_END
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ gtk-dialog-authentication
+ 6
+ 0.5
+ 0.5
+ 0
+ 0
+
+
+ 6
+ False
+ True
+
+
+
+
+ 4
+ True
+ True
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ <b>Master Password authentication</b>
+ False
+ True
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 5
+ False
+ False
+
+
+
+
+
+ True
+ The Firefox password manager is locked with
+a master password. Please enter the master
+password to view the secrets.
+ False
+ False
+ GTK_JUSTIFY_LEFT
+ True
+ False
+ 0
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 4
+ False
+ False
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+
+ 6
+ True
+ 0
+ 0.5
+ GTK_SHADOW_IN
+
+
+
+ True
+ 0.5
+ 0.5
+ 1
+ 1
+ 0
+ 0
+ 12
+ 0
+
+
+
+ 6
+ True
+ 1
+ 2
+ False
+ 6
+ 6
+
+
+
+ True
+ Master Password :
+ False
+ False
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 1
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 0
+ 1
+ 0
+ 1
+ fill
+
+
+
+
+
+
+ True
+ True
+ True
+ False
+ 512
+
+ True
+ *
+ False
+
+
+
+ 1
+ 2
+ 0
+ 1
+
+
+
+
+
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+
+
+
+ 4
+ True
+ Warning
+ GTK_WINDOW_TOPLEVEL
+ GTK_WIN_POS_CENTER_ON_PARENT
+ True
+ False
+ True
+ CASAicons.ico
+ True
+ False
+ False
+ GDK_WINDOW_TYPE_HINT_DIALOG
+ GDK_GRAVITY_NORTH_WEST
+ True
+ False
+ True
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ GTK_BUTTONBOX_END
+
+
+
+ True
+ True
+ True
+ gtk-close
+ True
+ GTK_RELIEF_NORMAL
+ True
+ -7
+
+
+
+
+
+ 0
+ False
+ True
+ GTK_PACK_END
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ gtk-dialog-warning
+ 6
+ 0.5
+ 0.5
+ 0
+ 0
+
+
+ 0
+ False
+ True
+
+
+
+
+ 4
+ True
+ True
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ <b>The Secret ID and Key names may only contain
+the following characters
+0-9, a-z, A-Z, and any of ~!@#$%^()_+-[]{};",./?</b>
+ False
+ True
+ GTK_JUSTIFY_LEFT
+ True
+ False
+ 0
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 5
+ False
+ False
+
+
+
+
+
+ True
+ Avoid using these special characters for Secret ID and Key names * : ' \ & = < >
+ False
+ False
+ GTK_JUSTIFY_LEFT
+ True
+ False
+ 0
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 4
+ False
+ False
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+ 0
+ False
+ True
+
+
+
+
+
+
+
+ True
+ Warning
+ GTK_WINDOW_TOPLEVEL
+ GTK_WIN_POS_CENTER_ON_PARENT
+ True
+ False
+ True
+ CASAicons.ico
+ True
+ False
+ False
+ GDK_WINDOW_TYPE_HINT_DIALOG
+ GDK_GRAVITY_NORTH_WEST
+ True
+ False
+ True
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ GTK_BUTTONBOX_END
+
+
+
+ True
+ True
+ True
+ True
+ True
+ GTK_RELIEF_NORMAL
+ True
+ -3
+
+
+
+
+ True
+ 0.5
+ 0.5
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+
+
+
+ True
+ False
+ 2
+
+
+
+ True
+ gtk-delete
+ 4
+ 0.5
+ 0.5
+ 0
+ 0
+
+
+ 0
+ False
+ False
+
+
+
+
+
+ True
+ _Delete
+ True
+ False
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0.5
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 0
+ False
+ False
+
+
+
+
+
+
+
+
+
+
+
+ True
+ True
+ True
+ True
+ True
+ GTK_RELIEF_NORMAL
+ True
+ -7
+
+
+
+
+ True
+ 0.5
+ 0.5
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+
+
+
+ True
+ False
+ 2
+
+
+
+ True
+ gtk-redo
+ 4
+ 0.5
+ 0.5
+ 0
+ 0
+
+
+ 0
+ False
+ False
+
+
+
+
+
+ True
+ _Retry
+ True
+ False
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0.5
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 0
+ False
+ False
+
+
+
+
+
+
+
+
+
+
+ 0
+ False
+ True
+ GTK_PACK_END
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ gtk-dialog-warning
+ 6
+ 0.5
+ 0.5
+ 0
+ 0
+
+
+ 0
+ False
+ True
+
+
+
+
+ 4
+ True
+ True
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ <b>The password you entered does not match.</b>
+ False
+ True
+ GTK_JUSTIFY_LEFT
+ True
+ False
+ 0
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 5
+ False
+ False
+
+
+
+
+
+ True
+ The password you entered does not match the one encrypting your secrets. You can retry entering your workstation password to recover your secrets, or you can delete them.
+ False
+ False
+ GTK_JUSTIFY_LEFT
+ True
+ False
+ 0
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 4
+ False
+ False
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+
+
+
+ True
+ CASA - Export Secrets
+ GTK_WINDOW_TOPLEVEL
+ GTK_WIN_POS_CENTER_ALWAYS
+ True
+ False
+ True
+ CASAicons.ico
+ True
+ False
+ False
+ GDK_WINDOW_TYPE_HINT_DIALOG
+ GDK_GRAVITY_NORTH_WEST
+ True
+ False
+ True
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ GTK_BUTTONBOX_END
+
+
+
+ True
+ True
+ True
+ gtk-help
+ True
+ GTK_RELIEF_NONE
+ True
+ -11
+
+
+
+
+
+ True
+ True
+ True
+ gtk-close
+ True
+ GTK_RELIEF_NORMAL
+ True
+ -7
+
+
+
+
+
+
+ True
+ True
+ True
+ gtk-ok
+ True
+ GTK_RELIEF_NORMAL
+ True
+ -5
+
+
+
+
+
+ 0
+ False
+ True
+ GTK_PACK_END
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ gtk-dialog-authentication
+ 6
+ 0.5
+ 0.5
+ 0
+ 0
+
+
+ 4
+ False
+ True
+
+
+
+
+ 4
+ True
+ True
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ <b>Export miCASA Secrets</b>
+ False
+ True
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 4
+ False
+ False
+
+
+
+
+
+ True
+ Your Master Password is required to
+export your secrets. Your secrets will
+be encrypted using your Master Password.
+
+If you wish, you can export your secrets
+in clear text.
+ False
+ False
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 4
+ False
+ False
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+
+ 6
+ True
+ 0
+ 0.5
+ GTK_SHADOW_IN
+
+
+
+ True
+ 0.5
+ 0.5
+ 1
+ 1
+ 0
+ 0
+ 12
+ 0
+
+
+
+ 6
+ True
+ 3
+ 2
+ False
+ 6
+ 6
+
+
+
+ True
+ Master Password :
+ False
+ False
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 1
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 0
+ 1
+ 0
+ 1
+ fill
+
+
+
+
+
+
+ True
+ True
+ True
+ False
+ 512
+
+ True
+ *
+ False
+
+
+ 1
+ 2
+ 0
+ 1
+
+
+
+
+
+
+ True
+ True
+ Do not encrypt export file
+ True
+ GTK_RELIEF_NORMAL
+ True
+ False
+ False
+ True
+
+
+ 1
+ 2
+ 1
+ 2
+ fill
+
+
+
+
+
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+
+
+
+ True
+ CASA - Import Secrets
+ GTK_WINDOW_TOPLEVEL
+ GTK_WIN_POS_CENTER_ALWAYS
+ True
+ False
+ True
+ CASAicons.ico
+ True
+ False
+ False
+ GDK_WINDOW_TYPE_HINT_DIALOG
+ GDK_GRAVITY_NORTH_WEST
+ True
+ False
+ True
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ GTK_BUTTONBOX_END
+
+
+
+ True
+ True
+ True
+ gtk-help
+ True
+ GTK_RELIEF_NONE
+ True
+ -11
+
+
+
+
+
+ True
+ True
+ True
+ gtk-close
+ True
+ GTK_RELIEF_NORMAL
+ True
+ -7
+
+
+
+
+
+
+ True
+ True
+ True
+ gtk-ok
+ True
+ GTK_RELIEF_NORMAL
+ True
+ -5
+
+
+
+
+
+ 0
+ False
+ True
+ GTK_PACK_END
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ gtk-dialog-authentication
+ 6
+ 0.5
+ 0.5
+ 0
+ 0
+
+
+ 4
+ False
+ True
+
+
+
+
+ 4
+ True
+ True
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ <b>Import miCASA Secrets</b>
+ False
+ True
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 4
+ False
+ False
+
+
+
+
+
+ True
+ The file you selected appears
+to be encypted. Please enter
+the Master Password used
+to encrypt this file
+ False
+ False
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 4
+ False
+ False
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+
+ 6
+ True
+ 0
+ 0.5
+ GTK_SHADOW_IN
+
+
+
+ True
+ 0.5
+ 0.5
+ 1
+ 1
+ 0
+ 0
+ 12
+ 0
+
+
+
+ 6
+ True
+ 3
+ 2
+ False
+ 6
+ 6
+
+
+
+ True
+ Master Password :
+ False
+ False
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 1
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 0
+ 1
+ 0
+ 1
+ fill
+
+
+
+
+
+
+ True
+ True
+ True
+ False
+ 512
+
+ True
+ *
+ False
+
+
+ 1
+ 2
+ 0
+ 1
+
+
+
+
+
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+
+
+
+ True
+ Choose File
+ GTK_WINDOW_TOPLEVEL
+ GTK_WIN_POS_CENTER_ON_PARENT
+ True
+ 500
+ 525
+ True
+ True
+ CASAicons.ico
+ True
+ False
+ False
+ GDK_WINDOW_TYPE_HINT_DIALOG
+ GDK_GRAVITY_NORTH_WEST
+ True
+ False
+ True
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ GTK_BUTTONBOX_END
+
+
+
+ True
+ True
+ True
+ gtk-cancel
+ True
+ GTK_RELIEF_NORMAL
+ True
+ -6
+
+
+
+
+
+
+ True
+ True
+ True
+ gtk-ok
+ True
+ GTK_RELIEF_NORMAL
+ True
+ -5
+
+
+
+
+
+ 0
+ False
+ True
+ GTK_PACK_END
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ Location:
+ False
+ False
+ GTK_JUSTIFY_RIGHT
+ False
+ False
+ 0.5
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 4
+ False
+ False
+
+
+
+
+
+ 50
+ True
+ True
+ GTK_POLICY_NEVER
+ GTK_POLICY_AUTOMATIC
+ GTK_SHADOW_IN
+ GTK_CORNER_TOP_LEFT
+
+
+
+ True
+ True
+ False
+ False
+ False
+ True
+ False
+ False
+ False
+
+
+
+
+ 8
+ True
+ True
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ True
+ True
+ True
+ 0
+
+ True
+ *
+ False
+
+
+ 0
+ True
+ True
+
+
+
+
+
+ True
+ True
+ GTK_RELIEF_NORMAL
+ True
+
+
+
+
+ True
+ gtk-go-up
+ 4
+ 0.5
+ 0.5
+ 0
+ 0
+
+
+
+
+ 8
+ False
+ False
+
+
+
+
+
+ True
+ True
+ New Folder
+ True
+ GTK_RELIEF_NORMAL
+ True
+
+
+
+ 0
+ False
+ False
+
+
+
+
+ 0
+ False
+ False
+
+
+
+
+
+ True
+ True
+ GTK_POLICY_NEVER
+ GTK_POLICY_ALWAYS
+ GTK_SHADOW_IN
+ GTK_CORNER_TOP_LEFT
+
+
+
+ True
+ True
+ True
+ False
+ False
+ True
+ False
+ False
+ False
+
+
+
+
+ 6
+ True
+ True
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ File name:
+ False
+ False
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0.5
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 5
+ False
+ False
+
+
+
+
+
+ True
+ True
+ True
+ True
+ 0
+
+ True
+ *
+ False
+
+
+ 5
+ True
+ True
+
+
+
+
+ 0
+ False
+ True
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ Filter:
+ False
+ False
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0.5
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 5
+ False
+ False
+
+
+
+
+
+ True
+ True
+ True
+ True
+ 0
+ *.casa
+ True
+ *
+ False
+
+
+
+ 5
+ True
+ True
+
+
+
+
+ 0
+ False
+ True
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+
+
+
+ True
+ New Folder
+ GTK_WINDOW_TOPLEVEL
+ GTK_WIN_POS_CENTER_ON_PARENT
+ True
+ True
+ False
+ True
+ False
+ False
+ GDK_WINDOW_TYPE_HINT_DIALOG
+ GDK_GRAVITY_NORTH_WEST
+ True
+ False
+ True
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ GTK_BUTTONBOX_END
+
+
+
+ True
+ True
+ True
+ gtk-cancel
+ True
+ GTK_RELIEF_NORMAL
+ True
+ -6
+
+
+
+
+
+
+ True
+ True
+ True
+ gtk-ok
+ True
+ GTK_RELIEF_NORMAL
+ True
+ -5
+
+
+
+
+
+ 0
+ False
+ True
+ GTK_PACK_END
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ Enter folder name
+ False
+ False
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0.5
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 0
+ False
+ False
+
+
+
+
+
+ True
+ True
+ True
+ True
+ 0
+
+ True
+ *
+ False
+
+
+ 0
+ False
+ False
+
+
+
+
+ 0
+ False
+ False
+
+
+
+
+
+
+
+
+
+ True
+ CASA - Debug File chooser
+ GTK_WINDOW_TOPLEVEL
+ GTK_WIN_POS_CENTER_ON_PARENT
+ True
+ True
+ True
+ CASAicons.ico
+ True
+ False
+ False
+ GDK_WINDOW_TYPE_HINT_DIALOG
+ GDK_GRAVITY_NORTH_WEST
+ True
+ False
+ True
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ GTK_BUTTONBOX_END
+
+
+
+ True
+ True
+ True
+ gtk-help
+ True
+ GTK_RELIEF_NONE
+ True
+ -11
+
+
+
+
+
+ True
+ True
+ True
+ gtk-close
+ True
+ GTK_RELIEF_NORMAL
+ True
+ -7
+
+
+
+
+
+ True
+ True
+ True
+ gtk-ok
+ True
+ GTK_RELIEF_NORMAL
+ True
+ -5
+
+
+
+
+ 0
+ False
+ True
+ GTK_PACK_END
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ gtk-dialog-authentication
+ 6
+ 0.5
+ 0.5
+ 0
+ 0
+
+
+ 4
+ False
+ True
+
+
+
+
+ 4
+ True
+ True
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ <b>Debug file Chooser</b>
+ False
+ True
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 4
+ False
+ False
+
+
+
+
+
+ True
+ This will be removed
+ False
+ False
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 4
+ False
+ False
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+
+ 6
+ True
+ 0
+ 0.5
+ GTK_SHADOW_IN
+
+
+
+ True
+ 0.5
+ 0.5
+ 1
+ 1
+ 0
+ 0
+ 12
+ 0
+
+
+
+ True
+ 3
+ 3
+ False
+ 0
+ 0
+
+
+
+ True
+ Save File
+ False
+ False
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 0
+ 1
+ 0
+ 1
+ fill
+
+
+
+
+
+
+ True
+ Open File
+ False
+ False
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 0
+ 1
+ 1
+ 2
+ fill
+
+
+
+
+
+
+ True
+ Choose Directory
+ False
+ False
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 0
+ 1
+ 2
+ 3
+ fill
+
+
+
+
+
+
+ True
+ True
+ True
+ True
+ 0
+
+ True
+ *
+ False
+
+
+ 1
+ 2
+ 0
+ 1
+
+
+
+
+
+
+ True
+ True
+ True
+ True
+ 0
+
+ True
+ *
+ False
+
+
+ 1
+ 2
+ 1
+ 2
+
+
+
+
+
+
+ True
+ True
+ True
+ True
+ 0
+
+ True
+ *
+ False
+
+
+ 1
+ 2
+ 2
+ 3
+
+
+
+
+
+
+ True
+ True
+ Save As...
+ True
+ GTK_RELIEF_NORMAL
+ True
+
+
+
+ 2
+ 3
+ 0
+ 1
+ fill
+
+
+
+
+
+
+ True
+ True
+ Open file
+ True
+ GTK_RELIEF_NORMAL
+ True
+
+
+
+ 2
+ 3
+ 1
+ 2
+ fill
+
+
+
+
+
+
+ True
+ True
+ Choose Dir
+ True
+ GTK_RELIEF_NORMAL
+ True
+
+
+
+ 2
+ 3
+ 2
+ 3
+ fill
+
+
+
+
+
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+
+
+
+ True
+ Edit Secret Policy
+ GTK_WINDOW_TOPLEVEL
+ GTK_WIN_POS_CENTER_ON_PARENT
+ True
+ 200
+ 530
+ True
+ False
+ True
+ False
+ False
+ GDK_WINDOW_TYPE_HINT_DIALOG
+ GDK_GRAVITY_NORTH_WEST
+ True
+ False
+ True
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ GTK_BUTTONBOX_END
+
+
+
+ True
+ True
+ True
+ gtk-help
+ True
+ GTK_RELIEF_NORMAL
+ True
+ -11
+
+
+
+
+
+ True
+ True
+ True
+ gtk-apply
+ True
+ GTK_RELIEF_NORMAL
+ True
+ -10
+
+
+
+
+
+
+ True
+ True
+ True
+ gtk-cancel
+ True
+ GTK_RELIEF_NORMAL
+ True
+ -6
+
+
+
+
+
+
+ True
+ True
+ True
+ gtk-ok
+ True
+ GTK_RELIEF_NORMAL
+ True
+ -5
+
+
+
+
+
+ 0
+ False
+ True
+ GTK_PACK_END
+
+
+
+
+
+ 64
+ 64
+ True
+ True
+ GTK_POLICY_AUTOMATIC
+ GTK_POLICY_ALWAYS
+ GTK_SHADOW_IN
+ GTK_CORNER_TOP_LEFT
+
+
+
+ True
+ True
+ True
+ False
+ False
+ True
+ False
+ False
+ False
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+
+
+
+ True
+ Select non-persistent Secrets
+ GTK_WINDOW_TOPLEVEL
+ GTK_WIN_POS_CENTER_ON_PARENT
+ True
+ 250
+ 500
+ True
+ False
+ True
+ False
+ False
+ GDK_WINDOW_TYPE_HINT_DIALOG
+ GDK_GRAVITY_NORTH_WEST
+ True
+ False
+ True
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ GTK_BUTTONBOX_END
+
+
+
+ True
+ True
+ True
+ gtk-help
+ True
+ GTK_RELIEF_NORMAL
+ True
+ -11
+
+
+
+
+
+ True
+ True
+ True
+ gtk-apply
+ True
+ GTK_RELIEF_NORMAL
+ True
+ -10
+
+
+
+
+
+
+ True
+ True
+ True
+ gtk-cancel
+ True
+ GTK_RELIEF_NORMAL
+ True
+ -6
+
+
+
+
+
+
+ True
+ True
+ True
+ gtk-ok
+ True
+ GTK_RELIEF_NORMAL
+ True
+ -5
+
+
+
+
+
+ 0
+ False
+ True
+ GTK_PACK_END
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ True
+ GTK_POLICY_ALWAYS
+ GTK_POLICY_ALWAYS
+ GTK_SHADOW_IN
+ GTK_CORNER_TOP_LEFT
+
+
+
+ True
+ True
+ True
+ False
+ False
+ True
+ False
+ False
+ False
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+
+
+
+
+
+
+
+ False
+ False
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0.5
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 0
+ False
+ False
+
+
+
+
+
+ True
+ True
+ GTK_RELIEF_NORMAL
+ True
+
+
+
+
+ True
+ gtk-go-forward
+ 4
+ 0.5
+ 0.5
+ 0
+ 0
+
+
+
+
+ 7
+ False
+ False
+
+
+
+
+
+ True
+ True
+ GTK_RELIEF_NORMAL
+ True
+
+
+
+
+ True
+ gtk-go-back
+ 4
+ 0.5
+ 0.5
+ 0
+ 0
+
+
+
+
+ 0
+ False
+ False
+
+
+
+
+ 19
+ False
+ True
+
+
+
+
+
+ True
+ True
+ GTK_POLICY_ALWAYS
+ GTK_POLICY_ALWAYS
+ GTK_SHADOW_IN
+ GTK_CORNER_TOP_LEFT
+
+
+
+ True
+ True
+ True
+ False
+ False
+ True
+ False
+ False
+ False
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+
+
+
+ 4
+ True
+ Warning - Invalid Secret
+ GTK_WINDOW_TOPLEVEL
+ GTK_WIN_POS_CENTER_ON_PARENT
+ True
+ False
+ True
+ CASAicons.ico
+ True
+ False
+ False
+ GDK_WINDOW_TYPE_HINT_DIALOG
+ GDK_GRAVITY_NORTH_WEST
+ True
+ False
+ True
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ GTK_BUTTONBOX_END
+
+
+
+ True
+ True
+ True
+ gtk-close
+ True
+ GTK_RELIEF_NORMAL
+ True
+ -7
+
+
+
+
+
+ 0
+ False
+ True
+ GTK_PACK_END
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ gtk-dialog-warning
+ 6
+ 0.5
+ 0.5
+ 0
+ 0
+
+
+ 0
+ False
+ True
+
+
+
+
+ 4
+ True
+ True
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ <b>A Firefox Password Manager secret should have two key-value pairs.</b>
+ False
+ True
+ GTK_JUSTIFY_LEFT
+ True
+ False
+ 0
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 5
+ False
+ False
+
+
+
+
+
+ True
+ Add two key-value pairs with one of them flagged as password by enabling the corresponding checkbox.
+ False
+ False
+ GTK_JUSTIFY_LEFT
+ True
+ False
+ 0
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 4
+ False
+ False
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+ 0
+ False
+ True
+
+
+
+
+
+
+
+ 4
+ True
+ Warning - Identical Secret
+ GTK_WINDOW_TOPLEVEL
+ GTK_WIN_POS_CENTER_ON_PARENT
+ True
+ False
+ True
+ CASAicons.ico
+ True
+ False
+ False
+ GDK_WINDOW_TYPE_HINT_DIALOG
+ GDK_GRAVITY_NORTH_WEST
+ True
+ False
+ True
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ GTK_BUTTONBOX_END
+
+
+
+ True
+ True
+ True
+ gtk-close
+ True
+ GTK_RELIEF_NORMAL
+ True
+ -7
+
+
+
+
+
+ 0
+ False
+ True
+ GTK_PACK_END
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ gtk-dialog-warning
+ 6
+ 0.5
+ 0.5
+ 0
+ 0
+
+
+ 0
+ False
+ True
+
+
+
+
+ 4
+ True
+ True
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ <b>An identical secret with similar username value
+already exists in the Firefox Password Manager.</b>
+ False
+ True
+ GTK_JUSTIFY_LEFT
+ True
+ False
+ 0
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 5
+ False
+ False
+
+
+
+
+
+ True
+ Secrets with identical secret ID must have unique
+username values.
+ False
+ False
+ GTK_JUSTIFY_LEFT
+ True
+ False
+ 0
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 4
+ False
+ False
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+ 0
+ False
+ True
+
+
+
+
+
+
+
+ True
+ CASA - Copy Secret
+ GTK_WINDOW_TOPLEVEL
+ GTK_WIN_POS_CENTER_ALWAYS
+ True
+ False
+ True
+ CASAicons.ico
+ True
+ False
+ False
+ GDK_WINDOW_TYPE_HINT_DIALOG
+ GDK_GRAVITY_NORTH_WEST
+ True
+ False
+ True
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ GTK_BUTTONBOX_END
+
+
+
+ True
+ True
+ True
+ gtk-close
+ True
+ GTK_RELIEF_NORMAL
+ True
+ -7
+
+
+
+
+
+
+ True
+ True
+ True
+ gtk-ok
+ True
+ GTK_RELIEF_NORMAL
+ True
+ -5
+
+
+
+
+
+ 0
+ False
+ True
+ GTK_PACK_END
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ gtk-copy
+ 4
+ 0.5
+ 0.5
+ 0
+ 0
+
+
+ 4
+ False
+ True
+
+
+
+
+ 4
+ True
+ True
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ <b>Copy this secret to ...</b>
+ False
+ True
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 4
+ False
+ False
+
+
+
+
+
+ True
+ Select the stores and enter the name of the
+secret for the selected store.
+ False
+ False
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 6
+ False
+ False
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+
+ 6
+ True
+ 0
+ 0.5
+ GTK_SHADOW_IN
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+ True
+ miCASA
+ True
+ GTK_RELIEF_NORMAL
+ True
+ True
+ False
+ True
+
+
+ 0
+ False
+ False
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ True
+
+ False
+ False
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0.5
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 0
+ False
+ False
+
+
+
+
+
+ True
+ True
+ True
+ True
+ 0
+
+ True
+ *
+ False
+
+
+ 6
+ True
+ True
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+
+ False
+ True
+ Firefox Password Manager
+ True
+ GTK_RELIEF_NORMAL
+ True
+ False
+ False
+ True
+
+
+ 0
+ False
+ False
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ False
+
+ False
+ False
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0.5
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 0
+ False
+ False
+
+
+
+
+
+ False
+ True
+ True
+ True
+ 0
+
+ True
+ *
+ False
+
+
+ 6
+ True
+ True
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+
+ False
+ True
+ Mozilla Password Manager
+ True
+ GTK_RELIEF_NORMAL
+ True
+ False
+ False
+ True
+
+
+ 0
+ False
+ False
+
+
+
+
+
+ False
+ False
+ 0
+
+
+
+ False
+
+ False
+ False
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0.5
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 0
+ False
+ False
+
+
+
+
+
+ False
+ True
+ True
+ True
+ 0
+
+ True
+ *
+ False
+
+
+ 6
+ True
+ True
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+
+ False
+ True
+ KDE Wallet
+ True
+ GTK_RELIEF_NORMAL
+ True
+ False
+ False
+ True
+
+
+ 0
+ False
+ False
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ False
+
+ False
+ False
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0.5
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 0
+ False
+ False
+
+
+
+
+
+ False
+ True
+ True
+ True
+ 0
+
+ True
+ *
+ False
+
+
+ 6
+ True
+ True
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+
+ False
+ True
+ GNOME Keyring
+ True
+ GTK_RELIEF_NORMAL
+ True
+ False
+ False
+ True
+
+
+ 0
+ False
+ False
+
+
+
+
+
+ True
+ False
+ 0
+
+
+
+ False
+
+ False
+ False
+ GTK_JUSTIFY_LEFT
+ False
+ False
+ 0.5
+ 0.5
+ 0
+ 0
+ PANGO_ELLIPSIZE_NONE
+ -1
+ False
+ 0
+
+
+ 0
+ False
+ False
+
+
+
+
+
+ False
+ True
+ True
+ True
+ 0
+
+ True
+ *
+ False
+
+
+ 6
+ True
+ True
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+ 0
+ True
+ True
+
+
+
+
+
+
+