Blame view
sources/apps/files_videoviewer/mediaelement/src/js/me-i18n-locale-zh.js
519 Bytes
|
42e4f8d60
|
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 |
/*!
* 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));
|