]> source.dussan.org Git - redmine.git/commitdiff
Use Edit instead of Write (#27758).
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Wed, 26 Sep 2018 10:45:47 +0000 (10:45 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Wed, 26 Sep 2018 10:45:47 +0000 (10:45 +0000)
Patch by Marius BALTEANU.

git-svn-id: http://svn.redmine.org/redmine/trunk@17525 e93f8b46-1217-0410-a6f0-8f06a7374b81

public/javascripts/jstoolbar/jstoolbar.js
public/javascripts/jstoolbar/lang/jstoolbar-en.js

index 98dae6ff2b77638a5f9766e030a00c8855ad23b2..60854141426c4c6e02bd79c3135044a847db7380 100644 (file)
@@ -52,8 +52,9 @@ function jsToolBar(textarea) {
   this.tabsBlock.className = 'jstTabs tabs';
 
   var This = this;
-  this.writeTab = new jsTab('Write', true);
-  this.writeTab.onclick = function(event) { This.hidePreview.call(This, event); return false; };
+
+  this.editTab = new jsTab('Edit', true);
+  this.editTab.onclick = function(event) { This.hidePreview.call(This, event); return false; };
 
   this.previewTab = new jsTab('Preview');
   this.previewTab.onclick = function(event) { This.showPreview.call(This, event); return false; };
@@ -62,7 +63,7 @@ function jsToolBar(textarea) {
   elementsTab.classList = 'tab-elements';
 
   var tabs = document.createElement('ul');
-  tabs.appendChild(this.writeTab);
+  tabs.appendChild(this.editTab);
   tabs.appendChild(this.previewTab);
   tabs.appendChild(elementsTab);
   this.tabsBlock.appendChild(tabs);
@@ -404,7 +405,7 @@ jsToolBar.prototype = {
     this.toolbar.classList.add('hidden');
     this.textarea.classList.add('hidden');
     this.preview.classList.remove('hidden');
-    this.tabsBlock.getElementsByClassName('tab-write')[0].classList.remove('selected');
+    this.tabsBlock.getElementsByClassName('tab-edit')[0].classList.remove('selected');
     event.target.classList.add('selected');
 
   },
index c52e85508ccf8c81e102d46feff05326dcc328f6..3d55863956f5c07d57ee35b216ad93dedfe6b2af 100644 (file)
@@ -15,5 +15,5 @@ jsToolBar.strings['Unquote'] = 'Remove Quote';
 jsToolBar.strings['Preformatted text'] = 'Preformatted text';
 jsToolBar.strings['Wiki link'] = 'Link to a Wiki page';
 jsToolBar.strings['Image'] = 'Image';
-jsToolBar.strings['Write'] = 'Write';
-jsToolBar.strings['Preview'] = 'Preview';
\ No newline at end of file
+jsToolBar.strings['Edit'] = 'Edit';
+jsToolBar.strings['Preview'] = 'Preview';