Skip to content

Commit

Permalink
Merge pull request mediaelement#820 from latzt/master
Browse files Browse the repository at this point in the history
Traditional chinese locale strings for i18n module
  • Loading branch information
johndyer committed Apr 9, 2013
2 parents 4a3cb28 + 3ee6051 commit 1fd82ba
Show file tree
Hide file tree
Showing 6 changed files with 83 additions and 2 deletions.
27 changes: 27 additions & 0 deletions build/mediaelement-and-player.js
Original file line number Diff line number Diff line change
Expand Up @@ -1812,6 +1812,33 @@ window.MediaElement = mejs.MediaElement;
};

}(mejs.i18n.locale.strings));
/*!
* This is a i18n.locale language object.
*
*<de> Traditional chinese translation by Tim Latz, latz.tim@gmail.com
*
* @author
* Tim Latz (latz.tim@gmail.com)
*
* @see
* me-i18n.js
*
* @params
* - exports - CommonJS, window ..
*/
;(function(exports, undefined) {

"use strict";

exports.zh = {
"Fullscreen" : "全螢幕",
"Go Fullscreen" : "全屏模式",
"Turn off Fullscreen" : "退出全屏模式",
"Close" : "關閉"
};

}(mejs.i18n.locale.strings));


/*!
* MediaElementPlayer
Expand Down
2 changes: 1 addition & 1 deletion build/mediaelement-and-player.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

27 changes: 27 additions & 0 deletions build/mediaelement.js
Original file line number Diff line number Diff line change
Expand Up @@ -1812,3 +1812,30 @@ window.MediaElement = mejs.MediaElement;
};

}(mejs.i18n.locale.strings));
/*!
* This is a i18n.locale language object.
*
*<de> Traditional chinese translation by Tim Latz, latz.tim@gmail.com
*
* @author
* Tim Latz (latz.tim@gmail.com)
*
* @see
* me-i18n.js
*
* @params
* - exports - CommonJS, window ..
*/
;(function(exports, undefined) {

"use strict";

exports.zh = {
"Fullscreen" : "全螢幕",
"Go Fullscreen" : "全屏模式",
"Turn off Fullscreen" : "退出全屏模式",
"Close" : "關閉"
};

}(mejs.i18n.locale.strings));

2 changes: 1 addition & 1 deletion build/mediaelement.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions src/Builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
me_files.append('me-shim.js')
me_files.append('me-i18n.js')
me_files.append('me-i18n-locale-de.js')
me_files.append('me-i18n-locale-zh.js')

code = ''

Expand Down
26 changes: 26 additions & 0 deletions src/js/me-i18n-locale-zh.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
/*!
* This is a i18n.locale language object.
*
*<de> Traditional chinese translation by Tim Latz, latz.tim@gmail.com
*
* @author
* Tim Latz (latz.tim@gmail.com)
*
* @see
* me-i18n.js
*
* @params
* - exports - CommonJS, window ..
*/
;(function(exports, undefined) {

"use strict";

exports.zh = {
"Fullscreen" : "全螢幕",
"Go Fullscreen" : "全屏模式",
"Turn off Fullscreen" : "退出全屏模式",
"Close" : "關閉"
};

}(mejs.i18n.locale.strings));

0 comments on commit 1fd82ba

Please sign in to comment.