Skip to content

Commit

Permalink
feat #1476 Addition of resources for Czech language (cs_CZ)
Browse files Browse the repository at this point in the history
close #1476
  • Loading branch information
divdavem committed Jun 3, 2015
1 parent 1f6be79 commit 7bed392
Show file tree
Hide file tree
Showing 4 changed files with 103 additions and 0 deletions.
1 change: 1 addition & 0 deletions build/config/locales.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"ar_SA",
"az_AZ",
"ca_ES",
"cs_CZ",
"da_DK",
"de_DE",
"el_GR",
Expand Down
25 changes: 25 additions & 0 deletions src/aria/resources/CalendarRes_cs_CZ.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
/*
* 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.
*/

/**
* Aria resource object for calendar cs_CZ
*/
Aria.resourcesDefinition({
$classpath : 'aria.resources.CalendarRes',
$resources : {
today : "Dnes",
selectedDate : "Zvolené datum"
}
});
51 changes: 51 additions & 0 deletions src/aria/resources/DateRes_cs_CZ.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
/*
* 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 cs_CZ
*/
Aria.resourcesDefinition({
$classpath : 'aria.resources.DateRes',
$resources : {
day : [
"Neděle",
"Pondělí",
"Úterý",
"Středa",
"Čtvrtek",
"Pátek",
"Sobota"
],
// a false value for the following items mean: use substring
// to generate the short versions of days or months
dayShort : false,
monthShort : false,
month : [
"Leden",
"Únor",
"Březen",
"Duben",
"Květen",
"Červen",
"Červenec",
"Srpen",
"Zaří",
"Říjen",
"Listopad",
"Prosinec"
]
}
});
26 changes: 26 additions & 0 deletions src/aria/resources/multiselect/FooterRes_cs_CZ.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
/*
* 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.
*/

/**
* Aria resource object for multiselect footer cs_CZ (Czech)
*/
Aria.resourcesDefinition({
$classpath : 'aria.resources.multiselect.FooterRes',
$resources : {
selectAll : "Vybrat vše",
deselectAll : "Zrušit výběr všech",
close : "Zavřít"
}
});

0 comments on commit 7bed392

Please sign in to comment.