72 lines
No EOL
2.5 KiB
JavaScript
72 lines
No EOL
2.5 KiB
JavaScript
/*
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
(function() {
|
|
'use strict';
|
|
var es_isch = {1: [1, 2, 4, 5, 6, 7]};
|
|
var genau = {3: [7, 8, 9, 10, 11]};
|
|
var ab = {4: [4, 5]};
|
|
var vor = {4: [1, 2, 3]};
|
|
var haubi = {4: [7, 8, 9, 10, 11]};
|
|
var fuef = {1: [9, 10, 11]};
|
|
var zae = {2: [9, 10, 11]};
|
|
var viertu = {2: [1, 2, 3, 4, 5, 6]};
|
|
var zwaenzg = {3: [1, 2, 3, 4, 5, 6]};
|
|
var layout = {
|
|
"version": 2,
|
|
"language": 'Bärndütsch (genau)',
|
|
"letters": [
|
|
'ESKISCHAFÜF',
|
|
'VIERTUBFZÄÄ',
|
|
'ZWÄNZGGENAU',
|
|
'VORABOHAUBI',
|
|
'EISZWÖISDRÜ',
|
|
'VIERIFÜFIQT',
|
|
'SÄCHSISIBNI',
|
|
'ACHTINÜNIEL',
|
|
'ZÄNIERBEUFI',
|
|
'ZWÖUFINAUHR'
|
|
],
|
|
"permanent": es_isch,
|
|
"minutes": {
|
|
"0": genau,
|
|
"5,6,7,8,9": [fuef, ab],
|
|
"10,11,12,13,14": [zae, ab],
|
|
"15,16,17,18,19": [viertu, ab],
|
|
"20,21,22,23,24": [zwaenzg, ab],
|
|
"25,26,27,28,29": [fuef, vor, haubi],
|
|
"30,31,32,33,34": haubi,
|
|
"35,36,37,38,39": [fuef, ab, haubi],
|
|
"40,41,42,43,44": [zwaenzg, vor],
|
|
"45,46,47,48,49": [viertu, vor],
|
|
"50,51,52,53,54": [zae, vor],
|
|
"55,56,57,58,59": [fuef, vor]
|
|
},
|
|
"hours": {
|
|
"0,12": {10: [1, 2, 3, 4, 5, 6]},
|
|
"1,13": {5: [1, 2, 3]},
|
|
"2,14": {5: [4, 5, 6, 7]},
|
|
"3,15": {5: [9, 10, 11]},
|
|
"4,16": {6: [1, 2, 3, 4, 5]},
|
|
"5,17": {6: [6, 7, 8, 9]},
|
|
"6,18": {7: [1, 2, 3, 4, 5, 6]},
|
|
"7,19": {7: [7, 8, 9, 10, 11]},
|
|
"8,20": {8: [1, 2, 3, 4, 5]},
|
|
"9,21": {8: [6, 7, 8, 9]},
|
|
"10,22": {9: [1, 2, 3, 4]},
|
|
"11,23": {9: [8, 9, 10, 11]}
|
|
}
|
|
};
|
|
$.fritteli.uhr.register('de_CH_genau', layout);
|
|
}()); |