Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 8 additions & 6 deletions src/js/jquery.countdown-hy.js
Original file line number Diff line number Diff line change
@@ -1,16 +1,18 @@
/* http://keith-wood.name/countdown.html
* Armenian initialisation for the jQuery countdown extension
* Written by Artur Martirosyan. (artur{at}zoom.am) October 2011. */
* Written by Artur Martirosyan. (artur{at}zoom.am) October 2011.
* Edited By Arsen Hovhannisyan. ([email protected]) Jul 2019. */
(function($) {
'use strict';
$.countdown.regionalOptions.hy = {
labels: ['Տարի','Ամիս','Շաբաթ','Օր','Ժամ','Րոպե','Վարկյան'],
labels1: ['Տարի','Ամիս','Շաբաթ','Օր','Ժամ','Րոպե','Վարկյան'],
compactLabels: ['տ','ա','շ','օ'],
$.countdown.regionalOptions.am = {
labels: ['Տարի','Ամիս','Շաբաթ','Օր','Ժամ','Րոպե','Վայրկյան'],
labels1: ['Տարի','Ամիս','Շաբաթ','Օր','Ժամ','Րոպե','Վայրկյան'],
labels2: ['Տարի','Ամիս','Շաբաթ','Օր','Ժամ','Րոպե','Վայրկյան'],
compactLabels: ['տ','ա','շ','օ'],
whichLabels: null,
digits: ['0','1','2','3','4','5','6','7','8','9'],
timeSeparator: ':',
isRTL: false
};
$.countdown.setDefaults($.countdown.regionalOptions.hy);
$.countdown.setDefaults($.countdown.regionalOptions.am);
})(jQuery);