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

Changeset 668208


Ignore:
Timestamp:
Sep 11, 2018, 12:53:11 PM (4 years ago)
Author:
rene <rene@…>
Branches:
ng_0.9
Children:
37733f
Parents:
2bdd22
Message:

changed layout mismatch-dialog

Files:
10 edited

Legend:

Unmodified
Added
Removed
  • content/bindings/vI_rdfAccountMismatchDialog.xml

    r2bdd22 r668208  
    3333        <xul:listcell>
    3434            <xul:label class="identityDesc-name" xbl:inherits="value=label,accesskey,crop" crop="end" flex="1"/>
     35            <xul:label class="identityDesc-pre" value="(" crop="end" />
    3536            <xul:label class="identityDesc-ext1" xbl:inherits="value=ext1" crop="end" />
     37            <xul:label class="identityDesc-mid" value="/" crop="end" />
    3638            <xul:label class="identityDesc-ext2" xbl:inherits="value=ext2" crop="end" />
     39            <xul:label class="identityDesc-post" value=")" crop="end" />
    3740        </xul:listcell>
    38         <xul:listcell>
     41        <xul:listcell class="identityDesc-count-cell">
    3942            <xul:label class="identityDesc-count" xbl:inherits="value=count" crop="end" />
    4043        </xul:listcell>
     
    5356    </implementation>
    5457    </binding>
    55          
    56     <binding id="mismatch-menuitem" extends="chrome://global/content/bindings/menu.xml#menuitem">
    57     <content>
    58         <xul:label class="identityDesc-name" xbl:inherits="value=label,accesskey,crop" crop="end" flex="1"/>
    59         <xul:label class="identityDesc-ext1" xbl:inherits="value=ext1" crop="end" />
    60         <xul:label class="identityDesc-ext2" xbl:inherits="value=ext2" crop="end" />
    61     </content>
    62     </binding>
    63    
     58
     59    <binding id="mismatch-menuitem" extends="chrome://global/content/bindings/menu.xml#menuitem">
     60    <content>
     61            <xul:label class="identityDesc-name" xbl:inherits="value=label,accesskey,crop" crop="end" flex="1"/>
     62    <xul:label class="identityDesc-ext1" xbl:inherits="value=ext1" crop="end" />
     63            <xul:label class="identityDesc-ext2" xbl:inherits="value=ext2" crop="end" />
     64    </content>
     65    </binding>
     66
    6467    <binding id="mismatch-menulist" extends="chrome://global/content/bindings/menulist.xml#menulist">
    6568    <content>
     
    155158    <method name="_addIdentities">
    156159        <body><![CDATA[
    157         virtualIdentityExtension.Log.debug("rdfAccountMismatchDialog.xml mismatchID-menupopup: _addIdentities.");
     160        //virtualIdentityExtension.Log.debug("rdfAccountMismatchDialog.xml mismatchID-menupopup: _addIdentities.");
    158161        Components.utils.import("resource://v_identity/vI_accountUtils.js", virtualIdentityExtension);
    159162        var accounts = virtualIdentityExtension.getAccountsArray();
     
    175178        ]]></body>
    176179    </method>
     180    <method name="_addSmtp">
     181        <parameter name="server" />
     182        <body><![CDATA[
     183            //virtualIdentityExtension.Log.debug("rdfAccountMismatchDialog.xml mismatchID-menupopup: _addSmtp.");
     184            const XUL_NS = "http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul";
     185            var menuitem = document.createElementNS(XUL_NS, "menuitem"); // create a new XUL menuitem
     186            menuitem.setAttribute("class", "mismatchMenuitem");
     187            menuitem.setAttribute("label",  (server.description?server.description:server.hostname));
     188            menuitem.setAttribute("ext1",  server.hostname);
     189            menuitem.setAttribute("ext2",  server.username);
     190            menuitem.setAttribute("key",  server.key);
     191            this.appendChild(menuitem);
     192        ]]></body>
     193    </method>
     194    <method name="_addSmtpServers">
     195        <body><![CDATA[
     196            //virtualIdentityExtension.Log.debug("rdfAccountMismatchDialog.xml mismatchID-menupopup: _addSmtpServers.");
     197           
     198            const XUL_NS = "http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul";
     199            var menuitem = document.createElementNS(XUL_NS, "menuitem"); // create a new XUL menuitem
     200            menuitem.setAttribute("class", "mismatchMenuitem");
     201            menuitem.setAttribute("key", virtualIdentityExtension.DEFAULT_SMTP_TAG);
     202            menuitem.setAttribute("label", Components.classes["@mozilla.org/intl/stringbundle;1"]
     203              .getService(Components.interfaces.nsIStringBundleService)
     204              .createBundle("chrome://messenger/locale/messenger.properties")
     205              .GetStringFromName("defaultServerTag"));       
     206            this.appendChild(menuitem);
     207           
     208            var servers, smtpService = Components.classes["@mozilla.org/messengercompose/smtp;1"]
     209                .getService(Components.interfaces.nsISmtpService);
     210            // check for new https://hg.mozilla.org/comm-central/rev/fab9e5145cd4 smtpService
     211            if (typeof(smtpService.servers) == "object") servers = smtpService.servers;
     212            else servers = smtpService.smtpServers;
     213
     214            while (servers && servers.hasMoreElements()) {
     215                var server = servers.getNext();
     216                if (server instanceof Components.interfaces.nsISmtpServer && !server.redirectorType) this._addSmtp(server);
     217            }
     218        ]]></body>
     219    </method>
     220
    177221    <method name="_addIdentitiesWithSmtp">
    178222        <body><![CDATA[
     
    213257    <constructor>
    214258        <![CDATA[       
    215         virtualIdentityExtension.Log.debug("rdfAccountMismatchDialog.xml mismatchID-menupopup: constructor.");
     259        //virtualIdentityExtension.Log.debug("rdfAccountMismatchDialog.xml mismatchID-menupopup: constructor.");
    216260        const XUL_NS = "http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul";
    217261        this.appendChild(document.createElementNS(XUL_NS, "menuseparator")); // create a new XUL menuseparator
     
    220264            this._addIdentities();
    221265            break;
     266          case "smtp":
     267            this._addSmtpServers();
     268            break;
    222269          case "smtpid":
    223270            this._addIdentitiesWithSmtp();
  • content/vI_rdfAccountMismatchDialog.xul

    r2bdd22 r668208  
    2424   - ***** END LICENSE BLOCK ***** -->
    2525   
     26
     27<?xml-stylesheet href="chrome://mozapps/content/xpinstall/xpinstallConfirm.css" type="text/css"?>
     28<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
     29<?xml-stylesheet href="chrome://mozapps/skin/xpinstall/xpinstallConfirm.css" type="text/css"?>
    2630<?xml-stylesheet href="chrome://v_identity/skin/v_identity.css" type="text/css"?>
    2731
     
    3943    <label id="virtualIdentityExtension_removeRelationLabel" value="&vident.virtualIdentityExtension_rdfAccountMismatchDialog.removeRelation.label;" hidden="true" />
    4044   
    41     <dialogheader title="&vident.virtualIdentityExtension_rdfAccountMismatchDialog.dialogheader;"/>
    42     <groupbox id="virtualIdentityExtension_rdfAccountMismatchDialog_groupbox">
    43         <vbox id="virtualIdentityExtension_rdfAccountMismatchDialog_vbox_identity" align="left" hidden="true" >
    44             <caption label="&vident.virtualIdentityExtension_rdfAccountMismatchDialog_identity.caption;"/>
     45    <vbox flex="1" id="dialogContentBox">
     46      <dialogheader title="&vident.virtualIdentityExtension_rdfAccountMismatchDialog.dialogheader;"/>
     47    <hbox id="xpinstallheader" align="start">
     48        <image class="alert-icon"/>
     49        <vbox id="virtualIdentityExtension_rdfAccountMismatchDialog_vbox_identity" align="left" hidden="true" flex="1">
     50            <description class="warning widthXX">&vident.virtualIdentityExtension_rdfAccountMismatchDialog_identity.caption;</description>
    4551            <description class="widthXX">&vident.virtualIdentityExtension_rdfAccountMismatchDialog_identity.desc;</description>
    4652        </vbox>
    47         <vbox id="virtualIdentityExtension_rdfAccountMismatchDialog_vbox_smtpid" align="left" hidden="true" >
    48             <caption label="&vident.virtualIdentityExtension_rdfAccountMismatchDialog_smtpid.caption;"/>
     53        <vbox id="virtualIdentityExtension_rdfAccountMismatchDialog_vbox_smtp" align="left" hidden="true" flex="1">
     54            <description class="warning widthXX">&vident.virtualIdentityExtension_rdfAccountMismatchDialog_smtp.caption;</description>
     55            <description class="widthXX">&vident.virtualIdentityExtension_rdfAccountMismatchDialog_smtp.desc;</description>
     56        </vbox>
     57        <vbox id="virtualIdentityExtension_rdfAccountMismatchDialog_vbox_smtpid" align="left" hidden="true" flex="1">
     58            <description class="warning widthXX">&vident.virtualIdentityExtension_rdfAccountMismatchDialog_smtpid.caption;</description>
    4959            <description class="widthXX">&vident.virtualIdentityExtension_rdfAccountMismatchDialog_smtpid.desc;</description>
    5060        </vbox>
    51         <listbox id="virtualIdentityExtension_rdfAccountMismatchDialog_listbox" suppressonselect="true" rows="5" >
     61    </hbox>
     62        <listbox id="virtualIdentityExtension_rdfAccountMismatchDialog_listbox" suppressonselect="true" flex="1" rows="7">
    5263        <listhead id="virtualIdentityExtension_rdfAccountMismatchDialog_listhead_identity" hidden="true">
    5364            <listheader label="&vident.virtualIdentityExtension_rdfAccountMismatchDialog_identity.old;" />
    5465            <listheader label="&vident.virtualIdentityExtension_rdfAccountMismatchDialog_identity.count;" />
    5566            <listheader label="&vident.virtualIdentityExtension_rdfAccountMismatchDialog_identity.new;" />
     67        </listhead>
     68        <listhead id="virtualIdentityExtension_rdfAccountMismatchDialog_listhead_smtp" hidden="true">
     69            <listheader label="&vident.virtualIdentityExtension_rdfAccountMismatchDialog_smtp.old;" />
     70            <listheader label="&vident.virtualIdentityExtension_rdfAccountMismatchDialog_smtp.count;" />
     71            <listheader label="&vident.virtualIdentityExtension_rdfAccountMismatchDialog_smtp.new;" />
    5672        </listhead>
    5773        <listhead id="virtualIdentityExtension_rdfAccountMismatchDialog_listhead_smtpid" hidden="true">
     
    6278        <listcols><listcol/><listcol/><listcol/></listcols>
    6379        </listbox>
    64     </groupbox>
     80  </vbox>
    6581</dialog>
  • locale/cs-CZ/vI_rdfAccountMismatchDialog.dtd

    r2bdd22 r668208  
    66<!ENTITY vident.virtualIdentityExtension_rdfAccountMismatchDialog_smtp.desc "Some of the previously stored SMTP-servers don't match the current SMTP-Settings. Please select if the folowing stored SMTP-relations should be removed or assign those to existing SMTP servers:"> <!-- translate -->
    77<!ENTITY vident.virtualIdentityExtension_rdfAccountMismatchDialog_smtp.caption "assign related SMTP-server"> <!-- translate -->
     8<!ENTITY vident.virtualIdentityExtension_rdfAccountMismatchDialog_smtpid.desc "The new version of virtual Identity selects the SMTP-server according to the used underlaying base Identity.\nThis collides with some of your stored identity settings where the stored SMTP differs from the one from your permanent identity. Please select if the folowing previously stored SMTP-relations should be removed or reassign those to the right base Identities: (if unsure, press ok or read again)">
     9<!ENTITY vident.virtualIdentityExtension_rdfAccountMismatchDialog_smtpid.caption "assign mismatching SMTP-servers:">
    810<!ENTITY vident.virtualIdentityExtension_rdfAccountMismatchDialog_identity.old "previous Identity (email / full Name)"> <!-- translate -->
    911<!ENTITY vident.virtualIdentityExtension_rdfAccountMismatchDialog_identity.count "use-count"> <!-- translate -->
     
    1214<!ENTITY vident.virtualIdentityExtension_rdfAccountMismatchDialog_smtp.count "use-count"> <!-- translate -->
    1315<!ENTITY vident.virtualIdentityExtension_rdfAccountMismatchDialog_smtp.new "new SMTP (hostname / username)"> <!-- translate -->
     16<!ENTITY vident.virtualIdentityExtension_rdfAccountMismatchDialog_smtpid.old "stored SMTP (base Identity / SMTP)">
     17<!ENTITY vident.virtualIdentityExtension_rdfAccountMismatchDialog_smtpid.count "use-count">
     18<!ENTITY vident.virtualIdentityExtension_rdfAccountMismatchDialog_smtpid.new "new base Identity (SMTP)">
  • locale/de-DE/vI_rdfAccountMismatchDialog.dtd

    r2bdd22 r668208  
    66<!ENTITY vident.virtualIdentityExtension_rdfAccountMismatchDialog_smtp.desc "Einige der vorher gespeicherten SMTP-Server passen nicht zu den aktuellen SMTP-Servern. Bitte entscheide, ob die folgenden SMTP-Server entfernt oder anderen SMTP-Servern zugeordnet werden sollen:">
    77<!ENTITY vident.virtualIdentityExtension_rdfAccountMismatchDialog_smtp.caption "ordne zusammengehörige SMTP-Server">
     8<!ENTITY vident.virtualIdentityExtension_rdfAccountMismatchDialog_smtpid.desc "The new version of virtual Identity selects the SMTP-server according to the used underlaying base Identity. This collides with some of your stored identity settings where the stored SMTP differs from the one from your permanent identity. Please select if the folowing previously stored SMTP-relations should be removed or reassign those to the right base Identities:">
     9<!ENTITY vident.virtualIdentityExtension_rdfAccountMismatchDialog_smtpid.caption "assign mismatching SMTP-servers:">
    810<!ENTITY vident.virtualIdentityExtension_rdfAccountMismatchDialog_identity.old "vorherige IdentitÀt (Email / voller Name)">
    911<!ENTITY vident.virtualIdentityExtension_rdfAccountMismatchDialog_identity.count "HÀufigkeit">
     
    1214<!ENTITY vident.virtualIdentityExtension_rdfAccountMismatchDialog_smtp.count "HÀufigkeit">
    1315<!ENTITY vident.virtualIdentityExtension_rdfAccountMismatchDialog_smtp.new "neuer SMTP-Server (name / nutzer)">
     16<!ENTITY vident.virtualIdentityExtension_rdfAccountMismatchDialog_smtpid.old "alter SMTP-Server (IdentitÀt / SMTP-Server)">
     17<!ENTITY vident.virtualIdentityExtension_rdfAccountMismatchDialog_smtpid.count "HÀufigkeit">
     18<!ENTITY vident.virtualIdentityExtension_rdfAccountMismatchDialog_smtpid.new "neue IdentitÀt (SMTP-Server)">
  • locale/en-US/vI_rdfAccountMismatchDialog.dtd

    r2bdd22 r668208  
    44<!ENTITY vident.virtualIdentityExtension_rdfAccountMismatchDialog_identity.desc "Some of the previously stored Identities don't match the current Identitiy-Settings. Please select if the following stored id-relations should be removed or assign those to existing Identities:">
    55<!ENTITY vident.virtualIdentityExtension_rdfAccountMismatchDialog_identity.caption "assign related Identities">
     6<!ENTITY vident.virtualIdentityExtension_rdfAccountMismatchDialog_smtpid.desc "The new version of virtual Identity selects the SMTP-server according to the used underlaying base Identity.\nThis collides with some of your stored identity settings where the stored SMTP differs from the one from your permanent identity. Please select if the folowing previously stored SMTP-relations should be removed or reassign those to the right base Identities: (if unsure, press ok or read again)">
     7<!ENTITY vident.virtualIdentityExtension_rdfAccountMismatchDialog_smtpid.caption "assign mismatching SMTP-servers:">
    68<!ENTITY vident.virtualIdentityExtension_rdfAccountMismatchDialog_smtp.desc "Some of the previously stored SMTP-servers don't match the current SMTP-Settings. Please select if the folowing stored SMTP-relations should be removed or assign those to existing SMTP servers:">
    79<!ENTITY vident.virtualIdentityExtension_rdfAccountMismatchDialog_smtp.caption "assign related SMTP-server">
    8 <!ENTITY vident.virtualIdentityExtension_rdfAccountMismatchDialog_smtpid.desc "The new version of virtual Identity selects the SMTP-server according to the used underlaying base Identity. This collides with some of your stored identity settings - please select if the folowing stored SMTP-relations should be removed or assign those to the right identities:">
    9 <!ENTITY vident.virtualIdentityExtension_rdfAccountMismatchDialog_smtpid.caption "assign mismatching SMTP-servers:">
    1010<!ENTITY vident.virtualIdentityExtension_rdfAccountMismatchDialog_identity.old "previous Identity (email / full Name)">
    1111<!ENTITY vident.virtualIdentityExtension_rdfAccountMismatchDialog_identity.count "use-count">
    1212<!ENTITY vident.virtualIdentityExtension_rdfAccountMismatchDialog_identity.new "new Identitiy (email / full Name)">
     13<!ENTITY vident.virtualIdentityExtension_rdfAccountMismatchDialog_smtpid.old "stored SMTP (base Identity  / SMTP)">
     14<!ENTITY vident.virtualIdentityExtension_rdfAccountMismatchDialog_smtpid.count "use-count">
     15<!ENTITY vident.virtualIdentityExtension_rdfAccountMismatchDialog_smtpid.new "new base Identity (SMTP)">
    1316<!ENTITY vident.virtualIdentityExtension_rdfAccountMismatchDialog_smtp.old "previous SMTP (hostname / username)">
    1417<!ENTITY vident.virtualIdentityExtension_rdfAccountMismatchDialog_smtp.count "use-count">
    1518<!ENTITY vident.virtualIdentityExtension_rdfAccountMismatchDialog_smtp.new "new SMTP (hostname / username)">
    16 <!ENTITY vident.virtualIdentityExtension_rdfAccountMismatchDialog_smtpid.old "stored SMTP / base Identity (SMTP)">
    17 <!ENTITY vident.virtualIdentityExtension_rdfAccountMismatchDialog_smtpid.count "use-count">
    18 <!ENTITY vident.virtualIdentityExtension_rdfAccountMismatchDialog_smtpid.new "new base Identity (SMTP)">
  • locale/es-ES/vI_rdfAccountMismatchDialog.dtd

    r2bdd22 r668208  
    66<!ENTITY vident.virtualIdentityExtension_rdfAccountMismatchDialog_smtp.desc "Some of the previously stored SMTP-servers don't match the current SMTP-Settings. Please select if the folowing stored SMTP-relations should be removed or assign those to existing SMTP servers:"> <!-- translate -->
    77<!ENTITY vident.virtualIdentityExtension_rdfAccountMismatchDialog_smtp.caption "assign related SMTP-server"> <!-- translate -->
     8<!ENTITY vident.virtualIdentityExtension_rdfAccountMismatchDialog_smtpid.desc "The new version of virtual Identity selects the SMTP-server according to the used underlaying base Identity. This collides with some of your stored identity settings where the stored SMTP differs from the one from your permanent identity. Please select if the folowing previously stored SMTP-relations should be removed or reassign those to the right base Identities:">
     9<!ENTITY vident.virtualIdentityExtension_rdfAccountMismatchDialog_smtpid.caption "assign mismatching SMTP-servers:">
    810<!ENTITY vident.virtualIdentityExtension_rdfAccountMismatchDialog_identity.old "previous Identity (email / full Name)"> <!-- translate -->
    911<!ENTITY vident.virtualIdentityExtension_rdfAccountMismatchDialog_identity.count "use-count"> <!-- translate -->
     
    1214<!ENTITY vident.virtualIdentityExtension_rdfAccountMismatchDialog_smtp.count "use-count"> <!-- translate -->
    1315<!ENTITY vident.virtualIdentityExtension_rdfAccountMismatchDialog_smtp.new "new SMTP (hostname / username)"> <!-- translate -->
     16<!ENTITY vident.virtualIdentityExtension_rdfAccountMismatchDialog_smtpid.old "stored SMTP (base Identity  / SMTP)">
     17<!ENTITY vident.virtualIdentityExtension_rdfAccountMismatchDialog_smtpid.count "use-count">
     18<!ENTITY vident.virtualIdentityExtension_rdfAccountMismatchDialog_smtpid.new "new base Identity (SMTP)">
  • locale/fr/vI_rdfAccountMismatchDialog.dtd

    r2bdd22 r668208  
    66<!ENTITY vident.virtualIdentityExtension_rdfAccountMismatchDialog_smtp.desc "Some of the previously stored SMTP-servers don't match the current SMTP-Settings. Please select if the folowing stored SMTP-relations should be removed or assign those to existing SMTP servers:"> <!-- translate -->
    77<!ENTITY vident.virtualIdentityExtension_rdfAccountMismatchDialog_smtp.caption "assign related SMTP-server"> <!-- translate -->
     8<!ENTITY vident.virtualIdentityExtension_rdfAccountMismatchDialog_smtpid.desc "The new version of virtual Identity selects the SMTP-server according to the used underlaying base Identity. This collides with some of your stored identity settings where the stored SMTP differs from the one from your permanent identity. Please select if the folowing previously stored SMTP-relations should be removed or reassign those to the right base Identities:">
     9<!ENTITY vident.virtualIdentityExtension_rdfAccountMismatchDialog_smtpid.caption "assign mismatching SMTP-servers:">
    810<!ENTITY vident.virtualIdentityExtension_rdfAccountMismatchDialog_identity.old "previous Identity (email / full Name)"> <!-- translate -->
    911<!ENTITY vident.virtualIdentityExtension_rdfAccountMismatchDialog_identity.count "use-count"> <!-- translate -->
     
    1214<!ENTITY vident.virtualIdentityExtension_rdfAccountMismatchDialog_smtp.count "use-count"> <!-- translate -->
    1315<!ENTITY vident.virtualIdentityExtension_rdfAccountMismatchDialog_smtp.new "new SMTP (hostname / username)"> <!-- translate -->
     16<!ENTITY vident.virtualIdentityExtension_rdfAccountMismatchDialog_smtpid.old "stored SMTP (base Identity  / SMTP)">
     17<!ENTITY vident.virtualIdentityExtension_rdfAccountMismatchDialog_smtpid.count "use-count">
     18<!ENTITY vident.virtualIdentityExtension_rdfAccountMismatchDialog_smtpid.new "new base Identity (SMTP)">
  • locale/nl/vI_rdfAccountMismatchDialog.dtd

    r2bdd22 r668208  
    66<!ENTITY vident.virtualIdentityExtension_rdfAccountMismatchDialog_smtp.desc "Some of the previously stored SMTP-servers don't match the current SMTP-Settings. Please select if the folowing stored SMTP-relations should be removed or assign those to existing SMTP servers:"> <!-- translate -->
    77<!ENTITY vident.virtualIdentityExtension_rdfAccountMismatchDialog_smtp.caption "assign related SMTP-server"> <!-- translate -->
     8<!ENTITY vident.virtualIdentityExtension_rdfAccountMismatchDialog_smtpid.desc "The new version of virtual Identity selects the SMTP-server according to the used underlaying base Identity. This collides with some of your stored identity settings where the stored SMTP differs from the one from your permanent identity. Please select if the folowing previously stored SMTP-relations should be removed or reassign those to the right base Identities:">
     9<!ENTITY vident.virtualIdentityExtension_rdfAccountMismatchDialog_smtpid.caption "assign mismatching SMTP-servers:">
    810<!ENTITY vident.virtualIdentityExtension_rdfAccountMismatchDialog_identity.old "previous Identity (email / full Name)"> <!-- translate -->
    911<!ENTITY vident.virtualIdentityExtension_rdfAccountMismatchDialog_identity.count "use-count"> <!-- translate -->
     
    1214<!ENTITY vident.virtualIdentityExtension_rdfAccountMismatchDialog_smtp.count "use-count"> <!-- translate -->
    1315<!ENTITY vident.virtualIdentityExtension_rdfAccountMismatchDialog_smtp.new "new SMTP (hostname / username)"> <!-- translate -->
     16<!ENTITY vident.virtualIdentityExtension_rdfAccountMismatchDialog_smtpid.old "stored SMTP (base Identity  / SMTP)">
     17<!ENTITY vident.virtualIdentityExtension_rdfAccountMismatchDialog_smtpid.count "use-count">
     18<!ENTITY vident.virtualIdentityExtension_rdfAccountMismatchDialog_smtpid.new "new base Identity (SMTP)">
  • locale/ru-RU/vI_rdfAccountMismatchDialog.dtd

    r2bdd22 r668208  
    66<!ENTITY vident.virtualIdentityExtension_rdfAccountMismatchDialog_smtp.desc "Some of the previously stored SMTP-servers don't match the current SMTP-Settings. Please select if the folowing stored SMTP-relations should be removed or assign those to existing SMTP servers:"> <!-- translate -->
    77<!ENTITY vident.virtualIdentityExtension_rdfAccountMismatchDialog_smtp.caption "assign related SMTP-server"> <!-- translate -->
     8<!ENTITY vident.virtualIdentityExtension_rdfAccountMismatchDialog_smtpid.desc "The new version of virtual Identity selects the SMTP-server according to the used underlaying base Identity. This collides with some of your stored identity settings where the stored SMTP differs from the one from your permanent identity. Please select if the folowing previously stored SMTP-relations should be removed or reassign those to the right base Identities:">
     9<!ENTITY vident.virtualIdentityExtension_rdfAccountMismatchDialog_smtpid.caption "assign mismatching SMTP-servers:">
    810<!ENTITY vident.virtualIdentityExtension_rdfAccountMismatchDialog_identity.old "previous Identity (email / full Name)"> <!-- translate -->
    911<!ENTITY vident.virtualIdentityExtension_rdfAccountMismatchDialog_identity.count "use-count"> <!-- translate -->
     
    1214<!ENTITY vident.virtualIdentityExtension_rdfAccountMismatchDialog_smtp.count "use-count"> <!-- translate -->
    1315<!ENTITY vident.virtualIdentityExtension_rdfAccountMismatchDialog_smtp.new "new SMTP (hostname / username)"> <!-- translate -->
     16<!ENTITY vident.virtualIdentityExtension_rdfAccountMismatchDialog_smtpid.old "stored SMTP (base Identity  / SMTP)">
     17<!ENTITY vident.virtualIdentityExtension_rdfAccountMismatchDialog_smtpid.count "use-count">
     18<!ENTITY vident.virtualIdentityExtension_rdfAccountMismatchDialog_smtpid.new "new base Identity (SMTP)">
  • skin/v_identity.css

    r2bdd22 r668208  
    55.mismatchLine {
    66    -moz-binding: url("chrome://v_identity/content/bindings/vI_rdfAccountMismatchDialog.xml#mismatch-line");
     7    padding: 10px;
    78}
    89
    910.mismatchMenulist {
    1011    -moz-binding: url("chrome://v_identity/content/bindings/vI_rdfAccountMismatchDialog.xml#mismatch-menulist");
     12    margin: 5px;
    1113}
    1214
     
    1517}
    1618
     19.identityDesc-count-cell {
     20  text-align: center;
     21}
    1722
    1823.selectorListitem {
     
    2732}
    2833
    29 .identityDesc-ext1, .identityDesc-ext2, .identityDesc-count {
     34.identityDesc-count {
     35  text-align: center;
     36}
     37
     38.identityDesc-pre, .identityDesc-mid, .identityDesc-post {
     39  margin: 0;
     40}
     41
     42
     43/*.identityDesc-ext1, .identityDesc-ext2, .identityDesc-count {
    3044    font-style: italic;
    3145    color:      graytext;
    32 }
     46}*/
    3347
    3448#virtualIdentityExtension_rdfDataEditorContent checkbox.vI_plain {
     
    5872checkbox.vI_plain > .checkbox-label-center-box, checkbox.vI_plain > .checkbox-label-box {
    5973    display: none;
     74}
     75
     76#virtualIdentityExtension_rdfAccountMismatchDialog_groupbox description {
     77        font-size: normal;
     78        font-weight: bold;
    6079}
    6180
Note: See TracChangeset for help on using the changeset viewer.