-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[cmd:edit] fix #2020 add "Save As" button
- Loading branch information
Showing
5 changed files
with
58 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/** | ||
* English translation | ||
* @author Troex Nevelin <[email protected]> | ||
* @version 2017-05-23 | ||
* @version 2017-05-24 | ||
*/ | ||
// elfinder.en.js is integrated into elfinder.(full|min).js by jake build | ||
if (typeof elFinder === 'function' && elFinder.prototype.i18) { | ||
|
@@ -169,6 +169,7 @@ if (typeof elFinder === 'function' && elFinder.prototype.i18) { | |
'btnRenameAll' : 'Rename(All)', // from v2.1.24 added 6.4.2017 | ||
'btnPrevious' : 'Prev ($1/$2)', // from v2.1.24 added 11.5.2017 | ||
'btnNext' : 'Next ($1/$2)', // from v2.1.24 added 11.5.2017 | ||
'btnSaveAs' : 'Save As', // from v2.1.25 added 24.5.2017 | ||
|
||
/******************************** notifications ********************************/ | ||
'ntfopen' : 'Open folder', | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
* Japanese translation | ||
* @author Tomoaki Yoshida <[email protected]> | ||
* @author Naoki Sawada <[email protected]> | ||
* @version 2017-05-23 | ||
* @version 2017-05-24 | ||
*/ | ||
(function(root, factory) { | ||
if (typeof define === 'function' && define.amd) { | ||
|
@@ -177,6 +177,7 @@ | |
'btnRenameAll' : 'リネーム(全て)', // from v2.1.24 added 6.4.2017 | ||
'btnPrevious' : '前へ ($1/$2)', // from v2.1.24 added 11.5.2017 | ||
'btnNext' : '次へ ($1/$2)', // from v2.1.24 added 11.5.2017 | ||
'btnSaveAs' : '別名保存', // from v2.1.25 added 24.5.2017 | ||
|
||
/******************************** notifications ********************************/ | ||
'ntfopen' : 'フォルダーを開いています', | ||
|