Overview
Context
Changes
Added gc_lang/fr/mailext/chrome.manifest version [8b108fd6a7].
|
1
2
3
4
5
6
7
8
9
|
+
+
+
+
+
+
+
+
+
|
# https://developer.mozilla.org/en-US/docs/Chrome_Registration
content grammarchecker content/
content promiseworker ./worker/
resource grammalecte ./grammalecte/
locale grammarchecker fr locale/fr/
locale grammarchecker en locale/en/
skin grammarchecker classic/1.0 skin/
overlay chrome://messenger/content/messengercompose/messengercompose.xul chrome://grammarchecker/content/overlay.xul
style chrome://messenger/content/customizeToolbar.xul chrome://grammarchecker/content/overlay.css
|
| | | | | | | |
Added gc_lang/fr/mailext/content/about.css version [0c03b7bf9e].
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
|
/* CSS */
.descr {
font-size: 18px;
font-weight: bold;
text-align: center;
}
.stdlabel {
font-size: 16px;
text-align: center;
}
#website {
font-size: 16px;
font-weight: bold;
color: hsl(210, 50%, 50%);
text-align: center;
cursor: pointer;
}
#contrib {
font-size: 16px;
text-align: center;
color: hsl(210, 50%, 50%);
cursor: pointer;
}
/*
TB Next: fix dialogheaders
*/
dialogheader {
-moz-binding: url("chrome://messenger/content/generalBindings.xml#dialogheader");
margin: 0 5px 5px;
border: 1px solid ThreeDDarkShadow;
padding: 5px 8px;
background-color: Highlight;
color: HighlightText;
}
.dialogheader-title {
margin: 0 !important;
font-size: larger;
font-weight: bold;
}
|
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |
Added gc_lang/fr/mailext/content/about.js version [94f44e1159].
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
|
// JavaScript
const Cc = Components.classes;
const Ci = Components.interfaces;
//const Cu = Components.utils;
function openInBrowserURL (sURL) {
// method found in S3.Google.Translator
try {
openURL(sURL);
// Works in overlay.js, but not here… Seems there is no documentation available about this feature on Mozilla.org
}
catch (e) {
console.error(e);
//Cu.reportError(e);
}
}
function openInTabURL (sURL) {
// method found in S3.Google.Translator
try {
let xWM = Cc["@mozilla.org/appshell/window-mediator;1"].getService(Ci.nsIWindowMediator);
let xWin = xWM.getMostRecentWindow("mail:3pane");
let xTabmail = xWin.document.getElementById('tabmail');
xWin.focus();
if (xTabmail) {
xTabmail.openTab('contentTab', { contentPage: sURL });
}
}
catch (e) {
console.error(e);
//Cu.reportError(e);
}
}
|
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |
Added gc_lang/fr/mailext/content/about.xul version [6f2fa2e063].
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
|
<?xml version="1.0"?>
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
<?xml-stylesheet href="chrome://grammarchecker/content/about.css" type="text/css"?>
<!DOCTYPE dialog SYSTEM "chrome://grammarchecker/locale/about.dtd">
<dialog
id="grammalecte-about-window"
title="&windowtitle;"
orient="vertical"
buttons="accept"
width="300"
onload="document.getElementById('grammalecte-about-window').centerWindowOnScreen();"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
<!-- Other elements go here -->
<description style="text-align: center;">
<image src="chrome://grammarchecker/skin/logo120_text.png" />
</description>
<label class="descr">&description1;</label>
<label class="descr">&description2;</label>
<label class="stdlabel" value="&version; ${version}" />
<label class="stdlabel" value="&license; GPL 3" />
<label id="website" value="Site web" onclick="openInTabURL('https://grammalecte.net/?from=grammalecte-tb');" />
<separator class="groove" orient="horizontal" style="margin: 10px;"/>
<label class="stdlabel" value="&thanks;" />
<image src="chrome://grammarchecker/skin/LaMouette_small.png" style="cursor: pointer;"
onclick="openInTabURL('http://lamouette.org/?from=grammalecte-tb');" />
<label class="stdlabel" value="&" />
<image src="chrome://grammarchecker/skin/Algoo_logo.png" style="cursor: pointer;"
onclick="openInTabURL('https://www.algoo.fr/?from=grammalecte-tb');" />
<label id="contrib" value="&contrib;"
onclick="openInTabURL('https://grammalecte.net/#thanks');" />
<script type="application/javascript" src="about.js"/>
</dialog>
|
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |
Added gc_lang/fr/mailext/content/conjugueur.css version [c5ad386744].
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
|
/* CSS */
#verb {
width: 200px;
}
#verb_title {
font-size: 24px;
font-weight: bold;
text-align: center;
color: hsl(210, 50%, 50%);
}
#info {
font-size: 16px;
text-align: center;
vertical-align: bottom;
}
.groupbox {
margin-left: 5px;
margin-bottom: 5px;
width: 275px;
border: 1px solid hsl(0, 0%, 90%);
border-radius: 5px;
}
#smallnote {
font-size: 10px;
width: 250px;
}
.sub_header {
color: hsl(0, 50%, 50%);
font-size: 16px;
font-weight: bold;
border-bottom: 1px solid hsl(0, 0%, 80%);
}
label.temps {
color: hsl(210, 50%, 50%);
font-size: 13px;
font-weight: bold;
}
label.cj {
font-size: 11px;
}
|
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |
Added gc_lang/fr/mailext/content/conjugueur.js version [7b655e7cc2].