Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
W
website
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Gruppo Ask
website
Commits
2f644b40
Commit
2f644b40
authored
Jul 02, 2012
by
Giuseppe Terrasi
Browse files
Options
Browse Files
Download
Plain Diff
translate js editor strings
parents
52c5baa1
1be52cd0
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
15 deletions
+15
-15
forum/skins/default/media/js/wmd/wmd.js
forum/skins/default/media/js/wmd/wmd.js
+15
-15
No files found.
forum/skins/default/media/js/wmd/wmd.js
View file @
2f644b40
...
@@ -102,7 +102,7 @@ Attacklab.wmdBase = function(){
...
@@ -102,7 +102,7 @@ Attacklab.wmdBase = function(){
// The link and title for the help button
// The link and title for the help button
var
helpLink
=
"
http://daringfireball.net/projects/markdown/syntax
"
;
var
helpLink
=
"
http://daringfireball.net/projects/markdown/syntax
"
;
var
helpHoverTitle
=
"
MarkDown Syntax
"
;
var
helpHoverTitle
=
"
Sintassi MarkDown
"
;
var
helpTarget
=
"
_blank
"
;
var
helpTarget
=
"
_blank
"
;
// -------------------------------------------------------------------
// -------------------------------------------------------------------
...
@@ -985,7 +985,7 @@ Attacklab.wmdBase = function(){
...
@@ -985,7 +985,7 @@ Attacklab.wmdBase = function(){
var
boldButton
=
document
.
createElement
(
"
li
"
);
var
boldButton
=
document
.
createElement
(
"
li
"
);
boldButton
.
className
=
"
wmd-button
"
;
boldButton
.
className
=
"
wmd-button
"
;
boldButton
.
id
=
"
wmd-bold-button
"
;
boldButton
.
id
=
"
wmd-bold-button
"
;
boldButton
.
title
=
"
Strong
<strong> Ctrl+B
"
;
boldButton
.
title
=
"
Grassetto
<strong> Ctrl+B
"
;
boldButton
.
XShift
=
"
0px
"
;
boldButton
.
XShift
=
"
0px
"
;
boldButton
.
textOp
=
command
.
doBold
;
boldButton
.
textOp
=
command
.
doBold
;
setupButton
(
boldButton
,
true
);
setupButton
(
boldButton
,
true
);
...
@@ -994,7 +994,7 @@ Attacklab.wmdBase = function(){
...
@@ -994,7 +994,7 @@ Attacklab.wmdBase = function(){
var
italicButton
=
document
.
createElement
(
"
li
"
);
var
italicButton
=
document
.
createElement
(
"
li
"
);
italicButton
.
className
=
"
wmd-button
"
;
italicButton
.
className
=
"
wmd-button
"
;
italicButton
.
id
=
"
wmd-italic-button
"
;
italicButton
.
id
=
"
wmd-italic-button
"
;
italicButton
.
title
=
"
Emphasis
<em> Ctrl+I
"
;
italicButton
.
title
=
"
Corsivo
<em> Ctrl+I
"
;
italicButton
.
XShift
=
"
-20px
"
;
italicButton
.
XShift
=
"
-20px
"
;
italicButton
.
textOp
=
command
.
doItalic
;
italicButton
.
textOp
=
command
.
doItalic
;
setupButton
(
italicButton
,
true
);
setupButton
(
italicButton
,
true
);
...
@@ -1008,7 +1008,7 @@ Attacklab.wmdBase = function(){
...
@@ -1008,7 +1008,7 @@ Attacklab.wmdBase = function(){
var
linkButton
=
document
.
createElement
(
"
li
"
);
var
linkButton
=
document
.
createElement
(
"
li
"
);
linkButton
.
className
=
"
wmd-button
"
;
linkButton
.
className
=
"
wmd-button
"
;
linkButton
.
id
=
"
wmd-link-button
"
;
linkButton
.
id
=
"
wmd-link-button
"
;
linkButton
.
title
=
"
Hyperlink
<a> Ctrl+L
"
;
linkButton
.
title
=
"
Collegamento
<a> Ctrl+L
"
;
linkButton
.
XShift
=
"
-40px
"
;
linkButton
.
XShift
=
"
-40px
"
;
linkButton
.
textOp
=
function
(
chunk
,
postProcessing
,
useDefaultText
){
linkButton
.
textOp
=
function
(
chunk
,
postProcessing
,
useDefaultText
){
return
command
.
doLinkOrImage
(
chunk
,
postProcessing
,
false
);
return
command
.
doLinkOrImage
(
chunk
,
postProcessing
,
false
);
...
@@ -1019,7 +1019,7 @@ Attacklab.wmdBase = function(){
...
@@ -1019,7 +1019,7 @@ Attacklab.wmdBase = function(){
var
quoteButton
=
document
.
createElement
(
"
li
"
);
var
quoteButton
=
document
.
createElement
(
"
li
"
);
quoteButton
.
className
=
"
wmd-button
"
;
quoteButton
.
className
=
"
wmd-button
"
;
quoteButton
.
id
=
"
wmd-quote-button
"
;
quoteButton
.
id
=
"
wmd-quote-button
"
;
quoteButton
.
title
=
"
Blockquot
e <blockquote> Ctrl+Q
"
;
quoteButton
.
title
=
"
Citazion
e <blockquote> Ctrl+Q
"
;
quoteButton
.
XShift
=
"
-60px
"
;
quoteButton
.
XShift
=
"
-60px
"
;
quoteButton
.
textOp
=
command
.
doBlockquote
;
quoteButton
.
textOp
=
command
.
doBlockquote
;
setupButton
(
quoteButton
,
true
);
setupButton
(
quoteButton
,
true
);
...
@@ -1028,7 +1028,7 @@ Attacklab.wmdBase = function(){
...
@@ -1028,7 +1028,7 @@ Attacklab.wmdBase = function(){
var
codeButton
=
document
.
createElement
(
"
li
"
);
var
codeButton
=
document
.
createElement
(
"
li
"
);
codeButton
.
className
=
"
wmd-button
"
;
codeButton
.
className
=
"
wmd-button
"
;
codeButton
.
id
=
"
wmd-code-button
"
;
codeButton
.
id
=
"
wmd-code-button
"
;
codeButton
.
title
=
"
Cod
e Sampl
e <pre><code> Ctrl+K
"
;
codeButton
.
title
=
"
Cod
ice sorgent
e <pre><code> Ctrl+K
"
;
codeButton
.
XShift
=
"
-80px
"
;
codeButton
.
XShift
=
"
-80px
"
;
codeButton
.
textOp
=
command
.
doCode
;
codeButton
.
textOp
=
command
.
doCode
;
setupButton
(
codeButton
,
true
);
setupButton
(
codeButton
,
true
);
...
@@ -1037,7 +1037,7 @@ Attacklab.wmdBase = function(){
...
@@ -1037,7 +1037,7 @@ Attacklab.wmdBase = function(){
var
imageButton
=
document
.
createElement
(
"
li
"
);
var
imageButton
=
document
.
createElement
(
"
li
"
);
imageButton
.
className
=
"
wmd-button
"
;
imageButton
.
className
=
"
wmd-button
"
;
imageButton
.
id
=
"
wmd-image-button
"
;
imageButton
.
id
=
"
wmd-image-button
"
;
imageButton
.
title
=
"
Im
ag
e <img> Ctrl+G
"
;
imageButton
.
title
=
"
Im
magin
e <img> Ctrl+G
"
;
imageButton
.
XShift
=
"
-100px
"
;
imageButton
.
XShift
=
"
-100px
"
;
imageButton
.
textOp
=
function
(
chunk
,
postProcessing
,
useDefaultText
){
imageButton
.
textOp
=
function
(
chunk
,
postProcessing
,
useDefaultText
){
return
command
.
doLinkOrImage
(
chunk
,
postProcessing
,
true
);
return
command
.
doLinkOrImage
(
chunk
,
postProcessing
,
true
);
...
@@ -1053,7 +1053,7 @@ Attacklab.wmdBase = function(){
...
@@ -1053,7 +1053,7 @@ Attacklab.wmdBase = function(){
var
olistButton
=
document
.
createElement
(
"
li
"
);
var
olistButton
=
document
.
createElement
(
"
li
"
);
olistButton
.
className
=
"
wmd-button
"
;
olistButton
.
className
=
"
wmd-button
"
;
olistButton
.
id
=
"
wmd-olist-button
"
;
olistButton
.
id
=
"
wmd-olist-button
"
;
olistButton
.
title
=
"
Numbered List
<ol> Ctrl+O
"
;
olistButton
.
title
=
"
Elenco numerato
<ol> Ctrl+O
"
;
olistButton
.
XShift
=
"
-120px
"
;
olistButton
.
XShift
=
"
-120px
"
;
olistButton
.
textOp
=
function
(
chunk
,
postProcessing
,
useDefaultText
){
olistButton
.
textOp
=
function
(
chunk
,
postProcessing
,
useDefaultText
){
command
.
doList
(
chunk
,
postProcessing
,
true
,
useDefaultText
);
command
.
doList
(
chunk
,
postProcessing
,
true
,
useDefaultText
);
...
@@ -1064,7 +1064,7 @@ Attacklab.wmdBase = function(){
...
@@ -1064,7 +1064,7 @@ Attacklab.wmdBase = function(){
var
ulistButton
=
document
.
createElement
(
"
li
"
);
var
ulistButton
=
document
.
createElement
(
"
li
"
);
ulistButton
.
className
=
"
wmd-button
"
;
ulistButton
.
className
=
"
wmd-button
"
;
ulistButton
.
id
=
"
wmd-ulist-button
"
;
ulistButton
.
id
=
"
wmd-ulist-button
"
;
ulistButton
.
title
=
"
Bulleted List
<ul> Ctrl+U
"
;
ulistButton
.
title
=
"
Elenco puntato
<ul> Ctrl+U
"
;
ulistButton
.
XShift
=
"
-140px
"
;
ulistButton
.
XShift
=
"
-140px
"
;
ulistButton
.
textOp
=
function
(
chunk
,
postProcessing
,
useDefaultText
){
ulistButton
.
textOp
=
function
(
chunk
,
postProcessing
,
useDefaultText
){
command
.
doList
(
chunk
,
postProcessing
,
false
,
useDefaultText
);
command
.
doList
(
chunk
,
postProcessing
,
false
,
useDefaultText
);
...
@@ -1075,7 +1075,7 @@ Attacklab.wmdBase = function(){
...
@@ -1075,7 +1075,7 @@ Attacklab.wmdBase = function(){
var
headingButton
=
document
.
createElement
(
"
li
"
);
var
headingButton
=
document
.
createElement
(
"
li
"
);
headingButton
.
className
=
"
wmd-button
"
;
headingButton
.
className
=
"
wmd-button
"
;
headingButton
.
id
=
"
wmd-heading-button
"
;
headingButton
.
id
=
"
wmd-heading-button
"
;
headingButton
.
title
=
"
Heading
<h1>/<h2> Ctrl+H
"
;
headingButton
.
title
=
"
Titolo
<h1>/<h2> Ctrl+H
"
;
headingButton
.
XShift
=
"
-160px
"
;
headingButton
.
XShift
=
"
-160px
"
;
headingButton
.
textOp
=
command
.
doHeading
;
headingButton
.
textOp
=
command
.
doHeading
;
setupButton
(
headingButton
,
true
);
setupButton
(
headingButton
,
true
);
...
@@ -1084,7 +1084,7 @@ Attacklab.wmdBase = function(){
...
@@ -1084,7 +1084,7 @@ Attacklab.wmdBase = function(){
var
hrButton
=
document
.
createElement
(
"
li
"
);
var
hrButton
=
document
.
createElement
(
"
li
"
);
hrButton
.
className
=
"
wmd-button
"
;
hrButton
.
className
=
"
wmd-button
"
;
hrButton
.
id
=
"
wmd-hr-button
"
;
hrButton
.
id
=
"
wmd-hr-button
"
;
hrButton
.
title
=
"
Horizontal Ru
le <hr> Ctrl+R
"
;
hrButton
.
title
=
"
Linea orizzonta
le <hr> Ctrl+R
"
;
hrButton
.
XShift
=
"
-180px
"
;
hrButton
.
XShift
=
"
-180px
"
;
hrButton
.
textOp
=
command
.
doHorizontalRule
;
hrButton
.
textOp
=
command
.
doHorizontalRule
;
setupButton
(
hrButton
,
true
);
setupButton
(
hrButton
,
true
);
...
@@ -1098,7 +1098,7 @@ Attacklab.wmdBase = function(){
...
@@ -1098,7 +1098,7 @@ Attacklab.wmdBase = function(){
var
undoButton
=
document
.
createElement
(
"
li
"
);
var
undoButton
=
document
.
createElement
(
"
li
"
);
undoButton
.
className
=
"
wmd-button
"
;
undoButton
.
className
=
"
wmd-button
"
;
undoButton
.
id
=
"
wmd-undo-button
"
;
undoButton
.
id
=
"
wmd-undo-button
"
;
undoButton
.
title
=
"
Undo
- Ctrl+Z
"
;
undoButton
.
title
=
"
Annulla
- Ctrl+Z
"
;
undoButton
.
XShift
=
"
-200px
"
;
undoButton
.
XShift
=
"
-200px
"
;
undoButton
.
execute
=
function
(
manager
){
undoButton
.
execute
=
function
(
manager
){
manager
.
undo
();
manager
.
undo
();
...
@@ -1109,13 +1109,13 @@ Attacklab.wmdBase = function(){
...
@@ -1109,13 +1109,13 @@ Attacklab.wmdBase = function(){
var
redoButton
=
document
.
createElement
(
"
li
"
);
var
redoButton
=
document
.
createElement
(
"
li
"
);
redoButton
.
className
=
"
wmd-button
"
;
redoButton
.
className
=
"
wmd-button
"
;
redoButton
.
id
=
"
wmd-redo-button
"
;
redoButton
.
id
=
"
wmd-redo-button
"
;
redoButton
.
title
=
"
R
edo
- Ctrl+Y
"
;
redoButton
.
title
=
"
R
ipeti
- Ctrl+Y
"
;
if
(
/win/
.
test
(
nav
.
platform
.
toLowerCase
()))
{
if
(
/win/
.
test
(
nav
.
platform
.
toLowerCase
()))
{
redoButton
.
title
=
"
R
edo
- Ctrl+Y
"
;
redoButton
.
title
=
"
R
ipeti
- Ctrl+Y
"
;
}
}
else
{
else
{
// mac and other non-Windows platforms
// mac and other non-Windows platforms
redoButton
.
title
=
"
R
edo
- Ctrl+Shift+Z
"
;
redoButton
.
title
=
"
R
ipeti
- Ctrl+Shift+Z
"
;
}
}
redoButton
.
XShift
=
"
-220px
"
;
redoButton
.
XShift
=
"
-220px
"
;
redoButton
.
execute
=
function
(
manager
){
redoButton
.
execute
=
function
(
manager
){
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment