'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": [
"\u0642\u0628\u0644\u200c\u0627\u0632\u0638\u0647\u0631",
"\u0628\u0639\u062f\u0627\u0632\u0638\u0647\u0631"
],
"DAY": [
"\u06cc\u06a9\u0634\u0646\u0628\u0647",
"\u062f\u0648\u0634\u0646\u0628\u0647",
"\u0633\u0647\u200c\u0634\u0646\u0628\u0647",
"\u0686\u0647\u0627\u0631\u0634\u0646\u0628\u0647",
"\u067e\u0646\u062c\u0634\u0646\u0628\u0647",
"\u062c\u0645\u0639\u0647",
"\u0634\u0646\u0628\u0647"
],
"MONTH": [
"\u0698\u0627\u0646\u0648\u06cc\u0647\u0654",
"\u0641\u0648\u0631\u06cc\u0647\u0654",
"\u0645\u0627\u0631\u0633",
"\u0622\u0648\u0631\u06cc\u0644",
"\u0645\u0647\u0654",
"\u0698\u0648\u0626\u0646",
"\u0698\u0648\u0626\u06cc\u0647\u0654",
"\u0627\u0648\u062a",
"\u0633\u067e\u062a\u0627\u0645\u0628\u0631",
"\u0627\u06a9\u062a\u0628\u0631",
"\u0646\u0648\u0627\u0645\u0628\u0631",
"\u062f\u0633\u0627\u0645\u0628\u0631"
],
"SHORTDAY": [
"\u06cc\u06a9\u0634\u0646\u0628\u0647",
"\u062f\u0648\u0634\u0646\u0628\u0647",
"\u0633\u0647\u200c\u0634\u0646\u0628\u0647",
"\u0686\u0647\u0627\u0631\u0634\u0646\u0628\u0647",
"\u067e\u0646\u062c\u0634\u0646\u0628\u0647",
"\u062c\u0645\u0639\u0647",
"\u0634\u0646\u0628\u0647"
],
"SHORTMONTH": [
"\u0698\u0627\u0646\u0648\u06cc\u0647\u0654",
"\u0641\u0648\u0631\u06cc\u0647\u0654",
"\u0645\u0627\u0631\u0633",
"\u0622\u0648\u0631\u06cc\u0644",
"\u0645\u0647\u0654",
"\u0698\u0648\u0626\u0646",
"\u0698\u0648\u0626\u06cc\u0647\u0654",
"\u0627\u0648\u062a",
"\u0633\u067e\u062a\u0627\u0645\u0628\u0631",
"\u0627\u06a9\u062a\u0628\u0631",
"\u0646\u0648\u0627\u0645\u0628\u0631",
"\u062f\u0633\u0627\u0645\u0628\u0631"
],
"fullDate": "EEEE d MMMM y",
"longDate": "d MMMM y",
"medium": "d MMM y H:mm:ss",
"mediumDate": "d MMM y",
"mediumTime": "H:mm:ss",
"short": "yyyy/M/d H:mm",
"shortDate": "yyyy/M/d",
"shortTime": "H:mm"
},
"NUMBER_FORMATS": {
"CURRENCY_SYM": "Rial",
"DECIMAL_SEP": "\u066b",
"GROUP_SEP": "\u066c",
"PATTERNS": [
{
"gSize": 3,
"lgSize": 3,
"macFrac": 0,
"maxFrac": 3,
"minFrac": 0,
"minInt": 1,
"negPre": "-",
"negSuf": "",
"posPre": "",
"posSuf": ""
},
{
"gSize": 3,
"lgSize": 3,
"macFrac": 0,
"maxFrac": 2,
"minFrac": 2,
"minInt": 1,
"negPre": "\u200e(\u00a4",
"negSuf": ")",
"posPre": "\u200e\u00a4",
"posSuf": ""
}
]
},
"id": "fa",
"pluralCat": function (n) { return PLURAL_CATEGORY.OTHER;}
});
}]);e54d8a0983'>index.html
blob: bb80a4babe8312b9941f7ed2fe5599e149233f0f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
<!doctype html>
<html xmlns:ng="http://angularjs.org/"
xmlns:doc="http://docs.angularjs.org/"
ng:controller="DocsController">
<head>
<title ng:bind-template="<angular/>: {{getTitle()}}"><angular/></title>
<meta name="fragment" content="!">
<link rel="stylesheet" href="doc_widgets.css" type="text/css" />
<link rel="stylesheet" href="docs.css" type="text/css"/>
<link rel="stylesheet" href="syntaxhighlighter/shCore.css" type="text/css"/>
<link rel="stylesheet" href="syntaxhighlighter/shThemeDefault.css" type="text/css"/>
<script src="jquery.min.js"></script>
<script src="syntaxhighlighter/shCore.js"></script>
<script src="syntaxhighlighter/shBrushJScript.js"></script>
<script src="syntaxhighlighter/shBrushXml.js"></script>
<script src="../angular.min.js" ng:autobind></script>
<script src="docs.js"></script>
<script src="doc_widgets.js"></script>
<script src="docs-keywords.js"></script>
</head>
<body style="display:none;" ng:show="true">
<div id="header">
<h1>
<span class="main-title">{{getTitle()}}</span>
<a href="#" tabindex="0"><span class="angular"><angular/></span> Docs</a>
</h1>
</div>
<div id="sidebar">
<input type="text" name="search" id="search-box" placeholder="search the docs"
tabindex="1" accesskey="s"/>
<ul id="api-list">
<li ng:repeat="page in pages.$filter(search)" ng:class="getClass(page)">
<a href="{{getUrl(page)}}" ng:click="" tabindex="2">{{page.name | short}}</a>
</li>
</ul>
</div>
<div id="main">
<a id="feedback" ng:href="{{getFeedbackUrl()}}">Report an Issue or Ask a Question</a>
<ng:include src="getCurrentPartial()" onload="afterPartialLoaded()"></ng:include>
</div>
</body>
</html>
|