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

Changeset 00c79a


Ignore:
Timestamp:
Sep 10, 2018, 5:06:38 PM (4 years ago)
Author:
rene <rene@…>
Branches:
ng_0.9
Children:
e4b836
Parents:
bb471e
Message:

remove signatureswitch features finally, signatureswitch extension does not work with TB60

Files:
11 edited

Legend:

Unmodified
Added
Removed
  • content/prefDialog/vI_prefDialog.js

    rbb471e r00c79a  
    139139          "VIdent_identity.warn_nonvirtual",
    140140          "VIdent_identity.warn_virtual",
    141           "VIdent_identity.hide_signature",
    142           "VIdent_identity.hide_sMime_messageSignature",
    143           "VIdent_identity.hide_openPGP_messageSignature",
    144141          "VIdent_identity.storage",
    145142          "VIdent_identity.storage_store",
     
    285282        },
    286283
    287         smartReplyHideSignature: function () {
    288           // check for signature_switch extension
    289           AddonManager.getAddonByID("{2ab1b709-ba03-4361-abf9-c50b964ff75d}", function (addon) {
    290             if (addon && !addon.userDisabled && !addon.appDisable) {
    291               document.getElementById("VIdent_identity.HideSignature.warning").setAttribute("hidden", "true");
    292               document.getElementById("VIdent_identity.hide_signature").setAttribute("disabled", "false");
    293             }
    294           });
    295         },
    296 
    297284        autoTimestampConstraint: function (element) {
    298285          var mAttr = prefDialog.base.modifyAttribute;
     
    352339
    353340        prefDialog.base.smartReplyConstraint(document.getElementById("VIdent_identity.smart_reply"));
    354         prefDialog.base.smartReplyHideSignature();
    355341        prefDialog.base.storageConstraint(document.getElementById("VIdent_identity.storage"));
    356342        prefDialog.base.autoTimestampConstraint(document.getElementById("VIdent_identity.autoTimestamp"));
  • content/prefDialog/vI_prefDialog.xul

    rbb471e r00c79a  
    332332                        </vbox>
    333333                    </hbox>
    334                     <description id="VIdent_identity.HideSignature.warning" class="widthXX">&vI_prefDialog.composeDialog.HideSignature.warning.desc;</description>
    335                     <checkbox id="VIdent_identity.hide_signature" label="&vI_prefDialog.composeDialog.HideSignature.label;" disabled="true"
    336                         prefstring="hide_signature"/>
    337                     <checkbox id="VIdent_identity.hide_sMime_messageSignature" label="&vI_prefDialog.composeDialog.HideSMimeSignature.label;"
    338                         prefstring="hide_sMime_messageSignature"/>
    339                     <checkbox id="VIdent_identity.hide_openPGP_messageSignature" label="&vI_prefDialog.composeDialog.HideOpenPGPSignature.label;"
    340                         prefstring="hide_openPGP_messageSignature" hidden="true"/>
    341                     <checkbox id="VIdent_identity.autoReplyToSelf" label="&vI_prefDialog.composeDialog.autoReplyToSelf.label;"
    342                         prefstring="autoReplyToSelf"/>
    343334                </groupbox>
    344335            </tabpanel>
  • content/vI_upgrade.js

    rbb471e r00c79a  
    138138            "extensions.virtualIdentity.storageExtras_openPGP_messageEncryption",
    139139            "extensions.virtualIdentity.storageExtras_openPGP_messageSignature",
    140             "extensions.virtualIdentity.storageExtras_openPGP_PGPMIME"
     140            "extensions.virtualIdentity.storageExtras_openPGP_PGPMIME",
     141            "extensions.virtualIdentity.hide_signature",
     142            "extensions.virtualIdentity.hide_sMime_messageSignature",
     143            "extensions.virtualIdentity.hide_openPGP_messageSignature"
    141144            )
    142145        }
  • defaults/preferences/preferences.js

    rbb471e r00c79a  
    2424pref("extensions.virtualIdentity.warn_nonvirtual", false);
    2525pref("extensions.virtualIdentity.warn_virtual", false);
    26 pref("extensions.virtualIdentity.hide_signature", false);
    27 pref("extensions.virtualIdentity.hide_sMime_messageSignature", false);
    28 pref("extensions.virtualIdentity.hide_openPGP_messageSignature", false);
    2926pref("extensions.virtualIdentity.storage", true);
    3027pref("extensions.virtualIdentity.storage_store", true);
  • locale/cs-CZ/vI_prefDialog.dtd

    rbb471e r00c79a  
    8787<!ENTITY vI_prefDialog.composeDialog.autoTimeFormat.label "Format of Timestamp: Leave empty or use strftime() syntax (&apos;&#37;Y&#37;m&#37;d&#37;H&#37;M&#37;S&apos;)"> <!-- translate -->
    8888<!ENTITY vI_prefDialog.composeDialog.autoTimeString.label "Format of Result: &#37;l localpart, &#37;t timestamp, &#37;d domain. Default &apos;&#37;l&#37;t@&#37;d&apos;"> <!-- translate -->
    89 <!ENTITY vI_prefDialog.composeDialog.HideSignature.warning.desc "poznámka: pro aktivaci dynamického odstraňování podpisu je potřeba nainstalovat a aktivovat rozšíření 'Signature Switch'. Nyní tato volba není dostupná.">
    90 <!ENTITY vI_prefDialog.composeDialog.HideSignature.label "při pouÅŸití virtuální identity odstranit podpis">
    91 <!ENTITY vI_prefDialog.composeDialog.HideSMimeSignature.label "při pouÅŸití Virtual Identity vypnout S/MIME podpis">
    92 <!ENTITY vI_prefDialog.composeDialog.HideOpenPGPSignature.label "při pouÅŸití Virtual Identity vypnout openPGP podpis">
    9389<!ENTITY vI_prefDialog.composeDialog.autoReplyToSelf.label "nastavit Virtual Identity jako adresu pro Reply-To">
    9490<!ENTITY vI_prefDialog.composeDialog.status.label "show Status-Bar infos / menu"> <!-- translate -->
  • locale/de-DE/vI_prefDialog.dtd

    rbb471e r00c79a  
    8787<!ENTITY vI_prefDialog.composeDialog.autoTimeFormat.label "Format des Zeitstempels: Leer lassen oder die strftime()-Syntax nutzen (&apos;&#37;Y&#37;m&#37;d&#37;H&#37;M&#37;S&apos;)"> <!-- translate -->
    8888<!ENTITY vI_prefDialog.composeDialog.autoTimeString.label "Format des Absenders: &#37;l lokaler Teil, &#37;t Zeitstempel, &#37;d domain. Default &apos;&#37;l&#37;t@&#37;d&apos;"> <!-- translate -->
    89 <!ENTITY vI_prefDialog.composeDialog.HideSignature.warning.desc "Hinweis: Zur dynamischen Abschaltung der &apos;Signatur&apos; muss die Erweiterung &apos;Signature Switch&apos; installiert (und aktiviert) sein. Zur Zeit steht diese Option nicht zur VerfÃŒgung.">
    90 <!ENTITY vI_prefDialog.composeDialog.HideSignature.label "entferne eine &apos;Signatur&apos; bei Nutzung einer Virtuellen IdentitÀt">
    91 <!ENTITY vI_prefDialog.composeDialog.HideSMimeSignature.label "entferne S/MIME Signatur Nutzung einer Virtuellen IdentitÀt">
    92 <!ENTITY vI_prefDialog.composeDialog.HideOpenPGPSignature.label "entferne openPGP Signatur bei Nutzung einer Virtuellen IdentitÀt">
    9389<!ENTITY vI_prefDialog.composeDialog.autoReplyToSelf.label "setze Virtuelle IdentitÀt als Reply-To Adresse">
    9490<!ENTITY vI_prefDialog.composeDialog.status.label "zeige Status-Bar Infos / Menu">
  • locale/en-US/vI_prefDialog.dtd

    rbb471e r00c79a  
    8686<!ENTITY vI_prefDialog.composeDialog.autoTimeFormat.label "Format of Timestamp: Leave empty or use strftime() syntax (&apos;&#37;Y&#37;m&#37;d&#37;H&#37;M&#37;S&apos;)">
    8787<!ENTITY vI_prefDialog.composeDialog.autoTimeString.label "Format of Result: &#37;l localpart, &#37;t timestamp, &#37;d domain. Default &apos;&#37;l&#37;t@&#37;d&apos;">
    88 <!ENTITY vI_prefDialog.composeDialog.HideSignature.warning.desc "note: to enable dynamic deactivation of signatures you have to install (and activate) the &apos;Signature Switch&apos; extension. By now this option is not available.">
    89 <!ENTITY vI_prefDialog.composeDialog.HideSignature.label "remove any &apos;Signature&apos; while using a Virtual Identity">
    90 <!ENTITY vI_prefDialog.composeDialog.HideSMimeSignature.label "deactivate S/MIME signature when using a Virtual Identity">
    91 <!ENTITY vI_prefDialog.composeDialog.HideOpenPGPSignature.label "deactivate openPGP signature when using a Virtual Identity">
    9288<!ENTITY vI_prefDialog.composeDialog.autoReplyToSelf.label "set Virtual Identity as Reply-To address">
    9389<!ENTITY vI_prefDialog.composeDialog.status.label "show Status-Bar infos / menu">
  • locale/es-ES/vI_prefDialog.dtd

    rbb471e r00c79a  
    8787<!ENTITY vI_prefDialog.composeDialog.autoTimeFormat.label "Format of Timestamp: Leave empty or use strftime() syntax (&apos;&#37;Y&#37;m&#37;d&#37;H&#37;M&#37;S&apos;)"> <!-- translate -->
    8888<!ENTITY vI_prefDialog.composeDialog.autoTimeString.label "Format of Result: &#37;l localpart, &#37;t timestamp, &#37;d domain. Default &apos;&#37;l&#37;t@&#37;d&apos;"> <!-- translate -->
    89 <!ENTITY vI_prefDialog.composeDialog.HideSignature.warning.desc "nota: para habilitar la desactivación dinámica de firmas tiene que instalar (y activar) la extensión 'Signature Switch'. Por ahora, esta opción no está disponible.">
    90 <!ENTITY vI_prefDialog.composeDialog.HideSignature.label "eliminar cualquier firma cuando se use una identidad virtual">
    91 <!ENTITY vI_prefDialog.composeDialog.HideSMimeSignature.label "desactivar la firma S/MIME al usar una identidad virtual">
    92 <!ENTITY vI_prefDialog.composeDialog.HideOpenPGPSignature.label "desactivar la firma openPGP al usar una identidad virtual">
    9389<!ENTITY vI_prefDialog.composeDialog.autoReplyToSelf.label "establecer la identidad virtual como la dirección a la que responder">
    9490<!ENTITY vI_prefDialog.composeDialog.status.label "show Status-Bar infos / menu"> <!-- translate -->
  • locale/fr/vI_prefDialog.dtd

    rbb471e r00c79a  
    8787<!ENTITY vI_prefDialog.composeDialog.autoTimeFormat.label "Format of Timestamp: Leave empty or use strftime() syntax (&apos;&#37;Y&#37;m&#37;d&#37;H&#37;M&#37;S&apos;)"> <!-- translate -->
    8888<!ENTITY vI_prefDialog.composeDialog.autoTimeString.label "Format of Result: &#37;l localpart, &#37;t timestamp, &#37;d domain. Default &apos;&#37;l&#37;t@&#37;d&apos;"> <!-- translate -->
    89 <!ENTITY vI_prefDialog.composeDialog.HideSignature.warning.desc "Remarque : pour lancer la désactivation dynamique des signatures vous devez installer et activer l'extension &apos;Signature Switch&apos;. Pour le moment cette option n'est pas disponible.">
    90 <!ENTITY vI_prefDialog.composeDialog.HideSignature.label "supprimer toute &apos;Signature&apos; en utilisant Virtual Identity">
    91 <!ENTITY vI_prefDialog.composeDialog.HideSMimeSignature.label "désactiver la signature S/MIME en cas d'utilisation de Virtual Identity">
    92 <!ENTITY vI_prefDialog.composeDialog.HideOpenPGPSignature.label "désactiver la signature openPGP en cas d'utilisation de Virtual Identity">
    9389<!ENTITY vI_prefDialog.composeDialog.autoReplyToSelf.label "utiliser Virtual Identity pour une adresse de &apos;réponse à&apos;">
    9490<!ENTITY vI_prefDialog.composeDialog.status.label "show Status-Bar infos / menu"> <!-- translate -->
  • locale/nl/vI_prefDialog.dtd

    rbb471e r00c79a  
    8787<!ENTITY vI_prefDialog.composeDialog.autoTimeFormat.label "Format of Timestamp: Leave empty or use strftime() syntax (&apos;&#37;Y&#37;m&#37;d&#37;H&#37;M&#37;S&apos;)"> <!-- translate -->
    8888<!ENTITY vI_prefDialog.composeDialog.autoTimeString.label "Format of Result: &#37;l localpart, &#37;t timestamp, &#37;d domain. Default &apos;&#37;l&#37;t@&#37;d&apos;"> <!-- translate -->
    89 <!ENTITY vI_prefDialog.composeDialog.HideSignature.warning.desc "Opmerking: Om dynamisch deactiveren van handtekeningen in te schakelen dient u de ‘Signature Switch’ extensie te installeren (en activeren). Op dit moment is deze optie niet beschikbaar.">
    90 <!ENTITY vI_prefDialog.composeDialog.HideSignature.label "Alle handtekeningen verwijderen bij gebruik van een virtuele identiteit">
    91 <!ENTITY vI_prefDialog.composeDialog.HideSMimeSignature.label "S/MIME-ondertekening deactiveren bij gebruik virtuele identiteit">
    92 <!ENTITY vI_prefDialog.composeDialog.HideOpenPGPSignature.label "openPGP-ondertekening deactiveren bij gebruik virtuele identiteit">
    9389<!ENTITY vI_prefDialog.composeDialog.autoReplyToSelf.label "Virtuele identiteit als Reply-To-adres instellen">
    9490<!ENTITY vI_prefDialog.composeDialog.status.label "show Status-Bar infos / menu"> <!-- translate -->
  • locale/ru-RU/vI_prefDialog.dtd

    rbb471e r00c79a  
    169169<!ENTITY vI_prefDialog.composeDialog.autoTimeFormat.label "Format of Timestamp: Leave empty or use strftime() syntax (&apos;&#37;Y&#37;m&#37;d&#37;H&#37;M&#37;S&apos;)"> <!-- translate -->
    170170<!ENTITY vI_prefDialog.composeDialog.autoTimeString.label "Format of Result: &#37;l localpart, &#37;t timestamp, &#37;d domain. Default &apos;&#37;l&#37;t@&#37;d&apos;"> <!-- translate -->
    171 <!ENTITY vI_prefDialog.composeDialog.HideSignature.warning.desc "ОбратОте вМОЌаМОе: чтПбы пПзвПлять ЎОМаЌОческую ЎезактОвацОю пПЎпОсей, Вы ЎПлжМы устаМПвОть (О актОвОзОрПвать) расшОреМОе «Signature Switch». В МастПящОй ЌПЌеМт ЎаММая ПпцОя Ме ЎПступМа.">
    172 <!ENTITY vI_prefDialog.composeDialog.HideSignature.label "УЎалять любые пПЎпОсО прО ОспПльзПваМОО вОртуальМыÑ
    173  Ð»ÐžÑ‡ÐœÑ‹Ñ
    174  ÐŽÐ°ÐœÐœÑ‹Ñ
    175 ">
    176 <!ENTITY vI_prefDialog.composeDialog.HideSMimeSignature.label "ДеактОвОрПвать цОфрПвые пПЎпОсО S/MIME прО ОспПльзПваМОО вОртуальМыÑ
    177  Ð»ÐžÑ‡ÐœÑ‹Ñ
    178  ÐŽÐ°ÐœÐœÑ‹Ñ
    179 ">
    180 <!ENTITY vI_prefDialog.composeDialog.HideOpenPGPSignature.label "ДеактОвОрПвать цОфрПвые пПЎпОсО openPGP прО ОспПльзПваМОО вОртуальМыÑ
    181  Ð»ÐžÑ‡ÐœÑ‹Ñ
    182  ÐŽÐ°ÐœÐœÑ‹Ñ
    183 ">
    184171<!ENTITY vI_prefDialog.composeDialog.autoReplyToSelf.label "УстаМавлОвать вОртуальМые лОчМые ЎаММые в качестве ПбратМПгП аЎреса (Reply-To)">
    185172<!ENTITY vI_prefDialog.composeDialog.status.label "show Status-Bar infos / menu"> <!-- translate -->
Note: See TracChangeset for help on using the changeset viewer.