Blame view
sources/apps/files_videoviewer/mediaelement/src/js/me-i18n-locale-de.js
501 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> German 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.de = {
"Fullscreen" : "Vollbild",
"Go Fullscreen" : "Vollbild an",
"Turn off Fullscreen" : "Vollbild aus",
"Close" : "Schließen"
};
}(mejs.i18n.locale.strings));
|