Commit c7f05d38 authored by James Thomas's avatar James Thomas Committed by Sindre Sorhus

Close GH-173: Updating Dojo application to use latest template . Fixes #138

parent a5407e0f
#clear-completed, #footer, #main,
.plural {
display: none;
}
#todoapp.todos_selected #clear-completed,
#todoapp.todos_present #footer,
#todoapp.todos_present #main,
.multiple .plural {
display: inherit;
}
#todo-list li.hidden {
display: none;
}
#todo-list li .toggle.dijitChecked:after {
color: #85ada7;
text-shadow: 0 1px 0 #669991;
bottom: 1px;
position: relative;
}
/* When checkbox is selected, score through todo item content */
.dijitCheckBoxChecked + .todo-content {
color: #666;
text-decoration: line-through;
}
/* When checkbox is selected, score through todo item content after an edit */
.dijitCheckBoxChecked + .dijitInline + .todo-content {
color: #666;
text-decoration: line-through;
}
#todo-list .dijitCheckBoxInput {
opacity: 0;
position: absolute;
top: 14px;
z-index: 10;
}
/** Match up inline edit box with styling */
.dijitInputInner {
position: relative;
margin: 0;
width: 100%;
font-size: 24px;
font-family: inherit;
line-height: 1.4em;
border: 0;
outline: none;
color: inherit;
padding: 6px;
border: 1px solid #999;
box-shadow: inset 0 -1px 5px 0 rgba(0, 0, 0, 0.2);
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
-o-box-sizing: border-box;
box-sizing: border-box;
-webkit-font-smoothing: antialiased;
-moz-font-smoothing: antialiased;
-ms-font-smoothing: antialiased;
-o-font-smoothing: antialiased;
font-smoothing: antialiased;
}
#todo-list li .dijitInputInner {
display: block;
width: 506px;
padding: 13px 17px 12px 17px;
margin: 0 0 0 43px;
z-index: 10;
}
/** Ugh, force override of edit container margin */
#todo-list li span.dijitInline {
margin: 0 !important;
}
/**
* Inline edit box doesn't provide indication via class names
* when a box is 'live'. Style values are set manually. Use the
* opacity change as indicator... :( */
.inline_edit[style~='0;'] ~ .toggle {
visibility: hidden !important;
}
This source diff could not be displayed because it is too large. You can view the blob instead.
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
margin: 0;
padding: 0;
border: 0;
outline: 0;
font-weight: inherit;
font-style: inherit;
font-size: 100%;
font-family: inherit;
vertical-align: baseline;
}
body {
line-height: 1;
color: black;
background: white;
}
ol, ul {
list-style: none;
}
a img {
border: none;
}
html {
background: #eeeeee;
}
body {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 14px;
line-height: 1.4em;
background: #eeeeee;
color: #333333;
}
#todoapp {
width: 480px;
margin: 0 auto 40px;
background: white;
padding: 20px;
-moz-box-shadow: rgba(0, 0, 0, 0.2) 0 5px 6px 0;
-webkit-box-shadow: rgba(0, 0, 0, 0.2) 0 5px 6px 0;
-o-box-shadow: rgba(0, 0, 0, 0.2) 0 5px 6px 0;
box-shadow: rgba(0, 0, 0, 0.2) 0 5px 6px 0;
}
#todoapp h1 {
font-size: 36px;
font-weight: bold;
text-align: center;
padding: 20px 0 30px 0;
line-height: 1;
}
.create-todo {
position: relative;
}
.create-todo input {
width: 466px;
font-size: 24px;
font-family: inherit;
line-height: 1.4em;
border: 0;
outline: none;
padding: 6px;
border: 1px solid #999999;
-moz-box-shadow: rgba(0, 0, 0, 0.2) 0 1px 2px 0 inset;
-webkit-box-shadow: rgba(0, 0, 0, 0.2) 0 1px 2px 0 inset;
-o-box-shadow: rgba(0, 0, 0, 0.2) 0 1px 2px 0 inset;
box-shadow: rgba(0, 0, 0, 0.2) 0 1px 2px 0 inset;
}
.create-todo span {
position: absolute;
z-index: 999;
width: 170px;
left: 50%;
margin-left: -85px;
}
.todo-list {
margin-top: 10px;
}
.todo-list li {
padding: 12px 20px 11px 0;
position: relative;
font-size: 24px;
line-height: 1.1em;
border-bottom: 1px solid #cccccc;
}
.todo-list li:after {
content: "\0020";
display: block;
height: 0;
clear: both;
overflow: hidden;
visibility: hidden;
}
.todo-list li.editing {
padding: 0;
border-bottom: 0;
}
.todo-list .editing .display,
.todo-list .edit {
display: none;
}
.todo-list .editing .edit {
display: block;
}
.todo-list .editing input {
width: 444px;
font-size: 24px;
font-family: inherit;
margin: 0;
line-height: 1.6em;
border: 0;
outline: none;
padding: 10px 7px 0px 27px;
border: 1px solid #999999;
-moz-box-shadow: rgba(0, 0, 0, 0.2) 0 1px 2px 0 inset;
-webkit-box-shadow: rgba(0, 0, 0, 0.2) 0 1px 2px 0 inset;
-o-box-shadow: rgba(0, 0, 0, 0.2) 0 1px 2px 0 inset;
box-shadow: rgba(0, 0, 0, 0.2) 0 1px 2px 0 inset;
}
.todo-list .check {
position: relative;
top: 11px;
margin: 0 10px 0 7px;
float: left;
}
.todo-list .done .todo-content {
text-decoration: line-through;
color: #777777;
}
.todo-list .todo-destroy {
position: absolute;
right: 5px;
top: 14px;
display: none;
cursor: pointer;
width: 20px;
height: 20px;
background: url(destroy.png) no-repeat 0 0;
}
.todo-list li:hover .todo-destroy {
display: block;
}
.todo-list .todo-destroy:hover {
background-position: 0 -20px;
}
.todo-stats {
*zoom: 1;
margin-top: 10px;
color: #777777;
display: none;
}
.todo-stats.items_present {
display: block;
}
.todo-stats:after {
content: "\0020";
display: block;
height: 0;
clear: both;
overflow: hidden;
visibility: hidden;
}
.todo-stats .todo-count {
float: left;
}
.todo-stats .todo-count .number {
font-weight: bold;
color: #333333;
}
.todo-stats .todo-clear {
float: right;
display: none
}
.todo-stats.items_selected .todo-clear {
display: inline;
}
.todo-stats .todo-clear a {
color: #777777;
font-size: 12px;
}
.todo-stats .todo-clear a:visited {
color: #777777;
}
.todo-stats .todo-clear a:hover {
color: #336699;
}
#instructions {
width: 520px;
margin: 10px auto;
color: #777777;
text-shadow: rgba(255, 255, 255, 0.8) 0 1px 0;
text-align: center;
}
#instructions a {
color: #336699;
}
#credits {
width: 520px;
margin: 30px auto;
color: #999;
text-shadow: rgba(255, 255, 255, 0.8) 0 1px 0;
text-align: center;
}
#credits a {
color: #888;
}
/*
* François 'cahnory' Germain
*/
.ui-tooltip, .ui-tooltip-top, .ui-tooltip-right, .ui-tooltip-bottom, .ui-tooltip-left {
color:#ffffff;
cursor:normal;
display:-moz-inline-stack;
display:inline-block;
font-size:12px;
font-family:arial;
padding:.5em 1em;
position:relative;
text-align:center;
text-shadow:0 -1px 1px #111111;
-webkit-border-top-left-radius:4px ;
-webkit-border-top-right-radius:4px ;
-webkit-border-bottom-right-radius:4px ;
-webkit-border-bottom-left-radius:4px ;
-khtml-border-top-left-radius:4px ;
-khtml-border-top-right-radius:4px ;
-khtml-border-bottom-right-radius:4px ;
-khtml-border-bottom-left-radius:4px ;
-moz-border-radius-topleft:4px ;
-moz-border-radius-topright:4px ;
-moz-border-radius-bottomright:4px ;
-moz-border-radius-bottomleft:4px ;
border-top-left-radius:4px ;
border-top-right-radius:4px ;
border-bottom-right-radius:4px ;
border-bottom-left-radius:4px ;
-o-box-shadow:0 1px 2px #000000, inset 0 0 0 1px #222222, inset 0 2px #666666, inset 0 -2px 2px #444444;
-moz-box-shadow:0 1px 2px #000000, inset 0 0 0 1px #222222, inset 0 2px #666666, inset 0 -2px 2px #444444;
-khtml-box-shadow:0 1px 2px #000000, inset 0 0 0 1px #222222, inset 0 2px #666666, inset 0 -2px 2px #444444;
-webkit-box-shadow:0 1px 2px #000000, inset 0 0 0 1px #222222, inset 0 2px #666666, inset 0 -2px 2px #444444;
box-shadow:0 1px 2px #000000, inset 0 0 0 1px #222222, inset 0 2px #666666, inset 0 -2px 2px #444444;
background-color:#3b3b3b;
background-image:-moz-linear-gradient(top,#555555,#222222);
background-image:-webkit-gradient(linear,left top,left bottom,color-stop(0,#555555),color-stop(1,#222222));
filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#555555,EndColorStr=#222222);
-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#555555,EndColorStr=#222222);
}
.ui-tooltip:after, .ui-tooltip-top:after, .ui-tooltip-right:after, .ui-tooltip-bottom:after, .ui-tooltip-left:after {
content:"\25B8";
display:block;
font-size:2em;
height:0;
line-height:0;
position:absolute;
}
.ui-tooltip:after, .ui-tooltip-bottom:after {
color:#2a2a2a;
bottom:0;
left:1px;
text-align:center;
text-shadow:1px 0 2px #000000;
-o-transform:rotate(90deg);
-moz-transform:rotate(90deg);
-khtml-transform:rotate(90deg);
-webkit-transform:rotate(90deg);
width:100%;
}
.ui-tooltip-top:after {
bottom:auto;
color:#4f4f4f;
left:-2px;
top:0;
text-align:center;
text-shadow:none;
-o-transform:rotate(-90deg);
-moz-transform:rotate(-90deg);
-khtml-transform:rotate(-90deg);
-webkit-transform:rotate(-90deg);
width:100%;
}
.ui-tooltip-right:after {
color:#222222;
right:-0.375em;
top:50%;
margin-top:-.05em;
text-shadow:0 1px 2px #000000;
-o-transform:rotate(0);
-moz-transform:rotate(0);
-khtml-transform:rotate(0);
-webkit-transform:rotate(0);
}
.ui-tooltip-left:after {
color:#222222;
left:-0.375em;
top:50%;
margin-top:.1em;
text-shadow:0 -1px 2px #000000;
-o-transform:rotate(180deg);
-moz-transform:rotate(180deg);
-khtml-transform:rotate(180deg);
-webkit-transform:rotate(180deg);
}
/*the following changes require some cleanup and integration with the above.**/
/* line 9 */
/* line 17 */
#todoapp {
background: white;
-moz-box-shadow: rgba(0, 0, 0, 0.2) 0 2px 6px 0;
-webkit-box-shadow: rgba(0, 0, 0, 0.2) 0 2px 6px 0;
-o-box-shadow: rgba(0, 0, 0, 0.2) 0 2px 6px 0;
box-shadow: rgba(0, 0, 0, 0.2) 0 2px 6px 0;
-moz-border-radius-bottomleft: 5px;
-webkit-border-bottom-left-radius: 5px;
-o-border-bottom-left-radius: 5px;
-ms-border-bottom-left-radius: 5px;
-khtml-border-bottom-left-radius: 5px;
border-bottom-left-radius: 5px;
-moz-border-radius-bottomright: 5px;
-webkit-border-bottom-right-radius: 5px;
-o-border-bottom-right-radius: 5px;
-ms-border-bottom-right-radius: 5px;
-khtml-border-bottom-right-radius: 5px;
border-bottom-right-radius: 5px;
}
/* line 24 */
/* line 32 */
#todoapp .content .create-todo {
position: relative;
}
/* line 34 */
#todoapp .content .create-todo input {
font-size: 24px;
font-family: inherit;
line-height: 1.4em;
border: 0;
outline: none;
padding: 6px;
border: 1px solid #999999;
-moz-box-shadow: rgba(0, 0, 0, 0.2) 0 1px 2px 0 inset;
-webkit-box-shadow: rgba(0, 0, 0, 0.2) 0 1px 2px 0 inset;
-o-box-shadow: rgba(0, 0, 0, 0.2) 0 1px 2px 0 inset;
box-shadow: rgba(0, 0, 0, 0.2) 0 1px 2px 0 inset;
}
/* line 47 */
#todoapp .content .create-todo span {
position: absolute;
z-index: 999;
width: 170px;
left: 50%;
margin-left: -85px;
opacity: 0;
}
/* line 55 */
#todoapp .content ul.todo-list {
margin-top: 10px;
}
/* line 57 */
#todoapp .content ul.todo-list li {
padding: 15px 20px 15px 0;
position: relative;
font-size: 24px;
border-bottom: 1px solid #cccccc;
*zoom: 1;
}
/* line 22, /opt/ree/lib/ruby/gems/1.8/gems/compass-0.10.5/frameworks/compass/stylesheets/compass/utilities/general/_clearfix.scss */
#todoapp .content ul.todo-list li:after {
content: "\0020";
display: block;
height: 0;
clear: both;
overflow: hidden;
visibility: hidden;
}
/* line 64 */
#todoapp .content ul.todo-list li.editing {
padding: 0;
border-bottom: 0;
}
/* line 67 */
#todoapp .content ul.todo-list li.editing .todo-input {
display: block;
width: 466px;
font-size: 24px;
font-family: inherit;
line-height: 1.4em;
border: 0;
outline: none;
padding: 6px;
border: 1px solid #999999;
-moz-box-shadow: rgba(0, 0, 0, 0.2) 0 1px 2px 0 inset;
-webkit-box-shadow: rgba(0, 0, 0, 0.2) 0 1px 2px 0 inset;
-o-box-shadow: rgba(0, 0, 0, 0.2) 0 1px 2px 0 inset;
box-shadow: rgba(0, 0, 0, 0.2) 0 1px 2px 0 inset;
}
/* line 79 */
#todoapp .content ul.todo-list li.editing .todo-content {
display: none;
}
/* line 81 */
#todoapp .content ul.todo-list li.editing .todo-check {
display: none;
}
/* line 83 */
#todoapp .content ul.todo-list li.editing .todo-destroy {
display: none !important;
}
/* line 85 */
#todoapp .content ul.todo-list li .todo-input {
display: none;
}
/* line 87 */
#todoapp .content ul.todo-list li .todo-check {
position: relative;
top: 6px;
margin: 0 10px 0 7px;
float: left;
}
/* line 93 */
#todoapp .content ul.todo-list li.done .todo-content {
text-decoration: line-through;
color: #777777;
}
/* line 96 */
#todoapp .content ul.todo-list li .todo-destroy {
position: absolute;
right: 0px;
top: 22px;
display: none;
cursor: pointer;
width: 20px;
height: 20px;
}
/* line 106 */
#todoapp .content ul.todo-list li:hover .todo-destroy {
display: block;
}
/* line 109 */
#todoapp .todo-stats {
*zoom: 1;
margin-top: 10px;
color: #555555;
-moz-border-radius-bottomleft: 5px;
-webkit-border-bottom-left-radius: 5px;
-o-border-bottom-left-radius: 5px;
-ms-border-bottom-left-radius: 5px;
-khtml-border-bottom-left-radius: 5px;
border-bottom-left-radius: 5px;
-moz-border-radius-bottomright: 5px;
-webkit-border-bottom-right-radius: 5px;
-o-border-bottom-right-radius: 5px;
-ms-border-bottom-right-radius: 5px;
-khtml-border-bottom-right-radius: 5px;
border-bottom-right-radius: 5px;
background: #f4fce8;
border-top: 1px solid #ededed;
padding: 0 20px;
line-height: 36px;
}
/* line 22, /opt/ree/lib/ruby/gems/1.8/gems/compass-0.10.5/frameworks/compass/stylesheets/compass/utilities/general/_clearfix.scss */
#todoapp .todo-stats:after {
content: "\0020";
display: block;
height: 0;
clear: both;
overflow: hidden;
visibility: hidden;
}
/* line 118 */
#todoapp .todo-stats .todo-count {
float: left;
}
/* line 120 */
#todoapp .todo-stats .todo-count .number {
font-weight: bold;
color: #555555;
}
/* line 123 */
#todoapp .todo-stats .todo-clear {
float: right;
}
/* line 125 */
#todoapp .todo-stats .todo-clear a {
display: block;
line-height: 20px;
text-decoration: none;
-moz-border-radius: 12px;
-webkit-border-radius: 12px;
-o-border-radius: 12px;
-ms-border-radius: 12px;
-khtml-border-radius: 12px;
border-radius: 12px;
background: rgba(0, 0, 0, 0.1);
color: #555555;
font-size: 11px;
margin-top: 8px;
padding: 0 10px 1px;
-moz-box-shadow: rgba(0, 0, 0, 0.2) 0 -1px 0 0;
-webkit-box-shadow: rgba(0, 0, 0, 0.2) 0 -1px 0 0;
-o-box-shadow: rgba(0, 0, 0, 0.2) 0 -1px 0 0;
box-shadow: rgba(0, 0, 0, 0.2) 0 -1px 0 0;
}
/* line 136 */
#todoapp .todo-stats .todo-clear a:hover {
background: rgba(0, 0, 0, 0.15);
-moz-box-shadow: rgba(0, 0, 0, 0.3) 0 -1px 0 0;
-webkit-box-shadow: rgba(0, 0, 0, 0.3) 0 -1px 0 0;
-o-box-shadow: rgba(0, 0, 0, 0.3) 0 -1px 0 0;
box-shadow: rgba(0, 0, 0, 0.3) 0 -1px 0 0;
}
/* line 139 */
#todoapp .todo-stats .todo-clear a:active {
position: relative;
top: 1px;
}
/* When checkbox is selected, score through todo item content */
.dijitCheckBoxChecked + .todo-content {
color: #666;
text-decoration: line-through;
}
/* When checkbox is selected, score through todo item content after an edit */
.dijitCheckBoxChecked + .dijitInline + .todo-content {
color: #666;
text-decoration: line-through;
}
/** Override Claro's CSS rule to style application like other examples */
.claro .dijitInlineEditBoxDisplayModeHover {
background-color: white;
border: 1px solid transparent;
}
.claro .dijitCheckBox, .claro .dijitCheckBoxIcon {
background-image: none;
}
/* Need to have the background-image on IE */
.dj_ie .claro .dijitCheckBox, .claro .dijitCheckBoxIcon {
background-image: url("form/images/checkboxRadioButtonStates.png");
}
.dijitCheckBoxInput {
opacity: 1;
}
<!doctype html> <!doctype html>
<html> <html lang="en">
<head> <head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Dojo • TodoMVC</title> <title>Dojo • TodoMVC</title>
<style>@import "./css/claro.css";</style> <link rel="stylesheet" href="../../assets/base.css">
<link href="css/todos.css" rel="stylesheet"> <!-- CSS overrides - remove if you don't need it -->
<link rel="stylesheet" href="css/app.css">
<!--[if IE]> <!--[if IE]>
<script src="../../assets/ie.js"></script> <script src="../../assets/ie.js"></script>
<![endif]--> <![endif]-->
</head> </head>
<body class="claro"> <body>
<div id="todoapp"> <section id="todoapp" data-dojo-type="todo.app"></section>
<div class="title"> <footer id="info">
<h1>Todos</h1> <p>Double-click to edit a todo</p>
</div> <p>Created by <a href="http://jamesthom.as/">James Thomas</a> and <a href="https://github.com/edchat">Ed Chatelain</a></p>
<div class="content" data-dojo-type="todo.app"></div> </footer>
<div id="credits">
Created by <a href="http://jamesthom.as/">James Thomas</a> and <a href="https://github.com/edchat">Ed Chatelain</a>
</div>
</div>
<script src="../../assets/base.js"></script> <script src="../../assets/base.js"></script>
<script data-dojo-config="async:true, parseOnLoad:true, locale:'en', paths:{'todo':'../../todo'}, deps:['dojo/parser', 'todo/app']" src="./js/dtk/dojo/dojo.js"></script> <script data-dojo-config="async:true, parseOnLoad:true, locale:'en', paths:{'todo':'../todo/'}, deps:['dojo/parser', 'todo/app']" src="js/lib/dojo/dojo.js"></script>
</body> </body>
</html> </html>
\ No newline at end of file
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
{
"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
define(
//begin v1.x content
{
"months-format-narrow": [
"E",
"F",
"M",
"A",
"M",
"J",
"J",
"A",
"S",
"O",
"N",
"D"
],
"field-weekday": "día de la semana",
"dateFormatItem-yyQQQQ": "QQQQ 'de' yy",
"dateFormatItem-yQQQ": "QQQ y",
"dateFormatItem-yMEd": "EEE d/M/y",
"dateFormatItem-MMMEd": "E d MMM",
"eraNarrow": [
"a.C.",
"d.C."
],
"dateFormatItem-MMMdd": "dd-MMM",
"dateFormat-long": "d 'de' MMMM 'de' y",
"months-format-wide": [
"enero",
"febrero",
"marzo",
"abril",
"mayo",
"junio",
"julio",
"agosto",
"septiembre",
"octubre",
"noviembre",
"diciembre"
],
"dateFormatItem-EEEd": "EEE d",
"dayPeriods-format-wide-pm": "p.m.",
"dateFormat-full": "EEEE d 'de' MMMM 'de' y",
"dateFormatItem-Md": "d/M",
"field-era": "era",
"dateFormatItem-yM": "M/y",
"months-standAlone-wide": [
"enero",
"febrero",
"marzo",
"abril",
"mayo",
"junio",
"julio",
"agosto",
"septiembre",
"octubre",
"noviembre",
"diciembre"
],
"timeFormat-short": "HH:mm",
"quarters-format-wide": [
"1er trimestre",
"2º trimestre",
"3er trimestre",
"4º trimestre"
],
"timeFormat-long": "HH:mm:ss z",
"field-year": "año",
"dateFormatItem-yMMM": "MMM y",
"dateFormatItem-yQ": "Q y",
"field-hour": "hora",
"months-format-abbr": [
"ene",
"feb",
"mar",
"abr",
"may",
"jun",
"jul",
"ago",
"sep",
"oct",
"nov",
"dic"
],
"dateFormatItem-yyQ": "Q yy",
"timeFormat-full": "HH:mm:ss zzzz",
"field-day-relative+0": "hoy",
"field-day-relative+1": "mañana",
"field-day-relative+2": "pasado mañana",
"field-day-relative+3": "Dentro de tres días",
"months-standAlone-abbr": [
"ene",
"feb",
"mar",
"abr",
"may",
"jun",
"jul",
"ago",
"sep",
"oct",
"nov",
"dic"
],
"quarters-format-abbr": [
"T1",
"T2",
"T3",
"T4"
],
"quarters-standAlone-wide": [
"1er trimestre",
"2º trimestre",
"3er trimestre",
"4º trimestre"
],
"dateFormatItem-M": "L",
"days-standAlone-wide": [
"domingo",
"lunes",
"martes",
"miércoles",
"jueves",
"viernes",
"sábado"
],
"dateFormatItem-MMMMd": "d 'de' MMMM",
"dateFormatItem-yyMMM": "MMM-yy",
"timeFormat-medium": "HH:mm:ss",
"dateFormatItem-Hm": "HH:mm",
"quarters-standAlone-abbr": [
"T1",
"T2",
"T3",
"T4"
],
"eraAbbr": [
"a.C.",
"d.C."
],
"field-minute": "minuto",
"field-dayperiod": "periodo del día",
"days-standAlone-abbr": [
"dom",
"lun",
"mar",
"mié",
"jue",
"vie",
"sáb"
],
"dateFormatItem-d": "d",
"dateFormatItem-ms": "mm:ss",
"field-day-relative+-1": "ayer",
"dateFormatItem-h": "hh a",
"field-day-relative+-2": "antes de ayer",
"field-day-relative+-3": "Hace tres días",
"dateFormatItem-MMMd": "d MMM",
"dateFormatItem-MEd": "E, d/M",
"dateFormatItem-yMMMM": "MMMM 'de' y",
"field-day": "día",
"days-format-wide": [
"domingo",
"lunes",
"martes",
"miércoles",
"jueves",
"viernes",
"sábado"
],
"field-zone": "zona",
"dateFormatItem-yyyyMM": "MM/yyyy",
"dateFormatItem-y": "y",
"months-standAlone-narrow": [
"E",
"F",
"M",
"A",
"M",
"J",
"J",
"A",
"S",
"O",
"N",
"D"
],
"dateFormatItem-yyMM": "MM/yy",
"dateFormatItem-hm": "hh:mm a",
"days-format-abbr": [
"dom",
"lun",
"mar",
"mié",
"jue",
"vie",
"sáb"
],
"eraNames": [
"antes de Cristo",
"anno Dómini"
],
"days-format-narrow": [
"D",
"L",
"M",
"M",
"J",
"V",
"S"
],
"field-month": "mes",
"days-standAlone-narrow": [
"D",
"L",
"M",
"M",
"J",
"V",
"S"
],
"dateFormatItem-MMM": "LLL",
"dayPeriods-format-wide-am": "a.m.",
"dateFormat-short": "dd/MM/yy",
"dateFormatItem-MMd": "d/MM",
"field-second": "segundo",
"dateFormatItem-yMMMEd": "EEE, d MMM y",
"field-week": "semana",
"dateFormat-medium": "dd/MM/yyyy",
"dateFormatItem-Hms": "HH:mm:ss",
"dateFormatItem-hms": "hh:mm:ss a"
}
//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 y",
"dayPeriods-format-wide-pm": "p.m.",
"eraNames": [
"AH"
],
"dateFormatItem-MMMEd": "E d MMM",
"dateFormatItem-hms": "hh: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"
],
"dayPeriods-format-wide-am": "a.m.",
"dateFormatItem-MMMdd": "dd-MMM",
"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": [
"D",
"L",
"M",
"M",
"J",
"V",
"S"
],
"eraAbbr": [
"AH"
],
"dateFormatItem-yyyyMMMM": "MMMM 'de' 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-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-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-MEd": "E, d/M",
"dateFormatItem-yyyyQQQ": "QQQ y G",
"months-format-narrow": [
"1",
"2",
"3",
"4",
"5",
"6",
"7",
"8",
"9",
"10",
"11",
"12"
],
"dateFormatItem-hm": "hh:mm a",
"dateFormat-short": "dd/MM/y G",
"dateFormatItem-yyyyM": "M/y G",
"dateFormatItem-yMMMEd": "EEE, d MMM y",
"dateFormat-full": "EEEE d 'de' MMMM 'de' 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": [
"1er trimestre",
"2º trimestre",
"3er trimestre",
"4º trimestre"
],
"eraNarrow": [
"AH"
],
"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
{
"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
define(
//begin v1.x content
{
"dateFormatItem-yM": "L.y G",
"dateFormatItem-yMMMMccccd": "cccc, d. MMMM y G",
"dateFormatItem-yQ": "Q/y G",
"dayPeriods-format-wide-pm": "ip.",
"dateFormatItem-MMMEd": "E d. MMM",
"dateFormatItem-hms": "h.mm.ss a",
"dateFormatItem-yQQQ": "QQQ y G",
"days-standAlone-wide": [
"sunnuntai",
"maanantai",
"tiistai",
"keskiviikko",
"torstai",
"perjantai",
"lauantai"
],
"dateFormatItem-MMM": "LLL",
"months-standAlone-narrow": [
"T",
"H",
"M",
"H",
"T",
"K",
"H",
"E",
"S",
"L",
"M",
"J"
],
"dateFormatItem-Gy": "y G",
"dayPeriods-format-wide-am": "ap.",
"dateFormatItem-y": "y G",
"timeFormat-full": "H.mm.ss zzzz",
"months-standAlone-abbr": [
"tammi",
"helmi",
"maalis",
"huhti",
"touko",
"kesä",
"heinä",
"elo",
"syys",
"loka",
"marras",
"joulu"
],
"dateFormatItem-Ed": "ccc d.",
"dateFormatItem-yMMM": "LLLL y G",
"days-standAlone-narrow": [
"S",
"M",
"T",
"K",
"T",
"P",
"L"
],
"dateFormatItem-yyyyMMMM": "LLLL y G",
"dateFormat-long": "d. MMMM y G",
"timeFormat-medium": "H.mm.ss",
"dateFormatItem-Hm": "H.mm",
"dateFormatItem-yyyyMEEEd": "EEE d.M.y G",
"dateFormatItem-yyMM": "M.y G",
"dateFormat-medium": "d.M.y G",
"dateFormatItem-Hms": "H.mm.ss",
"dateFormatItem-yyMMM": "LLLL y G",
"dateFormatItem-ms": "mm.ss",
"dateFormatItem-yyyyQQQQ": "QQQQ y G",
"months-standAlone-wide": [
"tammikuu",
"helmikuu",
"maaliskuu",
"huhtikuu",
"toukokuu",
"kesäkuu",
"heinäkuu",
"elokuu",
"syyskuu",
"lokakuu",
"marraskuu",
"joulukuu"
],
"dateFormatItem-MMMd": "d. MMM",
"dateFormatItem-yyQ": "Q/y G",
"timeFormat-long": "H.mm.ss z",
"months-format-abbr": [
"tammikuuta",
"helmikuuta",
"maaliskuuta",
"huhtikuuta",
"toukokuuta",
"kesäkuuta",
"heinäkuuta",
"elokuuta",
"syyskuuta",
"lokakuuta",
"marraskuuta",
"joulukuuta"
],
"dateFormatItem-H": "H",
"timeFormat-short": "H.mm",
"quarters-format-abbr": [
"1. nelj.",
"2. nelj.",
"3. nelj.",
"4. nelj."
],
"days-format-abbr": [
"su",
"ma",
"ti",
"ke",
"to",
"pe",
"la"
],
"dateFormatItem-M": "L",
"dateFormatItem-MEd": "E d.M.",
"dateFormatItem-hm": "h.mm a",
"dayPeriods-format-abbr-pm": "ip.",
"dateFormat-short": "d.M.y G",
"dateFormatItem-yyyyM": "M.y G",
"dateFormatItem-yMMMEd": "EEE d. MMM y G",
"dateFormat-full": "cccc d. MMMM y G",
"dateFormatItem-Md": "d.M.",
"dateFormatItem-yMEd": "EEE d.M.y G",
"months-format-wide": [
"tammikuuta",
"helmikuuta",
"maaliskuuta",
"huhtikuuta",
"toukokuuta",
"kesäkuuta",
"heinäkuuta",
"elokuuta",
"syyskuuta",
"lokakuuta",
"marraskuuta",
"joulukuuta"
],
"dayPeriods-format-abbr-am": "ap.",
"dateFormatItem-d": "d",
"quarters-format-wide": [
"1. neljännes",
"2. neljännes",
"3. neljännes",
"4. neljännes"
],
"days-format-wide": [
"sunnuntaina",
"maanantaina",
"tiistaina",
"keskiviikkona",
"torstaina",
"perjantaina",
"lauantaina"
]
}
//end v1.x content
);
\ No newline at end of file
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
define(
//begin v1.x content
{
"months-format-narrow": [
"T",
"H",
"M",
"H",
"T",
"K",
"H",
"E",
"S",
"L",
"M",
"J"
],
"field-weekday": "viikonpäivä",
"dateFormatItem-yQQQ": "QQQ y",
"dateFormatItem-yMEd": "EEE d.M.yyyy",
"dateFormatItem-MMMEd": "E d. MMM",
"eraNarrow": [
"eKr.",
"jKr."
],
"dateFormat-long": "d. MMMM y",
"months-format-wide": [
"tammikuuta",
"helmikuuta",
"maaliskuuta",
"huhtikuuta",
"toukokuuta",
"kesäkuuta",
"heinäkuuta",
"elokuuta",
"syyskuuta",
"lokakuuta",
"marraskuuta",
"joulukuuta"
],
"dayPeriods-format-wide-pm": "ip.",
"dateFormat-full": "cccc d. MMMM y",
"dateFormatItem-Md": "d.M.",
"dayPeriods-standAlone-wide-pm": "ip.",
"dayPeriods-format-abbr-am": "ap.",
"field-era": "aikakausi",
"dateFormatItem-yM": "L.yyyy",
"months-standAlone-wide": [
"tammikuu",
"helmikuu",
"maaliskuu",
"huhtikuu",
"toukokuu",
"kesäkuu",
"heinäkuu",
"elokuu",
"syyskuu",
"lokakuu",
"marraskuu",
"joulukuu"
],
"timeFormat-short": "H.mm",
"quarters-format-wide": [
"1. neljännes",
"2. neljännes",
"3. neljännes",
"4. neljännes"
],
"timeFormat-long": "H.mm.ss z",
"field-year": "vuosi",
"dateFormatItem-yMMM": "LLL y",
"dateFormatItem-yQ": "Q/yyyy",
"dateFormatItem-yyyyMMMM": "LLLL y",
"field-hour": "tunti",
"months-format-abbr": [
"tammikuuta",
"helmikuuta",
"maaliskuuta",
"huhtikuuta",
"toukokuuta",
"kesäkuuta",
"heinäkuuta",
"elokuuta",
"syyskuuta",
"lokakuuta",
"marraskuuta",
"joulukuuta"
],
"dateFormatItem-yyQ": "Q/yy",
"timeFormat-full": "H.mm.ss zzzz",
"dateFormatItem-yyyyMEEEd": "EEE d.M.yyyy",
"field-day-relative+0": "tänään",
"field-day-relative+1": "huomenna",
"field-day-relative+2": "ylihuomenna",
"dateFormatItem-H": "H",
"months-standAlone-abbr": [
"tammi",
"helmi",
"maalis",
"huhti",
"touko",
"kesä",
"heinä",
"elo",
"syys",
"loka",
"marras",
"joulu"
],
"quarters-format-abbr": [
"1. nelj.",
"2. nelj.",
"3. nelj.",
"4. nelj."
],
"quarters-standAlone-wide": [
"1. neljännes",
"2. neljännes",
"3. neljännes",
"4. neljännes"
],
"dateFormatItem-M": "L",
"days-standAlone-wide": [
"sunnuntai",
"maanantai",
"tiistai",
"keskiviikko",
"torstai",
"perjantai",
"lauantai"
],
"dateFormatItem-yyMMM": "LLLL yy",
"timeFormat-medium": "H.mm.ss",
"dateFormatItem-Hm": "H.mm",
"quarters-standAlone-abbr": [
"1. nelj.",
"2. nelj.",
"3. nelj.",
"4. nelj."
],
"eraAbbr": [
"eKr.",
"jKr."
],
"field-minute": "minuutti",
"field-dayperiod": "ap./ip.",
"days-standAlone-abbr": [
"su",
"ma",
"ti",
"ke",
"to",
"pe",
"la"
],
"dateFormatItem-d": "d",
"dateFormatItem-ms": "mm.ss",
"field-day-relative+-1": "eilen",
"field-day-relative+-2": "toissapäivänä",
"dateFormatItem-MMMd": "d. MMM",
"dateFormatItem-MEd": "E d.M.",
"field-day": "päivä",
"dateFormatItem-yMMMMccccd": "cccc, d. MMMM y",
"days-format-wide": [
"sunnuntaina",
"maanantaina",
"tiistaina",
"keskiviikkona",
"torstaina",
"perjantaina",
"lauantaina"
],
"field-zone": "aikavyöhyke",
"dateFormatItem-y": "y",
"months-standAlone-narrow": [
"T",
"H",
"M",
"H",
"T",
"K",
"H",
"E",
"S",
"L",
"M",
"J"
],
"dateFormatItem-yyMM": "M/yy",
"dateFormatItem-hm": "h.mm a",
"dayPeriods-format-abbr-pm": "ip.",
"days-format-abbr": [
"su",
"ma",
"ti",
"ke",
"to",
"pe",
"la"
],
"eraNames": [
"ennen Kristuksen syntymää",
"jälkeen Kristuksen syntymän"
],
"days-format-narrow": [
"S",
"M",
"T",
"K",
"T",
"P",
"L"
],
"field-month": "kuukausi",
"days-standAlone-narrow": [
"S",
"M",
"T",
"K",
"T",
"P",
"L"
],
"dateFormatItem-MMM": "LLL",
"dayPeriods-format-wide-am": "ap.",
"dayPeriods-standAlone-wide-am": "ap.",
"dateFormat-short": "d.M.yyyy",
"field-second": "sekunti",
"dateFormatItem-yMMMEd": "EEE d. MMM y",
"dateFormatItem-Ed": "ccc d.",
"field-week": "viikko",
"dateFormat-medium": "d.M.yyyy",
"dateFormatItem-yyyyM": "M/yyyy",
"dateFormatItem-yyyyQQQQ": "QQQQ y",
"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
{
"dateFormatItem-yM": "L.yyyy",
"dateFormatItem-yQ": "Q/yyyy",
"months-standAlone-abbr-leap": "adár II",
"dayPeriods-format-wide-pm": "ip.",
"dateFormatItem-MMMEd": "E d. MMM",
"dateFormatItem-hms": "h.mm.ss a",
"dateFormatItem-yQQQ": "QQQ y",
"days-standAlone-wide": [
"sunnuntai",
"maanantai",
"tiistai",
"keskiviikko",
"torstai",
"perjantai",
"lauantai"
],
"months-standAlone-narrow": [
"T",
"H",
"K",
"T",
"S",
"A",
"A",
"N",
"I",
"S",
"T",
"A",
"E"
],
"dayPeriods-format-wide-am": "ap.",
"timeFormat-full": "H.mm.ss zzzz",
"months-standAlone-narrow-leap": "A",
"months-standAlone-abbr": [
"tišrí",
"hešván",
"kislév",
"tevét",
"ševát",
"adár I",
"adár",
"nisán",
"ijjár",
"siván",
"tammúz",
"ab",
"elúl"
],
"dateFormatItem-yMMM": "LLL y",
"days-standAlone-narrow": [
"S",
"M",
"T",
"K",
"T",
"P",
"L"
],
"dateFormat-long": "d. MMMM y",
"timeFormat-medium": "H.mm.ss",
"dateFormatItem-Hm": "H.mm",
"dateFormat-medium": "d.M.yyyy",
"dateFormatItem-Hms": "H.mm.ss",
"dateFormatItem-ms": "mm.ss",
"months-standAlone-wide": [
"tišríkuu",
"hešvánkuu",
"kislévkuu",
"tevétkuu",
"ševátkuu",
"adárkuu I",
"adárkuu",
"nisánkuu",
"ijjárkuu",
"sivánkuu",
"tammúzkuu",
"abkuu",
"elúlkuu"
],
"dateFormatItem-MMMd": "d. MMM",
"timeFormat-long": "H.mm.ss z",
"months-format-abbr": [
"tišríkuuta",
"hešvánkuuta",
"kislévkuuta",
"tevétkuuta",
"ševátkuuta",
"adárkuuta I",
"adárkuuta",
"nisánkuuta",
"ijjárkuuta",
"sivánkuuta",
"tammúzkuuta",
"abkuuta",
"elúlkuuta"
],
"timeFormat-short": "H.mm",
"dateFormatItem-H": "H",
"quarters-format-abbr": [
"1. nelj.",
"2. nelj.",
"3. nelj.",
"4. nelj."
],
"days-format-abbr": [
"su",
"ma",
"ti",
"ke",
"to",
"pe",
"la"
],
"dateFormatItem-MEd": "E d.M.",
"months-format-narrow": [
"T",
"H",
"K",
"T",
"S",
"A",
"A",
"N",
"I",
"S",
"T",
"A",
"E"
],
"dateFormatItem-hm": "h.mm a",
"months-standAlone-wide-leap": "adárkuu II",
"dayPeriods-format-abbr-pm": "ip.",
"dateFormat-short": "d.M.yyyy",
"dateFormatItem-yMMMEd": "EEE d. MMM y",
"dateFormat-full": "cccc d. MMMM y",
"dateFormatItem-Md": "d.M.",
"dateFormatItem-yMEd": "EEE d.M.yyyy",
"months-format-wide": [
"tišríkuuta",
"hešvánkuuta",
"kislévkuuta",
"tevétkuuta",
"ševátkuuta",
"adárkuuta I",
"adárkuuta",
"nisánkuuta",
"ijjárkuuta",
"sivánkuuta",
"tammúzkuuta",
"abkuuta",
"elúlkuuta"
],
"dayPeriods-format-abbr-am": "ap.",
"quarters-format-wide": [
"1. neljännes",
"2. neljännes",
"3. neljännes",
"4. neljännes"
],
"months-format-wide-leap": "adárkuuta II",
"days-format-wide": [
"sunnuntaina",
"maanantaina",
"tiistaina",
"keskiviikkona",
"torstaina",
"perjantaina",
"lauantaina"
]
}
//end v1.x content
);
\ No newline at end of file
define(
//begin v1.x content
{
"dateFormatItem-yM": "L.yyyy",
"dateFormatItem-yyyyMMMEd": "EEE d. MMM y G",
"dateFormatItem-yQ": "Q/yyyy",
"dayPeriods-format-wide-pm": "ip.",
"dateFormatItem-MMMEd": "E d. MMM",
"dateFormatItem-hms": "h.mm.ss a",
"dateFormatItem-yQQQ": "QQQ y",
"days-standAlone-wide": [
"sunnuntai",
"maanantai",
"tiistai",
"keskiviikko",
"torstai",
"perjantai",
"lauantai"
],
"dateFormatItem-MMM": "LLL",
"dateFormatItem-Gy": "y G",
"dayPeriods-format-wide-am": "ap.",
"dateFormatItem-y": "y G",
"timeFormat-full": "H.mm.ss zzzz",
"dateFormatItem-yyyy": "y G",
"months-standAlone-abbr": [
"muharram",
"safar",
"rabi’ al-awwal",
"rabi’ al-akhir",
"džumada-l-ula",
"džumada-l-akhira",
"radžab",
"ša’ban",
"ramadan",
"šawwal",
"dhu-l-qa’da",
"dhu-l-hiddža"
],
"dateFormatItem-Ed": "ccc d.",
"dateFormatItem-yMMM": "LLL y",
"days-standAlone-narrow": [
"S",
"M",
"T",
"K",
"T",
"P",
"L"
],
"dateFormatItem-yyyyMMMMccccd": "cccc, d. MMMM y G",
"dateFormatItem-yyyyMM": "M.y G",
"dateFormatItem-yyyyMMMM": "LLLL y G",
"dateFormat-long": "d. MMMM y G",
"timeFormat-medium": "H.mm.ss",
"dateFormatItem-Hm": "H.mm",
"dateFormat-medium": "d.M.y G",
"dateFormatItem-Hms": "H.mm.ss",
"dateFormatItem-ms": "mm.ss",
"dateFormatItem-yyyyQQQQ": "QQQQ y G",
"months-standAlone-wide": [
"muharram",
"safar",
"rabi’ al-awwal",
"rabi’ al-akhir",
"džumada-l-ula",
"džumada-l-akhira",
"radžab",
"ša’ban",
"ramadan",
"šawwal",
"dhu-l-qa’da",
"dhu-l-hiddža"
],
"dateFormatItem-yyyyMEd": "EEE d.M.y G",
"dateFormatItem-MMMd": "d. MMM",
"timeFormat-long": "H.mm.ss z",
"months-format-abbr": [
"muharram",
"safar",
"rabi’ al-awwal",
"rabi’ al-akhir",
"džumada-l-ula",
"džumada-l-akhira",
"radžab",
"ša’ban",
"ramadan",
"šawwal",
"dhu-l-qa’da",
"dhu-l-hiddža"
],
"timeFormat-short": "H.mm",
"dateFormatItem-H": "H",
"quarters-format-abbr": [
"1. nelj.",
"2. nelj.",
"3. nelj.",
"4. nelj."
],
"days-format-abbr": [
"su",
"ma",
"ti",
"ke",
"to",
"pe",
"la"
],
"dateFormatItem-M": "L",
"dateFormatItem-yyyyQQQ": "QQQ y G",
"dateFormatItem-MEd": "E d.M.",
"dateFormatItem-hm": "h.mm a",
"dayPeriods-format-abbr-pm": "ip.",
"dateFormat-short": "d.M.y G",
"dateFormatItem-yyyyM": "M.y G",
"dateFormatItem-yMMMEd": "EEE d. MMM y",
"dateFormat-full": "cccc d. MMMM y G",
"dateFormatItem-Md": "d.M.",
"dateFormatItem-yyyyQ": "Q/y G",
"dateFormatItem-yMEd": "EEE d.M.yyyy",
"months-format-wide": [
"muharram",
"safar",
"rabi’ al-awwal",
"rabi’ al-akhir",
"džumada-l-ula",
"džumada-l-akhira",
"radžab",
"ša’ban",
"ramadan",
"šawwal",
"dhu-l-qa’da",
"dhu-l-hiddža"
],
"dayPeriods-format-abbr-am": "ap.",
"dateFormatItem-yyyyMMM": "LLLL y G",
"dateFormatItem-d": "d",
"quarters-format-wide": [
"1. neljännes",
"2. neljännes",
"3. neljännes",
"4. neljännes"
],
"days-format-wide": [
"sunnuntaina",
"maanantaina",
"tiistaina",
"keskiviikkona",
"torstaina",
"perjantaina",
"lauantaina"
]
}
//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": "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
define(
//begin v1.x content
{
"months-format-narrow": [
"J",
"F",
"M",
"A",
"M",
"J",
"J",
"A",
"S",
"O",
"N",
"D"
],
"field-weekday": "jour de la semaine",
"dateFormatItem-yyQQQQ": "QQQQ yy",
"dateFormatItem-yQQQ": "QQQ y",
"dateFormatItem-yMEd": "EEE d/M/yyyy",
"dateFormatItem-MMMEd": "E d MMM",
"eraNarrow": [
"av. J.-C.",
"ap. J.-C."
],
"dayPeriods-format-wide-morning": "matin",
"dateFormatItem-MMMdd": "dd MMM",
"dateFormat-long": "d MMMM y",
"months-format-wide": [
"janvier",
"février",
"mars",
"avril",
"mai",
"juin",
"juillet",
"août",
"septembre",
"octobre",
"novembre",
"décembre"
],
"dayPeriods-format-wide-pm": "PM",
"dateFormat-full": "EEEE d MMMM y",
"dateFormatItem-Md": "d/M",
"dayPeriods-format-wide-noon": "midi",
"field-era": "ère",
"dateFormatItem-yM": "M/yyyy",
"months-standAlone-wide": [
"janvier",
"février",
"mars",
"avril",
"mai",
"juin",
"juillet",
"août",
"septembre",
"octobre",
"novembre",
"décembre"
],
"timeFormat-short": "HH:mm",
"quarters-format-wide": [
"1er trimestre",
"2e trimestre",
"3e trimestre",
"4e trimestre"
],
"timeFormat-long": "HH:mm:ss z",
"field-year": "année",
"dateFormatItem-yMMM": "MMM y",
"dateFormatItem-yQ": "'T'Q y",
"dateFormatItem-yyyyMMMM": "MMMM y",
"field-hour": "heure",
"dateFormatItem-MMdd": "dd/MM",
"months-format-abbr": [
"janv.",
"févr.",
"mars",
"avr.",
"mai",
"juin",
"juil.",
"août",
"sept.",
"oct.",
"nov.",
"déc."
],
"dateFormatItem-yyQ": "'T'Q yy",
"timeFormat-full": "HH:mm:ss zzzz",
"field-day-relative+0": "aujourd’hui",
"field-day-relative+1": "demain",
"field-day-relative+2": "après-demain",
"field-day-relative+3": "après-après-demain",
"months-standAlone-abbr": [
"janv.",
"févr.",
"mars",
"avr.",
"mai",
"juin",
"juil.",
"août",
"sept.",
"oct.",
"nov.",
"déc."
],
"quarters-format-abbr": [
"T1",
"T2",
"T3",
"T4"
],
"quarters-standAlone-wide": [
"1er trimestre",
"2e trimestre",
"3e trimestre",
"4e trimestre"
],
"dateFormatItem-M": "L",
"days-standAlone-wide": [
"dimanche",
"lundi",
"mardi",
"mercredi",
"jeudi",
"vendredi",
"samedi"
],
"dateFormatItem-yyMMMEEEd": "EEE d MMM yy",
"dateFormatItem-yyMMM": "MMM yy",
"timeFormat-medium": "HH:mm:ss",
"dateFormatItem-Hm": "HH:mm",
"quarters-standAlone-abbr": [
"T1",
"T2",
"T3",
"T4"
],
"eraAbbr": [
"av. J.-C.",
"ap. J.-C."
],
"field-minute": "minute",
"field-dayperiod": "cadran",
"days-standAlone-abbr": [
"dim.",
"lun.",
"mar.",
"mer.",
"jeu.",
"ven.",
"sam."
],
"dayPeriods-format-wide-night": "soir",
"dateFormatItem-yyMMMd": "d MMM yy",
"dateFormatItem-d": "d",
"dateFormatItem-ms": "mm:ss",
"quarters-format-narrow": [
"T1",
"T2",
"T3",
"T4"
],
"field-day-relative+-1": "hier",
"field-day-relative+-2": "avant-hier",
"field-day-relative+-3": "avant-avant-hier",
"dateFormatItem-MMMd": "d MMM",
"dateFormatItem-MEd": "EEE d/M",
"field-day": "jour",
"days-format-wide": [
"dimanche",
"lundi",
"mardi",
"mercredi",
"jeudi",
"vendredi",
"samedi"
],
"field-zone": "fuseau horaire",
"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": [
"dim.",
"lun.",
"mar.",
"mer.",
"jeu.",
"ven.",
"sam."
],
"eraNames": [
"avant Jésus-Christ",
"après Jésus-Christ"
],
"days-format-narrow": [
"D",
"L",
"M",
"M",
"J",
"V",
"S"
],
"field-month": "mois",
"days-standAlone-narrow": [
"D",
"L",
"M",
"M",
"J",
"V",
"S"
],
"dateFormatItem-MMM": "LLL",
"dayPeriods-format-wide-am": "AM",
"dateFormatItem-MMMMEd": "EEE d MMMM",
"dateFormat-short": "dd/MM/yy",
"dateFormatItem-MMd": "d/MM",
"dayPeriods-format-wide-afternoon": "après-midi",
"field-second": "seconde",
"dateFormatItem-yMMMEd": "EEE d MMM y",
"dateFormatItem-Ed": "E d",
"field-week": "semaine",
"dateFormat-medium": "d MMM y",
"dateFormatItem-Hms": "HH:mm:ss"
}
//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
{
"months-format-narrow": [
"1",
"2",
"3",
"4",
"5",
"6",
"7",
"8",
"9",
"10",
"11",
"12"
],
"quarters-standAlone-narrow": [
"1",
"2",
"3",
"4"
],
"field-weekday": "Day of the Week",
"dateFormatItem-yQQQ": "y QQQ",
"dateFormatItem-yMEd": "EEE, y-M-d",
"dateFormatItem-MMMEd": "E MMM d",
"eraNarrow": [
"BCE",
"CE"
],
"dateTimeFormats-appendItem-Day-Of-Week": "{0} {1}",
"dateFormat-long": "y MMMM d",
"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, y MMMM dd",
"dateFormatItem-Md": "M-d",
"dayPeriods-format-abbr-am": "AM",
"dateTimeFormats-appendItem-Second": "{0} ({2}: {1})",
"field-era": "Era",
"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",
"field-year": "Year",
"dateFormatItem-yMMM": "y MMM",
"dateFormatItem-yQ": "y Q",
"dateTimeFormats-appendItem-Era": "{0} {1}",
"field-hour": "Hour",
"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})",
"field-day-relative+0": "Today",
"field-day-relative+1": "Tomorrow",
"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": [
"BCE",
"CE"
],
"field-minute": "Minute",
"field-dayperiod": "Dayperiod",
"days-standAlone-abbr": [
"1",
"2",
"3",
"4",
"5",
"6",
"7"
],
"dateFormatItem-d": "d",
"dateFormatItem-ms": "mm:ss",
"quarters-format-narrow": [
"1",
"2",
"3",
"4"
],
"field-day-relative+-1": "Yesterday",
"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}",
"field-day": "Day",
"days-format-wide": [
"1",
"2",
"3",
"4",
"5",
"6",
"7"
],
"field-zone": "Zone",
"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": [
"BCE",
"CE"
],
"days-format-narrow": [
"1",
"2",
"3",
"4",
"5",
"6",
"7"
],
"days-standAlone-narrow": [
"1",
"2",
"3",
"4",
"5",
"6",
"7"
],
"dateFormatItem-MMM": "LLL",
"field-month": "Month",
"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": "yyyy-MM-dd",
"field-second": "Second",
"dateFormatItem-yMMMEd": "EEE, y MMM d",
"dateTimeFormats-appendItem-Timezone": "{0} {1}",
"field-week": "Week",
"dateFormat-medium": "y MMM d",
"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,
"ca": true,
"cs": true,
"da": true,
"de": true,
"el": true,
"en": true,
"en-au": true,
"en-ca": true,
"en-gb": true,
"es": true,
"fi": true,
"fr": true,
"fr-ch": true,
"he": true,
"hu": true,
"it": true,
"ja": true,
"ko": true,
"nb": true,
"nl": true,
"pl": true,
"pt": true,
"pt-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
{
"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
{
"field-weekday": "יום בשבוע",
"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": "HH:mm",
"quarters-format-wide": [
"רבעון 1",
"רבעון 2",
"רבעון 3",
"רבעון 4"
],
"timeFormat-long": "HH:mm:ss z",
"field-year": "שנה",
"dateFormatItem-yMMM": "MMM y",
"dateFormatItem-yQ": "yyyy Q",
"dateFormatItem-yyyyMMMM": "MMMM y",
"field-hour": "שעה",
"dateFormatItem-MMdd": "dd/MM",
"months-format-abbr": [
"ינו",
"פבר",
"מרס",
"אפר",
"מאי",
"יונ",
"יול",
"אוג",
"ספט",
"אוק",
"נוב",
"דצמ"
],
"dateFormatItem-yyQ": "Q yy",
"timeFormat-full": "HH:mm:ss 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-M": "L",
"days-standAlone-wide": [
"יום ראשון",
"יום שני",
"יום שלישי",
"יום רביעי",
"יום חמישי",
"יום שישי",
"יום שבת"
],
"dateFormatItem-MMMMd": "d בMMMM",
"dateFormatItem-yyMMM": "MMM yyyy",
"timeFormat-medium": "HH:mm:ss",
"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, M-d",
"dateFormatItem-yMMMM": "MMMM y",
"field-day": "יום",
"days-format-wide": [
"יום ראשון",
"יום שני",
"יום שלישי",
"יום רביעי",
"יום חמישי",
"יום שישי",
"יום שבת"
],
"field-zone": "אזור",
"dateFormatItem-yyyyMM": "MM/yyyy",
"dateFormatItem-y": "y",
"dateFormatItem-yyMM": "MM/yy",
"dateFormatItem-hm": "h:mm a",
"days-format-abbr": [
"יום א׳",
"יום ב׳",
"יום ג׳",
"יום ד׳",
"יום ה׳",
"יום ו׳",
"שבת"
],
"eraNames": [
"לפני הספירה",
"לספירה"
],
"days-format-narrow": [
"א",
"ב",
"ג",
"ד",
"ה",
"ו",
"ש"
],
"field-month": "חודש",
"days-standAlone-narrow": [
"א",
"ב",
"ג",
"ד",
"ה",
"ו",
"ש"
],
"dateFormatItem-MMM": "LLL",
"dayPeriods-format-wide-am": "לפנה״צ",
"dateFormatItem-MMMMEd": "E, d בMMMM",
"dateFormat-short": "dd/MM/yy",
"field-second": "שנייה",
"dateFormatItem-yMMMEd": "EEE, d בMMM y",
"dateFormatItem-Ed": "E ה-d",
"field-week": "שבוע",
"dateFormat-medium": "d בMMM yyyy",
"dateFormatItem-mmss": "mm:ss",
"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
{
"dateFormat-medium": "dd/MM/yyyy",
"dateFormatItem-MMMEd": "E, d בMMM",
"dateFormatItem-yMEd": "EEE, d.M.yyyy",
"eraNarrow": [
"לבה״ע"
],
"dateFormatItem-Md": "d/M",
"months-standAlone-wide": [
"תשרי",
"חשון",
"כסלו",
"טבת",
"שבט",
"אדר א׳",
"אדר",
"ניסן",
"אייר",
"סיון",
"תמוז",
"אב",
"אלול"
],
"months-format-wide-leap": "אדר ב׳",
"dateFormatItem-EEEd": "EEE ה-d",
"eraNames": [
"לבה״ע"
],
"days-standAlone-narrow": [
"א",
"ב",
"ג",
"ד",
"ה",
"ו",
"ש"
],
"dateFormatItem-MMMMEd": "E, d בMMMM",
"dayPeriods-format-wide-pm": "אחה״צ",
"months-standAlone-abbr": [
"תשרי",
"חשון",
"כסלו",
"טבת",
"שבט",
"אדר א׳",
"אדר",
"ניסן",
"אייר",
"סיון",
"תמוז",
"אב",
"אלול"
],
"dayPeriods-format-wide-am": "לפנה״צ",
"dateFormat-long": "d בMMMM y",
"dateFormat-short": "dd/MM/yy",
"dateFormatItem-yMMMEd": "EEE, d בMMM y",
"months-format-wide": [
"תשרי",
"חשון",
"כסלו",
"טבת",
"שבט",
"אדר א׳",
"אדר",
"ניסן",
"אייר",
"סיון",
"תמוז",
"אב",
"אלול"
],
"dateFormatItem-yM": "M.yyyy",
"months-format-abbr": [
"תשרי",
"חשון",
"כסלו",
"טבת",
"שבט",
"אדר א׳",
"אדר",
"ניסן",
"אייר",
"סיון",
"תמוז",
"אב",
"אלול"
],
"eraAbbr": [
"לבה״ע"
],
"days-format-wide": [
"יום ראשון",
"יום שני",
"יום שלישי",
"יום רביעי",
"יום חמישי",
"יום שישי",
"יום שבת"
],
"dateFormatItem-yQ": "yyyy Q",
"dateFormatItem-yMMM": "MMM 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
{
"dateFormat-medium": "d בMMM yyyy",
"dateFormatItem-MMMEd": "E, d בMMM",
"dateFormatItem-yMEd": "EEE, d.M.yyyy",
"eraNarrow": [
"שנת היג׳רה"
],
"dateFormatItem-Md": "d/M",
"months-standAlone-wide": [
"מוחרם",
"ספר",
"רביע אל-אוואל",
"רביע אל-תני",
"ג׳ומדה אל-אוואל",
"ג׳ומדה אל-תני",
"רג׳אב",
"שעבאן",
"ראמדן",
"שוואל",
"זו אל-QI'DAH",
"זו אל-חיג׳ה"
],
"dateFormatItem-EEEd": "EEE ה-d",
"eraNames": [
"שנת היג׳רה"
],
"days-standAlone-narrow": [
"א",
"ב",
"ג",
"ד",
"ה",
"ו",
"ש"
],
"dayPeriods-format-wide-pm": "אחה״צ",
"months-standAlone-abbr": [
"מוחרם",
"ספר",
"רביע אל-אוואל",
"רביע אל-תני",
"ג׳ומדה אל-אוואל",
"ג׳ומדה אל-תני",
"רג׳אב",
"שעבאן",
"ראמדן",
"שוואל",
"זו אל-QI'DAH",
"זו אל-חיג׳ה"
],
"dayPeriods-format-wide-am": "לפנה״צ",
"dateFormat-long": "d בMMMM y",
"dateFormat-short": "dd/MM/yy",
"dateFormatItem-yMMMEd": "EEE, d בMMM y",
"months-format-wide": [
"מוחרם",
"ספר",
"רביע אל-אוואל",
"רביע אל-תני",
"ג׳ומדה אל-אוואל",
"ג׳ומדה אל-תני",
"רג׳אב",
"שעבאן",
"ראמדן",
"שוואל",
"זו אל-QI'DAH",
"זו אל-חיג׳ה"
],
"dateFormatItem-yM": "M.yyyy",
"months-format-abbr": [
"מוחרם",
"ספר",
"רביע אל-אוואל",
"רביע אל-תני",
"ג׳ומדה אל-אוואל",
"ג׳ומדה אל-תני",
"רג׳אב",
"שעבאן",
"ראמדן",
"שוואל",
"זו אל-QI'DAH",
"זו אל-חיג׳ה"
],
"eraAbbr": [
"שנת היג׳רה"
],
"days-format-wide": [
"יום ראשון",
"יום שני",
"יום שלישי",
"יום רביעי",
"יום חמישי",
"יום שישי",
"יום שבת"
],
"dateFormatItem-yQ": "yyyy Q",
"dateFormatItem-yMMM": "MMM 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",
"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
{
"months-format-narrow": [
"Tishri",
"Heshvan",
"Kislev",
"Tevet",
"Shevat",
"Adar I",
"Adar",
"Nisan",
"Iyar",
"Sivan",
"Tamuz",
"Av",
"Elul"
],
"quarters-standAlone-narrow": [
"1",
"2",
"3",
"4"
],
"dateFormatItem-yQQQ": "y QQQ",
"months-standAlone-narrow-leap": "Adar II",
"dateFormatItem-yMEd": "EEE, y-M-d",
"dateFormatItem-MMMEd": "E MMM d",
"eraNarrow": [
"AM"
],
"dateTimeFormats-appendItem-Day-Of-Week": "{0} {1}",
"dateFormat-long": "y MMMM d",
"months-format-wide": [
"Tishri",
"Heshvan",
"Kislev",
"Tevet",
"Shevat",
"Adar I",
"Adar",
"Nisan",
"Iyar",
"Sivan",
"Tamuz",
"Av",
"Elul"
],
"dateTimeFormat-medium": "{1} {0}",
"dateFormatItem-EEEd": "d EEE",
"dayPeriods-format-wide-pm": "PM",
"dateFormat-full": "EEEE, y MMMM dd",
"dateFormatItem-Md": "M-d",
"dayPeriods-format-abbr-am": "AM",
"dateTimeFormats-appendItem-Second": "{0} ({2}: {1})",
"dateFormatItem-yM": "y-M",
"months-standAlone-wide": [
"Tishri",
"Heshvan",
"Kislev",
"Tevet",
"Shevat",
"Adar I",
"Adar",
"Nisan",
"Iyar",
"Sivan",
"Tamuz",
"Av",
"Elul"
],
"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-leap": "Adar II",
"months-format-abbr": [
"Tishri",
"Heshvan",
"Kislev",
"Tevet",
"Shevat",
"Adar I",
"Adar",
"Nisan",
"Iyar",
"Sivan",
"Tamuz",
"Av",
"Elul"
],
"timeFormat-full": "HH:mm:ss zzzz",
"dateTimeFormats-appendItem-Week": "{0} ({2}: {1})",
"dateFormatItem-H": "HH",
"months-standAlone-abbr": [
"Tishri",
"Heshvan",
"Kislev",
"Tevet",
"Shevat",
"Adar I",
"Adar",
"Nisan",
"Iyar",
"Sivan",
"Tamuz",
"Av",
"Elul"
],
"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"
],
"months-standAlone-wide-leap": "Adar II",
"timeFormat-medium": "HH:mm:ss",
"dateFormatItem-Hm": "HH:mm",
"quarters-standAlone-abbr": [
"Q1",
"Q2",
"Q3",
"Q4"
],
"months-format-narrow-leap": "Adar II",
"eraAbbr": [
"AM"
],
"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"
],
"months-standAlone-abbr-leap": "Adar II",
"dateTimeFormats-appendItem-Day": "{0} ({2}: {1})",
"dateFormatItem-y": "y",
"months-standAlone-narrow": [
"Tishri",
"Heshvan",
"Kislev",
"Tevet",
"Shevat",
"Adar I",
"Adar",
"Nisan",
"Iyar",
"Sivan",
"Tamuz",
"Av",
"Elul"
],
"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": [
"AM"
],
"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": "yyyy-MM-dd",
"dateFormatItem-yMMMEd": "EEE, y MMM d",
"dateTimeFormats-appendItem-Timezone": "{0} {1}",
"dateFormat-medium": "y MMM d",
"dayPeriods-format-narrow-pm": "PM",
"dateTimeFormat-short": "{1} {0}",
"dateFormatItem-Hms": "HH:mm:ss",
"dateFormatItem-hms": "h:mm:ss a",
"months-format-wide-leap": "Adar II"
}
//end v1.x content
,
"ar": true,
"el": true,
"fi": true,
"fr": true,
"he": true,
"hu": true,
"nl": true,
"ru": true,
"sv": true,
"th": true,
"tr": true
});
\ No newline at end of file
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
define(
//begin v1.x content
{
"field-dayperiod": "napszak",
"dayPeriods-format-wide-pm": "du.",
"field-minute": "perc",
"eraNames": [
"időszámításunk előtt",
"időszámításunk szerint"
],
"dateFormatItem-MMMEd": "MMM d., E",
"field-day-relative+-1": "tegnap",
"field-weekday": "hét napja",
"field-day-relative+-2": "tegnapelőtt",
"dateFormatItem-MMdd": "MM.dd.",
"field-day-relative+-3": "három nappal ezelőtt",
"days-standAlone-wide": [
"vasárnap",
"hétfő",
"kedd",
"szerda",
"csütörtök",
"péntek",
"szombat"
],
"dateFormatItem-MMM": "LLL",
"months-standAlone-narrow": [
"J",
"F",
"M",
"Á",
"M",
"J",
"J",
"A",
"Sz",
"O",
"N",
"D"
],
"field-era": "éra",
"field-hour": "óra",
"dayPeriods-format-wide-am": "de.",
"quarters-standAlone-abbr": [
"N1",
"N2",
"N3",
"N4"
],
"timeFormat-full": "H:mm:ss zzzz",
"months-standAlone-abbr": [
"jan.",
"febr.",
"márc.",
"ápr.",
"máj.",
"jún.",
"júl.",
"aug.",
"szept.",
"okt.",
"nov.",
"dec."
],
"dateFormatItem-Ed": "d., E",
"field-day-relative+0": "ma",
"field-day-relative+1": "holnap",
"days-standAlone-narrow": [
"V",
"H",
"K",
"Sz",
"Cs",
"P",
"Sz"
],
"eraAbbr": [
"i. e.",
"i. sz."
],
"field-day-relative+2": "holnapután",
"field-day-relative+3": "három nap múlva",
"dateFormatItem-yyyyMM": "yyyy.MM",
"dateFormatItem-yyyyMMMM": "y. MMMM",
"dateFormat-long": "y. MMMM d.",
"timeFormat-medium": "H:mm:ss",
"field-zone": "zóna",
"dateFormatItem-Hm": "H:mm",
"dateFormat-medium": "yyyy.MM.dd.",
"dateFormatItem-Hms": "H:mm:ss",
"quarters-standAlone-wide": [
"I. negyedév",
"II. negyedév",
"III. negyedév",
"IV. negyedév"
],
"field-year": "év",
"field-week": "hét",
"months-standAlone-wide": [
"január",
"február",
"március",
"április",
"május",
"június",
"július",
"augusztus",
"szeptember",
"október",
"november",
"december"
],
"dateFormatItem-MMMd": "MMM d.",
"dateFormatItem-yyQ": "yy/Q",
"timeFormat-long": "H:mm:ss z",
"months-format-abbr": [
"jan.",
"febr.",
"márc.",
"ápr.",
"máj.",
"jún.",
"júl.",
"aug.",
"szept.",
"okt.",
"nov.",
"dec."
],
"timeFormat-short": "H:mm",
"dateFormatItem-H": "H",
"field-month": "hónap",
"dateFormatItem-MMMMd": "MMMM d.",
"quarters-format-abbr": [
"N1",
"N2",
"N3",
"N4"
],
"days-format-abbr": [
"V",
"H",
"K",
"Sze",
"Cs",
"P",
"Szo"
],
"dateFormatItem-mmss": "mm:ss",
"dateFormatItem-M": "L",
"days-format-narrow": [
"V",
"H",
"K",
"Sz",
"Cs",
"P",
"Sz"
],
"field-second": "másodperc",
"field-day": "nap",
"dateFormatItem-MEd": "M. d., E",
"months-format-narrow": [
"J",
"F",
"M",
"Á",
"M",
"J",
"J",
"A",
"Sz",
"O",
"N",
"D"
],
"days-standAlone-abbr": [
"V",
"H",
"K",
"Sze",
"Cs",
"P",
"Szo"
],
"dateFormat-short": "yyyy.MM.dd.",
"dateFormatItem-yMMMEd": "y. MMM d., E",
"dateFormat-full": "y. MMMM d., EEEE",
"dateFormatItem-Md": "M. d.",
"dateFormatItem-yMEd": "yyyy.MM.dd., E",
"months-format-wide": [
"január",
"február",
"március",
"április",
"május",
"június",
"július",
"augusztus",
"szeptember",
"október",
"november",
"december"
],
"dateFormatItem-d": "d",
"quarters-format-wide": [
"I. negyedév",
"II. negyedév",
"III. negyedév",
"IV. negyedév"
],
"days-format-wide": [
"vasárnap",
"hétfő",
"kedd",
"szerda",
"csütörtök",
"péntek",
"szombat"
],
"eraNarrow": [
"i. e.",
"i. sz."
]
}
//end v1.x content
);
\ No newline at end of file
define(
//begin v1.x content
{
"group": " ",
"percentSign": "%",
"exponential": "E",
"scientificFormat": "#E0",
"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
{
"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": [
"AH"
],
"dateTimeFormats-appendItem-Day-Of-Week": "{0} {1}",
"dateFormat-long": "y MMMM d",
"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"
],
"dateTimeFormat-medium": "{1} {0}",
"dateFormatItem-EEEd": "d EEE",
"dayPeriods-format-wide-pm": "PM",
"dateFormat-full": "EEEE, y MMMM dd",
"dateFormatItem-Md": "M-d",
"dayPeriods-format-abbr-am": "AM",
"dateTimeFormats-appendItem-Second": "{0} ({2}: {1})",
"dateFormatItem-yM": "y-M",
"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"
],
"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": [
"Muh.",
"Saf.",
"Rab. I",
"Rab. II",
"Jum. I",
"Jum. II",
"Raj.",
"Sha.",
"Ram.",
"Shaw.",
"Dhuʻl-Q.",
"Dhuʻl-H."
],
"timeFormat-full": "HH:mm:ss zzzz",
"dateTimeFormats-appendItem-Week": "{0} ({2}: {1})",
"dateFormatItem-H": "HH",
"months-standAlone-abbr": [
"Muh.",
"Saf.",
"Rab. I",
"Rab. II",
"Jum. I",
"Jum. II",
"Raj.",
"Sha.",
"Ram.",
"Shaw.",
"Dhuʻl-Q.",
"Dhuʻl-H."
],
"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": [
"AH"
],
"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": [
"AH"
],
"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": "yyyy-MM-dd",
"dateFormatItem-yMMMEd": "EEE, y MMM d",
"dateTimeFormats-appendItem-Timezone": "{0} {1}",
"dateFormat-medium": "y MMM d",
"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,
"en": true,
"en-gb": true,
"es": true,
"fi": true,
"fr": true,
"he": true,
"hu": true,
"it": true,
"nb": true,
"nl": true,
"pl": true,
"pt": true,
"pt-pt": 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": "Dollaro di Hong Kong",
"CHF_displayName": "Franco Svizzero",
"CAD_displayName": "Dollaro Canadese",
"CNY_displayName": "Renmimbi Cinese",
"AUD_displayName": "Dollaro Australiano",
"JPY_displayName": "Yen Giapponese",
"USD_displayName": "Dollaro Statunitense",
"GBP_displayName": "Sterlina Inglese",
"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",
"G",
"L",
"A",
"S",
"O",
"N",
"D"
],
"field-weekday": "giorno della settimana",
"dateFormatItem-yyQQQQ": "QQQQ yy",
"dateFormatItem-yQQQ": "QQQ y",
"dateFormatItem-yMEd": "EEE, d/M/y",
"dateFormatItem-MMMEd": "EEE d MMM",
"eraNarrow": [
"aC",
"dC"
],
"dateFormat-long": "dd MMMM y",
"months-format-wide": [
"gennaio",
"febbraio",
"marzo",
"aprile",
"maggio",
"giugno",
"luglio",
"agosto",
"settembre",
"ottobre",
"novembre",
"dicembre"
],
"dayPeriods-format-wide-pm": "p.",
"dateFormat-full": "EEEE d MMMM y",
"dateFormatItem-Md": "d/M",
"field-era": "era",
"dateFormatItem-yM": "M/y",
"months-standAlone-wide": [
"Gennaio",
"Febbraio",
"Marzo",
"Aprile",
"Maggio",
"Giugno",
"Luglio",
"Agosto",
"Settembre",
"Ottobre",
"Novembre",
"Dicembre"
],
"timeFormat-short": "HH:mm",
"quarters-format-wide": [
"1o trimestre",
"2o trimestre",
"3o trimestre",
"4o trimestre"
],
"timeFormat-long": "HH:mm:ss z",
"field-year": "anno",
"dateFormatItem-yMMM": "MMM y",
"dateFormatItem-yQ": "Q-yyyy",
"dateFormatItem-yyyyMMMM": "MMMM y",
"field-hour": "ora",
"dateFormatItem-MMdd": "dd/MM",
"months-format-abbr": [
"gen",
"feb",
"mar",
"apr",
"mag",
"giu",
"lug",
"ago",
"set",
"ott",
"nov",
"dic"
],
"dateFormatItem-yyQ": "Q yy",
"timeFormat-full": "HH:mm:ss zzzz",
"field-day-relative+0": "oggi",
"field-day-relative+1": "domani",
"field-day-relative+2": "dopodomani",
"field-day-relative+3": "tra tre giorni",
"months-standAlone-abbr": [
"gen",
"feb",
"mar",
"apr",
"mag",
"giu",
"lug",
"ago",
"set",
"ott",
"nov",
"dic"
],
"quarters-format-abbr": [
"T1",
"T2",
"T3",
"T4"
],
"quarters-standAlone-wide": [
"1o trimestre",
"2o trimestre",
"3o trimestre",
"4o trimestre"
],
"dateFormatItem-M": "L",
"days-standAlone-wide": [
"Domenica",
"Lunedì",
"Martedì",
"Mercoledì",
"Giovedì",
"Venerdì",
"Sabato"
],
"timeFormat-medium": "HH:mm:ss",
"dateFormatItem-Hm": "HH:mm",
"quarters-standAlone-abbr": [
"T1",
"T2",
"T3",
"T4"
],
"eraAbbr": [
"aC",
"dC"
],
"field-minute": "minuto",
"field-dayperiod": "periodo del giorno",
"days-standAlone-abbr": [
"dom",
"lun",
"mar",
"mer",
"gio",
"ven",
"sab"
],
"dateFormatItem-d": "d",
"dateFormatItem-ms": "mm:ss",
"field-day-relative+-1": "ieri",
"dateFormatItem-h": "hh a",
"field-day-relative+-2": "l'altro ieri",
"field-day-relative+-3": "tre giorni fa",
"dateFormatItem-MMMd": "d MMM",
"dateFormatItem-MEd": "EEE d/M",
"field-day": "giorno",
"days-format-wide": [
"domenica",
"lunedì",
"martedì",
"mercoledì",
"giovedì",
"venerdì",
"sabato"
],
"field-zone": "zona",
"dateFormatItem-y": "y",
"months-standAlone-narrow": [
"G",
"F",
"M",
"A",
"M",
"G",
"L",
"A",
"S",
"O",
"N",
"D"
],
"dateFormatItem-yyMM": "MM/yy",
"dateFormatItem-hm": "hh:mm a",
"days-format-abbr": [
"dom",
"lun",
"mar",
"mer",
"gio",
"ven",
"sab"
],
"eraNames": [
"a.C.",
"d.C"
],
"days-format-narrow": [
"D",
"L",
"M",
"M",
"G",
"V",
"S"
],
"field-month": "mese",
"days-standAlone-narrow": [
"D",
"L",
"M",
"M",
"G",
"V",
"S"
],
"dateFormatItem-MMM": "LLL",
"dayPeriods-format-wide-am": "m.",
"dateFormatItem-MMMMdd": "dd MMMM",
"dateFormat-short": "dd/MM/yy",
"field-second": "secondo",
"dateFormatItem-yMMMEd": "EEE d MMM y",
"dateFormatItem-Ed": "E d",
"field-week": "settimana",
"dateFormat-medium": "dd/MMM/y",
"dateFormatItem-Hms": "HH:mm:ss",
"dateFormatItem-hms": "hh:mm:ss a"
}
//end v1.x content
);
\ No newline at end of file
define(
//begin v1.x content
{
"decimalFormat": "#,##0.###",
"group": ".",
"scientificFormat": "#E0",
"percentFormat": "#,##0%",
"currencyFormat": "¤ #,##0.00",
"decimal": ","
}
//end v1.x content
);
\ No newline at end of file
define(
//begin v1.x content
{
"HKD_displayName": "香港ドル",
"CHF_displayName": "スイス フラン",
"JPY_symbol": "",
"CAD_displayName": "カナダ ドル",
"CNY_displayName": "中国人民元",
"USD_symbol": "$",
"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
{
"field-weekday": "曜日",
"dateFormatItem-yQQQ": "yQQQ",
"dateFormatItem-yMEd": "y/M/d(EEE)",
"dateFormatItem-MMMEd": "M月d日(E)",
"eraNarrow": [
"BC",
"AD"
],
"dateFormat-long": "y年M月d日",
"months-format-wide": [
"1月",
"2月",
"3月",
"4月",
"5月",
"6月",
"7月",
"8月",
"9月",
"10月",
"11月",
"12月"
],
"dateTimeFormat-medium": "{1} {0}",
"dayPeriods-format-wide-pm": "午後",
"dateFormat-full": "y年M月d日EEEE",
"dateFormatItem-Md": "M/d",
"dateFormatItem-yMd": "y/M/d",
"field-era": "時代",
"dateFormatItem-yM": "y/M",
"months-standAlone-wide": [
"1月",
"2月",
"3月",
"4月",
"5月",
"6月",
"7月",
"8月",
"9月",
"10月",
"11月",
"12月"
],
"timeFormat-short": "H:mm",
"quarters-format-wide": [
"第1四半期",
"第2四半期",
"第3四半期",
"第4四半期"
],
"timeFormat-long": "H:mm:ss z",
"field-year": "",
"dateFormatItem-yMMM": "y年M月",
"dateFormatItem-yQ": "y/Q",
"field-hour": "",
"dateFormatItem-MMdd": "MM/dd",
"months-format-abbr": [
"1月",
"2月",
"3月",
"4月",
"5月",
"6月",
"7月",
"8月",
"9月",
"10月",
"11月",
"12月"
],
"dateFormatItem-yyQ": "yy/Q",
"timeFormat-full": "H時mm分ss秒 zzzz",
"field-day-relative+0": "今日",
"field-day-relative+1": "明日",
"field-day-relative+2": "明後日",
"dateFormatItem-H": "H時",
"field-day-relative+3": "3日後",
"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": [
"第1四半期",
"第2四半期",
"第3四半期",
"第4四半期"
],
"dateFormatItem-M": "M月",
"days-standAlone-wide": [
"日曜日",
"月曜日",
"火曜日",
"水曜日",
"木曜日",
"金曜日",
"土曜日"
],
"dateFormatItem-yyMMM": "y年M月",
"timeFormat-medium": "H:mm:ss",
"dateFormatItem-Hm": "H:mm",
"eraAbbr": [
"BC",
"AD"
],
"field-minute": "",
"field-dayperiod": "午前/午後",
"days-standAlone-abbr": [
"",
"",
"",
"",
"",
"",
""
],
"dateFormatItem-d": "d日",
"dateFormatItem-ms": "mm:ss",
"field-day-relative+-1": "昨日",
"dateFormatItem-h": "ah時",
"dateTimeFormat-long": "{1}{0}",
"field-day-relative+-2": "一昨日",
"field-day-relative+-3": "3日前",
"dateFormatItem-MMMd": "M月d日",
"dateFormatItem-MEd": "M/d(E)",
"dateTimeFormat-full": "{1}{0}",
"field-day": "",
"days-format-wide": [
"日曜日",
"月曜日",
"火曜日",
"水曜日",
"木曜日",
"金曜日",
"土曜日"
],
"field-zone": "タイムゾーン",
"dateFormatItem-yyyyMM": "yyyy/MM",
"dateFormatItem-y": "y年",
"months-standAlone-narrow": [
"1",
"2",
"3",
"4",
"5",
"6",
"7",
"8",
"9",
"10",
"11",
"12"
],
"dateFormatItem-hm": "ah:mm",
"dateFormatItem-GGGGyMd": "GGGGy年M月d日",
"days-format-abbr": [
"",
"",
"",
"",
"",
"",
""
],
"dateFormatItem-yMMMd": "y年M月d日",
"eraNames": [
"紀元前",
"西暦"
],
"days-format-narrow": [
"",
"",
"",
"",
"",
"",
""
],
"field-month": "",
"days-standAlone-narrow": [
"",
"",
"",
"",
"",
"",
""
],
"dateFormatItem-MMM": "LLL",
"dayPeriods-format-wide-am": "午前",
"dateFormat-short": "yy/MM/dd",
"field-second": "",
"dateFormatItem-yMMMEd": "y年M月d日(EEE)",
"dateFormatItem-Ed": "d日(EEE)",
"field-week": "",
"dateFormat-medium": "yyyy/MM/dd",
"dateTimeFormat-short": "{1} {0}",
"dateFormatItem-Hms": "H:mm:ss",
"dateFormatItem-hms": "ah:mm:ss",
"dateFormatItem-yyyy": "y年"
}
//end v1.x content
);
\ No newline at end of file
define(
//begin v1.x content
{
"decimalFormat": "#,##0.###",
"group": ",",
"scientificFormat": "#E0",
"percentFormat": "#,##0%",
"currencyFormat": "¤#,##0.00",
"decimal": "."
}
//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": [
"1월",
"2월",
"3월",
"4월",
"5월",
"6월",
"7월",
"8월",
"9월",
"10월",
"11월",
"12월"
],
"field-weekday": "요일",
"dateFormatItem-yQQQ": "y년 QQQ",
"dateFormatItem-yMEd": "yyyy. M. d. EEE",
"dateFormatItem-MMMEd": "MMM d일 (E)",
"eraNarrow": [
"기원전",
"서기"
],
"dateFormat-long": "y년 M월 d일",
"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": "오후",
"dateFormat-full": "y년 M월 d일 EEEE",
"dateFormatItem-Md": "M. d.",
"field-era": "연호",
"dateFormatItem-yM": "yyyy. M.",
"months-standAlone-wide": [
"1월",
"2월",
"3월",
"4월",
"5월",
"6월",
"7월",
"8월",
"9월",
"10월",
"11월",
"12월"
],
"timeFormat-short": "a h:mm",
"quarters-format-wide": [
"제 1/4분기",
"제 2/4분기",
"제 3/4분기",
"제 4/4분기"
],
"timeFormat-long": "a h시 m분 s초 z",
"field-year": "",
"dateFormatItem-yMMM": "y년 MMM",
"dateFormatItem-yQ": "y년 Q분기",
"field-hour": "",
"dateFormatItem-MMdd": "MM. dd",
"months-format-abbr": [
"1월",
"2월",
"3월",
"4월",
"5월",
"6월",
"7월",
"8월",
"9월",
"10월",
"11월",
"12월"
],
"dateFormatItem-yyQ": "yy년 Q분기",
"timeFormat-full": "a h시 m분 s초 zzzz",
"field-day-relative+0": "오늘",
"field-day-relative+1": "내일",
"field-day-relative+2": "모레",
"dateFormatItem-H": "H시",
"field-day-relative+3": "3일후",
"months-standAlone-abbr": [
"1월",
"2월",
"3월",
"4월",
"5월",
"6월",
"7월",
"8월",
"9월",
"10월",
"11월",
"12월"
],
"quarters-format-abbr": [
"1분기",
"2분기",
"3분기",
"4분기"
],
"quarters-standAlone-wide": [
"제 1/4분기",
"제 2/4분기",
"제 3/4분기",
"제 4/4분기"
],
"dateFormatItem-HHmmss": "HH:mm:ss",
"dateFormatItem-M": "M월",
"days-standAlone-wide": [
"일요일",
"월요일",
"화요일",
"수요일",
"목요일",
"금요일",
"토요일"
],
"dateFormatItem-yyMMM": "yy년 MMM",
"timeFormat-medium": "a h:mm:ss",
"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": "어제",
"dateFormatItem-h": "a h시",
"dateTimeFormat-long": "{1} {0}",
"field-day-relative+-2": "그저께",
"field-day-relative+-3": "그끄제",
"dateFormatItem-MMMd": "MMM d일",
"dateFormatItem-MEd": "M. d. (E)",
"dateTimeFormat-full": "{1} {0}",
"field-day": "",
"days-format-wide": [
"일요일",
"월요일",
"화요일",
"수요일",
"목요일",
"금요일",
"토요일"
],
"field-zone": "시간대",
"dateFormatItem-yyyyMM": "yyyy. MM",
"dateFormatItem-y": "y년",
"months-standAlone-narrow": [
"1월",
"2월",
"3월",
"4월",
"5월",
"6월",
"7월",
"8월",
"9월",
"10월",
"11월",
"12월"
],
"dateFormatItem-yyMM": "YY. M.",
"dateFormatItem-hm": "a h:mm",
"days-format-abbr": [
"",
"",
"",
"",
"",
"",
""
],
"dateFormatItem-yMMMd": "y년 MMM d일",
"eraNames": [
"서력기원전",
"서력기원"
],
"days-format-narrow": [
"",
"",
"",
"",
"",
"",
""
],
"field-month": "",
"days-standAlone-narrow": [
"",
"",
"",
"",
"",
"",
""
],
"dateFormatItem-MMM": "LLL",
"dayPeriods-format-wide-am": "오전",
"dateFormat-short": "yy. M. d.",
"field-second": "",
"dateFormatItem-yMMMEd": "y년 MMM d일 EEE",
"dateFormatItem-Ed": "d일 (E)",
"field-week": "",
"dateFormat-medium": "yyyy. M. d.",
"dateFormatItem-mmss": "mm:ss",
"dateTimeFormat-short": "{1} {0}",
"dateFormatItem-Hms": "H시 m분 s초",
"dateFormatItem-hms": "a h:mm:ss"
}
//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": "Hongkong-dollar",
"CHF_displayName": "sveitsiske franc",
"CHF_symbol": "CHF",
"JPY_symbol": "JPY",
"CAD_displayName": "kanadiske dollar",
"CNY_displayName": "kinesiske yuan renminbi",
"USD_symbol": "USD",
"AUD_displayName": "australske dollar",
"JPY_displayName": "japanske yen",
"CAD_symbol": "CAD",
"USD_displayName": "amerikanske dollar",
"EUR_symbol": "EUR",
"CNY_symbol": "CNY",
"GBP_displayName": "britiske pund sterling",
"GBP_symbol": "GBP",
"AUD_symbol": "AUD",
"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": "ukedag",
"dateFormatItem-yyQQQQ": "QQQQ yy",
"dateFormatItem-yQQQ": "QQQ y",
"dateFormatItem-yMEd": "EEE d.M.yyyy",
"dateFormatItem-MMMEd": "E d. MMM",
"eraNarrow": [
"f.Kr.",
"e.Kr."
],
"dateFormat-long": "d. MMMM y",
"months-format-wide": [
"januar",
"februar",
"mars",
"april",
"mai",
"juni",
"juli",
"august",
"september",
"oktober",
"november",
"desember"
],
"dateFormatItem-EEEd": "EEE d.",
"dayPeriods-format-wide-pm": "PM",
"dateFormat-full": "EEEE d. MMMM y",
"dateFormatItem-Md": "d.M.",
"field-era": "tidsalder",
"dateFormatItem-yM": "M y",
"months-standAlone-wide": [
"januar",
"februar",
"mars",
"april",
"mai",
"juni",
"juli",
"august",
"september",
"oktober",
"november",
"desember"
],
"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",
"dateFormatItem-yyyyMMMM": "MMMM y",
"field-hour": "time",
"dateFormatItem-MMdd": "dd.MM",
"months-format-abbr": [
"jan.",
"feb.",
"mars",
"apr.",
"mai",
"juni",
"juli",
"aug.",
"sep.",
"okt.",
"nov.",
"des."
],
"dateFormatItem-yyQ": "Q yy",
"timeFormat-full": "'kl'. HH:mm:ss zzzz",
"field-day-relative+0": "i dag",
"field-day-relative+1": "i morgen",
"field-day-relative+2": "i overmorgen",
"field-day-relative+3": "i overovermorgen",
"months-standAlone-abbr": [
"jan.",
"feb.",
"mars",
"apr.",
"mai",
"juni",
"juli",
"aug.",
"sep.",
"okt.",
"nov.",
"des."
],
"quarters-format-abbr": [
"K1",
"K2",
"K3",
"K4"
],
"quarters-standAlone-wide": [
"1. kvartal",
"2. kvartal",
"3. kvartal",
"4. kvartal"
],
"dateFormatItem-M": "L",
"days-standAlone-wide": [
"søndag",
"mandag",
"tirsdag",
"onsdag",
"torsdag",
"fredag",
"lørdag"
],
"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": "minutt",
"field-dayperiod": "AM/PM",
"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": "sone",
"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": "LLL",
"dayPeriods-format-wide-am": "AM",
"dateFormat-short": "dd.MM.yy",
"field-second": "sekund",
"dateFormatItem-yMMMEd": "EEE d. MMM y",
"field-week": "uke",
"dateFormat-medium": "d. MMM y",
"dateFormatItem-Hms": "HH: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": "Hongkongse dollar",
"CHF_displayName": "Zwitserse franc",
"CAD_displayName": "Canadese dollar",
"CNY_displayName": "Chinese yuan renminbi",
"AUD_displayName": "Australische dollar",
"JPY_displayName": "Japanse yen",
"USD_displayName": "Amerikaanse dollar",
"GBP_displayName": "Brits pond 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": "Dag van de week",
"dateFormatItem-yyQQQQ": "QQQQ yy",
"dateFormatItem-yQQQ": "QQQ y",
"dateFormatItem-yMEd": "EEE d-M-y",
"dateFormatItem-MMMEd": "E d MMM",
"eraNarrow": [
"v. Chr.",
"n. Chr."
],
"dateFormat-long": "d MMMM y",
"months-format-wide": [
"januari",
"februari",
"maart",
"april",
"mei",
"juni",
"juli",
"augustus",
"september",
"oktober",
"november",
"december"
],
"dayPeriods-format-wide-pm": "PM",
"dateFormat-full": "EEEE d MMMM y",
"dateFormatItem-Md": "d-M",
"field-era": "Tijdperk",
"dateFormatItem-yM": "M-y",
"months-standAlone-wide": [
"januari",
"februari",
"maart",
"april",
"mei",
"juni",
"juli",
"augustus",
"september",
"oktober",
"november",
"december"
],
"timeFormat-short": "HH:mm",
"quarters-format-wide": [
"1e kwartaal",
"2e kwartaal",
"3e kwartaal",
"4e kwartaal"
],
"timeFormat-long": "HH:mm:ss z",
"field-year": "Jaar",
"dateFormatItem-yMMM": "MMM y",
"dateFormatItem-yQ": "Q yyyy",
"dateFormatItem-yyyyMMMM": "MMMM y",
"field-hour": "Uur",
"dateFormatItem-MMdd": "dd-MM",
"months-format-abbr": [
"jan.",
"feb.",
"mrt.",
"apr.",
"mei",
"jun.",
"jul.",
"aug.",
"sep.",
"okt.",
"nov.",
"dec."
],
"dateFormatItem-yyQ": "Q yy",
"timeFormat-full": "HH:mm:ss zzzz",
"field-day-relative+0": "vandaag",
"field-day-relative+1": "morgen",
"field-day-relative+2": "overmorgen",
"field-day-relative+3": "overovermorgen",
"months-standAlone-abbr": [
"jan.",
"feb.",
"mrt.",
"apr.",
"mei",
"jun.",
"jul.",
"aug.",
"sep.",
"okt.",
"nov.",
"dec."
],
"quarters-format-abbr": [
"K1",
"K2",
"K3",
"K4"
],
"quarters-standAlone-wide": [
"1e kwartaal",
"2e kwartaal",
"3e kwartaal",
"4e kwartaal"
],
"dateFormatItem-M": "L",
"days-standAlone-wide": [
"zondag",
"maandag",
"dinsdag",
"woensdag",
"donderdag",
"vrijdag",
"zaterdag"
],
"dateFormatItem-MMMMd": "d MMMM",
"dateFormatItem-yyMMM": "MMM yy",
"timeFormat-medium": "HH:mm:ss",
"dateFormatItem-Hm": "HH:mm",
"quarters-standAlone-abbr": [
"K1",
"K2",
"K3",
"K4"
],
"eraAbbr": [
"v. Chr.",
"n. Chr."
],
"field-minute": "Minuut",
"field-dayperiod": "AM/PM",
"days-standAlone-abbr": [
"zo",
"ma",
"di",
"wo",
"do",
"vr",
"za"
],
"dateFormatItem-d": "d",
"dateFormatItem-ms": "mm:ss",
"field-day-relative+-1": "gisteren",
"field-day-relative+-2": "eergisteren",
"field-day-relative+-3": "eereergisteren",
"dateFormatItem-MMMd": "d-MMM",
"dateFormatItem-MEd": "E d-M",
"field-day": "Dag",
"days-format-wide": [
"zondag",
"maandag",
"dinsdag",
"woensdag",
"donderdag",
"vrijdag",
"zaterdag"
],
"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": [
"zo",
"ma",
"di",
"wo",
"do",
"vr",
"za"
],
"eraNames": [
"Voor Christus",
"na Christus"
],
"days-format-narrow": [
"Z",
"M",
"D",
"W",
"D",
"V",
"Z"
],
"field-month": "Maand",
"days-standAlone-narrow": [
"Z",
"M",
"D",
"W",
"D",
"V",
"Z"
],
"dateFormatItem-MMM": "LLL",
"dayPeriods-format-wide-am": "AM",
"dateFormat-short": "dd-MM-yy",
"dateFormatItem-MMd": "d-MM",
"field-second": "Seconde",
"dateFormatItem-yMMMEd": "EEE d MMM y",
"dateFormatItem-Ed": "E d",
"field-week": "Week",
"dateFormat-medium": "d MMM y"
}
//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": "+"
}
//end v1.x content
);
\ No newline at end of file
define({ root:
//begin v1.x content
{
"scientificFormat": "#E0",
"currencySpacing-afterCurrency-currencyMatch": "[:letter:]",
"infinity": "",
"list": ";",
"percentSign": "%",
"minusSign": "-",
"currencySpacing-beforeCurrency-surroundingMatch": "[:digit:]",
"decimalFormat-short": "000T",
"currencySpacing-afterCurrency-insertBetween": " ",
"nan": "NaN",
"nativeZeroDigit": "0",
"plusSign": "+",
"currencySpacing-afterCurrency-surroundingMatch": "[:digit:]",
"currencySpacing-beforeCurrency-currencyMatch": "[:letter:]",
"currencyFormat": "¤ #,##0.00",
"perMille": "",
"group": ",",
"percentFormat": "#,##0%",
"decimalFormat": "#,##0.###",
"decimal": ".",
"patternDigit": "#",
"currencySpacing-beforeCurrency-insertBetween": " ",
"exponential": "E"
}
//end v1.x content
,
"ar": true,
"ca": true,
"cs": true,
"da": true,
"de": true,
"el": true,
"en": true,
"en-au": true,
"en-gb": true,
"es": true,
"fi": true,
"fr": true,
"fr-ch": true,
"he": true,
"hu": true,
"it": true,
"ja": true,
"ko": true,
"nb": true,
"nl": true,
"pl": true,
"pt": true,
"pt-pt": true,
"ro": true,
"ru": true,
"sk": true,
"sl": true,
"sv": true,
"th": true,
"tr": true,
"zh": true,
"zh-hant": true,
"zh-hk": true
});
\ No newline at end of file
define(
//begin v1.x content
{
"HKD_displayName": "dolar hongkoński",
"CHF_displayName": "frank szwajcarski",
"CAD_displayName": "dolar kanadyjski",
"CNY_displayName": "juan renminbi",
"AUD_displayName": "dolar australijski",
"JPY_displayName": "jen japoński",
"USD_displayName": "dolar amerykański ",
"GBP_displayName": "funt szterling",
"EUR_displayName": "euro"
}
//end v1.x content
);
\ No newline at end of file
define(
//begin v1.x content
{
"months-format-narrow": [
"s",
"l",
"m",
"k",
"m",
"c",
"l",
"s",
"w",
"p",
"l",
"g"
],
"field-weekday": "Dzień tygodnia",
"dateFormatItem-yQQQ": "y QQQ",
"dateFormatItem-yMEd": "EEE, d.MM.yyyy",
"dateFormatItem-MMMEd": "E, d MMM",
"eraNarrow": [
"p.n.e.",
"n.e."
],
"dayPeriods-format-wide-earlyMorning": "nad ranem",
"dayPeriods-format-wide-morning": "rano",
"dateFormat-long": "d MMMM y",
"months-format-wide": [
"stycznia",
"lutego",
"marca",
"kwietnia",
"maja",
"czerwca",
"lipca",
"sierpnia",
"września",
"października",
"listopada",
"grudnia"
],
"dayPeriods-format-wide-evening": "wieczorem",
"dayPeriods-format-wide-pm": "PM",
"dateFormat-full": "EEEE, d MMMM y",
"dateFormatItem-Md": "d.MM",
"dayPeriods-format-wide-noon": "w południe",
"field-era": "Era",
"dateFormatItem-yM": "MM.yyyy",
"months-standAlone-wide": [
"styczeń",
"luty",
"marzec",
"kwiecień",
"maj",
"czerwiec",
"lipiec",
"sierpień",
"wrzesień",
"październik",
"listopad",
"grudzień"
],
"timeFormat-short": "HH:mm",
"quarters-format-wide": [
"I kwartał",
"II kwartał",
"III kwartał",
"IV kwartał"
],
"timeFormat-long": "HH:mm:ss z",
"field-year": "Rok",
"dateFormatItem-yQ": "yyyy Q",
"dateFormatItem-yyyyMMMM": "LLLL y",
"field-hour": "Godzina",
"dateFormatItem-MMdd": "d.MM",
"months-format-abbr": [
"sty",
"lut",
"mar",
"kwi",
"maj",
"cze",
"lip",
"sie",
"wrz",
"paź",
"lis",
"gru"
],
"dateFormatItem-yyQ": "Q yy",
"timeFormat-full": "HH:mm:ss zzzz",
"field-day-relative+0": "Dzisiaj",
"field-day-relative+1": "Jutro",
"field-day-relative+2": "Pojutrze",
"field-day-relative+3": "Za trzy dni",
"months-standAlone-abbr": [
"sty",
"lut",
"mar",
"kwi",
"maj",
"cze",
"lip",
"sie",
"wrz",
"paź",
"lis",
"gru"
],
"quarters-format-abbr": [
"K1",
"K2",
"K3",
"K4"
],
"quarters-standAlone-wide": [
"I kwartał",
"II kwartał",
"III kwartał",
"IV kwartał"
],
"dateFormatItem-M": "L",
"days-standAlone-wide": [
"niedziela",
"poniedziałek",
"wtorek",
"środa",
"czwartek",
"piątek",
"sobota"
],
"dateFormatItem-MMMMd": "d MMMM",
"dateFormatItem-yyMMM": "MMM yy",
"timeFormat-medium": "HH:mm:ss",
"dateFormatItem-Hm": "HH:mm",
"quarters-standAlone-abbr": [
"1 kw.",
"2 kw.",
"3 kw.",
"4 kw."
],
"eraAbbr": [
"p.n.e.",
"n.e."
],
"field-minute": "Minuta",
"field-dayperiod": "Dayperiod",
"days-standAlone-abbr": [
"niedz.",
"pon.",
"wt.",
"śr.",
"czw.",
"pt.",
"sob."
],
"dayPeriods-format-wide-night": "w nocy",
"dateFormatItem-d": "d",
"dateFormatItem-ms": "mm:ss",
"field-day-relative+-1": "Wczoraj",
"dateFormatItem-h": "hh a",
"field-day-relative+-2": "Przedwczoraj",
"field-day-relative+-3": "Trzy dni temu",
"dateFormatItem-MMMd": "d MMM",
"dateFormatItem-MEd": "E, d.MM",
"dayPeriods-format-wide-lateMorning": "przed południem",
"dateFormatItem-yMMMM": "LLLL y",
"field-day": "Dzień",
"days-format-wide": [
"niedziela",
"poniedziałek",
"wtorek",
"środa",
"czwartek",
"piątek",
"sobota"
],
"field-zone": "Strefa",
"dateFormatItem-yyyyMM": "MM.yyyy",
"dateFormatItem-y": "y",
"months-standAlone-narrow": [
"s",
"l",
"m",
"k",
"m",
"c",
"l",
"s",
"w",
"p",
"l",
"g"
],
"dateFormatItem-hm": "hh:mm a",
"days-format-abbr": [
"niedz.",
"pon.",
"wt.",
"śr.",
"czw.",
"pt.",
"sob."
],
"eraNames": [
"p.n.e.",
"n.e."
],
"days-format-narrow": [
"N",
"P",
"W",
"Ś",
"C",
"P",
"S"
],
"field-month": "Miesiąc",
"days-standAlone-narrow": [
"N",
"P",
"W",
"Ś",
"C",
"P",
"S"
],
"dateFormatItem-MMM": "LLL",
"dayPeriods-format-wide-am": "AM",
"dateFormat-short": "dd.MM.yyyy",
"dayPeriods-format-wide-afternoon": "po południu",
"field-second": "Sekunda",
"dateFormatItem-yMMMEd": "EEE, d MMM y",
"dateFormatItem-Ed": "E, d",
"field-week": "Tydzień",
"dateFormat-medium": "d MMM y",
"dateFormatItem-Hms": "HH:mm:ss",
"dateFormatItem-hms": "hh: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
{
"quarters-standAlone-wide": [
"1.º trimestre",
"2.º trimestre",
"3.º trimestre",
"4.º trimestre"
],
"quarters-format-abbr": [
"1.º trimestre",
"2.º trimestre",
"3.º trimestre",
"4.º trimestre"
],
"dayPeriods-standAlone-wide-am": "a.m.",
"dateFormat-medium": "d 'de' MMM 'de' yyyy",
"quarters-standAlone-abbr": [
"1.º trimestre",
"2.º trimestre",
"3.º trimestre",
"4.º trimestre"
],
"dateFormatItem-Hm": "HH:mm",
"dayPeriods-standAlone-abbr-pm": "p.m.",
"dateFormatItem-HHmmss": "HH:mm:ss",
"dateFormatItem-hm": "h:mm a",
"months-standAlone-wide": [
"Janeiro",
"Fevereiro",
"Março",
"Abril",
"Maio",
"Junho",
"Julho",
"Agosto",
"Setembro",
"Outubro",
"Novembro",
"Dezembro"
],
"dayPeriods-standAlone-abbr-am": "a.m.",
"dayPeriods-format-wide-pm": "Depois do meio-dia",
"months-standAlone-abbr": [
"Jan",
"Fev",
"Mar",
"Abr",
"Mai",
"Jun",
"Jul",
"Ago",
"Set",
"Out",
"Nov",
"Dez"
],
"dateFormatItem-yQQQ": "QQQ 'de' y",
"dayPeriods-format-wide-am": "Antes do meio-dia",
"dateFormatItem-Hms": "HH:mm:ss",
"dayPeriods-format-abbr-pm": "p.m.",
"dateFormatItem-yyQ": "QQQ 'de' yy",
"dateFormatItem-ms": "mm:ss",
"dayPeriods-format-abbr-am": "a.m.",
"months-format-wide": [
"Janeiro",
"Fevereiro",
"Março",
"Abril",
"Maio",
"Junho",
"Julho",
"Agosto",
"Setembro",
"Outubro",
"Novembro",
"Dezembro"
],
"days-standAlone-wide": [
"Domingo",
"Segunda-feira",
"Terça-feira",
"Quarta-feira",
"Quinta-feira",
"Sexta-feira",
"Sábado"
],
"dateFormatItem-HHmm": "HH:mm",
"months-format-abbr": [
"Jan",
"Fev",
"Mar",
"Abr",
"Mai",
"Jun",
"Jul",
"Ago",
"Set",
"Out",
"Nov",
"Dez"
],
"days-standAlone-abbr": [
"Domingo",
"Segunda-feira",
"Terça-feira",
"Quarta-feira",
"Quinta-feira",
"Sexta-feira",
"Sábado"
],
"days-format-wide": [
"Domingo",
"Segunda-feira",
"Terça-feira",
"Quarta-feira",
"Quinta-feira",
"Sexta-feira",
"Sábado"
],
"dateFormatItem-hms": "h:mm:ss a",
"dateFormatItem-yQ": "QQQ 'de' yyyy",
"quarters-format-wide": [
"1.º trimestre",
"2.º trimestre",
"3.º trimestre",
"4.º trimestre"
],
"dayPeriods-standAlone-wide-pm": "p.m.",
"days-format-abbr": [
"Domingo",
"Segunda-feira",
"Terça-feira",
"Quarta-feira",
"Quinta-feira",
"Sexta-feira",
"Sábado"
]
}
//end v1.x content
);
\ No newline at end of file
define(
//begin v1.x content
{
"currencyFormat": "#,##0.00 ¤",
"group": " "
}
//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 suíço",
"CAD_displayName": "Dólar canadense",
"CNY_displayName": "Yuan Renminbi chinês",
"AUD_displayName": "Dólar australiano",
"JPY_displayName": "Iene japonês",
"USD_displayName": "Dólar norte-americano",
"GBP_displayName": "Libra esterlina britânica",
"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": "Dia da semana",
"dateFormatItem-yQQQ": "y QQQ",
"dateFormatItem-yMEd": "EEE, dd/MM/yyyy",
"dateFormatItem-MMMEd": "EEE, d 'de' MMM",
"eraNarrow": [
"a.C.",
"d.C."
],
"dayPeriods-format-wide-morning": "manhã",
"dateFormat-long": "d 'de' MMMM 'de' y",
"months-format-wide": [
"janeiro",
"fevereiro",
"março",
"abril",
"maio",
"junho",
"julho",
"agosto",
"setembro",
"outubro",
"novembro",
"dezembro"
],
"dateFormatItem-EEEd": "EEE, d",
"dateFormat-full": "EEEE, d 'de' MMMM 'de' y",
"dateFormatItem-Md": "d/M",
"dayPeriods-format-wide-noon": "meio-dia",
"field-era": "Era",
"dateFormatItem-yM": "MM/yyyy",
"months-standAlone-wide": [
"janeiro",
"fevereiro",
"março",
"abril",
"maio",
"junho",
"julho",
"agosto",
"setembro",
"outubro",
"novembro",
"dezembro"
],
"timeFormat-short": "HH:mm",
"quarters-format-wide": [
"1º trimestre",
"2º trimestre",
"3º trimestre",
"4º trimestre"
],
"timeFormat-long": "HH'h'mm'min'ss's' z",
"field-year": "Ano",
"dateFormatItem-yMMM": "MMM 'de' y",
"dateFormatItem-yQ": "yyyy Q",
"field-hour": "Hora",
"dateFormatItem-MMdd": "dd/MM",
"months-format-abbr": [
"jan",
"fev",
"mar",
"abr",
"mai",
"jun",
"jul",
"ago",
"set",
"out",
"nov",
"dez"
],
"dateFormatItem-yyQ": "Q yy",
"timeFormat-full": "HH'h'mm'min'ss's' zzzz",
"field-day-relative+0": "Hoje",
"field-day-relative+1": "Amanhã",
"field-day-relative+2": "Depois de amanhã",
"field-day-relative+3": "Daqui a três dias",
"months-standAlone-abbr": [
"jan",
"fev",
"mar",
"abr",
"mai",
"jun",
"jul",
"ago",
"set",
"out",
"nov",
"dez"
],
"quarters-format-abbr": [
"T1",
"T2",
"T3",
"T4"
],
"quarters-standAlone-wide": [
"1º trimestre",
"2º trimestre",
"3º trimestre",
"4º trimestre"
],
"dateFormatItem-HHmmss": "HH'h'mm'min'ss's'",
"dateFormatItem-M": "L",
"days-standAlone-wide": [
"domingo",
"segunda-feira",
"terça-feira",
"quarta-feira",
"quinta-feira",
"sexta-feira",
"sábado"
],
"dateFormatItem-yyyyMMM": "MMM 'de' y",
"dateFormatItem-yyMMMEEEd": "EEE, d 'de' MMM 'de' yy",
"dateFormatItem-yyMMM": "MMM 'de' yy",
"timeFormat-medium": "HH:mm:ss",
"dateFormatItem-Hm": "HH'h'mm",
"quarters-standAlone-abbr": [
"T1",
"T2",
"T3",
"T4"
],
"eraAbbr": [
"a.C.",
"d.C."
],
"field-minute": "Minuto",
"field-dayperiod": "Período do dia",
"days-standAlone-abbr": [
"dom",
"seg",
"ter",
"qua",
"qui",
"sex",
"sáb"
],
"dayPeriods-format-wide-night": "noite",
"dateFormatItem-yyMMMd": "d 'de' MMM 'de' yy",
"dateFormatItem-d": "d",
"dateFormatItem-ms": "mm'min'ss's'",
"field-day-relative+-1": "Ontem",
"field-day-relative+-2": "Anteontem",
"field-day-relative+-3": "Há três dias",
"dateFormatItem-MMMd": "d 'de' MMM",
"dateFormatItem-MEd": "EEE, dd/MM",
"field-day": "Dia",
"days-format-wide": [
"domingo",
"segunda-feira",
"terça-feira",
"quarta-feira",
"quinta-feira",
"sexta-feira",
"sábado"
],
"field-zone": "Fuso",
"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",
"days-format-abbr": [
"dom",
"seg",
"ter",
"qua",
"qui",
"sex",
"sáb"
],
"eraNames": [
"Antes de Cristo",
"Ano do Senhor"
],
"days-format-narrow": [
"D",
"S",
"T",
"Q",
"Q",
"S",
"S"
],
"field-month": "Mês",
"days-standAlone-narrow": [
"D",
"S",
"T",
"Q",
"Q",
"S",
"S"
],
"dateFormatItem-MMM": "LLL",
"dateFormatItem-HHmm": "HH'h'mm",
"dateFormat-short": "dd/MM/yy",
"dayPeriods-format-wide-afternoon": "tarde",
"field-second": "Segundo",
"dateFormatItem-yMMMEd": "EEE, d 'de' MMM 'de' y",
"field-week": "Semana",
"dateFormat-medium": "dd/MM/yyyy"
}
//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": "+"
}
//end v1.x content
);
\ No newline at end of file
define(
//begin v1.x content
{
"quarters-format-abbr": [
"trim. I",
"trim. II",
"trim. III",
"trim. IV"
],
"dateFormat-medium": "d MMM y G",
"dateFormatItem-MMMEd": "E, d MMM",
"dateFormatItem-MEd": "E, d MMM",
"dateFormatItem-yMEd": "EEE, d/M/yyyy",
"eraNarrow": [
"e.b."
],
"dateTimeFormat-medium": "{1}, {0}",
"dateFormatItem-Md": "d.M",
"months-standAlone-narrow": [
"I",
"F",
"M",
"A",
"M",
"I",
"I",
"A",
"S",
"O",
"N",
"D"
],
"dateFormatItem-EEEd": "EEE d",
"eraNames": [
"era budistă"
],
"days-standAlone-narrow": [
"D",
"L",
"M",
"M",
"J",
"V",
"S"
],
"dateTimeFormat-long": "{1}, {0}",
"dateFormatItem-yQQQ": "QQQ y",
"quarters-standAlone-narrow": [
"T1",
"T2",
"T3",
"T4"
],
"dateFormat-long": "d MMMM y G",
"dateFormat-short": "d/M/yyyy",
"dateFormatItem-yMMMEd": "EEE, d MMM y",
"dateTimeFormat-short": "{1}, {0}",
"months-format-wide": [
"ianuarie",
"februarie",
"martie",
"aprilie",
"mai",
"iunie",
"iulie",
"august",
"septembrie",
"octombrie",
"noiembrie",
"decembrie"
],
"dateTimeFormat-full": "{1}, {0}",
"dateFormatItem-yM": "M.yyyy",
"months-format-abbr": [
"ian.",
"feb.",
"mar.",
"apr.",
"mai",
"iun.",
"iul.",
"aug.",
"sept.",
"oct.",
"nov.",
"dec."
],
"eraAbbr": [
"e.b."
],
"days-format-wide": [
"duminică",
"luni",
"marți",
"miercuri",
"joi",
"vineri",
"sâmbătă"
],
"dateFormatItem-yQ": "'trimestrul' Q y",
"dateFormatItem-yMMM": "MMM y",
"quarters-format-wide": [
"trimestrul I",
"trimestrul al II-lea",
"trimestrul al III-lea",
"trimestrul al IV-lea"
],
"dateFormat-full": "EEEE, d MMMM, y G",
"dateFormatItem-MMMd": "d MMM",
"days-format-abbr": [
"Du",
"Lu",
"Ma",
"Mi",
"Jo",
"Vi",
""
]
}
//end v1.x content
);
\ No newline at end of file
define(
//begin v1.x content
{
"HKD_displayName": "dolar Hong Kong",
"CHF_displayName": "franc elvețian",
"CAD_displayName": "dolar canadian",
"CNY_displayName": "yuan renminbi chinezesc",
"AUD_displayName": "dolar australian",
"JPY_displayName": "yen japonez",
"USD_displayName": "dolar american",
"GBP_displayName": "liră sterlină",
"EUR_displayName": "euro"
}
//end v1.x content
);
\ No newline at end of file
define(
//begin v1.x content
{
"months-format-narrow": [
"I",
"F",
"M",
"A",
"M",
"I",
"I",
"A",
"S",
"O",
"N",
"D"
],
"quarters-standAlone-narrow": [
"T1",
"T2",
"T3",
"T4"
],
"field-weekday": "zi a săptămânii",
"dateFormatItem-yQQQ": "QQQ y",
"dateFormatItem-yMEd": "EEE, d/M/yyyy",
"dateFormatItem-MMMEd": "E, d MMM",
"eraNarrow": [
"î.Hr.",
"d.Hr."
],
"dateFormat-long": "d MMMM y",
"months-format-wide": [
"ianuarie",
"februarie",
"martie",
"aprilie",
"mai",
"iunie",
"iulie",
"august",
"septembrie",
"octombrie",
"noiembrie",
"decembrie"
],
"dateTimeFormat-medium": "{1}, {0}",
"dateFormatItem-EEEd": "EEE d",
"dayPeriods-format-wide-pm": "PM",
"dateFormat-full": "EEEE, d MMMM y",
"dateFormatItem-Md": "d.M",
"field-era": "eră",
"dateFormatItem-yM": "M.yyyy",
"months-standAlone-wide": [
"ianuarie",
"februarie",
"martie",
"aprilie",
"mai",
"iunie",
"iulie",
"august",
"septembrie",
"octombrie",
"noiembrie",
"decembrie"
],
"timeFormat-short": "HH:mm",
"quarters-format-wide": [
"trimestrul I",
"trimestrul al II-lea",
"trimestrul al III-lea",
"trimestrul al IV-lea"
],
"timeFormat-long": "HH:mm:ss z",
"field-year": "an",
"dateFormatItem-yMMM": "MMM y",
"dateFormatItem-yQ": "'trimestrul' Q y",
"dateFormatItem-yyyyMMMM": "MMMM y",
"field-hour": "oră",
"dateFormatItem-MMdd": "dd.MM",
"months-format-abbr": [
"ian.",
"feb.",
"mar.",
"apr.",
"mai",
"iun.",
"iul.",
"aug.",
"sept.",
"oct.",
"nov.",
"dec."
],
"dateFormatItem-yyQ": "Q yy",
"timeFormat-full": "HH:mm:ss zzzz",
"field-day-relative+0": "azi",
"field-day-relative+1": "mâine",
"field-day-relative+2": "poimâine",
"field-day-relative+3": "răspoimâine",
"months-standAlone-abbr": [
"ian.",
"feb.",
"mar.",
"apr.",
"mai",
"iun.",
"iul.",
"aug.",
"sept.",
"oct.",
"nov.",
"dec."
],
"quarters-format-abbr": [
"trim. I",
"trim. II",
"trim. III",
"trim. IV"
],
"quarters-standAlone-wide": [
"trimestrul I",
"trimestrul al II-lea",
"trimestrul al III-lea",
"trimestrul al IV-lea"
],
"dateFormatItem-M": "L",
"days-standAlone-wide": [
"duminică",
"luni",
"marți",
"miercuri",
"joi",
"vineri",
"sâmbătă"
],
"dateFormatItem-MMMMd": "d MMMM",
"dateFormatItem-yyMMM": "MMM yy",
"timeFormat-medium": "HH:mm:ss",
"dateFormatItem-Hm": "HH:mm",
"quarters-standAlone-abbr": [
"trim. I",
"trim. II",
"trim. III",
"trim. IV"
],
"eraAbbr": [
"î.Hr.",
"d.Hr."
],
"field-minute": "minut",
"field-dayperiod": "perioada zilei",
"days-standAlone-abbr": [
"Du",
"Lu",
"Ma",
"Mi",
"Jo",
"Vi",
""
],
"dateFormatItem-d": "d",
"dateFormatItem-ms": "mm:ss",
"quarters-format-narrow": [
"T1",
"T2",
"T3",
"T4"
],
"field-day-relative+-1": "ieri",
"dateTimeFormat-long": "{1}, {0}",
"field-day-relative+-2": "alaltăieri",
"field-day-relative+-3": "răsalaltăieri",
"dateFormatItem-MMMd": "d MMM",
"dateFormatItem-MEd": "E, d MMM",
"dateTimeFormat-full": "{1}, {0}",
"dateFormatItem-yMMMM": "MMMM y",
"field-day": "zi",
"days-format-wide": [
"duminică",
"luni",
"marți",
"miercuri",
"joi",
"vineri",
"sâmbătă"
],
"field-zone": "zonă",
"dateFormatItem-yyyyMM": "MM.yyyy",
"dateFormatItem-y": "y",
"months-standAlone-narrow": [
"I",
"F",
"M",
"A",
"M",
"I",
"I",
"A",
"S",
"O",
"N",
"D"
],
"dateFormatItem-yyMM": "MM.yy",
"days-format-abbr": [
"Du",
"Lu",
"Ma",
"Mi",
"Jo",
"Vi",
""
],
"eraNames": [
"înainte de Hristos",
"după Hristos"
],
"days-format-narrow": [
"D",
"L",
"M",
"M",
"J",
"V",
"S"
],
"field-month": "lună",
"days-standAlone-narrow": [
"D",
"L",
"M",
"M",
"J",
"V",
"S"
],
"dateFormatItem-MMM": "LLL",
"dayPeriods-format-wide-am": "AM",
"dateFormatItem-MMMMEd": "E, d MMMM",
"dateFormat-short": "dd.MM.yyyy",
"field-second": "secundă",
"dateFormatItem-yMMMEd": "EEE, d MMM y",
"field-week": "săptămână",
"dateFormat-medium": "dd.MM.yyyy",
"dateTimeFormat-short": "{1}, {0}",
"dateFormatItem-MMMEEEd": "EEE, d MMM"
}
//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": "Гонконгский доллар",
"CHF_displayName": "Швейцарский франк",
"CAD_displayName": "Канадский доллар",
"CNY_displayName": "Юань Ренминби",
"USD_symbol": "$",
"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
{
"dateFormatItem-yM": "M.y",
"field-dayperiod": "AM/PM",
"field-minute": "Минута",
"eraNames": [
"до н.э.",
"н.э."
],
"dateFormatItem-MMMEd": "ccc, d MMM",
"field-day-relative+-1": "Вчера",
"field-weekday": "День недели",
"dateFormatItem-yQQQ": "y QQQ",
"field-day-relative+-2": "Позавчера",
"dateFormatItem-MMdd": "dd.MM",
"days-standAlone-wide": [
"Воскресенье",
"Понедельник",
"Вторник",
"Среда",
"Четверг",
"Пятница",
"Суббота"
],
"dateFormatItem-MMM": "LLL",
"months-standAlone-narrow": [
"Я",
"Ф",
"М",
"А",
"М",
"И",
"И",
"А",
"С",
"О",
"Н",
"Д"
],
"field-era": "Эра",
"field-hour": "Час",
"quarters-standAlone-abbr": [
"1-й кв.",
"2-й кв.",
"3-й кв.",
"4-й кв."
],
"dateFormatItem-yyMMMEEEd": "EEE, d MMM yy",
"dateFormatItem-y": "y",
"timeFormat-full": "H:mm:ss zzzz",
"dateFormatItem-yyyy": "y",
"months-standAlone-abbr": [
"янв.",
"февр.",
"март",
"апр.",
"май",
"июнь",
"июль",
"авг.",
"сент.",
"окт.",
"нояб.",
"дек."
],
"dateFormatItem-Ed": "E, d",
"dateFormatItem-yMMM": "LLL y",
"field-day-relative+0": "Сегодня",
"dateFormatItem-yyyyLLLL": "LLLL y",
"field-day-relative+1": "Завтра",
"days-standAlone-narrow": [
"В",
"П",
"В",
"С",
"Ч",
"П",
"С"
],
"eraAbbr": [
"до н.э.",
"н.э."
],
"field-day-relative+2": "Послезавтра",
"dateFormatItem-yyyyMM": "MM.yyyy",
"dateFormatItem-yyyyMMMM": "LLLL y",
"dateFormat-long": "d MMMM y 'г'.",
"timeFormat-medium": "H:mm:ss",
"field-zone": "Часовой пояс",
"dateFormatItem-Hm": "H:mm",
"dateFormat-medium": "dd.MM.yyyy",
"dateFormatItem-yyMM": "MM.yy",
"dateFormatItem-Hms": "H:mm:ss",
"dateFormatItem-yyMMM": "LLL yy",
"quarters-standAlone-wide": [
"1-й квартал",
"2-й квартал",
"3-й квартал",
"4-й квартал"
],
"dateFormatItem-ms": "mm:ss",
"dateFormatItem-yyyyQQQQ": "QQQQ y 'г'.",
"field-year": "Год",
"months-standAlone-wide": [
"Январь",
"Февраль",
"Март",
"Апрель",
"Май",
"Июнь",
"Июль",
"Август",
"Сентябрь",
"Октябрь",
"Ноябрь",
"Декабрь"
],
"field-week": "Неделя",
"dateFormatItem-MMMd": "d MMM",
"dateFormatItem-yyQ": "Q yy",
"timeFormat-long": "H:mm:ss z",
"months-format-abbr": [
"янв.",
"февр.",
"марта",
"апр.",
"мая",
"июня",
"июля",
"авг.",
"сент.",
"окт.",
"нояб.",
"дек."
],
"timeFormat-short": "H:mm",
"dateFormatItem-H": "H",
"field-month": "Месяц",
"quarters-format-abbr": [
"1-й кв.",
"2-й кв.",
"3-й кв.",
"4-й кв."
],
"days-format-abbr": [
"вс",
"пн",
"вт",
"ср",
"чт",
"пт",
"сб"
],
"dateFormatItem-M": "L",
"days-format-narrow": [
"В",
"П",
"В",
"С",
"Ч",
"П",
"С"
],
"field-second": "Секунда",
"field-day": "День",
"dateFormatItem-MEd": "E, d.M",
"months-format-narrow": [
"Я",
"Ф",
"М",
"А",
"М",
"И",
"И",
"А",
"С",
"О",
"Н",
"Д"
],
"days-standAlone-abbr": [
"Вс",
"Пн",
"Вт",
"Ср",
"Чт",
"Пт",
"Сб"
],
"dateFormat-short": "dd.MM.yy",
"dateFormatItem-yMMMEd": "E, d MMM y",
"dateFormat-full": "EEEE, d MMMM y 'г'.",
"dateFormatItem-Md": "d.M",
"dateFormatItem-yMEd": "EEE, d.M.y",
"months-format-wide": [
"января",
"февраля",
"марта",
"апреля",
"мая",
"июня",
"июля",
"августа",
"сентября",
"октября",
"ноября",
"декабря"
],
"dateFormatItem-d": "d",
"quarters-format-wide": [
"1-й квартал",
"2-й квартал",
"3-й квартал",
"4-й квартал"
],
"days-format-wide": [
"воскресенье",
"понедельник",
"вторник",
"среда",
"четверг",
"пятница",
"суббота"
],
"eraNarrow": [
"до н.э.",
"н.э."
]
}
//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": ",",
"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": "Hong Kongský dolár",
"CHF_displayName": "Švajčiarský frank",
"CAD_displayName": "Kanadský dolár",
"CNY_displayName": "Čínsky Yuan Renminbi",
"AUD_displayName": "Austrálsky dolár",
"JPY_displayName": "Japonský yen",
"USD_displayName": "US dolár",
"GBP_displayName": "Britská libra",
"EUR_displayName": "Euro"
}
//end v1.x content
);
\ No newline at end of file
define(
//begin v1.x content
{
"field-dayperiod": "Časť dňa",
"dateFormatItem-yQ": "Q yyyy",
"dayPeriods-format-wide-pm": "popoludní",
"field-minute": "Minúta",
"eraNames": [
"pred n.l.",
"n.l."
],
"dateFormatItem-MMMEd": "E, d. MMM",
"field-day-relative+-1": "Včera",
"field-weekday": "Deň v týždni",
"dateFormatItem-yQQQ": "QQQ y",
"field-day-relative+-2": "Predvčerom",
"field-day-relative+-3": "Pred tromi dňami",
"days-standAlone-wide": [
"nedeľa",
"pondelok",
"utorok",
"streda",
"štvrtok",
"piatok",
"sobota"
],
"months-standAlone-narrow": [
"j",
"f",
"m",
"a",
"m",
"j",
"j",
"a",
"s",
"o",
"n",
"d"
],
"field-era": "Éra",
"field-hour": "Hodina",
"dayPeriods-format-wide-am": "dopoludnia",
"timeFormat-full": "H:mm:ss zzzz",
"months-standAlone-abbr": [
"jan",
"feb",
"mar",
"apr",
"máj",
"jún",
"júl",
"aug",
"sep",
"okt",
"nov",
"dec"
],
"dateFormatItem-yMMM": "LLL y",
"field-day-relative+0": "Dnes",
"field-day-relative+1": "Zajtra",
"days-standAlone-narrow": [
"N",
"P",
"U",
"S",
"Š",
"P",
"S"
],
"eraAbbr": [
"pred n.l.",
"n.l."
],
"field-day-relative+2": "Pozajtra",
"field-day-relative+3": "O tri dni",
"dateFormatItem-yyyyMMMM": "LLLL y",
"dateFormat-long": "d. MMMM y",
"timeFormat-medium": "H:mm:ss",
"dateFormatItem-EEEd": "EEE, d.",
"field-zone": "Pásmo",
"dateFormatItem-Hm": "H:mm",
"dateFormat-medium": "d.M.yyyy",
"dateFormatItem-Hms": "H:mm:ss",
"dateFormatItem-yyQQQQ": "QQQQ yy",
"quarters-standAlone-wide": [
"1. štvrťrok",
"2. štvrťrok",
"3. štvrťrok",
"4. štvrťrok"
],
"dateFormatItem-yMMMM": "LLLL y",
"dateFormatItem-ms": "mm:ss",
"field-year": "Rok",
"months-standAlone-wide": [
"január",
"február",
"marec",
"apríl",
"máj",
"jún",
"júl",
"august",
"september",
"október",
"november",
"december"
],
"field-week": "Týždeň",
"dateFormatItem-MMMMEd": "E, d. MMMM",
"dateFormatItem-MMMd": "d. MMM",
"dateFormatItem-yyQ": "Q yy",
"timeFormat-long": "H:mm:ss z",
"months-format-abbr": [
"jan",
"feb",
"mar",
"apr",
"máj",
"jún",
"júl",
"aug",
"sep",
"okt",
"nov",
"dec"
],
"timeFormat-short": "H:mm",
"dateFormatItem-H": "H",
"field-month": "Mesiac",
"dateFormatItem-MMMMd": "d. MMMM",
"quarters-format-abbr": [
"Q1",
"Q2",
"Q3",
"Q4"
],
"days-format-abbr": [
"ne",
"po",
"ut",
"st",
"št",
"pi",
"so"
],
"dateFormatItem-mmss": "mm:ss",
"days-format-narrow": [
"N",
"P",
"U",
"S",
"Š",
"P",
"S"
],
"field-second": "Sekunda",
"field-day": "Deň",
"dateFormatItem-MEd": "E, d.M.",
"months-format-narrow": [
"j",
"f",
"m",
"a",
"m",
"j",
"j",
"a",
"s",
"o",
"n",
"d"
],
"days-standAlone-abbr": [
"ne",
"po",
"ut",
"st",
"št",
"pi",
"so"
],
"dateFormat-short": "d.M.yyyy",
"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.yyyy",
"months-format-wide": [
"januára",
"februára",
"marca",
"apríla",
"mája",
"júna",
"júla",
"augusta",
"septembra",
"októbra",
"novembra",
"decembra"
],
"dateFormatItem-d": "d.",
"quarters-format-wide": [
"1. štvrťrok",
"2. štvrťrok",
"3. štvrťrok",
"4. štvrťrok"
],
"days-format-wide": [
"nedeľa",
"pondelok",
"utorok",
"streda",
"štvrtok",
"piatok",
"sobota"
],
"eraNarrow": [
"pred n.l.",
"n.l."
]
}
//end v1.x content
);
\ No newline at end of file
define(
//begin v1.x content
{
"currencyFormat": "#,##0.00 ¤",
"group": " ",
"decimal": ","
}
//end v1.x content
);
\ No newline at end of file
define(
//begin v1.x content
{
"HKD_displayName": "hongkonški dolar",
"CHF_displayName": "švicarski frank",
"JPY_symbol": "¥",
"CAD_displayName": "kanadski dolar",
"CNY_displayName": "kitajski juan renminbi",
"USD_symbol": "$",
"AUD_displayName": "avstralski dolar",
"JPY_displayName": "japonski jen",
"USD_displayName": "ameriški dolar",
"GBP_displayName": "britanski funt",
"EUR_displayName": "evro"
}
//end v1.x content
);
\ No newline at end of file
define(
//begin v1.x content
{
"field-dayperiod": "Čas dneva",
"dayPeriods-format-wide-pm": "pop.",
"field-minute": "Minuta",
"eraNames": [
"pred našim štetjem",
"naše štetje"
],
"dateFormatItem-MMMEd": "E., d. MMM",
"field-day-relative+-1": "Včeraj",
"field-weekday": "Dan v tednu",
"field-day-relative+-2": "Predvčerajšnjim",
"field-day-relative+-3": "Pred tremi dnevi",
"days-standAlone-wide": [
"nedelja",
"ponedeljek",
"torek",
"sreda",
"četrtek",
"petek",
"sobota"
],
"months-standAlone-narrow": [
"j",
"f",
"m",
"a",
"m",
"j",
"j",
"a",
"s",
"o",
"n",
"d"
],
"field-era": "Doba",
"field-hour": "Ura",
"dayPeriods-format-wide-am": "dop.",
"dateFormatItem-y": "y",
"timeFormat-full": "HH:mm:ss zzzz",
"months-standAlone-abbr": [
"jan",
"feb",
"mar",
"apr",
"maj",
"jun",
"jul",
"avg",
"sep",
"okt",
"nov",
"dec"
],
"dateFormatItem-Ed": "E., d.",
"dateFormatItem-yMMM": "MMM y",
"field-day-relative+0": "Danes",
"field-day-relative+1": "Jutri",
"days-standAlone-narrow": [
"n",
"p",
"t",
"s",
"č",
"p",
"s"
],
"eraAbbr": [
"pr. n. št.",
"po Kr."
],
"field-day-relative+2": "Pojutrišnjem",
"field-day-relative+3": "Čez tri dni",
"dateFormatItem-yyyyMMMM": "MMMM y",
"dateFormat-long": "dd. MMMM y",
"timeFormat-medium": "HH:mm:ss",
"field-zone": "Območje",
"dateFormatItem-Hm": "HH:mm",
"dateFormat-medium": "d. MMM yyyy",
"dateFormatItem-Hms": "HH:mm:ss",
"quarters-standAlone-wide": [
"1. četrtletje",
"2. četrtletje",
"3. četrtletje",
"4. četrtletje"
],
"dateFormatItem-ms": "mm:ss",
"field-year": "Leto",
"field-week": "Teden",
"months-standAlone-wide": [
"januar",
"februar",
"marec",
"april",
"maj",
"junij",
"julij",
"avgust",
"september",
"oktober",
"november",
"december"
],
"dateFormatItem-MMMd": "d. MMM",
"dateFormatItem-yyQ": "Q/yy",
"timeFormat-long": "HH:mm:ss z",
"months-format-abbr": [
"jan.",
"feb.",
"mar.",
"apr.",
"maj",
"jun.",
"jul.",
"avg.",
"sep.",
"okt.",
"nov.",
"dec."
],
"timeFormat-short": "HH:mm",
"field-month": "Mesec",
"quarters-format-abbr": [
"Q1",
"Q2",
"Q3",
"Q4"
],
"days-format-abbr": [
"ned",
"pon",
"tor",
"sre",
"čet",
"pet",
"sob"
],
"dateFormatItem-mmss": "mm:ss",
"days-format-narrow": [
"n",
"p",
"t",
"s",
"č",
"p",
"s"
],
"field-second": "Sekunda",
"field-day": "Dan",
"dateFormatItem-MEd": "E., d. MM.",
"months-format-narrow": [
"j",
"f",
"m",
"a",
"m",
"j",
"j",
"a",
"s",
"o",
"n",
"d"
],
"days-standAlone-abbr": [
"ned",
"pon",
"tor",
"sre",
"čet",
"pet",
"sob"
],
"dateFormat-short": "d. MM. yy",
"dateFormatItem-yyyyM": "M/yyyy",
"dateFormatItem-yMMMEd": "E., d. MMM y",
"dateFormat-full": "EEEE, dd. MMMM y",
"dateFormatItem-Md": "d. M.",
"dateFormatItem-yMEd": "E., d. M. y",
"months-format-wide": [
"januar",
"februar",
"marec",
"april",
"maj",
"junij",
"julij",
"avgust",
"september",
"oktober",
"november",
"december"
],
"quarters-format-wide": [
"1. četrtletje",
"2. četrtletje",
"3. četrtletje",
"4. četrtletje"
],
"days-format-wide": [
"nedelja",
"ponedeljek",
"torek",
"sreda",
"četrtek",
"petek",
"sobota"
],
"eraNarrow": [
"pr. n. št.",
"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(
//begin v1.x content
{
"HKD_displayName": "Hongkong-dollar",
"CHF_displayName": "schweizisk franc",
"CHF_symbol": "CHF",
"CAD_displayName": "kanadensisk dollar",
"CNY_displayName": "kinesisk yuan renminbi",
"AUD_displayName": "australisk dollar",
"JPY_displayName": "japansk yen",
"CAD_symbol": "CAD",
"USD_displayName": "US-dollar",
"CNY_symbol": "CNY",
"GBP_displayName": "brittiskt pund 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"
],
"quarters-standAlone-narrow": [
"1",
"2",
"3",
"4"
],
"field-weekday": "veckodag",
"dateFormatItem-yQQQ": "y QQQ",
"dateFormatItem-yMEd": "EEE, yyyy-MM-dd",
"dateFormatItem-MMMEd": "E d MMM",
"eraNarrow": [
"f.Kr.",
"e.Kr."
],
"dateFormat-long": "d MMMM y",
"months-format-wide": [
"januari",
"februari",
"mars",
"april",
"maj",
"juni",
"juli",
"augusti",
"september",
"oktober",
"november",
"december"
],
"dateFormatItem-EEEd": "EEE d",
"dayPeriods-format-wide-pm": "em",
"dateFormat-full": "EEEE'en' 'den' d:'e' MMMM y",
"dateFormatItem-Md": "d/M",
"dateFormatItem-MMMMEEEd": "EEE d MMMM",
"field-era": "era",
"dateFormatItem-yM": "yyyy-MM",
"months-standAlone-wide": [
"januari",
"februari",
"mars",
"april",
"maj",
"juni",
"juli",
"augusti",
"september",
"oktober",
"november",
"december"
],
"timeFormat-short": "HH:mm",
"quarters-format-wide": [
"1:a kvartalet",
"2:a kvartalet",
"3:e kvartalet",
"4:e kvartalet"
],
"timeFormat-long": "HH:mm:ss z",
"field-year": "år",
"dateFormatItem-yMMM": "MMM y",
"dateFormatItem-yQ": "yyyy Q",
"field-hour": "timme",
"dateFormatItem-MMdd": "dd/MM",
"months-format-abbr": [
"jan",
"feb",
"mar",
"apr",
"maj",
"jun",
"jul",
"aug",
"sep",
"okt",
"nov",
"dec"
],
"dateFormatItem-yyQ": "Q yy",
"timeFormat-full": "'kl'. HH:mm:ss zzzz",
"field-day-relative+0": "i dag",
"field-day-relative+1": "i morgon",
"field-day-relative+2": "i övermorgon",
"field-day-relative+3": "i överövermorgon",
"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:a kvartalet",
"2:a kvartalet",
"3:e kvartalet",
"4:e kvartalet"
],
"dateFormatItem-M": "L",
"days-standAlone-wide": [
"söndag",
"måndag",
"tisdag",
"onsdag",
"torsdag",
"fredag",
"lördag"
],
"dateFormatItem-yyyyMMM": "MMM y",
"dateFormatItem-MMMMd": "d:'e' MMMM",
"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": "fm/em",
"days-standAlone-abbr": [
"sön",
"mån",
"tis",
"ons",
"tors",
"fre",
"lör"
],
"dateFormatItem-d": "d",
"dateFormatItem-ms": "mm:ss",
"field-day-relative+-1": "i går",
"field-day-relative+-2": "i förrgår",
"field-day-relative+-3": "i förrförrgår",
"dateFormatItem-MMMd": "d MMM",
"dateFormatItem-MEd": "E d/M",
"field-day": "dag",
"days-format-wide": [
"söndag",
"måndag",
"tisdag",
"onsdag",
"torsdag",
"fredag",
"lördag"
],
"field-zone": "tidszon",
"dateFormatItem-yyyyMM": "yyyy-MM",
"dateFormatItem-y": "y",
"months-standAlone-narrow": [
"J",
"F",
"M",
"A",
"M",
"J",
"J",
"A",
"S",
"O",
"N",
"D"
],
"dateFormatItem-yyMM": "yy-MM",
"dateFormatItem-hm": "h:mm a",
"days-format-abbr": [
"sön",
"mån",
"tis",
"ons",
"tors",
"fre",
"lör"
],
"eraNames": [
"före Kristus",
"efter Kristus"
],
"days-format-narrow": [
"S",
"M",
"T",
"O",
"T",
"F",
"L"
],
"field-month": "månad",
"days-standAlone-narrow": [
"S",
"M",
"T",
"O",
"T",
"F",
"L"
],
"dateFormatItem-MMM": "LLL",
"dayPeriods-format-wide-am": "fm",
"dateFormatItem-MMMMEd": "E d:'e' MMMM",
"dateFormat-short": "yyyy-MM-dd",
"dateFormatItem-MMd": "d/M",
"field-second": "sekund",
"dateFormatItem-yMMMEd": "EEE d MMM y",
"field-week": "vecka",
"dateFormat-medium": "d MMM y",
"dateFormatItem-yyyyQQQQ": "QQQQ y",
"dateFormatItem-Hms": "HH: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": "×10^",
"scientificFormat": "#E0",
"percentFormat": "#,##0 %",
"list": ";",
"infinity": "",
"patternDigit": "#",
"minusSign": "",
"decimal": ",",
"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/yyyy",
"dateFormatItem-yQ": "Q yyyy",
"dayPeriods-format-wide-pm": "หลังเที่ยง",
"eraNames": [
"พุทธศักราช"
],
"dateFormatItem-MMMEd": "E d MMM",
"dateTimeFormat-full": "{1}, {0}",
"dateFormatItem-yQQQ": "QQQ y",
"months-standAlone-narrow": [
"ม.ค.",
"ก.พ.",
"มี.ค.",
"เม.ย.",
"พ.ค.",
"มิ.ย.",
"ก.ค.",
"ส.ค.",
"ก.ย.",
"ต.ค.",
"พ.ย.",
"ธ.ค."
],
"dateTimeFormat-short": "{1}, {0}",
"dayPeriods-format-wide-am": "ก่อนเที่ยง",
"dateTimeFormat-medium": "{1}, {0}",
"timeFormat-full": "H นาฬิกา m นาที ss วินาที zzzz",
"dateFormatItem-yMMM": "MMM y",
"days-standAlone-narrow": [
"",
"",
"",
"",
"",
"",
""
],
"eraAbbr": [
"พ.ศ."
],
"dateFormat-long": "d MMMM y",
"timeFormat-medium": "H:mm:ss",
"dateFormatItem-EEEd": "EEE d",
"dateFormatItem-Hm": "H:mm",
"dateFormat-medium": "d MMM y",
"dateFormatItem-Hms": "H:mm:ss",
"dateTimeFormat-long": "{1}, {0}",
"dateFormatItem-MMMd": "d MMM",
"timeFormat-long": "H นาฬิกา m นาที ss วินาที z",
"months-format-abbr": [
"ม.ค.",
"ก.พ.",
"มี.ค.",
"เม.ย.",
"พ.ค.",
"มิ.ย.",
"ก.ค.",
"ส.ค.",
"ก.ย.",
"ต.ค.",
"พ.ย.",
"ธ.ค."
],
"timeFormat-short": "H:mm",
"dateFormatItem-H": "H",
"days-format-abbr": [
"อา.",
"จ.",
"อ.",
"พ.",
"พฤ.",
"ศ.",
"ส."
],
"dateFormatItem-MEd": "E, d/M",
"dateFormat-short": "d/M/yyyy",
"dateFormatItem-yMMMEd": "EEE d MMM y",
"dateFormat-full": "EEEEที่ d MMMM G y",
"dateFormatItem-Md": "d/M",
"dateFormatItem-yMEd": "EEE d/M/yyyy",
"months-format-wide": [
"มกราคม",
"กุมภาพันธ์",
"มีนาคม",
"เมษายน",
"พฤษภาคม",
"มิถุนายน",
"กรกฎาคม",
"สิงหาคม",
"กันยายน",
"ตุลาคม",
"พฤศจิกายน",
"ธันวาคม"
],
"quarters-format-wide": [
"ไตรมาส 1",
"ไตรมาส 2",
"ไตรมาส 3",
"ไตรมาส 4"
],
"days-format-wide": [
"วันอาทิตย์",
"วันจันทร์",
"วันอังคาร",
"วันพุธ",
"วันพฤหัสบดี",
"วันศุกร์",
"วันเสาร์"
],
"eraNarrow": [
"พ.ศ."
]
}
//end v1.x content
);
\ No newline at end of file
define(
//begin v1.x content
{
"HKD_displayName": "ดอลลาร์ฮ่องกง",
"CHF_displayName": "ฟรังก์สวิส",
"JPY_symbol": "¥",
"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-yQQQ": "QQQ y",
"dateFormatItem-yMEd": "EEE d/M/yyyy",
"dateFormatItem-MMMEd": "E d MMM",
"eraNarrow": [
"ก่อน ค.ศ.",
"ค.ศ."
],
"dateFormat-long": "d MMMM y",
"months-format-wide": [
"มกราคม",
"กุมภาพันธ์",
"มีนาคม",
"เมษายน",
"พฤษภาคม",
"มิถุนายน",
"กรกฎาคม",
"สิงหาคม",
"กันยายน",
"ตุลาคม",
"พฤศจิกายน",
"ธันวาคม"
],
"dateTimeFormat-medium": "{1}, {0}",
"dateFormatItem-EEEd": "EEE d",
"dayPeriods-format-wide-pm": "หลังเที่ยง",
"dateFormat-full": "EEEEที่ d MMMM G y",
"dateFormatItem-Md": "d/M",
"field-era": "สมัย",
"dateFormatItem-yM": "M/yyyy",
"months-standAlone-wide": [
"มกราคม",
"กุมภาพันธ์",
"มีนาคม",
"เมษายน",
"พฤษภาคม",
"มิถุนายน",
"กรกฎาคม",
"สิงหาคม",
"กันยายน",
"ตุลาคม",
"พฤศจิกายน",
"ธันวาคม"
],
"timeFormat-short": "H:mm",
"quarters-format-wide": [
"ไตรมาส 1",
"ไตรมาส 2",
"ไตรมาส 3",
"ไตรมาส 4"
],
"timeFormat-long": "H นาฬิกา m นาที ss วินาที z",
"field-year": "ปี",
"dateFormatItem-yMMM": "MMM y",
"dateFormatItem-yQ": "Q yyyy",
"dateFormatItem-yyyyMMMM": "MMMM y",
"field-hour": "ชั่วโมง",
"months-format-abbr": [
"ม.ค.",
"ก.พ.",
"มี.ค.",
"เม.ย.",
"พ.ค.",
"มิ.ย.",
"ก.ค.",
"ส.ค.",
"ก.ย.",
"ต.ค.",
"พ.ย.",
"ธ.ค."
],
"dateFormatItem-yyQ": "Q yy",
"timeFormat-full": "H นาฬิกา m นาที ss วินาที zzzz",
"field-day-relative+0": "วันนี้",
"field-day-relative+1": "พรุ่งนี้",
"field-day-relative+2": "มะรืนนี้",
"dateFormatItem-H": "H",
"field-day-relative+3": "สามวันต่อจากนี้",
"months-standAlone-abbr": [
"ม.ค.",
"ก.พ.",
"มี.ค.",
"เม.ย.",
"พ.ค.",
"มิ.ย.",
"ก.ค.",
"ส.ค.",
"ก.ย.",
"ต.ค.",
"พ.ย.",
"ธ.ค."
],
"quarters-format-abbr": [
"Q1",
"Q2",
"Q3",
"Q4"
],
"quarters-standAlone-wide": [
"ไตรมาส 1",
"ไตรมาส 2",
"ไตรมาส 3",
"ไตรมาส 4"
],
"dateFormatItem-M": "L",
"days-standAlone-wide": [
"วันอาทิตย์",
"วันจันทร์",
"วันอังคาร",
"วันพุธ",
"วันพฤหัสบดี",
"วันศุกร์",
"วันเสาร์"
],
"dateFormatItem-MMMMd": "d MMMM",
"timeFormat-medium": "H:mm:ss",
"dateFormatItem-Hm": "H:mm",
"eraAbbr": [
"ปีก่อน ค.ศ.",
"ค.ศ."
],
"field-minute": "นาที",
"field-dayperiod": "ช่วงวัน",
"days-standAlone-abbr": [
"อา.",
"จ.",
"อ.",
"พ.",
"พฤ.",
"ศ.",
"ส."
],
"dateFormatItem-d": "d",
"dateFormatItem-ms": "mm:ss",
"field-day-relative+-1": "เมื่อวาน",
"dateTimeFormat-long": "{1}, {0}",
"field-day-relative+-2": "เมื่อวานซืน",
"field-day-relative+-3": "สามวันก่อน",
"dateFormatItem-MMMd": "d MMM",
"dateFormatItem-MEd": "E, d/M",
"dateTimeFormat-full": "{1}, {0}",
"dateFormatItem-yMMMM": "MMMM y",
"field-day": "วัน",
"days-format-wide": [
"วันอาทิตย์",
"วันจันทร์",
"วันอังคาร",
"วันพุธ",
"วันพฤหัสบดี",
"วันศุกร์",
"วันเสาร์"
],
"field-zone": "เขต",
"dateFormatItem-y": "y",
"months-standAlone-narrow": [
"ม.ค.",
"ก.พ.",
"มี.ค.",
"เม.ย.",
"พ.ค.",
"มิ.ย.",
"ก.ค.",
"ส.ค.",
"ก.ย.",
"ต.ค.",
"พ.ย.",
"ธ.ค."
],
"days-format-abbr": [
"อา.",
"จ.",
"อ.",
"พ.",
"พฤ.",
"ศ.",
"ส."
],
"eraNames": [
"ปีก่อนคริสต์ศักราช",
"คริสต์ศักราช"
],
"days-format-narrow": [
"",
"",
"",
"",
"",
"",
""
],
"field-month": "เดือน",
"days-standAlone-narrow": [
"",
"",
"",
"",
"",
"",
""
],
"dateFormatItem-MMM": "LLL",
"dayPeriods-format-wide-am": "ก่อนเที่ยง",
"dateFormatItem-MMMMEd": "E d MMMM",
"dateFormat-short": "d/M/yyyy",
"field-second": "วินาที",
"dateFormatItem-yMMMEd": "EEE d MMM y",
"field-week": "สัปดาห์",
"dateFormat-medium": "d MMM y",
"dateFormatItem-yyyyM": "M/yyyy",
"dateFormatItem-mmss": "mm:ss",
"dateTimeFormat-short": "{1}, {0}",
"dateFormatItem-Hms": "H:mm:ss"
}
//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": "+"
}
//end v1.x content
);
\ No newline at end of file
define(
//begin v1.x content
{
"HKD_displayName": "Hong Kong Doları",
"CHF_displayName": "İsviçre Frangı",
"JPY_symbol": "¥",
"CAD_displayName": "Kanada Doları",
"CNY_displayName": "Çin Yuanı Renminbi",
"USD_symbol": "$",
"AUD_displayName": "Avustralya Doları",
"JPY_displayName": "Japon Yeni",
"USD_displayName": "ABD Doları",
"GBP_displayName": "İngiliz Sterlini",
"EUR_displayName": "Euro"
}
//end v1.x content
);
\ No newline at end of file
define(
//begin v1.x content
{
"months-format-narrow": [
"O",
"Ş",
"M",
"N",
"M",
"H",
"T",
"A",
"E",
"E",
"K",
"A"
],
"field-weekday": "Haftanın Günü",
"dateFormatItem-yyQQQQ": "QQQQ yy",
"dateFormatItem-yQQQ": "QQQ y",
"dateFormatItem-yMEd": "dd.MM.yyyy EEE",
"dateFormatItem-MMMEd": "dd MMM E",
"eraNarrow": [
"",
"MS"
],
"dateFormat-long": "dd MMMM y",
"months-format-wide": [
"Ocak",
"Şubat",
"Mart",
"Nisan",
"Mayıs",
"Haziran",
"Temmuz",
"Ağustos",
"Eylül",
"Ekim",
"Kasım",
"Aralık"
],
"dateFormatItem-EEEd": "d EEE",
"dayPeriods-format-wide-pm": "PM",
"dateFormat-full": "dd MMMM y EEEE",
"dateFormatItem-Md": "dd/MM",
"field-era": "Miladi Dönem",
"dateFormatItem-yM": "M/yyyy",
"months-standAlone-wide": [
"Ocak",
"Şubat",
"Mart",
"Nisan",
"Mayıs",
"Haziran",
"Temmuz",
"Ağustos",
"Eylül",
"Ekim",
"Kasım",
"Aralık"
],
"timeFormat-short": "HH:mm",
"quarters-format-wide": [
"1. çeyrek",
"2. çeyrek",
"3. çeyrek",
"4. çeyrek"
],
"timeFormat-long": "HH:mm:ss z",
"field-year": "Yıl",
"dateFormatItem-yMMM": "MMM y",
"dateFormatItem-yQ": "Q yyyy",
"field-hour": "Saat",
"months-format-abbr": [
"Oca",
"Şub",
"Mar",
"Nis",
"May",
"Haz",
"Tem",
"Ağu",
"Eyl",
"Eki",
"Kas",
"Ara"
],
"dateFormatItem-yyQ": "Q yy",
"timeFormat-full": "HH:mm:ss zzzz",
"field-day-relative+0": "Bugün",
"field-day-relative+1": "Yarın",
"field-day-relative+2": "Yarından sonraki gün",
"dateFormatItem-H": "HH",
"field-day-relative+3": "Üç gün sonra",
"months-standAlone-abbr": [
"Oca",
"Şub",
"Mar",
"Nis",
"May",
"Haz",
"Tem",
"Ağu",
"Eyl",
"Eki",
"Kas",
"Ara"
],
"quarters-format-abbr": [
"Ç1",
"Ç2",
"Ç3",
"Ç4"
],
"quarters-standAlone-wide": [
"1. çeyrek",
"2. çeyrek",
"3. çeyrek",
"4. çeyrek"
],
"dateFormatItem-M": "L",
"days-standAlone-wide": [
"Pazar",
"Pazartesi",
"Salı",
"Çarşamba",
"Perşembe",
"Cuma",
"Cumartesi"
],
"dateFormatItem-MMMMd": "dd MMMM",
"dateFormatItem-yyMMM": "MMM yy",
"timeFormat-medium": "HH:mm:ss",
"dateFormatItem-Hm": "HH:mm",
"quarters-standAlone-abbr": [
"Ç1",
"Ç2",
"Ç3",
"Ç4"
],
"eraAbbr": [
"",
"MS"
],
"field-minute": "Dakika",
"field-dayperiod": "AM/PM",
"days-standAlone-abbr": [
"Paz",
"Pzt",
"Sal",
"Çar",
"Per",
"Cum",
"Cmt"
],
"dateFormatItem-d": "d",
"dateFormatItem-ms": "mm:ss",
"field-day-relative+-1": "Dün",
"field-day-relative+-2": "Evvelsi gün",
"field-day-relative+-3": "Üç gün önce",
"dateFormatItem-MMMd": "dd MMM",
"dateFormatItem-MEd": "dd/MM E",
"dateFormatItem-yMMMM": "MMMM y",
"field-day": "Gün",
"days-format-wide": [
"Pazar",
"Pazartesi",
"Salı",
"Çarşamba",
"Perşembe",
"Cuma",
"Cumartesi"
],
"field-zone": "Saat Dilimi",
"dateFormatItem-y": "y",
"months-standAlone-narrow": [
"O",
"Ş",
"M",
"N",
"M",
"H",
"T",
"A",
"E",
"E",
"K",
"A"
],
"dateFormatItem-yyMM": "MM/yy",
"dateFormatItem-hm": "h:mm a",
"days-format-abbr": [
"Paz",
"Pzt",
"Sal",
"Çar",
"Per",
"Cum",
"Cmt"
],
"eraNames": [
"Milattan Önce",
"Milattan Sonra"
],
"days-format-narrow": [
"P",
"P",
"S",
"Ç",
"P",
"C",
"C"
],
"field-month": "Ay",
"days-standAlone-narrow": [
"P",
"P",
"S",
"Ç",
"P",
"C",
"C"
],
"dateFormatItem-MMM": "LLL",
"dayPeriods-format-wide-am": "AM",
"dateFormatItem-MMMMEd": "dd MMMM E",
"dateFormat-short": "dd.MM.yyyy",
"field-second": "Saniye",
"dateFormatItem-yMMMEd": "dd MMM y EEE",
"dateFormatItem-Ed": "d E",
"field-week": "Hafta",
"dateFormat-medium": "dd MMM y",
"dateFormatItem-mmss": "mm:ss",
"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
{
"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": "Gy/M",
"dateFormatItem-yQ": "Gy年QQQ",
"dayPeriods-format-wide-pm": "下午",
"dateFormatItem-MMMEd": "MMMd日E",
"dateTimeFormat-full": "{1}{0}",
"dateFormatItem-hms": "ah:mm:ss",
"dateFormatItem-yQQQ": "Gy年QQQ",
"dateFormatItem-MMdd": "MM/dd",
"dateFormatItem-MMM": "LLL",
"dayPeriods-format-wide-am": "上午",
"dateFormatItem-y": "Gy年",
"timeFormat-full": "zzzzah時mm分ss秒",
"dateFormatItem-yyyy": "y年",
"months-standAlone-abbr": [
"一月",
"二月",
"三月",
"四月",
"五月",
"六月",
"七月",
"八月",
"九月",
"十月",
"十一月",
"十二月"
],
"dateFormatItem-Ed": "d日(E)",
"dateFormatItem-yMMM": "Gy年M月",
"days-standAlone-narrow": [
"",
"",
"",
"",
"",
"",
""
],
"dateFormatItem-yyyyMMMM": "y年MMMM",
"dateFormat-long": "Gy年M月d日",
"timeFormat-medium": "ah:mm:ss",
"dateFormatItem-EEEd": "d EEE",
"dateFormatItem-Hm": "H:mm",
"dateFormatItem-yyMM": "Gyy/MM",
"dateFormat-medium": "Gy/M/d",
"dateFormatItem-Hms": "H:mm:ss",
"dateFormatItem-yyMMM": "Gyy年MMM",
"dateFormatItem-yMd": "Gy/M/d",
"dateFormatItem-ms": "mm:ss",
"dateTimeFormat-long": "{1}{0}",
"months-standAlone-wide": [
"一月",
"二月",
"三月",
"四月",
"五月",
"六月",
"七月",
"八月",
"九月",
"十月",
"十一月",
"十二月"
],
"dateFormatItem-MMMd": "MMMd日",
"dateFormatItem-yyQ": "Gyy年第Q季度",
"timeFormat-long": "zah時mm分ss秒",
"months-format-abbr": [
"1月",
"2月",
"3月",
"4月",
"5月",
"6月",
"7月",
"8月",
"9月",
"10月",
"11月",
"12月"
],
"dateFormatItem-H": "H時",
"timeFormat-short": "ah:mm",
"quarters-format-abbr": [
"1季",
"2季",
"3季",
"4季"
],
"dateFormatItem-MMMMdd": "MMMMdd日",
"days-format-abbr": [
"週日",
"週一",
"週二",
"週三",
"週四",
"週五",
"週六"
],
"dateFormatItem-M": "M月",
"dateFormatItem-yMMMd": "Gy年MMMd日",
"dateFormatItem-MEd": "M/d(E)",
"dateFormatItem-hm": "ah:mm",
"dateFormat-short": "Gy/M/d",
"dateFormatItem-yyyyM": "y年M月",
"dateFormatItem-yMMMEd": "Gy年M月d日EEE",
"dateFormat-full": "Gy年M月d日EEEE",
"dateFormatItem-Md": "M/d",
"dateFormatItem-yMEd": "Gy/M/d(EEE)",
"months-format-wide": [
"1月",
"2月",
"3月",
"4月",
"5月",
"6月",
"7月",
"8月",
"9月",
"10月",
"11月",
"12月"
],
"dateFormatItem-d": "d日",
"quarters-format-wide": [
"第1季",
"第2季",
"第3季",
"第4季"
],
"days-format-wide": [
"星期日",
"星期一",
"星期二",
"星期三",
"星期四",
"星期五",
"星期六"
],
"dateFormatItem-h": "ah時"
}
//end v1.x content
);
\ No newline at end of file
define(
//begin v1.x content
{
"HKD_displayName": "港幣",
"CHF_displayName": "瑞士法郎",
"CAD_displayName": "加幣",
"CNY_displayName": "人民幣",
"USD_symbol": "$",
"AUD_displayName": "澳幣",
"JPY_displayName": "日圓",
"CNY_symbol": "",
"GBP_displayName": "英鎊",
"EUR_displayName": "歐元"
}
//end v1.x content
);
\ No newline at end of file
define(
//begin v1.x content
{
"field-weekday": "週天",
"dateFormatItem-yQQQ": "y年QQQ",
"dateFormatItem-yMEd": "yyyy/M/d(EEE)",
"dateFormatItem-MMMEd": "MMMd日E",
"eraNarrow": [
"西元前",
"西元"
],
"dateFormat-long": "y年M月d日",
"months-format-wide": [
"1月",
"2月",
"3月",
"4月",
"5月",
"6月",
"7月",
"8月",
"9月",
"10月",
"11月",
"12月"
],
"dateTimeFormat-medium": "{1} {0}",
"dayPeriods-format-wide-pm": "下午",
"dateFormat-full": "y年M月d日EEEE",
"dateFormatItem-Md": "M/d",
"field-era": "年代",
"dateFormatItem-yM": "yyyy/M",
"months-standAlone-wide": [
"1月",
"2月",
"3月",
"4月",
"5月",
"6月",
"7月",
"8月",
"9月",
"10月",
"11月",
"12月"
],
"timeFormat-short": "ah:mm",
"quarters-format-wide": [
"第1季",
"第2季",
"第3季",
"第4季"
],
"timeFormat-long": "zah時mm分ss秒",
"field-year": "",
"dateFormatItem-yMMM": "y年M月",
"dateFormatItem-yQ": "y年QQQ",
"field-hour": "小時",
"dateFormatItem-MMdd": "MM/dd",
"months-format-abbr": [
"1月",
"2月",
"3月",
"4月",
"5月",
"6月",
"7月",
"8月",
"9月",
"10月",
"11月",
"12月"
],
"dateFormatItem-yyQ": "yy年第Q季度",
"timeFormat-full": "zzzzah時mm分ss秒",
"field-day-relative+0": "今天",
"field-day-relative+1": "明天",
"field-day-relative+2": "後天",
"dateFormatItem-H": "H時",
"field-day-relative+3": "大後天",
"months-standAlone-abbr": [
"一月",
"二月",
"三月",
"四月",
"五月",
"六月",
"七月",
"八月",
"九月",
"十月",
"十一月",
"十二月"
],
"quarters-format-abbr": [
"1季",
"2季",
"3季",
"4季"
],
"quarters-standAlone-wide": [
"第1季",
"第2季",
"第3季",
"第4季"
],
"dateFormatItem-M": "M月",
"days-standAlone-wide": [
"星期日",
"星期一",
"星期二",
"星期三",
"星期四",
"星期五",
"星期六"
],
"dateFormatItem-yyMMM": "yy年MMM",
"timeFormat-medium": "ah:mm:ss",
"dateFormatItem-Hm": "H: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": "昨天",
"dateFormatItem-h": "ah時",
"dateTimeFormat-long": "{1}{0}",
"field-day-relative+-2": "前天",
"field-day-relative+-3": "大前天",
"dateFormatItem-MMMd": "MMMd日",
"dateFormatItem-MEd": "M/d(E)",
"dateTimeFormat-full": "{1}{0}",
"field-day": "",
"days-format-wide": [
"星期日",
"星期一",
"星期二",
"星期三",
"星期四",
"星期五",
"星期六"
],
"field-zone": "區域",
"dateFormatItem-y": "y年",
"months-standAlone-narrow": [
"1",
"2",
"3",
"4",
"5",
"6",
"7",
"8",
"9",
"10",
"11",
"12"
],
"dateFormatItem-yyMM": "yy-MM",
"dateFormatItem-hm": "ah:mm",
"days-format-abbr": [
"週日",
"週一",
"週二",
"週三",
"週四",
"週五",
"週六"
],
"dateFormatItem-yMMMd": "y年MMMd日",
"eraNames": [
"西元前",
"西元"
],
"days-format-narrow": [
"",
"",
"",
"",
"",
"",
""
],
"field-month": "",
"days-standAlone-narrow": [
"",
"",
"",
"",
"",
"",
""
],
"dateFormatItem-MMM": "LLL",
"dayPeriods-format-wide-am": "上午",
"dateFormatItem-MMMMdd": "MMMMdd日",
"dateFormat-short": "yy/M/d",
"field-second": "",
"dateFormatItem-yMMMEd": "y年M月d日EEE",
"dateFormatItem-Ed": "d日(E)",
"field-week": "",
"dateFormat-medium": "yyyy/M/d",
"dateFormatItem-yyyyM": "y年M月",
"dateTimeFormat-short": "{1} {0}",
"dateFormatItem-Hms": "H:mm:ss",
"dateFormatItem-hms": "ah:mm:ss",
"dateFormatItem-yyyy": "y年"
}
//end v1.x content
);
\ No newline at end of file
define(
//begin v1.x content
{
"dateFormatItem-yM": "yyyy/M",
"dateFormatItem-yQ": "y年QQQ",
"dayPeriods-format-wide-pm": "下午",
"dateFormatItem-MMMEd": "MMMd日E",
"dateTimeFormat-full": "{1}{0}",
"dateFormatItem-hms": "ah:mm:ss",
"dateFormatItem-yQQQ": "y年QQQ",
"dateFormatItem-MMdd": "MM/dd",
"dateFormatItem-MMM": "LLL",
"dayPeriods-format-wide-am": "上午",
"dateFormatItem-y": "y年",
"timeFormat-full": "zzzzah時mm分ss秒",
"dateFormatItem-yyyy": "Gy年",
"dateFormatItem-Ed": "d日(E)",
"dateFormatItem-yMMM": "y年M月",
"days-standAlone-narrow": [
"",
"",
"",
"",
"",
"",
""
],
"dateFormat-long": "Gy年M月d日",
"timeFormat-medium": "ah:mm:ss",
"dateFormatItem-Hm": "H:mm",
"dateFormat-medium": "Gy/M/d",
"dateFormatItem-Hms": "H:mm:ss",
"dateFormatItem-ms": "mm:ss",
"dateTimeFormat-long": "{1}{0}",
"dateFormatItem-yyyyMd": "Gy/M/d",
"dateFormatItem-yyyyMMMd": "Gy年M月d日",
"dateFormatItem-MMMd": "MMMd日",
"timeFormat-long": "zah時mm分ss秒",
"timeFormat-short": "ah:mm",
"dateFormatItem-H": "H時",
"quarters-format-abbr": [
"1季",
"2季",
"3季",
"4季"
],
"days-format-abbr": [
"週日",
"週一",
"週二",
"週三",
"週四",
"週五",
"週六"
],
"dateFormatItem-MMMMdd": "MMMMdd日",
"dateFormatItem-M": "M月",
"dateFormatItem-MEd": "M/d(E)",
"dateFormatItem-hm": "ah:mm",
"dateFormat-short": "Gy/M/d",
"dateFormatItem-yyyyM": "Gy/M",
"dateFormatItem-yMMMEd": "y年M月d日EEE",
"dateFormat-full": "Gy年M月d日EEEE",
"dateFormatItem-Md": "M/d",
"dateFormatItem-yyyyQ": "Gy年QQQ",
"dateFormatItem-yMEd": "yyyy/M/d(EEE)",
"dateFormatItem-yyyyMMM": "Gy年M月",
"dateFormatItem-d": "d日",
"quarters-format-wide": [
"第1季",
"第2季",
"第3季",
"第4季"
],
"days-format-wide": [
"星期日",
"星期一",
"星期二",
"星期三",
"星期四",
"星期五",
"星期六"
],
"dateFormatItem-h": "ah時"
}
//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
{
"HKD_displayName": "港幣",
"HKD_symbol": "HK$",
"CAD_displayName": "加幣",
"CNY_displayName": "人民幣",
"USD_symbol": "$",
"AUD_displayName": "澳幣",
"JPY_displayName": "日圓",
"GBP_displayName": "英鎊",
"EUR_displayName": "歐元"
}
//end v1.x content
);
\ No newline at end of file
define(
//begin v1.x content
{
"dateFormatItem-yM": "yyyy/M",
"field-minute": "分鐘",
"eraNames": [
"西元前",
"西元"
],
"field-weekday": "週天",
"dateFormatItem-MMdd": "MM/dd",
"field-day-relative+-3": "大前天",
"months-standAlone-narrow": [
"1",
"2",
"3",
"4",
"5",
"6",
"7",
"8",
"9",
"10",
"11",
"12"
],
"dateTimeFormat-short": "{1} {0}",
"field-era": "年代",
"field-hour": "小時",
"dateTimeFormat-medium": "{1} {0}",
"quarters-standAlone-abbr": [
"第1季",
"第2季",
"第3季",
"第4季"
],
"timeFormat-full": "zzzzah時mm分ss秒",
"dateFormatItem-Ed": "d日(E)",
"dateFormatItem-yMMM": "y年M月",
"eraAbbr": [
"西元前",
"西元"
],
"field-day-relative+2": "後天",
"field-day-relative+3": "大後天",
"dateFormat-long": "y年M月d日",
"timeFormat-medium": "ah:mm:ss",
"field-zone": "區域",
"dateFormat-medium": "yyyy/M/d",
"quarters-standAlone-wide": [
"第1季",
"第2季",
"第3季",
"第4季"
],
"field-week": "",
"timeFormat-long": "zah時mm分ss秒",
"dateFormatItem-H": "H時",
"quarters-format-abbr": [
"第1季",
"第2季",
"第3季",
"第4季"
],
"field-second": "",
"dateFormatItem-MEd": "M/d(E)",
"dateFormat-short": "yy/M/d",
"dateFormatItem-yMMMEd": "y年M月d日EEE",
"dateFormat-full": "y年M月d日EEEE",
"dateFormatItem-Md": "M/d",
"dateFormatItem-yMEd": "yyyy/M/d(EEE)",
"quarters-format-wide": [
"第1季",
"第2季",
"第3季",
"第4季"
],
"eraNarrow": [
"西元前",
"西元"
],
"dateFormatItem-h": "ah時"
}
//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
{
"USD_symbol": "$",
"EUR_displayName": "歐元",
"HKD_displayName": "港幣",
"CAD_displayName": "加幣",
"JPY_displayName": "日圓",
"GBP_displayName": "英鎊",
"AUD_displayName": "澳幣",
"CNY_displayName": "人民幣"
}
//end v1.x content
);
\ No newline at end of file
define(
//begin v1.x content
{
"quarters-standAlone-wide": [
"第1季",
"第2季",
"第3季",
"第4季"
],
"quarters-format-abbr": [
"第1季",
"第2季",
"第3季",
"第4季"
],
"dateFormat-medium": "yyyy/M/d",
"field-second": "",
"quarters-standAlone-abbr": [
"第1季",
"第2季",
"第3季",
"第4季"
],
"dateFormatItem-MMdd": "MM/dd",
"dateFormatItem-MEd": "M/d(E)",
"dateFormatItem-yMEd": "yyyy/M/d(EEE)",
"field-week": "",
"dateFormatItem-H": "H時",
"eraNarrow": [
"西元前",
"西元"
],
"field-day-relative+-3": "大前天",
"timeFormat-full": "zzzzah時mm分ss秒",
"dateFormatItem-Md": "M/d",
"months-standAlone-narrow": [
"1",
"2",
"3",
"4",
"5",
"6",
"7",
"8",
"9",
"10",
"11",
"12"
],
"eraNames": [
"西元前",
"西元"
],
"field-minute": "分鐘",
"field-hour": "小時",
"field-day-relative+2": "後天",
"field-day-relative+3": "大後天",
"dateFormat-short": "yy/M/d",
"dateFormatItem-yMMMEd": "y年M月d日EEE",
"field-era": "年代",
"dateFormatItem-yM": "yyyy/M",
"timeFormat-long": "zah時mm分ss秒",
"eraAbbr": [
"西元前",
"西元"
],
"dateFormatItem-h": "ah時",
"dateFormatItem-yMMM": "y年M月",
"quarters-format-wide": [
"第1季",
"第2季",
"第3季",
"第4季"
],
"field-weekday": "週天",
"field-zone": "區域",
"dateFormatItem-Ed": "d日(E)"
}
//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
{
"months-format-narrow": [
"1月",
"2月",
"3月",
"4月",
"5月",
"6月",
"7月",
"8月",
"9月",
"10月",
"11月",
"12月"
],
"field-weekday": "周天",
"dateFormatItem-yQQQ": "y年QQQ",
"dateFormatItem-yMEd": "y年M月d日,E",
"dateFormatItem-MMMEd": "MMMd日E",
"eraNarrow": [
"公元前",
"公元"
],
"dayPeriods-format-wide-earlyMorning": "清晨",
"dayPeriods-format-wide-morning": "上午",
"dateFormat-long": "y年M月d日",
"months-format-wide": [
"1月",
"2月",
"3月",
"4月",
"5月",
"6月",
"7月",
"8月",
"9月",
"10月",
"11月",
"12月"
],
"dateTimeFormat-medium": "{1} {0}",
"dayPeriods-format-wide-pm": "下午",
"dateFormat-full": "y年M月d日EEEE",
"dateFormatItem-Md": "M-d",
"field-era": "时期",
"dateFormatItem-yM": "yyyy-M",
"months-standAlone-wide": [
"一月",
"二月",
"三月",
"四月",
"五月",
"六月",
"七月",
"八月",
"九月",
"十月",
"十一月",
"十二月"
],
"timeFormat-short": "ah:mm",
"quarters-format-wide": [
"第1季度",
"第2季度",
"第3季度",
"第4季度"
],
"timeFormat-long": "zah时mm分ss秒",
"field-year": "",
"dateFormatItem-yMMM": "y年MMM",
"dateFormatItem-yQ": "y年QQQ",
"dateFormatItem-yyyyMMMM": "y年MMMM",
"field-hour": "小时",
"dateFormatItem-MMdd": "MM-dd",
"months-format-abbr": [
"1月",
"2月",
"3月",
"4月",
"5月",
"6月",
"7月",
"8月",
"9月",
"10月",
"11月",
"12月"
],
"dateFormatItem-yyQ": "yy年第Q季度",
"timeFormat-full": "zzzzah时mm分ss秒",
"field-day-relative+0": "今天",
"field-day-relative+1": "明天",
"field-day-relative+2": "后天",
"dateFormatItem-H": "H时",
"months-standAlone-abbr": [
"一月",
"二月",
"三月",
"四月",
"五月",
"六月",
"七月",
"八月",
"九月",
"十月",
"十一月",
"十二月"
],
"quarters-format-abbr": [
"1季",
"2季",
"3季",
"4季"
],
"quarters-standAlone-wide": [
"第1季度",
"第2季度",
"第3季度",
"第4季度"
],
"dateFormatItem-M": "M月",
"days-standAlone-wide": [
"星期日",
"星期一",
"星期二",
"星期三",
"星期四",
"星期五",
"星期六"
],
"dateFormatItem-yyMMM": "yy年MMM",
"timeFormat-medium": "ah:mm:ss",
"dateFormatItem-Hm": "H:mm",
"quarters-standAlone-abbr": [
"1季",
"2季",
"3季",
"4季"
],
"eraAbbr": [
"公元前",
"公元"
],
"field-minute": "分钟",
"field-dayperiod": "上午/下午",
"days-standAlone-abbr": [
"周日",
"周一",
"周二",
"周三",
"周四",
"周五",
"周六"
],
"dayPeriods-format-wide-night": "晚上",
"dateFormatItem-d": "d日",
"dateFormatItem-ms": "mm:ss",
"field-day-relative+-1": "昨天",
"dateFormatItem-h": "ah时",
"dateTimeFormat-long": "{1}{0}",
"field-day-relative+-2": "前天",
"dateFormatItem-MMMd": "MMMd日",
"dayPeriods-format-wide-midDay": "中午",
"dateFormatItem-MEd": "M-dE",
"dateTimeFormat-full": "{1}{0}",
"field-day": "",
"days-format-wide": [
"星期日",
"星期一",
"星期二",
"星期三",
"星期四",
"星期五",
"星期六"
],
"field-zone": "区域",
"dateFormatItem-y": "y年",
"months-standAlone-narrow": [
"1月",
"2月",
"3月",
"4月",
"5月",
"6月",
"7月",
"8月",
"9月",
"10月",
"11月",
"12月"
],
"dateFormatItem-yyMM": "yy-MM",
"dateFormatItem-hm": "ah:mm",
"days-format-abbr": [
"周日",
"周一",
"周二",
"周三",
"周四",
"周五",
"周六"
],
"dateFormatItem-yMMMd": "y年MMMd日",
"eraNames": [
"公元前",
"公元"
],
"days-format-narrow": [
"",
"",
"",
"",
"",
"",
""
],
"field-month": "",
"days-standAlone-narrow": [
"",
"",
"",
"",
"",
"",
""
],
"dateFormatItem-MMM": "LLL",
"dayPeriods-format-wide-am": "上午",
"dateFormatItem-MMMMdd": "MMMMdd日",
"dayPeriods-format-wide-weeHours": "凌晨",
"dateFormat-short": "yy-M-d",
"dayPeriods-format-wide-afternoon": "下午",
"field-second": "秒钟",
"dateFormatItem-yMMMEd": "y年MMMd日EEE",
"dateFormatItem-Ed": "d日E",
"field-week": "",
"dateFormat-medium": "yyyy-M-d",
"dateFormatItem-yyyyM": "y年M月",
"dateTimeFormat-short": "{1} {0}",
"dateFormatItem-Hms": "H:mm:ss",
"dateFormatItem-hms": "ah:mm:ss",
"dateFormatItem-yyyy": "y年"
}
//end v1.x content
);
\ No newline at end of file
define(
//begin v1.x content
{
"decimalFormat": "#,##0.###",
"group": ",",
"scientificFormat": "#E0",
"percentFormat": "#,##0%",
"currencyFormat": "¤#,##0.00",
"decimal": "."
}
//end v1.x content
);
\ No newline at end of file
define(["../_base/lang", "../i18n"], function(lang, i18n) {
// module:
// dojo/cldr/supplemental
// summary:
// TODOC
var supplemental = lang.getObject("dojo.cldr.supplemental", true);
/*===== supplemental = dojo.cldr.supplemental =====*/
supplemental.getFirstDayOfWeek = function(/*String?*/locale){
// summary: Returns a zero-based index for first day of the week
// description:
// Returns a zero-based index for first day of the week, as used by the local (Gregorian) calendar.
// e.g. Sunday (returns 0), or Monday (returns 1)
// from http://www.unicode.org/cldr/data/common/supplemental/supplementalData.xml:supplementalData/weekData/firstDay
var firstDay = {/*default is 1=Monday*/
mv:5,
ae:6,af:6,bh:6,dj:6,dz:6,eg:6,er:6,et:6,iq:6,ir:6,jo:6,ke:6,kw:6,
ly:6,ma:6,om:6,qa:6,sa:6,sd:6,so:6,sy:6,tn:6,ye:6,
ar:0,as:0,az:0,bw:0,ca:0,cn:0,fo:0,ge:0,gl:0,gu:0,hk:0,
il:0,'in':0,jm:0,jp:0,kg:0,kr:0,la:0,mh:0,mn:0,mo:0,mp:0,
mt:0,nz:0,ph:0,pk:0,sg:0,th:0,tt:0,tw:0,um:0,us:0,uz:0,
vi:0,zw:0
// variant. do not use? gb:0,
};
var country = supplemental._region(locale);
var dow = firstDay[country];
return (dow === undefined) ? 1 : dow; /*Number*/
};
supplemental._region = function(/*String?*/locale){
locale = i18n.normalizeLocale(locale);
var tags = locale.split('-');
var region = tags[1];
if(!region){
// IE often gives language only (#2269)
// Arbitrary mappings of language-only locales to a country:
region = {de:"de", en:"us", es:"es", fi:"fi", fr:"fr", he:"il", hu:"hu", it:"it",
ja:"jp", ko:"kr", nl:"nl", pt:"br", sv:"se", zh:"cn"}[tags[0]];
}else if(region.length == 4){
// The ISO 3166 country code is usually in the second position, unless a
// 4-letter script is given. See http://www.ietf.org/rfc/rfc4646.txt
region = tags[2];
}
return region;
};
supplemental.getWeekend = function(/*String?*/locale){
// summary: Returns a hash containing the start and end days of the weekend
// description:
// Returns a hash containing the start and end days of the weekend according to local custom using locale,
// or by default in the user's locale.
// e.g. {start:6, end:0}
// from http://www.unicode.org/cldr/data/common/supplemental/supplementalData.xml:supplementalData/weekData/weekend{Start,End}
var weekendStart = {/*default is 6=Saturday*/
'in':0,
af:4,dz:4,ir:4,om:4,sa:4,ye:4,
ae:5,bh:5,eg:5,il:5,iq:5,jo:5,kw:5,ly:5,ma:5,qa:5,sd:5,sy:5,tn:5
};
var weekendEnd = {/*default is 0=Sunday*/
af:5,dz:5,ir:5,om:5,sa:5,ye:5,
ae:6,bh:5,eg:6,il:6,iq:6,jo:6,kw:6,ly:6,ma:6,qa:6,sd:6,sy:6,tn:6
};
var country = supplemental._region(locale);
var start = weekendStart[country];
var end = weekendEnd[country];
if(start === undefined){start=6;}
if(end === undefined){end=0;}
return {start:start, end:end}; /*Object {start,end}*/
};
return supplemental;
});
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
<div> <section>
<div class="create-todo"> <header id="header">
<input class="new-todo" data-dojo-attach-event="onkeypress:onKeyPress" placeholder="What needs to be done?" type="text"/> <h1>todos</h1>
<input id="new-todo" data-dojo-attach-event="onkeypress:onKeyPress" placeholder="What needs to be done?" type="text" autofocus>
<span class="ui-tooltip-top" style="display:none;">Press Enter to save this task</span> <span class="ui-tooltip-top" style="display:none;">Press Enter to save this task</span>
</div> </header>
<div class="todos"> <section id="main">
<ul class="todo-list" data-dojo-attach-point="todo_list" data-dojo-type="dojox.mvc.Repeat" data-dojo-props="ref: this.model.todos, exprchar: '#'"> <input id="toggle-all" data-dojo-attach-point="mark_all" data-dojo-attach-event="onclick:onMarkAll" type="checkbox">
<label for="toggle-all">Mark all as complete</label>
<ul id="todo-list" data-dojo-attach-point="todo_list" data-dojo-type="dojox.mvc.Repeat" data-dojo-props="ref: this.model.todos, exprchar: '#'">
<li data-dojo-type="dojox.mvc.Group" data-dojo-props="ref: '#{this.index}'"> <li data-dojo-type="dojox.mvc.Group" data-dojo-props="ref: '#{this.index}'">
<div class="todo"> <div class="view">
<input class="check" data-dojo-type="todo.form.CheckBox" data-dojo-props='ref: "isDone"' style="display:inline-block" > <label class="dijitInline inline_edit" data-dojo-type="todo.form.InlineEditBox"
<div class="todo-content dijitInline" data-dojo-type="dijit.InlineEditBox" data-dojo-props='ref: "title", editor:"dijit.form.TextBox", autosave:true'></label>
data-dojo-props='ref: "todo_text", editor:"dijit.form.TextBox", autosave:true, width:"420px", style:"width:420px;"'></div>
<span class="todo-destroy" data-model-id="#{this.index}"> <input class="toggle" type="checkbox" data-dojo-type="todo.form.CheckBox" data-dojo-props='ref: "completed"'>
</span> <button class="destroy" data-model-id="#{this.index}">
</button>
</div> </div>
</li> </li>
</ul> </ul>
</div> </section>
<div class="todo-stats" data-dojo-attach-point="todo_stats"> <footer id="footer" data-dojo-attach-point="todo_stats">
<span class="todo-count"> <span id="todo-count">
<span data-dojo-type="dojox.mvc.Output" data-dojo-props="ref: this.model.incomplete" class="number"></span> <strong>
<span class="word">items</span> left. <span data-dojo-type="dojox.mvc.Output" data-dojo-props="ref: this.model.incomplete" class="number"></span>
</strong>
<span class="word">item<span class="plural">s</span></span> left.
</span> </span>
<span class="todo-clear"> <!-- Remove this if you don't implement routing -->
<a href="#" data-dojo-attach-event="onclick:removeCompletedItems"> <ul id="filters">
Clear <li>
<span class="number-done" data-dojo-type="dojox.mvc.Output" data-dojo-props="ref: this.model.complete" ></span> <a class="selected" href="#/">All</a>
completed items </li>
</a> <li>
</span> <a href="#/active">Active</a>
</li>
</div> <li>
</div> <a href="#/completed">Completed</a>
</li>
</ul>
<button id="clear-completed" data-dojo-attach-event="onclick:removeCompletedItems">
Clear completed (
<span class="number-done" data-dojo-type="dojox.mvc.Output" data-dojo-props="ref: this.model.complete" ></span>
)
</button>
</footer>
</section>
...@@ -6,16 +6,23 @@ define(["dojo/_base/declare", ...@@ -6,16 +6,23 @@ define(["dojo/_base/declare",
// Parent classes // Parent classes
"dijit/_WidgetBase", "dijit/_TemplatedMixin", "dijit/_WidgetsInTemplateMixin", "dijit/_WidgetBase", "dijit/_TemplatedMixin", "dijit/_WidgetsInTemplateMixin",
// General application modules // General application modules
"dojo/_base/lang", "dojo/_base/event", "dojo/on", "dojo/dom-class", "dojo/dom-attr", "dojox/mvc", "todo/model/TodoModel", "dojo/_base/lang", "dojo/_base/event", "dojo/on", "dojo/dom-class", "dojo/dom-attr", "dojo/query", "dojo/string",
"dijit/_base/manager", "dojo/keys", "dojox/mvc", "dojo/hash", "dojo/_base/connect", "todo/model/TodoModel",
// Widget template // Widget template
"dojo/text!./app.html", "dojo/text!./app.html",
// Template Widgets // Template Widgets
"dijit/InlineEditBox", "todo/form/CheckBox", "dojox/mvc/Group", "dojox/mvc/Repeat", "dojox/mvc/Output"], "todo/form/InlineEditBox", "todo/form/CheckBox", "dojox/mvc/Group", "dojox/mvc/Repeat", "dojox/mvc/Output"],
function(declare, _WidgetBase, _TemplatedMixin, _WidgetsInTemplateMixin, lang, _event, on, domClass, domAttr, mvc, TodoModel, template) { function(declare, _WidgetBase, _TemplatedMixin, _WidgetsInTemplateMixin, lang, _event, on, domClass, domAttr,
query, str, manager, keys, mvc, hash, connect, TodoModel, template) {
return declare("todo.app", [_WidgetBase, _TemplatedMixin, _WidgetsInTemplateMixin], { return declare("todo.app", [_WidgetBase, _TemplatedMixin, _WidgetsInTemplateMixin], {
/** Widget template HTML string */
templateString: template, templateString: template,
/** Hash state constants */
ACTIVE: "/active",
COMPLETED: "/completed",
constructor: function () { constructor: function () {
/** /**
* Create new application Model class, this will be used to bind * Create new application Model class, this will be used to bind
...@@ -40,6 +47,9 @@ define(["dojo/_base/declare", ...@@ -40,6 +47,9 @@ define(["dojo/_base/declare",
window.onbeforeunload = lang.hitch(this, function () { window.onbeforeunload = lang.hitch(this, function () {
this.model.commit(); this.model.commit();
}); });
/** Connect to changes to the URI hash */
connect.subscribe("/dojo/hashchange", this, "onHashChange");
}, },
/** /**
...@@ -49,10 +59,20 @@ define(["dojo/_base/declare", ...@@ -49,10 +59,20 @@ define(["dojo/_base/declare",
* contents. * contents.
*/ */
postCreate: function () { postCreate: function () {
on(this.domNode, ".todo-destroy:click", lang.hitch(this, "onRemove")); on(this.domNode, ".destroy:click", lang.hitch(this, "onRemove"));
on(this.domNode, ".view:dblclick", lang.hitch(this, "onEdit"));
this.onItemStatusUpdate(); this.onItemStatusUpdate();
}, },
/**
* Ensure application state reflects current
* hash value after rendering model in the view.
*/
startup: function () {
this.inherited(arguments);
this.onHashChange(hash());
},
/** /**
* Remove all items that have been completed from * Remove all items that have been completed from
* model. We have to individually check each todo * model. We have to individually check each todo
...@@ -68,7 +88,7 @@ define(["dojo/_base/declare", ...@@ -68,7 +88,7 @@ define(["dojo/_base/declare",
* index and, instead, decrement the total item count. * index and, instead, decrement the total item count.
*/ */
while (idx < len) { while (idx < len) {
if (this.model.todos[idx].isDone.value) { if (this.model.todos[idx].completed.value) {
this.model.todos.remove(idx); this.model.todos.remove(idx);
len--; len--;
continue; continue;
...@@ -81,9 +101,9 @@ define(["dojo/_base/declare", ...@@ -81,9 +101,9 @@ define(["dojo/_base/declare",
* Add new a new todo item as the last element * Add new a new todo item as the last element
* in the parent model. * in the parent model.
*/ */
addToModel: function (content, isDone) { addToModel: function (content, completed) {
var insert = mvc.newStatefulModel({ var insert = mvc.newStatefulModel({
data: {todo_text: content, isDone: isDone} data: {title: content, completed: completed}
}); });
this.model.todos.add(this.model.todos.length, insert); this.model.todos.add(this.model.todos.length, insert);
...@@ -92,10 +112,32 @@ define(["dojo/_base/declare", ...@@ -92,10 +112,32 @@ define(["dojo/_base/declare",
/** /**
* Adjust CSS classes on todo-stats element based upon whether * Adjust CSS classes on todo-stats element based upon whether
* we a number of completed and incomplete todo items. * we a number of completed and incomplete todo items.
* Also verify state of the "Mark All" box.
*/ */
onItemStatusUpdate: function () { onItemStatusUpdate: function () {
domClass.toggle(this.todo_stats, "items_selected", this.model.complete.value > 0); var completed = this.model.complete.get("value"),
domClass.toggle(this.todo_stats, "items_present", this.model.todos.get("length")); length = this.model.todos.get("length");
domClass.toggle(this.domNode, "todos_selected", completed > 0);
domClass.toggle(this.domNode, "multiple", completed > 1);
domClass.toggle(this.domNode, "todos_present", length);
domAttr.set(this.mark_all, "checked", length && length === completed);
setTimeout(lang.hitch(this, "onHashChange", hash()));
},
/**
* Event fired when user selects the "Mark All" checkbox.
* Update selection state of all the todos based upon current
* checked value.
*/
onMarkAll: function () {
var checked = this.mark_all.checked;
for(var i = 0, len = this.model.todos.length; i < len; i++) {
this.model.todos[i].completed.set("value", checked);
}
}, },
/** /**
...@@ -104,7 +146,10 @@ define(["dojo/_base/declare", ...@@ -104,7 +146,10 @@ define(["dojo/_base/declare",
* text value as new todo item in the model. * text value as new todo item in the model.
*/ */
onKeyPress: function (event) { onKeyPress: function (event) {
if (event.keyCode !== 13) return; if (event.keyCode !== keys.ENTER ||
!str.trim(event.target.value).length) {
return;
}
this.addToModel(event.target.value, false); this.addToModel(event.target.value, false);
event.target.value = ""; event.target.value = "";
...@@ -115,9 +160,42 @@ define(["dojo/_base/declare", ...@@ -115,9 +160,42 @@ define(["dojo/_base/declare",
* Event handler when user has clicked to * Event handler when user has clicked to
* remove a todo item, just remove it from the * remove a todo item, just remove it from the
* model using the item identifier. * model using the item identifier.
**/ */
onRemove: function (event) { onRemove: function (event) {
this.model.todos.remove(domAttr.get(event.target, "data-model-id")); this.model.todos.remove(domAttr.get(event.target, "data-model-id"));
},
/**
* Whenever the user double clicks the item label,
* set inline edit box to true.
*/
onEdit: function (event) {
query(".inline_edit", event.target).forEach(function (inline_edit) {
manager.byNode(inline_edit).edit();
});
},
/**
* When the URI's hash value changes, modify the
* displayed list items to show either completed,
* remaining or all tasks.
* Also highlight currently selected link value.
*/
onHashChange: function (hash) {
var showIfDone = (hash === this.COMPLETED ? false :
(hash === this.ACTIVE? true : null));
query("#todo-list > li").forEach(lang.hitch(this, function (item, idx) {
var done = this.model.todos[idx].completed.get("value");
domClass.toggle(item, "hidden", done === showIfDone);
}));
/** Normalise hash value to match link hrefs */
hash = "#" + (showIfDone !== null ? hash : "/");
query("#filters a").forEach(lang.hitch(this, function (link) {
domClass.toggle(link, "selected", domAttr.get(link, "href") === hash);
}));
} }
}); });
}); });
/**
* Extension to the "InlineEditBox" widget to support editing on double click
* events rather than single clicks. We need to override base "postMixInProperties"
* lifecycle method where the event handlers are setup. This method is just a clone
* of that code with the modified event list.
*/
define([
"dijit/InlineEditBox",
"dojo/_base/declare",
"dojo/_base/lang",
"dojo/dom-class"
], function (InlineEditBox, declare, lang, domClass) {
InlineEditBox._InlineEditor.prototype._onChange = function () {
if(this.inlineEditBox.autoSave && this.inlineEditBox.editing && this.enableSave()){
this._onBlur();
}
};
return declare("todo.form.InlineEditBox", InlineEditBox, {
postMixInProperties: function () {
// save pointer to original source node, since Widget nulls-out srcNodeRef
this.displayNode = this.srcNodeRef;
// connect handlers to the display node
var events = {
ondblclick: "_onClick",
onmouseover: "_onMouseOver",
onmouseout: "_onMouseOut",
onfocus: "_onMouseOver",
onblur: "_onMouseOut"
};
for(var name in events){
this.connect(this.displayNode, name, events[name]);
}
this.displayNode.setAttribute("role", "button");
if(!this.displayNode.getAttribute("tabIndex")){
this.displayNode.setAttribute("tabIndex", 0);
}
if(!this.value && !("value" in this.params)){ // "" is a good value if specified directly so check params){
this.value = lang.trim(this.renderAsHtml ? this.displayNode.innerHTML :
(this.displayNode.innerText||this.displayNode.textContent||""));
}
if(!this.value){
this.displayNode.innerHTML = this.noValueIndicator;
}
domClass.add(this.displayNode, 'dijitInlineEditBoxDisplayMode');
},
_onChange: function () {
this.inherited(arguments);
this._onBlur();
}
});
});
...@@ -7,7 +7,7 @@ define(["dojo/_base/declare", "dojox/mvc/StatefulModel", "todo/store/LocalStorag ...@@ -7,7 +7,7 @@ define(["dojo/_base/declare", "dojox/mvc/StatefulModel", "todo/store/LocalStorag
* items found in localStorage. * items found in localStorage.
*/ */
data: { data: {
id: "local_storage_todos", id: "todos-dojo",
todos : [], todos : [],
incomplete: 0, incomplete: 0,
complete: 0 complete: 0
...@@ -47,9 +47,9 @@ define(["dojo/_base/declare", "dojox/mvc/StatefulModel", "todo/store/LocalStorag ...@@ -47,9 +47,9 @@ define(["dojo/_base/declare", "dojox/mvc/StatefulModel", "todo/store/LocalStorag
/** /**
* Bind all pre-populated todo items to update the * Bind all pre-populated todo items to update the
* total item values when the "isDone" attribute is changed. * total item values when the "completed" attribute is changed.
*/ */
array.forEach(this.todos, lang.hitch(this, "bindIsDone")); array.forEach(this.todos, lang.hitch(this, "bindItemProps"));
/** /**
* Whenever the "todos" array is modified, an element is added * Whenever the "todos" array is modified, an element is added
...@@ -64,21 +64,41 @@ define(["dojo/_base/declare", "dojox/mvc/StatefulModel", "todo/store/LocalStorag ...@@ -64,21 +64,41 @@ define(["dojo/_base/declare", "dojox/mvc/StatefulModel", "todo/store/LocalStorag
* Set up binding on a todo item, so that when the * Set up binding on a todo item, so that when the
* item's checked attribute changes, we re-calculate * item's checked attribute changes, we re-calculate
* the composite model attribute's value, "complete". * the composite model attribute's value, "complete".
*
* We also need to remove any tasks with empty titles.
*/ */
bindIsDone: function (item) { bindItemProps: function (item) {
mvc.bindInputs([item.isDone], lang.hitch(this, "updateTotalItemsLeft")); mvc.bindInputs([item.completed], lang.hitch(this, "updateTotalItemsLeft"));
mvc.bindInputs([item.title], lang.hitch(window, setTimeout, lang.hitch(this, "deleteEmptyTasks")));
},
/**
* Search through current tasks list, removing all
* with empty titles.
*/
deleteEmptyTasks: function () {
var len = this.todos.length, idx = 0;
while (idx < len) {
if (!this.todos[idx].title.value.length) {
this.todos.remove(idx);
len--;
continue;
}
idx++;
}
}, },
/** /**
* When todos array is modified, we need to update the composite * When todos array is modified, we need to update the composite
* value attributes. If the modification was an addition, ensure the * value attributes. If the modification was an addition, ensure the
* "isDone" attribute is being watched for updates. * "completed" attribute is being watched for updates.
*/ */
onTodosModelChange: function (prop, oldValue, newValue) { onTodosModelChange: function (prop, oldValue, newValue) {
this.updateTotalItemsLeft(); this.updateTotalItemsLeft();
if (typeof prop === "number" && !oldValue && newValue) { if (typeof prop === "number" && !oldValue && newValue) {
this.bindIsDone(newValue); this.bindItemProps(newValue);
} }
}, },
...@@ -89,7 +109,7 @@ define(["dojo/_base/declare", "dojox/mvc/StatefulModel", "todo/store/LocalStorag ...@@ -89,7 +109,7 @@ define(["dojo/_base/declare", "dojox/mvc/StatefulModel", "todo/store/LocalStorag
*/ */
updateTotalItemsLeft: function () { updateTotalItemsLeft: function () {
this.incomplete.set("value", array.filter(this.todos, function (item) { this.incomplete.set("value", array.filter(this.todos, function (item) {
return item && !item.isDone.value; return item && !item.completed.value;
}).length); }).length);
} }
}); });
......
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