mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-05-23 04:15:26 +00:00
Monotone-Parent: 88c5085f8ba96b5bcd3673fdb4d97d3db679ba9b
Monotone-Revision: d38b82f4d070ced8ba970b79c220008c590b1e3d Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2007-11-07T17:40:16 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -6,6 +6,7 @@
|
||||
"General" = "General";
|
||||
"Calendar Options" = "Calendar Options";
|
||||
"Mail Options" = "Mail Options";
|
||||
"Identities" = "Identities";
|
||||
"Password" = "Password";
|
||||
|
||||
/* ooo */
|
||||
|
||||
@@ -6,6 +6,7 @@
|
||||
"General" = "Général";
|
||||
"Calendar Options" = "Calendrier";
|
||||
"Mail Options" = "Courrier";
|
||||
"Identities" = "Identités";
|
||||
"Password" = "Mot de passe";
|
||||
|
||||
/* ooo */
|
||||
@@ -79,6 +80,7 @@
|
||||
"messageforward_inline" = "intégrés";
|
||||
"messageforward_attached" = "en pièces jointes";
|
||||
|
||||
/* Identities */
|
||||
"Default identity:" = "Identité par défaut :";
|
||||
"Manage identities..." = "Gérer les identitiés...";
|
||||
|
||||
|
||||
@@ -6,6 +6,7 @@
|
||||
"General" = "Allgemein";
|
||||
"Calendar Options" = "Kalender";
|
||||
"Mail Options" = "E-Mail";
|
||||
"Identities" = "Identities";
|
||||
"Password" = "Passwort";
|
||||
|
||||
/* ooo */
|
||||
|
||||
@@ -19,6 +19,8 @@
|
||||
label:value="Calendar Options"/></li>
|
||||
<li target="mailOptionsView"><var:string
|
||||
label:value="Mail Options"/></li>
|
||||
<!-- <li target="identitiesView"><var:string
|
||||
label:value="Identities"/></li> -->
|
||||
<var:if condition="shouldDisplayPasswordChange">
|
||||
<li target="passwordView"><var:string label:value="Password"/></li>
|
||||
</var:if>
|
||||
@@ -80,12 +82,6 @@
|
||||
<label><var:string label:value="Forward messages:"/>
|
||||
<var:popup list="messageForwardingList" item="item"
|
||||
string="itemMessageForwardingText" selection="userMessageForwarding"/></label><br/>
|
||||
<label><var:string label:value="Default identity:"/>
|
||||
<var:popup list="identitiesList" item="item"
|
||||
string="itemIdentityText" selection="defaultIdentity"/></label>
|
||||
<input type="button" class="button" id="manageIdentitiesBtn"
|
||||
label:value="Manage identities..."/>
|
||||
<br/>
|
||||
<!-- <label><input
|
||||
const:name="inTheOffice" type="radio" const:value="YES"
|
||||
var:selection="inTheOffice"/>
|
||||
@@ -100,6 +96,12 @@
|
||||
<textarea const:name="autoReplyText" var:value="autoReplyText"/>
|
||||
</label> -->
|
||||
</div>
|
||||
<div id="identitiesView" class="tab">
|
||||
<var:multiselection id="identitiesList" item="item"
|
||||
string="itemIdentityText" selection="defaultIdentity">
|
||||
</var:multiselection>
|
||||
<br/>
|
||||
</div>
|
||||
<var:if condition="shouldDisplayPasswordChange">
|
||||
<div id="passwordView" class="tab">
|
||||
<label><var:string label:value="New password:"
|
||||
|
||||
@@ -3,21 +3,3 @@ function savePreferences(sender) {
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
function initPreferences() {
|
||||
var identitiesBtn = $("manageIdentitiesBtn");
|
||||
Event.observe(identitiesBtn, "click",
|
||||
popupIdentitiesWindow.bindAsEventListener(identitiesBtn));
|
||||
}
|
||||
|
||||
function popupIdentitiesWindow(event) {
|
||||
var urlstr = UserFolderURL + "identities";
|
||||
var w = window.open(urlstr, "identities",
|
||||
"width=430,height=250,resizable=0,scrollbars=0,location=0");
|
||||
w.opener = window;
|
||||
w.focus();
|
||||
|
||||
preventDefault(event);
|
||||
}
|
||||
|
||||
addEvent(window, 'load', initPreferences);
|
||||
|
||||
Reference in New Issue
Block a user