Skip to content

Commit

Permalink
feat #1767 Adding Slovak date resources
Browse files Browse the repository at this point in the history
This commit adds partial support for the Slovak language, which can be
used to make aria.utils.Date.format return formatted dates in Slovak.

close #1767
PTR 13478709
  • Loading branch information
divdavem committed Jun 2, 2017
1 parent ceda967 commit 0aaa535
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 0 deletions.
1 change: 1 addition & 0 deletions build/config/locales.json
Expand Up @@ -29,6 +29,7 @@
"pt_PT",
"ro_RO",
"ru_RU",
"sk_SK",
"sv_SE",
"th_TH",
"tk_TK",
Expand Down
49 changes: 49 additions & 0 deletions src/aria/resources/DateRes_sk_SK.js
@@ -0,0 +1,49 @@
/*
* Copyright 2012 Amadeus s.a.s.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

/**
* DO NOT FORMAT
* Aria resource object for dates sk_SK
*/
Aria.resourcesDefinition({
$classpath : 'aria.resources.DateRes',
$resources : {
day : [
"nedeľa",
"pondelok",
"utorok",
"streda",
"štvrtok",
"piatok",
"sobota"
],
dayShort : false,
monthShort : false,
month : [
"január",
"február",
"marec",
"apríl",
"máj",
"jún",
"júl",
"august",
"september",
"október",
"november",
"december"
]
}
});

0 comments on commit 0aaa535

Please sign in to comment.