Rename Czech locale from cz to cs as per ISO 639-1

This commit is contained in:
Dan Rice 2013-02-05 10:53:00 -05:00
parent c09da9cb1c
commit aba222ff41
3 changed files with 11 additions and 11 deletions

View file

@ -1,5 +1,5 @@
--- ---
cz: cs:
activerecord: activerecord:
attributes: attributes:
note: note:

View file

@ -228,11 +228,11 @@ Feature: Show done
| all done actions page for context "@pc" | fr | | all done actions page for context "@pc" | fr |
| all done actions page for project "test project"| fr | | all done actions page for project "test project"| fr |
| all done actions page for tag "starred" | fr | | all done actions page for tag "starred" | fr |
| done actions page | cz | | done actions page | cs |
| all done actions page | cz | | all done actions page | cs |
| done actions page for context "@pc" | cz | | done actions page for context "@pc" | cs |
| done actions page for project "test project" | cz | | done actions page for project "test project" | cs |
| done actions page for tag "starred" | cz | | done actions page for tag "starred" | cs |
| all done actions page for context "@pc" | cz | | all done actions page for context "@pc" | cs |
| all done actions page for project "test project"| cz | | all done actions page for project "test project"| cs |
| all done actions page for tag "starred" | cz | | all done actions page for tag "starred" | cs |

View file

@ -1,7 +1,7 @@
/* Czech initialisation for the jQuery UI date picker plugin. */ /* Czech initialisation for the jQuery UI date picker plugin. */
/* Written by Pavel Župa (pavel.zupa@gmail.com). */ /* Written by Pavel Župa (pavel.zupa@gmail.com). */
jQuery(function($){ jQuery(function($){
$.datepicker.regional['cz'] = { $.datepicker.regional['cs'] = {
closeText: 'zavřít', closeText: 'zavřít',
prevText: 'předchozí', prevText: 'předchozí',
nextText: 'další', nextText: 'další',
@ -19,5 +19,5 @@ jQuery(function($){
isRTL: false, isRTL: false,
showMonthAfterYear: false, showMonthAfterYear: false,
yearSuffix: ''}; yearSuffix: ''};
$.datepicker.setDefaults($.datepicker.regional['cz']); $.datepicker.setDefaults($.datepicker.regional['cs']);
}); });