2013-11-27 11:12:50 +01:00
|
|
|
/*
|
2014-07-03 21:06:06 +02:00
|
|
|
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.
|
2013-11-27 11:12:50 +01:00
|
|
|
|
2014-07-03 21:06:06 +02:00
|
|
|
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.
|
2013-11-27 11:12:50 +01:00
|
|
|
|
2014-07-03 21:06:06 +02:00
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
2014-08-26 17:49:23 +02:00
|
|
|
(function() {
|
2014-07-03 20:37:34 +02:00
|
|
|
'use strict';
|
2014-07-03 21:06:06 +02:00
|
|
|
var es_ist = {1: [1, 2, 4, 5, 6]};
|
|
|
|
var uhr = {10: [9, 10, 11]};
|
|
|
|
var nach = {4: [8, 9, 10, 11]};
|
|
|
|
var vor = {4: [1, 2, 3]};
|
|
|
|
var halb = {5: [1, 2, 3, 4]};
|
|
|
|
var fuenf = {1: [8, 9, 10, 11]};
|
|
|
|
var zehn = {2: [1, 2, 3, 4]};
|
|
|
|
var viertel = {3: [5, 6, 7, 8, 9, 10, 11]};
|
|
|
|
var zwanzig = {2: [5, 6, 7, 8, 9, 10, 11]};
|
|
|
|
var dreiviertel = {3: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]};
|
|
|
|
|
2014-07-03 20:37:34 +02:00
|
|
|
var layout = {
|
|
|
|
"version": 2,
|
|
|
|
"language": 'Deutsch',
|
|
|
|
"letters": [
|
|
|
|
'ESKISTAFÜNF',
|
|
|
|
'ZEHNZWANZIG',
|
|
|
|
'DREIVIERTEL',
|
|
|
|
'VORFUNKNACH',
|
|
|
|
'HALBAELFÜNF',
|
|
|
|
'EINSXAMZWEI',
|
|
|
|
'DREIPMJVIER',
|
|
|
|
'SECHSNLACHT',
|
|
|
|
'SIEBENZWÖLF',
|
|
|
|
'ZEHNEUNKUHR'
|
|
|
|
],
|
2014-07-03 21:06:06 +02:00
|
|
|
"permanent": es_ist,
|
2014-07-03 20:37:34 +02:00
|
|
|
"minutes": {
|
2014-07-03 21:06:06 +02:00
|
|
|
"0,1,2,3,4": uhr,
|
|
|
|
"5,6,7,8,9": [fuenf, nach],
|
|
|
|
"10,11,12,13,14": [zehn, nach],
|
|
|
|
"15,16,17,18,19": [viertel, nach],
|
|
|
|
"20,21,22,23,24": [zwanzig, nach],
|
|
|
|
"25,26,27,28,29": [fuenf, vor, halb],
|
|
|
|
"30,31,32,33,34": halb,
|
|
|
|
"35,36,37,38,39": [fuenf, nach, halb],
|
|
|
|
"40,41,42,43,44": [zwanzig, vor],
|
|
|
|
"45,46,47,48,49": dreiviertel,
|
|
|
|
"50,51,52,53,54": [zehn, vor],
|
|
|
|
"55,56,57,58,59": [fuenf, vor]
|
2014-07-03 20:37:34 +02:00
|
|
|
},
|
|
|
|
"hours": {
|
2014-07-03 21:06:06 +02:00
|
|
|
"0,12": {9: [7, 8, 9, 10, 11]},
|
|
|
|
"1,13": {6: [1, 2, 3, 4]},
|
|
|
|
"2,14": {6: [8, 9, 10, 11]},
|
|
|
|
"3,15": {7: [1, 2, 3, 4]},
|
|
|
|
"4,16": {7: [8, 9, 10, 11]},
|
|
|
|
"5,17": {5: [8, 9, 10, 11]},
|
|
|
|
"6,18": {8: [1, 2, 3, 4, 5]},
|
|
|
|
"7,19": {9: [1, 2, 3, 4, 5, 6]},
|
|
|
|
"8,20": {8: [8, 9, 10, 11]},
|
|
|
|
"9,21": {10: [4, 5, 6, 7]},
|
|
|
|
"10,22": {10: [1, 2, 3, 4]},
|
|
|
|
"11,23": {5: [6, 7, 8]}
|
2014-07-03 20:37:34 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
$.fritteli.uhr.register('de', layout);
|
|
|
|
}());
|