Browse Source

Added Language to StoryJS Core

pull/197/head
Zach Wise 12 years ago
parent
commit
b2e8c1245c
  1. 18
      compiled/js/timeline-min.js
  2. 389
      compiled/js/timeline.js
  3. 2
      source/js/Core
  4. 36
      source/js/VMM.Language.js
  5. 5
      source/js/VMM.Timeline.TimeNav.js
  6. 25
      source/js/VMM.Timeline.js
  7. 36
      source/js/locale/ar.js
  8. 36
      source/js/locale/cz.js
  9. 36
      source/js/locale/de.js
  10. 36
      source/js/locale/dk.js
  11. 36
      source/js/locale/en.js
  12. 37
      source/js/locale/es.js
  13. 36
      source/js/locale/fo.js
  14. 37
      source/js/locale/fr.js
  15. 36
      source/js/locale/id.js
  16. 37
      source/js/locale/is.js
  17. 37
      source/js/locale/it.js
  18. 37
      source/js/locale/ja.js
  19. 37
      source/js/locale/kr.js
  20. 37
      source/js/locale/nl.js
  21. 37
      source/js/locale/pl.js
  22. 37
      source/js/locale/pt-br.js
  23. 36
      source/js/locale/ru.js
  24. 37
      source/js/locale/zh-ch.js
  25. 37
      source/js/locale/zh-tw.js

18
compiled/js/timeline-min.js vendored

File diff suppressed because one or more lines are too long

389
compiled/js/timeline.js

