Changeset e4b836
- Timestamp:
- Sep 10, 2018, 5:17:24 PM (4 years ago)
- Branches:
- ng_0.9
- Children:
- 61e3f4
- Parents:
- 00c79a
- Files:
-
- 1 deleted
- 20 edited
Legend:
- Unmodified
- Added
- Removed
-
content/prefDialog/vI_prefDialog.js
r00c79a re4b836 160 160 "VIdent_identity.idSelection_autocreate", 161 161 "VIdent_identity.idSelection_preferExisting", 162 "VIdent_identity.idSelection_ignoreIDs", 163 "VIdent_identity.autoReplyToSelf" 162 "VIdent_identity.idSelection_ignoreIDs" 164 163 ], 165 164 -
content/vI_storage.js
r00c79a re4b836 92 92 Log.debug("awPopupOnCommand '" + element.id + "' '" + element.value + "'"); 93 93 storage.__updateVIdentityFromStorage(element.parentNode.nextSibling.firstChild, currentWindow); 94 if (element.selectedItem.getAttribute("value") == "addr_reply") // if reply-to is manually entered disable AutoReplyToSelf95 currentWindow.document.getElementById("virtualIdentityExtension_autoReplyToSelfLabel").setAttribute("hidden", "true");96 97 94 }, 98 95 -
content/vI_upgrade.js
r00c79a re4b836 141 141 "extensions.virtualIdentity.hide_signature", 142 142 "extensions.virtualIdentity.hide_sMime_messageSignature", 143 "extensions.virtualIdentity.hide_openPGP_messageSignature" 143 "extensions.virtualIdentity.hide_openPGP_messageSignature", 144 "extensions.virtualIdentity.autoReplyToSelf" 144 145 ) 145 146 } -
content/v_identity.js
r00c79a re4b836 30 30 Components.utils.import("resource://v_identity/vI_account.js", virtualIdentityExtension); 31 31 Components.utils.import("resource://v_identity/vI_prefs.js", virtualIdentityExtension); 32 Components.utils.import("resource://v_identity/vI_replyToSelf.js", virtualIdentityExtension);33 32 Components.utils.import("resource://v_identity/vI_accountUtils.js", virtualIdentityExtension); 34 33 Components.utils.import("resource://v_identity/vI_identityData.js", virtualIdentityExtension); … … 138 137 139 138 Log.debug("VIdentity_GenericSendMessage"); 140 141 // if (msgType == Components.interfaces.nsIMsgCompDeliverMode.Now)142 // vI.addReplyToSelf(window);143 139 144 140 // check via virtual / non-virtual constraints and storage results if mail should be sent … … 246 242 Log.debug("initSystemStage2."); 247 243 // Log.debug("document.title=" + document.title + " gMsgCompose=" + gMsgCompose + " msgIdentityMenu=" + document.getElementById("msgIdentity")) 248 // vI.initReplyTo(window);249 244 vI.storage.init(); 250 245 vI.statusmenu.init(); … … 255 250 close: function () { 256 251 vI.storage.clean(); 257 },258 259 adapt_interface: function () {260 if (main.elements.Obj_MsgIdentityPopup) return; // only rearrange the interface once261 262 // initialize the pointers to extension elements263 main.elements.init_base()264 265 // rearrange the positions of some elements266 var parent_hbox = main.elements.Obj_MsgIdentity.parentNode;267 var storage_box = document.getElementById("addresses-box");268 var virtualIdentityExtension_autoReplyToSelfLabel = document.getElementById("virtualIdentityExtension_autoReplyToSelfLabelBox");269 270 storage_box.removeChild(virtualIdentityExtension_autoReplyToSelfLabel);271 parent_hbox.appendChild(virtualIdentityExtension_autoReplyToSelfLabel);272 storage_box.removeChild(main.elements.Area_MsgIdentityHbox);273 parent_hbox.appendChild(main.elements.Area_MsgIdentityHbox);274 275 //main.elements.Obj_MsgIdentity.setAttribute("hidden", "true");276 main.elements.Obj_MsgIdentity.previousSibling.setAttribute("control", "msgIdentity");277 278 var access_label = parent_hbox.getElementsByAttribute("control", "msgIdentity")[0];279 if (access_label) access_label.setAttribute("control", "msgIdentity");280 281 // initialize the pointers to extension elements (initialize those earlier might brake the interface)282 main.elements.init_rest();283 252 }, 284 253 -
content/v_identity.xul
r00c79a re4b836 64 64 </menupopup> 65 65 </popupset> 66 <!-- <popupset>67 <menupopup id="virtualIdentityExtension_vIAutoReplyToSelfMenu">68 <menuitem type="menuitem-iconic" label="&vident.composeDialog.autoReplyToSelf.menuLabel;"69 oncommand="document.getElementById('virtualIdentityExtension_autoReplyToSelfLabel').setAttribute('hidden', 'true');"/>70 </menupopup>71 </popupset>-->72 66 <popupset> 73 67 <tooltip id="virtualIdentityExtension_statusMenuTooltip" orient="vertical" > -
defaults/preferences/preferences.js
r00c79a re4b836 47 47 pref("extensions.virtualIdentity.idSelection_removeSmartIdentityFromRecipients", true); 48 48 pref("extensions.virtualIdentity.idSelection_ignoreIDs", ""); 49 pref("extensions.virtualIdentity.autoReplyToSelf", false);50 49 pref("extensions.{dddd428e-5ac8-4a81-9f78-276c734f75b8}.description", "chrome://v_identity/locale/v_identity.properties"); -
locale/cs-CZ/vI_prefDialog.dtd
r00c79a re4b836 87 87 <!ENTITY vI_prefDialog.composeDialog.autoTimeFormat.label "Format of Timestamp: Leave empty or use strftime() syntax ('%Y%m%d%H%M%S')"> <!-- translate --> 88 88 <!ENTITY vI_prefDialog.composeDialog.autoTimeString.label "Format of Result: %l localpart, %t timestamp, %d domain. Default '%l%t@%d'"> <!-- translate --> 89 <!ENTITY vI_prefDialog.composeDialog.autoReplyToSelf.label "nastavit Virtual Identity jako adresu pro Reply-To">90 89 <!ENTITY vI_prefDialog.composeDialog.status.label "show Status-Bar infos / menu"> <!-- translate --> 91 90 <!ENTITY vI_prefDialog.composeDialog.status.tooltiptext "show Notifications in Status-Bar, display Status-Bar Menu"> <!-- translate --> -
locale/cs-CZ/v_identity.dtd
r00c79a re4b836 3 3 <!ENTITY vident.composeDialog.storageSave.label "uloÅŸit"> 4 4 <!ENTITY vident.composeDialog.storageSave.tooltiptext "uloÅŸit identitu pÅi odesÃlánÃ"> 5 <!ENTITY vident.composeDialog.autoReplyToSelf.label "(=Reply-To)">6 <!ENTITY vident.composeDialog.autoReplyToSelf.menuLabel "zakázat synchronizaci Reply-To">7 5 <!ENTITY vident.replySelector.dialogheader.title "Virtuálnà identita"> 8 6 <!ENTITY vident.replySelector.caption.label "Zvolte si virtuálnà identitu"> -
locale/de-DE/vI_prefDialog.dtd
r00c79a re4b836 87 87 <!ENTITY vI_prefDialog.composeDialog.autoTimeFormat.label "Format des Zeitstempels: Leer lassen oder die strftime()-Syntax nutzen ('%Y%m%d%H%M%S')"> <!-- translate --> 88 88 <!ENTITY vI_prefDialog.composeDialog.autoTimeString.label "Format des Absenders: %l lokaler Teil, %t Zeitstempel, %d domain. Default '%l%t@%d'"> <!-- translate --> 89 <!ENTITY vI_prefDialog.composeDialog.autoReplyToSelf.label "setze Virtuelle IdentitÀt als Reply-To Adresse">90 89 <!ENTITY vI_prefDialog.composeDialog.status.label "zeige Status-Bar Infos / Menu"> 91 90 <!ENTITY vI_prefDialog.composeDialog.status.tooltiptext "zeigt Hinweise im Status-Bar sowie Status-Bar Menu"> -
locale/de-DE/v_identity.dtd
r00c79a re4b836 3 3 <!ENTITY vident.composeDialog.storageSave.label "speichern"> 4 4 <!ENTITY vident.composeDialog.storageSave.tooltiptext "speichere IdentitÀt beim Senden"> 5 <!ENTITY vident.composeDialog.autoReplyToSelf.label "(=Reply-To)">6 <!ENTITY vident.composeDialog.autoReplyToSelf.menuLabel "deaktiviere Reply-To Synchronisation">7 5 <!ENTITY vident.replySelector.dialogheader.title "Virtual Identity"> 8 6 <!ENTITY vident.replySelector.caption.label "WÀhlen Sie eine Virtuelle IdentitÀt"> -
locale/en-US/vI_prefDialog.dtd
r00c79a re4b836 86 86 <!ENTITY vI_prefDialog.composeDialog.autoTimeFormat.label "Format of Timestamp: Leave empty or use strftime() syntax ('%Y%m%d%H%M%S')"> 87 87 <!ENTITY vI_prefDialog.composeDialog.autoTimeString.label "Format of Result: %l localpart, %t timestamp, %d domain. Default '%l%t@%d'"> 88 <!ENTITY vI_prefDialog.composeDialog.autoReplyToSelf.label "set Virtual Identity as Reply-To address">89 88 <!ENTITY vI_prefDialog.composeDialog.status.label "show Status-Bar infos / menu"> 90 89 <!ENTITY vI_prefDialog.composeDialog.status.tooltiptext "show Notifications in Status-Bar, display Status-Bar Menu"> -
locale/en-US/v_identity.dtd
r00c79a re4b836 3 3 <!ENTITY vident.composeDialog.storageSave.label "save"> 4 4 <!ENTITY vident.composeDialog.storageSave.tooltiptext "save Identity while sending"> 5 <!ENTITY vident.composeDialog.autoReplyToSelf.label "(=Reply-To)">6 <!ENTITY vident.composeDialog.autoReplyToSelf.menuLabel "disable Reply-To synchronization">7 5 <!ENTITY vident.replySelector.dialogheader.title "Virtual Identity"> 8 6 <!ENTITY vident.replySelector.caption.label "Choose a Virtual Identity"> -
locale/es-ES/vI_prefDialog.dtd
r00c79a re4b836 87 87 <!ENTITY vI_prefDialog.composeDialog.autoTimeFormat.label "Format of Timestamp: Leave empty or use strftime() syntax ('%Y%m%d%H%M%S')"> <!-- translate --> 88 88 <!ENTITY vI_prefDialog.composeDialog.autoTimeString.label "Format of Result: %l localpart, %t timestamp, %d domain. Default '%l%t@%d'"> <!-- translate --> 89 <!ENTITY vI_prefDialog.composeDialog.autoReplyToSelf.label "establecer la identidad virtual como la dirección a la que responder">90 89 <!ENTITY vI_prefDialog.composeDialog.status.label "show Status-Bar infos / menu"> <!-- translate --> 91 90 <!ENTITY vI_prefDialog.composeDialog.status.tooltiptext "show Notifications in Status-Bar, display Status-Bar Menu"> <!-- translate --> -
locale/es-ES/v_identity.dtd
r00c79a re4b836 3 3 <!ENTITY vident.composeDialog.storageSave.label "guardar"> 4 4 <!ENTITY vident.composeDialog.storageSave.tooltiptext "guardar la identidad al enviar"> 5 <!ENTITY vident.composeDialog.autoReplyToSelf.label "(=Reply-To)">6 <!ENTITY vident.composeDialog.autoReplyToSelf.menuLabel "deshabilitar la sincronización reply-to">7 5 <!ENTITY vident.replySelector.dialogheader.title "Virtual Identity"> 8 6 <!ENTITY vident.replySelector.caption.label "Elegir una identidad virtual"> -
locale/fr/vI_prefDialog.dtd
r00c79a re4b836 87 87 <!ENTITY vI_prefDialog.composeDialog.autoTimeFormat.label "Format of Timestamp: Leave empty or use strftime() syntax ('%Y%m%d%H%M%S')"> <!-- translate --> 88 88 <!ENTITY vI_prefDialog.composeDialog.autoTimeString.label "Format of Result: %l localpart, %t timestamp, %d domain. Default '%l%t@%d'"> <!-- translate --> 89 <!ENTITY vI_prefDialog.composeDialog.autoReplyToSelf.label "utiliser Virtual Identity pour une adresse de 'réponse à '">90 89 <!ENTITY vI_prefDialog.composeDialog.status.label "show Status-Bar infos / menu"> <!-- translate --> 91 90 <!ENTITY vI_prefDialog.composeDialog.status.tooltiptext "show Notifications in Status-Bar, display Status-Bar Menu"> <!-- translate --> -
locale/fr/v_identity.dtd
r00c79a re4b836 3 3 <!ENTITY vident.composeDialog.storageSave.label "enregistrer"> 4 4 <!ENTITY vident.composeDialog.storageSave.tooltiptext "enregistrer une identité pendant l'envoi"> 5 <!ENTITY vident.composeDialog.autoReplyToSelf.label "(=Répondre à )">6 <!ENTITY vident.composeDialog.autoReplyToSelf.menuLabel "Désactiver la synchronisation de Répondre à ">7 5 <!ENTITY vident.replySelector.dialogheader.title "Identité virtuelle"> 8 6 <!ENTITY vident.replySelector.caption.label "Choisissez une identité virtuelle"> -
locale/nl/vI_prefDialog.dtd
r00c79a re4b836 87 87 <!ENTITY vI_prefDialog.composeDialog.autoTimeFormat.label "Format of Timestamp: Leave empty or use strftime() syntax ('%Y%m%d%H%M%S')"> <!-- translate --> 88 88 <!ENTITY vI_prefDialog.composeDialog.autoTimeString.label "Format of Result: %l localpart, %t timestamp, %d domain. Default '%l%t@%d'"> <!-- translate --> 89 <!ENTITY vI_prefDialog.composeDialog.autoReplyToSelf.label "Virtuele identiteit als Reply-To-adres instellen">90 89 <!ENTITY vI_prefDialog.composeDialog.status.label "show Status-Bar infos / menu"> <!-- translate --> 91 90 <!ENTITY vI_prefDialog.composeDialog.status.tooltiptext "show Notifications in Status-Bar, display Status-Bar Menu"> <!-- translate --> -
locale/nl/v_identity.dtd
r00c79a re4b836 3 3 <!ENTITY vident.composeDialog.storageSave.label "Opslaan"> 4 4 <!ENTITY vident.composeDialog.storageSave.tooltiptext "Identiteit opslaan bij verzenden"> 5 <!ENTITY vident.composeDialog.autoReplyToSelf.label "(=Reply-To)">6 <!ENTITY vident.composeDialog.autoReplyToSelf.menuLabel "Reply-To-synchronisatie uitschakelen">7 5 <!ENTITY vident.replySelector.dialogheader.title "Virtual Identity"> 8 6 <!ENTITY vident.replySelector.caption.label "Kies een virtuele identiteit"> -
locale/ru-RU/vI_prefDialog.dtd
r00c79a re4b836 169 169 <!ENTITY vI_prefDialog.composeDialog.autoTimeFormat.label "Format of Timestamp: Leave empty or use strftime() syntax ('%Y%m%d%H%M%S')"> <!-- translate --> 170 170 <!ENTITY vI_prefDialog.composeDialog.autoTimeString.label "Format of Result: %l localpart, %t timestamp, %d domain. Default '%l%t@%d'"> <!-- translate --> 171 <!ENTITY vI_prefDialog.composeDialog.autoReplyToSelf.label "УÑÑаМавлОваÑÑ Ð²ÐžÑÑÑалÑМÑе лОÑМÑе ЎаММÑе в каÑеÑÑве ПбÑаÑМПгП аЎÑеÑа (Reply-To)">172 171 <!ENTITY vI_prefDialog.composeDialog.status.label "show Status-Bar infos / menu"> <!-- translate --> 173 172 <!ENTITY vI_prefDialog.composeDialog.status.tooltiptext "show Notifications in Status-Bar, display Status-Bar Menu"> <!-- translate --> -
locale/ru-RU/v_identity.dtd
r00c79a re4b836 6 6 ÑаМОÑÑ ÑекÑÑОе ЎаММÑе в Ñ 7 7 ÑаМОлОÑе пÑО ПÑпÑавке ÑППбÑеМОÑ"> 8 <!ENTITY vident.composeDialog.autoReplyToSelf.label "(= ÐбÑаÑМÑй аЎÑÐµÑ (Reply-To))">9 <!ENTITY vident.composeDialog.autoReplyToSelf.menuLabel "ÐапÑеÑОÑÑ ÑОМÑ10 ÑПМОзаÑÐžÑ ÐŸÐ±ÑаÑМПгП аЎÑеÑа (Reply-To)">11 8 <!ENTITY vident.replySelector.dialogheader.title "ÐОÑÑÑалÑМÑе лОÑМÑе ЎаММÑе"> 12 9 <!ENTITY vident.replySelector.caption.label "ÐÑбÑаÑÑ Ð²ÐžÑÑÑалÑМÑе лОÑМÑе ЎаММÑе">
Note: See TracChangeset
for help on using the changeset viewer.