From ea506ea4aa4306bd594d747455291b18a030aa4e Mon Sep 17 00:00:00 2001 From: zhangab Date: Wed, 9 May 2018 22:02:56 +0800 Subject: add angularJs component Change-Id: I41eb4950a7ee3b1b4f306681824f6035c624d485 Issue-ID: USECASEUI-113 Signed-off-by: zhangab --- .../angular-1.4.8/i18n/angular-locale_tr-tr.js | 110 +++++++++++++++++++++ 1 file changed, 110 insertions(+) create mode 100644 usecaseui-common/src/main/webapp/app/fusion/external/angular-1.4.8/i18n/angular-locale_tr-tr.js (limited to 'usecaseui-common/src/main/webapp/app/fusion/external/angular-1.4.8/i18n/angular-locale_tr-tr.js') diff --git a/usecaseui-common/src/main/webapp/app/fusion/external/angular-1.4.8/i18n/angular-locale_tr-tr.js b/usecaseui-common/src/main/webapp/app/fusion/external/angular-1.4.8/i18n/angular-locale_tr-tr.js new file mode 100644 index 00000000..e9575d34 --- /dev/null +++ b/usecaseui-common/src/main/webapp/app/fusion/external/angular-1.4.8/i18n/angular-locale_tr-tr.js @@ -0,0 +1,110 @@ +'use strict'; +angular.module("ngLocale", [], ["$provide", function($provide) { +var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"}; +$provide.value("$locale", { + "DATETIME_FORMATS": { + "AMPMS": [ + "\u00d6\u00d6", + "\u00d6S" + ], + "DAY": [ + "Pazar", + "Pazartesi", + "Sal\u0131", + "\u00c7ar\u015famba", + "Per\u015fembe", + "Cuma", + "Cumartesi" + ], + "ERANAMES": [ + "Milattan \u00d6nce", + "Milattan Sonra" + ], + "ERAS": [ + "M\u00d6", + "MS" + ], + "FIRSTDAYOFWEEK": 0, + "MONTH": [ + "Ocak", + "\u015eubat", + "Mart", + "Nisan", + "May\u0131s", + "Haziran", + "Temmuz", + "A\u011fustos", + "Eyl\u00fcl", + "Ekim", + "Kas\u0131m", + "Aral\u0131k" + ], + "SHORTDAY": [ + "Paz", + "Pzt", + "Sal", + "\u00c7ar", + "Per", + "Cum", + "Cmt" + ], + "SHORTMONTH": [ + "Oca", + "\u015eub", + "Mar", + "Nis", + "May", + "Haz", + "Tem", + "A\u011fu", + "Eyl", + "Eki", + "Kas", + "Ara" + ], + "WEEKENDRANGE": [ + 5, + 6 + ], + "fullDate": "d MMMM y EEEE", + "longDate": "d MMMM y", + "medium": "d MMM y HH:mm:ss", + "mediumDate": "d MMM y", + "mediumTime": "HH:mm:ss", + "short": "d MM y HH:mm", + "shortDate": "d MM y", + "shortTime": "HH:mm" + }, + "NUMBER_FORMATS": { + "CURRENCY_SYM": "TL", + "DECIMAL_SEP": ",", + "GROUP_SEP": ".", + "PATTERNS": [ + { + "gSize": 3, + "lgSize": 3, + "maxFrac": 3, + "minFrac": 0, + "minInt": 1, + "negPre": "-", + "negSuf": "", + "posPre": "", + "posSuf": "" + }, + { + "gSize": 3, + "lgSize": 3, + "maxFrac": 2, + "minFrac": 2, + "minInt": 1, + "negPre": "-", + "negSuf": "\u00a0\u00a4", + "posPre": "", + "posSuf": "\u00a0\u00a4" + } + ] + }, + "id": "tr-tr", + "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} +}); +}]); -- cgit 1.2.3-korg