From: Moshe Simantov Date: Tue, 30 Oct 2012 10:01:45 +0000 (+0200) Subject: new translate with tests X-Git-Tag: 2.0.0~43^2^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8f98ce2d31e226edc3e2a35229f7028498468593;p=thirdparty%2Fmoment.git new translate with tests --- diff --git a/lang/he.js b/lang/he.js index ce65d4a30..b54d06127 100644 --- a/lang/he.js +++ b/lang/he.js @@ -1,32 +1,33 @@ // moment.js language configuration -// language : hebrew (he) +// language : Hebrew (he) +// author : Tomer Cohen : https://github.com/tomer // author : Moshe Simantov : https://github.com/DevelopmentIL (function () { var lang = { months : "ינואר_פברואר_מרץ_אפריל_מאי_יוני_יולי_אוגוסט_ספטמבר_אוקטובר_נובמבר_דצמבר".split("_"), - monthsShort : "ינו_פבר_מרץ_אפר_מאי_יונ_יול_אוג_ספט_אוק_נוב_דצמ".split("_"), + monthsShort : "ינו׳_פבר׳_מרץ_אפר׳_מאי_יוני_יולי_אוג׳_ספט׳_אוק׳_נוב׳_דצמ׳".split("_"), weekdays : "ראשון_שני_שלישי_רביעי_חמישי_שישי_שבת".split("_"), - weekdaysShort : "ראש_שני_שלי_רבי_חמי_שיש_שבת".split("_"), - weekdaysMin : "א'_ב'_ג'_ד'_ה'_ו'_ש'".split("_"), + weekdaysShort : "א׳_ב׳_ג׳_ד׳_ה׳_ו׳_ש׳".split("_"), + weekdaysMin : "א_ב_ג_ד_ה_ו_ש".split("_"), longDateFormat : { - LT : "h:mm A", + LT : "HH:mm", L : "DD/MM/YYYY", - LL : "D MMMM YYYY", - LLL : "D MMMM YYYY LT", - LLLL : "dddd, D MMMM YYYY LT" + LL : "D [ב]MMMM YYYY", + LLL : "D [ב]MMMM YYYY LT", + LLLL : "dddd, D [ב]MMMM YYYY LT" }, calendar : { - sameDay : '[היום ב]LT', - nextDay : '[מחר ב]LT', - nextWeek : 'dddd [ב]LT', - lastDay : '[אתמול ב]LT', - lastWeek : 'dddd [האחרון ב]LT', + sameDay : '[היום ב־]LT', + nextDay : '[מחר ב־]LT', + nextWeek : 'dddd [בשעה] LT', + lastDay : '[אתמול ב־]LT', + lastWeek : '[ביום] dddd [האחרון בשעה] LT', sameElse : 'L' }, relativeTime : { future : "בעוד %s", past : "לפני %s", - s : "לפני כמה שניות", + s : "מספר שניות", m : "דקה", mm : "%d דקות", h : "שעה", @@ -39,7 +40,7 @@ yy : "%d שנים" }, ordinal : function (number) { - return ''; + return ''; // Function is not required for the Hebrew language. } };