Created
December 8, 2011 09:44
Revisions
-
caillou revised this gist
Dec 14, 2011 . 1 changed file with 5 additions and 5 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -56,11 +56,11 @@ langs = { last: 'lo scorso %weekday alle %time' }, "kr" : { today: '오늘 %time', tomorrow: '내일 %time', next: '%weekday %time', yesterday: '어제 %time', last: '지난주 %weekday %time' }, "nb" : { today: 'I dag klokken %time', -
caillou revised this gist
Dec 12, 2011 . 1 changed file with 15 additions and 5 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -25,11 +25,21 @@ langs = { last: 'last %weekday at %time' // e.g. last Sunday at 13:45 }, "es" : { today: function () { return 'hoy a la' + ((this.hours() !== 1) ? 's' : '') + ' %time'; }, tomorrow: function () { return 'mañana a la' + ((this.hours() !== 1) ? 's' : '') + ' %time'; }, next: function () { return '%weekday a la' + ((this.hours() !== 1) ? 's' : '') + ' %time'; }, yesterday: function () { return 'ayer a la' + ((this.hours() !== 1) ? 's' : '') + ' %time'; }, last: function () { return 'el %weekday pasado a la' + ((this.hours() !== 1) ? 's' : '') + ' %time'; } }, "fr" : { today: "ajourd'hui à %time", -
caillou revised this gist
Dec 12, 2011 . 1 changed file with 11 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -78,7 +78,17 @@ langs = { tomorrow: 'Amanhã às %time', next: '%weekday às %time', yesterday: 'Ontem às %time', last: function () { var weekday = parseInt(this.format('d'), 10); if (weekday < 5) { // Mo - Fr return 'Última %weekday às %time'; } else { // Sa + Su return 'Último %weekday às %time'; } } }, "ru" : { today: 'Сегодня в %time', -
caillou revised this gist
Dec 12, 2011 . 1 changed file with 5 additions and 5 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -74,11 +74,11 @@ langs = { last: 'W zeszły/łą %weekday o %time' // e.g. last Sunday at 13:45 }, "pt" : { today: 'Hoje às %time', tomorrow: 'Amanhã às %time', next: '%weekday às %time', yesterday: 'Ontem às %time', last: 'Último(a) %weekday às %time' }, "ru" : { today: 'Сегодня в %time', -
marijn revised this gist
Dec 11, 2011 . 1 changed file with 5 additions and 5 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -60,11 +60,11 @@ langs = { last: 'Forrige %weekday klokken %time' }, "nl" : { today: 'Vandaag om %time', tomorrow: 'Morgen om %time', next: '%weekday om %time', // e.g. Friday at 13:45 yesterday: 'Gisteren om %time', last: 'afgelopen %weekday om %time' // e.g. last Sunday at 13:45 }, "pl" : { today: 'Dziś o %time', -
caillou revised this gist
Dec 11, 2011 . 1 changed file with 5 additions and 12 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -53,11 +53,11 @@ langs = { last: '' }, "nb" : { today: 'I dag klokken %time', tomorrow: 'I morgen klokken %time', next: '%weekday klokken %time', yesterday: 'I går klokken %time', last: 'Forrige %weekday klokken %time' }, "nl" : { today: '', @@ -125,12 +125,5 @@ langs = { next: '%weekday klockan %time', yesterday: 'Igår klockan %time', last: 'Förra %weekdayen klockan %time' } }; -
caillou revised this gist
Dec 11, 2011 . 1 changed file with 7 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -125,5 +125,12 @@ langs = { next: '%weekday klockan %time', yesterday: 'Igår klockan %time', last: 'Förra %weekdayen klockan %time' }, "nb" : { today: 'I dag klokken %time', tomorrow: 'I morgen klokken %time', next: '%weekday klokken %time', yesterday: 'I går klokken %time', last: 'Forrige %weekday klokken %time' } }; -
Ivan Krechetov revised this gist
Dec 11, 2011 . 1 changed file with 3 additions and 3 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -109,10 +109,10 @@ langs = { lastArray = [ 'В прошлый понедельник в %time', 'В прошлый вторник в %time', 'В прошлую среду в %time', 'В прошлый четверг в %time', 'В прошлую пятницу в %time', 'В прошлую субботу в %time', 'В прошлое воскресенье в %time' ]; -
rexxars revised this gist
Dec 11, 2011 . 1 changed file with 7 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -125,5 +125,12 @@ langs = { next: '%weekday klockan %time', yesterday: 'Igår klockan %time', last: 'Förra %weekdayen klockan %time' }, "nb" : { today: 'I dag klokken %time', tomorrow: 'I morgen klokken %time', next: '%weekday klokken %time', yesterday: 'I går klokken %time', last: 'Forrige %weekday klokken %time' } }; -
caillou revised this gist
Dec 11, 2011 . 1 changed file with 34 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -83,9 +83,41 @@ langs = { "ru" : { today: 'Сегодня в %time', tomorrow: 'Завтра в %time', next: function () { var nextArray, weekday; weekday = parseInt(this.format('d'), 10); nextArray = [ 'В понедельник в %time', 'Во вторник в %time', 'В среду в %time', 'В четверг в %time', 'В пятницу в %time', 'В субботу в %time', 'В воскресенье в %time' ]; return nextArray[weekday]; }, yesterday: 'Вчера в %time', last: function () { var lastArray, weekday; weekday = parseInt(this.format('d'), 10); lastArray = [ 'В прошлый понедельник в %time', 'В прошлый вторник в %time', 'В прошлую среду* в %time', 'В прошлый четверг в %time', 'В прошлую пятницу** в %time', 'В прошлую субботу*** в %time', 'В прошлое воскресенье в %time' ]; return lastArray[weekday]; } }, "sv" : { today: 'Idag klockan %time', -
caillou revised this gist
Dec 11, 2011 . 1 changed file with 24 additions and 20 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,93 +1,97 @@ /*jslint white: false */ var langs; langs = { "de" : { today: "heute um %time", tomorrow: 'morgen um %time', next: '%weekday um %time', yesterday: 'gestern um %time', last: 'letzten %weekday um %time' }, "en" : { today: 'Today at %time', tomorrow: 'Tomorrow at %time', next: '%weekday at %time', // e.g. Friday at 13:45 yesterday: 'Yesterday at %time', last: 'last %weekday at %time' // e.g. last Sunday at 13:45 }, "en-GB" : { today: 'Today at %time', tomorrow: 'Tomorrow at %time', next: '%weekday at %time', // e.g. Friday at 13:45 yesterday: 'Yesterday at %time', last: 'last %weekday at %time' // e.g. last Sunday at 13:45 }, "es" : { today: 'hoy a las %time', tomorrow: 'mañana a las %time', next: '%weekday a las %time', yesterday: 'ayer a las %time', last: 'el %weekday pasado a las %time' }, "fr" : { today: "ajourd'hui à %time", tomorrow: 'demain à %time', next: '%weekday à %time', yesterday: 'hier à %time', last: '%weekday denier à %time' }, "it" : { today: 'Oggi alle %time', tomorrow: 'Domani alle %time', next: '%weekday alle %time', yesterday: 'Ieri alle %time', last: 'lo scorso %weekday alle %time' }, "kr" : { today: '', tomorrow: '', next: '', yesterday: '', last: '' }, "nb" : { today: '', tomorrow: '', next: '', yesterday: '', last: '' }, "nl" : { today: '', tomorrow: '', next: '', yesterday: '', last: '' }, "pl" : { today: 'Dziś o %time', tomorrow: 'Jutro o %time', next: 'W %weekday o %time', // e.g. Friday at 13:45 yesterday: 'Wczoraj o %time', last: 'W zeszły/łą %weekday o %time' // e.g. last Sunday at 13:45 }, "pt" : { today: '', tomorrow: '', next: '', yesterday: '', last: '' }, "ru" : { today: 'Сегодня в %time', tomorrow: 'Завтра в %time', next: 'В(о) %weekday в %time', yesterday: 'Вчера в %time', last: 'В прошлый(-ую, -ое) %weekday в %time' }, "sv" : { today: 'Idag klockan %time', tomorrow: 'Imorgon klockan %time', next: '%weekday klockan %time', yesterday: 'Igår klockan %time', last: 'Förra %weekdayen klockan %time' } }; -
caillou revised this gist
Dec 8, 2011 . 1 changed file with 6 additions and 13 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -6,13 +6,6 @@ yesterday: 'gestern um %time', last: 'letzten %weekday um %time' }, en: { today: 'Today at %time', tomorrow: 'Tomorrow at %time', @@ -41,12 +34,12 @@ yesterday: 'hier à %time', last: '%weekday denier à %time' }, it: { today: 'Oggi alle %time', tomorrow: 'Domani alle %time', next: '%weekday alle %time', yesterday: 'Ieri alle %time', last: 'lo scorso %weekday alle %time' }, kr : { today: '', -
caillou revised this gist
Dec 8, 2011 . 1 changed file with 5 additions and 5 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -91,10 +91,10 @@ last: '' }, sv : { today: 'Idag klockan %time', tomorrow: 'Imorgon klockan %time', next: '%weekday klockan %time', yesterday: 'Igår klockan %time', last: 'Förra %weekdayen klockan %time' } } -
caillou revised this gist
Dec 8, 2011 . 1 changed file with 5 additions and 5 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -70,11 +70,11 @@ last: '' }, pl : { today: 'Dziś o %time', tomorrow: 'Jutro o %time', next: 'W %weekday o %time', // e.g. Friday at 13:45 yesterday: 'Wczoraj o %time', last: 'W zeszły/łą %weekday o %time' // e.g. last Sunday at 13:45 }, pt : { today: '', -
michalbe revised this gist
Dec 8, 2011 . 1 changed file with 5 additions and 5 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -63,11 +63,11 @@ last: '' }, pl : { today: 'Dziś o %time', tomorrow: 'Jutro o %time', next: 'W %weekday o %time', // e.g. Friday at 13:45 yesterday: 'Wczoraj o %time', last: 'W zeszły/łą %weekday o %time' // e.g. last Sunday at 13:45 }, pt : { today: '', -
caillou revised this gist
Dec 8, 2011 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -28,7 +28,7 @@ last: 'last %weekday at %time' // e.g. last Sunday at 13:45 }, es : { today: 'hoy a las %time', tomorrow: 'mañana a las %time', next: '%weekday a las %time', yesterday: 'ayer a las %time', -
fullo revised this gist
Dec 8, 2011 . 1 changed file with 7 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -6,6 +6,13 @@ yesterday: 'gestern um %time', last: 'letzten %weekday um %time' }, it: { today: 'Oggi alle %time', tomorrow: 'Domani alle %time', next: '%weekday alle %time', yesterday: 'Ieri alle %time', last: 'lo scorso %weekday alle %time' }, en: { today: 'Today at %time', tomorrow: 'Tomorrow at %time', -
ajessu revised this gist
Dec 8, 2011 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -21,7 +21,7 @@ last: 'last %weekday at %time' // e.g. last Sunday at 13:45 }, es : { today: 'hoy a las %time', tomorrow: 'mañana a las %time', next: '%weekday a las %time', yesterday: 'ayer a las %time', -
caillou created this gist
Dec 8, 2011 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,93 @@ { de : { today: "heute um %time", tomorrow: 'morgen um %time', next: '%weekday um %time', yesterday: 'gestern um %time', last: 'letzten %weekday um %time' }, en: { today: 'Today at %time', tomorrow: 'Tomorrow at %time', next: '%weekday at %time', // e.g. Friday at 13:45 yesterday: 'Yesterday at %time', last: 'last %weekday at %time' // e.g. last Sunday at 13:45 }, en-GB : { today: 'Today at %time', tomorrow: 'Tomorrow at %time', next: '%weekday at %time', // e.g. Friday at 13:45 yesterday: 'Yesterday at %time', last: 'last %weekday at %time' // e.g. last Sunday at 13:45 }, es : { today: 'hoi a las %time', tomorrow: 'mañana a las %time', next: '%weekday a las %time', yesterday: 'ayer a las %time', last: 'el %weekday pasado a las %time' }, fr : { today: "ajourd'hui à %time", tomorrow: 'demain à %time', next: '%weekday à %time', yesterday: 'hier à %time', last: '%weekday denier à %time' }, it : { today: '', tomorrow: '', next: '', yesterday: '', last: '' }, kr : { today: '', tomorrow: '', next: '', yesterday: '', last: '' }, nb : { today: '', tomorrow: '', next: '', yesterday: '', last: '' }, nl : { today: '', tomorrow: '', next: '', yesterday: '', last: '' }, pl : { today: '', tomorrow: '', next: '', yesterday: '', last: '' }, pt : { today: '', tomorrow: '', next: '', yesterday: '', last: '' }, ru : { today: '', tomorrow: '', next: '', yesterday: '', last: '' }, sv : { today: '', tomorrow: '', next: '', yesterday: '', last: '' } }