Commit 1c4dd84d authored by Addy Osmani's avatar Addy Osmani

Merge pull request #54 from jthomas/master

Finished Dojo MVC version
parents d76d3eef a7ca76ea
This source diff could not be displayed because it is too large. You can view the blob instead.
This diff is collapsed.
<!DOCTYPE html>
<html>
<head>
<title>Dojo</title>
<style type="text/css">
@import "./css/claro.css";
</style>
<link href="css/todos.css" media="all" rel="stylesheet" type="text/css"/>
<script data-dojo-config="async:true, parseOnLoad:true, paths:{'todo':'../../todo'}, deps:['dojo/parser', 'todo/app']" src="./js/dtk/dojo/dojo.js"></script>
</head>
<body class="claro">
<!-- Todo App Interface -->
<div id="todoapp">
<div class="title">
<h1>Todos</h1>
</div>
<div class="content" data-dojo-type="todo.app"></div>
<div id="credits">
Created by
<br />
<a href="http://jamesthom.as/">James Thomas</a> and <a href="https://github.com/edchat">Ed Chatelain</a>.
</div>
</div>
</body>
</html>
UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE
Unicode Data Files include all data files under the directories http://www.unicode.org/Public/, http://www.unicode.org/reports/,
and http://www.unicode.org/cldr/data/ . Unicode Software includes any source code published in the Unicode Standard or under
the directories http://www.unicode.org/Public/, http://www.unicode.org/reports/, and http://www.unicode.org/cldr/data/.
NOTICE TO USER: Carefully read the following legal agreement. BY DOWNLOADING, INSTALLING, COPYING OR
OTHERWISE USING UNICODE INC.'S DATA FILES ("DATA FILES"), AND/OR SOFTWARE ("SOFTWARE"), YOU
UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE TERMS AND CONDITIONS OF THIS
AGREEMENT. IF YOU DO NOT AGREE, DO NOT DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE.
COPYRIGHT AND PERMISSION NOTICE
Copyright © 1991-2007 Unicode, Inc. All rights reserved. Distributed under the Terms of Use in http://www.unicode.org/copyright.html.
Permission is hereby granted, free of charge, to any person obtaining a copy of the Unicode data files and any associated
documentation (the "Data Files") or Unicode software and any associated documentation (the "Software") to deal in the Data
Files or Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, and/or sell
copies of the Data Files or Software, and to permit persons to whom the Data Files or Software are furnished to do so, provided
that (a) the above copyright notice(s) and this permission notice appear with all copies of the Data Files or Software, (b) both the
above copyright notice(s) and this permission notice appear in associated documentation, and (c) there is clear notice in each modified Data File
or in the Software as well as in the documentation associated with the Data File(s) or Software that the data or software has been modified.
THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE
AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES,
OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF
CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
PERFORMANCE OF THE DATA FILES OR SOFTWARE.
Except as contained in this notice, the name of a copyright holder shall not be used in advertising or otherwise to promote the sale, use or other
dealings in these Data Files or Software without prior written authorization of the copyright holder.
\ No newline at end of file
All files within this directory were derived from the Common Locale
Data Repository (see http://unicode.org/cldr) The CLDR project is
responsible for the accuracy and maintenance of this data. A copy
of this data is checked into the Dojo util project as a zip file.
The XML data is transformed to the JSON-style Javascript you see
under the nls/ directory. These Javascript files include data
necessary to do things like format and parse dates, numbers, and
currencies in different locales to consider cultural differences.
They are used by other modules in core Dojo such as dojo.date,
dojo.number and dojo.currency. It usually is not necessary to use
dojo.cldr directly.
An arbitrary subset of locales have been checked in to dojo/cldr
under svn. To support other locales, the full set may be generated
by using xslt scripts in the util/buildscripts/cldr/ ant script.
Hundreds of locales are supported by the CLDR project.
See terms of use: http://www.unicode.org/copyright.html#Exhibit1
define(["../main"], function(dojo) {
// module:
// dojo/cldr/monetary
// summary:
// TODOC
var monetary = dojo.getObject("dojo.cldr.monetary", true);
/*=====
monetary = dojo.cldr.monetary;
=====*/
monetary.getData = function(/*String*/code){
// summary: A mapping of currency code to currency-specific formatting information. Returns a unique object with properties: places, round.
// code: an [ISO 4217](http://en.wikipedia.org/wiki/ISO_4217) currency code
// from http://www.unicode.org/cldr/data/common/supplemental/supplementalData.xml:supplementalData/currencyData/fractions
var placesData = {
ADP:0,AFN:0,ALL:0,AMD:0,BHD:3,BIF:0,BYR:0,CLF:0,CLP:0,
COP:0,CRC:0,DJF:0,ESP:0,GNF:0,GYD:0,HUF:0,IDR:0,IQD:0,
IRR:3,ISK:0,ITL:0,JOD:3,JPY:0,KMF:0,KPW:0,KRW:0,KWD:3,
LAK:0,LBP:0,LUF:0,LYD:3,MGA:0,MGF:0,MMK:0,MNT:0,MRO:0,
MUR:0,OMR:3,PKR:0,PYG:0,RSD:0,RWF:0,SLL:0,SOS:0,STD:0,
SYP:0,TMM:0,TND:3,TRL:0,TZS:0,UGX:0,UZS:0,VND:0,VUV:0,
XAF:0,XOF:0,XPF:0,YER:0,ZMK:0,ZWD:0
};
var roundingData = {CHF:5};
var places = placesData[code], round = roundingData[code];
if(typeof places == "undefined"){ places = 2; }
if(typeof round == "undefined"){ round = 0; }
return {places: places, round: round}; // Object
};
return monetary;
});
define(
//begin v1.x content
{
"dateFormatItem-yM": "M‏/y G",
"dateFormatItem-yQ": "yyyy Q",
"dayPeriods-format-wide-pm": "م",
"eraNames": [
"التقويم البوذي"
],
"dateFormatItem-MMMEd": "E d MMM",
"dateFormatItem-MMdd": "dd‏/MM",
"dateFormatItem-MMM": "LLL",
"months-standAlone-narrow": [
"ي",
"ف",
"م",
"أ",
"و",
"ن",
"ل",
"غ",
"س",
"ك",
"ب",
"د"
],
"dayPeriods-format-wide-am": "ص",
"dateFormatItem-y": "y G",
"timeFormat-full": "zzzz h:mm:ss a",
"dateFormatItem-Ed": "E، d",
"dateFormatItem-yMMM": "MMM y G",
"days-standAlone-narrow": [
"ح",
"ن",
"ث",
"ر",
"خ",
"ج",
"س"
],
"eraAbbr": [
"التقويم البوذي"
],
"dateFormatItem-yyyyMM": "MM‏/y G",
"dateFormatItem-yyyyMMMM": "MMMM، y G",
"dateFormat-long": "d MMMM، y G",
"timeFormat-medium": "h:mm:ss a",
"dateFormatItem-Hm": "HH:mm",
"dateFormat-medium": "dd‏/MM‏/y G",
"dateFormatItem-yMd": "d/‏M/‏y G",
"dateFormatItem-yMMMM": "MMMM y G",
"dateFormatItem-ms": "mm:ss",
"quarters-standAlone-narrow": [
"١",
"٢",
"٣",
"٤"
],
"dateFormatItem-MMMMEd": "E d MMMM",
"dateFormatItem-MMMd": "d MMM",
"timeFormat-long": "z h:mm:ss a",
"timeFormat-short": "h:mm a",
"dateFormatItem-MMMMd": "d MMMM",
"days-format-abbr": [
"أحد",
"إثنين",
"ثلاثاء",
"أربعاء",
"خميس",
"جمعة",
"سبت"
],
"dateFormatItem-M": "L",
"dateFormatItem-yMMMd": "d MMMM y G",
"dateFormat-short": "d‏/M‏/y G",
"dateFormatItem-yMMMEd": "EEE، d MMMM y G",
"dateFormat-full": "EEEE، d MMMM، y G",
"dateFormatItem-Md": "d/‏M",
"dateFormatItem-yMEd": "EEE، d/‏M/‏y G",
"months-format-wide": [
"يناير",
"فبراير",
"مارس",
"أبريل",
"مايو",
"يونيو",
"يوليو",
"أغسطس",
"سبتمبر",
"أكتوبر",
"نوفمبر",
"ديسمبر"
],
"dateFormatItem-d": "d",
"quarters-format-wide": [
"الربع الأول",
"الربع الثاني",
"الربع الثالث",
"الربع الرابع"
],
"eraNarrow": [
"التقويم البوذي"
],
"days-format-wide": [
"الأحد",
"الإثنين",
"الثلاثاء",
"الأربعاء",
"الخميس",
"الجمعة",
"السبت"
]
}
//end v1.x content
);
\ No newline at end of file
define(
//begin v1.x content
{
"HKD_displayName": "دولار هونج كونج",
"CHF_displayName": "فرنك سويسري",
"CAD_displayName": "دولار كندي",
"CNY_displayName": "يوان صيني",
"AUD_displayName": "دولار أسترالي",
"JPY_displayName": "ين ياباني",
"USD_displayName": "دولار أمريكي",
"CNY_symbol": "ي.ص",
"GBP_displayName": "جنيه إسترليني",
"EUR_displayName": "يورو"
}
//end v1.x content
);
\ No newline at end of file
define(
//begin v1.x content
{
"dateFormatItem-yM": "M‏/yyyy",
"field-dayperiod": "ص/م",
"dateFormatItem-yQ": "yyyy Q",
"dayPeriods-format-wide-pm": "م",
"field-minute": "الدقائق",
"eraNames": [
"قبل الميلاد",
"ميلادي"
],
"dateFormatItem-MMMEd": "E d MMM",
"field-day-relative+-1": "أمس",
"field-weekday": "اليوم",
"dateFormatItem-yQQQ": "y QQQ",
"dateFormatItem-MMdd": "dd‏/MM",
"days-standAlone-wide": [
"الأحد",
"الإثنين",
"الثلاثاء",
"الأربعاء",
"الخميس",
"الجمعة",
"السبت"
],
"dateFormatItem-MMM": "LLL",
"months-standAlone-narrow": [
"ي",
"ف",
"م",
"أ",
"و",
"ن",
"ل",
"غ",
"س",
"ك",
"ب",
"د"
],
"field-era": "العصر",
"field-hour": "الساعات",
"dayPeriods-format-wide-am": "ص",
"quarters-standAlone-abbr": [
"الربع الأول",
"الربع الثاني",
"الربع الثالث",
"الربع الرابع"
],
"dateFormatItem-y": "y",
"timeFormat-full": "zzzz h:mm:ss a",
"months-standAlone-abbr": [
"يناير",
"فبراير",
"مارس",
"أبريل",
"مايو",
"يونيو",
"يوليو",
"أغسطس",
"سبتمبر",
"أكتوبر",
"نوفمبر",
"ديسمبر"
],
"dateFormatItem-Ed": "E، d",
"dateFormatItem-yMMM": "MMM y",
"field-day-relative+0": "اليوم",
"field-day-relative+1": "غدًا",
"days-standAlone-narrow": [
"ح",
"ن",
"ث",
"ر",
"خ",
"ج",
"س"
],
"eraAbbr": [
"ق.م",
"م"
],
"field-day-relative+2": "بعد الغد",
"dateFormatItem-yyyyMM": "MM‏/yyyy",
"dateFormatItem-yyyyMMMM": "MMMM، y",
"dateFormat-long": "d MMMM، y",
"timeFormat-medium": "h:mm:ss a",
"field-zone": "التوقيت",
"dateFormatItem-Hm": "HH:mm",
"dateFormat-medium": "dd‏/MM‏/yyyy",
"quarters-standAlone-wide": [
"الربع الأول",
"الربع الثاني",
"الربع الثالث",
"الربع الرابع"
],
"dateFormatItem-yMMMM": "MMMM y",
"dateFormatItem-ms": "mm:ss",
"field-year": "السنة",
"quarters-standAlone-narrow": [
"١",
"٢",
"٣",
"٤"
],
"field-week": "الأسبوع",
"months-standAlone-wide": [
"يناير",
"فبراير",
"مارس",
"أبريل",
"مايو",
"يونيو",
"يوليو",
"أغسطس",
"سبتمبر",
"أكتوبر",
"نوفمبر",
"ديسمبر"
],
"dateFormatItem-MMMMEd": "E d MMMM",
"dateFormatItem-MMMd": "d MMM",
"quarters-format-narrow": [
"١",
"٢",
"٣",
"٤"
],
"dateFormatItem-yyQ": "Q yy",
"timeFormat-long": "z h:mm:ss a",
"months-format-abbr": [
"يناير",
"فبراير",
"مارس",
"أبريل",
"مايو",
"يونيو",
"يوليو",
"أغسطس",
"سبتمبر",
"أكتوبر",
"نوفمبر",
"ديسمبر"
],
"timeFormat-short": "h:mm a",
"field-month": "الشهر",
"dateFormatItem-MMMMd": "d MMMM",
"quarters-format-abbr": [
"الربع الأول",
"الربع الثاني",
"الربع الثالث",
"الربع الرابع"
],
"days-format-abbr": [
"أحد",
"إثنين",
"ثلاثاء",
"أربعاء",
"خميس",
"جمعة",
"سبت"
],
"dateFormatItem-M": "L",
"days-format-narrow": [
"ح",
"ن",
"ث",
"ر",
"خ",
"ج",
"س"
],
"field-second": "الثواني",
"field-day": "يوم",
"months-format-narrow": [
"ي",
"ف",
"م",
"أ",
"و",
"ن",
"ل",
"غ",
"س",
"ك",
"ب",
"د"
],
"days-standAlone-abbr": [
"أحد",
"إثنين",
"ثلاثاء",
"أربعاء",
"خميس",
"جمعة",
"سبت"
],
"dateFormat-short": "d‏/M‏/yyyy",
"dateFormatItem-yMMMEd": "EEE، d MMMM y",
"dateFormat-full": "EEEE، d MMMM، y",
"dateFormatItem-Md": "d/‏M",
"dateFormatItem-yMEd": "EEE، d/‏M/‏yyyy",
"months-format-wide": [
"يناير",
"فبراير",
"مارس",
"أبريل",
"مايو",
"يونيو",
"يوليو",
"أغسطس",
"سبتمبر",
"أكتوبر",
"نوفمبر",
"ديسمبر"
],
"dateFormatItem-d": "d",
"quarters-format-wide": [
"الربع الأول",
"الربع الثاني",
"الربع الثالث",
"الربع الرابع"
],
"days-format-wide": [
"الأحد",
"الإثنين",
"الثلاثاء",
"الأربعاء",
"الخميس",
"الجمعة",
"السبت"
],
"eraNarrow": [
"ق.م",
"م"
]
}
//end v1.x content
);
\ No newline at end of file
define(
//begin v1.x content
{
"dateFormat-medium": "dd/MM/yyyy",
"dateFormatItem-MMMEd": "E d MMM",
"dateFormatItem-yMEd": "EEE، d/M/yyyy",
"timeFormat-full": "zzzz h:mm:ss a",
"dateFormatItem-Md": "d/M",
"months-standAlone-wide": [
"تشري",
"مرحشوان",
"كيسلو",
"طيفت",
"شباط",
"آذار الأول",
"آذار",
"نيسان",
"أيار",
"سيفان",
"تموز",
"آب",
"أيلول"
],
"months-format-wide-leap": "آذار الثاني",
"days-standAlone-narrow": [
"ح",
"ن",
"ث",
"ر",
"خ",
"ج",
"س"
],
"dayPeriods-format-wide-pm": "م",
"months-standAlone-abbr": [
"تشري",
"مرحشوان",
"كيسلو",
"طيفت",
"شباط",
"آذار الأول",
"آذار",
"نيسان",
"أيار",
"سيفان",
"تموز",
"آب",
"أيلول"
],
"dayPeriods-format-wide-am": "ص",
"quarters-standAlone-narrow": [
"١",
"٢",
"٣",
"٤"
],
"timeFormat-medium": "h:mm:ss a",
"dateFormat-long": "d MMMM، y",
"dateFormat-short": "d/M/yyyy",
"dateFormatItem-yMMMEd": "EEE، d MMMM y",
"months-format-wide": [
"تشري",
"مرحشوان",
"كيسلو",
"طيفت",
"شباط",
"آذار الأول",
"آذار",
"نيسان",
"أيار",
"سيفان",
"تموز",
"آب",
"أيلول"
],
"dateFormatItem-yM": "M/yyyy",
"timeFormat-short": "h:mm a",
"months-format-abbr": [
"تشري",
"مرحشوان",
"كيسلو",
"طيفت",
"شباط",
"آذار الأول",
"آذار",
"نيسان",
"أيار",
"سيفان",
"تموز",
"آب",
"أيلول"
],
"timeFormat-long": "z h:mm:ss a",
"days-format-wide": [
"الأحد",
"الإثنين",
"الثلاثاء",
"الأربعاء",
"الخميس",
"الجمعة",
"السبت"
],
"dateFormatItem-yQ": "yyyy Q",
"dateFormatItem-yMMM": "MMM y",
"quarters-format-wide": [
"الربع الأول",
"الربع الثاني",
"الربع الثالث",
"الربع الرابع"
],
"dateFormat-full": "EEEE، d MMMM، y",
"dateFormatItem-MMMd": "d MMM",
"days-format-abbr": [
"أحد",
"إثنين",
"ثلاثاء",
"أربعاء",
"خميس",
"جمعة",
"سبت"
]
}
//end v1.x content
);
\ No newline at end of file
define(
//begin v1.x content
{
"dateFormat-medium": "dd/MM/yyyy",
"dateFormatItem-MMMEd": "E d MMM",
"dateFormatItem-yMEd": "EEE، d/M/yyyy",
"eraNarrow": [
"هـ"
],
"months-format-narrow": [
"م",
"ص",
"ر",
"ر",
"ج",
"ج",
"ر",
"ش",
"ر",
"ش",
"ذ",
"ذ"
],
"timeFormat-full": "zzzz h:mm:ss a",
"dateFormatItem-Md": "d/M",
"months-standAlone-narrow": [
"م",
"ص",
"ر",
"ر",
"ج",
"ج",
"ر",
"ش",
"ر",
"ش",
"ذ",
"ذ"
],
"months-standAlone-wide": [
"محرم",
"صفر",
"ربيع الأول",
"ربيع الآخر",
"جمادى الأولى",
"جمادى الآخرة",
"رجب",
"شعبان",
"رمضان",
"شوال",
"ذو القعدة",
"ذو الحجة"
],
"eraNames": [
"هـ"
],
"days-standAlone-narrow": [
"ح",
"ن",
"ث",
"ر",
"خ",
"ج",
"س"
],
"dayPeriods-format-wide-pm": "م",
"months-standAlone-abbr": [
"محرم",
"صفر",
"ربيع الأول",
"ربيع الآخر",
"جمادى الأولى",
"جمادى الآخرة",
"رجب",
"شعبان",
"رمضان",
"شوال",
"ذو القعدة",
"ذو الحجة"
],
"dayPeriods-format-wide-am": "ص",
"quarters-standAlone-narrow": [
"١",
"٢",
"٣",
"٤"
],
"timeFormat-medium": "h:mm:ss a",
"dateFormat-long": "d MMMM، y",
"dateFormat-short": "d/M/yyyy",
"dateFormatItem-yMMMEd": "EEE، d MMMM y",
"months-format-wide": [
"محرم",
"صفر",
"ربيع الأول",
"ربيع الآخر",
"جمادى الأولى",
"جمادى الآخرة",
"رجب",
"شعبان",
"رمضان",
"شوال",
"ذو القعدة",
"ذو الحجة"
],
"dateFormatItem-yM": "M/yyyy",
"timeFormat-short": "h:mm a",
"months-format-abbr": [
"محرم",
"صفر",
"ربيع الأول",
"ربيع الآخر",
"جمادى الأولى",
"جمادى الآخرة",
"رجب",
"شعبان",
"رمضان",
"شوال",
"ذو القعدة",
"ذو الحجة"
],
"eraAbbr": [
"هـ"
],
"timeFormat-long": "z h:mm:ss a",
"days-format-wide": [
"الأحد",
"الإثنين",
"الثلاثاء",
"الأربعاء",
"الخميس",
"الجمعة",
"السبت"
],
"dateFormatItem-yQ": "yyyy Q",
"dateFormatItem-yMMM": "MMM y",
"quarters-format-wide": [
"الربع الأول",
"الربع الثاني",
"الربع الثالث",
"الربع الرابع"
],
"dateFormat-full": "EEEE، d MMMM، y",
"dateFormatItem-MMMd": "d MMM",
"days-format-abbr": [
"أحد",
"إثنين",
"ثلاثاء",
"أربعاء",
"خميس",
"جمعة",
"سبت"
]
}
//end v1.x content
);
\ No newline at end of file
define(
//begin v1.x content
{
"group": "٬",
"percentSign": "٪",
"exponential": "اس",
"list": "؛",
"infinity": "",
"minusSign": "-",
"decimal": "٫",
"nan": "ليس رقم",
"perMille": "؉",
"decimalFormat": "#,##0.###;#,##0.###-",
"currencyFormat": "¤ #,##0.00;¤ #,##0.00-",
"plusSign": "+"
}
//end v1.x content
);
\ No newline at end of file
define({ root:
//begin v1.x content
{
"months-format-narrow": [
"1",
"2",
"3",
"4",
"5",
"6",
"7",
"8",
"9",
"10",
"11",
"12"
],
"quarters-standAlone-narrow": [
"1",
"2",
"3",
"4"
],
"dateFormatItem-yQQQ": "y QQQ",
"dateFormatItem-yMEd": "EEE, y-M-d",
"dateFormatItem-MMMEd": "E MMM d",
"eraNarrow": [
"BE"
],
"dateTimeFormats-appendItem-Day-Of-Week": "{0} {1}",
"dateFormat-long": "MMMM d, y G",
"months-format-wide": [
"1",
"2",
"3",
"4",
"5",
"6",
"7",
"8",
"9",
"10",
"11",
"12"
],
"dateTimeFormat-medium": "{1} {0}",
"dateFormatItem-EEEd": "d EEE",
"dayPeriods-format-wide-pm": "PM",
"dateFormat-full": "EEEE, MMMM d, y G",
"dateFormatItem-Md": "M-d",
"dayPeriods-format-abbr-am": "AM",
"dateTimeFormats-appendItem-Second": "{0} ({2}: {1})",
"dateFormatItem-yM": "y-M",
"months-standAlone-wide": [
"1",
"2",
"3",
"4",
"5",
"6",
"7",
"8",
"9",
"10",
"11",
"12"
],
"timeFormat-short": "HH:mm",
"quarters-format-wide": [
"Q1",
"Q2",
"Q3",
"Q4"
],
"timeFormat-long": "HH:mm:ss z",
"dateFormatItem-yMMM": "y MMM",
"dateFormatItem-yQ": "y Q",
"dateTimeFormats-appendItem-Era": "{0} {1}",
"months-format-abbr": [
"1",
"2",
"3",
"4",
"5",
"6",
"7",
"8",
"9",
"10",
"11",
"12"
],
"timeFormat-full": "HH:mm:ss zzzz",
"dateTimeFormats-appendItem-Week": "{0} ({2}: {1})",
"dateFormatItem-H": "HH",
"months-standAlone-abbr": [
"1",
"2",
"3",
"4",
"5",
"6",
"7",
"8",
"9",
"10",
"11",
"12"
],
"quarters-format-abbr": [
"Q1",
"Q2",
"Q3",
"Q4"
],
"quarters-standAlone-wide": [
"Q1",
"Q2",
"Q3",
"Q4"
],
"dateFormatItem-M": "L",
"days-standAlone-wide": [
"1",
"2",
"3",
"4",
"5",
"6",
"7"
],
"timeFormat-medium": "HH:mm:ss",
"dateFormatItem-Hm": "HH:mm",
"quarters-standAlone-abbr": [
"Q1",
"Q2",
"Q3",
"Q4"
],
"eraAbbr": [
"BE"
],
"days-standAlone-abbr": [
"1",
"2",
"3",
"4",
"5",
"6",
"7"
],
"dateFormatItem-d": "d",
"dateFormatItem-ms": "mm:ss",
"quarters-format-narrow": [
"1",
"2",
"3",
"4"
],
"dateFormatItem-h": "h a",
"dateTimeFormat-long": "{1} {0}",
"dayPeriods-format-narrow-am": "AM",
"dateFormatItem-MMMd": "MMM d",
"dateFormatItem-MEd": "E, M-d",
"dateTimeFormat-full": "{1} {0}",
"days-format-wide": [
"1",
"2",
"3",
"4",
"5",
"6",
"7"
],
"dateTimeFormats-appendItem-Day": "{0} ({2}: {1})",
"dateFormatItem-y": "y",
"months-standAlone-narrow": [
"1",
"2",
"3",
"4",
"5",
"6",
"7",
"8",
"9",
"10",
"11",
"12"
],
"dateFormatItem-hm": "h:mm a",
"dateTimeFormats-appendItem-Year": "{0} {1}",
"dateTimeFormats-appendItem-Hour": "{0} ({2}: {1})",
"dayPeriods-format-abbr-pm": "PM",
"days-format-abbr": [
"1",
"2",
"3",
"4",
"5",
"6",
"7"
],
"eraNames": [
"BE"
],
"days-format-narrow": [
"1",
"2",
"3",
"4",
"5",
"6",
"7"
],
"days-standAlone-narrow": [
"1",
"2",
"3",
"4",
"5",
"6",
"7"
],
"dateFormatItem-MMM": "LLL",
"dateTimeFormats-appendItem-Quarter": "{0} ({2}: {1})",
"dayPeriods-format-wide-am": "AM",
"dateTimeFormats-appendItem-Month": "{0} ({2}: {1})",
"dateTimeFormats-appendItem-Minute": "{0} ({2}: {1})",
"dateFormat-short": "M/d/yyyy",
"dateFormatItem-yMMMEd": "EEE, y MMM d",
"dateTimeFormats-appendItem-Timezone": "{0} {1}",
"dateFormat-medium": "MMM d, y G",
"dayPeriods-format-narrow-pm": "PM",
"dateTimeFormat-short": "{1} {0}",
"dateFormatItem-Hms": "HH:mm:ss",
"dateFormatItem-hms": "h:mm:ss a"
}
//end v1.x content
,
"ar": true,
"da": true,
"de": true,
"el": true,
"en": true,
"en-gb": true,
"es": true,
"fi": true,
"fr": true,
"hu": true,
"it": true,
"ja": true,
"ko": true,
"nb": true,
"nl": true,
"pl": true,
"pt": true,
"pt-pt": true,
"ro": true,
"ru": true,
"sv": true,
"th": true,
"tr": true,
"zh": true,
"zh-hant": true
});
\ No newline at end of file
define(
//begin v1.x content
{
"HKD_displayName": "dòlar de Hong Kong",
"CHF_displayName": "franc suís",
"CAD_displayName": "dòlar canadenc",
"CNY_displayName": "iuan renmimbi xinès",
"AUD_displayName": "dòlar australià",
"JPY_displayName": "ien japonès",
"USD_displayName": "dòlar dels Estats Units",
"GBP_displayName": "lliura esterlina britànica",
"EUR_displayName": "euro"
}
//end v1.x content
);
\ No newline at end of file
define(
//begin v1.x content
{
"months-format-narrow": [
"g",
"f",
"m",
"a",
"m",
"j",
"j",
"a",
"s",
"o",
"n",
"d"
],
"field-weekday": "dia de la setmana",
"dateFormatItem-yQQQ": "QQQ y",
"dateFormatItem-yMEd": "E d/M/yyyy",
"dateFormatItem-MMMEd": "E d MMM",
"eraNarrow": [
"aC",
"dC"
],
"dateFormat-long": "d MMMM 'de' y",
"months-format-wide": [
"de gener",
"de febrer",
"de març",
"d’abril",
"de maig",
"de juny",
"de juliol",
"d’agost",
"de setembre",
"d’octubre",
"de novembre",
"de desembre"
],
"dateFormatItem-EEEd": "EEE d",
"dayPeriods-format-wide-pm": "p.m.",
"dateFormat-full": "EEEE d MMMM 'de' y",
"dateFormatItem-Md": "d/M",
"field-era": "era",
"dateFormatItem-yM": "M/yyyy",
"months-standAlone-wide": [
"gener",
"febrer",
"març",
"abril",
"maig",
"juny",
"juliol",
"agost",
"setembre",
"octubre",
"novembre",
"desembre"
],
"timeFormat-short": "H:mm",
"quarters-format-wide": [
"1r trimestre",
"2n trimestre",
"3r trimestre",
"4t trimestre"
],
"timeFormat-long": "H:mm:ss z",
"field-year": "any",
"dateFormatItem-yMMM": "LLL y",
"dateFormatItem-yQ": "Q yyyy",
"field-hour": "hora",
"months-format-abbr": [
"de gen.",
"de febr.",
"de març",
"d’abr.",
"de maig",
"de juny",
"de jul.",
"d’ag.",
"de set.",
"d’oct.",
"de nov.",
"de des."
],
"dateFormatItem-yyQ": "Q yy",
"timeFormat-full": "H:mm:ss zzzz",
"field-day-relative+0": "avui",
"field-day-relative+1": "demà",
"field-day-relative+2": "demà passat",
"dateFormatItem-H": "H",
"field-day-relative+3": "d'aquí a tres dies",
"months-standAlone-abbr": [
"gen.",
"febr.",
"març",
"abr.",
"maig",
"juny",
"jul.",
"ag.",
"set.",
"oct.",
"nov.",
"des."
],
"quarters-format-abbr": [
"1T",
"2T",
"3T",
"4T"
],
"quarters-standAlone-wide": [
"1r trimestre",
"2n trimestre",
"3r trimestre",
"4t trimestre"
],
"dateFormatItem-M": "L",
"days-standAlone-wide": [
"diumenge",
"dilluns",
"dimarts",
"dimecres",
"dijous",
"divendres",
"dissabte"
],
"dateFormatItem-MMMMd": "d MMMM",
"timeFormat-medium": "H:mm:ss",
"dateFormatItem-Hm": "H:mm",
"quarters-standAlone-abbr": [
"1T",
"2T",
"3T",
"4T"
],
"eraAbbr": [
"aC",
"dC"
],
"field-minute": "minut",
"field-dayperiod": "a.m./p.m.",
"days-standAlone-abbr": [
"dg",
"dl",
"dt",
"dc",
"dj",
"dv",
"ds"
],
"dateFormatItem-d": "d",
"dateFormatItem-ms": "mm:ss",
"field-day-relative+-1": "ahir",
"field-day-relative+-2": "abans d'ahir",
"field-day-relative+-3": "fa tres dies",
"dateFormatItem-MMMd": "d MMM",
"dateFormatItem-MEd": "E d/M",
"dateFormatItem-yMMMM": "LLLL 'del' y",
"field-day": "dia",
"days-format-wide": [
"diumenge",
"dilluns",
"dimarts",
"dimecres",
"dijous",
"divendres",
"dissabte"
],
"field-zone": "zona",
"dateFormatItem-yyyyMM": "MM/yyyy",
"dateFormatItem-y": "y",
"months-standAlone-narrow": [
"g",
"f",
"m",
"a",
"m",
"j",
"j",
"a",
"s",
"o",
"n",
"d"
],
"dateFormatItem-hm": "h:mm a",
"days-format-abbr": [
"dg.",
"dl.",
"dt.",
"dc.",
"dj.",
"dv.",
"ds."
],
"eraNames": [
"aC",
"dC"
],
"days-format-narrow": [
"g",
"l",
"t",
"c",
"j",
"v",
"s"
],
"field-month": "mes",
"days-standAlone-narrow": [
"g",
"l",
"t",
"c",
"j",
"v",
"s"
],
"dateFormatItem-MMM": "LLL",
"dayPeriods-format-wide-am": "a.m.",
"dateFormatItem-MMMMEd": "E d MMMM",
"dateFormat-short": "dd/MM/yy",
"field-second": "segon",
"dateFormatItem-yMMMEd": "EEE d MMM y",
"field-week": "setmana",
"dateFormat-medium": "dd/MM/yyyy",
"dateFormatItem-mmss": "mm:ss",
"dateFormatItem-Hms": "H:mm:ss",
"dateFormatItem-hms": "h:mm:ss a"
}
//end v1.x content
);
\ No newline at end of file
define(
//begin v1.x content
{
"group": ".",
"percentSign": "%",
"exponential": "E",
"scientificFormat": "#E0",
"percentFormat": "#,##0%",
"list": ";",
"infinity": "",
"patternDigit": "#",
"minusSign": "-",
"decimal": ",",
"nan": "NaN",
"nativeZeroDigit": "0",
"perMille": "",
"decimalFormat": "#,##0.###",
"currencyFormat": "#,##0.00 ¤",
"plusSign": "+"
}
//end v1.x content
);
\ No newline at end of file
define(
//begin v1.x content
{
"HKD_displayName": "Dolar hongkongský",
"CHF_displayName": "Frank švýcarský",
"CAD_displayName": "Dolar kanadský",
"CNY_displayName": "Juan renminbi",
"AUD_displayName": "Dolar australský",
"JPY_displayName": "Jen",
"USD_displayName": "Dolar americký",
"GBP_displayName": "Libra šterlinků",
"EUR_displayName": "Euro"
}
//end v1.x content
);
\ No newline at end of file
define(
//begin v1.x content
{
"dateFormatItem-yM": "M.y",
"dateFormatItem-yQ": "Q yyyy",
"dayPeriods-format-wide-pm": "odp.",
"eraNames": [
"př.Kr.",
"po Kr."
],
"dateFormatItem-MMMEd": "E, d. MMM",
"field-day-relative+-1": "Včera",
"dateFormatItem-yQQQ": "QQQ y",
"field-day-relative+-2": "Předevčírem",
"days-standAlone-wide": [
"neděle",
"pondělí",
"úterý",
"středa",
"čtvrtek",
"pátek",
"sobota"
],
"months-standAlone-narrow": [
"l",
"ú",
"b",
"d",
"k",
"č",
"č",
"s",
"z",
"ř",
"l",
"p"
],
"dayPeriods-format-wide-am": "dop.",
"quarters-standAlone-abbr": [
"1. čtvrtletí",
"2. čtvrtletí",
"3. čtvrtletí",
"4. čtvrtletí"
],
"timeFormat-full": "H:mm:ss zzzz",
"dateFormatItem-yyyy": "y",
"months-standAlone-abbr": [
"1.",
"2.",
"3.",
"4.",
"5.",
"6.",
"7.",
"8.",
"9.",
"10.",
"11.",
"12."
],
"dateFormatItem-yMMM": "LLL y",
"field-day-relative+0": "Dnes",
"field-day-relative+1": "Zítra",
"days-standAlone-narrow": [
"N",
"P",
"Ú",
"S",
"Č",
"P",
"S"
],
"eraAbbr": [
"př.Kr.",
"po Kr."
],
"field-day-relative+2": "Pozítří",
"dateFormatItem-yyyyMMMM": "LLLL y",
"dateFormat-long": "d. MMMM y",
"timeFormat-medium": "H:mm:ss",
"dateFormatItem-EEEd": "EEE, d.",
"dateFormatItem-Hm": "H:mm",
"dateFormat-medium": "d.M.yyyy",
"dateFormatItem-Hms": "H:mm:ss",
"dateFormatItem-yMd": "d.M.y",
"quarters-standAlone-wide": [
"1. čtvrtletí",
"2. čtvrtletí",
"3. čtvrtletí",
"4. čtvrtletí"
],
"months-standAlone-wide": [
"leden",
"únor",
"březen",
"duben",
"květen",
"červen",
"červenec",
"srpen",
"září",
"říjen",
"listopad",
"prosinec"
],
"dateFormatItem-MMMd": "d. MMM",
"dateFormatItem-yyQ": "Q yy",
"timeFormat-long": "H:mm:ss z",
"months-format-abbr": [
"ledna",
"února",
"března",
"dubna",
"května",
"června",
"července",
"srpna",
"září",
"října",
"listopadu",
"prosince"
],
"timeFormat-short": "H:mm",
"dateFormatItem-H": "H",
"quarters-format-abbr": [
"1. čtvrtletí",
"2. čtvrtletí",
"3. čtvrtletí",
"4. čtvrtletí"
],
"days-format-abbr": [
"ne",
"po",
"út",
"st",
"čt",
"",
"so"
],
"days-format-narrow": [
"N",
"P",
"Ú",
"S",
"Č",
"P",
"S"
],
"dateFormatItem-MEd": "E, d.M",
"months-format-narrow": [
"l",
"ú",
"b",
"d",
"k",
"č",
"č",
"s",
"z",
"ř",
"l",
"p"
],
"days-standAlone-abbr": [
"ne",
"po",
"út",
"st",
"čt",
"",
"so"
],
"dateFormat-short": "d.M.yy",
"dateFormatItem-yyyyM": "M.yyyy",
"dateFormatItem-yMMMEd": "EEE, d. MMM y",
"dateFormat-full": "EEEE, d. MMMM y",
"dateFormatItem-Md": "d.M",
"dateFormatItem-yMEd": "EEE, d.M.y",
"months-format-wide": [
"ledna",
"února",
"března",
"dubna",
"května",
"června",
"července",
"srpna",
"září",
"října",
"listopadu",
"prosince"
],
"dateFormatItem-d": "d.",
"quarters-format-wide": [
"1. čtvrtletí",
"2. čtvrtletí",
"3. čtvrtletí",
"4. čtvrtletí"
],
"days-format-wide": [
"neděle",
"pondělí",
"úterý",
"středa",
"čtvrtek",
"pátek",
"sobota"
],
"eraNarrow": [
"př.Kr.",
"po Kr."
]
}
//end v1.x content
);
\ No newline at end of file
define(
//begin v1.x content
{
"group": " ",
"percentSign": "%",
"exponential": "E",
"scientificFormat": "#E0",
"percentFormat": "#,##0 %",
"list": ";",
"infinity": "",
"patternDigit": "#",
"minusSign": "-",
"decimal": ",",
"nan": "NaN",
"nativeZeroDigit": "0",
"perMille": "",
"decimalFormat": "#,##0.###",
"currencyFormat": "#,##0.00 ¤",
"plusSign": "+"
}
//end v1.x content
);
\ No newline at end of file
define({ root:
//begin v1.x content
{
"USD_symbol": "US$",
"CAD_symbol": "CA$",
"GBP_symbol": "£",
"HKD_symbol": "HK$",
"JPY_symbol": "JP¥",
"AUD_symbol": "AU$",
"CNY_symbol": "CN¥",
"EUR_symbol": ""
}
//end v1.x content
,
"ar": true,
"ca": true,
"cs": true,
"da": true,
"de": true,
"el": true,
"en": true,
"en-au": true,
"en-ca": true,
"es": true,
"fi": true,
"fr": true,
"he": true,
"hu": true,
"it": true,
"ja": true,
"ko": true,
"nb": true,
"nl": true,
"pl": true,
"pt": true,
"ro": true,
"ru": true,
"sk": true,
"sl": true,
"sv": true,
"th": true,
"tr": true,
"zh": true,
"zh-hant": true,
"zh-hk": true,
"zh-tw": true
});
\ No newline at end of file
define(
//begin v1.x content
{
"dateFormatItem-yM": "M/y G",
"dateFormatItem-yQ": "Q y G",
"dayPeriods-format-wide-pm": "e.m.",
"dateFormatItem-MMMEd": "E d. MMM",
"dateFormatItem-hms": "h.mm.ss a",
"dateFormatItem-yQQQ": "QQQ y G",
"dateFormatItem-MMdd": "dd/MM",
"dateFormatItem-MMM": "MMM",
"months-standAlone-narrow": [
"J",
"F",
"M",
"A",
"M",
"J",
"J",
"A",
"S",
"O",
"N",
"D"
],
"dayPeriods-format-wide-am": "f.m.",
"dateFormatItem-y": "y G",
"timeFormat-full": "HH.mm.ss zzzz",
"dateFormatItem-yyyy": "y G",
"months-standAlone-abbr": [
"jan",
"feb",
"mar",
"apr",
"maj",
"jun",
"jul",
"aug",
"sep",
"okt",
"nov",
"dec"
],
"dateFormatItem-Ed": "E d.",
"dateFormatItem-yMMM": "MMM y G",
"days-standAlone-narrow": [
"S",
"M",
"T",
"O",
"T",
"F",
"L"
],
"dateFormatItem-yyyyMM": "MM/y G",
"dateFormat-long": "d. MMMM y G",
"timeFormat-medium": "HH.mm.ss",
"dateFormatItem-Hm": "HH.mm",
"dateFormatItem-yyMM": "MM/y G",
"dateFormat-medium": "d. MMM y G",
"dateFormatItem-Hms": "HH.mm.ss",
"dateFormatItem-yyMMM": "MMM y G",
"dateFormatItem-yMd": "d/M/y G",
"dateFormatItem-ms": "mm.ss",
"dateFormatItem-MMMMEd": "E, d. MMMM",
"dateFormatItem-MMMd": "d. MMM",
"dateFormatItem-yyQ": "Q. 'kvartal' y G",
"timeFormat-long": "HH.mm.ss z",
"months-format-abbr": [
"jan.",
"feb.",
"mar.",
"apr.",
"maj",
"jun.",
"jul.",
"aug.",
"sep.",
"okt.",
"nov.",
"dec."
],
"timeFormat-short": "HH.mm",
"dateFormatItem-H": "HH",
"quarters-format-abbr": [
"K1",
"K2",
"K3",
"K4"
],
"days-format-abbr": [
"søn",
"man",
"tir",
"ons",
"tor",
"fre",
"lør"
],
"dateFormatItem-M": "M",
"dateFormatItem-MEd": "E. d/M",
"dateFormatItem-hm": "h.mm a",
"dateFormat-short": "d/M/yyyy",
"dateFormatItem-yMMMEd": "EEE. d. MMM y G",
"dateFormat-full": "EEEE d. MMMM y G",
"dateFormatItem-Md": "d/M",
"dateFormatItem-yMEd": "EEE. d/M/y G",
"months-format-wide": [
"januar",
"februar",
"marts",
"april",
"maj",
"juni",
"juli",
"august",
"september",
"oktober",
"november",
"december"
],
"dateFormatItem-yyyyMMM": "MMM y G",
"dateFormatItem-d": "d.",
"quarters-format-wide": [
"1. kvartal",
"2. kvartal",
"3. kvartal",
"4. kvartal"
],
"days-format-wide": [
"søndag",
"mandag",
"tirsdag",
"onsdag",
"torsdag",
"fredag",
"lørdag"
]
}
//end v1.x content
);
\ No newline at end of file
define(
//begin v1.x content
{
"HKD_displayName": "Hongkong dollar",
"CHF_displayName": "Schweizisk franc",
"CAD_displayName": "Canadisk dollar",
"CNY_displayName": "Kinesisk yuan renminbi",
"USD_symbol": "$",
"AUD_displayName": "Australsk dollar",
"JPY_displayName": "Japansk yen",
"USD_displayName": "Amerikansk dollar",
"GBP_displayName": "Britisk pund",
"EUR_displayName": "Euro"
}
//end v1.x content
);
\ No newline at end of file
define(
//begin v1.x content
{
"months-format-narrow": [
"J",
"F",
"M",
"A",
"M",
"J",
"J",
"A",
"S",
"O",
"N",
"D"
],
"field-weekday": "ugedag",
"dateFormatItem-yQQQ": "QQQ y",
"dateFormatItem-yMEd": "EEE. d/M/y",
"dateFormatItem-MMMEd": "E d MMM",
"eraNarrow": [
"f.Kr.",
"e.Kr."
],
"dateFormat-long": "d. MMM y",
"months-format-wide": [
"januar",
"februar",
"marts",
"april",
"maj",
"juni",
"juli",
"august",
"september",
"oktober",
"november",
"december"
],
"dayPeriods-format-wide-pm": "e.m.",
"dateFormat-full": "EEEE 'den' d. MMMM y",
"dateFormatItem-Md": "d/M",
"field-era": "æra",
"dateFormatItem-yM": "M/y",
"months-standAlone-wide": [
"januar",
"februar",
"marts",
"april",
"maj",
"juni",
"juli",
"august",
"september",
"oktober",
"november",
"december"
],
"timeFormat-short": "HH.mm",
"quarters-format-wide": [
"1. kvartal",
"2. kvartal",
"3. kvartal",
"4. kvartal"
],
"timeFormat-long": "HH.mm.ss z",
"field-year": "år",
"dateFormatItem-yMMM": "MMM y",
"dateFormatItem-yQ": "Q yyyy",
"field-hour": "time",
"dateFormatItem-MMdd": "dd/MM",
"months-format-abbr": [
"jan.",
"feb.",
"mar.",
"apr.",
"maj",
"jun.",
"jul.",
"aug.",
"sep.",
"okt.",
"nov.",
"dec."
],
"dateFormatItem-yyQ": "Q. 'kvartal' yy",
"timeFormat-full": "HH.mm.ss zzzz",
"field-day-relative+0": "i dag",
"field-day-relative+1": "i morgen",
"field-day-relative+2": "i overmorgen",
"dateFormatItem-H": "HH",
"field-day-relative+3": "i overovermorgen",
"months-standAlone-abbr": [
"jan",
"feb",
"mar",
"apr",
"maj",
"jun",
"jul",
"aug",
"sep",
"okt",
"nov",
"dec"
],
"quarters-format-abbr": [
"K1",
"K2",
"K3",
"K4"
],
"quarters-standAlone-wide": [
"1. kvartal",
"2. kvartal",
"3. kvartal",
"4. kvartal"
],
"dateFormatItem-M": "M",
"days-standAlone-wide": [
"søndag",
"mandag",
"tirsdag",
"onsdag",
"torsdag",
"fredag",
"lørdag"
],
"dateFormatItem-yyyyMMM": "MMM y",
"dateFormatItem-yyMMM": "MMM yy",
"timeFormat-medium": "HH.mm.ss",
"dateFormatItem-Hm": "HH.mm",
"quarters-standAlone-abbr": [
"K1",
"K2",
"K3",
"K4"
],
"eraAbbr": [
"f.Kr.",
"e.Kr."
],
"field-minute": "minut",
"field-dayperiod": "dagtid",
"days-standAlone-abbr": [
"søn",
"man",
"tir",
"ons",
"tor",
"fre",
"lør"
],
"dateFormatItem-d": "d.",
"dateFormatItem-ms": "mm.ss",
"field-day-relative+-1": "i går",
"field-day-relative+-2": "i forgårs",
"field-day-relative+-3": "i forforgårs",
"dateFormatItem-MMMd": "d. MMM",
"dateFormatItem-MEd": "E. d/M",
"field-day": "dag",
"days-format-wide": [
"søndag",
"mandag",
"tirsdag",
"onsdag",
"torsdag",
"fredag",
"lørdag"
],
"field-zone": "zone",
"dateFormatItem-yyyyMM": "MM/yyyy",
"dateFormatItem-y": "y",
"months-standAlone-narrow": [
"J",
"F",
"M",
"A",
"M",
"J",
"J",
"A",
"S",
"O",
"N",
"D"
],
"dateFormatItem-yyMM": "MM/yy",
"dateFormatItem-hm": "h.mm a",
"days-format-abbr": [
"søn",
"man",
"tir",
"ons",
"tor",
"fre",
"lør"
],
"eraNames": [
"f.Kr.",
"e.Kr."
],
"days-format-narrow": [
"S",
"M",
"T",
"O",
"T",
"F",
"L"
],
"field-month": "måned",
"days-standAlone-narrow": [
"S",
"M",
"T",
"O",
"T",
"F",
"L"
],
"dateFormatItem-MMM": "MMM",
"dayPeriods-format-wide-am": "f.m.",
"dateFormatItem-MMMMEd": "E, d. MMMM",
"dateFormat-short": "dd/MM/yy",
"field-second": "sekund",
"dateFormatItem-yMMMEd": "EEE. d. MMM y",
"dateFormatItem-Ed": "E d.",
"field-week": "uge",
"dateFormat-medium": "dd/MM/yyyy",
"dateFormatItem-Hms": "HH.mm.ss",
"dateFormatItem-hms": "h.mm.ss a",
"dateFormatItem-yyyy": "y"
}
//end v1.x content
);
\ No newline at end of file
define(
//begin v1.x content
{
"dateFormatItem-yM": "M/y",
"dateFormatItem-yyyyMMMEd": "EEE. d. MMM y G",
"dateFormatItem-yQ": "Q yyyy",
"dayPeriods-format-wide-pm": "e.m.",
"dateFormatItem-MMMEd": "E d. MMM",
"dateFormatItem-hms": "h.mm.ss a",
"dateFormatItem-yQQQ": "QQQ y",
"dateFormatItem-MMdd": "dd/MM",
"dateFormatItem-MMM": "MMM",
"dayPeriods-format-wide-am": "f.m.",
"timeFormat-full": "HH.mm.ss zzzz",
"dateFormatItem-yyyy": "y G",
"dateFormatItem-Ed": "E d.",
"dateFormatItem-yMMM": "MMM y",
"days-standAlone-narrow": [
"S",
"M",
"T",
"O",
"T",
"F",
"L"
],
"dateFormat-long": "d. MMMM y G",
"timeFormat-medium": "HH.mm.ss",
"dateFormatItem-Hm": "HH.mm",
"dateFormatItem-yyMM": "MM/y G",
"dateFormat-medium": "d. MMM y G",
"dateFormatItem-Hms": "HH.mm.ss",
"dateFormatItem-yyMMM": "MMM y G",
"dateFormatItem-ms": "mm.ss",
"dateFormatItem-MMMMEd": "E, d. MMMM",
"dateFormatItem-yyyyMEd": "EEE. d/M/y G",
"dateFormatItem-MMMd": "d. MMM",
"dateFormatItem-yyQ": "Q. 'kvartal' y G",
"timeFormat-long": "HH.mm.ss z",
"timeFormat-short": "HH.mm",
"dateFormatItem-H": "HH",
"quarters-format-abbr": [
"K1",
"K2",
"K3",
"K4"
],
"days-format-abbr": [
"søn",
"man",
"tir",
"ons",
"tor",
"fre",
"lør"
],
"dateFormatItem-M": "M",
"dateFormatItem-yyyyQQQ": "QQQ y G",
"dateFormatItem-MEd": "E. d/M",
"dateFormatItem-hm": "h.mm a",
"dateFormat-short": "d/M/y G",
"dateFormatItem-yyyyM": "M/y G",
"dateFormatItem-yMMMEd": "EEE. d. MMM y",
"dateFormat-full": "EEEE d. MMMM y G",
"dateFormatItem-Md": "d/M",
"dateFormatItem-yyyyQ": "Q y G",
"dateFormatItem-yMEd": "EEE. d/M/y",
"dateFormatItem-yyyyMMM": "MMM y G",
"dateFormatItem-d": "d.",
"quarters-format-wide": [
"1. kvartal",
"2. kvartal",
"3. kvartal",
"4. kvartal"
],
"days-format-wide": [
"søndag",
"mandag",
"tirsdag",
"onsdag",
"torsdag",
"fredag",
"lørdag"
]
}
//end v1.x content
);
\ No newline at end of file
define(
//begin v1.x content
{
"group": ".",
"percentSign": "%",
"exponential": "E",
"scientificFormat": "#E0",
"percentFormat": "#,##0 %",
"list": ",",
"infinity": "",
"patternDigit": "#",
"minusSign": "-",
"decimal": ",",
"nan": "NaN",
"nativeZeroDigit": "0",
"perMille": "",
"decimalFormat": "#,##0.###",
"currencyFormat": "#,##0.00 ¤",
"plusSign": "+"
}
//end v1.x content
);
\ No newline at end of file
define(
//begin v1.x content
{
"dateFormatItem-yM": "M.y G",
"dateFormatItem-yyMMdd": "dd.MM.y G",
"dateFormatItem-yQ": "Q y G",
"dayPeriods-format-wide-pm": "nachm.",
"dateFormatItem-MMMEd": "E, d. MMM",
"dateFormatItem-yQQQ": "QQQ y G",
"dateFormatItem-MMdd": "dd.MM.",
"dateFormatItem-MMM": "LLL",
"months-standAlone-narrow": [
"J",
"F",
"M",
"A",
"M",
"J",
"J",
"A",
"S",
"O",
"N",
"D"
],
"dayPeriods-format-wide-am": "vorm.",
"dateFormatItem-y": "y G",
"dateFormatItem-yyyy": "y G",
"months-standAlone-abbr": [
"Jan",
"Feb",
"Mär",
"Apr",
"Mai",
"Jun",
"Jul",
"Aug",
"Sep",
"Okt",
"Nov",
"Dez"
],
"dateFormatItem-Ed": "E d.",
"dateFormatItem-yMMM": "MMM y G",
"days-standAlone-narrow": [
"S",
"M",
"D",
"M",
"D",
"F",
"S"
],
"dateFormatItem-yyyyMMMM": "MMMM y G",
"dateFormat-long": "d. MMMM y G",
"dateFormatItem-Hm": "HH:mm",
"dateFormatItem-MMd": "d.MM.",
"dateFormatItem-yyMM": "MM.y G",
"dateFormat-medium": "d. MMM y G",
"dateFormatItem-Hms": "HH:mm:ss",
"dateFormatItem-yyMMM": "MMM y G",
"dateFormatItem-yyQQQQ": "QQQQ y G",
"dateFormatItem-ms": "mm:ss",
"dateFormatItem-MMMd": "d. MMM",
"dateFormatItem-yyQ": "Q y G",
"months-format-abbr": [
"Jan",
"Feb",
"Mär",
"Apr",
"Mai",
"Jun",
"Jul",
"Aug",
"Sep",
"Okt",
"Nov",
"Dez"
],
"dateFormatItem-H": "HH 'Uhr'",
"days-format-abbr": [
"So.",
"Mo.",
"Di.",
"Mi.",
"Do.",
"Fr.",
"Sa."
],
"dateFormatItem-MMMMdd": "dd. MMMM",
"dateFormatItem-M": "L",
"dateFormatItem-MEd": "E, d.M.",
"dateFormat-short": "d.M.yyyy",
"dateFormatItem-yMMMEd": "EEE, d. MMM y G",
"dateFormat-full": "EEEE d. MMMM y G",
"dateFormatItem-Md": "d.M.",
"dateFormatItem-yMEd": "EEE, d.M.y G",
"months-format-wide": [
"Januar",
"Februar",
"März",
"April",
"Mai",
"Juni",
"Juli",
"August",
"September",
"Oktober",
"November",
"Dezember"
],
"dateFormatItem-d": "d",
"quarters-format-wide": [
"1. Quartal",
"2. Quartal",
"3. Quartal",
"4. Quartal"
],
"days-format-wide": [
"Sonntag",
"Montag",
"Dienstag",
"Mittwoch",
"Donnerstag",
"Freitag",
"Samstag"
]
}
//end v1.x content
);
\ No newline at end of file
define(
//begin v1.x content
{
"HKD_displayName": "Hongkong-Dollar",
"CHF_displayName": "Schweizer Franken",
"JPY_symbol": "¥",
"CAD_displayName": "Kanadischer Dollar",
"CNY_displayName": "Renminbi Yuan",
"USD_symbol": "$",
"AUD_displayName": "Australischer Dollar",
"JPY_displayName": "Yen",
"USD_displayName": "US-Dollar",
"GBP_displayName": "Pfund Sterling",
"EUR_displayName": "Euro"
}
//end v1.x content
);
\ No newline at end of file
define(
//begin v1.x content
{
"months-format-narrow": [
"J",
"F",
"M",
"A",
"M",
"J",
"J",
"A",
"S",
"O",
"N",
"D"
],
"field-weekday": "Wochentag",
"dateFormatItem-yyQQQQ": "QQQQ yy",
"dateFormatItem-yQQQ": "QQQ y",
"dateFormatItem-yMEd": "EEE, d.M.y",
"dateFormatItem-MMMEd": "E, d. MMM",
"eraNarrow": [
"v. Chr.",
"n. Chr."
],
"dayPeriods-format-wide-earlyMorning": "morgens",
"dayPeriods-format-wide-morning": "vormittags",
"dateFormat-long": "d. MMMM y",
"months-format-wide": [
"Januar",
"Februar",
"März",
"April",
"Mai",
"Juni",
"Juli",
"August",
"September",
"Oktober",
"November",
"Dezember"
],
"dayPeriods-format-wide-evening": "abends",
"dayPeriods-format-wide-pm": "nachm.",
"dateFormat-full": "EEEE, d. MMMM y",
"dateFormatItem-Md": "d.M.",
"dateFormatItem-yyMMdd": "dd.MM.yy",
"dayPeriods-format-wide-noon": "Mittag",
"field-era": "Epoche",
"dateFormatItem-yM": "M.y",
"months-standAlone-wide": [
"Januar",
"Februar",
"März",
"April",
"Mai",
"Juni",
"Juli",
"August",
"September",
"Oktober",
"November",
"Dezember"
],
"timeFormat-short": "HH:mm",
"quarters-format-wide": [
"1. Quartal",
"2. Quartal",
"3. Quartal",
"4. Quartal"
],
"timeFormat-long": "HH:mm:ss z",
"field-year": "Jahr",
"dateFormatItem-yMMM": "MMM y",
"dateFormatItem-yQ": "Q y",
"dateFormatItem-yyyyMMMM": "MMMM y",
"field-hour": "Stunde",
"dateFormatItem-MMdd": "dd.MM.",
"months-format-abbr": [
"Jan",
"Feb",
"Mär",
"Apr",
"Mai",
"Jun",
"Jul",
"Aug",
"Sep",
"Okt",
"Nov",
"Dez"
],
"dateFormatItem-yyQ": "Q yy",
"timeFormat-full": "HH:mm:ss zzzz",
"field-day-relative+0": "heute",
"field-day-relative+1": "morgen",
"field-day-relative+2": "übermorgen",
"dateFormatItem-H": "HH 'Uhr'",
"field-day-relative+3": "überübermorgen",
"months-standAlone-abbr": [
"Jan",
"Feb",
"Mär",
"Apr",
"Mai",
"Jun",
"Jul",
"Aug",
"Sep",
"Okt",
"Nov",
"Dez"
],
"quarters-format-abbr": [
"Q1",
"Q2",
"Q3",
"Q4"
],
"quarters-standAlone-wide": [
"1. Quartal",
"2. Quartal",
"3. Quartal",
"4. Quartal"
],
"dateFormatItem-M": "L",
"days-standAlone-wide": [
"Sonntag",
"Montag",
"Dienstag",
"Mittwoch",
"Donnerstag",
"Freitag",
"Samstag"
],
"dateFormatItem-yyMMM": "MMM yy",
"timeFormat-medium": "HH:mm:ss",
"dateFormatItem-Hm": "HH:mm",
"eraAbbr": [
"v. Chr.",
"n. Chr."
],
"field-minute": "Minute",
"field-dayperiod": "Tageshälfte",
"days-standAlone-abbr": [
"So.",
"Mo.",
"Di.",
"Mi.",
"Do.",
"Fr.",
"Sa."
],
"dayPeriods-format-wide-night": "nachts",
"dateFormatItem-d": "d",
"dateFormatItem-ms": "mm:ss",
"field-day-relative+-1": "gestern",
"field-day-relative+-2": "vorgestern",
"field-day-relative+-3": "vorvorgestern",
"dateFormatItem-MMMd": "d. MMM",
"dateFormatItem-MEd": "E, d.M.",
"field-day": "Tag",
"days-format-wide": [
"Sonntag",
"Montag",
"Dienstag",
"Mittwoch",
"Donnerstag",
"Freitag",
"Samstag"
],
"field-zone": "Zone",
"dateFormatItem-y": "y",
"months-standAlone-narrow": [
"J",
"F",
"M",
"A",
"M",
"J",
"J",
"A",
"S",
"O",
"N",
"D"
],
"dateFormatItem-yyMM": "MM.yy",
"days-format-abbr": [
"So.",
"Mo.",
"Di.",
"Mi.",
"Do.",
"Fr.",
"Sa."
],
"eraNames": [
"v. Chr.",
"n. Chr."
],
"days-format-narrow": [
"S",
"M",
"D",
"M",
"D",
"F",
"S"
],
"field-month": "Monat",
"days-standAlone-narrow": [
"S",
"M",
"D",
"M",
"D",
"F",
"S"
],
"dateFormatItem-MMM": "LLL",
"dayPeriods-format-wide-am": "vorm.",
"dateFormatItem-MMMMdd": "dd. MMMM",
"dateFormat-short": "dd.MM.yy",
"dateFormatItem-MMd": "d.MM.",
"dayPeriods-format-wide-afternoon": "nachmittags",
"field-second": "Sekunde",
"dateFormatItem-yMMMEd": "EEE, d. MMM y",
"dateFormatItem-Ed": "E, d.",
"field-week": "Woche",
"dateFormat-medium": "dd.MM.yyyy",
"dateFormatItem-Hms": "HH:mm:ss",
"dateFormatItem-yyyy": "y"
}
//end v1.x content
);
\ No newline at end of file
define(
//begin v1.x content
{
"dateFormatItem-yM": "M.y",
"dateFormatItem-yyyyMMMEd": "EEE, d. MMM y G",
"dateFormatItem-yyMMdd": "dd.MM.y G",
"dateFormatItem-yQ": "Q y",
"dayPeriods-format-wide-pm": "nachm.",
"eraNames": [
"AH"
],
"dateFormatItem-MMMEd": "E, d. MMM",
"dateFormatItem-yQQQ": "QQQ y",
"dateFormatItem-MMdd": "dd.MM.",
"dateFormatItem-MMM": "LLL",
"months-standAlone-narrow": [
"1",
"2",
"3",
"4",
"5",
"6",
"7",
"8",
"9",
"10",
"11",
"12"
],
"dayPeriods-format-wide-am": "vorm.",
"dateFormatItem-yyyy": "y G",
"months-standAlone-abbr": [
"Muh.",
"Saf.",
"Rab. I",
"Rab. II",
"Jum. I",
"Jum. II",
"Raj.",
"Sha.",
"Ram.",
"Shaw.",
"Dhuʻl-Q.",
"Dhuʻl-H."
],
"dateFormatItem-Ed": "E d.",
"dateFormatItem-yMMM": "MMM y",
"days-standAlone-narrow": [
"S",
"M",
"D",
"M",
"D",
"F",
"S"
],
"eraAbbr": [
"AH"
],
"dateFormatItem-yyyyMMMM": "MMMM y G",
"dateFormat-long": "d. MMMM y G",
"dateFormatItem-Hm": "HH:mm",
"dateFormatItem-MMd": "d.MM.",
"dateFormatItem-yyMM": "MM.y G",
"dateFormat-medium": "d. MMM y G",
"dateFormatItem-Hms": "HH:mm:ss",
"dateFormatItem-yyMMM": "MMM y G",
"dateFormatItem-yyQQQQ": "QQQQ y G",
"dateFormatItem-ms": "mm:ss",
"months-standAlone-wide": [
"Muharram",
"Safar",
"Rabiʻ I",
"Rabiʻ II",
"Jumada I",
"Jumada II",
"Rajab",
"Shaʻban",
"Ramadan",
"Shawwal",
"Dhuʻl-Qiʻdah",
"Dhuʻl-Hijjah"
],
"dateFormatItem-yyyyMEd": "EEE, d.M.y G",
"dateFormatItem-MMMd": "d. MMM",
"dateFormatItem-yyQ": "Q y G",
"months-format-abbr": [
"Muh.",
"Saf.",
"Rab. I",
"Rab. II",
"Jum. I",
"Jum. II",
"Raj.",
"Sha.",
"Ram.",
"Shaw.",
"Dhuʻl-Q.",
"Dhuʻl-H."
],
"dateFormatItem-H": "HH 'Uhr'",
"dateFormatItem-MMMMdd": "dd. MMMM",
"days-format-abbr": [
"So.",
"Mo.",
"Di.",
"Mi.",
"Do.",
"Fr.",
"Sa."
],
"dateFormatItem-M": "L",
"dateFormatItem-MEd": "E, d.M.",
"dateFormatItem-yyyyQQQ": "QQQ y G",
"months-format-narrow": [
"1",
"2",
"3",
"4",
"5",
"6",
"7",
"8",
"9",
"10",
"11",
"12"
],
"dateFormat-short": "d.M.y G",
"dateFormatItem-yyyyM": "M.y G",
"dateFormatItem-yMMMEd": "EEE, d. MMM y",
"dateFormat-full": "EEEE d. MMMM y G",
"dateFormatItem-Md": "d.M.",
"dateFormatItem-yyyyQ": "Q y G",
"dateFormatItem-yMEd": "EEE, d.M.y",
"months-format-wide": [
"Muharram",
"Safar",
"Rabiʻ I",
"Rabiʻ II",
"Jumada I",
"Jumada II",
"Rajab",
"Shaʻban",
"Ramadan",
"Shawwal",
"Dhuʻl-Qiʻdah",
"Dhuʻl-Hijjah"
],
"dateFormatItem-yyyyMMM": "MMM y G",
"dateFormatItem-d": "d",
"quarters-format-wide": [
"1. Quartal",
"2. Quartal",
"3. Quartal",
"4. Quartal"
],
"eraNarrow": [
"AH"
],
"days-format-wide": [
"Sonntag",
"Montag",
"Dienstag",
"Mittwoch",
"Donnerstag",
"Freitag",
"Samstag"
]
}
//end v1.x content
);
\ No newline at end of file
define(
//begin v1.x content
{
"group": ".",
"percentSign": "%",
"exponential": "E",
"scientificFormat": "#E0",
"percentFormat": "#,##0 %",
"list": ";",
"infinity": "",
"patternDigit": "#",
"minusSign": "-",
"decimal": ",",
"nan": "NaN",
"nativeZeroDigit": "0",
"perMille": "",
"decimalFormat": "#,##0.###",
"currencyFormat": "#,##0.00 ¤",
"plusSign": "+"
}
//end v1.x content
);
\ No newline at end of file
define(
//begin v1.x content
{
"quarters-format-abbr": [
"Τ1",
"Τ2",
"Τ3",
"Τ4"
],
"dateFormat-medium": "d MMM, y G",
"dateFormatItem-MMMEd": "E, d MMM",
"dateFormatItem-MEd": "E, d/M",
"dateFormatItem-yMEd": "EEE, d/M/yyyy",
"timeFormat-full": "h:mm:ss a zzzz",
"dateFormatItem-Md": "d/M",
"months-standAlone-narrow": [
"Ι",
"Φ",
"Μ",
"Α",
"Μ",
"Ι",
"Ι",
"Α",
"Σ",
"Ο",
"Ν",
"Δ"
],
"months-standAlone-wide": [
"Ιανουάριος",
"Φεβρουάριος",
"Μάρτιος",
"Απρίλιος",
"Μάιος",
"Ιούνιος",
"Ιούλιος",
"Αύγουστος",
"Σεπτέμβριος",
"Οκτώβριος",
"Νοέμβριος",
"Δεκέμβριος"
],
"dateFormatItem-EEEd": "EEE d",
"days-standAlone-narrow": [
"Κ",
"Δ",
"Τ",
"Τ",
"Π",
"Π",
"Σ"
],
"dayPeriods-format-wide-pm": "μ.μ.",
"dayPeriods-format-wide-am": "π.μ.",
"timeFormat-medium": "h:mm:ss a",
"dateFormat-long": "d MMMM, y G",
"dateFormat-short": "d/M/yyyy",
"dateFormatItem-yMMMEd": "EEE, d MMM y",
"months-format-wide": [
"Ιανουαρίου",
"Φεβρουαρίου",
"Μαρτίου",
"Απριλίου",
"Μαΐου",
"Ιουνίου",
"Ιουλίου",
"Αυγούστου",
"Σεπτεμβρίου",
"Οκτωβρίου",
"Νοεμβρίου",
"Δεκεμβρίου"
],
"dateFormatItem-yM": "M/yyyy",
"timeFormat-short": "h:mm a",
"months-format-abbr": [
"Ιαν",
"Φεβ",
"Μαρ",
"Απρ",
"Μαϊ",
"Ιουν",
"Ιουλ",
"Αυγ",
"Σεπ",
"Οκτ",
"Νοε",
"Δεκ"
],
"timeFormat-long": "h:mm:ss a z",
"days-format-wide": [
"Κυριακή",
"Δευτέρα",
"Τρίτη",
"Τετάρτη",
"Πέμπτη",
"Παρασκευή",
"Σάββατο"
],
"dateFormatItem-yMMM": "LLL y",
"quarters-format-wide": [
"1ο τρίμηνο",
"2ο τρίμηνο",
"3ο τρίμηνο",
"4ο τρίμηνο"
],
"dateFormat-full": "EEEE, d MMMM, y G",
"dateFormatItem-MMMd": "d MMM",
"days-format-abbr": [
"Κυρ",
"Δευ",
"Τρι",
"Τετ",
"Πεμ",
"Παρ",
"Σαβ"
]
}
//end v1.x content
);
\ No newline at end of file
define(
//begin v1.x content
{
"HKD_displayName": "Δολάριο Χονγκ Κονγκ",
"CHF_displayName": "Φράγκο Ελβετίας",
"CAD_displayName": "Δολάριο Καναδά",
"CNY_displayName": "Γιουάν Ρενμίμπι Κίνας",
"AUD_displayName": "Δολάριο Αυστραλίας",
"JPY_displayName": "Γιεν Ιαπωνίας",
"USD_displayName": "Δολάριο ΗΠΑ",
"GBP_displayName": "Λίρα Στερλίνα Βρετανίας",
"EUR_displayName": "Ευρώ"
}
//end v1.x content
);
\ No newline at end of file
define(
//begin v1.x content
{
"months-format-narrow": [
"Ι",
"Φ",
"Μ",
"Α",
"Μ",
"Ι",
"Ι",
"Α",
"Σ",
"Ο",
"Ν",
"Δ"
],
"field-weekday": "Ημέρα εβδομάδας",
"dateFormatItem-yyQQQQ": "QQQQ yy",
"dateFormatItem-yQQQ": "y QQQ",
"dateFormatItem-yMEd": "EEE, d/M/yyyy",
"dateFormatItem-MMMEd": "E, d MMM",
"eraNarrow": [
"π.Χ.",
"μ.Χ."
],
"dateFormat-long": "d MMMM y",
"months-format-wide": [
"Ιανουαρίου",
"Φεβρουαρίου",
"Μαρτίου",
"Απριλίου",
"Μαΐου",
"Ιουνίου",
"Ιουλίου",
"Αυγούστου",
"Σεπτεμβρίου",
"Οκτωβρίου",
"Νοεμβρίου",
"Δεκεμβρίου"
],
"dateFormatItem-EEEd": "EEE d",
"dayPeriods-format-wide-pm": "μ.μ.",
"dateFormat-full": "EEEE, d MMMM y",
"dateFormatItem-Md": "d/M",
"field-era": "Περίοδος",
"dateFormatItem-yM": "M/yyyy",
"months-standAlone-wide": [
"Ιανουάριος",
"Φεβρουάριος",
"Μάρτιος",
"Απρίλιος",
"Μάιος",
"Ιούνιος",
"Ιούλιος",
"Αύγουστος",
"Σεπτέμβριος",
"Οκτώβριος",
"Νοέμβριος",
"Δεκέμβριος"
],
"timeFormat-short": "h:mm a",
"quarters-format-wide": [
"1ο τρίμηνο",
"2ο τρίμηνο",
"3ο τρίμηνο",
"4ο τρίμηνο"
],
"timeFormat-long": "h:mm:ss a z",
"field-year": "Έτος",
"dateFormatItem-yMMM": "LLL y",
"dateFormatItem-yQ": "y Q",
"dateFormatItem-yyyyMMMM": "LLLL y",
"field-hour": "Ώρα",
"dateFormatItem-MMdd": "dd/MM",
"months-format-abbr": [
"Ιαν",
"Φεβ",
"Μαρ",
"Απρ",
"Μαϊ",
"Ιουν",
"Ιουλ",
"Αυγ",
"Σεπ",
"Οκτ",
"Νοε",
"Δεκ"
],
"dateFormatItem-yyQ": "Q yy",
"timeFormat-full": "h:mm:ss a zzzz",
"field-day-relative+0": "Σήμερα",
"field-day-relative+1": "Αύριο",
"field-day-relative+2": "Μεθαύριο",
"dateFormatItem-H": "HH",
"field-day-relative+3": "Σε τρεις ημέρες από τώρα",
"months-standAlone-abbr": [
"Ιαν",
"Φεβ",
"Μαρ",
"Απρ",
"Μαϊ",
"Ιουν",
"Ιουλ",
"Αυγ",
"Σεπ",
"Οκτ",
"Νοε",
"Δεκ"
],
"quarters-format-abbr": [
"Τ1",
"Τ2",
"Τ3",
"Τ4"
],
"quarters-standAlone-wide": [
"1ο τρίμηνο",
"2ο τρίμηνο",
"3ο τρίμηνο",
"4ο τρίμηνο"
],
"dateFormatItem-HHmmss": "HH:mm:ss",
"dateFormatItem-M": "L",
"days-standAlone-wide": [
"Κυριακή",
"Δευτέρα",
"Τρίτη",
"Τετάρτη",
"Πέμπτη",
"Παρασκευή",
"Σάββατο"
],
"dateFormatItem-MMMMd": "d MMMM",
"dateFormatItem-yyMMM": "LLL yy",
"timeFormat-medium": "h:mm:ss a",
"dateFormatItem-Hm": "HH:mm",
"quarters-standAlone-abbr": [
"Τ1",
"Τ2",
"Τ3",
"Τ4"
],
"eraAbbr": [
"π.Χ.",
"μ.Χ."
],
"field-minute": "Λεπτό",
"field-dayperiod": "π.μ./μ.μ.",
"days-standAlone-abbr": [
"Κυρ",
"Δευ",
"Τρι",
"Τετ",
"Πεμ",
"Παρ",
"Σαβ"
],
"dateFormatItem-d": "d",
"dateFormatItem-ms": "mm:ss",
"field-day-relative+-1": "Χθες",
"field-day-relative+-2": "Προχθές",
"field-day-relative+-3": "Πριν από τρεις ημέρες",
"dateFormatItem-MMMd": "d MMM",
"dateFormatItem-MEd": "E, d/M",
"field-day": "Ημέρα",
"days-format-wide": [
"Κυριακή",
"Δευτέρα",
"Τρίτη",
"Τετάρτη",
"Πέμπτη",
"Παρασκευή",
"Σάββατο"
],
"field-zone": "Ζώνη",
"dateFormatItem-yyyyMM": "MM/yyyy",
"dateFormatItem-y": "y",
"months-standAlone-narrow": [
"Ι",
"Φ",
"Μ",
"Α",
"Μ",
"Ι",
"Ι",
"Α",
"Σ",
"Ο",
"Ν",
"Δ"
],
"dateFormatItem-yyMM": "MM/yy",
"days-format-abbr": [
"Κυρ",
"Δευ",
"Τρι",
"Τετ",
"Πεμ",
"Παρ",
"Σαβ"
],
"eraNames": [
"π.Χ.",
"μ.Χ."
],
"days-format-narrow": [
"Κ",
"Δ",
"Τ",
"Τ",
"Π",
"Π",
"Σ"
],
"field-month": "Μήνας",
"days-standAlone-narrow": [
"Κ",
"Δ",
"Τ",
"Τ",
"Π",
"Π",
"Σ"
],
"dateFormatItem-MMM": "LLL",
"dateFormatItem-HHmm": "HH:mm",
"dayPeriods-format-wide-am": "π.μ.",
"dateFormatItem-MMMMEd": "E, d MMMM",
"dateFormatItem-MMMMdd": "dd MMMM",
"dateFormat-short": "d/M/yy",
"field-second": "Δευτερόλεπτο",
"dateFormatItem-yMMMEd": "EEE, d MMM y",
"dateFormatItem-Ed": "E d",
"field-week": "Εβδομάδα",
"dateFormat-medium": "d MMM y",
"dateFormatItem-mmss": "mm:ss",
"dateFormatItem-yyyy": "y"
}
//end v1.x content
);
\ No newline at end of file
define(
//begin v1.x content
{
"quarters-format-abbr": [
"Τ1",
"Τ2",
"Τ3",
"Τ4"
],
"dateFormat-medium": "d MMM y",
"dateFormatItem-MMMEd": "E, d MMM",
"dateFormatItem-MEd": "E, d/M",
"dateFormatItem-yMEd": "EEE, d/M/yyyy",
"eraNarrow": [
"π.μ."
],
"timeFormat-full": "h:mm:ss a zzzz",
"dateFormatItem-Md": "d/M",
"dateFormatItem-EEEd": "EEE d",
"eraNames": [
"π.μ."
],
"days-standAlone-narrow": [
"Κ",
"Δ",
"Τ",
"Τ",
"Π",
"Π",
"Σ"
],
"dayPeriods-format-wide-pm": "μ.μ.",
"dayPeriods-format-wide-am": "π.μ.",
"timeFormat-medium": "h:mm:ss a",
"dateFormat-long": "d MMMM y",
"dateFormat-short": "d/M/yy",
"dateFormatItem-yMMMEd": "EEE, d MMM y",
"dateFormatItem-yM": "M/yyyy",
"timeFormat-short": "h:mm a",
"eraAbbr": [
"π.μ."
],
"timeFormat-long": "h:mm:ss a z",
"days-format-wide": [
"Κυριακή",
"Δευτέρα",
"Τρίτη",
"Τετάρτη",
"Πέμπτη",
"Παρασκευή",
"Σάββατο"
],
"dateFormatItem-yMMM": "LLL y",
"quarters-format-wide": [
"1ο τρίμηνο",
"2ο τρίμηνο",
"3ο τρίμηνο",
"4ο τρίμηνο"
],
"dateFormat-full": "EEEE, d MMMM y",
"dateFormatItem-MMMd": "d MMM",
"days-format-abbr": [
"Κυρ",
"Δευ",
"Τρι",
"Τετ",
"Πεμ",
"Παρ",
"Σαβ"
]
}
//end v1.x content
);
\ No newline at end of file
define(
//begin v1.x content
{
"group": ".",
"percentSign": "%",
"exponential": "e",
"percentFormat": "#,##0%",
"list": ",",
"infinity": "",
"patternDigit": "#",
"minusSign": "-",
"decimal": ",",
"nan": "NaN",
"nativeZeroDigit": "0",
"perMille": "",
"currencyFormat": "#,##0.00 ¤",
"plusSign": "+"
}
//end v1.x content
);
\ No newline at end of file
define(
//begin v1.x content
{
"AUD_symbol": "$",
"USD_symbol": "US$"
}
//end v1.x content
);
\ No newline at end of file
define(
//begin v1.x content
{
"dateFormatItem-yMEd": "EEE, d/M/y",
"dateFormatItem-yyyyMMMM": "MMMM y",
"dateFormatItem-MEd": "E, d/M",
"dateFormat-medium": "dd/MM/yyyy",
"dateFormatItem-MMdd": "dd/MM",
"dateFormatItem-yyyyMM": "MM/yyyy",
"dateFormat-full": "EEEE, d MMMM y",
"dateFormatItem-MMMMd": "d MMMM",
"dateFormat-short": "d/MM/yy",
"dateFormat-long": "d MMMM y",
"dateFormatItem-MMMEd": "E, d MMM"
}
//end v1.x content
);
\ No newline at end of file
define(
//begin v1.x content
{
"currencyFormat": "¤#,##0.00"
}
//end v1.x content
);
\ No newline at end of file
define(
//begin v1.x content
{
"CAD_symbol": "$",
"USD_symbol": "US$"
}
//end v1.x content
);
\ No newline at end of file
define(
//begin v1.x content
{
"dateFormatItem-yMMMEd": "EEE, d MMM, y",
"dateFormatItem-yyMMM": "MMM-yy",
"dateFormatItem-Md": "M-d",
"dateFormatItem-yMEd": "EEE, y-M-d",
"dateFormatItem-MEd": "E, M-d",
"dateFormatItem-MMMMEd": "E, d MMMM",
"dateFormat-medium": "yyyy-MM-dd",
"dateFormatItem-MMMd": "d MMM",
"dateFormatItem-MMdd": "MM-dd",
"dateFormat-full": "EEEE, d MMMM, y",
"dateFormat-short": "yy-MM-dd",
"dateFormatItem-MMMMd": "d MMMM",
"dateFormat-long": "d MMMM, y",
"dateFormatItem-MMMEd": "E, d MMM"
}
//end v1.x content
);
\ No newline at end of file
define(
//begin v1.x content
{
"dateFormat-medium": "d MMM y G",
"dateFormatItem-MMMEd": "E d MMM",
"dateFormatItem-MMdd": "dd/MM",
"dateFormatItem-MEd": "E, d/M",
"dateFormatItem-yMEd": "EEE, d/M/y G",
"dateFormatItem-yyMMM": "MMM y G",
"dateFormatItem-y": "y",
"dateFormatItem-Md": "d/M",
"months-standAlone-narrow": [
"J",
"F",
"M",
"A",
"M",
"J",
"J",
"A",
"S",
"O",
"N",
"D"
],
"days-standAlone-narrow": [
"S",
"M",
"T",
"W",
"T",
"F",
"S"
],
"dateFormatItem-yyyyMMMM": "MMMM y G",
"dateFormatItem-MMMMd": "d MMMM",
"dateFormatItem-yQQQ": "QQQ y",
"dateFormatItem-yyyyMM": "MM/y G",
"dateFormat-long": "d MMMM y G",
"dateFormat-short": "dd/MM/y G",
"dateFormatItem-yMMMEd": "EEE, MMM d, y",
"months-format-wide": [
"January",
"February",
"March",
"April",
"May",
"June",
"July",
"August",
"September",
"October",
"November",
"December"
],
"dateFormatItem-yM": "M/y",
"months-format-abbr": [
"Jan",
"Feb",
"Mar",
"Apr",
"May",
"Jun",
"Jul",
"Aug",
"Sep",
"Oct",
"Nov",
"Dec"
],
"days-format-wide": [
"Sunday",
"Monday",
"Tuesday",
"Wednesday",
"Thursday",
"Friday",
"Saturday"
],
"dateFormatItem-yQ": "Q y",
"dateFormatItem-yMMM": "MMM y",
"quarters-format-wide": [
"1st quarter",
"2nd quarter",
"3rd quarter",
"4th quarter"
],
"dateFormat-full": "EEEE, d MMMM y G",
"dateFormatItem-yyyyMd": "d/M/y G",
"days-format-abbr": [
"Sun",
"Mon",
"Tue",
"Wed",
"Thu",
"Fri",
"Sat"
]
}
//end v1.x content
);
\ No newline at end of file
define(
//begin v1.x content
{
"dateFormatItem-yyMMM": "MMM yy",
"dateFormatItem-Md": "d/M",
"dateFormatItem-yMEd": "EEE, d/M/yyyy",
"timeFormat-full": "HH:mm:ss zzzz",
"timeFormat-medium": "HH:mm:ss",
"dateFormatItem-yyyyMMMM": "MMMM y",
"dateFormatItem-MEd": "E, d/M",
"dateFormat-medium": "d MMM y",
"dateFormatItem-MMdd": "dd/MM",
"dateFormatItem-yyyyMM": "MM/yyyy",
"dateFormat-full": "EEEE, d MMMM y",
"timeFormat-long": "HH:mm:ss z",
"timeFormat-short": "HH:mm",
"dateFormat-short": "dd/MM/yyyy",
"dateFormatItem-MMMMd": "d MMMM",
"dateFormat-long": "d MMMM y",
"dateFormatItem-MMMEd": "E d MMM"
}
//end v1.x content
);
\ No newline at end of file
define(
//begin v1.x content
{
"dateFormat-medium": "d MMM y G",
"dateFormatItem-MMMEd": "E d MMM",
"dateFormatItem-MMdd": "dd/MM",
"dateFormatItem-MEd": "E, d/M",
"dateFormatItem-yMEd": "EEE, d/M/yyyy",
"dateFormatItem-yyyyMMM": "MMM y G",
"eraNarrow": [
"AH"
],
"months-format-narrow": [
"1",
"2",
"3",
"4",
"5",
"6",
"7",
"8",
"9",
"10",
"11",
"12"
],
"dateFormatItem-yyMMM": "MMM y G",
"dateFormatItem-Md": "d/M",
"months-standAlone-narrow": [
"1",
"2",
"3",
"4",
"5",
"6",
"7",
"8",
"9",
"10",
"11",
"12"
],
"months-standAlone-wide": [
"Muharram",
"Safar",
"Rabiʻ I",
"Rabiʻ II",
"Jumada I",
"Jumada II",
"Rajab",
"Shaʻban",
"Ramadan",
"Shawwal",
"Dhuʻl-Qiʻdah",
"Dhuʻl-Hijjah"
],
"eraNames": [
"AH"
],
"days-standAlone-narrow": [
"S",
"M",
"T",
"W",
"T",
"F",
"S"
],
"dateFormatItem-yyyyMEd": "EEE, d/M/y G",
"dateFormatItem-yyyyMMMM": "MMMM y G",
"dateFormatItem-MMMMd": "d MMMM",
"months-standAlone-abbr": [
"Muh.",
"Saf.",
"Rab. I",
"Rab. II",
"Jum. I",
"Jum. II",
"Raj.",
"Sha.",
"Ram.",
"Shaw.",
"Dhuʻl-Q.",
"Dhuʻl-H."
],
"dateFormatItem-yQQQ": "QQQ y",
"dateFormatItem-yyyyMM": "MM/y G",
"dateFormat-long": "d MMMM y G",
"dateFormat-short": "dd/MM/y G",
"dateFormatItem-yMMMEd": "EEE, MMM d, y",
"months-format-wide": [
"Muharram",
"Safar",
"Rabiʻ I",
"Rabiʻ II",
"Jumada I",
"Jumada II",
"Rajab",
"Shaʻban",
"Ramadan",
"Shawwal",
"Dhuʻl-Qiʻdah",
"Dhuʻl-Hijjah"
],
"dateFormatItem-yM": "M/y",
"months-format-abbr": [
"Muh.",
"Saf.",
"Rab. I",
"Rab. II",
"Jum. I",
"Jum. II",
"Raj.",
"Sha.",
"Ram.",
"Shaw.",
"Dhuʻl-Q.",
"Dhuʻl-H."
],
"eraAbbr": [
"AH"
],
"days-format-wide": [
"Sunday",
"Monday",
"Tuesday",
"Wednesday",
"Thursday",
"Friday",
"Saturday"
],
"dateFormatItem-yQ": "Q y",
"dateFormatItem-yMMM": "MMM y",
"quarters-format-wide": [
"1st quarter",
"2nd quarter",
"3rd quarter",
"4th quarter"
],
"dateFormatItem-yyyyMd": "d/M/y G",
"dateFormat-full": "EEEE, d MMMM y G",
"days-format-abbr": [
"Sun",
"Mon",
"Tue",
"Wed",
"Thu",
"Fri",
"Sat"
]
}
//end v1.x content
);
\ No newline at end of file
define(
//begin v1.x content
{
"currencyFormat": "¤#,##0.00"
}
//end v1.x content
);
\ No newline at end of file
define(
//begin v1.x content
{
"dateFormat-medium": "MMM d, y G",
"dateFormatItem-MMMEd": "E, MMM d",
"dateFormatItem-MEd": "E, M/d",
"dateFormatItem-yMEd": "EEE, M/d/y G",
"dateFormatItem-Hm": "HH:mm",
"dateFormatItem-y": "y G",
"timeFormat-full": "h:mm:ss a zzzz",
"dateFormatItem-hm": "h:mm a",
"dateFormatItem-Md": "M/d",
"months-standAlone-narrow": [
"J",
"F",
"M",
"A",
"M",
"J",
"J",
"A",
"S",
"O",
"N",
"D"
],
"dateFormatItem-EEEd": "d EEE",
"dateFormatItem-M": "L",
"days-standAlone-narrow": [
"S",
"M",
"T",
"W",
"T",
"F",
"S"
],
"dateFormatItem-yQQQ": "QQQ y G",
"timeFormat-medium": "h:mm:ss a",
"dateFormatItem-Hms": "HH:mm:ss",
"dateFormat-long": "MMMM d, y G",
"dateFormatItem-ms": "mm:ss",
"dateFormat-short": "M/d/yy G",
"dateFormatItem-yMMMEd": "EEE, MMM d, y G",
"months-format-wide": [
"January",
"February",
"March",
"April",
"May",
"June",
"July",
"August",
"September",
"October",
"November",
"December"
],
"dateFormatItem-d": "d",
"dateFormatItem-yM": "M/y G",
"timeFormat-short": "h:mm a",
"months-format-abbr": [
"Jan",
"Feb",
"Mar",
"Apr",
"May",
"Jun",
"Jul",
"Aug",
"Sep",
"Oct",
"Nov",
"Dec"
],
"timeFormat-long": "h:mm:ss a z",
"days-format-wide": [
"Sunday",
"Monday",
"Tuesday",
"Wednesday",
"Thursday",
"Friday",
"Saturday"
],
"dateFormatItem-hms": "h:mm:ss a",
"dateFormatItem-yQ": "Q y G",
"dateFormatItem-MMM": "LLL",
"dateFormatItem-yMMM": "MMM y G",
"quarters-format-wide": [
"1st quarter",
"2nd quarter",
"3rd quarter",
"4th quarter"
],
"dateFormat-full": "EEEE, MMMM d, y G",
"dateFormatItem-MMMd": "MMM d",
"days-format-abbr": [
"Sun",
"Mon",
"Tue",
"Wed",
"Thu",
"Fri",
"Sat"
]
}
//end v1.x content
);
\ No newline at end of file
define(
//begin v1.x content
{
"HKD_displayName": "Hong Kong Dollar",
"CHF_displayName": "Swiss Franc",
"JPY_symbol": "¥",
"CAD_displayName": "Canadian Dollar",
"CNY_displayName": "Chinese Yuan",
"USD_symbol": "$",
"AUD_displayName": "Australian Dollar",
"JPY_displayName": "Japanese Yen",
"USD_displayName": "US Dollar",
"GBP_displayName": "British Pound Sterling",
"EUR_displayName": "Euro"
}
//end v1.x content
);
\ No newline at end of file
define(
//begin v1.x content
{
"dateFormatItem-yM": "M/y",
"field-dayperiod": "AM/PM",
"dateFormatItem-yQ": "Q y",
"dayPeriods-format-wide-pm": "PM",
"field-minute": "Minute",
"eraNames": [
"Before Christ",
"Anno Domini"
],
"dateFormatItem-MMMEd": "E, MMM d",
"dateTimeFormat-full": "{1} {0}",
"field-day-relative+-1": "Yesterday",
"field-weekday": "Day of the Week",
"dateFormatItem-hms": "h:mm:ss a",
"dateFormatItem-yQQQ": "QQQ y",
"days-standAlone-wide": [
"Sunday",
"Monday",
"Tuesday",
"Wednesday",
"Thursday",
"Friday",
"Saturday"
],
"dateFormatItem-MMM": "LLL",
"months-standAlone-narrow": [
"J",
"F",
"M",
"A",
"M",
"J",
"J",
"A",
"S",
"O",
"N",
"D"
],
"dateTimeFormat-short": "{1} {0}",
"field-era": "Era",
"field-hour": "Hour",
"dayPeriods-format-wide-am": "AM",
"dateTimeFormat-medium": "{1} {0}",
"dateFormatItem-y": "y",
"timeFormat-full": "h:mm:ss a zzzz",
"months-standAlone-abbr": [
"Jan",
"Feb",
"Mar",
"Apr",
"May",
"Jun",
"Jul",
"Aug",
"Sep",
"Oct",
"Nov",
"Dec"
],
"dateFormatItem-yMMM": "MMM y",
"field-day-relative+0": "Today",
"field-day-relative+1": "Tomorrow",
"days-standAlone-narrow": [
"S",
"M",
"T",
"W",
"T",
"F",
"S"
],
"eraAbbr": [
"BC",
"AD"
],
"dateFormat-long": "MMMM d, y",
"timeFormat-medium": "h:mm:ss a",
"dateFormatItem-EEEd": "d EEE",
"field-zone": "Zone",
"dateFormatItem-Hm": "HH:mm",
"dateFormat-medium": "MMM d, y",
"dateFormatItem-Hms": "HH:mm:ss",
"quarters-standAlone-wide": [
"1st quarter",
"2nd quarter",
"3rd quarter",
"4th quarter"
],
"dateFormatItem-ms": "mm:ss",
"field-year": "Year",
"quarters-standAlone-narrow": [
"1",
"2",
"3",
"4"
],
"dateTimeFormat-long": "{1} {0}",
"field-week": "Week",
"months-standAlone-wide": [
"January",
"February",
"March",
"April",
"May",
"June",
"July",
"August",
"September",
"October",
"November",
"December"
],
"dateFormatItem-MMMd": "MMM d",
"timeFormat-long": "h:mm:ss a z",
"months-format-abbr": [
"Jan",
"Feb",
"Mar",
"Apr",
"May",
"Jun",
"Jul",
"Aug",
"Sep",
"Oct",
"Nov",
"Dec"
],
"dayPeriods-format-wide-noon": "noon",
"timeFormat-short": "h:mm a",
"field-month": "Month",
"quarters-format-abbr": [
"Q1",
"Q2",
"Q3",
"Q4"
],
"days-format-abbr": [
"Sun",
"Mon",
"Tue",
"Wed",
"Thu",
"Fri",
"Sat"
],
"dateFormatItem-M": "L",
"days-format-narrow": [
"S",
"M",
"T",
"W",
"T",
"F",
"S"
],
"field-second": "Second",
"field-day": "Day",
"dateFormatItem-MEd": "E, M/d",
"months-format-narrow": [
"J",
"F",
"M",
"A",
"M",
"J",
"J",
"A",
"S",
"O",
"N",
"D"
],
"dateFormatItem-hm": "h:mm a",
"days-standAlone-abbr": [
"Sun",
"Mon",
"Tue",
"Wed",
"Thu",
"Fri",
"Sat"
],
"dateFormat-short": "M/d/yy",
"dateFormatItem-yMMMEd": "EEE, MMM d, y",
"dateFormat-full": "EEEE, MMMM d, y",
"dateFormatItem-Md": "M/d",
"dateFormatItem-yMEd": "EEE, M/d/y",
"months-format-wide": [
"January",
"February",
"March",
"April",
"May",
"June",
"July",
"August",
"September",
"October",
"November",
"December"
],
"dateFormatItem-d": "d",
"quarters-format-wide": [
"1st quarter",
"2nd quarter",
"3rd quarter",
"4th quarter"
],
"days-format-wide": [
"Sunday",
"Monday",
"Tuesday",
"Wednesday",
"Thursday",
"Friday",
"Saturday"
],
"eraNarrow": [
"B",
"A"
]
}
//end v1.x content
);
\ No newline at end of file
define(
//begin v1.x content
{
"dateFormatItem-yM": "M/y",
"dateFormatItem-yyyyMMMEd": "EEE, MMM d, y G",
"dateFormatItem-yQ": "Q y",
"eraNames": [
"AH"
],
"dateFormatItem-MMMEd": "E, MMM d",
"dateFormatItem-hms": "h:mm:ss a",
"dateFormatItem-yQQQ": "QQQ y",
"dateFormatItem-MMM": "LLL",
"months-standAlone-narrow": [
"1",
"2",
"3",
"4",
"5",
"6",
"7",
"8",
"9",
"10",
"11",
"12"
],
"timeFormat-full": "h:mm:ss a zzzz",
"dateFormatItem-yyyy": "y G",
"months-standAlone-abbr": [
"Muh.",
"Saf.",
"Rab. I",
"Rab. II",
"Jum. I",
"Jum. II",
"Raj.",
"Sha.",
"Ram.",
"Shaw.",
"Dhuʻl-Q.",
"Dhuʻl-H."
],
"dateFormatItem-yMMM": "MMM y",
"days-standAlone-narrow": [
"S",
"M",
"T",
"W",
"T",
"F",
"S"
],
"eraAbbr": [
"AH"
],
"dateFormat-long": "MMMM d, y G",
"timeFormat-medium": "h:mm:ss a",
"dateFormatItem-EEEd": "d EEE",
"dateFormatItem-Hm": "HH:mm",
"dateFormat-medium": "MMM d, y G",
"dateFormatItem-Hms": "HH:mm:ss",
"dateFormatItem-ms": "mm:ss",
"months-standAlone-wide": [
"Muharram",
"Safar",
"Rabiʻ I",
"Rabiʻ II",
"Jumada I",
"Jumada II",
"Rajab",
"Shaʻban",
"Ramadan",
"Shawwal",
"Dhuʻl-Qiʻdah",
"Dhuʻl-Hijjah"
],
"dateFormatItem-yyyyMEd": "EEE, M/d/y G",
"dateFormatItem-MMMd": "MMM d",
"timeFormat-long": "h:mm:ss a z",
"months-format-abbr": [
"Muh.",
"Saf.",
"Rab. I",
"Rab. II",
"Jum. I",
"Jum. II",
"Raj.",
"Sha.",
"Ram.",
"Shaw.",
"Dhuʻl-Q.",
"Dhuʻl-H."
],
"timeFormat-short": "h:mm a",
"days-format-abbr": [
"Sun",
"Mon",
"Tue",
"Wed",
"Thu",
"Fri",
"Sat"
],
"dateFormatItem-M": "L",
"dateFormatItem-yyyyQQQ": "QQQ y G",
"dateFormatItem-MEd": "E, M/d",
"months-format-narrow": [
"1",
"2",
"3",
"4",
"5",
"6",
"7",
"8",
"9",
"10",
"11",
"12"
],
"dateFormatItem-hm": "h:mm a",
"dateFormat-short": "M/d/yy G",
"dateFormatItem-yyyyM": "M/y G",
"dateFormatItem-yMMMEd": "EEE, MMM d, y",
"dateFormat-full": "EEEE, MMMM d, y G",
"dateFormatItem-Md": "M/d",
"dateFormatItem-yyyyQ": "Q y G",
"dateFormatItem-yMEd": "EEE, M/d/y",
"months-format-wide": [
"Muharram",
"Safar",
"Rabiʻ I",
"Rabiʻ II",
"Jumada I",
"Jumada II",
"Rajab",
"Shaʻban",
"Ramadan",
"Shawwal",
"Dhuʻl-Qiʻdah",
"Dhuʻl-Hijjah"
],
"dateFormatItem-yyyyMMM": "MMM y G",
"dateFormatItem-d": "d",
"quarters-format-wide": [
"1st quarter",
"2nd quarter",
"3rd quarter",
"4th quarter"
],
"eraNarrow": [
"AH"
],
"days-format-wide": [
"Sunday",
"Monday",
"Tuesday",
"Wednesday",
"Thursday",
"Friday",
"Saturday"
]
}
//end v1.x content
);
\ No newline at end of file
define(
//begin v1.x content
{
"group": ",",
"percentSign": "%",
"exponential": "E",
"scientificFormat": "#E0",
"percentFormat": "#,##0%",
"list": ";",
"infinity": "",
"patternDigit": "#",
"minusSign": "-",
"decimal": ".",
"nan": "NaN",
"nativeZeroDigit": "0",
"perMille": "",
"decimalFormat": "#,##0.###",
"currencyFormat": "¤#,##0.00;(¤#,##0.00)",
"plusSign": "+",
"decimalFormat-short": "000T"
}
//end v1.x content
);
\ No newline at end of file
define(
//begin v1.x content
{
"dateFormatItem-yM": "M/y G",
"dateFormatItem-yQ": "Q y G",
"dayPeriods-format-wide-pm": "p.m.",
"dateFormatItem-MMMEd": "E d MMM",
"dateFormatItem-hms": "hh:mm:ss a",
"dateFormatItem-yQQQ": "QQQ y G",
"dateFormatItem-MMM": "LLL",
"months-standAlone-narrow": [
"E",
"F",
"M",
"A",
"M",
"J",
"J",
"A",
"S",
"O",
"N",
"D"
],
"dayPeriods-format-wide-am": "a.m.",
"dateFormatItem-y": "y G",
"dateFormatItem-MMMdd": "dd-MMM",
"dateFormatItem-yMMM": "MMM y G",
"days-standAlone-narrow": [
"D",
"L",
"M",
"M",
"J",
"V",
"S"
],
"dateFormatItem-yyyyMM": "MM/y G",
"dateFormat-long": "d 'de' MMMM 'de' y G",
"dateFormatItem-EEEd": "EEE d",
"dateFormatItem-Hm": "HH:mm",
"dateFormatItem-MMd": "d/MM",
"dateFormatItem-yyMM": "MM/y G",
"dateFormat-medium": "dd/MM/y G",
"dateFormatItem-Hms": "HH:mm:ss",
"dateFormatItem-yyMMM": "MMM-y G",
"dateFormatItem-yyQQQQ": "QQQQ 'de' y G",
"dateFormatItem-yMd": "d/M/y G",
"dateFormatItem-yMMMM": "MMMM 'de' y G",
"dateFormatItem-ms": "mm:ss",
"dateFormatItem-MMMd": "d MMM",
"dateFormatItem-yyQ": "Q y G",
"months-format-abbr": [
"ene",
"feb",
"mar",
"abr",
"may",
"jun",
"jul",
"ago",
"sep",
"oct",
"nov",
"dic"
],
"dateFormatItem-MMMMd": "d 'de' MMMM",
"quarters-format-abbr": [
"T1",
"T2",
"T3",
"T4"
],
"days-format-abbr": [
"dom",
"lun",
"mar",
"mié",
"jue",
"vie",
"sáb"
],
"dateFormatItem-M": "L",
"dateFormatItem-yMMMd": "d MMM y G",
"dateFormatItem-MEd": "E, d/M",
"dateFormatItem-hm": "hh:mm a",
"dateFormat-short": "dd/MM/y G",
"dateFormatItem-yMMMEd": "EEE, d MMM y G",
"dateFormat-full": "EEEE d 'de' MMMM 'de' y G",
"dateFormatItem-Md": "d/M",
"dateFormatItem-yMEd": "EEE d/M/y G",
"months-format-wide": [
"enero",
"febrero",
"marzo",
"abril",
"mayo",
"junio",
"julio",
"agosto",
"septiembre",
"octubre",
"noviembre",
"diciembre"
],
"dateFormatItem-d": "d",
"quarters-format-wide": [
"1er trimestre",
"2º trimestre",
"3er trimestre",
"4º trimestre"
],
"days-format-wide": [
"domingo",
"lunes",
"martes",
"miércoles",
"jueves",
"viernes",
"sábado"
],
"dateFormatItem-h": "hh a"
}
//end v1.x content
);
\ No newline at end of file
define(
//begin v1.x content
{
"HKD_displayName": "dólar de Hong Kong",
"CHF_displayName": "franco suizo",
"CAD_displayName": "dólar canadiense",
"CNY_displayName": "yuan renminbi chino",
"AUD_displayName": "dólar australiano",
"JPY_displayName": "yen japonés",
"USD_displayName": "dólar estadounidense",
"GBP_displayName": "libra esterlina británica",
"EUR_displayName": "euro"
}
//end v1.x content
);
\ No newline at end of file
This diff is collapsed.
This diff is collapsed.
define(
//begin v1.x content
{
"group": ".",
"percentSign": "%",
"exponential": "E",
"scientificFormat": "#E0",
"percentFormat": "#,##0%",
"list": ";",
"infinity": "",
"minusSign": "-",
"decimal": ",",
"nan": "NaN",
"nativeZeroDigit": "0",
"perMille": "",
"decimalFormat": "#,##0.###",
"currencyFormat": "¤ #,##0.00",
"plusSign": "+"
}
//end v1.x content
);
\ No newline at end of file
This diff is collapsed.
define(
//begin v1.x content
{
"HKD_displayName": "Hongkongin dollari",
"CHF_displayName": "Sveitsin frangi",
"CHF_symbol": "CHF",
"JPY_symbol": "¥",
"CAD_displayName": "Kanadan dollari",
"HKD_symbol": "HKD",
"CNY_displayName": "Kiinan yuan",
"USD_symbol": "$",
"AUD_displayName": "Australian dollari",
"JPY_displayName": "Japanin jeni",
"CAD_symbol": "CAD",
"USD_displayName": "Yhdysvaltain dollari",
"CNY_symbol": "CNY",
"GBP_displayName": "Englannin punta",
"AUD_symbol": "AUD",
"EUR_displayName": "euro"
}
//end v1.x content
);
\ No newline at end of file
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
define(
//begin v1.x content
{
"group": " ",
"percentSign": "%",
"exponential": "E",
"scientificFormat": "#E0",
"percentFormat": "#,##0 %",
"list": ";",
"infinity": "",
"patternDigit": "#",
"minusSign": "-",
"decimal": ",",
"nan": "epäluku",
"nativeZeroDigit": "0",
"perMille": "",
"decimalFormat": "#,##0.###",
"currencyFormat": "#,##0.00 ¤",
"plusSign": "+"
}
//end v1.x content
);
\ No newline at end of file
define(
//begin v1.x content
{
"timeFormat-full": "HH.mm:ss 'h' zzzz",
"dateFormat-full": "EEEE, d MMMM y",
"dateFormat-short": "dd.MM.yy"
}
//end v1.x content
);
\ No newline at end of file
define(
//begin v1.x content
{
"currencyFormat": "¤ #,##0.00;¤-#,##0.00",
"group": "'",
"decimal": "."
}
//end v1.x content
);
\ No newline at end of file
define(
//begin v1.x content
{
"HKD_displayName": "dollar de Hong Kong",
"CHF_displayName": "franc suisse",
"CHF_symbol": "CHF",
"JPY_symbol": "¥JP",
"CAD_displayName": "dollar canadien",
"HKD_symbol": "$HK",
"CNY_displayName": "yuan renminbi chinois",
"USD_symbol": "$US",
"AUD_displayName": "dollar australien",
"JPY_displayName": "yen japonais",
"CAD_symbol": "$CA",
"USD_displayName": "dollar des États-Unis",
"CNY_symbol": "Ұ",
"GBP_displayName": "livre sterling",
"GBP_symbol": "£UK",
"AUD_symbol": "$AU",
"EUR_displayName": "euro"
}
//end v1.x content
);
\ No newline at end of file
This diff is collapsed.
define(
//begin v1.x content
{
"group": " ",
"percentSign": "%",
"exponential": "E",
"scientificFormat": "#E0",
"percentFormat": "#,##0 %",
"list": ";",
"infinity": "",
"patternDigit": "#",
"minusSign": "-",
"decimal": ",",
"nan": "NaN",
"nativeZeroDigit": "0",
"perMille": "",
"decimalFormat": "#,##0.###",
"currencyFormat": "#,##0.00 ¤",
"plusSign": "+"
}
//end v1.x content
);
\ No newline at end of file
This diff is collapsed.
define(
//begin v1.x content
{
"HKD_displayName": "דולר הונג קונגי",
"CHF_displayName": "פרנק שוויצרי",
"CAD_displayName": "דולר קנדי",
"CNY_displayName": "יואן רנמינבי סיני",
"AUD_displayName": "דולר אוסטרלי",
"JPY_displayName": "ין יפני",
"USD_displayName": "דולר אמריקאי",
"GBP_displayName": "לירה שטרלינג",
"EUR_displayName": "אירו"
}
//end v1.x content
);
\ No newline at end of file
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
define(
//begin v1.x content
{
"HKD_displayName": "Hongkongi dollár",
"CHF_displayName": "Svájci frank",
"JPY_symbol": "¥",
"CAD_displayName": "Kanadai dollár",
"CNY_displayName": "Kínai jüan renminbi",
"USD_symbol": "$",
"AUD_displayName": "Ausztrál dollár",
"JPY_displayName": "Japán jen",
"USD_displayName": "USA dollár",
"GBP_displayName": "Brit font sterling",
"EUR_displayName": "Euro"
}
//end v1.x content
);
\ No newline at end of file
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment