This is just some static backup of the original site, don't expect every link to work!

source: content/vI_rdfAccountMismatchDialog.xul @ d8da4b

ng_0.9
Last change on this file since d8da4b was d8da4b, checked in by rene <rene@…>, 11 years ago

changed imports to prevent namespace pollution

  • Property mode set to 100644
File size: 3.6 KB
Line 
1<?xml version="1.0"?>
2<!-- ***** BEGIN LICENSE BLOCK *****
3   - This program is free software; you can redistribute it and/or modify
4   - it under the terms of the GNU General Public License as published by
5   - the Free Software Foundation; either version 2 of the License, or
6   - (at your option) any later version.
7
8   - This program is distributed in the hope that it will be useful,
9   - but WITHOUT ANY WARRANTY; without even the implied warranty of
10   - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11   - GNU General Public License for more details.
12
13   - You should have received a copy of the GNU General Public License
14   - along with this program; if not, write to the Free Software
15   - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
16
17   - The Original Code is the Virtual Identity Extension.
18
19   - The Initial Developer of the Original Code is Rene Ejury.
20   - Portions created by the Initial Developer are Copyright (C) 2007
21   - the Initial Developer. All Rights Reserved.
22
23   - Contributor(s):
24   - ***** END LICENSE BLOCK ***** -->
25   
26<?xml-stylesheet href="chrome://v_identity/skin/v_identity.css" type="text/css"?>
27
28<!DOCTYPE overlay SYSTEM "chrome://v_identity/locale/vI_rdfAccountMismatchDialog.dtd">
29
30<dialog id="vI_rdfAccountMismatchDialog"
31    xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
32    buttons="accept"
33    title="&vident.vI_rdfAccountMismatchDialog.title;"
34    ondialogaccept="virtualIdentityExtension.rdfAccountMismatchDialog.accept();"
35    ondialogcancel="virtualIdentityExtension.rdfAccountMismatchDialog.accept();"
36    zlevel="6">
37    <script type="application/x-javascript" src="chrome://v_identity/content/vI_rdfAccountMismatchDialog.js" />
38   
39    <stringbundleset id="stringbundleset">
40        <stringbundle id="bundle_messenger" src="chrome://messenger/locale/messenger.properties" />
41    </stringbundleset>
42
43    <label id="removeRelationLabel" value="&vident.vI_rdfAccountMismatchDialog.removeRelation.label;" hidden="true" />
44   
45    <dialogheader title="&vident.vI_rdfAccountMismatchDialog.dialogheader;"/>
46    <groupbox id="rdfAccountMismatchDialog_groupbox">
47        <vbox id="rdfAccountMismatchDialog_vbox_identity" align="left" hidden="true" >
48            <caption label="&vident.vI_rdfAccountMismatchDialog_identity.caption;"/>
49            <description class="widthXX">&vident.vI_rdfAccountMismatchDialog_identity.desc;</description>
50        </vbox>
51        <vbox id="rdfAccountMismatchDialog_vbox_smtp" align="left" hidden="true" >
52            <caption label="&vident.vI_rdfAccountMismatchDialog_smtp.caption;"/>
53            <description class="widthXX">&vident.vI_rdfAccountMismatchDialog_smtp.desc;</description>
54        </vbox>
55        <listbox id="rdfAccountMismatchDialog_listbox" suppressonselect="true" rows="5" >
56        <listhead id="rdfAccountMismatchDialog_listhead_identity" hidden="true">
57            <listheader label="&vident.vI_rdfAccountMismatchDialog_identity.old;" />
58            <listheader label="&vident.vI_rdfAccountMismatchDialog_identity.count;" />
59            <listheader label="&vident.vI_rdfAccountMismatchDialog_identity.new;" />
60        </listhead>
61        <listhead id="rdfAccountMismatchDialog_listhead_smtp" hidden="true">
62            <listheader label="&vident.vI_rdfAccountMismatchDialog_smtp.old;" />
63            <listheader label="&vident.vI_rdfAccountMismatchDialog_smtp.count;" />
64            <listheader label="&vident.vI_rdfAccountMismatchDialog_smtp.new;" />
65        </listhead>
66        <listcols><listcol/><listcol/><listcol/></listcols>
67        </listbox>
68    </groupbox>
69</dialog>
Note: See TracBrowser for help on using the repository browser.