@ -17,6 +17,19 @@
*/
/***********************************************
Begin VMM.StoryJS.License.js
***********************************************/
/*!
StoryJS
Designed and built by Zach Wise at VéritéCo
This Source Code Form is subject to the terms of the Mozilla Public
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
/***********************************************
Begin VMM.js
***********************************************/
@ -2279,6 +2292,68 @@ if(typeof VMM != 'undefined' && typeof VMM.LoadLib == 'undefined') {
/***********************************************
Begin VMM.Core.js
***********************************************/
/* VeriteCo Core
================================================== */
/* * CodeKit Import
* http://incident57.com/codekit/
================================================== */
// @codekit-prepend "VMM.js";
// @codekit-prepend "VMM.Library.js";
// @codekit-prepend "VMM.Browser.js";
// @codekit-prepend "VMM.FileExtention.js";
// @codekit-prepend "VMM.Date.js";
// @codekit-prepend "VMM.Util.js";
// @codekit-prepend "VMM.LoadLib.js";
// @codekit-prepend "VMM.Language.js";
/***********************************************
Begin VMM.Language.js
***********************************************/
/* DEFAULT LANGUAGE
================================================== */
if(typeof VMM != 'undefined' && typeof VMM.Language == 'undefined') {
VMM.Language = {
lang: "en",
api: {
wikipedia: "en"
},
date: {
month: ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"],
month_abbr: ["Jan.", "Feb.", "March", "April", "May", "June", "July", "Aug.", "Sept.", "Oct.", "Nov.", "Dec."],
day: ["Sunday","Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"],
day_abbr: ["Sun.","Mon.", "Tues.", "Wed.", "Thurs.", "Fri.", "Sat."]
},
dateformats: {
year: "yyyy",
month_short: "mmm",
month: "mmmm yyyy",
full_short: "mmm d",
full: "mmmm d',' yyyy",
time_no_seconds_short: "h:MM TT",
time_no_seconds_small_date: "h:MM TT'<br/><small>'mmmm d',' yyyy'</small>'",
full_long: "mmm d',' yyyy 'at' hh:MM TT",
full_long_small_date: "hh:MM TT'<br/><small>mmm d',' yyyy'</small>'"
},
messages: {
loading_timeline: "Loading Timeline... ",
return_to_title: "Return to Title",
expand_timeline: "Expand Timeline",
contract_timeline: "Contract Timeline",
wikipedia: "From Wikipedia, the free encyclopedia",
loading_content: "Loading Content",
loading: "Loading"
}
}
};
/***********************************************
Begin VMM.ExternalAPI.js
***********************************************/
@ -3785,174 +3860,6 @@ if(typeof VMM != 'undefined' && typeof VMM.MediaType == 'undefined') {
}
}
/***********************************************
Begin VMM.Media.js
***********************************************/
/* Media
================================================== */
if(typeof VMM != 'undefined' && typeof VMM.Media == 'undefined') {
// something = new VMM.Media(parent, w, h, {thedata});
VMM.Media = function(parent, w, h, thedata) {
/* PRIVATE VARS
================================================== */
var data = {}; // HOLDS DATA
var _valid = false;
var config = {
width: 720,
height: 400,
content_width: 720,
content_height: 400,
ease: "easeInOutExpo",
duration: 1000,
spacing: 15
};
/* ELEMENTS
================================================== */
var $media = "";
var $container = "";
var $mediacontainer = "";
var $mediaelement = "";
var layout = parent; // expecting media div
if (w != null && w != "") {config.width = w};
if (h != null && h != "") {config.height = h};
/*
if (typeof thedata != "undefined") {
data = thedata;
this.init(data);
}
*/
/* PUBLIC FUNCTIONS
================================================== */
this.init = function(d) {
if(typeof d != 'undefined') {
this.setData(d);
} else {
trace("WAITING ON DATA");
}
};
var build = function(media, caption, credit) {
$media = VMM.appendAndGetElement(layout, "<div>", "media");
$container = VMM.appendAndGetElement($media, "<div>", "container");
$mediacontainer = VMM.appendAndGetElement($container, "<div>", "media-container");
if (data.media != null && data.media != "") {
_valid = true;
var m = {};
m = VMM.MediaType(data.media); //returns an object with .type and .id
if (m.type == "image") {
VMM.appendElement($mediacontainer, "<img src='" + m.id + "'>");
} else if (m.type == "youtube") {
VMM.appendElement($mediacontainer, "<iframe frameborder='0' src='http://www.youtube.com/embed/" + m.id + "?&rel=0&theme=light&showinfo=0&hd=1&autohide=0&color=white' allowfullscreen>");
} else if (m.type == "vimeo") {
VMM.appendElement($mediacontainer, "<iframe frameborder='0' src='http://player.vimeo.com/video/" + m.id + "?title=0&amp;byline=0&amp;portrait=0&amp;color=ffffff'>");
} else {
}
// CREDIT
if (data.credit != null && data.credit != "") {
VMM.appendElement($container, VMM.createElement("div", data.credit, "credit"));
}
// CAPTION
if (data.caption != null && data.caption != "") {
VMM.appendElement($container, VMM.createElement("div", data.caption, "caption"));
}
}
};
/* GETTERS AND SETTERS
================================================== */
this.setData = function(d) {
if(typeof d != 'undefined') {
data = d;
build();
} else{
trace("NO DATA");
}
};
/* RESIZE
================================================== */
function reSize() {
}
}
// Less expensive to use prototype
VMM.Media.prototype.height = function(h) {
if (h != null && h != "") {
config.height = h;
reSize();
} else {
return config.height;
}
};
VMM.Media.prototype.width = function(w) {
if (w != null && w != "") {
config.width = w;
reSize();
} else {
return config.width;
}
};
/* GETTERS AND SETTERS
================================================== */
VMM.Media.prototype.getData = function() {
return data;
};
VMM.Media.prototype.setConfig = function(d) {
if(typeof d != 'undefined') {
config = d;
} else{
trace("NO CONFIG DATA");
}
};
VMM.Media.prototype.getConfig = function() {
return config;
};
VMM.Media.prototype.setSize = function(w, h) {
if (w != null) {config.width = w};
if (h != null) {config.height = h};
if (_active) {
reSize();
}
}
VMM.Media.prototype.active = function() {
return _active;
};
}
/***********************************************
Begin VMM.TextElement.js
***********************************************/
@ -3974,6 +3881,22 @@ if(typeof VMM != 'undefined' && typeof VMM.TextElement == 'undefined') {
}).init();
}
/***********************************************
Begin VMM.Media.js
***********************************************/
/* Media
================================================== */
/* * CodeKit Import
* http://incident57.com/codekit/
================================================== */
// @codekit-prepend "VMM.ExternalAPI.js";
// @codekit-prepend "VMM.MediaElement.js";
// @codekit-prepend "VMM.MediaType.js";
// @codekit-prepend "VMM.TextElement.js";
/***********************************************
Begin VMM.DragSlider.js
***********************************************/
@ -4207,6 +4130,11 @@ if(typeof VMM != 'undefined' && typeof VMM.DragSlider == 'undefined') {
/* Slider
================================================== */
/* * CodeKit Import
* http://incident57.com/codekit/
================================================== */
// @codekit-append "VMM.Slider.Slide.js";
if(typeof VMM != 'undefined' && typeof VMM.Slider == 'undefined') {
VMM.Slider = function(parent, parent_config) {
@ -4916,6 +4844,7 @@ if(typeof VMM != 'undefined' && typeof VMM.Slider == 'undefined') {
/* Slider Slide
================================================== */
if (typeof VMM.Slider != 'undefined') {
VMM.Slider.Slide = function(d, _parent) {
@ -5090,8 +5019,8 @@ if (typeof VMM.Slider != 'undefined') {
var buildSlide = function() {
trace("BUILDSLIDE");
$wrap = VMM.appendAndGetElement(element, "<div>", "content");
$slide = VMM.appendAndGetElement($wrap, "<div>");
$wrap = VMM.appendAndGetElement(element, "<div>", "content");
$slide = VMM.appendAndGetElement($wrap, "<div>");
/* DATE
================================================== */
@ -5130,15 +5059,15 @@ if (typeof VMM.Slider != 'undefined') {
/* TEXT
================================================== */
if (data.text != null && data.text != "") {
c.has.text = true;
c.text += VMM.createElement("p", VMM.Util.linkify_with_twitter(data.text, "_blank"));
c.has.text = true;
c.text += VMM.createElement("p", VMM.Util.linkify_with_twitter(data.text, "_blank"));
}
if (c.has.text || c.has.headline) {
c.text = VMM.createElement("div", c.text, "container");
c.text = VMM.createElement("div", c.text, "container");
//$text = VMM.appendAndGetElement($slide, "<div>", "text", c.text);
$text = VMM.appendAndGetElement($slide, "<div>", "text", VMM.TextElement.create(c.text));
$text = VMM.appendAndGetElement($slide, "<div>", "text", VMM.TextElement.create(c.text));
}
@ -5152,8 +5081,8 @@ if (typeof VMM.Slider != 'undefined') {
================================================== */
if (data.asset != null && data.asset != "") {
if (data.asset.media != null && data.asset.media != "") {
c.has.media = true;
$media = VMM.appendAndGetElement($slide, "<div>", "media", VMM.MediaElement.create(data.asset, data.uniqueid));
c.has.media = true;
$media = VMM.appendAndGetElement($slide, "<div>", "media", VMM.MediaElement.create(data.asset, data.uniqueid));
}
}
@ -5185,47 +5114,6 @@ if (typeof VMM.Slider != 'undefined') {
};
/***********************************************
Begin VMM.Language.js
***********************************************/
/* DEFAULT LANGUAGE
================================================== */
if(typeof VMM != 'undefined' && typeof VMM.Language == 'undefined') {
VMM.Language = {
lang: "en",
api: {
wikipedia: "en"
},
date: {
month: ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"],
month_abbr: ["Jan.", "Feb.", "March", "April", "May", "June", "July", "Aug.", "Sept.", "Oct.", "Nov.", "Dec."],
day: ["Sunday","Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"],
day_abbr: ["Sun.","Mon.", "Tues.", "Wed.", "Thurs.", "Fri.", "Sat."]
},
dateformats: {
year: "yyyy",
month_short: "mmm",
month: "mmmm yyyy",
full_short: "mmm d",
full: "mmmm d',' yyyy",
time_no_seconds_short: "h:MM TT",
time_no_seconds_small_date: "h:MM TT'<br/><small>'mmmm d',' yyyy'</small>'",
full_long: "mmm d',' yyyy 'at' hh:MM TT",
full_long_small_date: "hh:MM TT'<br/><small>mmm d',' yyyy'</small>'"
},
messages: {
loading_timeline: "Loading Timeline... ",
return_to_title: "Return to Title",
expand_timeline: "Expand Timeline",
contract_timeline: "Contract Timeline",
wikipedia: "From Wikipedia, the free encyclopedia",
loading_content: "Loading Content",
loading: "Loading"
}
}
};
/***********************************************
Begin AES.js
***********************************************/
@ -5969,12 +5857,49 @@ Utf8.decode = function(strUtf) {
}( window.jQuery );
/***********************************************
Begin VMM.StoryJS.js
***********************************************/
/* VeriteCo StoryJS
================================================== */
/* * CodeKit Import
* http://incident57.com/codekit/
================================================== */
// @codekit-prepend "VMM.StoryJS.License.js";
// @codekit-prepend "Core/VMM.Core.js";
// @codekit-prepend "Language/VMM.Language.js";
// @codekit-prepend "Media/VMM.Media.js";
// @codekit-prepend "Slider/VMM.DragSlider.js";
// @codekit-prepend "Slider/VMM.Slider.js";
// @codekit-prepend "Library/AES.js";
// @codekit-prepend "Library/bootstrap-tooltip.js";
if(typeof VMM != 'undefined' && typeof VMM.StoryJS == 'undefined') {
VMM.StoryJS = function() {
/* PRIVATE VARS
================================================== */
/* PUBLIC FUNCTIONS
================================================== */
this.init = function(d) {
};
}
}
/***********************************************
Begin VMM.Timeline.js
***********************************************/
/**
* Timeline
* TimelineJS
* Designed and built by Zach Wise at VéritéCo
* This program is free software: you can redistribute it and/or modify
@ -5996,32 +5921,11 @@ Utf8.decode = function(strUtf) {
================================================== */
// @codekit-prepend "VMM.Timeline.License.js";
// @codekit-prepend "Core/VMM.js";
// @codekit-prepend "Core/VMM.Library.js";
// @codekit-prepend "Core/VMM.Browser.js";
// @codekit-prepend "Core/VMM.FileExtention.js";
// @codekit-prepend "Core/VMM.Date.js";
// @codekit-prepend "Core/VMM.Util.js";
// @codekit-prepend "Core/VMM.LoadLib.js";
// @codekit-prepend "Core/Media/VMM.ExternalAPI.js";
// @codekit-prepend "Core/Media/VMM.MediaElement.js";
// @codekit-prepend "Core/Media/VMM.MediaType.js";
// @codekit-prepend "Core/Media/VMM.Media.js";
// @codekit-prepend "Core/Media/VMM.TextElement.js";
// @codekit-prepend "Core/Slider/VMM.DragSlider.js";
// @codekit-prepend "Core/Slider/VMM.Slider.js";
// @codekit-prepend "Core/Slider/VMM.Slider.Slide.js";
// @codekit-prepend "VMM.Language.js";
// @codekit-prepend "Core/VMM.StoryJS.js";
// @codekit-append "VMM.Timeline.TimeNav.js";
// @codekit-append "VMM.Timeline.DataObj.js";
// @codekit-prepend "Core/Library/AES.js";
// @codekit-prepend "Core/Library/bootstrap-tooltip.js";
/* Timeline
================================================== */
@ -7858,8 +7762,7 @@ if(typeof VMM.Timeline != 'undefined' && typeof VMM.Timeline.TimeNav == 'undefin
$timenavindicator = VMM.appendAndGetElement($timebackground, "<div>", "timenav-indicator");
$timeintervalbackground = VMM.appendAndGetElement($timebackground, "<div>", "timenav-interval-background", "<div class='top-highlight'></div>");
$toolbar = VMM.appendAndGetElement(layout, "<div>", "toolbar");
$zoomin = VMM.appendAndGetElement($toolbar, "<div>", "zoom-in", "<div class='icon'></div>");
$zoomout = VMM.appendAndGetElement($toolbar, "<div>", "zoom-out", "<div class='icon'></div>");
buildInterval();
buildMarkers();
@ -7881,6 +7784,8 @@ if(typeof VMM.Timeline != 'undefined' && typeof VMM.Timeline.TimeNav == 'undefin
}
$zoomin = VMM.appendAndGetElement($toolbar, "<div>", "zoom-in", "<div class='icon'></div>");
$zoomout = VMM.appendAndGetElement($toolbar, "<div>", "zoom-out", "<div class='icon'></div>");
// MAKE TIMELINE DRAGGABLE/TOUCHABLE
$dragslide = new VMM.DragSlider;

2
source/js/Core

@ -1 +1 @@
Subproject commit 45ea973ed28b6168d0e5f66dce1c92af21d79282
Subproject commit 7c4dcd4760fbd197602de2c8edf23d898970b534

36
source/js/VMM.Language.js

@ -1,36 +0,0 @@
/* DEFAULT LANGUAGE
================================================== */
if(typeof VMM != 'undefined' && typeof VMM.Language == 'undefined') {
VMM.Language = {
lang: "en",
api: {
wikipedia: "en"
},
date: {
month: ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"],
month_abbr: ["Jan.", "Feb.", "March", "April", "May", "June", "July", "Aug.", "Sept.", "Oct.", "Nov.", "Dec."],
day: ["Sunday","Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"],
day_abbr: ["Sun.","Mon.", "Tues.", "Wed.", "Thurs.", "Fri.", "Sat."]
},
dateformats: {
year: "yyyy",
month_short: "mmm",
month: "mmmm yyyy",
full_short: "mmm d",
full: "mmmm d',' yyyy",
time_no_seconds_short: "h:MM TT",
time_no_seconds_small_date: "h:MM TT'<br/><small>'mmmm d',' yyyy'</small>'",
full_long: "mmm d',' yyyy 'at' hh:MM TT",
full_long_small_date: "hh:MM TT'<br/><small>mmm d',' yyyy'</small>'"
},
messages: {
loading_timeline: "Loading Timeline... ",
return_to_title: "Return to Title",
expand_timeline: "Expand Timeline",
contract_timeline: "Contract Timeline",
wikipedia: "From Wikipedia, the free encyclopedia",
loading_content: "Loading Content",
loading: "Loading"
}
}
};

5
source/js/VMM.Timeline.TimeNav.js

@ -1250,8 +1250,7 @@ if(typeof VMM.Timeline != 'undefined' && typeof VMM.Timeline.TimeNav == 'undefin
$timenavindicator = VMM.appendAndGetElement($timebackground, "<div>", "timenav-indicator");
$timeintervalbackground = VMM.appendAndGetElement($timebackground, "<div>", "timenav-interval-background", "<div class='top-highlight'></div>");
$toolbar = VMM.appendAndGetElement(layout, "<div>", "toolbar");
$zoomin = VMM.appendAndGetElement($toolbar, "<div>", "zoom-in", "<div class='icon'></div>");
$zoomout = VMM.appendAndGetElement($toolbar, "<div>", "zoom-out", "<div class='icon'></div>");
buildInterval();
buildMarkers();
@ -1273,6 +1272,8 @@ if(typeof VMM.Timeline != 'undefined' && typeof VMM.Timeline.TimeNav == 'undefin
}
$zoomin = VMM.appendAndGetElement($toolbar, "<div>", "zoom-in", "<div class='icon'></div>");
$zoomout = VMM.appendAndGetElement($toolbar, "<div>", "zoom-out", "<div class='icon'></div>");
// MAKE TIMELINE DRAGGABLE/TOUCHABLE
$dragslide = new VMM.DragSlider;

25
source/js/VMM.Timeline.js

@ -1,5 +1,5 @@
/**
* Timeline
* TimelineJS
* Designed and built by Zach Wise at VéritéCo
* This program is free software: you can redistribute it and/or modify
@ -21,32 +21,11 @@
================================================== */
// @codekit-prepend "VMM.Timeline.License.js";
// @codekit-prepend "Core/VMM.js";
// @codekit-prepend "Core/VMM.Library.js";
// @codekit-prepend "Core/VMM.Browser.js";
// @codekit-prepend "Core/VMM.FileExtention.js";
// @codekit-prepend "Core/VMM.Date.js";
// @codekit-prepend "Core/VMM.Util.js";
// @codekit-prepend "Core/VMM.LoadLib.js";
// @codekit-prepend "Core/Media/VMM.ExternalAPI.js";
// @codekit-prepend "Core/Media/VMM.MediaElement.js";
// @codekit-prepend "Core/Media/VMM.MediaType.js";
// @codekit-prepend "Core/Media/VMM.Media.js";
// @codekit-prepend "Core/Media/VMM.TextElement.js";
// @codekit-prepend "Core/Slider/VMM.DragSlider.js";
// @codekit-prepend "Core/Slider/VMM.Slider.js";
// @codekit-prepend "Core/Slider/VMM.Slider.Slide.js";
// @codekit-prepend "VMM.Language.js";
// @codekit-prepend "Core/VMM.StoryJS.js";
// @codekit-append "VMM.Timeline.TimeNav.js";
// @codekit-append "VMM.Timeline.DataObj.js";
// @codekit-prepend "Core/Library/AES.js";
// @codekit-prepend "Core/Library/bootstrap-tooltip.js";
/* Timeline
================================================== */

36
source/js/locale/ar.js

@ -1,36 +0,0 @@
/* LANGUAGE
================================================== */
if(typeof VMM != 'undefined') {
VMM.Language = {
lang: "ar",
api: {
wikipedia: "ar"
},
date: {
month: ["كانون الثاني", "شباط", "آذار", "نيسان", "أيار", "حزيران", "تموز", "آب", "أيلول", "تشرين الأول", "تشرين الثاني", "كانون الأول"],
month_abbr: ["كانون الثاني", "شباط", "آذار", "نيسان", "أيار", "حزيران", "تموز", "آب", "أيلول", "تشرين الأول", "تشرين الثاني", "كانون الأول"],
day: ["الأحد","الاثنين", "الثلاثاء", "الأربعاء", "الخميس", "الجمعة", "السبت"],
day_abbr: ["الأحد","الاثنين", "الثلاثاء", "الأربعاء", "الخميس", "الجمعة", "السبت"]
},
dateformats: {
year: "yyyy",
month_short: "mmm",
month: "mmmm yyyy",
full_short: "mmm d",
full: "mmmm d',' yyyy",
time_no_seconds_short: "h:MM TT",
time_no_seconds_small_date: "h:MM TT'<br/><small>'mmmm d',' yyyy'</small>'",
full_long: "mmm d',' yyyy 'at' hh:MM TT",
full_long_small_date: "hh:MM TT'<br/><small>mmm d',' yyyy'</small>'"
},
messages: {
loading_timeline: "جاري التحميل... ",
return_to_title: "العودة",
expand_timeline: "تكبير العرض",
contract_timeline: "الاتفاقية",
wikipedia: "من ويكيبيديا, الموسوعة الحرة",
loading_content: "تحميل المحتوى",
loading: "تحميل"
}
}
}

36
source/js/locale/cz.js

@ -1,36 +0,0 @@
/* LANGUAGE
================================================== */
if(typeof VMM != 'undefined') {
VMM.Language = {
lang: "cz",
api: {
wikipedia: "cs"
},
date: {
month: ["ledna", "února", "března", "dubna", "května", "června", "července", "srpna", "září", "října", "listopadu", "prosince"],
month_abbr: ["Led", "Úno", "Bře", "Dub", "Kvě", "Čen", "Čec", "Srp", "Zář", "Říj", "Lis", "Pro"],
day: ["neděle","pondělí", "úterý", "středa", "čtvrtek", "pátek", "sobota"],
day_abbr: ["Ne","Po", "Út", "St", "Čt", "Pá", "So"]
},
dateformats: {
year: "yyyy",
month_short: "mmm",
month: "mmmm yyyy",
full_short: "d. mmm ",
full: "d. mmmm',' yyyy",
time_no_seconds_short: "h:MM TT",
time_no_seconds_small_date: "h:MM TT'<br/><small>'d. mmmm',' yyyy'</small>'",
full_long: "d. mmm',' yyyy 'at' hh:MM TT",
full_long_small_date: "hh:MM TT'<br/><small>d. mmm',' yyyy'</small>'"
},
messages: {
loading_timeline: "Načítám časovou osu... ",
return_to_title: "Zpět na začátek",
expand_timeline: "Rozbalit časovou osu",
contract_timeline: "Sbalit časovou osu",
wikipedia: "Zdroj: otevřená encyklopedie Wikipedia",
loading_content: "Nahrávám obsah",
loading: "Nahrávám"
}
}
}

36
source/js/locale/de.js

@ -1,36 +0,0 @@
/* LANGUAGE
================================================== */
if(typeof VMM != 'undefined') {
VMM.Language = {
lang: "de",
api: {
wikipedia: "de"
},
date: {
month: ["Januar", "Februar", "März", "April", "Mai", "Juni", "Juli", "August", "September", "Oktober", "November", "Dezember"],
month_abbr: ["Jan.", "Feb.", "März", "Apr.", "Mai", "Juni", "Juli", "Aug.", "Sept.", "Okt.", "Nov.", "Dez."],
day: ["Sonntag","Montag", "Dienstag", "Mittwoch", "Donnerstag", "Freitag", "Samstag"],
day_abbr: ["So.","Mo.", "Di.", "Mi.", "Do.", "Fr.", "Sa."]
},
dateformats: {
year: "yyyy",
month_short: "mmm",
month: "mmmm yyyy",
full_short: "d. mmm",
full: "d. mmmm yyyy",
time_no_seconds_short: "HH:MM",
time_no_seconds_small_date: "HH:MM'<br/><small>'d. mmmm yyyy'</small>'",
full_long: "dddd',' d. mmm yyyy 'um' HH:MM",
full_long_small_date: "HH:MM'<br/><small>'dddd',' d. mmm yyyy'</small>'"
},
messages: {
loading_timeline: "Chronologie wird geladen...",
return_to_title: "Zurück zum Anfang",
expand_timeline: "Chronologie vergrößern",
contract_timeline: "Chronologie verkleinern",
wikipedia: "Wikipedia, Die freie Enzyklopädie",
loading_content: "Loading",
loading: "Loading"
}
}
}

36
source/js/locale/dk.js

@ -1,36 +0,0 @@
/* LANGUAGE
================================================== */
if(typeof VMM != 'undefined') {
VMM.Language = {
lang: "dk",
api: {
wikipedia: "dk"
},
date: {
month: ["Januar", "Februar", "Marts", "April", "Maj", "Juni", "Juli", "August", "September", "Oktober", "November", "December"],
month_abbr: ["Jan.", "Feb.", "Marts", "April", "Maj", "Juni", "Juli", "Aug.", "Sept.", "Okt.", "Nov.", "Dec."],
day: ["Søndag","Mandag", "Tirsdag", "Onsdag", "Torsdag", "Fredag", "Lørdag"],
day_abbr: ["Sø.","Ma.", "Ti.", "On.", "To.", "Fr.", "L?."]
},
dateformats: {
year: "yyyy",
month_short: "mmm",
month: "mmmm yyyy",
full_short: "d. mmm",
full: "d. mmmm',' yyyy",
time_no_seconds_short: "HH:MM",
time_no_seconds_small_date: "HH:MM'<br/><small>'d mmmm',' yyyy'</small>'",
full_long: "dddd',' d. mmm',' yyyy 'um' HH:MM",
full_long_small_date: "HH:MM'<br/><small>'dddd',' d. mmm yyyy'</small>'"
},
messages: {
loading_timeline: "Henter timeline... ",
return_to_title: "Tilbage til titel",
expand_timeline: "Forstør timeline",
contract_timeline: "Minimør timeline",
wikipedia: "Fra Wikipedia",
loading_content: "Henter indhold",
loading: "Arbejder"
}
}
}

36
source/js/locale/en.js

@ -1,36 +0,0 @@
/* LANGUAGE
================================================== */
if(typeof VMM != 'undefined') {
VMM.Language = {
lang: "en",
api: {
wikipedia: "en"
},
date: {
month: ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"],
month_abbr: ["Jan.", "Feb.", "March", "April", "May", "June", "July", "Aug.", "Sept.", "Oct.", "Nov.", "Dec."],
day: ["Sunday","Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"],
day_abbr: ["Sun.","Mon.", "Tues.", "Wed.", "Thurs.", "Fri.", "Sat."]
},
dateformats: {
year: "yyyy",
month_short: "mmm",
month: "mmmm yyyy",
full_short: "mmm d",
full: "mmmm d',' yyyy",
time_no_seconds_short: "h:MM TT",
time_no_seconds_small_date: "h:MM TT'<br/><small>'mmmm d',' yyyy'</small>'",
full_long: "mmm d',' yyyy 'at' hh:MM TT",
full_long_small_date: "hh:MM TT'<br/><small>mmm d',' yyyy'</small>'"
},
messages: {
loading_timeline: "Loading Timeline... ",
return_to_title: "Return to Title",
expand_timeline: "Expand Timeline",
contract_timeline: "Contract Timeline",
wikipedia: "From Wikipedia, the free encyclopedia",
loading_content: "Loading Content",
loading: "Loading"
}
}
}

37
source/js/locale/es.js

@ -1,37 +0,0 @@
/* LANGUAGE
================================================== */
if(typeof VMM != 'undefined') {
VMM.Language = {
lang: "es",
api: {
wikipedia: "es"
},
date: {
month: ["Enero","Febrero","Marzo","Abril","Mayo","Junio","Julio","Agosto","Septiembre","Octubre","Noviembre","Diciembre"],
month_abbr: ["Ene.","Feb.","Mar.","Abr.","May.","Jun.","Jul.","Ago.","Sep.","Oct.","Nov.","Dic."],
day: ["Domingo","Lunes","Martes","iércoles","Jueves","Viernes","Sábado"],
day_abbr: ["Dom.","Lun.","Mar.","Mié.","Jue.","Vie.","Sáb."]
},
dateformats: {
year: "yyyy",
month_short: "mmm",
month: "mmmm yyyy",
full_short: "d mmm",
full: "d mmmm yyyy",
time_no_seconds_short: "HH:MM",
time_no_seconds_small_date: "HH:MM'<br/><small>'d mmmm yyyy'</small>'",
full_long: "dddd',' d mmm yyyy 'um' HH:MM",
full_long_small_date: "HH:MM'<br/><small>'dddd',' d mmm yyyy'</small>'"
},
messages: {
loading_timeline: "Cronología esta cargando",
return_to_title: "Volver al título",
expand_timeline: "Enlargar la cronología",
contract_timeline: "Reducir la cronología",
wikipedia: "Desde Wikipedia, la enciclopedia libre",
loading_content: "cargando",
loading: "cargando"
}
}
}

36
source/js/locale/fo.js

@ -1,36 +0,0 @@
/* LANGUAGE
================================================== */
if(typeof VMM != 'undefined') {
VMM.Language = {
lang: "fo",
api: {
wikipedia: "fo"
},
date: {
month: ["januar", "februar", "mars", "aprÌl", "mai", "juni", "juli", "august", "september", "oktober", "november", "desember"],
month_abbr: ["jan.", "febr.", "mars", "aprÌl", "mai", "juni", "juli", "aug.", "sept.", "okt.", "nov.", "des."],
day: ["sunnudagur","m·nadagur", "t˝sdagur", "mikudagur", "hÛsdagur", "frÌggjadagur", "leygardagur"],
day_abbr: ["sun.","m·n.", "t˝s.", "mik.", "hÛs.", "frÌ.", "ley."]
},
dateformats: {
year: "yyyy",
month_short: "mmm",
month: "mmmm yyyy",
full_short: "d'.' mmm",
full: "d'.' mmmm yyyy",
time_no_seconds_short: "HH:MM",
time_no_seconds_small_date: "HH:MM'<br/><small>'d'.' mmmm yyyy'</small>'",
full_long: "d'.' mmmm yyyy 'klokkan' HH:MM",
full_long_small_date: "HH:MM'<br/><small>'d'.' mmm yyyy'</small>'"
},
messages: {
loading_timeline: "Lesur inn t&iacute;&eth;arr&aacute;s...",
return_to_title: "V&iacute;&eth;ka t&iacute;&eth;arr&aacute;s...",
expand_timeline: "Minka t&iacute;&eth;arr&aacute;s...",
contract_timeline: "Minka t&iacute;&eth;arr&aacute;s",
wikipedia: "Fr· Wikipedia",
loading_content: "Lesur inn tilfar",
loading: "Lesur inn"
}
}
}

37
source/js/locale/fr.js

@ -1,37 +0,0 @@
/* LANGUAGE
================================================== */
if(typeof VMM != 'undefined') {
VMM.Language = {
lang: "fr",
api: {
wikipedia: "fr"
},
date: {
month: ["janvier", "février", "mars", "avril", "mai", "juin", "juillet", "août", "septembre", "octobre", "novembre", "décembre"],
month_abbr: ["janv.", "févr.", "mars", "avril", "mai", "juin", "juil.", "août", "sept.", "oct.", "nov.", "dec."],
day: ["Dimanche","Lundi", "Mardi", "Mercredi", "Jeudi", "Vendredi", "Samedi"],
day_abbr: ["Dim.","Lu.", "Ma.", "Me.", "Jeu.", "Vend.", "Sam."],
},
dateformats: {
year: "yyyy",
month_short: "mmm",
month: "mmmm yyyy",
full_short: "d mmm",
full: "d mmmm yyyy",
time_no_seconds_short: "HH:MM",
time_no_seconds_small_date: "HH:MM'<br/><small>'d mmmm yyyy'</small>'",
full_long: "dddd',' d mmm yyyy 'à' HH:MM",
full_long_small_date: "HH:MM'<br/><small>'dddd',' d mmm yyyy'</small>'"
},
messages: {
loading_timeline: "Chargement de la frise en cours... ",
return_to_title: "Retour à la page d'accueil",
expand_timeline: "Elargir la frise",
contract_timeline: "Réduire la frise",
wikipedia: "Extrait de Wikipedia, l'encyclopédie libre",
loading_content: "Chargement",
loading: "Chargement"
}
}
}

36
source/js/locale/id.js

@ -1,36 +0,0 @@
/* LANGUAGE
================================================== */
if(typeof VMM != 'undefined') {
VMM.Language = {
lang: "id",
api: {
wikipedia: "id"
},
date: {
month: ["Januari", "Februari", "Maret", "April", "Mei", "Juni", "Juli", "Agustus", "September", "Oktober", "November", "Desember"],
month_abbr: ["Jan.", "Feb.", "Maret", "April", "Mei", "Juni", "July", "Agus.", "Sept.", "Okt.", "Nov.", "Des."],
day: ["Ahad","Senin", "Selasa", "Rabu", "Kamis", "Jum'at", "Sabtu"],
day_abbr: ["Ahad","Sen.", "Sel.", "Rabu", "Kamis", "Jum.", "Sab."]
},
dateformats: {
year: "yyyy",
month_short: "mmm",
month: "mmmm yyyy",
full_short: "d mmm",
full: "d mmmm yyyy",
time_no_seconds_short: "HH:MM",
time_no_seconds_small_date: "HH:MM'<br/><small>'d mmmm yyyy'</small>'",
full_long: "dddd',' d mmm yyyy 'pukul' HH:MM",
full_long_small_date: "HH:MM'<br/><small>'dddd',' d mmm yyyy'</small>'"
},
messages: {
loading_timeline: "Memuat Timeline... ",
return_to_title: "Kembali ke Judul",
expand_timeline: "Kembangkan Timeline",
contract_timeline: "Ciutkan Timeline",
wikipedia: "dari Wikipedia, ensiklopedia bebas",
loading_content: "Memuat Isi",
loading: "Memuat"
}
}
}

37
source/js/locale/is.js

@ -1,37 +0,0 @@
/* LANGUAGE
================================================== */
if(typeof VMM != 'undefined') {
VMM.Language = {
lang: "is",
api: {
wikipedia: "is"
},
date: {
month: ["janúar", "febrúar", "mars", "apríl", "maí", "júní", "júlí", "ágúst", "september", "október", "nóvember", "desember"],
month_abbr: ["jan.", "feb.", "mars", "apríl", "maí", "júní", "júlí", "ágúst", "sept.", "okt.", "nóv.", "des."],
day: ["sunnudagur", "mánudagur", "þriðjudagur", "miðvikudagur", "fimmtudagur", "föstudagur", "laugardagur"],
day_abbr: ["sun.","mán.", "þri.", "mið.", "fim.", "fös.", "lau."]
},
dateformats: {
year: "yyyy",
month_short: "mmm",
month: "mmmm yyyy",
full_short: "mmm d",
full: "mmmm d',' yyyy",
time_no_seconds_short: "hh:MM TT",
time_no_seconds_small_date: "hh:MM TT'<br/><small>'mmmm d',' yyyy'</small>'",
full_long: "dddd',' mmm d',' yyyy 'at' hh:MM TT",
full_long_small_date: "hh:MM TT'<br/><small>'dddd',' mmm d',' yyyy'</small>'"
},
messages: {
loading_timeline: "Raða upp tímalínu... ",
return_to_title: "Til baka á forsíðu",
expand_timeline: "Stækka tímalínu",
contract_timeline: "Minnka tímalínu",
wikipedia: "From Wikipedia, the free encyclopedia",
loading_content: "Raða",
loading: "Raða"
}
}
}

37
source/js/locale/it.js

@ -1,37 +0,0 @@
/* LANGUAGE
================================================== */
if(typeof VMM != 'undefined') {
VMM.Language = {
lang: "it",
api: {
wikipedia: "it"
},
date: {
month: ["Gennaio","Febbraio","Marzo","Aprile","Maggio","Giugno","Luglio","Agosto","Settebre","Ottobre","Novembre","Dicembre"],
month_abbr: ["Gen","Feb","Mar","Apr","Mag","Giu","Lug","Ago","Set","Ott","Nov","Dic"],
day: ["Domenica","Lunedi","Martedi","Mercoledi","Giovedi","Venerdi","Sabato"],
day_abbr: ["Dom.","Lun.","Mar.","Mer.","Gio.","Ven.","Sab."]
},
dateformats: {
year: "yyyy",
month_short: "mmm",
month: "mmmm yyyy",
full_short: "d mmm",
full: "d mmmm yyyy",
time_no_seconds_short: "HH:MM",
time_no_seconds_small_date: "HH:MM'<br/><small>'d mmmm yyyy'</small>'",
full_long: "dddd',' d mmm yyyy 'um' HH:MM",
full_long_small_date: "HH:MM'<br/><small>'dddd',' d mmm yyyy'</small>'"
},
messages: {
loading_timeline: "Loading Timeline... ",
return_to_title: "Return to Title",
expand_timeline: "Expand Timeline",
contract_timeline: "Contract Timeline",
wikipedia: "Wikipedia, L’enciclopedia libera",
loading_content: "Loading Content",
loading: "Loading"
}
}
}

37
source/js/locale/ja.js

@ -1,37 +0,0 @@
/* LANGUAGE
================================================== */
if(typeof VMM != 'undefined') {
VMM.Language = {
lang: "ja",
api: {
wikipedia: "ja"
},
date: {
month: ["1月", "2月", "3月", "4月", "5月", "6月", "7月", "8月", "9月", "10月", "11月", "12月"],
month_abbr: ["1月", "2月", "3月", "4月", "5月", "6月", "7月", "8月", "9月", "10月", "11月", "12月"],
day: ["日曜日", "月曜日", "火曜日", "水曜日", "木曜日", "金曜日", "土曜日"],
day_abbr: ["日", "月", "火", "水", "木", "金", "土"]
},
dateformats: {
year: "yyyy年",
month_short: "mmm",
month: "yyyy年 m月d日 (ddd)",
full_short: "yyyy年m月d日",
full: "yyyy年 m月d日 (ddd)",
time_no_seconds_short: "HH:MM",
time_no_seconds_small_date: "HH:MM'<br/><small>'yyyy年m月d日'</small>'",
full_long: "yyyy年m月d日 H時M分s秒",
full_long_small_date: "HH:MM:ss'<br/><small>'yyyy年m月d日'</small>'"
},
messages: {
loading_timeline: "Loading Timeline... ",
return_to_title: "Return to Title",
expand_timeline: "Expand Timeline",
contract_timeline: "Contract Timeline",
wikipedia: "From Wikipedia, the free encyclopedia",
loading_content: "Loading Content",
loading: "Loading"
}
}
}

37
source/js/locale/kr.js

@ -1,37 +0,0 @@
/* LANGUAGE
================================================== */
if(typeof VMM != 'undefined') {
VMM.Language = {
lang: "kr",
api: {
wikipedia: "kr"
},
date: {
month: ["1월","2월","3월","4월","5월","6월","7월","8월","9월","10월","11월","12월"],
month_abbr: ["1월","2월","3월","4월","5월","6월","7월","8월","9월","10월","11월","12월"],
day: ["일요일" , "월요일" , "화요일" , "수요일" , "목요일" , "금요일" , "토요일"],
day_abbr: ["일" , "월" , "화" , "수" , "목" , "금" , "토"]
},
dateformats: {
year: "yyyy",
month_short: "mmm",
month: "mmmm yyyy",
full_short: "d mmm",
full: "d mmmm yyyy",
time_no_seconds_short: "HH:MM",
time_no_seconds_small_date: "HH:MM'<br/><small>'d mmmm yyyy'</small>'",
full_long: "dddd',' d mmm yyyy 'um' HH:MM",
full_long_small_date: "HH:MM'<br/><small>'dddd',' d mmm yyyy'</small>'"
},
messages: {
loading_timeline: "Loading Timeline... ",
return_to_title: "Return to Title",
expand_timeline: "Expand Timeline",
contract_timeline: "Contract Timeline",
wikipedia: "From Wikipedia, the free encyclopedia",
loading_content: "Loading Content",
loading: "Loading"
}
}
}

37
source/js/locale/nl.js

@ -1,37 +0,0 @@
/* LANGUAGE
================================================== */
if(typeof VMM != 'undefined') {
VMM.Language = {
lang: "nl",
api: {
wikipedia: "nl"
},
date: {
month: ["januari", "februari", "maart", "april", "mei", "juni", "juli", "augustus", "september", "oktober", "november", "december"],
month_abbr: ["jan", "febr", "ma", "apr", "mei", "juni", "juli", "aug", "sept", "okt", "nov", "dec"],
day: ["zondag","maandag", "dinsdag", "woensdag", "donderdag", "vrijdag", "zaterdag"],
day_abbr: ["zo","ma", "di", "wo", "do", "vr", "za"]
},
dateformats: {
year: "yyyy",
month_short: "mmm",
month: "mmmm yyyy",
full_short: "d mmm",
full: "d mmmm yyyy",
time_no_seconds_short: "HH:MM",
time_no_seconds_small_date: "HH:MM'<br/><small>'d mmmm yyyy'</small>'",
full_long: "dddd',' d mmm yyyy 'um' HH:MM",
full_long_small_date: "HH:MM'<br/><small>'dddd',' d mmm yyyy'</small>'"
},
messages: {
loading_timeline: "Tijdlijn laden ... ",
return_to_title: "Terug naar het begin",
expand_timeline: "Tijdlijn uitzoomen",
contract_timeline: "Tijdlijn inzoomen",
wikipedia: "From Wikipedia, the free encyclopedia",
loading_content: "Loading Content",
loading: "Loading"
}
}
}

37
source/js/locale/pl.js

@ -1,37 +0,0 @@
/* LANGUAGE
================================================== */
if(typeof VMM != 'undefined') {
VMM.Language = {
lang: "pl",
api: {
wikipedia: "pl"
},
date: {
month: ["Styczeń", "Luty", "Marzec", "Kwiecień", "Maj", "Czerwiec", "Lipiec", "Sierpień", "Wrzesień", "Październik", "Listopad", "Grudzień"],
month_abbr: ["Sty.", "Lut.", "Mar.", "Kwi.", "Maj.", "Cze.", "Lip.", "Sie.", "Wrz.", "Paź.", "Lis.", "Gru."],
day: ["Niedziela","Poniedziałek", "Wtorek", "Środa", "Czwartek", "Piątek", "Sobota"],
day_abbr: ["Nie.", "Pon.","Wto.", "Śro.", "Czw.", "Pią.", "Sob."]
},
dateformats: {
year: "yyyy",
month_short: "mmm",
month: "mmmm yyyy",
full_short: "d mmm",
full: "d mmmm yyyy",
time_no_seconds_short: "HH:MM",
time_no_seconds_small_date: "HH:MM'<br/><small>'d mmmm yyyy'</small>'",
full_long: "dddd',' d mmm yyyy 'um' HH:MM",
full_long_small_date: "HH:MM'<br/><small>'dddd',' d mmm yyyy'</small>'"
},
messages: {
loading_timeline: "Ładowanie Timeline... ",
return_to_title: "Wróć do tutułu",
expand_timeline: "Rozszerz Timeline",
contract_timeline: "Umowa Timeline",
wikipedia: "Z Wikipedii, wolnej encyklopedii",
loading_content: "Ładowanie zawartości",
loading: "Ładowanie"
}
}
}

37
source/js/locale/pt-br.js

@ -1,37 +0,0 @@
/* LANGUAGE
================================================== */
if(typeof VMM != 'undefined') {
VMM.Language = {
lang: "pt-br",
api: {
wikipedia: "pt"
},
date: {
month: ["Janeiro", "Fevereiro", "Março", "Abril", "Maio", "Junho", "Julho", "Agosto", "Setembro", "Outubro", "Novembro", "Dezembro"],
month_abbr: ["Jan.", "Fev.", "Mar.", "Abr.", "Mai.", "Jun.", "Jul.", "Ago.", "Set.", "Out.", "Nov.", "Dez."],
day: ["Domingo","Segunda", "Terça", "Quarta", "Quinta", "Sexta", "Sábado"],
day_abbr: ["Dom.","Seg.", "Ter.", "Qua.", "Qui.", "Sex.", "Sáb."]
},
dateformats: {
year: "yyyy",
month_short: "mmm",
month: "mmmm 'de' yyyy",
full_short: "d 'de' mmm",
full: "d 'de' mmmm',' yyyy",
time_no_seconds_short: "hh:MM TT",
time_no_seconds_small_date: "hh:MM TT'<br/><small>'d 'de' mmmm',' yyyy'</small>'",
full_long: "dddd',' d 'de' mmm',' yyyy 'às' hh:MM TT",
full_long_small_date: "hh:MM TT'<br/><small>'dddd',' d 'de' mmm',' yyyy'</small>'"
},
messages: {
loading_timeline: "Carregando Timeline... ",
return_to_title: "Voltar para o título",
expand_timeline: "Expandir Timeline",
contract_timeline: "Contrair Timeline",
wikipedia: "Wikipedia, A enciclopédia livre",
loading_content: "Loading Content",
loading: "Loading"
}
}
}

36
source/js/locale/ru.js

@ -1,36 +0,0 @@
/* LANGUAGE
================================================== */
if (typeof VMM != "undefined") {
VMM.Language = {
lang:"ru",
api:{
wikipedia:"ru"
},
date:{
month:["Январь", "Февраль", "Март", "Апрель", "Май", "Июнь", "Июль", "Август", "Сентябрь", "Октябрь", "Ноябрь", "Декабрь"],
month_abbr:["Янв.", "Фев.", "Март", "Апр.", "Май", "Июнь", "Июль", "Авг.", "Сент.", "Окт.", "Нояб.", "Дек."],
day:["Воскресенье", "Понедельник", "Вторник", "Среда", "Четверг", "Пятница", "Суббота"],
day_abbr:["Вск.", "Пн.", "Вт.", "Ср.", "Чт.", "Пт.", "Сб."]
},
dateformats:{
year:"yyyy",
month_short:"mmm",
month:"mmmm yyyy",
full_short:"mmm d",
full:"mmmm d',' yyyy",
time_no_seconds_short:"h:MM TT",
time_no_seconds_small_date:"h:MM TT'<br/><small>'mmmm d',' yyyy'</small>'",
full_long:"mmm d',' yyyy 'at' hh:MM TT",
full_long_small_date:"hh:MM TT'<br/><small>mmm d',' yyyy'</small>'"
},
messages:{
loading_timeline:"Загрузка... ",
return_to_title:"Вернуться к заголовку",
expand_timeline:"Увеличить",
contract_timeline:"Уменьшить",
wikipedia:"Из Wikipedia",
loading_content:"Загрузка контента",
loading: "Загрузка"
}
}
};

37
source/js/locale/zh-ch.js

@ -1,37 +0,0 @@
/* LANGUAGE
================================================== */
if(typeof VMM != 'undefined') {
VMM.Language = {
lang: "zh-ch",
api: {
wikipedia: "zh"
},
date: {
month: ["一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月"],
month_abbr: ["一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月"],
day: ["星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六"],
day_abbr: ["周日", "周一", "周二", "周三", "周四", "周五", "周六"]
},
dateformats: {
year: "yyyy",
month_short: "mmm",
month: "mmmm yyyy",
full_short: "d mmm",
full: "d mmmm yyyy",
time_no_seconds_short: "HH:MM",
time_no_seconds_small_date: "HH:MM'<br/><small>'d mmmm yyyy'</small>'",
full_long: "dddd',' d mmm yyyy 'um' HH:MM",
full_long_small_date: "HH:MM'<br/><small>'dddd',' d mmm yyyy'</small>'"
},
messages: {
loading_timeline: "加载时间线... ",
return_to_title: "回到开头",
expand_timeline: "伸展时间",
contract_timeline: "缩短时间",
wikipedia: "From Wikipedia, the free encyclopedia",
loading_content: "Loading Content",
loading: "Loading"
}
}
}

37
source/js/locale/zh-tw.js

@ -1,37 +0,0 @@
/* LANGUAGE
================================================== */
if(typeof VMM != 'undefined') {
VMM.Language = {
lang: "zh-tw",
api: {
wikipedia: "zh"
},
date: {
month: ["一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月"],
month_abbr: ["一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月"],
day: ["星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六"],
day_abbr: ["週日", "週一", "週二", "週三", "週四", "週五", "週六"]
},
dateformats: {
year: "yyyy",
month_short: "mmm",
month: "mmmm yyyy",
full_short: "d mmm",
full: "d mmmm yyyy",
time_no_seconds_short: "HH:MM",
time_no_seconds_small_date: "HH:MM'<br/><small>'d mmmm yyyy'</small>'",
full_long: "dddd',' d mmm yyyy 'um' HH:MM",
full_long_small_date: "HH:MM'<br/><small>'dddd',' d mmm yyyy'</small>'"
},
messages: {
loading_timeline: "載入時間線... ",
return_to_title: "回到開頭",
expand_timeline: "展開時間",
contract_timeline: "縮短時間",
wikipedia: "擷取至維基百科, 自由之百科全書",
loading_content: "載入內容",
loading: "載入中"
}
}
}
Loading…
Cancel
Save