parent
a03bc0d84c
commit
c2101b0352
@ -1,7 +0,0 @@ |
||||
class ApplicationPolicy |
||||
def initialize(user, record) |
||||
raise Pundit::NotAuthorizedError, "must be logged in" unless user |
||||
@user = user |
||||
@record = record |
||||
end |
||||
end |
@ -1,20 +0,0 @@ |
||||
class WorkPackagePolicy < ApplicationPolicy |
||||
def index? |
||||
end |
||||
|
||||
# if project is public |
||||
# ... |
||||
def show? |
||||
@user.admin? || |
||||
@record.project.is_public? |
||||
end |
||||
|
||||
def create? |
||||
end |
||||
|
||||
def update? |
||||
end |
||||
|
||||
def delete? |
||||
end |
||||
end |
@ -1,184 +0,0 @@ |
||||
FORMAT: 1A |
||||
|
||||
# Gist Fox API |
||||
Gist Fox API is a **pastes service** similar to [GitHub's Gist][http://gist.github.com]. |
||||
|
||||
# Gist Fox API Root [/] |
||||
Gist Fox API entry point. |
||||
|
||||
This resource does not have any attributes. Instead it offers the initial API affordances in the form of the HTTP Link header and HAL links. |
||||
|
||||
## Retrieve Entry Point [GET] |
||||
|
||||
+ Response 200 (application/hal+json) |
||||
+ Headers |
||||
|
||||
Link: <http:/api.gistfox.com/>;rel="self",<http:/api.gistfox.com/gists>;rel="gists" |
||||
|
||||
+ Body |
||||
|
||||
{ |
||||
"_links": { |
||||
"self": { "href": "/" }, |
||||
gists": { "href": "/gists?{since}", "templated": true } |
||||
} |
||||
} |
||||
|
||||
# Group Gist |
||||
Gist-related resources of *Gist Fox API*. |
||||
|
||||
## Gist [/gists/{id}] |
||||
A single Gist object The Gist resource is the central resource in the Gist Fox API. |
||||
|
||||
The Gist resource has the following attributes: |
||||
|
||||
- id |
||||
- created_at |
||||
- description |
||||
- content |
||||
|
||||
The states *id* and *created_at* are assigned by the Gist Fox API at the moment of creation. |
||||
|
||||
+ Parameters |
||||
+ id (string) ... ID of the Gist in the form of a hash. |
||||
|
||||
+ Model (application/hal+json) |
||||
|
||||
HAL+JSON representation of Gist Resource. |
||||
|
||||
+ Headers |
||||
|
||||
Link: <http:/api.gistfox.com/gists/42>;rel="self", <http:/api.gistfox.com/gists/42/star>;rel="star" |
||||
|
||||
+ Body |
||||
|
||||
{ |
||||
"_links": { |
||||
"self": { "href": "/gists/42" }, |
||||
"star": { "href": "/gists/42/star" }, |
||||
}, |
||||
id: 42, |
||||
"created_at": "2014-04-14T02:15:15Z", |
||||
"description": "Description of Gist", |
||||
"content": "String contents" |
||||
} |
||||
|
||||
### Retrieve a Single Gist [GET] |
||||
Some description |
||||
|
||||
+ Response 200 |
||||
|
||||
[Gist][] |
||||
|
||||
### Edit a Gist [PATCH] |
||||
To update a Gist send a JSON with updated value fo one or more of the Gist resource attributes. |
||||
|
||||
+ Request (application/json) |
||||
|
||||
{ |
||||
"content": "Updated file contents" |
||||
} |
||||
|
||||
+ Response 200 |
||||
|
||||
[Gist][] |
||||
|
||||
### Delete a Gist [DELETE] |
||||
+ Response 204 |
||||
|
||||
## Gists Collection [/fists{?since}] |
||||
Collection of all Gists. |
||||
|
||||
The Gist collection resource has the following attributes: |
||||
|
||||
- total |
||||
|
||||
In addition it **embeds** *Gist Resources* in the Gist Fox API. |
||||
|
||||
+ Model (application/hal+json) |
||||
|
||||
HAL+JSON representation of Gist collection resource. |
||||
|
||||
+ Headers |
||||
|
||||
Link: <http:/api.gistfox.com/gists>;rel="self" |
||||
|
||||
+ Body |
||||
|
||||
{ |
||||
"_links": { |
||||
"self": { "href": "/gists" } |
||||
}, |
||||
"_embedded": { |
||||
"gists": [ |
||||
{ |
||||
"_links": { |
||||
"self": { "href": "/gists/42" } |
||||
}, |
||||
"id": "42", |
||||
"created_at": "2014-04-14T02:15:15Z", |
||||
"description": "Description of Gist" |
||||
} |
||||
] |
||||
}, |
||||
"total": 1 |
||||
} |
||||
|
||||
### List All Gists [GET] |
||||
+ Parameters |
||||
+ since (optional, string) ... Timestamp in ISO 8601 format |
||||
|
||||
+ Response 200 |
||||
|
||||
[Gists Collection][] |
||||
|
||||
### Create a Gist [POST] |
||||
+ Request (application/json) |
||||
|
||||
{ |
||||
"description": "Description of Gist", |
||||
"content": "String content" |
||||
} |
||||
|
||||
+ Response 201 (application/hal+json) |
||||
|
||||
[Gist][] |
||||
|
||||
## Star [/gists/{id}/star] |
||||
Star resource represents a Gist starred status. |
||||
|
||||
The Star resource has the following attributes: |
||||
|
||||
- starred |
||||
|
||||
+ Parameters |
||||
|
||||
+ id (string) ... ID of the gist in the form of a hash. |
||||
|
||||
+ Model (application/hal+json) |
||||
|
||||
HAL+JSON representation of Star Resource. |
||||
|
||||
+ Headers |
||||
|
||||
Link: <http:/api.gistfox.com/gists/42/star>;rel="self" |
||||
|
||||
+ Body |
||||
|
||||
{ |
||||
"_links": { |
||||
"self": { "href": "/gists/42/star" }, |
||||
}, |
||||
"starred": true |
||||
} |
||||
|
||||
### Star a Gist [PUT] |
||||
+ Response 204 |
||||
|
||||
### Unstar a Gist [DELETE] |
||||
+ Response 204 |
||||
|
||||
### Check if a Gist is Starred [GET] |
||||
+ Response 200 |
||||
|
||||
[Star][] |
@ -1,381 +0,0 @@ |
||||
<?xml version="1.0"?> |
||||
<testsuites> |
||||
<testsuite name="PhantomJS 1.9.7 (Linux)" package="" timestamp="2014-04-15T09:47:45" id="0" hostname="mtakac-ThinkPad-T440s" tests="123" errors="0" failures="0" time="0.029"> |
||||
<properties> |
||||
<property name="browser.fullName" value="Mozilla/5.0 (Unknown; Linux x86_64) AppleWebKit/534.34 (KHTML, like Gecko) PhantomJS/1.9.7 Safari/534.34"/> |
||||
</properties> |
||||
<testcase name="should exist" time="0.003" classname="PhantomJS 1.9.7 (Linux).TimelinesController"/> |
||||
<testcase name="should render a surrounding span" time="0" classname="PhantomJS 1.9.7 (Linux).accessibleCheckbox Directive element"/> |
||||
<testcase name="should render a label" time="0.001" classname="PhantomJS 1.9.7 (Linux).accessibleCheckbox Directive element"/> |
||||
<testcase name="should render a checkbox" time="0.001" classname="PhantomJS 1.9.7 (Linux).accessibleCheckbox Directive element"/> |
||||
<testcase name="should render a span" time="0" classname="PhantomJS 1.9.7 (Linux).iconWrapper Directive element"/> |
||||
<testcase name="should have a title attribute" time="0" classname="PhantomJS 1.9.7 (Linux).iconWrapper Directive element"/> |
||||
<testcase name="should have a class based on its icon name" time="0.001" classname="PhantomJS 1.9.7 (Linux).iconWrapper Directive element"/> |
||||
<testcase name="should should have an inner span" time="0" classname="PhantomJS 1.9.7 (Linux).iconWrapper Directive element"/> |
||||
<testcase name="should preserve its div" time="0" classname="PhantomJS 1.9.7 (Linux).modal Directive element"/> |
||||
<testcase name="should be clickable" time="0" classname="PhantomJS 1.9.7 (Linux).modal Directive element"> |
||||
<skipped/> |
||||
</testcase> |
||||
<testcase name="should render a div" time="0" classname="PhantomJS 1.9.7 (Linux).progressBar Directive element"/> |
||||
<testcase name="should have a legend attribute" time="0" classname="PhantomJS 1.9.7 (Linux).progressBar Directive element"/> |
||||
<testcase name="should have an inner table cell with appropriate width" time="0.001" classname="PhantomJS 1.9.7 (Linux).progressBar Directive element"/> |
||||
<testcase name="should preserve its div" time="0" classname="PhantomJS 1.9.7 (Linux).slideToggle Directive element"/> |
||||
<testcase name="should be in a collapsed state" time="0.001" classname="PhantomJS 1.9.7 (Linux).slideToggle Directive element"/> |
||||
<testcase name="should toggle" time="0" classname="PhantomJS 1.9.7 (Linux).slideToggle Directive element"> |
||||
<skipped/> |
||||
</testcase> |
||||
<testcase name="should render perPage options" time="0.001" classname="PhantomJS 1.9.7 (Linux).tablePagination Directive element"/> |
||||
<testcase name="should render a div" time="0" classname="PhantomJS 1.9.7 (Linux).toggledMultiselect Directive element"/> |
||||
<testcase name="should render two SELECTs, one of which are hidden by default" time="0" classname="PhantomJS 1.9.7 (Linux).toggledMultiselect Directive element"/> |
||||
<testcase name="should render two OPTIONs for displayed SELECT" time="0" classname="PhantomJS 1.9.7 (Linux).toggledMultiselect Directive element"/> |
||||
<testcase name="should render a link that toggles multi-select" time="0" classname="PhantomJS 1.9.7 (Linux).toggledMultiselect Directive element"> |
||||
<skipped/> |
||||
</testcase> |
||||
<testcase name="should emit a div" time="0" classname="PhantomJS 1.9.7 (Linux).zoomSlider Directive element"> |
||||
<skipped/> |
||||
</testcase> |
||||
<testcase name="should be defined" time="0.001" classname="PhantomJS 1.9.7 (Linux).Work package filters remainingFilterNames"/> |
||||
<testcase name="should return the names of the remaining filters" time="0.001" classname="PhantomJS 1.9.7 (Linux).Work package filters remainingFilterNames"/> |
||||
<testcase name="respects the alphabetical locale ordering" time="0.002" classname="PhantomJS 1.9.7 (Linux).Work package filters remainingFilterNames when there are filter locales for the remaining filters"/> |
||||
<testcase name="should exist" time="0" classname="PhantomJS 1.9.7 (Linux).Filter"/> |
||||
<testcase name="should be a constructor function" time="0" classname="PhantomJS 1.9.7 (Linux).Filter"/> |
||||
<testcase name="should be serializable to params" time="0" classname="PhantomJS 1.9.7 (Linux).Filter"/> |
||||
<testcase name="is considered to be configured" time="0" classname="PhantomJS 1.9.7 (Linux).Filter when it is a single input filter and the text value is set"/> |
||||
<testcase name="should serialize the text value" time="0" classname="PhantomJS 1.9.7 (Linux).Filter when it is a single input filter and the text value is set"/> |
||||
<testcase name="should exist" time="0" classname="PhantomJS 1.9.7 (Linux).Query"/> |
||||
<testcase name="should be a constructor function" time="0" classname="PhantomJS 1.9.7 (Linux).Query"/> |
||||
<testcase name="should augment filters with meta data when set via setFilters" time="0" classname="PhantomJS 1.9.7 (Linux).Query adding filters"/> |
||||
<testcase name="should augment filters with meta data when set via addFilter" time="0.001" classname="PhantomJS 1.9.7 (Linux).Query adding filters"/> |
||||
<testcase name="should exist" time="0" classname="PhantomJS 1.9.7 (Linux).Sortation"/> |
||||
<testcase name="should be a constructor function" time="0" classname="PhantomJS 1.9.7 (Linux).Sortation"/> |
||||
<testcase name="should exist" time="0" classname="PhantomJS 1.9.7 (Linux).Timeline"/> |
||||
<testcase name="should not create a timeline object without configuration options" time="0" classname="PhantomJS 1.9.7 (Linux).Timeline"/> |
||||
<testcase name="should create a timeline object" time="0" classname="PhantomJS 1.9.7 (Linux).Timeline"/> |
||||
<testcase name="should exist" time="0" classname="PhantomJS 1.9.7 (Linux).User"/> |
||||
<testcase name="should return true for pes" time="0" classname="PhantomJS 1.9.7 (Linux).Planning Element is"/> |
||||
<testcase name="should return false for non-pes" time="0" classname="PhantomJS 1.9.7 (Linux).Planning Element is"/> |
||||
<testcase name="should return sorted children" time="0.001" classname="PhantomJS 1.9.7 (Linux).Planning Element children getChildren"/> |
||||
<testcase name="should return empty list" time="0" classname="PhantomJS 1.9.7 (Linux).Planning Element children getChildren"/> |
||||
<testcase name="orders work packages by name if start and due dates are equal" time="0" classname="PhantomJS 1.9.7 (Linux).Planning Element children getChildren when start and due dates are specified"/> |
||||
<testcase name="shows work packages with earlier start dates first" time="0" classname="PhantomJS 1.9.7 (Linux).Planning Element children getChildren when start and due dates are specified"> |
||||
<skipped/> |
||||
</testcase> |
||||
<testcase name="shows work packages with sooner due dates first if start dates are equal" time="0" classname="PhantomJS 1.9.7 (Linux).Planning Element children getChildren when start and due dates are specified"> |
||||
<skipped/> |
||||
</testcase> |
||||
<testcase name="should return false for hasChildren if children list undefined" time="0" classname="PhantomJS 1.9.7 (Linux).Planning Element children hasChildren"/> |
||||
<testcase name="should return false for hasChildren if children list empty" time="0.001" classname="PhantomJS 1.9.7 (Linux).Planning Element children hasChildren"/> |
||||
<testcase name="should return true for hasChildren if children exist" time="0" classname="PhantomJS 1.9.7 (Linux).Planning Element children hasChildren"/> |
||||
<testcase name="should always return false" time="0" classname="PhantomJS 1.9.7 (Linux).Planning Element hide"/> |
||||
<testcase name="should be null by default" time="0.001" classname="PhantomJS 1.9.7 (Linux).Planning Element getProject"/> |
||||
<testcase name="should be the set project otherwise" time="0" classname="PhantomJS 1.9.7 (Linux).Planning Element getProject"/> |
||||
<testcase name="should only be filtered if project is filtered" time="0" classname="PhantomJS 1.9.7 (Linux).Planning Element filtered out"> |
||||
<skipped/> |
||||
</testcase> |
||||
<testcase name="should cache the result even if filter changes" time="0" classname="PhantomJS 1.9.7 (Linux).Planning Element filtered out"> |
||||
<skipped/> |
||||
</testcase> |
||||
<testcase name="should be null by default" time="0" classname="PhantomJS 1.9.7 (Linux).Planning Element responsible"/> |
||||
<testcase name="should get the responsible" time="0" classname="PhantomJS 1.9.7 (Linux).Planning Element responsible"> |
||||
<skipped/> |
||||
</testcase> |
||||
<testcase name="should allow get of responsible name" time="0" classname="PhantomJS 1.9.7 (Linux).Planning Element responsible"> |
||||
<skipped/> |
||||
</testcase> |
||||
<testcase name="should return undefined if responsible or responsible name are not set" time="0" classname="PhantomJS 1.9.7 (Linux).Planning Element responsible"> |
||||
<skipped/> |
||||
</testcase> |
||||
<testcase name="should be undefined by default" time="0" classname="PhantomJS 1.9.7 (Linux).Planning Element assignee name"/> |
||||
<testcase name="should allow get of assignee name" time="0" classname="PhantomJS 1.9.7 (Linux).Planning Element assignee name"/> |
||||
<testcase name="should return undefined if invalid assigned to object" time="0" classname="PhantomJS 1.9.7 (Linux).Planning Element assignee name"/> |
||||
<testcase name="empty should have no historical" time="0" classname="PhantomJS 1.9.7 (Linux).Planning Element historical"/> |
||||
<testcase name="empty should have no alternate dates" time="0" classname="PhantomJS 1.9.7 (Linux).Planning Element historical"/> |
||||
<testcase name="historical should have correct alternate dates" time="0.001" classname="PhantomJS 1.9.7 (Linux).Planning Element historical"/> |
||||
<testcase name="should return object value of object.parameter" time="0" classname="PhantomJS 1.9.7 (Linux).Planning Element getAttribute"/> |
||||
<testcase name="should return function value of object.parameter" time="0" classname="PhantomJS 1.9.7 (Linux).Planning Element getAttribute"/> |
||||
<testcase name="should return 0 for x and width if no start&end date" time="0" classname="PhantomJS 1.9.7 (Linux).Planning Element horizontalBoundsForDates"/> |
||||
<testcase name="should return zero x if beginning and start are the same" time="0" classname="PhantomJS 1.9.7 (Linux).Planning Element horizontalBoundsForDates"/> |
||||
<testcase name="should return width of 1 day if start and end are equal" time="0.001" classname="PhantomJS 1.9.7 (Linux).Planning Element horizontalBoundsForDates"/> |
||||
<testcase name="should return width of difference+1 if start and end are not the same" time="0" classname="PhantomJS 1.9.7 (Linux).Planning Element horizontalBoundsForDates"/> |
||||
<testcase name="should multiply with scale" time="0.001" classname="PhantomJS 1.9.7 (Linux).Planning Element horizontalBoundsForDates"/> |
||||
<testcase name="if one date is not set width equals 3 days" time="0" classname="PhantomJS 1.9.7 (Linux).Planning Element horizontalBoundsForDates"/> |
||||
<testcase name="should return x and width if end is not set" time="0" classname="PhantomJS 1.9.7 (Linux).Planning Element horizontalBoundsForDates"/> |
||||
<testcase name="should return the middle for a milestone" time="0" classname="PhantomJS 1.9.7 (Linux).Planning Element horizontalBoundsForDates"> |
||||
<skipped/> |
||||
</testcase> |
||||
<testcase name="should return correct url" time="0.001" classname="PhantomJS 1.9.7 (Linux).Planning Element url"/> |
||||
<testcase name="should return color of pe type if existing" time="0" classname="PhantomJS 1.9.7 (Linux).Planning Element color"> |
||||
<skipped/> |
||||
</testcase> |
||||
<testcase name="should return parent color if pe has children" time="0" classname="PhantomJS 1.9.7 (Linux).Planning Element color"> |
||||
<skipped/> |
||||
</testcase> |
||||
<testcase name="should return default color for empty pe" time="0" classname="PhantomJS 1.9.7 (Linux).Planning Element color"> |
||||
<skipped/> |
||||
</testcase> |
||||
<testcase name="should return gradient if one date is missing" time="0" classname="PhantomJS 1.9.7 (Linux).Planning Element color"> |
||||
<skipped/> |
||||
</testcase> |
||||
<testcase name="should return date object" time="0.001" classname="PhantomJS 1.9.7 (Linux).Planning Element start() and end()"/> |
||||
<testcase name="should return correct date" time="0" classname="PhantomJS 1.9.7 (Linux).Planning Element start() and end()"/> |
||||
<testcase name="should return undefined for no date" time="0.001" classname="PhantomJS 1.9.7 (Linux).Planning Element start() and end()"/> |
||||
<testcase name="should return end date for start() if no end date is set and is milestone" time="0" classname="PhantomJS 1.9.7 (Linux).Planning Element start() and end()"> |
||||
<skipped/> |
||||
</testcase> |
||||
<testcase name="should return start date for end() if no start date is set and is milestone" time="0" classname="PhantomJS 1.9.7 (Linux).Planning Element start() and end()"> |
||||
<skipped/> |
||||
</testcase> |
||||
<testcase name="should be true for empty" time="0" classname="PhantomJS 1.9.7 (Linux).Project hidden"/> |
||||
<testcase name="should be false by default" time="0" classname="PhantomJS 1.9.7 (Linux).Project filtered"/> |
||||
<testcase name="should be filtered for type" time="0" classname="PhantomJS 1.9.7 (Linux).Project filtered"> |
||||
<skipped/> |
||||
</testcase> |
||||
<testcase name="should be filtered for status" time="0" classname="PhantomJS 1.9.7 (Linux).Project filtered"> |
||||
<skipped/> |
||||
</testcase> |
||||
<testcase name="should be empty by default" time="0" classname="PhantomJS 1.9.7 (Linux).Project getPlanningElements"/> |
||||
<testcase name="should return list of planningElements when set" time="0.001" classname="PhantomJS 1.9.7 (Linux).Project getPlanningElements"/> |
||||
<testcase name="should sort without date to the beginning" time="0.001" classname="PhantomJS 1.9.7 (Linux).Project getPlanningElements"/> |
||||
<testcase name="should sort with only an end date as if it had a start date equal to the end date" time="0" classname="PhantomJS 1.9.7 (Linux).Project getPlanningElements"/> |
||||
<testcase name="should sort by date per default" time="0.001" classname="PhantomJS 1.9.7 (Linux).Project getPlanningElements"/> |
||||
<testcase name="should sort pes with same start by end" time="0" classname="PhantomJS 1.9.7 (Linux).Project getPlanningElements"/> |
||||
<testcase name="should sort pes with same start and end by name" time="0" classname="PhantomJS 1.9.7 (Linux).Project getPlanningElements"/> |
||||
<testcase name="should sort pes with same start and end and name by id" time="0" classname="PhantomJS 1.9.7 (Linux).Project getPlanningElements"/> |
||||
<testcase name="should be null by default" time="0" classname="PhantomJS 1.9.7 (Linux).Project responsible"/> |
||||
<testcase name="should get the responsible" time="0" classname="PhantomJS 1.9.7 (Linux).Project responsible"/> |
||||
<testcase name="should allow get of responsible name" time="0" classname="PhantomJS 1.9.7 (Linux).Project responsible"/> |
||||
<testcase name="should return undefined if responsible or responsible name are not set" time="0" classname="PhantomJS 1.9.7 (Linux).Project responsible"/> |
||||
<testcase name="should always return undefined" time="0" classname="PhantomJS 1.9.7 (Linux).Project assignee"/> |
||||
<testcase name="should return null if no reporting" time="0.001" classname="PhantomJS 1.9.7 (Linux).Project status"/> |
||||
<testcase name="should return reporting status" time="0" classname="PhantomJS 1.9.7 (Linux).Project status"> |
||||
<skipped/> |
||||
</testcase> |
||||
<testcase name="returns pes before reporters" time="0" classname="PhantomJS 1.9.7 (Linux).Project subElements"> |
||||
<skipped/> |
||||
</testcase> |
||||
<testcase name="returns the same pes as getPlanningElements" time="0" classname="PhantomJS 1.9.7 (Linux).Project subElements"> |
||||
<skipped/> |
||||
</testcase> |
||||
<testcase name="filters the reporters correctly" time="0" classname="PhantomJS 1.9.7 (Linux).Project subElements"> |
||||
<skipped/> |
||||
</testcase> |
||||
<testcase name="should return reporters" time="0.001" classname="PhantomJS 1.9.7 (Linux).Project Reporters"/> |
||||
<testcase name="should sort without date to the beginning" time="0.001" classname="PhantomJS 1.9.7 (Linux).Project Reporters"/> |
||||
<testcase name="should sort by date" time="0" classname="PhantomJS 1.9.7 (Linux).Project Reporters"/> |
||||
<testcase name="should sort with same start and end by name" time="0" classname="PhantomJS 1.9.7 (Linux).Project Reporters"/> |
||||
<testcase name="should sort with same start and end and name by id" time="0" classname="PhantomJS 1.9.7 (Linux).Project Reporters"/> |
||||
<testcase name="should sort groups by name" time="0" classname="PhantomJS 1.9.7 (Linux).Project Reporters groups"/> |
||||
<testcase name="should sort groups by explicit order if given" time="0" classname="PhantomJS 1.9.7 (Linux).Project Reporters groups"/> |
||||
<testcase name="should return null if no parent given" time="0" classname="PhantomJS 1.9.7 (Linux).Project Parent"> |
||||
<skipped/> |
||||
</testcase> |
||||
<testcase name="should return the correct parent" time="0" classname="PhantomJS 1.9.7 (Linux).Project Parent"> |
||||
<skipped/> |
||||
</testcase> |
||||
<testcase name="should return the correct url" time="0" classname="PhantomJS 1.9.7 (Linux).Project Url"> |
||||
<skipped/> |
||||
</testcase> |
||||
<testcase name="should return true if element in array" time="0" classname="PhantomJS 1.9.7 (Linux).Helper Functions id in Array"/> |
||||
<testcase name="should return true if no array or empty array is passed" time="0" classname="PhantomJS 1.9.7 (Linux).Helper Functions id in Array"/> |
||||
<testcase name="should set query.groupBy" time="0" classname="PhantomJS 1.9.7 (Linux).QueryService query setup"/> |
||||
<testcase name="should set query.displaySums" time="0" classname="PhantomJS 1.9.7 (Linux).QueryService query setup"/> |
||||
<testcase name="should load the available filters" time="0" classname="PhantomJS 1.9.7 (Linux).QueryService query setup filters"> |
||||
<skipped/> |
||||
</testcase> |
||||
<testcase name="should assign filters to the query" time="0" classname="PhantomJS 1.9.7 (Linux).QueryService query setup filters"> |
||||
<skipped/> |
||||
</testcase> |
||||
<system-out><![CDATA[ |
||||
]]></system-out> |
||||
<system-err/> |
||||
</testsuite> |
||||
<testsuite name="Firefox 28.0.0 (Ubuntu)" package="" timestamp="2014-04-15T09:47:46" id="0" hostname="mtakac-ThinkPad-T440s" tests="123" errors="0" failures="0" time="0.024"> |
||||
<properties> |
||||
<property name="browser.fullName" value="Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:28.0) Gecko/20100101 Firefox/28.0"/> |
||||
</properties> |
||||
<testcase name="should exist" time="0.003" classname="Firefox 28.0.0 (Ubuntu).TimelinesController"/> |
||||
<testcase name="should render a surrounding span" time="0" classname="Firefox 28.0.0 (Ubuntu).accessibleCheckbox Directive element"/> |
||||
<testcase name="should render a label" time="0" classname="Firefox 28.0.0 (Ubuntu).accessibleCheckbox Directive element"/> |
||||
<testcase name="should render a checkbox" time="0" classname="Firefox 28.0.0 (Ubuntu).accessibleCheckbox Directive element"/> |
||||
<testcase name="should render a span" time="0" classname="Firefox 28.0.0 (Ubuntu).iconWrapper Directive element"/> |
||||
<testcase name="should have a title attribute" time="0" classname="Firefox 28.0.0 (Ubuntu).iconWrapper Directive element"/> |
||||
<testcase name="should have a class based on its icon name" time="0.001" classname="Firefox 28.0.0 (Ubuntu).iconWrapper Directive element"/> |
||||
<testcase name="should should have an inner span" time="0" classname="Firefox 28.0.0 (Ubuntu).iconWrapper Directive element"/> |
||||
<testcase name="should preserve its div" time="0" classname="Firefox 28.0.0 (Ubuntu).modal Directive element"/> |
||||
<testcase name="should be clickable" time="0" classname="Firefox 28.0.0 (Ubuntu).modal Directive element"> |
||||
<skipped/> |
||||
</testcase> |
||||
<testcase name="should render a div" time="0" classname="Firefox 28.0.0 (Ubuntu).progressBar Directive element"/> |
||||
<testcase name="should have a legend attribute" time="0" classname="Firefox 28.0.0 (Ubuntu).progressBar Directive element"/> |
||||
<testcase name="should have an inner table cell with appropriate width" time="0.001" classname="Firefox 28.0.0 (Ubuntu).progressBar Directive element"/> |
||||
<testcase name="should preserve its div" time="0" classname="Firefox 28.0.0 (Ubuntu).slideToggle Directive element"/> |
||||
<testcase name="should be in a collapsed state" time="0.001" classname="Firefox 28.0.0 (Ubuntu).slideToggle Directive element"/> |
||||
<testcase name="should toggle" time="0" classname="Firefox 28.0.0 (Ubuntu).slideToggle Directive element"> |
||||
<skipped/> |
||||
</testcase> |
||||
<testcase name="should render perPage options" time="0.001" classname="Firefox 28.0.0 (Ubuntu).tablePagination Directive element"/> |
||||
<testcase name="should render a div" time="0" classname="Firefox 28.0.0 (Ubuntu).toggledMultiselect Directive element"/> |
||||
<testcase name="should render two SELECTs, one of which are hidden by default" time="0" classname="Firefox 28.0.0 (Ubuntu).toggledMultiselect Directive element"/> |
||||
<testcase name="should render two OPTIONs for displayed SELECT" time="0" classname="Firefox 28.0.0 (Ubuntu).toggledMultiselect Directive element"/> |
||||
<testcase name="should render a link that toggles multi-select" time="0" classname="Firefox 28.0.0 (Ubuntu).toggledMultiselect Directive element"> |
||||
<skipped/> |
||||
</testcase> |
||||
<testcase name="should emit a div" time="0" classname="Firefox 28.0.0 (Ubuntu).zoomSlider Directive element"> |
||||
<skipped/> |
||||
</testcase> |
||||
<testcase name="should be defined" time="0.001" classname="Firefox 28.0.0 (Ubuntu).Work package filters remainingFilterNames"/> |
||||
<testcase name="should return the names of the remaining filters" time="0.001" classname="Firefox 28.0.0 (Ubuntu).Work package filters remainingFilterNames"/> |
||||
<testcase name="respects the alphabetical locale ordering" time="0.002" classname="Firefox 28.0.0 (Ubuntu).Work package filters remainingFilterNames when there are filter locales for the remaining filters"/> |
||||
<testcase name="should exist" time="0" classname="Firefox 28.0.0 (Ubuntu).Filter"/> |
||||
<testcase name="should be a constructor function" time="0" classname="Firefox 28.0.0 (Ubuntu).Filter"/> |
||||
<testcase name="should be serializable to params" time="0.001" classname="Firefox 28.0.0 (Ubuntu).Filter"/> |
||||
<testcase name="is considered to be configured" time="0" classname="Firefox 28.0.0 (Ubuntu).Filter when it is a single input filter and the text value is set"/> |
||||
<testcase name="should serialize the text value" time="0" classname="Firefox 28.0.0 (Ubuntu).Filter when it is a single input filter and the text value is set"/> |
||||
<testcase name="should exist" time="0" classname="Firefox 28.0.0 (Ubuntu).Query"/> |
||||
<testcase name="should be a constructor function" time="0.001" classname="Firefox 28.0.0 (Ubuntu).Query"/> |
||||
<testcase name="should augment filters with meta data when set via setFilters" time="0.001" classname="Firefox 28.0.0 (Ubuntu).Query adding filters"/> |
||||
<testcase name="should augment filters with meta data when set via addFilter" time="0" classname="Firefox 28.0.0 (Ubuntu).Query adding filters"/> |
||||
<testcase name="should exist" time="0" classname="Firefox 28.0.0 (Ubuntu).Sortation"/> |
||||
<testcase name="should be a constructor function" time="0" classname="Firefox 28.0.0 (Ubuntu).Sortation"/> |
||||
<testcase name="should exist" time="0" classname="Firefox 28.0.0 (Ubuntu).Timeline"/> |
||||
<testcase name="should not create a timeline object without configuration options" time="0" classname="Firefox 28.0.0 (Ubuntu).Timeline"/> |
||||
<testcase name="should create a timeline object" time="0" classname="Firefox 28.0.0 (Ubuntu).Timeline"/> |
||||
<testcase name="should exist" time="0" classname="Firefox 28.0.0 (Ubuntu).User"/> |
||||
<testcase name="should return true for pes" time="0" classname="Firefox 28.0.0 (Ubuntu).Planning Element is"/> |
||||
<testcase name="should return false for non-pes" time="0" classname="Firefox 28.0.0 (Ubuntu).Planning Element is"/> |
||||
<testcase name="should return sorted children" time="0" classname="Firefox 28.0.0 (Ubuntu).Planning Element children getChildren"/> |
||||
<testcase name="should return empty list" time="0" classname="Firefox 28.0.0 (Ubuntu).Planning Element children getChildren"/> |
||||
<testcase name="orders work packages by name if start and due dates are equal" time="0" classname="Firefox 28.0.0 (Ubuntu).Planning Element children getChildren when start and due dates are specified"/> |
||||
<testcase name="shows work packages with earlier start dates first" time="0" classname="Firefox 28.0.0 (Ubuntu).Planning Element children getChildren when start and due dates are specified"> |
||||
<skipped/> |
||||
</testcase> |
||||
<testcase name="shows work packages with sooner due dates first if start dates are equal" time="0" classname="Firefox 28.0.0 (Ubuntu).Planning Element children getChildren when start and due dates are specified"> |
||||
<skipped/> |
||||
</testcase> |
||||
<testcase name="should return false for hasChildren if children list undefined" time="0" classname="Firefox 28.0.0 (Ubuntu).Planning Element children hasChildren"/> |
||||
<testcase name="should return false for hasChildren if children list empty" time="0" classname="Firefox 28.0.0 (Ubuntu).Planning Element children hasChildren"/> |
||||
<testcase name="should return true for hasChildren if children exist" time="0.001" classname="Firefox 28.0.0 (Ubuntu).Planning Element children hasChildren"/> |
||||
<testcase name="should always return false" time="0.001" classname="Firefox 28.0.0 (Ubuntu).Planning Element hide"/> |
||||
<testcase name="should be null by default" time="0" classname="Firefox 28.0.0 (Ubuntu).Planning Element getProject"/> |
||||
<testcase name="should be the set project otherwise" time="0" classname="Firefox 28.0.0 (Ubuntu).Planning Element getProject"/> |
||||
<testcase name="should only be filtered if project is filtered" time="0" classname="Firefox 28.0.0 (Ubuntu).Planning Element filtered out"> |
||||
<skipped/> |
||||
</testcase> |
||||
<testcase name="should cache the result even if filter changes" time="0" classname="Firefox 28.0.0 (Ubuntu).Planning Element filtered out"> |
||||
<skipped/> |
||||
</testcase> |
||||
<testcase name="should be null by default" time="0" classname="Firefox 28.0.0 (Ubuntu).Planning Element responsible"/> |
||||
<testcase name="should get the responsible" time="0" classname="Firefox 28.0.0 (Ubuntu).Planning Element responsible"> |
||||
<skipped/> |
||||
</testcase> |
||||
<testcase name="should allow get of responsible name" time="0" classname="Firefox 28.0.0 (Ubuntu).Planning Element responsible"> |
||||
<skipped/> |
||||
</testcase> |
||||
<testcase name="should return undefined if responsible or responsible name are not set" time="0" classname="Firefox 28.0.0 (Ubuntu).Planning Element responsible"> |
||||
<skipped/> |
||||
</testcase> |
||||
<testcase name="should be undefined by default" time="0" classname="Firefox 28.0.0 (Ubuntu).Planning Element assignee name"/> |
||||
<testcase name="should allow get of assignee name" time="0" classname="Firefox 28.0.0 (Ubuntu).Planning Element assignee name"/> |
||||
<testcase name="should return undefined if invalid assigned to object" time="0" classname="Firefox 28.0.0 (Ubuntu).Planning Element assignee name"/> |
||||
<testcase name="empty should have no historical" time="0" classname="Firefox 28.0.0 (Ubuntu).Planning Element historical"/> |
||||
<testcase name="empty should have no alternate dates" time="0" classname="Firefox 28.0.0 (Ubuntu).Planning Element historical"/> |
||||
<testcase name="historical should have correct alternate dates" time="0" classname="Firefox 28.0.0 (Ubuntu).Planning Element historical"/> |
||||
<testcase name="should return object value of object.parameter" time="0.001" classname="Firefox 28.0.0 (Ubuntu).Planning Element getAttribute"/> |
||||
<testcase name="should return function value of object.parameter" time="0" classname="Firefox 28.0.0 (Ubuntu).Planning Element getAttribute"/> |
||||
<testcase name="should return 0 for x and width if no start&end date" time="0" classname="Firefox 28.0.0 (Ubuntu).Planning Element horizontalBoundsForDates"/> |
||||
<testcase name="should return zero x if beginning and start are the same" time="0" classname="Firefox 28.0.0 (Ubuntu).Planning Element horizontalBoundsForDates"/> |
||||
<testcase name="should return width of 1 day if start and end are equal" time="0" classname="Firefox 28.0.0 (Ubuntu).Planning Element horizontalBoundsForDates"/> |
||||
<testcase name="should return width of difference+1 if start and end are not the same" time="0" classname="Firefox 28.0.0 (Ubuntu).Planning Element horizontalBoundsForDates"/> |
||||
<testcase name="should multiply with scale" time="0" classname="Firefox 28.0.0 (Ubuntu).Planning Element horizontalBoundsForDates"/> |
||||
<testcase name="if one date is not set width equals 3 days" time="0" classname="Firefox 28.0.0 (Ubuntu).Planning Element horizontalBoundsForDates"/> |
||||
<testcase name="should return x and width if end is not set" time="0" classname="Firefox 28.0.0 (Ubuntu).Planning Element horizontalBoundsForDates"/> |
||||
<testcase name="should return the middle for a milestone" time="0" classname="Firefox 28.0.0 (Ubuntu).Planning Element horizontalBoundsForDates"> |
||||
<skipped/> |
||||
</testcase> |
||||
<testcase name="should return correct url" time="0" classname="Firefox 28.0.0 (Ubuntu).Planning Element url"/> |
||||
<testcase name="should return color of pe type if existing" time="0" classname="Firefox 28.0.0 (Ubuntu).Planning Element color"> |
||||
<skipped/> |
||||
</testcase> |
||||
<testcase name="should return parent color if pe has children" time="0" classname="Firefox 28.0.0 (Ubuntu).Planning Element color"> |
||||
<skipped/> |
||||
</testcase> |
||||
<testcase name="should return default color for empty pe" time="0" classname="Firefox 28.0.0 (Ubuntu).Planning Element color"> |
||||
<skipped/> |
||||
</testcase> |
||||
<testcase name="should return gradient if one date is missing" time="0" classname="Firefox 28.0.0 (Ubuntu).Planning Element color"> |
||||
<skipped/> |
||||
</testcase> |
||||
<testcase name="should return date object" time="0.001" classname="Firefox 28.0.0 (Ubuntu).Planning Element start() and end()"/> |
||||
<testcase name="should return correct date" time="0" classname="Firefox 28.0.0 (Ubuntu).Planning Element start() and end()"/> |
||||
<testcase name="should return undefined for no date" time="0" classname="Firefox 28.0.0 (Ubuntu).Planning Element start() and end()"/> |
||||
<testcase name="should return end date for start() if no end date is set and is milestone" time="0" classname="Firefox 28.0.0 (Ubuntu).Planning Element start() and end()"> |
||||
<skipped/> |
||||
</testcase> |
||||
<testcase name="should return start date for end() if no start date is set and is milestone" time="0" classname="Firefox 28.0.0 (Ubuntu).Planning Element start() and end()"> |
||||
<skipped/> |
||||
</testcase> |
||||
<testcase name="should be true for empty" time="0" classname="Firefox 28.0.0 (Ubuntu).Project hidden"/> |
||||
<testcase name="should be false by default" time="0" classname="Firefox 28.0.0 (Ubuntu).Project filtered"/> |
||||
<testcase name="should be filtered for type" time="0" classname="Firefox 28.0.0 (Ubuntu).Project filtered"> |
||||
<skipped/> |
||||
</testcase> |
||||
<testcase name="should be filtered for status" time="0" classname="Firefox 28.0.0 (Ubuntu).Project filtered"> |
||||
<skipped/> |
||||
</testcase> |
||||
<testcase name="should be empty by default" time="0" classname="Firefox 28.0.0 (Ubuntu).Project getPlanningElements"/> |
||||
<testcase name="should return list of planningElements when set" time="0.001" classname="Firefox 28.0.0 (Ubuntu).Project getPlanningElements"/> |
||||
<testcase name="should sort without date to the beginning" time="0" classname="Firefox 28.0.0 (Ubuntu).Project getPlanningElements"/> |
||||
<testcase name="should sort with only an end date as if it had a start date equal to the end date" time="0" classname="Firefox 28.0.0 (Ubuntu).Project getPlanningElements"/> |
||||
<testcase name="should sort by date per default" time="0" classname="Firefox 28.0.0 (Ubuntu).Project getPlanningElements"/> |
||||
<testcase name="should sort pes with same start by end" time="0" classname="Firefox 28.0.0 (Ubuntu).Project getPlanningElements"/> |
||||
<testcase name="should sort pes with same start and end by name" time="0" classname="Firefox 28.0.0 (Ubuntu).Project getPlanningElements"/> |
||||
<testcase name="should sort pes with same start and end and name by id" time="0" classname="Firefox 28.0.0 (Ubuntu).Project getPlanningElements"/> |
||||
<testcase name="should be null by default" time="0" classname="Firefox 28.0.0 (Ubuntu).Project responsible"/> |
||||
<testcase name="should get the responsible" time="0" classname="Firefox 28.0.0 (Ubuntu).Project responsible"/> |
||||
<testcase name="should allow get of responsible name" time="0" classname="Firefox 28.0.0 (Ubuntu).Project responsible"/> |
||||
<testcase name="should return undefined if responsible or responsible name are not set" time="0" classname="Firefox 28.0.0 (Ubuntu).Project responsible"/> |
||||
<testcase name="should always return undefined" time="0" classname="Firefox 28.0.0 (Ubuntu).Project assignee"/> |
||||
<testcase name="should return null if no reporting" time="0" classname="Firefox 28.0.0 (Ubuntu).Project status"/> |
||||
<testcase name="should return reporting status" time="0" classname="Firefox 28.0.0 (Ubuntu).Project status"> |
||||
<skipped/> |
||||
</testcase> |
||||
<testcase name="returns pes before reporters" time="0" classname="Firefox 28.0.0 (Ubuntu).Project subElements"> |
||||
<skipped/> |
||||
</testcase> |
||||
<testcase name="returns the same pes as getPlanningElements" time="0" classname="Firefox 28.0.0 (Ubuntu).Project subElements"> |
||||
<skipped/> |
||||
</testcase> |
||||
<testcase name="filters the reporters correctly" time="0" classname="Firefox 28.0.0 (Ubuntu).Project subElements"> |
||||
<skipped/> |
||||
</testcase> |
||||
<testcase name="should return reporters" time="0.001" classname="Firefox 28.0.0 (Ubuntu).Project Reporters"/> |
||||
<testcase name="should sort without date to the beginning" time="0" classname="Firefox 28.0.0 (Ubuntu).Project Reporters"/> |
||||
<testcase name="should sort by date" time="0.001" classname="Firefox 28.0.0 (Ubuntu).Project Reporters"/> |
||||
<testcase name="should sort with same start and end by name" time="0" classname="Firefox 28.0.0 (Ubuntu).Project Reporters"/> |
||||
<testcase name="should sort with same start and end and name by id" time="0.001" classname="Firefox 28.0.0 (Ubuntu).Project Reporters"/> |
||||
<testcase name="should sort groups by name" time="0.001" classname="Firefox 28.0.0 (Ubuntu).Project Reporters groups"/> |
||||
<testcase name="should sort groups by explicit order if given" time="0.001" classname="Firefox 28.0.0 (Ubuntu).Project Reporters groups"/> |
||||
<testcase name="should return null if no parent given" time="0" classname="Firefox 28.0.0 (Ubuntu).Project Parent"> |
||||
<skipped/> |
||||
</testcase> |
||||
<testcase name="should return the correct parent" time="0" classname="Firefox 28.0.0 (Ubuntu).Project Parent"> |
||||
<skipped/> |
||||
</testcase> |
||||
<testcase name="should return the correct url" time="0" classname="Firefox 28.0.0 (Ubuntu).Project Url"> |
||||
<skipped/> |
||||
</testcase> |
||||
<testcase name="should return true if element in array" time="0" classname="Firefox 28.0.0 (Ubuntu).Helper Functions id in Array"/> |
||||
<testcase name="should return true if no array or empty array is passed" time="0" classname="Firefox 28.0.0 (Ubuntu).Helper Functions id in Array"/> |
||||
<testcase name="should set query.groupBy" time="0" classname="Firefox 28.0.0 (Ubuntu).QueryService query setup"/> |
||||
<testcase name="should set query.displaySums" time="0" classname="Firefox 28.0.0 (Ubuntu).QueryService query setup"/> |
||||
<testcase name="should load the available filters" time="0" classname="Firefox 28.0.0 (Ubuntu).QueryService query setup filters"> |
||||
<skipped/> |
||||
</testcase> |
||||
<testcase name="should assign filters to the query" time="0" classname="Firefox 28.0.0 (Ubuntu).QueryService query setup filters"> |
||||
<skipped/> |
||||
</testcase> |
||||
<system-out><![CDATA[ |
||||
]]></system-out> |
||||
<system-err/> |
||||
</testsuite> |
||||
</testsuites> |
@ -1,28 +0,0 @@ |
||||
{ |
||||
"name": "Caret.js", |
||||
"main": "src/jquery.caret.js", |
||||
"ignore": [ |
||||
"**/.*", |
||||
"node_modules", |
||||
"bower_components", |
||||
"test", |
||||
"tests", |
||||
"spec", |
||||
"index.html" |
||||
], |
||||
"dependencies": { |
||||
"jquery": ">=1.7.0" |
||||
}, |
||||
"devDependencies": { |
||||
"jasmine-jquery": "~1.5.8" |
||||
}, |
||||
"homepage": "https://github.com/ichord/Caret.js", |
||||
"_release": "72495fcb19", |
||||
"_resolution": { |
||||
"type": "commit", |
||||
"commit": "72495fcb194a0beec14de25956a7c615ede630b2" |
||||
}, |
||||
"_source": "git://github.com/ichord/Caret.js.git", |
||||
"_target": "72495fcb194a0beec14de25956a7c615ede630b2", |
||||
"_originalSource": "ichord/Caret.js" |
||||
} |
@ -1,35 +0,0 @@ |
||||
### v0.0.7 |
||||
|
||||
* cf94271 - Added suport for .caret(pos, 0) - Nicolas Donna |
||||
* 2de2b0f - Fixed error when checking the pos arg when setting the position - Nicolas Donna |
||||
* 34ac7fa - catch error thrown in cross-domain iframe - jiyinyiyong |
||||
|
||||
* 01f1fa1 - add minified file in dist. |
||||
|
||||
### v0.0.6 |
||||
|
||||
* 287b5d8 working in iframe |
||||
|
||||
### v0.0.5 |
||||
|
||||
* aef0aa4 fix IE input position error |
||||
* 4a4f7f7 fix contenteditable null value bug |
||||
|
||||
### v0.0.4 |
||||
|
||||
* fix scrolling problem |
||||
|
||||
### v0.0.2 |
||||
|
||||
* support `contentEditable` mode |
||||
* fix ie bugs, and support IE > 6 to all mode |
||||
|
||||
### 2013-08-07 |
||||
|
||||
* fix bug: error position at beginning of textarea |
||||
* Bower |
||||
* jasmine test |
||||
|
||||
### 2013-03-31 |
||||
|
||||
* support IE browsers. |
@ -1,49 +0,0 @@ |
||||
module.exports = (grunt) -> |
||||
grunt.initConfig |
||||
pkg: grunt.file.readJSON 'package.json' |
||||
bower_path: 'bower_components' |
||||
|
||||
jasmine: |
||||
src: 'src/*.js' |
||||
options: |
||||
vendor: [ |
||||
'<%= bower_path %>/jquery/dist/jquery.min.js', |
||||
'<%= bower_path %>/jasmine-jquery/lib/jasmine-jquery.js' |
||||
] |
||||
specs: 'spec/javascripts/*.js' |
||||
# keepRunner: true |
||||
|
||||
uglify: |
||||
options: |
||||
banner: '/*! <%= pkg.name %> <%= grunt.template.today("yyyy-mm-dd") %> */\n' |
||||
build: |
||||
files: |
||||
'dist/<%= pkg.name %>.min.js': ['src/<%= pkg.name %>.js'] |
||||
|
||||
coffee: |
||||
compileWithMaps: |
||||
options: |
||||
sourceMap: true |
||||
files: |
||||
'src/<%= pkg.name %>.js': 'src/<%= pkg.name %>.coffee' |
||||
|
||||
'json-replace': |
||||
options: |
||||
space: " ", |
||||
replace: |
||||
version: "<%= pkg.version %>" |
||||
'update-version': |
||||
files:[{ |
||||
'bower.json': 'bower.json', |
||||
'component.json': 'component.json' |
||||
}] |
||||
|
||||
grunt.loadNpmTasks 'grunt-contrib-coffee' |
||||
grunt.loadNpmTasks 'grunt-contrib-uglify' |
||||
grunt.loadNpmTasks 'grunt-contrib-jasmine' |
||||
grunt.loadNpmTasks 'grunt-json-replace' |
||||
|
||||
grunt.registerTask 'update-version', 'json-replace' |
||||
|
||||
grunt.registerTask 'default', ['coffee', 'jasmine','update-version', 'uglify'] |
||||
grunt.registerTask 'test', ['coffee', 'jasmine'] |
@ -1,22 +0,0 @@ |
||||
Copyright (c) 2013 chord.luo@gmail.com |
||||
|
||||
Permission is hereby granted, free of charge, to any person |
||||
obtaining a copy of this software and associated documentation |
||||
files (the "Software"), to deal in the Software without |
||||
restriction, including without limitation the rights to use, |
||||
copy, modify, merge, publish, distribute, sublicense, and/or sell |
||||
copies of the Software, and to permit persons to whom the |
||||
Software is furnished to do so, subject to the following |
||||
conditions: |
||||
|
||||
The above copyright notice and this permission notice shall be |
||||
included in all copies or substantial portions of the Software. |
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, |
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES |
||||
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND |
||||
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT |
||||
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, |
||||
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING |
||||
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR |
||||
OTHER DEALINGS IN THE SOFTWARE. |
@ -1,57 +0,0 @@ |
||||
Caret.js |
||||
======== |
||||
|
||||
Get caret postion or offset from inputor |
||||
|
||||
This is the core function that working in [At.js](http://ichord.github.com/At.js). |
||||
Now, It just become an simple jquery plugin so that everybody can use it. |
||||
And, of course, **At.js** is using this plugin too. |
||||
|
||||
* support iframe context |
||||
|
||||
Live Demo |
||||
========= |
||||
|
||||
http://ichord.github.com/Caret.js/ |
||||
|
||||
|
||||
Usage |
||||
===== |
||||
|
||||
```javascript |
||||
|
||||
// Get caret position |
||||
// not working in `contentEditable` mode |
||||
$('#inputor').caret('position'); // => {left: 15, top: 30, height: 20} |
||||
$('#inputor').caret('iframe', iframe1).caret('position') |
||||
|
||||
// Get caret offset |
||||
$('#inputor').caret('offset'); // => {left: 300, top: 400, height: 20} |
||||
|
||||
var fixPos = 20 |
||||
// Get position of the 20th char in the inputor. |
||||
// not working in `contentEditable` mode |
||||
$('#inputor').caret('position', fixPos); |
||||
|
||||
// Get offset of the 20th char. |
||||
// not working in `contentEditable` mode |
||||
$('#inputor').caret('offset', fixPos); |
||||
|
||||
// more |
||||
|
||||
// Get caret position from first char in inputor. |
||||
$('#inputor').caret('pos'); // => 15 |
||||
|
||||
// Set caret position in the inputor |
||||
// not working in contentEditable mode |
||||
$('#inputor').caret('pos', 15); |
||||
|
||||
// set iframe context |
||||
// oftenly you don't need to set iframe context because caret.js will find the iframe object automatically |
||||
// but some iframe editor will prevent caret.js to finding for security reasons, |
||||
// so you may have to set the iframe manually |
||||
$('#inputor').caret({iframe: theIframe}); |
||||
$('#inputor').caret('offset'); |
||||
$('#inputor').caret('pos', 15); |
||||
|
||||
``` |
@ -1,20 +0,0 @@ |
||||
{ |
||||
"name": "Caret.js", |
||||
"version": "0.0.9", |
||||
"main": "src/jquery.caret.js", |
||||
"ignore": [ |
||||
"**/.*", |
||||
"node_modules", |
||||
"bower_components", |
||||
"test", |
||||
"tests", |
||||
"spec", |
||||
"index.html" |
||||
], |
||||
"dependencies": { |
||||
"jquery": ">=1.7.0" |
||||
}, |
||||
"devDependencies": { |
||||
"jasmine-jquery": "~1.5.8" |
||||
} |
||||
} |
@ -1,20 +0,0 @@ |
||||
{ |
||||
"name": "Caret.js", |
||||
"repo": "ichord/Caret.js", |
||||
"description": "Add Github like mentions autocomplete to your application.", |
||||
"version": "0.0.9", |
||||
"keywords": [ |
||||
"At.js", |
||||
"caret", |
||||
"ui" |
||||
], |
||||
"dependencies": { |
||||
"component/jquery": "*" |
||||
}, |
||||
"demo": "http://ichord.github.com/Caret.js", |
||||
"main": "src/jquery.caret.js", |
||||
"scripts": [ |
||||
"src/jquery.caret.js" |
||||
], |
||||
"license": "MIT" |
||||
} |
File diff suppressed because one or more lines are too long
@ -1,27 +0,0 @@ |
||||
{ |
||||
"name": "jquery.caret", |
||||
"version": "0.0.9", |
||||
"description": "Get caret position and offset from inputor", |
||||
"main": "index.js", |
||||
"dependencies": { |
||||
"grunt": "~0.4.1" |
||||
}, |
||||
"devDependencies": { |
||||
"grunt-contrib-uglify": "~0.2.0", |
||||
"grunt-contrib-coffee": "~0.6.4", |
||||
"grunt-contrib-jasmine": "~0.5.1", |
||||
"grunt-json-replace": "~0.1.2" |
||||
}, |
||||
"scripts": { |
||||
"test": "grunt test --verbose" |
||||
}, |
||||
"repository": "", |
||||
"keywords": [ |
||||
"jquery", |
||||
"caret", |
||||
"offset", |
||||
"position" |
||||
], |
||||
"author": "Harold.luo <chord.luo@gmail.com>", |
||||
"license": "MIT" |
||||
} |
@ -1,282 +0,0 @@ |
||||
### |
||||
Implement Github like autocomplete mentions |
||||
http://ichord.github.com/At.js |
||||
|
||||
Copyright (c) 2013 chord.luo@gmail.com |
||||
Licensed under the MIT license. |
||||
### |
||||
|
||||
### |
||||
本插件操作 textarea 或者 input 内的插入符 |
||||
只实现了获得插入符在文本框中的位置,我设置 |
||||
插入符的位置. |
||||
### |
||||
( (factory) -> |
||||
# Uses AMD or browser globals to create a jQuery plugin. |
||||
# It does not try to register in a CommonJS environment since |
||||
# jQuery is not likely to run in those environments. |
||||
# |
||||
# form [umd](https://github.com/umdjs/umd) project |
||||
if typeof define is 'function' and define.amd |
||||
# Register as an anonymous AMD module: |
||||
define ['jquery'], factory |
||||
else |
||||
# Browser globals |
||||
factory window.jQuery |
||||
) ($) -> |
||||
|
||||
"use strict"; |
||||
|
||||
pluginName = 'caret' |
||||
|
||||
class EditableCaret |
||||
constructor: (@$inputor) -> |
||||
@domInputor = @$inputor[0] |
||||
|
||||
# NOTE: Duck type |
||||
setPos: (pos) -> @domInputor |
||||
getIEPosition: -> $.noop() |
||||
getPosition: -> $.noop() |
||||
|
||||
getOldIEPos: -> |
||||
textRange = oDocument.selection.createRange() |
||||
preCaretTextRange = oDocument.body.createTextRange() |
||||
preCaretTextRange.moveToElementText(@domInputor) |
||||
preCaretTextRange.setEndPoint("EndToEnd", textRange) |
||||
preCaretTextRange.text.length |
||||
|
||||
getPos: -> |
||||
if range = this.range() # Major Browser and IE > 10 |
||||
clonedRange = range.cloneRange() |
||||
clonedRange.selectNodeContents(@domInputor) |
||||
clonedRange.setEnd(range.endContainer, range.endOffset) |
||||
pos = clonedRange.toString().length |
||||
clonedRange.detach() |
||||
pos |
||||
else if oDocument.selection #IE < 9 |
||||
this.getOldIEPos() |
||||
|
||||
getOldIEOffset: -> |
||||
range = oDocument.selection.createRange().duplicate() |
||||
range.moveStart "character", -1 |
||||
rect = range.getBoundingClientRect() |
||||
{ height: rect.bottom - rect.top, left: rect.left, top: rect.top } |
||||
|
||||
getOffset: (pos) -> |
||||
if oWindow.getSelection and range = this.range() |
||||
return null if range.endOffset - 1 < 0 |
||||
clonedRange = range.cloneRange() |
||||
# NOTE: have to select a char to get the rect. |
||||
clonedRange.setStart(range.endContainer, range.endOffset - 1) |
||||
clonedRange.setEnd(range.endContainer, range.endOffset) |
||||
rect = clonedRange.getBoundingClientRect() |
||||
offset = { height: rect.height, left: rect.left + rect.width, top: rect.top } |
||||
clonedRange.detach() |
||||
else if oDocument.selection # ie < 9 |
||||
offset = this.getOldIEOffset() |
||||
|
||||
if offset and !oFrame |
||||
offset.top += $(oWindow).scrollTop() |
||||
offset.left += $(oWindow).scrollLeft() |
||||
|
||||
offset |
||||
|
||||
range: -> |
||||
return unless oWindow.getSelection |
||||
sel = oWindow.getSelection() |
||||
if sel.rangeCount > 0 then sel.getRangeAt(0) else null |
||||
|
||||
|
||||
class InputCaret |
||||
|
||||
constructor: (@$inputor) -> |
||||
@domInputor = @$inputor[0] |
||||
|
||||
getIEPos: -> |
||||
# https://github.com/ichord/Caret.js/wiki/Get-pos-of-caret-in-IE |
||||
inputor = @domInputor |
||||
range = oDocument.selection.createRange() |
||||
pos = 0 |
||||
# selection should in the inputor. |
||||
if range and range.parentElement() is inputor |
||||
normalizedValue = inputor.value.replace /\r\n/g, "\n" |
||||
len = normalizedValue.length |
||||
textInputRange = inputor.createTextRange() |
||||
textInputRange.moveToBookmark range.getBookmark() |
||||
endRange = inputor.createTextRange() |
||||
endRange.collapse false |
||||
if textInputRange.compareEndPoints("StartToEnd", endRange) > -1 |
||||
pos = len |
||||
else |
||||
pos = -textInputRange.moveStart "character", -len |
||||
pos |
||||
|
||||
getPos: -> |
||||
if oDocument.selection then this.getIEPos() else @domInputor.selectionStart |
||||
|
||||
setPos: (pos) -> |
||||
inputor = @domInputor |
||||
if oDocument.selection #IE |
||||
range = inputor.createTextRange() |
||||
range.move "character", pos |
||||
range.select() |
||||
else if inputor.setSelectionRange |
||||
inputor.setSelectionRange pos, pos |
||||
inputor |
||||
|
||||
getIEOffset: (pos) -> |
||||
textRange = @domInputor.createTextRange() |
||||
pos ||= this.getPos() |
||||
textRange.move('character', pos) |
||||
|
||||
x = textRange.boundingLeft |
||||
y = textRange.boundingTop |
||||
h = textRange.boundingHeight |
||||
|
||||
{left: x, top: y, height: h} |
||||
|
||||
getOffset: (pos) -> |
||||
$inputor = @$inputor |
||||
if oDocument.selection |
||||
offset = this.getIEOffset(pos) |
||||
offset.top += $(oWindow).scrollTop() + $inputor.scrollTop() |
||||
offset.left += $(oWindow).scrollLeft() + $inputor.scrollLeft() |
||||
offset |
||||
else |
||||
offset = $inputor.offset() |
||||
position = this.getPosition(pos) |
||||
offset = |
||||
left: offset.left + position.left - $inputor.scrollLeft() |
||||
top: offset.top + position.top - $inputor.scrollTop() |
||||
height: position.height |
||||
|
||||
getPosition: (pos)-> |
||||
$inputor = @$inputor |
||||
format = (value) -> |
||||
value.replace(/</g, '<') |
||||
.replace(/>/g, '>') |
||||
.replace(/`/g,'`') |
||||
.replace(/"/g,'"') |
||||
.replace(/\r\n|\r|\n/g,"<br />") |
||||
|
||||
pos = this.getPos() if pos is undefined |
||||
start_range = $inputor.val().slice(0, pos) |
||||
html = "<span>"+format(start_range)+"</span>" |
||||
html += "<span id='caret'>|</span>" |
||||
|
||||
mirror = new Mirror($inputor) |
||||
at_rect = mirror.create(html).rect() |
||||
|
||||
getIEPosition: (pos) -> |
||||
offset = this.getIEOffset pos |
||||
inputorOffset = @$inputor.offset() |
||||
x = offset.left - inputorOffset.left |
||||
y = offset.top - inputorOffset.top |
||||
h = offset.height |
||||
|
||||
{left: x, top: y, height: h} |
||||
|
||||
# @example |
||||
# mirror = new Mirror($("textarea#inputor")) |
||||
# html = "<p>We will get the rect of <span>@</span>icho</p>" |
||||
# mirror.create(html).rect() |
||||
class Mirror |
||||
css_attr: [ |
||||
"overflowY", "height", "width", "paddingTop", "paddingLeft", |
||||
"paddingRight", "paddingBottom", "marginTop", "marginLeft", |
||||
"marginRight", "marginBottom","fontFamily", "borderStyle", |
||||
"borderWidth","wordWrap", "fontSize", "lineHeight", "overflowX", |
||||
"text-align", |
||||
] |
||||
|
||||
constructor: (@$inputor) -> |
||||
|
||||
mirrorCss: -> |
||||
css = |
||||
position: 'absolute' |
||||
left: -9999 |
||||
top:0 |
||||
zIndex: -20000 |
||||
'white-space': 'pre-wrap' |
||||
$.each @css_attr, (i,p) => |
||||
css[p] = @$inputor.css p |
||||
css |
||||
|
||||
create: (html) -> |
||||
@$mirror = $('<div></div>') |
||||
@$mirror.css this.mirrorCss() |
||||
@$mirror.html(html) |
||||
@$inputor.after(@$mirror) |
||||
this |
||||
|
||||
# 获得标记的位置 |
||||
# |
||||
# @return [Object] 标记的坐标 |
||||
# {left: 0, top: 0, bottom: 0} |
||||
rect: -> |
||||
$flag = @$mirror.find "#caret" |
||||
pos = $flag.position() |
||||
rect = {left: pos.left, top: pos.top, height: $flag.height() } |
||||
@$mirror.remove() |
||||
rect |
||||
|
||||
Utils = |
||||
contentEditable: ($inputor)-> |
||||
!!($inputor[0].contentEditable && $inputor[0].contentEditable == 'true') |
||||
|
||||
methods = |
||||
pos: (pos) -> |
||||
if pos or pos == 0 |
||||
this.setPos pos |
||||
else |
||||
this.getPos() |
||||
|
||||
position: (pos) -> |
||||
if oDocument.selection then this.getIEPosition pos else this.getPosition pos |
||||
|
||||
offset: (pos) -> |
||||
offset = this.getOffset(pos) |
||||
if oFrame |
||||
iOffset = $(oFrame).offset() |
||||
offset.top += iOffset.top |
||||
offset.left += iOffset.left |
||||
offset |
||||
|
||||
oDocument = null |
||||
oWindow = null |
||||
oFrame = null |
||||
setContextBy = (iframe) -> |
||||
oFrame = iframe |
||||
oWindow = iframe.contentWindow |
||||
oDocument = iframe.contentDocument || oWindow.document |
||||
configure = ($dom, settings) -> |
||||
if $.isPlainObject(settings) and iframe = settings.iframe |
||||
$dom.data('caret-iframe', iframe) |
||||
setContextBy iframe |
||||
else if iframe = $dom.data('caret-iframe') |
||||
setContextBy iframe |
||||
else |
||||
oDocument = $dom[0].ownerDocument |
||||
oWindow = oDocument.defaultView || oDocument.parentWindow |
||||
try |
||||
oFrame = oWindow.frameElement |
||||
catch error |
||||
# throws error in cross-domain iframes |
||||
$.fn.caret = (method) -> |
||||
# http://stackoverflow.com/questions/16010204/get-reference-of-window-object-from-a-dom-element |
||||
if typeof method is 'object' |
||||
configure this, method |
||||
this |
||||
else if methods[method] |
||||
configure this |
||||
caret = if Utils.contentEditable(this) then new EditableCaret(this) else new InputCaret(this) |
||||
methods[method].apply caret, Array::slice.call(arguments, 1) |
||||
else |
||||
$.error "Method #{method} does not exist on jQuery.caret" |
||||
|
||||
|
||||
|
||||
$.fn.caret.EditableCaret = EditableCaret |
||||
$.fn.caret.InputCaret = InputCaret |
||||
$.fn.caret.Utils = Utils |
||||
$.fn.caret.apis = methods |
@ -1,361 +0,0 @@ |
||||
//@ sourceMappingURL=jquery.caret.map
|
||||
/* |
||||
Implement Github like autocomplete mentions |
||||
http://ichord.github.com/At.js
|
||||
|
||||
Copyright (c) 2013 chord.luo@gmail.com |
||||
Licensed under the MIT license. |
||||
*/ |
||||
|
||||
|
||||
/* |
||||
本插件操作 textarea 或者 input 内的插入符 |
||||
只实现了获得插入符在文本框中的位置,我设置 |
||||
插入符的位置. |
||||
*/ |
||||
|
||||
|
||||
(function() { |
||||
(function(factory) { |
||||
if (typeof define === 'function' && define.amd) { |
||||
return define(['jquery'], factory); |
||||
} else { |
||||
return factory(window.jQuery); |
||||
} |
||||
})(function($) { |
||||
"use strict"; |
||||
var EditableCaret, InputCaret, Mirror, Utils, configure, methods, oDocument, oFrame, oWindow, pluginName, setContextBy; |
||||
pluginName = 'caret'; |
||||
EditableCaret = (function() { |
||||
function EditableCaret($inputor) { |
||||
this.$inputor = $inputor; |
||||
this.domInputor = this.$inputor[0]; |
||||
} |
||||
|
||||
EditableCaret.prototype.setPos = function(pos) { |
||||
return this.domInputor; |
||||
}; |
||||
|
||||
EditableCaret.prototype.getIEPosition = function() { |
||||
return $.noop(); |
||||
}; |
||||
|
||||
EditableCaret.prototype.getPosition = function() { |
||||
return $.noop(); |
||||
}; |
||||
|
||||
EditableCaret.prototype.getOldIEPos = function() { |
||||
var preCaretTextRange, textRange; |
||||
textRange = oDocument.selection.createRange(); |
||||
preCaretTextRange = oDocument.body.createTextRange(); |
||||
preCaretTextRange.moveToElementText(this.domInputor); |
||||
preCaretTextRange.setEndPoint("EndToEnd", textRange); |
||||
return preCaretTextRange.text.length; |
||||
}; |
||||
|
||||
EditableCaret.prototype.getPos = function() { |
||||
var clonedRange, pos, range; |
||||
if (range = this.range()) { |
||||
clonedRange = range.cloneRange(); |
||||
clonedRange.selectNodeContents(this.domInputor); |
||||
clonedRange.setEnd(range.endContainer, range.endOffset); |
||||
pos = clonedRange.toString().length; |
||||
clonedRange.detach(); |
||||
return pos; |
||||
} else if (oDocument.selection) { |
||||
return this.getOldIEPos(); |
||||
} |
||||
}; |
||||
|
||||
EditableCaret.prototype.getOldIEOffset = function() { |
||||
var range, rect; |
||||
range = oDocument.selection.createRange().duplicate(); |
||||
range.moveStart("character", -1); |
||||
rect = range.getBoundingClientRect(); |
||||
return { |
||||
height: rect.bottom - rect.top, |
||||
left: rect.left, |
||||
top: rect.top |
||||
}; |
||||
}; |
||||
|
||||
EditableCaret.prototype.getOffset = function(pos) { |
||||
var clonedRange, offset, range, rect; |
||||
if (oWindow.getSelection && (range = this.range())) { |
||||
if (range.endOffset - 1 < 0) { |
||||
return null; |
||||
} |
||||
clonedRange = range.cloneRange(); |
||||
clonedRange.setStart(range.endContainer, range.endOffset - 1); |
||||
clonedRange.setEnd(range.endContainer, range.endOffset); |
||||
rect = clonedRange.getBoundingClientRect(); |
||||
offset = { |
||||
height: rect.height, |
||||
left: rect.left + rect.width, |
||||
top: rect.top |
||||
}; |
||||
clonedRange.detach(); |
||||
} else if (oDocument.selection) { |
||||
offset = this.getOldIEOffset(); |
||||
} |
||||
if (offset && !oFrame) { |
||||
offset.top += $(oWindow).scrollTop(); |
||||
offset.left += $(oWindow).scrollLeft(); |
||||
} |
||||
return offset; |
||||
}; |
||||
|
||||
EditableCaret.prototype.range = function() { |
||||
var sel; |
||||
if (!oWindow.getSelection) { |
||||
return; |
||||
} |
||||
sel = oWindow.getSelection(); |
||||
if (sel.rangeCount > 0) { |
||||
return sel.getRangeAt(0); |
||||
} else { |
||||
return null; |
||||
} |
||||
}; |
||||
|
||||
return EditableCaret; |
||||
|
||||
})(); |
||||
InputCaret = (function() { |
||||
function InputCaret($inputor) { |
||||
this.$inputor = $inputor; |
||||
this.domInputor = this.$inputor[0]; |
||||
} |
||||
|
||||
InputCaret.prototype.getIEPos = function() { |
||||
var endRange, inputor, len, normalizedValue, pos, range, textInputRange; |
||||
inputor = this.domInputor; |
||||
range = oDocument.selection.createRange(); |
||||
pos = 0; |
||||
if (range && range.parentElement() === inputor) { |
||||
normalizedValue = inputor.value.replace(/\r\n/g, "\n"); |
||||
len = normalizedValue.length; |
||||
textInputRange = inputor.createTextRange(); |
||||
textInputRange.moveToBookmark(range.getBookmark()); |
||||
endRange = inputor.createTextRange(); |
||||
endRange.collapse(false); |
||||
if (textInputRange.compareEndPoints("StartToEnd", endRange) > -1) { |
||||
pos = len; |
||||
} else { |
||||
pos = -textInputRange.moveStart("character", -len); |
||||
} |
||||
} |
||||
return pos; |
||||
}; |
||||
|
||||
InputCaret.prototype.getPos = function() { |
||||
if (oDocument.selection) { |
||||
return this.getIEPos(); |
||||
} else { |
||||
return this.domInputor.selectionStart; |
||||
} |
||||
}; |
||||
|
||||
InputCaret.prototype.setPos = function(pos) { |
||||
var inputor, range; |
||||
inputor = this.domInputor; |
||||
if (oDocument.selection) { |
||||
range = inputor.createTextRange(); |
||||
range.move("character", pos); |
||||
range.select(); |
||||
} else if (inputor.setSelectionRange) { |
||||
inputor.setSelectionRange(pos, pos); |
||||
} |
||||
return inputor; |
||||
}; |
||||
|
||||
InputCaret.prototype.getIEOffset = function(pos) { |
||||
var h, textRange, x, y; |
||||
textRange = this.domInputor.createTextRange(); |
||||
pos || (pos = this.getPos()); |
||||
textRange.move('character', pos); |
||||
x = textRange.boundingLeft; |
||||
y = textRange.boundingTop; |
||||
h = textRange.boundingHeight; |
||||
return { |
||||
left: x, |
||||
top: y, |
||||
height: h |
||||
}; |
||||
}; |
||||
|
||||
InputCaret.prototype.getOffset = function(pos) { |
||||
var $inputor, offset, position; |
||||
$inputor = this.$inputor; |
||||
if (oDocument.selection) { |
||||
offset = this.getIEOffset(pos); |
||||
offset.top += $(oWindow).scrollTop() + $inputor.scrollTop(); |
||||
offset.left += $(oWindow).scrollLeft() + $inputor.scrollLeft(); |
||||
return offset; |
||||
} else { |
||||
offset = $inputor.offset(); |
||||
position = this.getPosition(pos); |
||||
return offset = { |
||||
left: offset.left + position.left - $inputor.scrollLeft(), |
||||
top: offset.top + position.top - $inputor.scrollTop(), |
||||
height: position.height |
||||
}; |
||||
} |
||||
}; |
||||
|
||||
InputCaret.prototype.getPosition = function(pos) { |
||||
var $inputor, at_rect, format, html, mirror, start_range; |
||||
$inputor = this.$inputor; |
||||
format = function(value) { |
||||
return value.replace(/</g, '<').replace(/>/g, '>').replace(/`/g, '`').replace(/"/g, '"').replace(/\r\n|\r|\n/g, "<br />"); |
||||
}; |
||||
if (pos === void 0) { |
||||
pos = this.getPos(); |
||||
} |
||||
start_range = $inputor.val().slice(0, pos); |
||||
html = "<span>" + format(start_range) + "</span>"; |
||||
html += "<span id='caret'>|</span>"; |
||||
mirror = new Mirror($inputor); |
||||
return at_rect = mirror.create(html).rect(); |
||||
}; |
||||
|
||||
InputCaret.prototype.getIEPosition = function(pos) { |
||||
var h, inputorOffset, offset, x, y; |
||||
offset = this.getIEOffset(pos); |
||||
inputorOffset = this.$inputor.offset(); |
||||
x = offset.left - inputorOffset.left; |
||||
y = offset.top - inputorOffset.top; |
||||
h = offset.height; |
||||
return { |
||||
left: x, |
||||
top: y, |
||||
height: h |
||||
}; |
||||
}; |
||||
|
||||
return InputCaret; |
||||
|
||||
})(); |
||||
Mirror = (function() { |
||||
Mirror.prototype.css_attr = ["overflowY", "height", "width", "paddingTop", "paddingLeft", "paddingRight", "paddingBottom", "marginTop", "marginLeft", "marginRight", "marginBottom", "fontFamily", "borderStyle", "borderWidth", "wordWrap", "fontSize", "lineHeight", "overflowX", "text-align"]; |
||||
|
||||
function Mirror($inputor) { |
||||
this.$inputor = $inputor; |
||||
} |
||||
|
||||
Mirror.prototype.mirrorCss = function() { |
||||
var css, |
||||
_this = this; |
||||
css = { |
||||
position: 'absolute', |
||||
left: -9999, |
||||
top: 0, |
||||
zIndex: -20000, |
||||
'white-space': 'pre-wrap' |
||||
}; |
||||
$.each(this.css_attr, function(i, p) { |
||||
return css[p] = _this.$inputor.css(p); |
||||
}); |
||||
return css; |
||||
}; |
||||
|
||||
Mirror.prototype.create = function(html) { |
||||
this.$mirror = $('<div></div>'); |
||||
this.$mirror.css(this.mirrorCss()); |
||||
this.$mirror.html(html); |
||||
this.$inputor.after(this.$mirror); |
||||
return this; |
||||
}; |
||||
|
||||
Mirror.prototype.rect = function() { |
||||
var $flag, pos, rect; |
||||
$flag = this.$mirror.find("#caret"); |
||||
pos = $flag.position(); |
||||
rect = { |
||||
left: pos.left, |
||||
top: pos.top, |
||||
height: $flag.height() |
||||
}; |
||||
this.$mirror.remove(); |
||||
return rect; |
||||
}; |
||||
|
||||
return Mirror; |
||||
|
||||
})(); |
||||
Utils = { |
||||
contentEditable: function($inputor) { |
||||
return !!($inputor[0].contentEditable && $inputor[0].contentEditable === 'true'); |
||||
} |
||||
}; |
||||
methods = { |
||||
pos: function(pos) { |
||||
if (pos || pos === 0) { |
||||
return this.setPos(pos); |
||||
} else { |
||||
return this.getPos(); |
||||
} |
||||
}, |
||||
position: function(pos) { |
||||
if (oDocument.selection) { |
||||
return this.getIEPosition(pos); |
||||
} else { |
||||
return this.getPosition(pos); |
||||
} |
||||
}, |
||||
offset: function(pos) { |
||||
var iOffset, offset; |
||||
offset = this.getOffset(pos); |
||||
if (oFrame) { |
||||
iOffset = $(oFrame).offset(); |
||||
offset.top += iOffset.top; |
||||
offset.left += iOffset.left; |
||||
} |
||||
return offset; |
||||
} |
||||
}; |
||||
oDocument = null; |
||||
oWindow = null; |
||||
oFrame = null; |
||||
setContextBy = function(iframe) { |
||||
oFrame = iframe; |
||||
oWindow = iframe.contentWindow; |
||||
return oDocument = iframe.contentDocument || oWindow.document; |
||||
}; |
||||
configure = function($dom, settings) { |
||||
var error, iframe; |
||||
if ($.isPlainObject(settings) && (iframe = settings.iframe)) { |
||||
$dom.data('caret-iframe', iframe); |
||||
return setContextBy(iframe); |
||||
} else if (iframe = $dom.data('caret-iframe')) { |
||||
return setContextBy(iframe); |
||||
} else { |
||||
oDocument = $dom[0].ownerDocument; |
||||
oWindow = oDocument.defaultView || oDocument.parentWindow; |
||||
try { |
||||
return oFrame = oWindow.frameElement; |
||||
} catch (_error) { |
||||
error = _error; |
||||
} |
||||
} |
||||
}; |
||||
$.fn.caret = function(method) { |
||||
var caret; |
||||
if (typeof method === 'object') { |
||||
configure(this, method); |
||||
return this; |
||||
} else if (methods[method]) { |
||||
configure(this); |
||||
caret = Utils.contentEditable(this) ? new EditableCaret(this) : new InputCaret(this); |
||||
return methods[method].apply(caret, Array.prototype.slice.call(arguments, 1)); |
||||
} else { |
||||
return $.error("Method " + method + " does not exist on jQuery.caret"); |
||||
} |
||||
}; |
||||
$.fn.caret.EditableCaret = EditableCaret; |
||||
$.fn.caret.InputCaret = InputCaret; |
||||
$.fn.caret.Utils = Utils; |
||||
return $.fn.caret.apis = methods; |
||||
}); |
||||
|
||||
}).call(this); |
@ -1,18 +0,0 @@ |
||||
{ |
||||
"name": "angular-animate", |
||||
"version": "1.2.16", |
||||
"main": "./angular-animate.js", |
||||
"dependencies": { |
||||
"angular": "1.2.16" |
||||
}, |
||||
"homepage": "https://github.com/angular/bower-angular-animate", |
||||
"_release": "1.2.16", |
||||
"_resolution": { |
||||
"type": "version", |
||||
"tag": "v1.2.16", |
||||
"commit": "4eccd8ec8356a33bf3a98958d7a73b71290d3985" |
||||
}, |
||||
"_source": "git://github.com/angular/bower-angular-animate.git", |
||||
"_target": "~1.2.14", |
||||
"_originalSource": "angular-animate" |
||||
} |
@ -1,54 +0,0 @@ |
||||
# bower-angular-animate |
||||
|
||||
This repo is for distribution on `bower`. The source for this module is in the |
||||
[main AngularJS repo](https://github.com/angular/angular.js/tree/master/src/ngAnimate). |
||||
Please file issues and pull requests against that repo. |
||||
|
||||
## Install |
||||
|
||||
Install with `bower`: |
||||
|
||||
```shell |
||||
bower install angular-animate |
||||
``` |
||||
|
||||
Add a `<script>` to your `index.html`: |
||||
|
||||
```html |
||||
<script src="/bower_components/angular-animate/angular-animate.js"></script> |
||||
``` |
||||
|
||||
And add `ngAnimate` as a dependency for your app: |
||||
|
||||
```javascript |
||||
angular.module('myApp', ['ngAnimate']); |
||||
``` |
||||
|
||||
## Documentation |
||||
|
||||
Documentation is available on the |
||||
[AngularJS docs site](http://docs.angularjs.org/api/ngAnimate). |
||||
|
||||
## License |
||||
|
||||
The MIT License |
||||
|
||||
Copyright (c) 2010-2012 Google, Inc. http://angularjs.org |
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy |
||||
of this software and associated documentation files (the "Software"), to deal |
||||
in the Software without restriction, including without limitation the rights |
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
||||
copies of the Software, and to permit persons to whom the Software is |
||||
furnished to do so, subject to the following conditions: |
||||
|
||||
The above copyright notice and this permission notice shall be included in |
||||
all copies or substantial portions of the Software. |
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
||||
THE SOFTWARE. |
File diff suppressed because it is too large
Load Diff
@ -1,27 +0,0 @@ |
||||
/* |
||||
AngularJS v1.2.16 |
||||
(c) 2010-2014 Google, Inc. http://angularjs.org
|
||||
License: MIT |
||||
*/ |
||||
(function(s,g,P){'use strict';g.module("ngAnimate",["ng"]).factory("$$animateReflow",["$$rAF","$document",function(g,s){return function(e){return g(function(){e()})}}]).config(["$provide","$animateProvider",function(ga,G){function e(e){for(var p=0;p<e.length;p++){var g=e[p];if(g.nodeType==ba)return g}}function u(p){return g.element(e(p))}var m=g.noop,p=g.forEach,Q=G.$$selectors,ba=1,h="$$ngAnimateState",J="ng-animate",r={running:!0};ga.decorator("$animate",["$delegate","$injector","$sniffer","$rootElement", |
||||
"$$asyncCallback","$rootScope","$document",function(t,s,aa,K,E,H,P){function R(a){if(a){var b=[],c={};a=a.substr(1).split(".");(aa.transitions||aa.animations)&&b.push(s.get(Q[""]));for(var d=0;d<a.length;d++){var f=a[d],e=Q[f];e&&!c[f]&&(b.push(s.get(e)),c[f]=!0)}return b}}function L(a,b,c){function d(a,b){var c=a[b],d=a["before"+b.charAt(0).toUpperCase()+b.substr(1)];if(c||d)return"leave"==b&&(d=c,c=null),A.push({event:b,fn:c}),l.push({event:b,fn:d}),!0}function f(b,d,e){var f=[];p(b,function(a){a.fn&& |
||||
f.push(a)});var n=0;p(f,function(b,p){var C=function(){a:{if(d){(d[p]||m)();if(++n<f.length)break a;d=null}e()}};switch(b.event){case "setClass":d.push(b.fn(a,q,y,C));break;case "addClass":d.push(b.fn(a,q||c,C));break;case "removeClass":d.push(b.fn(a,y||c,C));break;default:d.push(b.fn(a,C))}});d&&0===d.length&&e()}var e=a[0];if(e){var h="setClass"==b,r=h||"addClass"==b||"removeClass"==b,q,y;g.isArray(c)&&(q=c[0],y=c[1],c=q+" "+y);var z=a.attr("class")+" "+c;if(T(z)){var v=m,w=[],l=[],x=m,n=[],A=[], |
||||
z=(" "+z).replace(/\s+/g,".");p(R(z),function(a){!d(a,b)&&h&&(d(a,"addClass"),d(a,"removeClass"))});return{node:e,event:b,className:c,isClassBased:r,isSetClassOperation:h,before:function(a){v=a;f(l,w,function(){v=m;a()})},after:function(a){x=a;f(A,n,function(){x=m;a()})},cancel:function(){w&&(p(w,function(a){(a||m)(!0)}),v(!0));n&&(p(n,function(a){(a||m)(!0)}),x(!0))}}}}}function F(a,b,c,d,f,e,r){function m(d){var e="$animate:"+d;x&&(x[e]&&0<x[e].length)&&E(function(){c.triggerHandler(e,{event:a, |
||||
className:b})})}function q(){m("before")}function y(){m("after")}function z(){m("close");r&&E(function(){r()})}function v(){v.hasBeenRun||(v.hasBeenRun=!0,e())}function w(){if(!w.hasBeenRun){w.hasBeenRun=!0;var d=c.data(h);d&&(l&&l.isClassBased?B(c,b):(E(function(){var d=c.data(h)||{};t==d.index&&B(c,b,a)}),c.data(h,d)));z()}}var l=L(c,a,b);if(l){b=l.className;var x=g.element._data(l.node),x=x&&x.events;d||(d=f?f.parent():c.parent());var n=c.data(h)||{};f=n.active||{};var A=n.totalActive||0,C=n.last; |
||||
if(l.isClassBased&&(n.disabled||C&&!C.isClassBased)||N(c,d))v(),q(),y(),w();else{d=!1;if(0<A){n=[];if(l.isClassBased)"setClass"==C.event?(n.push(C),B(c,b)):f[b]&&(s=f[b],s.event==a?d=!0:(n.push(s),B(c,b)));else if("leave"==a&&f["ng-leave"])d=!0;else{for(var s in f)n.push(f[s]),B(c,s);f={};A=0}0<n.length&&p(n,function(a){a.cancel()})}!l.isClassBased||(l.isSetClassOperation||d)||(d="addClass"==a==c.hasClass(b));if(d)q(),y(),z();else{if("leave"==a)c.one("$destroy",function(a){a=g.element(this);var b= |
||||
a.data(h);b&&(b=b.active["ng-leave"])&&(b.cancel(),B(a,"ng-leave"))});c.addClass(J);var t=O++;A++;f[b]=l;c.data(h,{last:l,active:f,index:t,totalActive:A});q();l.before(function(d){var e=c.data(h);d=d||!e||!e.active[b]||l.isClassBased&&e.active[b].event!=a;v();!0===d?w():(y(),l.after(w))})}}}else v(),q(),y(),w()}function U(a){if(a=e(a))a=g.isFunction(a.getElementsByClassName)?a.getElementsByClassName(J):a.querySelectorAll("."+J),p(a,function(a){a=g.element(a);(a=a.data(h))&&a.active&&p(a.active,function(a){a.cancel()})})} |
||||
function B(a,b){if(e(a)==e(K))r.disabled||(r.running=!1,r.structural=!1);else if(b){var c=a.data(h)||{},d=!0===b;!d&&(c.active&&c.active[b])&&(c.totalActive--,delete c.active[b]);if(d||!c.totalActive)a.removeClass(J),a.removeData(h)}}function N(a,b){if(r.disabled)return!0;if(e(a)==e(K))return r.disabled||r.running;do{if(0===b.length)break;var c=e(b)==e(K),d=c?r:b.data(h),d=d&&(!!d.disabled||d.running||0<d.totalActive);if(c||d)return d;if(c)break}while(b=b.parent());return!0}var O=0;K.data(h,r);H.$$postDigest(function(){H.$$postDigest(function(){r.running= |
||||
!1})});var V=G.classNameFilter(),T=V?function(a){return V.test(a)}:function(){return!0};return{enter:function(a,b,c,d){this.enabled(!1,a);t.enter(a,b,c);H.$$postDigest(function(){a=u(a);F("enter","ng-enter",a,b,c,m,d)})},leave:function(a,b){U(a);this.enabled(!1,a);H.$$postDigest(function(){F("leave","ng-leave",u(a),null,null,function(){t.leave(a)},b)})},move:function(a,b,c,d){U(a);this.enabled(!1,a);t.move(a,b,c);H.$$postDigest(function(){a=u(a);F("move","ng-move",a,b,c,m,d)})},addClass:function(a, |
||||
b,c){a=u(a);F("addClass",b,a,null,null,function(){t.addClass(a,b)},c)},removeClass:function(a,b,c){a=u(a);F("removeClass",b,a,null,null,function(){t.removeClass(a,b)},c)},setClass:function(a,b,c,d){a=u(a);F("setClass",[b,c],a,null,null,function(){t.setClass(a,b,c)},d)},enabled:function(a,b){switch(arguments.length){case 2:if(a)B(b);else{var c=b.data(h)||{};c.disabled=!0;b.data(h,c)}break;case 1:r.disabled=!a;break;default:a=!r.disabled}return!!a}}}]);G.register("",["$window","$sniffer","$timeout", |
||||
"$$animateReflow",function(h,r,u,K){function E(a,k){S&&S();W.push(k);S=K(function(){p(W,function(a){a()});W=[];S=null;M={}})}function H(a,k){var b=e(a);a=g.element(b);Y.push(a);b=Date.now()+k;b<=fa||(u.cancel(ea),fa=b,ea=u(function(){J(Y);Y=[]},k,!1))}function J(a){p(a,function(a){(a=a.data(n))&&(a.closeAnimationFn||m)()})}function R(a,k){var b=k?M[k]:null;if(!b){var c=0,d=0,e=0,f=0,n,Z,$,g;p(a,function(a){if(a.nodeType==ba){a=h.getComputedStyle(a)||{};$=a[I+z];c=Math.max(L($),c);g=a[I+v];n=a[I+w]; |
||||
d=Math.max(L(n),d);Z=a[q+w];f=Math.max(L(Z),f);var k=L(a[q+z]);0<k&&(k*=parseInt(a[q+l],10)||1);e=Math.max(k,e)}});b={total:0,transitionPropertyStyle:g,transitionDurationStyle:$,transitionDelayStyle:n,transitionDelay:d,transitionDuration:c,animationDelayStyle:Z,animationDelay:f,animationDuration:e};k&&(M[k]=b)}return b}function L(a){var k=0;a=g.isString(a)?a.split(/\s*,\s*/):[];p(a,function(a){k=Math.max(parseFloat(a)||0,k)});return k}function F(a){var k=a.parent(),b=k.data(x);b||(k.data(x,++da), |
||||
b=da);return b+"-"+e(a).getAttribute("class")}function U(a,k,b,c){var d=F(k),f=d+" "+b,p=M[f]?++M[f].total:0,g={};if(0<p){var h=b+"-stagger",g=d+" "+h;(d=!M[g])&&k.addClass(h);g=R(k,g);d&&k.removeClass(h)}c=c||function(a){return a()};k.addClass(b);var h=k.data(n)||{},l=c(function(){return R(k,f)});c=l.transitionDuration;d=l.animationDuration;if(0===c&&0===d)return k.removeClass(b),!1;k.data(n,{running:h.running||0,itemIndex:p,stagger:g,timings:l,closeAnimationFn:m});a=0<h.running||"setClass"==a;0< |
||||
c&&B(k,b,a);0<d&&(0<g.animationDelay&&0===g.animationDuration)&&(e(k).style[q]="none 0s");return!0}function B(a,b,c){"ng-enter"!=b&&("ng-move"!=b&&"ng-leave"!=b)&&c?a.addClass(A):e(a).style[I+v]="none"}function N(a,b){var c=I+v,d=e(a);d.style[c]&&0<d.style[c].length&&(d.style[c]="");a.removeClass(A)}function O(a){var b=q;a=e(a);a.style[b]&&0<a.style[b].length&&(a.style[b]="")}function V(a,b,c,f){function g(a){b.off(z,h);b.removeClass(r);d(b,c);a=e(b);for(var X in u)a.style.removeProperty(u[X])}function h(a){a.stopPropagation(); |
||||
var b=a.originalEvent||a;a=b.$manualTimeStamp||b.timeStamp||Date.now();b=parseFloat(b.elapsedTime.toFixed(C));Math.max(a-A,0)>=x&&b>=v&&f()}var l=e(b);a=b.data(n);if(-1!=l.getAttribute("class").indexOf(c)&&a){var r="";p(c.split(" "),function(a,b){r+=(0<b?" ":"")+a+"-active"});var q=a.stagger,m=a.timings,s=a.itemIndex,v=Math.max(m.transitionDuration,m.animationDuration),w=Math.max(m.transitionDelay,m.animationDelay),x=w*ca,A=Date.now(),z=y+" "+G,t="",u=[];if(0<m.transitionDuration){var B=m.transitionPropertyStyle; |
||||
-1==B.indexOf("all")&&(t+=D+"transition-property: "+B+";",t+=D+"transition-duration: "+m.transitionDurationStyle+";",u.push(D+"transition-property"),u.push(D+"transition-duration"))}0<s&&(0<q.transitionDelay&&0===q.transitionDuration&&(t+=D+"transition-delay: "+T(m.transitionDelayStyle,q.transitionDelay,s)+"; ",u.push(D+"transition-delay")),0<q.animationDelay&&0===q.animationDuration&&(t+=D+"animation-delay: "+T(m.animationDelayStyle,q.animationDelay,s)+"; ",u.push(D+"animation-delay")));0<u.length&& |
||||
(m=l.getAttribute("style")||"",l.setAttribute("style",m+" "+t));b.on(z,h);b.addClass(r);a.closeAnimationFn=function(){g();f()};l=(s*(Math.max(q.animationDelay,q.transitionDelay)||0)+(w+v)*Q)*ca;a.running++;H(b,l);return g}f()}function T(a,b,c){var d="";p(a.split(","),function(a,X){d+=(0<X?",":"")+(c*b+parseInt(a,10))+"s"});return d}function a(a,b,c,e){if(U(a,b,c,e))return function(a){a&&d(b,c)}}function b(a,b,c,e){if(b.data(n))return V(a,b,c,e);d(b,c);e()}function c(c,d,e,f){var g=a(c,d,e);if(g){var h= |
||||
g;E(d,function(){N(d,e);O(d);h=b(c,d,e,f)});return function(a){(h||m)(a)}}f()}function d(a,b){a.removeClass(b);var c=a.data(n);c&&(c.running&&c.running--,c.running&&0!==c.running||a.removeData(n))}function f(a,b){var c="";a=g.isArray(a)?a:a.split(/\s+/);p(a,function(a,d){a&&0<a.length&&(c+=(0<d?" ":"")+a+b)});return c}var D="",I,G,q,y;s.ontransitionend===P&&s.onwebkittransitionend!==P?(D="-webkit-",I="WebkitTransition",G="webkitTransitionEnd transitionend"):(I="transition",G="transitionend");s.onanimationend=== |
||||
P&&s.onwebkitanimationend!==P?(D="-webkit-",q="WebkitAnimation",y="webkitAnimationEnd animationend"):(q="animation",y="animationend");var z="Duration",v="Property",w="Delay",l="IterationCount",x="$$ngAnimateKey",n="$$ngAnimateCSS3Data",A="ng-animate-block-transitions",C=3,Q=1.5,ca=1E3,M={},da=0,W=[],S,ea=null,fa=0,Y=[];return{enter:function(a,b){return c("enter",a,"ng-enter",b)},leave:function(a,b){return c("leave",a,"ng-leave",b)},move:function(a,b){return c("move",a,"ng-move",b)},beforeSetClass:function(b, |
||||
c,d,e){var g=f(d,"-remove")+" "+f(c,"-add"),h=a("setClass",b,g,function(a){var e=b.attr("class");b.removeClass(d);b.addClass(c);a=a();b.attr("class",e);return a});if(h)return E(b,function(){N(b,g);O(b);e()}),h;e()},beforeAddClass:function(b,c,d){var e=a("addClass",b,f(c,"-add"),function(a){b.addClass(c);a=a();b.removeClass(c);return a});if(e)return E(b,function(){N(b,c);O(b);d()}),e;d()},setClass:function(a,c,d,e){d=f(d,"-remove");c=f(c,"-add");return b("setClass",a,d+" "+c,e)},addClass:function(a, |
||||
c,d){return b("addClass",a,f(c,"-add"),d)},beforeRemoveClass:function(b,c,d){var e=a("removeClass",b,f(c,"-remove"),function(a){var d=b.attr("class");b.removeClass(c);a=a();b.attr("class",d);return a});if(e)return E(b,function(){N(b,c);O(b);d()}),e;d()},removeClass:function(a,c,d){return b("removeClass",a,f(c,"-remove"),d)}}}])}])})(window,window.angular); |
||||
//# sourceMappingURL=angular-animate.min.js.map
|
File diff suppressed because one or more lines are too long
@ -1,8 +0,0 @@ |
||||
{ |
||||
"name": "angular-animate", |
||||
"version": "1.2.16", |
||||
"main": "./angular-animate.js", |
||||
"dependencies": { |
||||
"angular": "1.2.16" |
||||
} |
||||
} |
@ -1,19 +0,0 @@ |
||||
{ |
||||
"name": "angular-i18n", |
||||
"version": "1.3.0-build.2602+sha.b10a437", |
||||
"ignore": [ |
||||
"**/.*", |
||||
"node_modules", |
||||
"components" |
||||
], |
||||
"homepage": "https://github.com/angular/bower-angular-i18n", |
||||
"_release": "1.3.0-build.2602+sha.b10a437", |
||||
"_resolution": { |
||||
"type": "version", |
||||
"tag": "v1.3.0-build.2602+sha.b10a437", |
||||
"commit": "872bdf7eab12845eccb6273cb9814ac62fe33a1a" |
||||
}, |
||||
"_source": "git://github.com/angular/bower-angular-i18n.git", |
||||
"_target": "~1.3.0", |
||||
"_originalSource": "angular-i18n" |
||||
} |
@ -1,48 +0,0 @@ |
||||
# bower-angular-i18n |
||||
|
||||
This repo is for distribution on `bower`. The source for this module is in the |
||||
[main AngularJS repo](https://github.com/angular/angular.js). |
||||
Please file issues and pull requests against that repo. |
||||
|
||||
## Install |
||||
|
||||
Install with `bower`: |
||||
|
||||
```shell |
||||
bower install angular-i18n |
||||
``` |
||||
|
||||
Add a `<script>` to your `index.html`: |
||||
|
||||
```html |
||||
<script src="/bower_components/angular-i18n/angular-locale_YOUR-LOCALE.js"></script> |
||||
``` |
||||
|
||||
## Documentation |
||||
|
||||
Documentation is available on the |
||||
[AngularJS docs site](http://docs.angularjs.org/guide/i18n). |
||||
|
||||
## License |
||||
|
||||
The MIT License |
||||
|
||||
Copyright (c) 2010-2012 Google, Inc. http://angularjs.org |
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy |
||||
of this software and associated documentation files (the "Software"), to deal |
||||
in the Software without restriction, including without limitation the rights |
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
||||
copies of the Software, and to permit persons to whom the Software is |
||||
furnished to do so, subject to the following conditions: |
||||
|
||||
The above copyright notice and this permission notice shall be included in |
||||
all copies or substantial portions of the Software. |
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
||||
THE SOFTWARE. |
@ -1,99 +0,0 @@ |
||||
'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": [ |
||||
"vm.", |
||||
"nm." |
||||
], |
||||
"DAY": [ |
||||
"Sondag", |
||||
"Maandag", |
||||
"Dinsdag", |
||||
"Woensdag", |
||||
"Donderdag", |
||||
"Vrydag", |
||||
"Saterdag" |
||||
], |
||||
"MONTH": [ |
||||
"Januarie", |
||||
"Februarie", |
||||
"Maart", |
||||
"April", |
||||
"Mei", |
||||
"Junie", |
||||
"Julie", |
||||
"Augustus", |
||||
"September", |
||||
"Oktober", |
||||
"November", |
||||
"Desember" |
||||
], |
||||
"SHORTDAY": [ |
||||
"So", |
||||
"Ma", |
||||
"Di", |
||||
"Wo", |
||||
"Do", |
||||
"Vr", |
||||
"Sa" |
||||
], |
||||
"SHORTMONTH": [ |
||||
"Jan", |
||||
"Feb", |
||||
"Mar", |
||||
"Apr", |
||||
"Mei", |
||||
"Jun", |
||||
"Jul", |
||||
"Aug", |
||||
"Sep", |
||||
"Okt", |
||||
"Nov", |
||||
"Des" |
||||
], |
||||
"fullDate": "EEEE d MMMM y", |
||||
"longDate": "d MMMM y", |
||||
"medium": "d MMM y HH:mm:ss", |
||||
"mediumDate": "d MMM y", |
||||
"mediumTime": "HH:mm:ss", |
||||
"short": "yyyy-MM-dd HH:mm", |
||||
"shortDate": "yyyy-MM-dd", |
||||
"shortTime": "HH:mm" |
||||
}, |
||||
"NUMBER_FORMATS": { |
||||
"CURRENCY_SYM": "R", |
||||
"DECIMAL_SEP": ",", |
||||
"GROUP_SEP": "\u00a0", |
||||
"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": "(\u00a4", |
||||
"negSuf": ")", |
||||
"posPre": "\u00a4", |
||||
"posSuf": "" |
||||
} |
||||
] |
||||
}, |
||||
"id": "af-na", |
||||
"pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} |
||||
}); |
||||
}]); |
@ -1,99 +0,0 @@ |
||||
'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": [ |
||||
"vm.", |
||||
"nm." |
||||
], |
||||
"DAY": [ |
||||
"Sondag", |
||||
"Maandag", |
||||
"Dinsdag", |
||||
"Woensdag", |
||||
"Donderdag", |
||||
"Vrydag", |
||||
"Saterdag" |
||||
], |
||||
"MONTH": [ |
||||
"Januarie", |
||||
"Februarie", |
||||
"Maart", |
||||
"April", |
||||
"Mei", |
||||
"Junie", |
||||
"Julie", |
||||
"Augustus", |
||||
"September", |
||||
"Oktober", |
||||
"November", |
||||
"Desember" |
||||
], |
||||
"SHORTDAY": [ |
||||
"So", |
||||
"Ma", |
||||
"Di", |
||||
"Wo", |
||||
"Do", |
||||
"Vr", |
||||
"Sa" |
||||
], |
||||
"SHORTMONTH": [ |
||||
"Jan", |
||||
"Feb", |
||||
"Mar", |
||||
"Apr", |
||||
"Mei", |
||||
"Jun", |
||||
"Jul", |
||||
"Aug", |
||||
"Sep", |
||||
"Okt", |
||||
"Nov", |
||||
"Des" |
||||
], |
||||
"fullDate": "EEEE dd MMMM y", |
||||
"longDate": "dd MMMM y", |
||||
"medium": "dd MMM y h:mm:ss a", |
||||
"mediumDate": "dd MMM y", |
||||
"mediumTime": "h:mm:ss a", |
||||
"short": "yyyy-MM-dd h:mm a", |
||||
"shortDate": "yyyy-MM-dd", |
||||
"shortTime": "h:mm a" |
||||
}, |
||||
"NUMBER_FORMATS": { |
||||
"CURRENCY_SYM": "R", |
||||
"DECIMAL_SEP": ",", |
||||
"GROUP_SEP": "\u00a0", |
||||
"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": "(\u00a4", |
||||
"negSuf": ")", |
||||
"posPre": "\u00a4", |
||||
"posSuf": "" |
||||
} |
||||
] |
||||
}, |
||||
"id": "af-za", |
||||
"pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} |
||||
}); |
||||
}]); |
@ -1,99 +0,0 @@ |
||||
'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": [ |
||||
"vm.", |
||||
"nm." |
||||
], |
||||
"DAY": [ |
||||
"Sondag", |
||||
"Maandag", |
||||
"Dinsdag", |
||||
"Woensdag", |
||||
"Donderdag", |
||||
"Vrydag", |
||||
"Saterdag" |
||||
], |
||||
"MONTH": [ |
||||
"Januarie", |
||||
"Februarie", |
||||
"Maart", |
||||
"April", |
||||
"Mei", |
||||
"Junie", |
||||
"Julie", |
||||
"Augustus", |
||||
"September", |
||||
"Oktober", |
||||
"November", |
||||
"Desember" |
||||
], |
||||
"SHORTDAY": [ |
||||
"So", |
||||
"Ma", |
||||
"Di", |
||||
"Wo", |
||||
"Do", |
||||
"Vr", |
||||
"Sa" |
||||
], |
||||
"SHORTMONTH": [ |
||||
"Jan", |
||||
"Feb", |
||||
"Mar", |
||||
"Apr", |
||||
"Mei", |
||||
"Jun", |
||||
"Jul", |
||||
"Aug", |
||||
"Sep", |
||||
"Okt", |
||||
"Nov", |
||||
"Des" |
||||
], |
||||
"fullDate": "EEEE dd MMMM y", |
||||
"longDate": "dd MMMM y", |
||||
"medium": "dd MMM y h:mm:ss a", |
||||
"mediumDate": "dd MMM y", |
||||
"mediumTime": "h:mm:ss a", |
||||
"short": "yyyy-MM-dd h:mm a", |
||||
"shortDate": "yyyy-MM-dd", |
||||
"shortTime": "h:mm a" |
||||
}, |
||||
"NUMBER_FORMATS": { |
||||
"CURRENCY_SYM": "R", |
||||
"DECIMAL_SEP": ",", |
||||
"GROUP_SEP": "\u00a0", |
||||
"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": "(\u00a4", |
||||
"negSuf": ")", |
||||
"posPre": "\u00a4", |
||||
"posSuf": "" |
||||
} |
||||
] |
||||
}, |
||||
"id": "af", |
||||
"pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} |
||||
}); |
||||
}]); |
@ -1,99 +0,0 @@ |
||||
'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": [ |
||||
"\u1321\u12cb\u1275", |
||||
"\u12a8\u1233\u12d3\u1275" |
||||
], |
||||
"DAY": [ |
||||
"\u12a5\u1211\u12f5", |
||||
"\u1230\u129e", |
||||
"\u121b\u12ad\u1230\u129e", |
||||
"\u1228\u1261\u12d5", |
||||
"\u1210\u1219\u1235", |
||||
"\u12d3\u122d\u1265", |
||||
"\u1245\u12f3\u121c" |
||||
], |
||||
"MONTH": [ |
||||
"\u1303\u1295\u12e9\u12c8\u122a", |
||||
"\u134c\u1265\u1229\u12c8\u122a", |
||||
"\u121b\u122d\u127d", |
||||
"\u12a4\u1355\u1228\u120d", |
||||
"\u121c\u12ed", |
||||
"\u1301\u1295", |
||||
"\u1301\u120b\u12ed", |
||||
"\u12a6\u1308\u1235\u1275", |
||||
"\u1234\u1355\u1274\u121d\u1260\u122d", |
||||
"\u12a6\u12ad\u1270\u12cd\u1260\u122d", |
||||
"\u1296\u126c\u121d\u1260\u122d", |
||||
"\u12f2\u1234\u121d\u1260\u122d" |
||||
], |
||||
"SHORTDAY": [ |
||||
"\u12a5\u1211\u12f5", |
||||
"\u1230\u129e", |
||||
"\u121b\u12ad\u1230", |
||||
"\u1228\u1261\u12d5", |
||||
"\u1210\u1219\u1235", |
||||
"\u12d3\u122d\u1265", |
||||
"\u1245\u12f3\u121c" |
||||
], |
||||
"SHORTMONTH": [ |
||||
"\u1303\u1295\u12e9", |
||||
"\u134c\u1265\u1229", |
||||
"\u121b\u122d\u127d", |
||||
"\u12a4\u1355\u1228", |
||||
"\u121c\u12ed", |
||||
"\u1301\u1295", |
||||
"\u1301\u120b\u12ed", |
||||
"\u12a6\u1308\u1235", |
||||
"\u1234\u1355\u1274", |
||||
"\u12a6\u12ad\u1270", |
||||
"\u1296\u126c\u121d", |
||||
"\u12f2\u1234\u121d" |
||||
], |
||||
"fullDate": "EEEE, d MMMM y", |
||||
"longDate": "d MMMM y", |
||||
"medium": "d MMM y h:mm:ss a", |
||||
"mediumDate": "d MMM y", |
||||
"mediumTime": "h:mm:ss a", |
||||
"short": "dd/MM/yyyy h:mm a", |
||||
"shortDate": "dd/MM/yyyy", |
||||
"shortTime": "h:mm a" |
||||
}, |
||||
"NUMBER_FORMATS": { |
||||
"CURRENCY_SYM": "Birr", |
||||
"DECIMAL_SEP": ".", |
||||
"GROUP_SEP": ",", |
||||
"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": "(\u00a4", |
||||
"negSuf": ")", |
||||
"posPre": "\u00a4", |
||||
"posSuf": "" |
||||
} |
||||
] |
||||
}, |
||||
"id": "am-et", |
||||
"pluralCat": function (n) { if (n == 0 || n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} |
||||
}); |
||||
}]); |
@ -1,99 +0,0 @@ |
||||
'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": [ |
||||
"\u1321\u12cb\u1275", |
||||
"\u12a8\u1233\u12d3\u1275" |
||||
], |
||||
"DAY": [ |
||||
"\u12a5\u1211\u12f5", |
||||
"\u1230\u129e", |
||||
"\u121b\u12ad\u1230\u129e", |
||||
"\u1228\u1261\u12d5", |
||||
"\u1210\u1219\u1235", |
||||
"\u12d3\u122d\u1265", |
||||
"\u1245\u12f3\u121c" |
||||
], |
||||
"MONTH": [ |
||||
"\u1303\u1295\u12e9\u12c8\u122a", |
||||
"\u134c\u1265\u1229\u12c8\u122a", |
||||
"\u121b\u122d\u127d", |
||||
"\u12a4\u1355\u1228\u120d", |
||||
"\u121c\u12ed", |
||||
"\u1301\u1295", |
||||
"\u1301\u120b\u12ed", |
||||
"\u12a6\u1308\u1235\u1275", |
||||
"\u1234\u1355\u1274\u121d\u1260\u122d", |
||||
"\u12a6\u12ad\u1270\u12cd\u1260\u122d", |
||||
"\u1296\u126c\u121d\u1260\u122d", |
||||
"\u12f2\u1234\u121d\u1260\u122d" |
||||
], |
||||
"SHORTDAY": [ |
||||
"\u12a5\u1211\u12f5", |
||||
"\u1230\u129e", |
||||
"\u121b\u12ad\u1230", |
||||
"\u1228\u1261\u12d5", |
||||
"\u1210\u1219\u1235", |
||||
"\u12d3\u122d\u1265", |
||||
"\u1245\u12f3\u121c" |
||||
], |
||||
"SHORTMONTH": [ |
||||
"\u1303\u1295\u12e9", |
||||
"\u134c\u1265\u1229", |
||||
"\u121b\u122d\u127d", |
||||
"\u12a4\u1355\u1228", |
||||
"\u121c\u12ed", |
||||
"\u1301\u1295", |
||||
"\u1301\u120b\u12ed", |
||||
"\u12a6\u1308\u1235", |
||||
"\u1234\u1355\u1274", |
||||
"\u12a6\u12ad\u1270", |
||||
"\u1296\u126c\u121d", |
||||
"\u12f2\u1234\u121d" |
||||
], |
||||
"fullDate": "EEEE, d MMMM y", |
||||
"longDate": "d MMMM y", |
||||
"medium": "d MMM y h:mm:ss a", |
||||
"mediumDate": "d MMM y", |
||||
"mediumTime": "h:mm:ss a", |
||||
"short": "dd/MM/yyyy h:mm a", |
||||
"shortDate": "dd/MM/yyyy", |
||||
"shortTime": "h:mm a" |
||||
}, |
||||
"NUMBER_FORMATS": { |
||||
"CURRENCY_SYM": "Birr", |
||||
"DECIMAL_SEP": ".", |
||||
"GROUP_SEP": ",", |
||||
"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": "(\u00a4", |
||||
"negSuf": ")", |
||||
"posPre": "\u00a4", |
||||
"posSuf": "" |
||||
} |
||||
] |
||||
}, |
||||
"id": "am", |
||||
"pluralCat": function (n) { if (n == 0 || n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} |
||||
}); |
||||
}]); |
@ -1,99 +0,0 @@ |
||||
'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": [ |
||||
"\u0635", |
||||
"\u0645" |
||||
], |
||||
"DAY": [ |
||||
"\u0627\u0644\u0623\u062d\u062f", |
||||
"\u0627\u0644\u0627\u062b\u0646\u064a\u0646", |
||||
"\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621", |
||||
"\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621", |
||||
"\u0627\u0644\u062e\u0645\u064a\u0633", |
||||
"\u0627\u0644\u062c\u0645\u0639\u0629", |
||||
"\u0627\u0644\u0633\u0628\u062a" |
||||
], |
||||
"MONTH": [ |
||||
"\u064a\u0646\u0627\u064a\u0631", |
||||
"\u0641\u0628\u0631\u0627\u064a\u0631", |
||||
"\u0645\u0627\u0631\u0633", |
||||
"\u0623\u0628\u0631\u064a\u0644", |
||||
"\u0645\u0627\u064a\u0648", |
||||
"\u064a\u0648\u0646\u064a\u0648", |
||||
"\u064a\u0648\u0644\u064a\u0648", |
||||
"\u0623\u063a\u0633\u0637\u0633", |
||||
"\u0633\u0628\u062a\u0645\u0628\u0631", |
||||
"\u0623\u0643\u062a\u0648\u0628\u0631", |
||||
"\u0646\u0648\u0641\u0645\u0628\u0631", |
||||
"\u062f\u064a\u0633\u0645\u0628\u0631" |
||||
], |
||||
"SHORTDAY": [ |
||||
"\u0627\u0644\u0623\u062d\u062f", |
||||
"\u0627\u0644\u0627\u062b\u0646\u064a\u0646", |
||||
"\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621", |
||||
"\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621", |
||||
"\u0627\u0644\u062e\u0645\u064a\u0633", |
||||
"\u0627\u0644\u062c\u0645\u0639\u0629", |
||||
"\u0627\u0644\u0633\u0628\u062a" |
||||
], |
||||
"SHORTMONTH": [ |
||||
"\u064a\u0646\u0627\u064a\u0631", |
||||
"\u0641\u0628\u0631\u0627\u064a\u0631", |
||||
"\u0645\u0627\u0631\u0633", |
||||
"\u0623\u0628\u0631\u064a\u0644", |
||||
"\u0645\u0627\u064a\u0648", |
||||
"\u064a\u0648\u0646\u064a\u0648", |
||||
"\u064a\u0648\u0644\u064a\u0648", |
||||
"\u0623\u063a\u0633\u0637\u0633", |
||||
"\u0633\u0628\u062a\u0645\u0628\u0631", |
||||
"\u0623\u0643\u062a\u0648\u0628\u0631", |
||||
"\u0646\u0648\u0641\u0645\u0628\u0631", |
||||
"\u062f\u064a\u0633\u0645\u0628\u0631" |
||||
], |
||||
"fullDate": "EEEE\u060c d MMMM\u060c y", |
||||
"longDate": "d MMMM\u060c y", |
||||
"medium": "dd\u200f/MM\u200f/yyyy h:mm:ss a", |
||||
"mediumDate": "dd\u200f/MM\u200f/yyyy", |
||||
"mediumTime": "h:mm:ss a", |
||||
"short": "d\u200f/M\u200f/yyyy h:mm a", |
||||
"shortDate": "d\u200f/M\u200f/yyyy", |
||||
"shortTime": "h:mm a" |
||||
}, |
||||
"NUMBER_FORMATS": { |
||||
"CURRENCY_SYM": "\u00a3", |
||||
"DECIMAL_SEP": "\u066b", |
||||
"GROUP_SEP": "\u066c", |
||||
"PATTERNS": [ |
||||
{ |
||||
"gSize": 0, |
||||
"lgSize": 0, |
||||
"macFrac": 0, |
||||
"maxFrac": 3, |
||||
"minFrac": 0, |
||||
"minInt": 1, |
||||
"negPre": "", |
||||
"negSuf": "-", |
||||
"posPre": "", |
||||
"posSuf": "" |
||||
}, |
||||
{ |
||||
"gSize": 0, |
||||
"lgSize": 0, |
||||
"macFrac": 0, |
||||
"maxFrac": 2, |
||||
"minFrac": 2, |
||||
"minInt": 1, |
||||
"negPre": "\u00a4\u00a0", |
||||
"negSuf": "-", |
||||
"posPre": "\u00a4\u00a0", |
||||
"posSuf": "" |
||||
} |
||||
] |
||||
}, |
||||
"id": "ar-001", |
||||
"pluralCat": function (n) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n == (n | 0) && n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n == (n | 0) && n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} |
||||
}); |
||||
}]); |
@ -1,99 +0,0 @@ |
||||
'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": [ |
||||
"\u0635", |
||||
"\u0645" |
||||
], |
||||
"DAY": [ |
||||
"\u0627\u0644\u0623\u062d\u062f", |
||||
"\u0627\u0644\u0627\u062b\u0646\u064a\u0646", |
||||
"\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621", |
||||
"\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621", |
||||
"\u0627\u0644\u062e\u0645\u064a\u0633", |
||||
"\u0627\u0644\u062c\u0645\u0639\u0629", |
||||
"\u0627\u0644\u0633\u0628\u062a" |
||||
], |
||||
"MONTH": [ |
||||
"\u064a\u0646\u0627\u064a\u0631", |
||||
"\u0641\u0628\u0631\u0627\u064a\u0631", |
||||
"\u0645\u0627\u0631\u0633", |
||||
"\u0623\u0628\u0631\u064a\u0644", |
||||
"\u0645\u0627\u064a\u0648", |
||||
"\u064a\u0648\u0646\u064a\u0648", |
||||
"\u064a\u0648\u0644\u064a\u0648", |
||||
"\u0623\u063a\u0633\u0637\u0633", |
||||
"\u0633\u0628\u062a\u0645\u0628\u0631", |
||||
"\u0623\u0643\u062a\u0648\u0628\u0631", |
||||
"\u0646\u0648\u0641\u0645\u0628\u0631", |
||||
"\u062f\u064a\u0633\u0645\u0628\u0631" |
||||
], |
||||
"SHORTDAY": [ |
||||
"\u0627\u0644\u0623\u062d\u062f", |
||||
"\u0627\u0644\u0627\u062b\u0646\u064a\u0646", |
||||
"\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621", |
||||
"\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621", |
||||
"\u0627\u0644\u062e\u0645\u064a\u0633", |
||||
"\u0627\u0644\u062c\u0645\u0639\u0629", |
||||
"\u0627\u0644\u0633\u0628\u062a" |
||||
], |
||||
"SHORTMONTH": [ |
||||
"\u064a\u0646\u0627\u064a\u0631", |
||||
"\u0641\u0628\u0631\u0627\u064a\u0631", |
||||
"\u0645\u0627\u0631\u0633", |
||||
"\u0623\u0628\u0631\u064a\u0644", |
||||
"\u0645\u0627\u064a\u0648", |
||||
"\u064a\u0648\u0646\u064a\u0648", |
||||
"\u064a\u0648\u0644\u064a\u0648", |
||||
"\u0623\u063a\u0633\u0637\u0633", |
||||
"\u0633\u0628\u062a\u0645\u0628\u0631", |
||||
"\u0623\u0643\u062a\u0648\u0628\u0631", |
||||
"\u0646\u0648\u0641\u0645\u0628\u0631", |
||||
"\u062f\u064a\u0633\u0645\u0628\u0631" |
||||
], |
||||
"fullDate": "EEEE\u060c d MMMM\u060c y", |
||||
"longDate": "d MMMM\u060c y", |
||||
"medium": "dd\u200f/MM\u200f/yyyy h:mm:ss a", |
||||
"mediumDate": "dd\u200f/MM\u200f/yyyy", |
||||
"mediumTime": "h:mm:ss a", |
||||
"short": "d\u200f/M\u200f/yyyy h:mm a", |
||||
"shortDate": "d\u200f/M\u200f/yyyy", |
||||
"shortTime": "h:mm a" |
||||
}, |
||||
"NUMBER_FORMATS": { |
||||
"CURRENCY_SYM": "\u00a3", |
||||
"DECIMAL_SEP": "\u066b", |
||||
"GROUP_SEP": "\u066c", |
||||
"PATTERNS": [ |
||||
{ |
||||
"gSize": 0, |
||||
"lgSize": 0, |
||||
"macFrac": 0, |
||||
"maxFrac": 3, |
||||
"minFrac": 0, |
||||
"minInt": 1, |
||||
"negPre": "", |
||||
"negSuf": "-", |
||||
"posPre": "", |
||||
"posSuf": "" |
||||
}, |
||||
{ |
||||
"gSize": 0, |
||||
"lgSize": 0, |
||||
"macFrac": 0, |
||||
"maxFrac": 2, |
||||
"minFrac": 2, |
||||
"minInt": 1, |
||||
"negPre": "\u00a4\u00a0", |
||||
"negSuf": "-", |
||||
"posPre": "\u00a4\u00a0", |
||||
"posSuf": "" |
||||
} |
||||
] |
||||
}, |
||||
"id": "ar-ae", |
||||
"pluralCat": function (n) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n == (n | 0) && n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n == (n | 0) && n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} |
||||
}); |
||||
}]); |
@ -1,99 +0,0 @@ |
||||
'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": [ |
||||
"\u0635", |
||||
"\u0645" |
||||
], |
||||
"DAY": [ |
||||
"\u0627\u0644\u0623\u062d\u062f", |
||||
"\u0627\u0644\u0627\u062b\u0646\u064a\u0646", |
||||
"\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621", |
||||
"\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621", |
||||
"\u0627\u0644\u062e\u0645\u064a\u0633", |
||||
"\u0627\u0644\u062c\u0645\u0639\u0629", |
||||
"\u0627\u0644\u0633\u0628\u062a" |
||||
], |
||||
"MONTH": [ |
||||
"\u064a\u0646\u0627\u064a\u0631", |
||||
"\u0641\u0628\u0631\u0627\u064a\u0631", |
||||
"\u0645\u0627\u0631\u0633", |
||||
"\u0623\u0628\u0631\u064a\u0644", |
||||
"\u0645\u0627\u064a\u0648", |
||||
"\u064a\u0648\u0646\u064a\u0648", |
||||
"\u064a\u0648\u0644\u064a\u0648", |
||||
"\u0623\u063a\u0633\u0637\u0633", |
||||
"\u0633\u0628\u062a\u0645\u0628\u0631", |
||||
"\u0623\u0643\u062a\u0648\u0628\u0631", |
||||
"\u0646\u0648\u0641\u0645\u0628\u0631", |
||||
"\u062f\u064a\u0633\u0645\u0628\u0631" |
||||
], |
||||
"SHORTDAY": [ |
||||
"\u0627\u0644\u0623\u062d\u062f", |
||||
"\u0627\u0644\u0627\u062b\u0646\u064a\u0646", |
||||
"\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621", |
||||
"\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621", |
||||
"\u0627\u0644\u062e\u0645\u064a\u0633", |
||||
"\u0627\u0644\u062c\u0645\u0639\u0629", |
||||
"\u0627\u0644\u0633\u0628\u062a" |
||||
], |
||||
"SHORTMONTH": [ |
||||
"\u064a\u0646\u0627\u064a\u0631", |
||||
"\u0641\u0628\u0631\u0627\u064a\u0631", |
||||
"\u0645\u0627\u0631\u0633", |
||||
"\u0623\u0628\u0631\u064a\u0644", |
||||
"\u0645\u0627\u064a\u0648", |
||||
"\u064a\u0648\u0646\u064a\u0648", |
||||
"\u064a\u0648\u0644\u064a\u0648", |
||||
"\u0623\u063a\u0633\u0637\u0633", |
||||
"\u0633\u0628\u062a\u0645\u0628\u0631", |
||||
"\u0623\u0643\u062a\u0648\u0628\u0631", |
||||
"\u0646\u0648\u0641\u0645\u0628\u0631", |
||||
"\u062f\u064a\u0633\u0645\u0628\u0631" |
||||
], |
||||
"fullDate": "EEEE\u060c d MMMM\u060c y", |
||||
"longDate": "d MMMM\u060c y", |
||||
"medium": "dd\u200f/MM\u200f/yyyy h:mm:ss a", |
||||
"mediumDate": "dd\u200f/MM\u200f/yyyy", |
||||
"mediumTime": "h:mm:ss a", |
||||
"short": "d\u200f/M\u200f/yyyy h:mm a", |
||||
"shortDate": "d\u200f/M\u200f/yyyy", |
||||
"shortTime": "h:mm a" |
||||
}, |
||||
"NUMBER_FORMATS": { |
||||
"CURRENCY_SYM": "\u00a3", |
||||
"DECIMAL_SEP": "\u066b", |
||||
"GROUP_SEP": "\u066c", |
||||
"PATTERNS": [ |
||||
{ |
||||
"gSize": 0, |
||||
"lgSize": 0, |
||||
"macFrac": 0, |
||||
"maxFrac": 3, |
||||
"minFrac": 0, |
||||
"minInt": 1, |
||||
"negPre": "", |
||||
"negSuf": "-", |
||||
"posPre": "", |
||||
"posSuf": "" |
||||
}, |
||||
{ |
||||
"gSize": 0, |
||||
"lgSize": 0, |
||||
"macFrac": 0, |
||||
"maxFrac": 2, |
||||
"minFrac": 2, |
||||
"minInt": 1, |
||||
"negPre": "\u00a4\u00a0", |
||||
"negSuf": "-", |
||||
"posPre": "\u00a4\u00a0", |
||||
"posSuf": "" |
||||
} |
||||
] |
||||
}, |
||||
"id": "ar-bh", |
||||
"pluralCat": function (n) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n == (n | 0) && n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n == (n | 0) && n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} |
||||
}); |
||||
}]); |
@ -1,99 +0,0 @@ |
||||
'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": [ |
||||
"\u0635", |
||||
"\u0645" |
||||
], |
||||
"DAY": [ |
||||
"\u0627\u0644\u0623\u062d\u062f", |
||||
"\u0627\u0644\u0627\u062b\u0646\u064a\u0646", |
||||
"\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621", |
||||
"\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621", |
||||
"\u0627\u0644\u062e\u0645\u064a\u0633", |
||||
"\u0627\u0644\u062c\u0645\u0639\u0629", |
||||
"\u0627\u0644\u0633\u0628\u062a" |
||||
], |
||||
"MONTH": [ |
||||
"\u064a\u0646\u0627\u064a\u0631", |
||||
"\u0641\u0628\u0631\u0627\u064a\u0631", |
||||
"\u0645\u0627\u0631\u0633", |
||||
"\u0623\u0628\u0631\u064a\u0644", |
||||
"\u0645\u0627\u064a\u0648", |
||||
"\u064a\u0648\u0646\u064a\u0648", |
||||
"\u064a\u0648\u0644\u064a\u0648", |
||||
"\u0623\u063a\u0633\u0637\u0633", |
||||
"\u0633\u0628\u062a\u0645\u0628\u0631", |
||||
"\u0623\u0643\u062a\u0648\u0628\u0631", |
||||
"\u0646\u0648\u0641\u0645\u0628\u0631", |
||||
"\u062f\u064a\u0633\u0645\u0628\u0631" |
||||
], |
||||
"SHORTDAY": [ |
||||
"\u0627\u0644\u0623\u062d\u062f", |
||||
"\u0627\u0644\u0627\u062b\u0646\u064a\u0646", |
||||
"\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621", |
||||
"\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621", |
||||
"\u0627\u0644\u062e\u0645\u064a\u0633", |
||||
"\u0627\u0644\u062c\u0645\u0639\u0629", |
||||
"\u0627\u0644\u0633\u0628\u062a" |
||||
], |
||||
"SHORTMONTH": [ |
||||
"\u064a\u0646\u0627\u064a\u0631", |
||||
"\u0641\u0628\u0631\u0627\u064a\u0631", |
||||
"\u0645\u0627\u0631\u0633", |
||||
"\u0623\u0628\u0631\u064a\u0644", |
||||
"\u0645\u0627\u064a\u0648", |
||||
"\u064a\u0648\u0646\u064a\u0648", |
||||
"\u064a\u0648\u0644\u064a\u0648", |
||||
"\u0623\u063a\u0633\u0637\u0633", |
||||
"\u0633\u0628\u062a\u0645\u0628\u0631", |
||||
"\u0623\u0643\u062a\u0648\u0628\u0631", |
||||
"\u0646\u0648\u0641\u0645\u0628\u0631", |
||||
"\u062f\u064a\u0633\u0645\u0628\u0631" |
||||
], |
||||
"fullDate": "EEEE\u060c d MMMM\u060c y", |
||||
"longDate": "d MMMM\u060c y", |
||||
"medium": "yyyy/MM/dd h:mm:ss a", |
||||
"mediumDate": "yyyy/MM/dd", |
||||
"mediumTime": "h:mm:ss a", |
||||
"short": "yyyy/M/d h:mm a", |
||||
"shortDate": "yyyy/M/d", |
||||
"shortTime": "h:mm a" |
||||
}, |
||||
"NUMBER_FORMATS": { |
||||
"CURRENCY_SYM": "\u00a3", |
||||
"DECIMAL_SEP": "\u066b", |
||||
"GROUP_SEP": "\u066c", |
||||
"PATTERNS": [ |
||||
{ |
||||
"gSize": 0, |
||||
"lgSize": 0, |
||||
"macFrac": 0, |
||||
"maxFrac": 3, |
||||
"minFrac": 0, |
||||
"minInt": 1, |
||||
"negPre": "", |
||||
"negSuf": "-", |
||||
"posPre": "", |
||||
"posSuf": "" |
||||
}, |
||||
{ |
||||
"gSize": 0, |
||||
"lgSize": 0, |
||||
"macFrac": 0, |
||||
"maxFrac": 2, |
||||
"minFrac": 2, |
||||
"minInt": 1, |
||||
"negPre": "\u00a4\u00a0", |
||||
"negSuf": "-", |
||||
"posPre": "\u00a4\u00a0", |
||||
"posSuf": "" |
||||
} |
||||
] |
||||
}, |
||||
"id": "ar-dz", |
||||
"pluralCat": function (n) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n == (n | 0) && n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n == (n | 0) && n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} |
||||
}); |
||||
}]); |
@ -1,99 +0,0 @@ |
||||
'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": [ |
||||
"\u0635", |
||||
"\u0645" |
||||
], |
||||
"DAY": [ |
||||
"\u0627\u0644\u0623\u062d\u062f", |
||||
"\u0627\u0644\u0627\u062b\u0646\u064a\u0646", |
||||
"\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621", |
||||
"\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621", |
||||
"\u0627\u0644\u062e\u0645\u064a\u0633", |
||||
"\u0627\u0644\u062c\u0645\u0639\u0629", |
||||
"\u0627\u0644\u0633\u0628\u062a" |
||||
], |
||||
"MONTH": [ |
||||
"\u064a\u0646\u0627\u064a\u0631", |
||||
"\u0641\u0628\u0631\u0627\u064a\u0631", |
||||
"\u0645\u0627\u0631\u0633", |
||||
"\u0623\u0628\u0631\u064a\u0644", |
||||
"\u0645\u0627\u064a\u0648", |
||||
"\u064a\u0648\u0646\u064a\u0648", |
||||
"\u064a\u0648\u0644\u064a\u0648", |
||||
"\u0623\u063a\u0633\u0637\u0633", |
||||
"\u0633\u0628\u062a\u0645\u0628\u0631", |
||||
"\u0623\u0643\u062a\u0648\u0628\u0631", |
||||
"\u0646\u0648\u0641\u0645\u0628\u0631", |
||||
"\u062f\u064a\u0633\u0645\u0628\u0631" |
||||
], |
||||
"SHORTDAY": [ |
||||
"\u0627\u0644\u0623\u062d\u062f", |
||||
"\u0627\u0644\u0627\u062b\u0646\u064a\u0646", |
||||
"\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621", |
||||
"\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621", |
||||
"\u0627\u0644\u062e\u0645\u064a\u0633", |
||||
"\u0627\u0644\u062c\u0645\u0639\u0629", |
||||
"\u0627\u0644\u0633\u0628\u062a" |
||||
], |
||||
"SHORTMONTH": [ |
||||
"\u064a\u0646\u0627\u064a\u0631", |
||||
"\u0641\u0628\u0631\u0627\u064a\u0631", |
||||
"\u0645\u0627\u0631\u0633", |
||||
"\u0623\u0628\u0631\u064a\u0644", |
||||
"\u0645\u0627\u064a\u0648", |
||||
"\u064a\u0648\u0646\u064a\u0648", |
||||
"\u064a\u0648\u0644\u064a\u0648", |
||||
"\u0623\u063a\u0633\u0637\u0633", |
||||
"\u0633\u0628\u062a\u0645\u0628\u0631", |
||||
"\u0623\u0643\u062a\u0648\u0628\u0631", |
||||
"\u0646\u0648\u0641\u0645\u0628\u0631", |
||||
"\u062f\u064a\u0633\u0645\u0628\u0631" |
||||
], |
||||
"fullDate": "EEEE\u060c d MMMM\u060c y", |
||||
"longDate": "d MMMM\u060c y", |
||||
"medium": "dd\u200f/MM\u200f/yyyy h:mm:ss a", |
||||
"mediumDate": "dd\u200f/MM\u200f/yyyy", |
||||
"mediumTime": "h:mm:ss a", |
||||
"short": "d\u200f/M\u200f/yyyy h:mm a", |
||||
"shortDate": "d\u200f/M\u200f/yyyy", |
||||
"shortTime": "h:mm a" |
||||
}, |
||||
"NUMBER_FORMATS": { |
||||
"CURRENCY_SYM": "\u00a3", |
||||
"DECIMAL_SEP": "\u066b", |
||||
"GROUP_SEP": "\u066c", |
||||
"PATTERNS": [ |
||||
{ |
||||
"gSize": 0, |
||||
"lgSize": 0, |
||||
"macFrac": 0, |
||||
"maxFrac": 3, |
||||
"minFrac": 0, |
||||
"minInt": 1, |
||||
"negPre": "", |
||||
"negSuf": "-", |
||||
"posPre": "", |
||||
"posSuf": "" |
||||
}, |
||||
{ |
||||
"gSize": 0, |
||||
"lgSize": 0, |
||||
"macFrac": 0, |
||||
"maxFrac": 2, |
||||
"minFrac": 2, |
||||
"minInt": 1, |
||||
"negPre": "\u00a4\u00a0", |
||||
"negSuf": "-", |
||||
"posPre": "\u00a4\u00a0", |
||||
"posSuf": "" |
||||
} |
||||
] |
||||
}, |
||||
"id": "ar-eg", |
||||
"pluralCat": function (n) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n == (n | 0) && n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n == (n | 0) && n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} |
||||
}); |
||||
}]); |
@ -1,99 +0,0 @@ |
||||
'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": [ |
||||
"\u0635", |
||||
"\u0645" |
||||
], |
||||
"DAY": [ |
||||
"\u0627\u0644\u0623\u062d\u062f", |
||||
"\u0627\u0644\u0627\u062b\u0646\u064a\u0646", |
||||
"\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621", |
||||
"\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621", |
||||
"\u0627\u0644\u062e\u0645\u064a\u0633", |
||||
"\u0627\u0644\u062c\u0645\u0639\u0629", |
||||
"\u0627\u0644\u0633\u0628\u062a" |
||||
], |
||||
"MONTH": [ |
||||
"\u064a\u0646\u0627\u064a\u0631", |
||||
"\u0641\u0628\u0631\u0627\u064a\u0631", |
||||
"\u0645\u0627\u0631\u0633", |
||||
"\u0623\u0628\u0631\u064a\u0644", |
||||
"\u0645\u0627\u064a\u0648", |
||||
"\u064a\u0648\u0646\u064a\u0648", |
||||
"\u064a\u0648\u0644\u064a\u0648", |
||||
"\u0623\u063a\u0633\u0637\u0633", |
||||
"\u0633\u0628\u062a\u0645\u0628\u0631", |
||||
"\u0623\u0643\u062a\u0648\u0628\u0631", |
||||
"\u0646\u0648\u0641\u0645\u0628\u0631", |
||||
"\u062f\u064a\u0633\u0645\u0628\u0631" |
||||
], |
||||
"SHORTDAY": [ |
||||
"\u0627\u0644\u0623\u062d\u062f", |
||||
"\u0627\u0644\u0627\u062b\u0646\u064a\u0646", |
||||
"\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621", |
||||
"\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621", |
||||
"\u0627\u0644\u062e\u0645\u064a\u0633", |
||||
"\u0627\u0644\u062c\u0645\u0639\u0629", |
||||
"\u0627\u0644\u0633\u0628\u062a" |
||||
], |
||||
"SHORTMONTH": [ |
||||
"\u064a\u0646\u0627\u064a\u0631", |
||||
"\u0641\u0628\u0631\u0627\u064a\u0631", |
||||
"\u0645\u0627\u0631\u0633", |
||||
"\u0623\u0628\u0631\u064a\u0644", |
||||
"\u0645\u0627\u064a\u0648", |
||||
"\u064a\u0648\u0646\u064a\u0648", |
||||
"\u064a\u0648\u0644\u064a\u0648", |
||||
"\u0623\u063a\u0633\u0637\u0633", |
||||
"\u0633\u0628\u062a\u0645\u0628\u0631", |
||||
"\u0623\u0643\u062a\u0648\u0628\u0631", |
||||
"\u0646\u0648\u0641\u0645\u0628\u0631", |
||||
"\u062f\u064a\u0633\u0645\u0628\u0631" |
||||
], |
||||
"fullDate": "EEEE\u060c d MMMM\u060c y", |
||||
"longDate": "d MMMM\u060c y", |
||||
"medium": "dd\u200f/MM\u200f/yyyy h:mm:ss a", |
||||
"mediumDate": "dd\u200f/MM\u200f/yyyy", |
||||
"mediumTime": "h:mm:ss a", |
||||
"short": "d\u200f/M\u200f/yyyy h:mm a", |
||||
"shortDate": "d\u200f/M\u200f/yyyy", |
||||
"shortTime": "h:mm a" |
||||
}, |
||||
"NUMBER_FORMATS": { |
||||
"CURRENCY_SYM": "\u00a3", |
||||
"DECIMAL_SEP": "\u066b", |
||||
"GROUP_SEP": "\u066c", |
||||
"PATTERNS": [ |
||||
{ |
||||
"gSize": 0, |
||||
"lgSize": 0, |
||||
"macFrac": 0, |
||||
"maxFrac": 3, |
||||
"minFrac": 0, |
||||
"minInt": 1, |
||||
"negPre": "", |
||||
"negSuf": "-", |
||||
"posPre": "", |
||||
"posSuf": "" |
||||
}, |
||||
{ |
||||
"gSize": 0, |
||||
"lgSize": 0, |
||||
"macFrac": 0, |
||||
"maxFrac": 2, |
||||
"minFrac": 2, |
||||
"minInt": 1, |
||||
"negPre": "\u00a4\u00a0", |
||||
"negSuf": "-", |
||||
"posPre": "\u00a4\u00a0", |
||||
"posSuf": "" |
||||
} |
||||
] |
||||
}, |
||||
"id": "ar-iq", |
||||
"pluralCat": function (n) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n == (n | 0) && n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n == (n | 0) && n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} |
||||
}); |
||||
}]); |
@ -1,99 +0,0 @@ |
||||
'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": [ |
||||
"\u0635", |
||||
"\u0645" |
||||
], |
||||
"DAY": [ |
||||
"\u0627\u0644\u0623\u062d\u062f", |
||||
"\u0627\u0644\u0627\u062b\u0646\u064a\u0646", |
||||
"\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621", |
||||
"\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621", |
||||
"\u0627\u0644\u062e\u0645\u064a\u0633", |
||||
"\u0627\u0644\u062c\u0645\u0639\u0629", |
||||
"\u0627\u0644\u0633\u0628\u062a" |
||||
], |
||||
"MONTH": [ |
||||
"\u0643\u0627\u0646\u0648\u0646 \u0627\u0644\u062b\u0627\u0646\u064a", |
||||
"\u0634\u0628\u0627\u0637", |
||||
"\u0622\u0630\u0627\u0631", |
||||
"\u0646\u064a\u0633\u0627\u0646", |
||||
"\u0623\u064a\u0627\u0631", |
||||
"\u062d\u0632\u064a\u0631\u0627\u0646", |
||||
"\u062a\u0645\u0648\u0632", |
||||
"\u0622\u0628", |
||||
"\u0623\u064a\u0644\u0648\u0644", |
||||
"\u062a\u0634\u0631\u064a\u0646 \u0627\u0644\u0623\u0648\u0644", |
||||
"\u062a\u0634\u0631\u064a\u0646 \u0627\u0644\u062b\u0627\u0646\u064a", |
||||
"\u0643\u0627\u0646\u0648\u0646 \u0627\u0644\u0623\u0648\u0644" |
||||
], |
||||
"SHORTDAY": [ |
||||
"\u0627\u0644\u0623\u062d\u062f", |
||||
"\u0627\u0644\u0627\u062b\u0646\u064a\u0646", |
||||
"\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621", |
||||
"\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621", |
||||
"\u0627\u0644\u062e\u0645\u064a\u0633", |
||||
"\u0627\u0644\u062c\u0645\u0639\u0629", |
||||
"\u0627\u0644\u0633\u0628\u062a" |
||||
], |
||||
"SHORTMONTH": [ |
||||
"\u0643\u0627\u0646\u0648\u0646 \u0627\u0644\u062b\u0627\u0646\u064a", |
||||
"\u0634\u0628\u0627\u0637", |
||||
"\u0622\u0630\u0627\u0631", |
||||
"\u0646\u064a\u0633\u0627\u0646", |
||||
"\u0623\u064a\u0627\u0631", |
||||
"\u062d\u0632\u064a\u0631\u0627\u0646", |
||||
"\u062a\u0645\u0648\u0632", |
||||
"\u0622\u0628", |
||||
"\u0623\u064a\u0644\u0648\u0644", |
||||
"\u062a\u0634\u0631\u064a\u0646 \u0627\u0644\u0623\u0648\u0644", |
||||
"\u062a\u0634\u0631\u064a\u0646 \u0627\u0644\u062b\u0627\u0646\u064a", |
||||
"\u0643\u0627\u0646\u0648\u0646 \u0627\u0644\u0623\u0648\u0644" |
||||
], |
||||
"fullDate": "EEEE\u060c d MMMM\u060c y", |
||||
"longDate": "d MMMM\u060c y", |
||||
"medium": "dd\u200f/MM\u200f/yyyy h:mm:ss a", |
||||
"mediumDate": "dd\u200f/MM\u200f/yyyy", |
||||
"mediumTime": "h:mm:ss a", |
||||
"short": "d\u200f/M\u200f/yyyy h:mm a", |
||||
"shortDate": "d\u200f/M\u200f/yyyy", |
||||
"shortTime": "h:mm a" |
||||
}, |
||||
"NUMBER_FORMATS": { |
||||
"CURRENCY_SYM": "\u00a3", |
||||
"DECIMAL_SEP": "\u066b", |
||||
"GROUP_SEP": "\u066c", |
||||
"PATTERNS": [ |
||||
{ |
||||
"gSize": 0, |
||||
"lgSize": 0, |
||||
"macFrac": 0, |
||||
"maxFrac": 3, |
||||
"minFrac": 0, |
||||
"minInt": 1, |
||||
"negPre": "", |
||||
"negSuf": "-", |
||||
"posPre": "", |
||||
"posSuf": "" |
||||
}, |
||||
{ |
||||
"gSize": 0, |
||||
"lgSize": 0, |
||||
"macFrac": 0, |
||||
"maxFrac": 2, |
||||
"minFrac": 2, |
||||
"minInt": 1, |
||||
"negPre": "\u00a4\u00a0", |
||||
"negSuf": "-", |
||||
"posPre": "\u00a4\u00a0", |
||||
"posSuf": "" |
||||
} |
||||
] |
||||
}, |
||||
"id": "ar-jo", |
||||
"pluralCat": function (n) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n == (n | 0) && n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n == (n | 0) && n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} |
||||
}); |
||||
}]); |
@ -1,99 +0,0 @@ |
||||
'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": [ |
||||
"\u0635", |
||||
"\u0645" |
||||
], |
||||
"DAY": [ |
||||
"\u0627\u0644\u0623\u062d\u062f", |
||||
"\u0627\u0644\u0627\u062b\u0646\u064a\u0646", |
||||
"\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621", |
||||
"\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621", |
||||
"\u0627\u0644\u062e\u0645\u064a\u0633", |
||||
"\u0627\u0644\u062c\u0645\u0639\u0629", |
||||
"\u0627\u0644\u0633\u0628\u062a" |
||||
], |
||||
"MONTH": [ |
||||
"\u064a\u0646\u0627\u064a\u0631", |
||||
"\u0641\u0628\u0631\u0627\u064a\u0631", |
||||
"\u0645\u0627\u0631\u0633", |
||||
"\u0623\u0628\u0631\u064a\u0644", |
||||
"\u0645\u0627\u064a\u0648", |
||||
"\u064a\u0648\u0646\u064a\u0648", |
||||
"\u064a\u0648\u0644\u064a\u0648", |
||||
"\u0623\u063a\u0633\u0637\u0633", |
||||
"\u0633\u0628\u062a\u0645\u0628\u0631", |
||||
"\u0623\u0643\u062a\u0648\u0628\u0631", |
||||
"\u0646\u0648\u0641\u0645\u0628\u0631", |
||||
"\u062f\u064a\u0633\u0645\u0628\u0631" |
||||
], |
||||
"SHORTDAY": [ |
||||
"\u0627\u0644\u0623\u062d\u062f", |
||||
"\u0627\u0644\u0627\u062b\u0646\u064a\u0646", |
||||
"\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621", |
||||
"\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621", |
||||
"\u0627\u0644\u062e\u0645\u064a\u0633", |
||||
"\u0627\u0644\u062c\u0645\u0639\u0629", |
||||
"\u0627\u0644\u0633\u0628\u062a" |
||||
], |
||||
"SHORTMONTH": [ |
||||
"\u064a\u0646\u0627\u064a\u0631", |
||||
"\u0641\u0628\u0631\u0627\u064a\u0631", |
||||
"\u0645\u0627\u0631\u0633", |
||||
"\u0623\u0628\u0631\u064a\u0644", |
||||
"\u0645\u0627\u064a\u0648", |
||||
"\u064a\u0648\u0646\u064a\u0648", |
||||
"\u064a\u0648\u0644\u064a\u0648", |
||||
"\u0623\u063a\u0633\u0637\u0633", |
||||
"\u0633\u0628\u062a\u0645\u0628\u0631", |
||||
"\u0623\u0643\u062a\u0648\u0628\u0631", |
||||
"\u0646\u0648\u0641\u0645\u0628\u0631", |
||||
"\u062f\u064a\u0633\u0645\u0628\u0631" |
||||
], |
||||
"fullDate": "EEEE\u060c d MMMM\u060c y", |
||||
"longDate": "d MMMM\u060c y", |
||||
"medium": "dd\u200f/MM\u200f/yyyy h:mm:ss a", |
||||
"mediumDate": "dd\u200f/MM\u200f/yyyy", |
||||
"mediumTime": "h:mm:ss a", |
||||
"short": "d\u200f/M\u200f/yyyy h:mm a", |
||||
"shortDate": "d\u200f/M\u200f/yyyy", |
||||
"shortTime": "h:mm a" |
||||
}, |
||||
"NUMBER_FORMATS": { |
||||
"CURRENCY_SYM": "\u00a3", |
||||
"DECIMAL_SEP": "\u066b", |
||||
"GROUP_SEP": "\u066c", |
||||
"PATTERNS": [ |
||||
{ |
||||
"gSize": 0, |
||||
"lgSize": 0, |
||||
"macFrac": 0, |
||||
"maxFrac": 3, |
||||
"minFrac": 0, |
||||
"minInt": 1, |
||||
"negPre": "", |
||||
"negSuf": "-", |
||||
"posPre": "", |
||||
"posSuf": "" |
||||
}, |
||||
{ |
||||
"gSize": 0, |
||||
"lgSize": 0, |
||||
"macFrac": 0, |
||||
"maxFrac": 2, |
||||
"minFrac": 2, |
||||
"minInt": 1, |
||||
"negPre": "\u00a4\u00a0", |
||||
"negSuf": "-", |
||||
"posPre": "\u00a4\u00a0", |
||||
"posSuf": "" |
||||
} |
||||
] |
||||
}, |
||||
"id": "ar-kw", |
||||
"pluralCat": function (n) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n == (n | 0) && n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n == (n | 0) && n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} |
||||
}); |
||||
}]); |
@ -1,99 +0,0 @@ |
||||
'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": [ |
||||
"\u0635", |
||||
"\u0645" |
||||
], |
||||
"DAY": [ |
||||
"\u0627\u0644\u0623\u062d\u062f", |
||||
"\u0627\u0644\u0627\u062b\u0646\u064a\u0646", |
||||
"\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621", |
||||
"\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621", |
||||
"\u0627\u0644\u062e\u0645\u064a\u0633", |
||||
"\u0627\u0644\u062c\u0645\u0639\u0629", |
||||
"\u0627\u0644\u0633\u0628\u062a" |
||||
], |
||||
"MONTH": [ |
||||
"\u0643\u0627\u0646\u0648\u0646 \u0627\u0644\u062b\u0627\u0646\u064a", |
||||
"\u0634\u0628\u0627\u0637", |
||||
"\u0622\u0630\u0627\u0631", |
||||
"\u0646\u064a\u0633\u0627\u0646", |
||||
"\u0623\u064a\u0627\u0631", |
||||
"\u062d\u0632\u064a\u0631\u0627\u0646", |
||||
"\u062a\u0645\u0648\u0632", |
||||
"\u0622\u0628", |
||||
"\u0623\u064a\u0644\u0648\u0644", |
||||
"\u062a\u0634\u0631\u064a\u0646 \u0627\u0644\u0623\u0648\u0644", |
||||
"\u062a\u0634\u0631\u064a\u0646 \u0627\u0644\u062b\u0627\u0646\u064a", |
||||
"\u0643\u0627\u0646\u0648\u0646 \u0627\u0644\u0623\u0648\u0644" |
||||
], |
||||
"SHORTDAY": [ |
||||
"\u0627\u0644\u0623\u062d\u062f", |
||||
"\u0627\u0644\u0627\u062b\u0646\u064a\u0646", |
||||
"\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621", |
||||
"\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621", |
||||
"\u0627\u0644\u062e\u0645\u064a\u0633", |
||||
"\u0627\u0644\u062c\u0645\u0639\u0629", |
||||
"\u0627\u0644\u0633\u0628\u062a" |
||||
], |
||||
"SHORTMONTH": [ |
||||
"\u0643\u0627\u0646\u0648\u0646 \u0627\u0644\u062b\u0627\u0646\u064a", |
||||
"\u0634\u0628\u0627\u0637", |
||||
"\u0622\u0630\u0627\u0631", |
||||
"\u0646\u064a\u0633\u0627\u0646", |
||||
"\u0623\u064a\u0627\u0631", |
||||
"\u062d\u0632\u064a\u0631\u0627\u0646", |
||||
"\u062a\u0645\u0648\u0632", |
||||
"\u0622\u0628", |
||||
"\u0623\u064a\u0644\u0648\u0644", |
||||
"\u062a\u0634\u0631\u064a\u0646 \u0627\u0644\u0623\u0648\u0644", |
||||
"\u062a\u0634\u0631\u064a\u0646 \u0627\u0644\u062b\u0627\u0646\u064a", |
||||
"\u0643\u0627\u0646\u0648\u0646 \u0627\u0644\u0623\u0648\u0644" |
||||
], |
||||
"fullDate": "EEEE\u060c d MMMM\u060c y", |
||||
"longDate": "d MMMM\u060c y", |
||||
"medium": "dd\u200f/MM\u200f/yyyy h:mm:ss a", |
||||
"mediumDate": "dd\u200f/MM\u200f/yyyy", |
||||
"mediumTime": "h:mm:ss a", |
||||
"short": "d\u200f/M\u200f/yyyy h:mm a", |
||||
"shortDate": "d\u200f/M\u200f/yyyy", |
||||
"shortTime": "h:mm a" |
||||
}, |
||||
"NUMBER_FORMATS": { |
||||
"CURRENCY_SYM": "\u00a3", |
||||
"DECIMAL_SEP": "\u066b", |
||||
"GROUP_SEP": "\u066c", |
||||
"PATTERNS": [ |
||||
{ |
||||
"gSize": 0, |
||||
"lgSize": 0, |
||||
"macFrac": 0, |
||||
"maxFrac": 3, |
||||
"minFrac": 0, |
||||
"minInt": 1, |
||||
"negPre": "", |
||||
"negSuf": "-", |
||||
"posPre": "", |
||||
"posSuf": "" |
||||
}, |
||||
{ |
||||
"gSize": 0, |
||||
"lgSize": 0, |
||||
"macFrac": 0, |
||||
"maxFrac": 2, |
||||
"minFrac": 2, |
||||
"minInt": 1, |
||||
"negPre": "\u00a4\u00a0", |
||||
"negSuf": "-", |
||||
"posPre": "\u00a4\u00a0", |
||||
"posSuf": "" |
||||
} |
||||
] |
||||
}, |
||||
"id": "ar-lb", |
||||
"pluralCat": function (n) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n == (n | 0) && n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n == (n | 0) && n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} |
||||
}); |
||||
}]); |
@ -1,99 +0,0 @@ |
||||
'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": [ |
||||
"\u0635", |
||||
"\u0645" |
||||
], |
||||
"DAY": [ |
||||
"\u0627\u0644\u0623\u062d\u062f", |
||||
"\u0627\u0644\u0627\u062b\u0646\u064a\u0646", |
||||
"\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621", |
||||
"\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621", |
||||
"\u0627\u0644\u062e\u0645\u064a\u0633", |
||||
"\u0627\u0644\u062c\u0645\u0639\u0629", |
||||
"\u0627\u0644\u0633\u0628\u062a" |
||||
], |
||||
"MONTH": [ |
||||
"\u064a\u0646\u0627\u064a\u0631", |
||||
"\u0641\u0628\u0631\u0627\u064a\u0631", |
||||
"\u0645\u0627\u0631\u0633", |
||||
"\u0623\u0628\u0631\u064a\u0644", |
||||
"\u0645\u0627\u064a\u0648", |
||||
"\u064a\u0648\u0646\u064a\u0648", |
||||
"\u064a\u0648\u0644\u064a\u0648", |
||||
"\u0623\u063a\u0633\u0637\u0633", |
||||
"\u0633\u0628\u062a\u0645\u0628\u0631", |
||||
"\u0623\u0643\u062a\u0648\u0628\u0631", |
||||
"\u0646\u0648\u0641\u0645\u0628\u0631", |
||||
"\u062f\u064a\u0633\u0645\u0628\u0631" |
||||
], |
||||
"SHORTDAY": [ |
||||
"\u0627\u0644\u0623\u062d\u062f", |
||||
"\u0627\u0644\u0627\u062b\u0646\u064a\u0646", |
||||
"\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621", |
||||
"\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621", |
||||
"\u0627\u0644\u062e\u0645\u064a\u0633", |
||||
"\u0627\u0644\u062c\u0645\u0639\u0629", |
||||
"\u0627\u0644\u0633\u0628\u062a" |
||||
], |
||||
"SHORTMONTH": [ |
||||
"\u064a\u0646\u0627\u064a\u0631", |
||||
"\u0641\u0628\u0631\u0627\u064a\u0631", |
||||
"\u0645\u0627\u0631\u0633", |
||||
"\u0623\u0628\u0631\u064a\u0644", |
||||
"\u0645\u0627\u064a\u0648", |
||||
"\u064a\u0648\u0646\u064a\u0648", |
||||
"\u064a\u0648\u0644\u064a\u0648", |
||||
"\u0623\u063a\u0633\u0637\u0633", |
||||
"\u0633\u0628\u062a\u0645\u0628\u0631", |
||||
"\u0623\u0643\u062a\u0648\u0628\u0631", |
||||
"\u0646\u0648\u0641\u0645\u0628\u0631", |
||||
"\u062f\u064a\u0633\u0645\u0628\u0631" |
||||
], |
||||
"fullDate": "EEEE\u060c d MMMM\u060c y", |
||||
"longDate": "d MMMM\u060c y", |
||||
"medium": "dd\u200f/MM\u200f/yyyy h:mm:ss a", |
||||
"mediumDate": "dd\u200f/MM\u200f/yyyy", |
||||
"mediumTime": "h:mm:ss a", |
||||
"short": "d\u200f/M\u200f/yyyy h:mm a", |
||||
"shortDate": "d\u200f/M\u200f/yyyy", |
||||
"shortTime": "h:mm a" |
||||
}, |
||||
"NUMBER_FORMATS": { |
||||
"CURRENCY_SYM": "\u00a3", |
||||
"DECIMAL_SEP": "\u066b", |
||||
"GROUP_SEP": "\u066c", |
||||
"PATTERNS": [ |
||||
{ |
||||
"gSize": 0, |
||||
"lgSize": 0, |
||||
"macFrac": 0, |
||||
"maxFrac": 3, |
||||
"minFrac": 0, |
||||
"minInt": 1, |
||||
"negPre": "", |
||||
"negSuf": "-", |
||||
"posPre": "", |
||||
"posSuf": "" |
||||
}, |
||||
{ |
||||
"gSize": 0, |
||||
"lgSize": 0, |
||||
"macFrac": 0, |
||||
"maxFrac": 2, |
||||
"minFrac": 2, |
||||
"minInt": 1, |
||||
"negPre": "\u00a4\u00a0", |
||||
"negSuf": "-", |
||||
"posPre": "\u00a4\u00a0", |
||||
"posSuf": "" |
||||
} |
||||
] |
||||
}, |
||||
"id": "ar-ly", |
||||
"pluralCat": function (n) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n == (n | 0) && n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n == (n | 0) && n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} |
||||
}); |
||||
}]); |
@ -1,99 +0,0 @@ |
||||
'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": [ |
||||
"\u0635", |
||||
"\u0645" |
||||
], |
||||
"DAY": [ |
||||
"\u0627\u0644\u0623\u062d\u062f", |
||||
"\u0627\u0644\u0627\u062b\u0646\u064a\u0646", |
||||
"\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621", |
||||
"\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621", |
||||
"\u0627\u0644\u062e\u0645\u064a\u0633", |
||||
"\u0627\u0644\u062c\u0645\u0639\u0629", |
||||
"\u0627\u0644\u0633\u0628\u062a" |
||||
], |
||||
"MONTH": [ |
||||
"\u064a\u0646\u0627\u064a\u0631", |
||||
"\u0641\u0628\u0631\u0627\u064a\u0631", |
||||
"\u0645\u0627\u0631\u0633", |
||||
"\u0623\u0628\u0631\u064a\u0644", |
||||
"\u0645\u0627\u064a\u0648", |
||||
"\u064a\u0648\u0646\u064a\u0648", |
||||
"\u064a\u0648\u0644\u064a\u0648", |
||||
"\u0623\u063a\u0633\u0637\u0633", |
||||
"\u0633\u0628\u062a\u0645\u0628\u0631", |
||||
"\u0623\u0643\u062a\u0648\u0628\u0631", |
||||
"\u0646\u0648\u0641\u0645\u0628\u0631", |
||||
"\u062f\u064a\u0633\u0645\u0628\u0631" |
||||
], |
||||
"SHORTDAY": [ |
||||
"\u0627\u0644\u0623\u062d\u062f", |
||||
"\u0627\u0644\u0627\u062b\u0646\u064a\u0646", |
||||
"\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621", |
||||
"\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621", |
||||
"\u0627\u0644\u062e\u0645\u064a\u0633", |
||||
"\u0627\u0644\u062c\u0645\u0639\u0629", |
||||
"\u0627\u0644\u0633\u0628\u062a" |
||||
], |
||||
"SHORTMONTH": [ |
||||
"\u064a\u0646\u0627\u064a\u0631", |
||||
"\u0641\u0628\u0631\u0627\u064a\u0631", |
||||
"\u0645\u0627\u0631\u0633", |
||||
"\u0623\u0628\u0631\u064a\u0644", |
||||
"\u0645\u0627\u064a\u0648", |
||||
"\u064a\u0648\u0646\u064a\u0648", |
||||
"\u064a\u0648\u0644\u064a\u0648", |
||||
"\u0623\u063a\u0633\u0637\u0633", |
||||
"\u0633\u0628\u062a\u0645\u0628\u0631", |
||||
"\u0623\u0643\u062a\u0648\u0628\u0631", |
||||
"\u0646\u0648\u0641\u0645\u0628\u0631", |
||||
"\u062f\u064a\u0633\u0645\u0628\u0631" |
||||
], |
||||
"fullDate": "EEEE\u060c d MMMM\u060c y", |
||||
"longDate": "d MMMM\u060c y", |
||||
"medium": "yyyy/MM/dd h:mm:ss a", |
||||
"mediumDate": "yyyy/MM/dd", |
||||
"mediumTime": "h:mm:ss a", |
||||
"short": "yyyy/M/d h:mm a", |
||||
"shortDate": "yyyy/M/d", |
||||
"shortTime": "h:mm a" |
||||
}, |
||||
"NUMBER_FORMATS": { |
||||
"CURRENCY_SYM": "\u00a3", |
||||
"DECIMAL_SEP": "\u066b", |
||||
"GROUP_SEP": "\u066c", |
||||
"PATTERNS": [ |
||||
{ |
||||
"gSize": 0, |
||||
"lgSize": 0, |
||||
"macFrac": 0, |
||||
"maxFrac": 3, |
||||
"minFrac": 0, |
||||
"minInt": 1, |
||||
"negPre": "", |
||||
"negSuf": "-", |
||||
"posPre": "", |
||||
"posSuf": "" |
||||
}, |
||||
{ |
||||
"gSize": 0, |
||||
"lgSize": 0, |
||||
"macFrac": 0, |
||||
"maxFrac": 2, |
||||
"minFrac": 2, |
||||
"minInt": 1, |
||||
"negPre": "\u00a4\u00a0", |
||||
"negSuf": "-", |
||||
"posPre": "\u00a4\u00a0", |
||||
"posSuf": "" |
||||
} |
||||
] |
||||
}, |
||||
"id": "ar-ma", |
||||
"pluralCat": function (n) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n == (n | 0) && n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n == (n | 0) && n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} |
||||
}); |
||||
}]); |
@ -1,99 +0,0 @@ |
||||
'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": [ |
||||
"\u0635", |
||||
"\u0645" |
||||
], |
||||
"DAY": [ |
||||
"\u0627\u0644\u0623\u062d\u062f", |
||||
"\u0627\u0644\u0627\u062b\u0646\u064a\u0646", |
||||
"\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621", |
||||
"\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621", |
||||
"\u0627\u0644\u062e\u0645\u064a\u0633", |
||||
"\u0627\u0644\u062c\u0645\u0639\u0629", |
||||
"\u0627\u0644\u0633\u0628\u062a" |
||||
], |
||||
"MONTH": [ |
||||
"\u064a\u0646\u0627\u064a\u0631", |
||||
"\u0641\u0628\u0631\u0627\u064a\u0631", |
||||
"\u0645\u0627\u0631\u0633", |
||||
"\u0623\u0628\u0631\u064a\u0644", |
||||
"\u0645\u0627\u064a\u0648", |
||||
"\u064a\u0648\u0646\u064a\u0648", |
||||
"\u064a\u0648\u0644\u064a\u0648", |
||||
"\u0623\u063a\u0633\u0637\u0633", |
||||
"\u0633\u0628\u062a\u0645\u0628\u0631", |
||||
"\u0623\u0643\u062a\u0648\u0628\u0631", |
||||
"\u0646\u0648\u0641\u0645\u0628\u0631", |
||||
"\u062f\u064a\u0633\u0645\u0628\u0631" |
||||
], |
||||
"SHORTDAY": [ |
||||
"\u0627\u0644\u0623\u062d\u062f", |
||||
"\u0627\u0644\u0627\u062b\u0646\u064a\u0646", |
||||
"\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621", |
||||
"\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621", |
||||
"\u0627\u0644\u062e\u0645\u064a\u0633", |
||||
"\u0627\u0644\u062c\u0645\u0639\u0629", |
||||
"\u0627\u0644\u0633\u0628\u062a" |
||||
], |
||||
"SHORTMONTH": [ |
||||
"\u064a\u0646\u0627\u064a\u0631", |
||||
"\u0641\u0628\u0631\u0627\u064a\u0631", |
||||
"\u0645\u0627\u0631\u0633", |
||||
"\u0623\u0628\u0631\u064a\u0644", |
||||
"\u0645\u0627\u064a\u0648", |
||||
"\u064a\u0648\u0646\u064a\u0648", |
||||
"\u064a\u0648\u0644\u064a\u0648", |
||||
"\u0623\u063a\u0633\u0637\u0633", |
||||
"\u0633\u0628\u062a\u0645\u0628\u0631", |
||||
"\u0623\u0643\u062a\u0648\u0628\u0631", |
||||
"\u0646\u0648\u0641\u0645\u0628\u0631", |
||||
"\u062f\u064a\u0633\u0645\u0628\u0631" |
||||
], |
||||
"fullDate": "EEEE\u060c d MMMM\u060c y", |
||||
"longDate": "d MMMM\u060c y", |
||||
"medium": "dd\u200f/MM\u200f/yyyy h:mm:ss a", |
||||
"mediumDate": "dd\u200f/MM\u200f/yyyy", |
||||
"mediumTime": "h:mm:ss a", |
||||
"short": "d\u200f/M\u200f/yyyy h:mm a", |
||||
"shortDate": "d\u200f/M\u200f/yyyy", |
||||
"shortTime": "h:mm a" |
||||
}, |
||||
"NUMBER_FORMATS": { |
||||
"CURRENCY_SYM": "\u00a3", |
||||
"DECIMAL_SEP": "\u066b", |
||||
"GROUP_SEP": "\u066c", |
||||
"PATTERNS": [ |
||||
{ |
||||
"gSize": 0, |
||||
"lgSize": 0, |
||||
"macFrac": 0, |
||||
"maxFrac": 3, |
||||
"minFrac": 0, |
||||
"minInt": 1, |
||||
"negPre": "", |
||||
"negSuf": "-", |
||||
"posPre": "", |
||||
"posSuf": "" |
||||
}, |
||||
{ |
||||
"gSize": 0, |
||||
"lgSize": 0, |
||||
"macFrac": 0, |
||||
"maxFrac": 2, |
||||
"minFrac": 2, |
||||
"minInt": 1, |
||||
"negPre": "\u00a4\u00a0", |
||||
"negSuf": "-", |
||||
"posPre": "\u00a4\u00a0", |
||||
"posSuf": "" |
||||
} |
||||
] |
||||
}, |
||||
"id": "ar-om", |
||||
"pluralCat": function (n) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n == (n | 0) && n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n == (n | 0) && n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} |
||||
}); |
||||
}]); |
@ -1,99 +0,0 @@ |
||||
'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": [ |
||||
"\u0635", |
||||
"\u0645" |
||||
], |
||||
"DAY": [ |
||||
"\u0627\u0644\u0623\u062d\u062f", |
||||
"\u0627\u0644\u0627\u062b\u0646\u064a\u0646", |
||||
"\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621", |
||||
"\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621", |
||||
"\u0627\u0644\u062e\u0645\u064a\u0633", |
||||
"\u0627\u0644\u062c\u0645\u0639\u0629", |
||||
"\u0627\u0644\u0633\u0628\u062a" |
||||
], |
||||
"MONTH": [ |
||||
"\u064a\u0646\u0627\u064a\u0631", |
||||
"\u0641\u0628\u0631\u0627\u064a\u0631", |
||||
"\u0645\u0627\u0631\u0633", |
||||
"\u0623\u0628\u0631\u064a\u0644", |
||||
"\u0645\u0627\u064a\u0648", |
||||
"\u064a\u0648\u0646\u064a\u0648", |
||||
"\u064a\u0648\u0644\u064a\u0648", |
||||
"\u0623\u063a\u0633\u0637\u0633", |
||||
"\u0633\u0628\u062a\u0645\u0628\u0631", |
||||
"\u0623\u0643\u062a\u0648\u0628\u0631", |
||||
"\u0646\u0648\u0641\u0645\u0628\u0631", |
||||
"\u062f\u064a\u0633\u0645\u0628\u0631" |
||||
], |
||||
"SHORTDAY": [ |
||||
"\u0627\u0644\u0623\u062d\u062f", |
||||
"\u0627\u0644\u0627\u062b\u0646\u064a\u0646", |
||||
"\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621", |
||||
"\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621", |
||||
"\u0627\u0644\u062e\u0645\u064a\u0633", |
||||
"\u0627\u0644\u062c\u0645\u0639\u0629", |
||||
"\u0627\u0644\u0633\u0628\u062a" |
||||
], |
||||
"SHORTMONTH": [ |
||||
"\u064a\u0646\u0627\u064a\u0631", |
||||
"\u0641\u0628\u0631\u0627\u064a\u0631", |
||||
"\u0645\u0627\u0631\u0633", |
||||
"\u0623\u0628\u0631\u064a\u0644", |
||||
"\u0645\u0627\u064a\u0648", |
||||
"\u064a\u0648\u0646\u064a\u0648", |
||||
"\u064a\u0648\u0644\u064a\u0648", |
||||
"\u0623\u063a\u0633\u0637\u0633", |
||||
"\u0633\u0628\u062a\u0645\u0628\u0631", |
||||
"\u0623\u0643\u062a\u0648\u0628\u0631", |
||||
"\u0646\u0648\u0641\u0645\u0628\u0631", |
||||
"\u062f\u064a\u0633\u0645\u0628\u0631" |
||||
], |
||||
"fullDate": "EEEE\u060c d MMMM\u060c y", |
||||
"longDate": "d MMMM\u060c y", |
||||
"medium": "dd\u200f/MM\u200f/yyyy h:mm:ss a", |
||||
"mediumDate": "dd\u200f/MM\u200f/yyyy", |
||||
"mediumTime": "h:mm:ss a", |
||||
"short": "d\u200f/M\u200f/yyyy h:mm a", |
||||
"shortDate": "d\u200f/M\u200f/yyyy", |
||||
"shortTime": "h:mm a" |
||||
}, |
||||
"NUMBER_FORMATS": { |
||||
"CURRENCY_SYM": "\u00a3", |
||||
"DECIMAL_SEP": "\u066b", |
||||
"GROUP_SEP": "\u066c", |
||||
"PATTERNS": [ |
||||
{ |
||||
"gSize": 0, |
||||
"lgSize": 0, |
||||
"macFrac": 0, |
||||
"maxFrac": 3, |
||||
"minFrac": 0, |
||||
"minInt": 1, |
||||
"negPre": "", |
||||
"negSuf": "-", |
||||
"posPre": "", |
||||
"posSuf": "" |
||||
}, |
||||
{ |
||||
"gSize": 0, |
||||
"lgSize": 0, |
||||
"macFrac": 0, |
||||
"maxFrac": 2, |
||||
"minFrac": 2, |
||||
"minInt": 1, |
||||
"negPre": "\u00a4\u00a0", |
||||
"negSuf": "-", |
||||
"posPre": "\u00a4\u00a0", |
||||
"posSuf": "" |
||||
} |
||||
] |
||||
}, |
||||
"id": "ar-qa", |
||||
"pluralCat": function (n) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n == (n | 0) && n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n == (n | 0) && n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} |
||||
}); |
||||
}]); |
@ -1,99 +0,0 @@ |
||||
'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": [ |
||||
"\u0635", |
||||
"\u0645" |
||||
], |
||||
"DAY": [ |
||||
"\u0627\u0644\u0623\u062d\u062f", |
||||
"\u0627\u0644\u0627\u062b\u0646\u064a\u0646", |
||||
"\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621", |
||||
"\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621", |
||||
"\u0627\u0644\u062e\u0645\u064a\u0633", |
||||
"\u0627\u0644\u062c\u0645\u0639\u0629", |
||||
"\u0627\u0644\u0633\u0628\u062a" |
||||
], |
||||
"MONTH": [ |
||||
"\u064a\u0646\u0627\u064a\u0631", |
||||
"\u0641\u0628\u0631\u0627\u064a\u0631", |
||||
"\u0645\u0627\u0631\u0633", |
||||
"\u0623\u0628\u0631\u064a\u0644", |
||||
"\u0645\u0627\u064a\u0648", |
||||
"\u064a\u0648\u0646\u064a\u0648", |
||||
"\u064a\u0648\u0644\u064a\u0648", |
||||
"\u0623\u063a\u0633\u0637\u0633", |
||||
"\u0633\u0628\u062a\u0645\u0628\u0631", |
||||
"\u0623\u0643\u062a\u0648\u0628\u0631", |
||||
"\u0646\u0648\u0641\u0645\u0628\u0631", |
||||
"\u062f\u064a\u0633\u0645\u0628\u0631" |
||||
], |
||||
"SHORTDAY": [ |
||||
"\u0627\u0644\u0623\u062d\u062f", |
||||
"\u0627\u0644\u0627\u062b\u0646\u064a\u0646", |
||||
"\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621", |
||||
"\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621", |
||||
"\u0627\u0644\u062e\u0645\u064a\u0633", |
||||
"\u0627\u0644\u062c\u0645\u0639\u0629", |
||||
"\u0627\u0644\u0633\u0628\u062a" |
||||
], |
||||
"SHORTMONTH": [ |
||||
"\u064a\u0646\u0627\u064a\u0631", |
||||
"\u0641\u0628\u0631\u0627\u064a\u0631", |
||||
"\u0645\u0627\u0631\u0633", |
||||
"\u0623\u0628\u0631\u064a\u0644", |
||||
"\u0645\u0627\u064a\u0648", |
||||
"\u064a\u0648\u0646\u064a\u0648", |
||||
"\u064a\u0648\u0644\u064a\u0648", |
||||
"\u0623\u063a\u0633\u0637\u0633", |
||||
"\u0633\u0628\u062a\u0645\u0628\u0631", |
||||
"\u0623\u0643\u062a\u0648\u0628\u0631", |
||||
"\u0646\u0648\u0641\u0645\u0628\u0631", |
||||
"\u062f\u064a\u0633\u0645\u0628\u0631" |
||||
], |
||||
"fullDate": "EEEE\u060c d MMMM\u060c y", |
||||
"longDate": "d MMMM\u060c y", |
||||
"medium": "dd\u200f/MM\u200f/yyyy h:mm:ss a", |
||||
"mediumDate": "dd\u200f/MM\u200f/yyyy", |
||||
"mediumTime": "h:mm:ss a", |
||||
"short": "d\u200f/M\u200f/yyyy h:mm a", |
||||
"shortDate": "d\u200f/M\u200f/yyyy", |
||||
"shortTime": "h:mm a" |
||||
}, |
||||
"NUMBER_FORMATS": { |
||||
"CURRENCY_SYM": "\u00a3", |
||||
"DECIMAL_SEP": "\u066b", |
||||
"GROUP_SEP": "\u066c", |
||||
"PATTERNS": [ |
||||
{ |
||||
"gSize": 0, |
||||
"lgSize": 0, |
||||
"macFrac": 0, |
||||
"maxFrac": 3, |
||||
"minFrac": 0, |
||||
"minInt": 1, |
||||
"negPre": "", |
||||
"negSuf": "-", |
||||
"posPre": "", |
||||
"posSuf": "" |
||||
}, |
||||
{ |
||||
"gSize": 0, |
||||
"lgSize": 0, |
||||
"macFrac": 0, |
||||
"maxFrac": 2, |
||||
"minFrac": 2, |
||||
"minInt": 1, |
||||
"negPre": "\u00a4\u00a0", |
||||
"negSuf": "-", |
||||
"posPre": "\u00a4\u00a0", |
||||
"posSuf": "" |
||||
} |
||||
] |
||||
}, |
||||
"id": "ar-sa", |
||||
"pluralCat": function (n) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n == (n | 0) && n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n == (n | 0) && n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} |
||||
}); |
||||
}]); |
@ -1,99 +0,0 @@ |
||||
'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": [ |
||||
"\u0635", |
||||
"\u0645" |
||||
], |
||||
"DAY": [ |
||||
"\u0627\u0644\u0623\u062d\u062f", |
||||
"\u0627\u0644\u0627\u062b\u0646\u064a\u0646", |
||||
"\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621", |
||||
"\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621", |
||||
"\u0627\u0644\u062e\u0645\u064a\u0633", |
||||
"\u0627\u0644\u062c\u0645\u0639\u0629", |
||||
"\u0627\u0644\u0633\u0628\u062a" |
||||
], |
||||
"MONTH": [ |
||||
"\u064a\u0646\u0627\u064a\u0631", |
||||
"\u0641\u0628\u0631\u0627\u064a\u0631", |
||||
"\u0645\u0627\u0631\u0633", |
||||
"\u0623\u0628\u0631\u064a\u0644", |
||||
"\u0645\u0627\u064a\u0648", |
||||
"\u064a\u0648\u0646\u064a\u0648", |
||||
"\u064a\u0648\u0644\u064a\u0648", |
||||
"\u0623\u063a\u0633\u0637\u0633", |
||||
"\u0633\u0628\u062a\u0645\u0628\u0631", |
||||
"\u0623\u0643\u062a\u0648\u0628\u0631", |
||||
"\u0646\u0648\u0641\u0645\u0628\u0631", |
||||
"\u062f\u064a\u0633\u0645\u0628\u0631" |
||||
], |
||||
"SHORTDAY": [ |
||||
"\u0627\u0644\u0623\u062d\u062f", |
||||
"\u0627\u0644\u0627\u062b\u0646\u064a\u0646", |
||||
"\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621", |
||||
"\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621", |
||||
"\u0627\u0644\u062e\u0645\u064a\u0633", |
||||
"\u0627\u0644\u062c\u0645\u0639\u0629", |
||||
"\u0627\u0644\u0633\u0628\u062a" |
||||
], |
||||
"SHORTMONTH": [ |
||||
"\u064a\u0646\u0627\u064a\u0631", |
||||
"\u0641\u0628\u0631\u0627\u064a\u0631", |
||||
"\u0645\u0627\u0631\u0633", |
||||
"\u0623\u0628\u0631\u064a\u0644", |
||||
"\u0645\u0627\u064a\u0648", |
||||
"\u064a\u0648\u0646\u064a\u0648", |
||||
"\u064a\u0648\u0644\u064a\u0648", |
||||
"\u0623\u063a\u0633\u0637\u0633", |
||||
"\u0633\u0628\u062a\u0645\u0628\u0631", |
||||
"\u0623\u0643\u062a\u0648\u0628\u0631", |
||||
"\u0646\u0648\u0641\u0645\u0628\u0631", |
||||
"\u062f\u064a\u0633\u0645\u0628\u0631" |
||||
], |
||||
"fullDate": "EEEE\u060c d MMMM\u060c y", |
||||
"longDate": "d MMMM\u060c y", |
||||
"medium": "dd\u200f/MM\u200f/yyyy h:mm:ss a", |
||||
"mediumDate": "dd\u200f/MM\u200f/yyyy", |
||||
"mediumTime": "h:mm:ss a", |
||||
"short": "d\u200f/M\u200f/yyyy h:mm a", |
||||
"shortDate": "d\u200f/M\u200f/yyyy", |
||||
"shortTime": "h:mm a" |
||||
}, |
||||
"NUMBER_FORMATS": { |
||||
"CURRENCY_SYM": "\u00a3", |
||||
"DECIMAL_SEP": "\u066b", |
||||
"GROUP_SEP": "\u066c", |
||||
"PATTERNS": [ |
||||
{ |
||||
"gSize": 0, |
||||
"lgSize": 0, |
||||
"macFrac": 0, |
||||
"maxFrac": 3, |
||||
"minFrac": 0, |
||||
"minInt": 1, |
||||
"negPre": "", |
||||
"negSuf": "-", |
||||
"posPre": "", |
||||
"posSuf": "" |
||||
}, |
||||
{ |
||||
"gSize": 0, |
||||
"lgSize": 0, |
||||
"macFrac": 0, |
||||
"maxFrac": 2, |
||||
"minFrac": 2, |
||||
"minInt": 1, |
||||
"negPre": "\u00a4\u00a0", |
||||
"negSuf": "-", |
||||
"posPre": "\u00a4\u00a0", |
||||
"posSuf": "" |
||||
} |
||||
] |
||||
}, |
||||
"id": "ar-sd", |
||||
"pluralCat": function (n) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n == (n | 0) && n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n == (n | 0) && n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} |
||||
}); |
||||
}]); |
@ -1,99 +0,0 @@ |
||||
'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": [ |
||||
"\u0635", |
||||
"\u0645" |
||||
], |
||||
"DAY": [ |
||||
"\u0627\u0644\u0623\u062d\u062f", |
||||
"\u0627\u0644\u0627\u062b\u0646\u064a\u0646", |
||||
"\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621", |
||||
"\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621", |
||||
"\u0627\u0644\u062e\u0645\u064a\u0633", |
||||
"\u0627\u0644\u062c\u0645\u0639\u0629", |
||||
"\u0627\u0644\u0633\u0628\u062a" |
||||
], |
||||
"MONTH": [ |
||||
"\u0643\u0627\u0646\u0648\u0646 \u0627\u0644\u062b\u0627\u0646\u064a", |
||||
"\u0634\u0628\u0627\u0637", |
||||
"\u0622\u0630\u0627\u0631", |
||||
"\u0646\u064a\u0633\u0627\u0646", |
||||
"\u0623\u064a\u0627\u0631", |
||||
"\u062d\u0632\u064a\u0631\u0627\u0646", |
||||
"\u062a\u0645\u0648\u0632", |
||||
"\u0622\u0628", |
||||
"\u0623\u064a\u0644\u0648\u0644", |
||||
"\u062a\u0634\u0631\u064a\u0646 \u0627\u0644\u0623\u0648\u0644", |
||||
"\u062a\u0634\u0631\u064a\u0646 \u0627\u0644\u062b\u0627\u0646\u064a", |
||||
"\u0643\u0627\u0646\u0648\u0646 \u0627\u0644\u0623\u0648\u0644" |
||||
], |
||||
"SHORTDAY": [ |
||||
"\u0627\u0644\u0623\u062d\u062f", |
||||
"\u0627\u0644\u0627\u062b\u0646\u064a\u0646", |
||||
"\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621", |
||||
"\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621", |
||||
"\u0627\u0644\u062e\u0645\u064a\u0633", |
||||
"\u0627\u0644\u062c\u0645\u0639\u0629", |
||||
"\u0627\u0644\u0633\u0628\u062a" |
||||
], |
||||
"SHORTMONTH": [ |
||||
"\u0643\u0627\u0646\u0648\u0646 \u0627\u0644\u062b\u0627\u0646\u064a", |
||||
"\u0634\u0628\u0627\u0637", |
||||
"\u0622\u0630\u0627\u0631", |
||||
"\u0646\u064a\u0633\u0627\u0646", |
||||
"\u0623\u064a\u0627\u0631", |
||||
"\u062d\u0632\u064a\u0631\u0627\u0646", |
||||
"\u062a\u0645\u0648\u0632", |
||||
"\u0622\u0628", |
||||
"\u0623\u064a\u0644\u0648\u0644", |
||||
"\u062a\u0634\u0631\u064a\u0646 \u0627\u0644\u0623\u0648\u0644", |
||||
"\u062a\u0634\u0631\u064a\u0646 \u0627\u0644\u062b\u0627\u0646\u064a", |
||||
"\u0643\u0627\u0646\u0648\u0646 \u0627\u0644\u0623\u0648\u0644" |
||||
], |
||||
"fullDate": "EEEE\u060c d MMMM\u060c y", |
||||
"longDate": "d MMMM\u060c y", |
||||
"medium": "dd\u200f/MM\u200f/yyyy h:mm:ss a", |
||||
"mediumDate": "dd\u200f/MM\u200f/yyyy", |
||||
"mediumTime": "h:mm:ss a", |
||||
"short": "d\u200f/M\u200f/yyyy h:mm a", |
||||
"shortDate": "d\u200f/M\u200f/yyyy", |
||||
"shortTime": "h:mm a" |
||||
}, |
||||
"NUMBER_FORMATS": { |
||||
"CURRENCY_SYM": "\u00a3", |
||||
"DECIMAL_SEP": "\u066b", |
||||
"GROUP_SEP": "\u066c", |
||||
"PATTERNS": [ |
||||
{ |
||||
"gSize": 0, |
||||
"lgSize": 0, |
||||
"macFrac": 0, |
||||
"maxFrac": 3, |
||||
"minFrac": 0, |
||||
"minInt": 1, |
||||
"negPre": "", |
||||
"negSuf": "-", |
||||
"posPre": "", |
||||
"posSuf": "" |
||||
}, |
||||
{ |
||||
"gSize": 0, |
||||
"lgSize": 0, |
||||
"macFrac": 0, |
||||
"maxFrac": 2, |
||||
"minFrac": 2, |
||||
"minInt": 1, |
||||
"negPre": "\u00a4\u00a0", |
||||
"negSuf": "-", |
||||
"posPre": "\u00a4\u00a0", |
||||
"posSuf": "" |
||||
} |
||||
] |
||||
}, |
||||
"id": "ar-sy", |
||||
"pluralCat": function (n) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n == (n | 0) && n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n == (n | 0) && n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} |
||||
}); |
||||
}]); |
@ -1,99 +0,0 @@ |
||||
'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": [ |
||||
"\u0635", |
||||
"\u0645" |
||||
], |
||||
"DAY": [ |
||||
"\u0627\u0644\u0623\u062d\u062f", |
||||
"\u0627\u0644\u0627\u062b\u0646\u064a\u0646", |
||||
"\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621", |
||||
"\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621", |
||||
"\u0627\u0644\u062e\u0645\u064a\u0633", |
||||
"\u0627\u0644\u062c\u0645\u0639\u0629", |
||||
"\u0627\u0644\u0633\u0628\u062a" |
||||
], |
||||
"MONTH": [ |
||||
"\u064a\u0646\u0627\u064a\u0631", |
||||
"\u0641\u0628\u0631\u0627\u064a\u0631", |
||||
"\u0645\u0627\u0631\u0633", |
||||
"\u0623\u0628\u0631\u064a\u0644", |
||||
"\u0645\u0627\u064a\u0648", |
||||
"\u064a\u0648\u0646\u064a\u0648", |
||||
"\u064a\u0648\u0644\u064a\u0648", |
||||
"\u0623\u063a\u0633\u0637\u0633", |
||||
"\u0633\u0628\u062a\u0645\u0628\u0631", |
||||
"\u0623\u0643\u062a\u0648\u0628\u0631", |
||||
"\u0646\u0648\u0641\u0645\u0628\u0631", |
||||
"\u062f\u064a\u0633\u0645\u0628\u0631" |
||||
], |
||||
"SHORTDAY": [ |
||||
"\u0627\u0644\u0623\u062d\u062f", |
||||
"\u0627\u0644\u0627\u062b\u0646\u064a\u0646", |
||||
"\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621", |
||||
"\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621", |
||||
"\u0627\u0644\u062e\u0645\u064a\u0633", |
||||
"\u0627\u0644\u062c\u0645\u0639\u0629", |
||||
"\u0627\u0644\u0633\u0628\u062a" |
||||
], |
||||
"SHORTMONTH": [ |
||||
"\u064a\u0646\u0627\u064a\u0631", |
||||
"\u0641\u0628\u0631\u0627\u064a\u0631", |
||||
"\u0645\u0627\u0631\u0633", |
||||
"\u0623\u0628\u0631\u064a\u0644", |
||||
"\u0645\u0627\u064a\u0648", |
||||
"\u064a\u0648\u0646\u064a\u0648", |
||||
"\u064a\u0648\u0644\u064a\u0648", |
||||
"\u0623\u063a\u0633\u0637\u0633", |
||||
"\u0633\u0628\u062a\u0645\u0628\u0631", |
||||
"\u0623\u0643\u062a\u0648\u0628\u0631", |
||||
"\u0646\u0648\u0641\u0645\u0628\u0631", |
||||
"\u062f\u064a\u0633\u0645\u0628\u0631" |
||||
], |
||||
"fullDate": "EEEE\u060c d MMMM\u060c y", |
||||
"longDate": "d MMMM\u060c y", |
||||
"medium": "yyyy/MM/dd h:mm:ss a", |
||||
"mediumDate": "yyyy/MM/dd", |
||||
"mediumTime": "h:mm:ss a", |
||||
"short": "yyyy/M/d h:mm a", |
||||
"shortDate": "yyyy/M/d", |
||||
"shortTime": "h:mm a" |
||||
}, |
||||
"NUMBER_FORMATS": { |
||||
"CURRENCY_SYM": "\u00a3", |
||||
"DECIMAL_SEP": "\u066b", |
||||
"GROUP_SEP": "\u066c", |
||||
"PATTERNS": [ |
||||
{ |
||||
"gSize": 0, |
||||
"lgSize": 0, |
||||
"macFrac": 0, |
||||
"maxFrac": 3, |
||||
"minFrac": 0, |
||||
"minInt": 1, |
||||
"negPre": "", |
||||
"negSuf": "-", |
||||
"posPre": "", |
||||
"posSuf": "" |
||||
}, |
||||
{ |
||||
"gSize": 0, |
||||
"lgSize": 0, |
||||
"macFrac": 0, |
||||
"maxFrac": 2, |
||||
"minFrac": 2, |
||||
"minInt": 1, |
||||
"negPre": "\u00a4\u00a0", |
||||
"negSuf": "-", |
||||
"posPre": "\u00a4\u00a0", |
||||
"posSuf": "" |
||||
} |
||||
] |
||||
}, |
||||
"id": "ar-tn", |
||||
"pluralCat": function (n) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n == (n | 0) && n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n == (n | 0) && n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} |
||||
}); |
||||
}]); |
@ -1,99 +0,0 @@ |
||||
'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": [ |
||||
"\u0635", |
||||
"\u0645" |
||||
], |
||||
"DAY": [ |
||||
"\u0627\u0644\u0623\u062d\u062f", |
||||
"\u0627\u0644\u0627\u062b\u0646\u064a\u0646", |
||||
"\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621", |
||||
"\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621", |
||||
"\u0627\u0644\u062e\u0645\u064a\u0633", |
||||
"\u0627\u0644\u062c\u0645\u0639\u0629", |
||||
"\u0627\u0644\u0633\u0628\u062a" |
||||
], |
||||
"MONTH": [ |
||||
"\u064a\u0646\u0627\u064a\u0631", |
||||
"\u0641\u0628\u0631\u0627\u064a\u0631", |
||||
"\u0645\u0627\u0631\u0633", |
||||
"\u0623\u0628\u0631\u064a\u0644", |
||||
"\u0645\u0627\u064a\u0648", |
||||
"\u064a\u0648\u0646\u064a\u0648", |
||||
"\u064a\u0648\u0644\u064a\u0648", |
||||
"\u0623\u063a\u0633\u0637\u0633", |
||||
"\u0633\u0628\u062a\u0645\u0628\u0631", |
||||
"\u0623\u0643\u062a\u0648\u0628\u0631", |
||||
"\u0646\u0648\u0641\u0645\u0628\u0631", |
||||
"\u062f\u064a\u0633\u0645\u0628\u0631" |
||||
], |
||||
"SHORTDAY": [ |
||||
"\u0627\u0644\u0623\u062d\u062f", |
||||
"\u0627\u0644\u0627\u062b\u0646\u064a\u0646", |
||||
"\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621", |
||||
"\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621", |
||||
"\u0627\u0644\u062e\u0645\u064a\u0633", |
||||
"\u0627\u0644\u062c\u0645\u0639\u0629", |
||||
"\u0627\u0644\u0633\u0628\u062a" |
||||
], |
||||
"SHORTMONTH": [ |
||||
"\u064a\u0646\u0627\u064a\u0631", |
||||
"\u0641\u0628\u0631\u0627\u064a\u0631", |
||||
"\u0645\u0627\u0631\u0633", |
||||
"\u0623\u0628\u0631\u064a\u0644", |
||||
"\u0645\u0627\u064a\u0648", |
||||
"\u064a\u0648\u0646\u064a\u0648", |
||||
"\u064a\u0648\u0644\u064a\u0648", |
||||
"\u0623\u063a\u0633\u0637\u0633", |
||||
"\u0633\u0628\u062a\u0645\u0628\u0631", |
||||
"\u0623\u0643\u062a\u0648\u0628\u0631", |
||||
"\u0646\u0648\u0641\u0645\u0628\u0631", |
||||
"\u062f\u064a\u0633\u0645\u0628\u0631" |
||||
], |
||||
"fullDate": "EEEE\u060c d MMMM\u060c y", |
||||
"longDate": "d MMMM\u060c y", |
||||
"medium": "dd\u200f/MM\u200f/yyyy h:mm:ss a", |
||||
"mediumDate": "dd\u200f/MM\u200f/yyyy", |
||||
"mediumTime": "h:mm:ss a", |
||||
"short": "d\u200f/M\u200f/yyyy h:mm a", |
||||
"shortDate": "d\u200f/M\u200f/yyyy", |
||||
"shortTime": "h:mm a" |
||||
}, |
||||
"NUMBER_FORMATS": { |
||||
"CURRENCY_SYM": "\u00a3", |
||||
"DECIMAL_SEP": "\u066b", |
||||
"GROUP_SEP": "\u066c", |
||||
"PATTERNS": [ |
||||
{ |
||||
"gSize": 0, |
||||
"lgSize": 0, |
||||
"macFrac": 0, |
||||
"maxFrac": 3, |
||||
"minFrac": 0, |
||||
"minInt": 1, |
||||
"negPre": "", |
||||
"negSuf": "-", |
||||
"posPre": "", |
||||
"posSuf": "" |
||||
}, |
||||
{ |
||||
"gSize": 0, |
||||
"lgSize": 0, |
||||
"macFrac": 0, |
||||
"maxFrac": 2, |
||||
"minFrac": 2, |
||||
"minInt": 1, |
||||
"negPre": "\u00a4\u00a0", |
||||
"negSuf": "-", |
||||
"posPre": "\u00a4\u00a0", |
||||
"posSuf": "" |
||||
} |
||||
] |
||||
}, |
||||
"id": "ar-ye", |
||||
"pluralCat": function (n) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n == (n | 0) && n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n == (n | 0) && n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} |
||||
}); |
||||
}]); |
@ -1,99 +0,0 @@ |
||||
'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": [ |
||||
"\u0635", |
||||
"\u0645" |
||||
], |
||||
"DAY": [ |
||||
"\u0627\u0644\u0623\u062d\u062f", |
||||
"\u0627\u0644\u0627\u062b\u0646\u064a\u0646", |
||||
"\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621", |
||||
"\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621", |
||||
"\u0627\u0644\u062e\u0645\u064a\u0633", |
||||
"\u0627\u0644\u062c\u0645\u0639\u0629", |
||||
"\u0627\u0644\u0633\u0628\u062a" |
||||
], |
||||
"MONTH": [ |
||||
"\u064a\u0646\u0627\u064a\u0631", |
||||
"\u0641\u0628\u0631\u0627\u064a\u0631", |
||||
"\u0645\u0627\u0631\u0633", |
||||
"\u0623\u0628\u0631\u064a\u0644", |
||||
"\u0645\u0627\u064a\u0648", |
||||
"\u064a\u0648\u0646\u064a\u0648", |
||||
"\u064a\u0648\u0644\u064a\u0648", |
||||
"\u0623\u063a\u0633\u0637\u0633", |
||||
"\u0633\u0628\u062a\u0645\u0628\u0631", |
||||
"\u0623\u0643\u062a\u0648\u0628\u0631", |
||||
"\u0646\u0648\u0641\u0645\u0628\u0631", |
||||
"\u062f\u064a\u0633\u0645\u0628\u0631" |
||||
], |
||||
"SHORTDAY": [ |
||||
"\u0627\u0644\u0623\u062d\u062f", |
||||
"\u0627\u0644\u0627\u062b\u0646\u064a\u0646", |
||||
"\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621", |
||||
"\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621", |
||||
"\u0627\u0644\u062e\u0645\u064a\u0633", |
||||
"\u0627\u0644\u062c\u0645\u0639\u0629", |
||||
"\u0627\u0644\u0633\u0628\u062a" |
||||
], |
||||
"SHORTMONTH": [ |
||||
"\u064a\u0646\u0627\u064a\u0631", |
||||
"\u0641\u0628\u0631\u0627\u064a\u0631", |
||||
"\u0645\u0627\u0631\u0633", |
||||
"\u0623\u0628\u0631\u064a\u0644", |
||||
"\u0645\u0627\u064a\u0648", |
||||
"\u064a\u0648\u0646\u064a\u0648", |
||||
"\u064a\u0648\u0644\u064a\u0648", |
||||
"\u0623\u063a\u0633\u0637\u0633", |
||||
"\u0633\u0628\u062a\u0645\u0628\u0631", |
||||
"\u0623\u0643\u062a\u0648\u0628\u0631", |
||||
"\u0646\u0648\u0641\u0645\u0628\u0631", |
||||
"\u062f\u064a\u0633\u0645\u0628\u0631" |
||||
], |
||||
"fullDate": "EEEE\u060c d MMMM\u060c y", |
||||
"longDate": "d MMMM\u060c y", |
||||
"medium": "dd\u200f/MM\u200f/yyyy h:mm:ss a", |
||||
"mediumDate": "dd\u200f/MM\u200f/yyyy", |
||||
"mediumTime": "h:mm:ss a", |
||||
"short": "d\u200f/M\u200f/yyyy h:mm a", |
||||
"shortDate": "d\u200f/M\u200f/yyyy", |
||||
"shortTime": "h:mm a" |
||||
}, |
||||
"NUMBER_FORMATS": { |
||||
"CURRENCY_SYM": "\u00a3", |
||||
"DECIMAL_SEP": "\u066b", |
||||
"GROUP_SEP": "\u066c", |
||||
"PATTERNS": [ |
||||
{ |
||||
"gSize": 0, |
||||
"lgSize": 0, |
||||
"macFrac": 0, |
||||
"maxFrac": 3, |
||||
"minFrac": 0, |
||||
"minInt": 1, |
||||
"negPre": "", |
||||
"negSuf": "-", |
||||
"posPre": "", |
||||
"posSuf": "" |
||||
}, |
||||
{ |
||||
"gSize": 0, |
||||
"lgSize": 0, |
||||
"macFrac": 0, |
||||
"maxFrac": 2, |
||||
"minFrac": 2, |
||||
"minInt": 1, |
||||
"negPre": "\u00a4\u00a0", |
||||
"negSuf": "-", |
||||
"posPre": "\u00a4\u00a0", |
||||
"posSuf": "" |
||||
} |
||||
] |
||||
}, |
||||
"id": "ar", |
||||
"pluralCat": function (n) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n == (n | 0) && n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n == (n | 0) && n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} |
||||
}); |
||||
}]); |
@ -1,99 +0,0 @@ |
||||
'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": [ |
||||
"\u043f\u0440. \u043e\u0431.", |
||||
"\u0441\u043b. \u043e\u0431." |
||||
], |
||||
"DAY": [ |
||||
"\u043d\u0435\u0434\u0435\u043b\u044f", |
||||
"\u043f\u043e\u043d\u0435\u0434\u0435\u043b\u043d\u0438\u043a", |
||||
"\u0432\u0442\u043e\u0440\u043d\u0438\u043a", |
||||
"\u0441\u0440\u044f\u0434\u0430", |
||||
"\u0447\u0435\u0442\u0432\u044a\u0440\u0442\u044a\u043a", |
||||
"\u043f\u0435\u0442\u044a\u043a", |
||||
"\u0441\u044a\u0431\u043e\u0442\u0430" |
||||
], |
||||
"MONTH": [ |
||||
"\u044f\u043d\u0443\u0430\u0440\u0438", |
||||
"\u0444\u0435\u0432\u0440\u0443\u0430\u0440\u0438", |
||||
"\u043c\u0430\u0440\u0442", |
||||
"\u0430\u043f\u0440\u0438\u043b", |
||||
"\u043c\u0430\u0439", |
||||
"\u044e\u043d\u0438", |
||||
"\u044e\u043b\u0438", |
||||
"\u0430\u0432\u0433\u0443\u0441\u0442", |
||||
"\u0441\u0435\u043f\u0442\u0435\u043c\u0432\u0440\u0438", |
||||
"\u043e\u043a\u0442\u043e\u043c\u0432\u0440\u0438", |
||||
"\u043d\u043e\u0435\u043c\u0432\u0440\u0438", |
||||
"\u0434\u0435\u043a\u0435\u043c\u0432\u0440\u0438" |
||||
], |
||||
"SHORTDAY": [ |
||||
"\u043d\u0434", |
||||
"\u043f\u043d", |
||||
"\u0432\u0442", |
||||
"\u0441\u0440", |
||||
"\u0447\u0442", |
||||
"\u043f\u0442", |
||||
"\u0441\u0431" |
||||
], |
||||
"SHORTMONTH": [ |
||||
"\u044f\u043d.", |
||||
"\u0444\u0435\u0432\u0440.", |
||||
"\u043c\u0430\u0440\u0442", |
||||
"\u0430\u043f\u0440.", |
||||
"\u043c\u0430\u0439", |
||||
"\u044e\u043d\u0438", |
||||
"\u044e\u043b\u0438", |
||||
"\u0430\u0432\u0433.", |
||||
"\u0441\u0435\u043f\u0442.", |
||||
"\u043e\u043a\u0442.", |
||||
"\u043d\u043e\u0435\u043c.", |
||||
"\u0434\u0435\u043a." |
||||
], |
||||
"fullDate": "dd MMMM y, EEEE", |
||||
"longDate": "dd MMMM y", |
||||
"medium": "dd.MM.yyyy HH:mm:ss", |
||||
"mediumDate": "dd.MM.yyyy", |
||||
"mediumTime": "HH:mm:ss", |
||||
"short": "dd.MM.yy HH:mm", |
||||
"shortDate": "dd.MM.yy", |
||||
"shortTime": "HH:mm" |
||||
}, |
||||
"NUMBER_FORMATS": { |
||||
"CURRENCY_SYM": "lev", |
||||
"DECIMAL_SEP": ",", |
||||
"GROUP_SEP": "\u00a0", |
||||
"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": "-", |
||||
"negSuf": "\u00a0\u00a4", |
||||
"posPre": "", |
||||
"posSuf": "\u00a0\u00a4" |
||||
} |
||||
] |
||||
}, |
||||
"id": "bg-bg", |
||||
"pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} |
||||
}); |
||||
}]); |
@ -1,99 +0,0 @@ |
||||
'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": [ |
||||
"\u043f\u0440. \u043e\u0431.", |
||||
"\u0441\u043b. \u043e\u0431." |
||||
], |
||||
"DAY": [ |
||||
"\u043d\u0435\u0434\u0435\u043b\u044f", |
||||
"\u043f\u043e\u043d\u0435\u0434\u0435\u043b\u043d\u0438\u043a", |
||||
"\u0432\u0442\u043e\u0440\u043d\u0438\u043a", |
||||
"\u0441\u0440\u044f\u0434\u0430", |
||||
"\u0447\u0435\u0442\u0432\u044a\u0440\u0442\u044a\u043a", |
||||
"\u043f\u0435\u0442\u044a\u043a", |
||||
"\u0441\u044a\u0431\u043e\u0442\u0430" |
||||
], |
||||
"MONTH": [ |
||||
"\u044f\u043d\u0443\u0430\u0440\u0438", |
||||
"\u0444\u0435\u0432\u0440\u0443\u0430\u0440\u0438", |
||||
"\u043c\u0430\u0440\u0442", |
||||
"\u0430\u043f\u0440\u0438\u043b", |
||||
"\u043c\u0430\u0439", |
||||
"\u044e\u043d\u0438", |
||||
"\u044e\u043b\u0438", |
||||
"\u0430\u0432\u0433\u0443\u0441\u0442", |
||||
"\u0441\u0435\u043f\u0442\u0435\u043c\u0432\u0440\u0438", |
||||
"\u043e\u043a\u0442\u043e\u043c\u0432\u0440\u0438", |
||||
"\u043d\u043e\u0435\u043c\u0432\u0440\u0438", |
||||
"\u0434\u0435\u043a\u0435\u043c\u0432\u0440\u0438" |
||||
], |
||||
"SHORTDAY": [ |
||||
"\u043d\u0434", |
||||
"\u043f\u043d", |
||||
"\u0432\u0442", |
||||
"\u0441\u0440", |
||||
"\u0447\u0442", |
||||
"\u043f\u0442", |
||||
"\u0441\u0431" |
||||
], |
||||
"SHORTMONTH": [ |
||||
"\u044f\u043d.", |
||||
"\u0444\u0435\u0432\u0440.", |
||||
"\u043c\u0430\u0440\u0442", |
||||
"\u0430\u043f\u0440.", |
||||
"\u043c\u0430\u0439", |
||||
"\u044e\u043d\u0438", |
||||
"\u044e\u043b\u0438", |
||||
"\u0430\u0432\u0433.", |
||||
"\u0441\u0435\u043f\u0442.", |
||||
"\u043e\u043a\u0442.", |
||||
"\u043d\u043e\u0435\u043c.", |
||||
"\u0434\u0435\u043a." |
||||
], |
||||
"fullDate": "dd MMMM y, EEEE", |
||||
"longDate": "dd MMMM y", |
||||
"medium": "dd.MM.yyyy HH:mm:ss", |
||||
"mediumDate": "dd.MM.yyyy", |
||||
"mediumTime": "HH:mm:ss", |
||||
"short": "dd.MM.yy HH:mm", |
||||
"shortDate": "dd.MM.yy", |
||||
"shortTime": "HH:mm" |
||||
}, |
||||
"NUMBER_FORMATS": { |
||||
"CURRENCY_SYM": "lev", |
||||
"DECIMAL_SEP": ",", |
||||
"GROUP_SEP": "\u00a0", |
||||
"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": "-", |
||||
"negSuf": "\u00a0\u00a4", |
||||
"posPre": "", |
||||
"posSuf": "\u00a0\u00a4" |
||||
} |
||||
] |
||||
}, |
||||
"id": "bg", |
||||
"pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} |
||||
}); |
||||
}]); |
@ -1,99 +0,0 @@ |
||||
'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": [ |
||||
"am", |
||||
"pm" |
||||
], |
||||
"DAY": [ |
||||
"\u09b0\u09ac\u09bf\u09ac\u09be\u09b0", |
||||
"\u09b8\u09cb\u09ae\u09ac\u09be\u09b0", |
||||
"\u09ae\u0999\u09cd\u0997\u09b2\u09ac\u09be\u09b0", |
||||
"\u09ac\u09c1\u09a7\u09ac\u09be\u09b0", |
||||
"\u09ac\u09c3\u09b9\u09b7\u09cd\u09aa\u09a4\u09bf\u09ac\u09be\u09b0", |
||||
"\u09b6\u09c1\u0995\u09cd\u09b0\u09ac\u09be\u09b0", |
||||
"\u09b6\u09a8\u09bf\u09ac\u09be\u09b0" |
||||
], |
||||
"MONTH": [ |
||||
"\u099c\u09be\u09a8\u09c1\u09af\u09bc\u09be\u09b0\u09c0", |
||||
"\u09ab\u09c7\u09ac\u09cd\u09b0\u09c1\u09af\u09bc\u09be\u09b0\u09c0", |
||||
"\u09ae\u09be\u09b0\u09cd\u099a", |
||||
"\u098f\u09aa\u09cd\u09b0\u09bf\u09b2", |
||||
"\u09ae\u09c7", |
||||
"\u099c\u09c1\u09a8", |
||||
"\u099c\u09c1\u09b2\u09be\u0987", |
||||
"\u0986\u0997\u09b8\u09cd\u099f", |
||||
"\u09b8\u09c7\u09aa\u09cd\u099f\u09c7\u09ae\u09cd\u09ac\u09b0", |
||||
"\u0985\u0995\u09cd\u099f\u09cb\u09ac\u09b0", |
||||
"\u09a8\u09ad\u09c7\u09ae\u09cd\u09ac\u09b0", |
||||
"\u09a1\u09bf\u09b8\u09c7\u09ae\u09cd\u09ac\u09b0" |
||||
], |
||||
"SHORTDAY": [ |
||||
"\u09b0\u09ac\u09bf", |
||||
"\u09b8\u09cb\u09ae", |
||||
"\u09ae\u0999\u09cd\u0997\u09b2", |
||||
"\u09ac\u09c1\u09a7", |
||||
"\u09ac\u09c3\u09b9\u09b8\u09cd\u09aa\u09a4\u09bf", |
||||
"\u09b6\u09c1\u0995\u09cd\u09b0", |
||||
"\u09b6\u09a8\u09bf" |
||||
], |
||||
"SHORTMONTH": [ |
||||
"\u099c\u09be\u09a8\u09c1\u09af\u09bc\u09be\u09b0\u09c0", |
||||
"\u09ab\u09c7\u09ac\u09cd\u09b0\u09c1\u09af\u09bc\u09be\u09b0\u09c0", |
||||
"\u09ae\u09be\u09b0\u09cd\u099a", |
||||
"\u098f\u09aa\u09cd\u09b0\u09bf\u09b2", |
||||
"\u09ae\u09c7", |
||||
"\u099c\u09c1\u09a8", |
||||
"\u099c\u09c1\u09b2\u09be\u0987", |
||||
"\u0986\u0997\u09b8\u09cd\u099f", |
||||
"\u09b8\u09c7\u09aa\u09cd\u099f\u09c7\u09ae\u09cd\u09ac\u09b0", |
||||
"\u0985\u0995\u09cd\u099f\u09cb\u09ac\u09b0", |
||||
"\u09a8\u09ad\u09c7\u09ae\u09cd\u09ac\u09b0", |
||||
"\u09a1\u09bf\u09b8\u09c7\u09ae\u09cd\u09ac\u09b0" |
||||
], |
||||
"fullDate": "EEEE, d MMMM, y", |
||||
"longDate": "d MMMM, y", |
||||
"medium": "d MMM, y h:mm:ss a", |
||||
"mediumDate": "d MMM, y", |
||||
"mediumTime": "h:mm:ss a", |
||||
"short": "d/M/yy h:mm a", |
||||
"shortDate": "d/M/yy", |
||||
"shortTime": "h:mm a" |
||||
}, |
||||
"NUMBER_FORMATS": { |
||||
"CURRENCY_SYM": "\u09f3", |
||||
"DECIMAL_SEP": ".", |
||||
"GROUP_SEP": ",", |
||||
"PATTERNS": [ |
||||
{ |
||||
"gSize": 2, |
||||
"lgSize": 3, |
||||
"macFrac": 0, |
||||
"maxFrac": 3, |
||||
"minFrac": 0, |
||||
"minInt": 1, |
||||
"negPre": "-", |
||||
"negSuf": "", |
||||
"posPre": "", |
||||
"posSuf": "" |
||||
}, |
||||
{ |
||||
"gSize": 2, |
||||
"lgSize": 3, |
||||
"macFrac": 0, |
||||
"maxFrac": 2, |
||||
"minFrac": 2, |
||||
"minInt": 1, |
||||
"negPre": "(", |
||||
"negSuf": "\u00a4)", |
||||
"posPre": "", |
||||
"posSuf": "\u00a4" |
||||
} |
||||
] |
||||
}, |
||||
"id": "bn-bd", |
||||
"pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} |
||||
}); |
||||
}]); |
@ -1,99 +0,0 @@ |
||||
'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": [ |
||||
"am", |
||||
"pm" |
||||
], |
||||
"DAY": [ |
||||
"\u09b0\u09ac\u09bf\u09ac\u09be\u09b0", |
||||
"\u09b8\u09cb\u09ae\u09ac\u09be\u09b0", |
||||
"\u09ae\u0999\u09cd\u0997\u09b2\u09ac\u09be\u09b0", |
||||
"\u09ac\u09c1\u09a7\u09ac\u09be\u09b0", |
||||
"\u09ac\u09c3\u09b9\u09b7\u09cd\u09aa\u09a4\u09bf\u09ac\u09be\u09b0", |
||||
"\u09b6\u09c1\u0995\u09cd\u09b0\u09ac\u09be\u09b0", |
||||
"\u09b6\u09a8\u09bf\u09ac\u09be\u09b0" |
||||
], |
||||
"MONTH": [ |
||||
"\u099c\u09be\u09a8\u09c1\u09af\u09bc\u09be\u09b0\u09c0", |
||||
"\u09ab\u09c7\u09ac\u09cd\u09b0\u09c1\u09af\u09bc\u09be\u09b0\u09c0", |
||||
"\u09ae\u09be\u09b0\u09cd\u099a", |
||||
"\u098f\u09aa\u09cd\u09b0\u09bf\u09b2", |
||||
"\u09ae\u09c7", |
||||
"\u099c\u09c1\u09a8", |
||||
"\u099c\u09c1\u09b2\u09be\u0987", |
||||
"\u0986\u0997\u09b8\u09cd\u099f", |
||||
"\u09b8\u09c7\u09aa\u09cd\u099f\u09c7\u09ae\u09cd\u09ac\u09b0", |
||||
"\u0985\u0995\u09cd\u099f\u09cb\u09ac\u09b0", |
||||
"\u09a8\u09ad\u09c7\u09ae\u09cd\u09ac\u09b0", |
||||
"\u09a1\u09bf\u09b8\u09c7\u09ae\u09cd\u09ac\u09b0" |
||||
], |
||||
"SHORTDAY": [ |
||||
"\u09b0\u09ac\u09bf", |
||||
"\u09b8\u09cb\u09ae", |
||||
"\u09ae\u0999\u09cd\u0997\u09b2", |
||||
"\u09ac\u09c1\u09a7", |
||||
"\u09ac\u09c3\u09b9\u09b8\u09cd\u09aa\u09a4\u09bf", |
||||
"\u09b6\u09c1\u0995\u09cd\u09b0", |
||||
"\u09b6\u09a8\u09bf" |
||||
], |
||||
"SHORTMONTH": [ |
||||
"\u099c\u09be\u09a8\u09c1\u09af\u09bc\u09be\u09b0\u09c0", |
||||
"\u09ab\u09c7\u09ac\u09cd\u09b0\u09c1\u09af\u09bc\u09be\u09b0\u09c0", |
||||
"\u09ae\u09be\u09b0\u09cd\u099a", |
||||
"\u098f\u09aa\u09cd\u09b0\u09bf\u09b2", |
||||
"\u09ae\u09c7", |
||||
"\u099c\u09c1\u09a8", |
||||
"\u099c\u09c1\u09b2\u09be\u0987", |
||||
"\u0986\u0997\u09b8\u09cd\u099f", |
||||
"\u09b8\u09c7\u09aa\u09cd\u099f\u09c7\u09ae\u09cd\u09ac\u09b0", |
||||
"\u0985\u0995\u09cd\u099f\u09cb\u09ac\u09b0", |
||||
"\u09a8\u09ad\u09c7\u09ae\u09cd\u09ac\u09b0", |
||||
"\u09a1\u09bf\u09b8\u09c7\u09ae\u09cd\u09ac\u09b0" |
||||
], |
||||
"fullDate": "EEEE, d MMMM, y", |
||||
"longDate": "d MMMM, y", |
||||
"medium": "d MMM, y h:mm:ss a", |
||||
"mediumDate": "d MMM, y", |
||||
"mediumTime": "h:mm:ss a", |
||||
"short": "d/M/yy h:mm a", |
||||
"shortDate": "d/M/yy", |
||||
"shortTime": "h:mm a" |
||||
}, |
||||
"NUMBER_FORMATS": { |
||||
"CURRENCY_SYM": "\u09f3", |
||||
"DECIMAL_SEP": ".", |
||||
"GROUP_SEP": ",", |
||||
"PATTERNS": [ |
||||
{ |
||||
"gSize": 2, |
||||
"lgSize": 3, |
||||
"macFrac": 0, |
||||
"maxFrac": 3, |
||||
"minFrac": 0, |
||||
"minInt": 1, |
||||
"negPre": "-", |
||||
"negSuf": "", |
||||
"posPre": "", |
||||
"posSuf": "" |
||||
}, |
||||
{ |
||||
"gSize": 2, |
||||
"lgSize": 3, |
||||
"macFrac": 0, |
||||
"maxFrac": 2, |
||||
"minFrac": 2, |
||||
"minInt": 1, |
||||
"negPre": "(", |
||||
"negSuf": "\u00a4)", |
||||
"posPre": "", |
||||
"posSuf": "\u00a4" |
||||
} |
||||
] |
||||
}, |
||||
"id": "bn-in", |
||||
"pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} |
||||
}); |
||||
}]); |
@ -1,99 +0,0 @@ |
||||
'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": [ |
||||
"am", |
||||
"pm" |
||||
], |
||||
"DAY": [ |
||||
"\u09b0\u09ac\u09bf\u09ac\u09be\u09b0", |
||||
"\u09b8\u09cb\u09ae\u09ac\u09be\u09b0", |
||||
"\u09ae\u0999\u09cd\u0997\u09b2\u09ac\u09be\u09b0", |
||||
"\u09ac\u09c1\u09a7\u09ac\u09be\u09b0", |
||||
"\u09ac\u09c3\u09b9\u09b7\u09cd\u09aa\u09a4\u09bf\u09ac\u09be\u09b0", |
||||
"\u09b6\u09c1\u0995\u09cd\u09b0\u09ac\u09be\u09b0", |
||||
"\u09b6\u09a8\u09bf\u09ac\u09be\u09b0" |
||||
], |
||||
"MONTH": [ |
||||
"\u099c\u09be\u09a8\u09c1\u09af\u09bc\u09be\u09b0\u09c0", |
||||
"\u09ab\u09c7\u09ac\u09cd\u09b0\u09c1\u09af\u09bc\u09be\u09b0\u09c0", |
||||
"\u09ae\u09be\u09b0\u09cd\u099a", |
||||
"\u098f\u09aa\u09cd\u09b0\u09bf\u09b2", |
||||
"\u09ae\u09c7", |
||||
"\u099c\u09c1\u09a8", |
||||
"\u099c\u09c1\u09b2\u09be\u0987", |
||||
"\u0986\u0997\u09b8\u09cd\u099f", |
||||
"\u09b8\u09c7\u09aa\u09cd\u099f\u09c7\u09ae\u09cd\u09ac\u09b0", |
||||
"\u0985\u0995\u09cd\u099f\u09cb\u09ac\u09b0", |
||||
"\u09a8\u09ad\u09c7\u09ae\u09cd\u09ac\u09b0", |
||||
"\u09a1\u09bf\u09b8\u09c7\u09ae\u09cd\u09ac\u09b0" |
||||
], |
||||
"SHORTDAY": [ |
||||
"\u09b0\u09ac\u09bf", |
||||
"\u09b8\u09cb\u09ae", |
||||
"\u09ae\u0999\u09cd\u0997\u09b2", |
||||
"\u09ac\u09c1\u09a7", |
||||
"\u09ac\u09c3\u09b9\u09b8\u09cd\u09aa\u09a4\u09bf", |
||||
"\u09b6\u09c1\u0995\u09cd\u09b0", |
||||
"\u09b6\u09a8\u09bf" |
||||
], |
||||
"SHORTMONTH": [ |
||||
"\u099c\u09be\u09a8\u09c1\u09af\u09bc\u09be\u09b0\u09c0", |
||||
"\u09ab\u09c7\u09ac\u09cd\u09b0\u09c1\u09af\u09bc\u09be\u09b0\u09c0", |
||||
"\u09ae\u09be\u09b0\u09cd\u099a", |
||||
"\u098f\u09aa\u09cd\u09b0\u09bf\u09b2", |
||||
"\u09ae\u09c7", |
||||
"\u099c\u09c1\u09a8", |
||||
"\u099c\u09c1\u09b2\u09be\u0987", |
||||
"\u0986\u0997\u09b8\u09cd\u099f", |
||||
"\u09b8\u09c7\u09aa\u09cd\u099f\u09c7\u09ae\u09cd\u09ac\u09b0", |
||||
"\u0985\u0995\u09cd\u099f\u09cb\u09ac\u09b0", |
||||
"\u09a8\u09ad\u09c7\u09ae\u09cd\u09ac\u09b0", |
||||
"\u09a1\u09bf\u09b8\u09c7\u09ae\u09cd\u09ac\u09b0" |
||||
], |
||||
"fullDate": "EEEE, d MMMM, y", |
||||
"longDate": "d MMMM, y", |
||||
"medium": "d MMM, y h:mm:ss a", |
||||
"mediumDate": "d MMM, y", |
||||
"mediumTime": "h:mm:ss a", |
||||
"short": "d/M/yy h:mm a", |
||||
"shortDate": "d/M/yy", |
||||
"shortTime": "h:mm a" |
||||
}, |
||||
"NUMBER_FORMATS": { |
||||
"CURRENCY_SYM": "\u09f3", |
||||
"DECIMAL_SEP": ".", |
||||
"GROUP_SEP": ",", |
||||
"PATTERNS": [ |
||||
{ |
||||
"gSize": 2, |
||||
"lgSize": 3, |
||||
"macFrac": 0, |
||||
"maxFrac": 3, |
||||
"minFrac": 0, |
||||
"minInt": 1, |
||||
"negPre": "-", |
||||
"negSuf": "", |
||||
"posPre": "", |
||||
"posSuf": "" |
||||
}, |
||||
{ |
||||
"gSize": 2, |
||||
"lgSize": 3, |
||||
"macFrac": 0, |
||||
"maxFrac": 2, |
||||
"minFrac": 2, |
||||
"minInt": 1, |
||||
"negPre": "(", |
||||
"negSuf": "\u00a4)", |
||||
"posPre": "", |
||||
"posSuf": "\u00a4" |
||||
} |
||||
] |
||||
}, |
||||
"id": "bn", |
||||
"pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} |
||||
}); |
||||
}]); |
@ -1,99 +0,0 @@ |
||||
'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": [ |
||||
"a.m.", |
||||
"p.m." |
||||
], |
||||
"DAY": [ |
||||
"diumenge", |
||||
"dilluns", |
||||
"dimarts", |
||||
"dimecres", |
||||
"dijous", |
||||
"divendres", |
||||
"dissabte" |
||||
], |
||||
"MONTH": [ |
||||
"de gener", |
||||
"de febrer", |
||||
"de mar\u00e7", |
||||
"d\u2019abril", |
||||
"de maig", |
||||
"de juny", |
||||
"de juliol", |
||||
"d\u2019agost", |
||||
"de setembre", |
||||
"d\u2019octubre", |
||||
"de novembre", |
||||
"de desembre" |
||||
], |
||||
"SHORTDAY": [ |
||||
"dg.", |
||||
"dl.", |
||||
"dt.", |
||||
"dc.", |
||||
"dj.", |
||||
"dv.", |
||||
"ds." |
||||
], |
||||
"SHORTMONTH": [ |
||||
"de gen.", |
||||
"de febr.", |
||||
"de mar\u00e7", |
||||
"d\u2019abr.", |
||||
"de maig", |
||||
"de juny", |
||||
"de jul.", |
||||
"d\u2019ag.", |
||||
"de set.", |
||||
"d\u2019oct.", |
||||
"de nov.", |
||||
"de des." |
||||
], |
||||
"fullDate": "EEEE d MMMM 'de' y", |
||||
"longDate": "d MMMM 'de' y", |
||||
"medium": "dd/MM/yyyy H:mm:ss", |
||||
"mediumDate": "dd/MM/yyyy", |
||||
"mediumTime": "H:mm:ss", |
||||
"short": "dd/MM/yy H:mm", |
||||
"shortDate": "dd/MM/yy", |
||||
"shortTime": "H:mm" |
||||
}, |
||||
"NUMBER_FORMATS": { |
||||
"CURRENCY_SYM": "\u20ac", |
||||
"DECIMAL_SEP": ",", |
||||
"GROUP_SEP": ".", |
||||
"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": "(\u00a4", |
||||
"negSuf": ")", |
||||
"posPre": "\u00a4", |
||||
"posSuf": "" |
||||
} |
||||
] |
||||
}, |
||||
"id": "ca-ad", |
||||
"pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} |
||||
}); |
||||
}]); |
@ -1,99 +0,0 @@ |
||||
'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": [ |
||||
"a.m.", |
||||
"p.m." |
||||
], |
||||
"DAY": [ |
||||
"diumenge", |
||||
"dilluns", |
||||
"dimarts", |
||||
"dimecres", |
||||
"dijous", |
||||
"divendres", |
||||
"dissabte" |
||||
], |
||||
"MONTH": [ |
||||
"de gener", |
||||
"de febrer", |
||||
"de mar\u00e7", |
||||
"d\u2019abril", |
||||
"de maig", |
||||
"de juny", |
||||
"de juliol", |
||||
"d\u2019agost", |
||||
"de setembre", |
||||
"d\u2019octubre", |
||||
"de novembre", |
||||
"de desembre" |
||||
], |
||||
"SHORTDAY": [ |
||||
"dg.", |
||||
"dl.", |
||||
"dt.", |
||||
"dc.", |
||||
"dj.", |
||||
"dv.", |
||||
"ds." |
||||
], |
||||
"SHORTMONTH": [ |
||||
"de gen.", |
||||
"de febr.", |
||||
"de mar\u00e7", |
||||
"d\u2019abr.", |
||||
"de maig", |
||||
"de juny", |
||||
"de jul.", |
||||
"d\u2019ag.", |
||||
"de set.", |
||||
"d\u2019oct.", |
||||
"de nov.", |
||||
"de des." |
||||
], |
||||
"fullDate": "EEEE d MMMM 'de' y", |
||||
"longDate": "d MMMM 'de' y", |
||||
"medium": "dd/MM/yyyy H:mm:ss", |
||||
"mediumDate": "dd/MM/yyyy", |
||||
"mediumTime": "H:mm:ss", |
||||
"short": "dd/MM/yy H:mm", |
||||
"shortDate": "dd/MM/yy", |
||||
"shortTime": "H:mm" |
||||
}, |
||||
"NUMBER_FORMATS": { |
||||
"CURRENCY_SYM": "\u20ac", |
||||
"DECIMAL_SEP": ",", |
||||
"GROUP_SEP": ".", |
||||
"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": "(\u00a4", |
||||
"negSuf": ")", |
||||
"posPre": "\u00a4", |
||||
"posSuf": "" |
||||
} |
||||
] |
||||
}, |
||||
"id": "ca-es", |
||||
"pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} |
||||
}); |
||||
}]); |
@ -1,99 +0,0 @@ |
||||
'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": [ |
||||
"a.m.", |
||||
"p.m." |
||||
], |
||||
"DAY": [ |
||||
"diumenge", |
||||
"dilluns", |
||||
"dimarts", |
||||
"dimecres", |
||||
"dijous", |
||||
"divendres", |
||||
"dissabte" |
||||
], |
||||
"MONTH": [ |
||||
"de gener", |
||||
"de febrer", |
||||
"de mar\u00e7", |
||||
"d\u2019abril", |
||||
"de maig", |
||||
"de juny", |
||||
"de juliol", |
||||
"d\u2019agost", |
||||
"de setembre", |
||||
"d\u2019octubre", |
||||
"de novembre", |
||||
"de desembre" |
||||
], |
||||
"SHORTDAY": [ |
||||
"dg.", |
||||
"dl.", |
||||
"dt.", |
||||
"dc.", |
||||
"dj.", |
||||
"dv.", |
||||
"ds." |
||||
], |
||||
"SHORTMONTH": [ |
||||
"de gen.", |
||||
"de febr.", |
||||
"de mar\u00e7", |
||||
"d\u2019abr.", |
||||
"de maig", |
||||
"de juny", |
||||
"de jul.", |
||||
"d\u2019ag.", |
||||
"de set.", |
||||
"d\u2019oct.", |
||||
"de nov.", |
||||
"de des." |
||||
], |
||||
"fullDate": "EEEE d MMMM 'de' y", |
||||
"longDate": "d MMMM 'de' y", |
||||
"medium": "dd/MM/yyyy H:mm:ss", |
||||
"mediumDate": "dd/MM/yyyy", |
||||
"mediumTime": "H:mm:ss", |
||||
"short": "dd/MM/yy H:mm", |
||||
"shortDate": "dd/MM/yy", |
||||
"shortTime": "H:mm" |
||||
}, |
||||
"NUMBER_FORMATS": { |
||||
"CURRENCY_SYM": "\u20ac", |
||||
"DECIMAL_SEP": ",", |
||||
"GROUP_SEP": ".", |
||||
"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": "(\u00a4", |
||||
"negSuf": ")", |
||||
"posPre": "\u00a4", |
||||
"posSuf": "" |
||||
} |
||||
] |
||||
}, |
||||
"id": "ca", |
||||
"pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} |
||||
}); |
||||
}]); |
@ -1,99 +0,0 @@ |
||||
'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": [ |
||||
"dop.", |
||||
"odp." |
||||
], |
||||
"DAY": [ |
||||
"ned\u011ble", |
||||
"pond\u011bl\u00ed", |
||||
"\u00fater\u00fd", |
||||
"st\u0159eda", |
||||
"\u010dtvrtek", |
||||
"p\u00e1tek", |
||||
"sobota" |
||||
], |
||||
"MONTH": [ |
||||
"ledna", |
||||
"\u00fanora", |
||||
"b\u0159ezna", |
||||
"dubna", |
||||
"kv\u011btna", |
||||
"\u010dervna", |
||||
"\u010dervence", |
||||
"srpna", |
||||
"z\u00e1\u0159\u00ed", |
||||
"\u0159\u00edjna", |
||||
"listopadu", |
||||
"prosince" |
||||
], |
||||
"SHORTDAY": [ |
||||
"ne", |
||||
"po", |
||||
"\u00fat", |
||||
"st", |
||||
"\u010dt", |
||||
"p\u00e1", |
||||
"so" |
||||
], |
||||
"SHORTMONTH": [ |
||||
"Led", |
||||
"\u00dano", |
||||
"B\u0159e", |
||||
"Dub", |
||||
"Kv\u011b", |
||||
"\u010cer", |
||||
"\u010cvc", |
||||
"Srp", |
||||
"Z\u00e1\u0159", |
||||
"\u0158\u00edj", |
||||
"Lis", |
||||
"Pro" |
||||
], |
||||
"fullDate": "EEEE, d. MMMM y", |
||||
"longDate": "d. MMMM y", |
||||
"medium": "d. M. yyyy H:mm:ss", |
||||
"mediumDate": "d. M. yyyy", |
||||
"mediumTime": "H:mm:ss", |
||||
"short": "dd.MM.yy H:mm", |
||||
"shortDate": "dd.MM.yy", |
||||
"shortTime": "H:mm" |
||||
}, |
||||
"NUMBER_FORMATS": { |
||||
"CURRENCY_SYM": "K\u010d", |
||||
"DECIMAL_SEP": ",", |
||||
"GROUP_SEP": "\u00a0", |
||||
"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": "-", |
||||
"negSuf": "\u00a0\u00a4", |
||||
"posPre": "", |
||||
"posSuf": "\u00a0\u00a4" |
||||
} |
||||
] |
||||
}, |
||||
"id": "cs-cz", |
||||
"pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == (n | 0) && n >= 2 && n <= 4) { return PLURAL_CATEGORY.FEW; } return PLURAL_CATEGORY.OTHER;} |
||||
}); |
||||
}]); |
@ -1,99 +0,0 @@ |
||||
'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": [ |
||||
"dop.", |
||||
"odp." |
||||
], |
||||
"DAY": [ |
||||
"ned\u011ble", |
||||
"pond\u011bl\u00ed", |
||||
"\u00fater\u00fd", |
||||
"st\u0159eda", |
||||
"\u010dtvrtek", |
||||
"p\u00e1tek", |
||||
"sobota" |
||||
], |
||||
"MONTH": [ |
||||
"ledna", |
||||
"\u00fanora", |
||||
"b\u0159ezna", |
||||
"dubna", |
||||
"kv\u011btna", |
||||
"\u010dervna", |
||||
"\u010dervence", |
||||
"srpna", |
||||
"z\u00e1\u0159\u00ed", |
||||
"\u0159\u00edjna", |
||||
"listopadu", |
||||
"prosince" |
||||
], |
||||
"SHORTDAY": [ |
||||
"ne", |
||||
"po", |
||||
"\u00fat", |
||||
"st", |
||||
"\u010dt", |
||||
"p\u00e1", |
||||
"so" |
||||
], |
||||
"SHORTMONTH": [ |
||||
"Led", |
||||
"\u00dano", |
||||
"B\u0159e", |
||||
"Dub", |
||||
"Kv\u011b", |
||||
"\u010cer", |
||||
"\u010cvc", |
||||
"Srp", |
||||
"Z\u00e1\u0159", |
||||
"\u0158\u00edj", |
||||
"Lis", |
||||
"Pro" |
||||
], |
||||
"fullDate": "EEEE, d. MMMM y", |
||||
"longDate": "d. MMMM y", |
||||
"medium": "d. M. yyyy H:mm:ss", |
||||
"mediumDate": "d. M. yyyy", |
||||
"mediumTime": "H:mm:ss", |
||||
"short": "dd.MM.yy H:mm", |
||||
"shortDate": "dd.MM.yy", |
||||
"shortTime": "H:mm" |
||||
}, |
||||
"NUMBER_FORMATS": { |
||||
"CURRENCY_SYM": "K\u010d", |
||||
"DECIMAL_SEP": ",", |
||||
"GROUP_SEP": "\u00a0", |
||||
"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": "-", |
||||
"negSuf": "\u00a0\u00a4", |
||||
"posPre": "", |
||||
"posSuf": "\u00a0\u00a4" |
||||
} |
||||
] |
||||
}, |
||||
"id": "cs", |
||||
"pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == (n | 0) && n >= 2 && n <= 4) { return PLURAL_CATEGORY.FEW; } return PLURAL_CATEGORY.OTHER;} |
||||
}); |
||||
}]); |
@ -1,99 +0,0 @@ |
||||
'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": [ |
||||
"f.m.", |
||||
"e.m." |
||||
], |
||||
"DAY": [ |
||||
"s\u00f8ndag", |
||||
"mandag", |
||||
"tirsdag", |
||||
"onsdag", |
||||
"torsdag", |
||||
"fredag", |
||||
"l\u00f8rdag" |
||||
], |
||||
"MONTH": [ |
||||
"januar", |
||||
"februar", |
||||
"marts", |
||||
"april", |
||||
"maj", |
||||
"juni", |
||||
"juli", |
||||
"august", |
||||
"september", |
||||
"oktober", |
||||
"november", |
||||
"december" |
||||
], |
||||
"SHORTDAY": [ |
||||
"s\u00f8n", |
||||
"man", |
||||
"tir", |
||||
"ons", |
||||
"tor", |
||||
"fre", |
||||
"l\u00f8r" |
||||
], |
||||
"SHORTMONTH": [ |
||||
"jan.", |
||||
"feb.", |
||||
"mar.", |
||||
"apr.", |
||||
"maj", |
||||
"jun.", |
||||
"jul.", |
||||
"aug.", |
||||
"sep.", |
||||
"okt.", |
||||
"nov.", |
||||
"dec." |
||||
], |
||||
"fullDate": "EEEE 'den' d. MMMM y", |
||||
"longDate": "d. MMM y", |
||||
"medium": "dd/MM/yyyy HH.mm.ss", |
||||
"mediumDate": "dd/MM/yyyy", |
||||
"mediumTime": "HH.mm.ss", |
||||
"short": "dd/MM/yy HH.mm", |
||||
"shortDate": "dd/MM/yy", |
||||
"shortTime": "HH.mm" |
||||
}, |
||||
"NUMBER_FORMATS": { |
||||
"CURRENCY_SYM": "kr", |
||||
"DECIMAL_SEP": ",", |
||||
"GROUP_SEP": ".", |
||||
"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": "-", |
||||
"negSuf": "\u00a0\u00a4", |
||||
"posPre": "", |
||||
"posSuf": "\u00a0\u00a4" |
||||
} |
||||
] |
||||
}, |
||||
"id": "da-dk", |
||||
"pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} |
||||
}); |
||||
}]); |
@ -1,99 +0,0 @@ |
||||
'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": [ |
||||
"f.m.", |
||||
"e.m." |
||||
], |
||||
"DAY": [ |
||||
"s\u00f8ndag", |
||||
"mandag", |
||||
"tirsdag", |
||||
"onsdag", |
||||
"torsdag", |
||||
"fredag", |
||||
"l\u00f8rdag" |
||||
], |
||||
"MONTH": [ |
||||
"januar", |
||||
"februar", |
||||
"marts", |
||||
"april", |
||||
"maj", |
||||
"juni", |
||||
"juli", |
||||
"august", |
||||
"september", |
||||
"oktober", |
||||
"november", |
||||
"december" |
||||
], |
||||
"SHORTDAY": [ |
||||
"s\u00f8n", |
||||
"man", |
||||
"tir", |
||||
"ons", |
||||
"tor", |
||||
"fre", |
||||
"l\u00f8r" |
||||
], |
||||
"SHORTMONTH": [ |
||||
"jan.", |
||||
"feb.", |
||||
"mar.", |
||||
"apr.", |
||||
"maj", |
||||
"jun.", |
||||
"jul.", |
||||
"aug.", |
||||
"sep.", |
||||
"okt.", |
||||
"nov.", |
||||
"dec." |
||||
], |
||||
"fullDate": "EEEE 'den' d. MMMM y", |
||||
"longDate": "d. MMM y", |
||||
"medium": "dd/MM/yyyy HH.mm.ss", |
||||
"mediumDate": "dd/MM/yyyy", |
||||
"mediumTime": "HH.mm.ss", |
||||
"short": "dd/MM/yy HH.mm", |
||||
"shortDate": "dd/MM/yy", |
||||
"shortTime": "HH.mm" |
||||
}, |
||||
"NUMBER_FORMATS": { |
||||
"CURRENCY_SYM": "kr", |
||||
"DECIMAL_SEP": ",", |
||||
"GROUP_SEP": ".", |
||||
"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": "-", |
||||
"negSuf": "\u00a0\u00a4", |
||||
"posPre": "", |
||||
"posSuf": "\u00a0\u00a4" |
||||
} |
||||
] |
||||
}, |
||||
"id": "da", |
||||
"pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} |
||||
}); |
||||
}]); |
@ -1,99 +0,0 @@ |
||||
'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": [ |
||||
"vorm.", |
||||
"nachm." |
||||
], |
||||
"DAY": [ |
||||
"Sonntag", |
||||
"Montag", |
||||
"Dienstag", |
||||
"Mittwoch", |
||||
"Donnerstag", |
||||
"Freitag", |
||||
"Samstag" |
||||
], |
||||
"MONTH": [ |
||||
"J\u00e4nner", |
||||
"Februar", |
||||
"M\u00e4rz", |
||||
"April", |
||||
"Mai", |
||||
"Juni", |
||||
"Juli", |
||||
"August", |
||||
"September", |
||||
"Oktober", |
||||
"November", |
||||
"Dezember" |
||||
], |
||||
"SHORTDAY": [ |
||||
"So.", |
||||
"Mo.", |
||||
"Di.", |
||||
"Mi.", |
||||
"Do.", |
||||
"Fr.", |
||||
"Sa." |
||||
], |
||||
"SHORTMONTH": [ |
||||
"J\u00e4n", |
||||
"Feb", |
||||
"M\u00e4r", |
||||
"Apr", |
||||
"Mai", |
||||
"Jun", |
||||
"Jul", |
||||
"Aug", |
||||
"Sep", |
||||
"Okt", |
||||
"Nov", |
||||
"Dez" |
||||
], |
||||
"fullDate": "EEEE, dd. MMMM y", |
||||
"longDate": "dd. MMMM y", |
||||
"medium": "dd.MM.yyyy HH:mm:ss", |
||||
"mediumDate": "dd.MM.yyyy", |
||||
"mediumTime": "HH:mm:ss", |
||||
"short": "dd.MM.yy HH:mm", |
||||
"shortDate": "dd.MM.yy", |
||||
"shortTime": "HH:mm" |
||||
}, |
||||
"NUMBER_FORMATS": { |
||||
"CURRENCY_SYM": "\u20ac", |
||||
"DECIMAL_SEP": ",", |
||||
"GROUP_SEP": ".", |
||||
"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": "\u00a4\u00a0-", |
||||
"negSuf": "", |
||||
"posPre": "\u00a4\u00a0", |
||||
"posSuf": "" |
||||
} |
||||
] |
||||
}, |
||||
"id": "de-at", |
||||
"pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} |
||||
}); |
||||
}]); |
@ -1,99 +0,0 @@ |
||||
'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": [ |
||||
"vorm.", |
||||
"nachm." |
||||
], |
||||
"DAY": [ |
||||
"Sonntag", |
||||
"Montag", |
||||
"Dienstag", |
||||
"Mittwoch", |
||||
"Donnerstag", |
||||
"Freitag", |
||||
"Samstag" |
||||
], |
||||
"MONTH": [ |
||||
"Januar", |
||||
"Februar", |
||||
"M\u00e4rz", |
||||
"April", |
||||
"Mai", |
||||
"Juni", |
||||
"Juli", |
||||
"August", |
||||
"September", |
||||
"Oktober", |
||||
"November", |
||||
"Dezember" |
||||
], |
||||
"SHORTDAY": [ |
||||
"So.", |
||||
"Mo.", |
||||
"Di.", |
||||
"Mi.", |
||||
"Do.", |
||||
"Fr.", |
||||
"Sa." |
||||
], |
||||
"SHORTMONTH": [ |
||||
"Jan", |
||||
"Feb", |
||||
"M\u00e4r", |
||||
"Apr", |
||||
"Mai", |
||||
"Jun", |
||||
"Jul", |
||||
"Aug", |
||||
"Sep", |
||||
"Okt", |
||||
"Nov", |
||||
"Dez" |
||||
], |
||||
"fullDate": "EEEE, d. MMMM y", |
||||
"longDate": "d. MMMM y", |
||||
"medium": "dd.MM.yyyy HH:mm:ss", |
||||
"mediumDate": "dd.MM.yyyy", |
||||
"mediumTime": "HH:mm:ss", |
||||
"short": "dd.MM.yy HH:mm", |
||||
"shortDate": "dd.MM.yy", |
||||
"shortTime": "HH:mm" |
||||
}, |
||||
"NUMBER_FORMATS": { |
||||
"CURRENCY_SYM": "\u20ac", |
||||
"DECIMAL_SEP": ",", |
||||
"GROUP_SEP": ".", |
||||
"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": "-", |
||||
"negSuf": "\u00a0\u00a4", |
||||
"posPre": "", |
||||
"posSuf": "\u00a0\u00a4" |
||||
} |
||||
] |
||||
}, |
||||
"id": "de-be", |
||||
"pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} |
||||
}); |
||||
}]); |
@ -1,99 +0,0 @@ |
||||
'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": [ |
||||
"vorm.", |
||||
"nachm." |
||||
], |
||||
"DAY": [ |
||||
"Sonntag", |
||||
"Montag", |
||||
"Dienstag", |
||||
"Mittwoch", |
||||
"Donnerstag", |
||||
"Freitag", |
||||
"Samstag" |
||||
], |
||||
"MONTH": [ |
||||
"Januar", |
||||
"Februar", |
||||
"M\u00e4rz", |
||||
"April", |
||||
"Mai", |
||||
"Juni", |
||||
"Juli", |
||||
"August", |
||||
"September", |
||||
"Oktober", |
||||
"November", |
||||
"Dezember" |
||||
], |
||||
"SHORTDAY": [ |
||||
"So.", |
||||
"Mo.", |
||||
"Di.", |
||||
"Mi.", |
||||
"Do.", |
||||
"Fr.", |
||||
"Sa." |
||||
], |
||||
"SHORTMONTH": [ |
||||
"Jan", |
||||
"Feb", |
||||
"M\u00e4r", |
||||
"Apr", |
||||
"Mai", |
||||
"Jun", |
||||
"Jul", |
||||
"Aug", |
||||
"Sep", |
||||
"Okt", |
||||
"Nov", |
||||
"Dez" |
||||
], |
||||
"fullDate": "EEEE, d. MMMM y", |
||||
"longDate": "d. MMMM y", |
||||
"medium": "dd.MM.yyyy HH:mm:ss", |
||||
"mediumDate": "dd.MM.yyyy", |
||||
"mediumTime": "HH:mm:ss", |
||||
"short": "dd.MM.yy HH:mm", |
||||
"shortDate": "dd.MM.yy", |
||||
"shortTime": "HH:mm" |
||||
}, |
||||
"NUMBER_FORMATS": { |
||||
"CURRENCY_SYM": "CHF", |
||||
"DECIMAL_SEP": ".", |
||||
"GROUP_SEP": "'", |
||||
"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": "\u00a4-", |
||||
"negSuf": "", |
||||
"posPre": "\u00a4\u00a0", |
||||
"posSuf": "" |
||||
} |
||||
] |
||||
}, |
||||
"id": "de-ch", |
||||
"pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} |
||||
}); |
||||
}]); |
@ -1,99 +0,0 @@ |
||||
'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": [ |
||||
"vorm.", |
||||
"nachm." |
||||
], |
||||
"DAY": [ |
||||
"Sonntag", |
||||
"Montag", |
||||
"Dienstag", |
||||
"Mittwoch", |
||||
"Donnerstag", |
||||
"Freitag", |
||||
"Samstag" |
||||
], |
||||
"MONTH": [ |
||||
"Januar", |
||||
"Februar", |
||||
"M\u00e4rz", |
||||
"April", |
||||
"Mai", |
||||
"Juni", |
||||
"Juli", |
||||
"August", |
||||
"September", |
||||
"Oktober", |
||||
"November", |
||||
"Dezember" |
||||
], |
||||
"SHORTDAY": [ |
||||
"So.", |
||||
"Mo.", |
||||
"Di.", |
||||
"Mi.", |
||||
"Do.", |
||||
"Fr.", |
||||
"Sa." |
||||
], |
||||
"SHORTMONTH": [ |
||||
"Jan", |
||||
"Feb", |
||||
"M\u00e4r", |
||||
"Apr", |
||||
"Mai", |
||||
"Jun", |
||||
"Jul", |
||||
"Aug", |
||||
"Sep", |
||||
"Okt", |
||||
"Nov", |
||||
"Dez" |
||||
], |
||||
"fullDate": "EEEE, d. MMMM y", |
||||
"longDate": "d. MMMM y", |
||||
"medium": "dd.MM.yyyy HH:mm:ss", |
||||
"mediumDate": "dd.MM.yyyy", |
||||
"mediumTime": "HH:mm:ss", |
||||
"short": "dd.MM.yy HH:mm", |
||||
"shortDate": "dd.MM.yy", |
||||
"shortTime": "HH:mm" |
||||
}, |
||||
"NUMBER_FORMATS": { |
||||
"CURRENCY_SYM": "\u20ac", |
||||
"DECIMAL_SEP": ",", |
||||
"GROUP_SEP": ".", |
||||
"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": "-", |
||||
"negSuf": "\u00a0\u00a4", |
||||
"posPre": "", |
||||
"posSuf": "\u00a0\u00a4" |
||||
} |
||||
] |
||||
}, |
||||
"id": "de-de", |
||||
"pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} |
||||
}); |
||||
}]); |
@ -1,99 +0,0 @@ |
||||
'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": [ |
||||
"vorm.", |
||||
"nachm." |
||||
], |
||||
"DAY": [ |
||||
"Sonntag", |
||||
"Montag", |
||||
"Dienstag", |
||||
"Mittwoch", |
||||
"Donnerstag", |
||||
"Freitag", |
||||
"Samstag" |
||||
], |
||||
"MONTH": [ |
||||
"Januar", |
||||
"Februar", |
||||
"M\u00e4rz", |
||||
"April", |
||||
"Mai", |
||||
"Juni", |
||||
"Juli", |
||||
"August", |
||||
"September", |
||||
"Oktober", |
||||
"November", |
||||
"Dezember" |
||||
], |
||||
"SHORTDAY": [ |
||||
"So.", |
||||
"Mo.", |
||||
"Di.", |
||||
"Mi.", |
||||
"Do.", |
||||
"Fr.", |
||||
"Sa." |
||||
], |
||||
"SHORTMONTH": [ |
||||
"Jan", |
||||
"Feb", |
||||
"M\u00e4r", |
||||
"Apr", |
||||
"Mai", |
||||
"Jun", |
||||
"Jul", |
||||
"Aug", |
||||
"Sep", |
||||
"Okt", |
||||
"Nov", |
||||
"Dez" |
||||
], |
||||
"fullDate": "EEEE, d. MMMM y", |
||||
"longDate": "d. MMMM y", |
||||
"medium": "dd.MM.yyyy HH:mm:ss", |
||||
"mediumDate": "dd.MM.yyyy", |
||||
"mediumTime": "HH:mm:ss", |
||||
"short": "dd.MM.yy HH:mm", |
||||
"shortDate": "dd.MM.yy", |
||||
"shortTime": "HH:mm" |
||||
}, |
||||
"NUMBER_FORMATS": { |
||||
"CURRENCY_SYM": "\u20ac", |
||||
"DECIMAL_SEP": ",", |
||||
"GROUP_SEP": ".", |
||||
"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": "-", |
||||
"negSuf": "\u00a0\u00a4", |
||||
"posPre": "", |
||||
"posSuf": "\u00a0\u00a4" |
||||
} |
||||
] |
||||
}, |
||||
"id": "de-li", |
||||
"pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} |
||||
}); |
||||
}]); |
@ -1,99 +0,0 @@ |
||||
'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": [ |
||||
"vorm.", |
||||
"nachm." |
||||
], |
||||
"DAY": [ |
||||
"Sonntag", |
||||
"Montag", |
||||
"Dienstag", |
||||
"Mittwoch", |
||||
"Donnerstag", |
||||
"Freitag", |
||||
"Samstag" |
||||
], |
||||
"MONTH": [ |
||||
"Januar", |
||||
"Februar", |
||||
"M\u00e4rz", |
||||
"April", |
||||
"Mai", |
||||
"Juni", |
||||
"Juli", |
||||
"August", |
||||
"September", |
||||
"Oktober", |
||||
"November", |
||||
"Dezember" |
||||
], |
||||
"SHORTDAY": [ |
||||
"So.", |
||||
"Mo.", |
||||
"Di.", |
||||
"Mi.", |
||||
"Do.", |
||||
"Fr.", |
||||
"Sa." |
||||
], |
||||
"SHORTMONTH": [ |
||||
"Jan", |
||||
"Feb", |
||||
"M\u00e4r", |
||||
"Apr", |
||||
"Mai", |
||||
"Jun", |
||||
"Jul", |
||||
"Aug", |
||||
"Sep", |
||||
"Okt", |
||||
"Nov", |
||||
"Dez" |
||||
], |
||||
"fullDate": "EEEE, d. MMMM y", |
||||
"longDate": "d. MMMM y", |
||||
"medium": "dd.MM.yyyy HH:mm:ss", |
||||
"mediumDate": "dd.MM.yyyy", |
||||
"mediumTime": "HH:mm:ss", |
||||
"short": "dd.MM.yy HH:mm", |
||||
"shortDate": "dd.MM.yy", |
||||
"shortTime": "HH:mm" |
||||
}, |
||||
"NUMBER_FORMATS": { |
||||
"CURRENCY_SYM": "\u20ac", |
||||
"DECIMAL_SEP": ",", |
||||
"GROUP_SEP": ".", |
||||
"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": "-", |
||||
"negSuf": "\u00a0\u00a4", |
||||
"posPre": "", |
||||
"posSuf": "\u00a0\u00a4" |
||||
} |
||||
] |
||||
}, |
||||
"id": "de-lu", |
||||
"pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} |
||||
}); |
||||
}]); |
@ -1,99 +0,0 @@ |
||||
'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": [ |
||||
"vorm.", |
||||
"nachm." |
||||
], |
||||
"DAY": [ |
||||
"Sonntag", |
||||
"Montag", |
||||
"Dienstag", |
||||
"Mittwoch", |
||||
"Donnerstag", |
||||
"Freitag", |
||||
"Samstag" |
||||
], |
||||
"MONTH": [ |
||||
"Januar", |
||||
"Februar", |
||||
"M\u00e4rz", |
||||
"April", |
||||
"Mai", |
||||
"Juni", |
||||
"Juli", |
||||
"August", |
||||
"September", |
||||
"Oktober", |
||||
"November", |
||||
"Dezember" |
||||
], |
||||
"SHORTDAY": [ |
||||
"So.", |
||||
"Mo.", |
||||
"Di.", |
||||
"Mi.", |
||||
"Do.", |
||||
"Fr.", |
||||
"Sa." |
||||
], |
||||
"SHORTMONTH": [ |
||||
"Jan", |
||||
"Feb", |
||||
"M\u00e4r", |
||||
"Apr", |
||||
"Mai", |
||||
"Jun", |
||||
"Jul", |
||||
"Aug", |
||||
"Sep", |
||||
"Okt", |
||||
"Nov", |
||||
"Dez" |
||||
], |
||||
"fullDate": "EEEE, d. MMMM y", |
||||
"longDate": "d. MMMM y", |
||||
"medium": "dd.MM.yyyy HH:mm:ss", |
||||
"mediumDate": "dd.MM.yyyy", |
||||
"mediumTime": "HH:mm:ss", |
||||
"short": "dd.MM.yy HH:mm", |
||||
"shortDate": "dd.MM.yy", |
||||
"shortTime": "HH:mm" |
||||
}, |
||||
"NUMBER_FORMATS": { |
||||
"CURRENCY_SYM": "\u20ac", |
||||
"DECIMAL_SEP": ",", |
||||
"GROUP_SEP": ".", |
||||
"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": "-", |
||||
"negSuf": "\u00a0\u00a4", |
||||
"posPre": "", |
||||
"posSuf": "\u00a0\u00a4" |
||||
} |
||||
] |
||||
}, |
||||
"id": "de", |
||||
"pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} |
||||
}); |
||||
}]); |
@ -1,99 +0,0 @@ |
||||
'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": [ |
||||
"\u03c0.\u03bc.", |
||||
"\u03bc.\u03bc." |
||||
], |
||||
"DAY": [ |
||||
"\u039a\u03c5\u03c1\u03b9\u03b1\u03ba\u03ae", |
||||
"\u0394\u03b5\u03c5\u03c4\u03ad\u03c1\u03b1", |
||||
"\u03a4\u03c1\u03af\u03c4\u03b7", |
||||
"\u03a4\u03b5\u03c4\u03ac\u03c1\u03c4\u03b7", |
||||
"\u03a0\u03ad\u03bc\u03c0\u03c4\u03b7", |
||||
"\u03a0\u03b1\u03c1\u03b1\u03c3\u03ba\u03b5\u03c5\u03ae", |
||||
"\u03a3\u03ac\u03b2\u03b2\u03b1\u03c4\u03bf" |
||||
], |
||||
"MONTH": [ |
||||
"\u0399\u03b1\u03bd\u03bf\u03c5\u03b1\u03c1\u03af\u03bf\u03c5", |
||||
"\u03a6\u03b5\u03b2\u03c1\u03bf\u03c5\u03b1\u03c1\u03af\u03bf\u03c5", |
||||
"\u039c\u03b1\u03c1\u03c4\u03af\u03bf\u03c5", |
||||
"\u0391\u03c0\u03c1\u03b9\u03bb\u03af\u03bf\u03c5", |
||||
"\u039c\u03b1\u0390\u03bf\u03c5", |
||||
"\u0399\u03bf\u03c5\u03bd\u03af\u03bf\u03c5", |
||||
"\u0399\u03bf\u03c5\u03bb\u03af\u03bf\u03c5", |
||||
"\u0391\u03c5\u03b3\u03bf\u03cd\u03c3\u03c4\u03bf\u03c5", |
||||
"\u03a3\u03b5\u03c0\u03c4\u03b5\u03bc\u03b2\u03c1\u03af\u03bf\u03c5", |
||||
"\u039f\u03ba\u03c4\u03c9\u03b2\u03c1\u03af\u03bf\u03c5", |
||||
"\u039d\u03bf\u03b5\u03bc\u03b2\u03c1\u03af\u03bf\u03c5", |
||||
"\u0394\u03b5\u03ba\u03b5\u03bc\u03b2\u03c1\u03af\u03bf\u03c5" |
||||
], |
||||
"SHORTDAY": [ |
||||
"\u039a\u03c5\u03c1", |
||||
"\u0394\u03b5\u03c5", |
||||
"\u03a4\u03c1\u03b9", |
||||
"\u03a4\u03b5\u03c4", |
||||
"\u03a0\u03b5\u03bc", |
||||
"\u03a0\u03b1\u03c1", |
||||
"\u03a3\u03b1\u03b2" |
||||
], |
||||
"SHORTMONTH": [ |
||||
"\u0399\u03b1\u03bd", |
||||
"\u03a6\u03b5\u03b2", |
||||
"\u039c\u03b1\u03c1", |
||||
"\u0391\u03c0\u03c1", |
||||
"\u039c\u03b1\u03ca", |
||||
"\u0399\u03bf\u03c5\u03bd", |
||||
"\u0399\u03bf\u03c5\u03bb", |
||||
"\u0391\u03c5\u03b3", |
||||
"\u03a3\u03b5\u03c0", |
||||
"\u039f\u03ba\u03c4", |
||||
"\u039d\u03bf\u03b5", |
||||
"\u0394\u03b5\u03ba" |
||||
], |
||||
"fullDate": "EEEE, d MMMM y", |
||||
"longDate": "d MMMM y", |
||||
"medium": "d MMM y h:mm:ss a", |
||||
"mediumDate": "d MMM y", |
||||
"mediumTime": "h:mm:ss a", |
||||
"short": "d/M/yy h:mm a", |
||||
"shortDate": "d/M/yy", |
||||
"shortTime": "h:mm a" |
||||
}, |
||||
"NUMBER_FORMATS": { |
||||
"CURRENCY_SYM": "\u20ac", |
||||
"DECIMAL_SEP": ",", |
||||
"GROUP_SEP": ".", |
||||
"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": "-", |
||||
"negSuf": "\u00a0\u00a4", |
||||
"posPre": "", |
||||
"posSuf": "\u00a0\u00a4" |
||||
} |
||||
] |
||||
}, |
||||
"id": "el-cy", |
||||
"pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} |
||||
}); |
||||
}]); |
@ -1,99 +0,0 @@ |
||||
'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": [ |
||||
"\u03c0.\u03bc.", |
||||
"\u03bc.\u03bc." |
||||
], |
||||
"DAY": [ |
||||
"\u039a\u03c5\u03c1\u03b9\u03b1\u03ba\u03ae", |
||||
"\u0394\u03b5\u03c5\u03c4\u03ad\u03c1\u03b1", |
||||
"\u03a4\u03c1\u03af\u03c4\u03b7", |
||||
"\u03a4\u03b5\u03c4\u03ac\u03c1\u03c4\u03b7", |
||||
"\u03a0\u03ad\u03bc\u03c0\u03c4\u03b7", |
||||
"\u03a0\u03b1\u03c1\u03b1\u03c3\u03ba\u03b5\u03c5\u03ae", |
||||
"\u03a3\u03ac\u03b2\u03b2\u03b1\u03c4\u03bf" |
||||
], |
||||
"MONTH": [ |
||||
"\u0399\u03b1\u03bd\u03bf\u03c5\u03b1\u03c1\u03af\u03bf\u03c5", |
||||
"\u03a6\u03b5\u03b2\u03c1\u03bf\u03c5\u03b1\u03c1\u03af\u03bf\u03c5", |
||||
"\u039c\u03b1\u03c1\u03c4\u03af\u03bf\u03c5", |
||||
"\u0391\u03c0\u03c1\u03b9\u03bb\u03af\u03bf\u03c5", |
||||
"\u039c\u03b1\u0390\u03bf\u03c5", |
||||
"\u0399\u03bf\u03c5\u03bd\u03af\u03bf\u03c5", |
||||
"\u0399\u03bf\u03c5\u03bb\u03af\u03bf\u03c5", |
||||
"\u0391\u03c5\u03b3\u03bf\u03cd\u03c3\u03c4\u03bf\u03c5", |
||||
"\u03a3\u03b5\u03c0\u03c4\u03b5\u03bc\u03b2\u03c1\u03af\u03bf\u03c5", |
||||
"\u039f\u03ba\u03c4\u03c9\u03b2\u03c1\u03af\u03bf\u03c5", |
||||
"\u039d\u03bf\u03b5\u03bc\u03b2\u03c1\u03af\u03bf\u03c5", |
||||
"\u0394\u03b5\u03ba\u03b5\u03bc\u03b2\u03c1\u03af\u03bf\u03c5" |
||||
], |
||||
"SHORTDAY": [ |
||||
"\u039a\u03c5\u03c1", |
||||
"\u0394\u03b5\u03c5", |
||||
"\u03a4\u03c1\u03b9", |
||||
"\u03a4\u03b5\u03c4", |
||||
"\u03a0\u03b5\u03bc", |
||||
"\u03a0\u03b1\u03c1", |
||||
"\u03a3\u03b1\u03b2" |
||||
], |
||||
"SHORTMONTH": [ |
||||
"\u0399\u03b1\u03bd", |
||||
"\u03a6\u03b5\u03b2", |
||||
"\u039c\u03b1\u03c1", |
||||
"\u0391\u03c0\u03c1", |
||||
"\u039c\u03b1\u03ca", |
||||
"\u0399\u03bf\u03c5\u03bd", |
||||
"\u0399\u03bf\u03c5\u03bb", |
||||
"\u0391\u03c5\u03b3", |
||||
"\u03a3\u03b5\u03c0", |
||||
"\u039f\u03ba\u03c4", |
||||
"\u039d\u03bf\u03b5", |
||||
"\u0394\u03b5\u03ba" |
||||
], |
||||
"fullDate": "EEEE, d MMMM y", |
||||
"longDate": "d MMMM y", |
||||
"medium": "d MMM y h:mm:ss a", |
||||
"mediumDate": "d MMM y", |
||||
"mediumTime": "h:mm:ss a", |
||||
"short": "d/M/yy h:mm a", |
||||
"shortDate": "d/M/yy", |
||||
"shortTime": "h:mm a" |
||||
}, |
||||
"NUMBER_FORMATS": { |
||||
"CURRENCY_SYM": "\u20ac", |
||||
"DECIMAL_SEP": ",", |
||||
"GROUP_SEP": ".", |
||||
"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": "-", |
||||
"negSuf": "\u00a0\u00a4", |
||||
"posPre": "", |
||||
"posSuf": "\u00a0\u00a4" |
||||
} |
||||
] |
||||
}, |
||||
"id": "el-gr", |
||||
"pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} |
||||
}); |
||||
}]); |
@ -1,99 +0,0 @@ |
||||
'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": [ |
||||
"\u03c0.\u03bc.", |
||||
"\u03bc.\u03bc." |
||||
], |
||||
"DAY": [ |
||||
"\u039a\u03c5\u03c1\u03b9\u03b1\u03ba\u03ae", |
||||
"\u0394\u03b5\u03c5\u03c4\u03ad\u03c1\u03b1", |
||||
"\u03a4\u03c1\u03af\u03c4\u03b7", |
||||
"\u03a4\u03b5\u03c4\u03ac\u03c1\u03c4\u03b7", |
||||
"\u03a0\u03ad\u03bc\u03c0\u03c4\u03b7", |
||||
"\u03a0\u03b1\u03c1\u03b1\u03c3\u03ba\u03b5\u03c5\u03ae", |
||||
"\u03a3\u03ac\u03b2\u03b2\u03b1\u03c4\u03bf" |
||||
], |
||||
"MONTH": [ |
||||
"\u0399\u03b1\u03bd\u03bf\u03c5\u03b1\u03c1\u03af\u03bf\u03c5", |
||||
"\u03a6\u03b5\u03b2\u03c1\u03bf\u03c5\u03b1\u03c1\u03af\u03bf\u03c5", |
||||
"\u039c\u03b1\u03c1\u03c4\u03af\u03bf\u03c5", |
||||
"\u0391\u03c0\u03c1\u03b9\u03bb\u03af\u03bf\u03c5", |
||||
"\u039c\u03b1\u0390\u03bf\u03c5", |
||||
"\u0399\u03bf\u03c5\u03bd\u03af\u03bf\u03c5", |
||||
"\u0399\u03bf\u03c5\u03bb\u03af\u03bf\u03c5", |
||||
"\u0391\u03c5\u03b3\u03bf\u03cd\u03c3\u03c4\u03bf\u03c5", |
||||
"\u03a3\u03b5\u03c0\u03c4\u03b5\u03bc\u03b2\u03c1\u03af\u03bf\u03c5", |
||||
"\u039f\u03ba\u03c4\u03c9\u03b2\u03c1\u03af\u03bf\u03c5", |
||||
"\u039d\u03bf\u03b5\u03bc\u03b2\u03c1\u03af\u03bf\u03c5", |
||||
"\u0394\u03b5\u03ba\u03b5\u03bc\u03b2\u03c1\u03af\u03bf\u03c5" |
||||
], |
||||
"SHORTDAY": [ |
||||
"\u039a\u03c5\u03c1", |
||||
"\u0394\u03b5\u03c5", |
||||
"\u03a4\u03c1\u03b9", |
||||
"\u03a4\u03b5\u03c4", |
||||
"\u03a0\u03b5\u03bc", |
||||
"\u03a0\u03b1\u03c1", |
||||
"\u03a3\u03b1\u03b2" |
||||
], |
||||
"SHORTMONTH": [ |
||||
"\u0399\u03b1\u03bd", |
||||
"\u03a6\u03b5\u03b2", |
||||
"\u039c\u03b1\u03c1", |
||||
"\u0391\u03c0\u03c1", |
||||
"\u039c\u03b1\u03ca", |
||||
"\u0399\u03bf\u03c5\u03bd", |
||||
"\u0399\u03bf\u03c5\u03bb", |
||||
"\u0391\u03c5\u03b3", |
||||
"\u03a3\u03b5\u03c0", |
||||
"\u039f\u03ba\u03c4", |
||||
"\u039d\u03bf\u03b5", |
||||
"\u0394\u03b5\u03ba" |
||||
], |
||||
"fullDate": "EEEE, d MMMM y", |
||||
"longDate": "d MMMM y", |
||||
"medium": "d MMM y h:mm:ss a", |
||||
"mediumDate": "d MMM y", |
||||
"mediumTime": "h:mm:ss a", |
||||
"short": "d/M/yy h:mm a", |
||||
"shortDate": "d/M/yy", |
||||
"shortTime": "h:mm a" |
||||
}, |
||||
"NUMBER_FORMATS": { |
||||
"CURRENCY_SYM": "\u20ac", |
||||
"DECIMAL_SEP": ",", |
||||
"GROUP_SEP": ".", |
||||
"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": "-", |
||||
"negSuf": "\u00a0\u00a4", |
||||
"posPre": "", |
||||
"posSuf": "\u00a0\u00a4" |
||||
} |
||||
] |
||||
}, |
||||
"id": "el", |
||||
"pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} |
||||
}); |
||||
}]); |
@ -1,99 +0,0 @@ |
||||
'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": [ |
||||
"AM", |
||||
"PM" |
||||
], |
||||
"DAY": [ |
||||
"Sunday", |
||||
"Monday", |
||||
"Tuesday", |
||||
"Wednesday", |
||||
"Thursday", |
||||
"Friday", |
||||
"Saturday" |
||||
], |
||||
"MONTH": [ |
||||
"January", |
||||
"February", |
||||
"March", |
||||
"April", |
||||
"May", |
||||
"June", |
||||
"July", |
||||
"August", |
||||
"September", |
||||
"October", |
||||
"November", |
||||
"December" |
||||
], |
||||
"SHORTDAY": [ |
||||
"Sun", |
||||
"Mon", |
||||
"Tue", |
||||
"Wed", |
||||
"Thu", |
||||
"Fri", |
||||
"Sat" |
||||
], |
||||
"SHORTMONTH": [ |
||||
"Jan", |
||||
"Feb", |
||||
"Mar", |
||||
"Apr", |
||||
"May", |
||||
"Jun", |
||||
"Jul", |
||||
"Aug", |
||||
"Sep", |
||||
"Oct", |
||||
"Nov", |
||||
"Dec" |
||||
], |
||||
"fullDate": "EEEE, MMMM d, y", |
||||
"longDate": "MMMM d, y", |
||||
"medium": "MMM d, y h:mm:ss a", |
||||
"mediumDate": "MMM d, y", |
||||
"mediumTime": "h:mm:ss a", |
||||
"short": "M/d/yy h:mm a", |
||||
"shortDate": "M/d/yy", |
||||
"shortTime": "h:mm a" |
||||
}, |
||||
"NUMBER_FORMATS": { |
||||
"CURRENCY_SYM": "$", |
||||
"DECIMAL_SEP": ".", |
||||
"GROUP_SEP": ",", |
||||
"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": "(\u00a4", |
||||
"negSuf": ")", |
||||
"posPre": "\u00a4", |
||||
"posSuf": "" |
||||
} |
||||
] |
||||
}, |
||||
"id": "en-as", |
||||
"pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} |
||||
}); |
||||
}]); |
@ -1,99 +0,0 @@ |
||||
'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": [ |
||||
"AM", |
||||
"PM" |
||||
], |
||||
"DAY": [ |
||||
"Sunday", |
||||
"Monday", |
||||
"Tuesday", |
||||
"Wednesday", |
||||
"Thursday", |
||||
"Friday", |
||||
"Saturday" |
||||
], |
||||
"MONTH": [ |
||||
"January", |
||||
"February", |
||||
"March", |
||||
"April", |
||||
"May", |
||||
"June", |
||||
"July", |
||||
"August", |
||||
"September", |
||||
"October", |
||||
"November", |
||||
"December" |
||||
], |
||||
"SHORTDAY": [ |
||||
"Sun", |
||||
"Mon", |
||||
"Tue", |
||||
"Wed", |
||||
"Thu", |
||||
"Fri", |
||||
"Sat" |
||||
], |
||||
"SHORTMONTH": [ |
||||
"Jan", |
||||
"Feb", |
||||
"Mar", |
||||
"Apr", |
||||
"May", |
||||
"Jun", |
||||
"Jul", |
||||
"Aug", |
||||
"Sep", |
||||
"Oct", |
||||
"Nov", |
||||
"Dec" |
||||
], |
||||
"fullDate": "EEEE, d MMMM y", |
||||
"longDate": "d MMMM y", |
||||
"medium": "dd/MM/yyyy h:mm:ss a", |
||||
"mediumDate": "dd/MM/yyyy", |
||||
"mediumTime": "h:mm:ss a", |
||||
"short": "d/MM/yy h:mm a", |
||||
"shortDate": "d/MM/yy", |
||||
"shortTime": "h:mm a" |
||||
}, |
||||
"NUMBER_FORMATS": { |
||||
"CURRENCY_SYM": "$", |
||||
"DECIMAL_SEP": ".", |
||||
"GROUP_SEP": ",", |
||||
"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": "(\u00a4", |
||||
"negSuf": ")", |
||||
"posPre": "\u00a4", |
||||
"posSuf": "" |
||||
} |
||||
] |
||||
}, |
||||
"id": "en-au", |
||||
"pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} |
||||
}); |
||||
}]); |
@ -1,99 +0,0 @@ |
||||
'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": [ |
||||
"AM", |
||||
"PM" |
||||
], |
||||
"DAY": [ |
||||
"Sunday", |
||||
"Monday", |
||||
"Tuesday", |
||||
"Wednesday", |
||||
"Thursday", |
||||
"Friday", |
||||
"Saturday" |
||||
], |
||||
"MONTH": [ |
||||
"January", |
||||
"February", |
||||
"March", |
||||
"April", |
||||
"May", |
||||
"June", |
||||
"July", |
||||
"August", |
||||
"September", |
||||
"October", |
||||
"November", |
||||
"December" |
||||
], |
||||
"SHORTDAY": [ |
||||
"Sun", |
||||
"Mon", |
||||
"Tue", |
||||
"Wed", |
||||
"Thu", |
||||
"Fri", |
||||
"Sat" |
||||
], |
||||
"SHORTMONTH": [ |
||||
"Jan", |
||||
"Feb", |
||||
"Mar", |
||||
"Apr", |
||||
"May", |
||||
"Jun", |
||||
"Jul", |
||||
"Aug", |
||||
"Sep", |
||||
"Oct", |
||||
"Nov", |
||||
"Dec" |
||||
], |
||||
"fullDate": "EEEE, MMMM d, y", |
||||
"longDate": "MMMM d, y", |
||||
"medium": "MMM d, y h:mm:ss a", |
||||
"mediumDate": "MMM d, y", |
||||
"mediumTime": "h:mm:ss a", |
||||
"short": "M/d/yy h:mm a", |
||||
"shortDate": "M/d/yy", |
||||
"shortTime": "h:mm a" |
||||
}, |
||||
"NUMBER_FORMATS": { |
||||
"CURRENCY_SYM": "$", |
||||
"DECIMAL_SEP": ".", |
||||
"GROUP_SEP": ",", |
||||
"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": "(\u00a4", |
||||
"negSuf": ")", |
||||
"posPre": "\u00a4", |
||||
"posSuf": "" |
||||
} |
||||
] |
||||
}, |
||||
"id": "en-bb", |
||||
"pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} |
||||
}); |
||||
}]); |
@ -1,99 +0,0 @@ |
||||
'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": [ |
||||
"AM", |
||||
"PM" |
||||
], |
||||
"DAY": [ |
||||
"Sunday", |
||||
"Monday", |
||||
"Tuesday", |
||||
"Wednesday", |
||||
"Thursday", |
||||
"Friday", |
||||
"Saturday" |
||||
], |
||||
"MONTH": [ |
||||
"January", |
||||
"February", |
||||
"March", |
||||
"April", |
||||
"May", |
||||
"June", |
||||
"July", |
||||
"August", |
||||
"September", |
||||
"October", |
||||
"November", |
||||
"December" |
||||
], |
||||
"SHORTDAY": [ |
||||
"Sun", |
||||
"Mon", |
||||
"Tue", |
||||
"Wed", |
||||
"Thu", |
||||
"Fri", |
||||
"Sat" |
||||
], |
||||
"SHORTMONTH": [ |
||||
"Jan", |
||||
"Feb", |
||||
"Mar", |
||||
"Apr", |
||||
"May", |
||||
"Jun", |
||||
"Jul", |
||||
"Aug", |
||||
"Sep", |
||||
"Oct", |
||||
"Nov", |
||||
"Dec" |
||||
], |
||||
"fullDate": "EEEE d MMMM y", |
||||
"longDate": "d MMM y", |
||||
"medium": "dd MMM y HH:mm:ss", |
||||
"mediumDate": "dd MMM y", |
||||
"mediumTime": "HH:mm:ss", |
||||
"short": "dd/MM/yy HH:mm", |
||||
"shortDate": "dd/MM/yy", |
||||
"shortTime": "HH:mm" |
||||
}, |
||||
"NUMBER_FORMATS": { |
||||
"CURRENCY_SYM": "$", |
||||
"DECIMAL_SEP": ".", |
||||
"GROUP_SEP": ",", |
||||
"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": "(\u00a4", |
||||
"negSuf": ")", |
||||
"posPre": "\u00a4", |
||||
"posSuf": "" |
||||
} |
||||
] |
||||
}, |
||||
"id": "en-be", |
||||
"pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} |
||||
}); |
||||
}]); |
@ -1,99 +0,0 @@ |
||||
'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": [ |
||||
"AM", |
||||
"PM" |
||||
], |
||||
"DAY": [ |
||||
"Sunday", |
||||
"Monday", |
||||
"Tuesday", |
||||
"Wednesday", |
||||
"Thursday", |
||||
"Friday", |
||||
"Saturday" |
||||
], |
||||
"MONTH": [ |
||||
"January", |
||||
"February", |
||||
"March", |
||||
"April", |
||||
"May", |
||||
"June", |
||||
"July", |
||||
"August", |
||||
"September", |
||||
"October", |
||||
"November", |
||||
"December" |
||||
], |
||||
"SHORTDAY": [ |
||||
"Sun", |
||||
"Mon", |
||||
"Tue", |
||||
"Wed", |
||||
"Thu", |
||||
"Fri", |
||||
"Sat" |
||||
], |
||||
"SHORTMONTH": [ |
||||
"Jan", |
||||
"Feb", |
||||
"Mar", |
||||
"Apr", |
||||
"May", |
||||
"Jun", |
||||
"Jul", |
||||
"Aug", |
||||
"Sep", |
||||
"Oct", |
||||
"Nov", |
||||
"Dec" |
||||
], |
||||
"fullDate": "EEEE, MMMM d, y", |
||||
"longDate": "MMMM d, y", |
||||
"medium": "MMM d, y h:mm:ss a", |
||||
"mediumDate": "MMM d, y", |
||||
"mediumTime": "h:mm:ss a", |
||||
"short": "M/d/yy h:mm a", |
||||
"shortDate": "M/d/yy", |
||||
"shortTime": "h:mm a" |
||||
}, |
||||
"NUMBER_FORMATS": { |
||||
"CURRENCY_SYM": "$", |
||||
"DECIMAL_SEP": ".", |
||||
"GROUP_SEP": ",", |
||||
"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": "(\u00a4", |
||||
"negSuf": ")", |
||||
"posPre": "\u00a4", |
||||
"posSuf": "" |
||||
} |
||||
] |
||||
}, |
||||
"id": "en-bm", |
||||
"pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} |
||||
}); |
||||
}]); |
@ -1,99 +0,0 @@ |
||||
'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": [ |
||||
"AM", |
||||
"PM" |
||||
], |
||||
"DAY": [ |
||||
"Sunday", |
||||
"Monday", |
||||
"Tuesday", |
||||
"Wednesday", |
||||
"Thursday", |
||||
"Friday", |
||||
"Saturday" |
||||
], |
||||
"MONTH": [ |
||||
"January", |
||||
"February", |
||||
"March", |
||||
"April", |
||||
"May", |
||||
"June", |
||||
"July", |
||||
"August", |
||||
"September", |
||||
"October", |
||||
"November", |
||||
"December" |
||||
], |
||||
"SHORTDAY": [ |
||||
"Sun", |
||||
"Mon", |
||||
"Tue", |
||||
"Wed", |
||||
"Thu", |
||||
"Fri", |
||||
"Sat" |
||||
], |
||||
"SHORTMONTH": [ |
||||
"Jan", |
||||
"Feb", |
||||
"Mar", |
||||
"Apr", |
||||
"May", |
||||
"Jun", |
||||
"Jul", |
||||
"Aug", |
||||
"Sep", |
||||
"Oct", |
||||
"Nov", |
||||
"Dec" |
||||
], |
||||
"fullDate": "EEEE dd MMMM y", |
||||
"longDate": "dd MMMM y", |
||||
"medium": "MMM d, y h:mm:ss a", |
||||
"mediumDate": "MMM d, y", |
||||
"mediumTime": "h:mm:ss a", |
||||
"short": "dd/MM/yy h:mm a", |
||||
"shortDate": "dd/MM/yy", |
||||
"shortTime": "h:mm a" |
||||
}, |
||||
"NUMBER_FORMATS": { |
||||
"CURRENCY_SYM": "$", |
||||
"DECIMAL_SEP": ".", |
||||
"GROUP_SEP": ",", |
||||
"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": "(\u00a4", |
||||
"negSuf": ")", |
||||
"posPre": "\u00a4", |
||||
"posSuf": "" |
||||
} |
||||
] |
||||
}, |
||||
"id": "en-bw", |
||||
"pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} |
||||
}); |
||||
}]); |
@ -1,99 +0,0 @@ |
||||
'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": [ |
||||
"AM", |
||||
"PM" |
||||
], |
||||
"DAY": [ |
||||
"Sunday", |
||||
"Monday", |
||||
"Tuesday", |
||||
"Wednesday", |
||||
"Thursday", |
||||
"Friday", |
||||
"Saturday" |
||||
], |
||||
"MONTH": [ |
||||
"January", |
||||
"February", |
||||
"March", |
||||
"April", |
||||
"May", |
||||
"June", |
||||
"July", |
||||
"August", |
||||
"September", |
||||
"October", |
||||
"November", |
||||
"December" |
||||
], |
||||
"SHORTDAY": [ |
||||
"Sun", |
||||
"Mon", |
||||
"Tue", |
||||
"Wed", |
||||
"Thu", |
||||
"Fri", |
||||
"Sat" |
||||
], |
||||
"SHORTMONTH": [ |
||||
"Jan", |
||||
"Feb", |
||||
"Mar", |
||||
"Apr", |
||||
"May", |
||||
"Jun", |
||||
"Jul", |
||||
"Aug", |
||||
"Sep", |
||||
"Oct", |
||||
"Nov", |
||||
"Dec" |
||||
], |
||||
"fullDate": "dd MMMM y", |
||||
"longDate": "dd MMMM y", |
||||
"medium": "dd-MMM-y HH:mm:ss", |
||||
"mediumDate": "dd-MMM-y", |
||||
"mediumTime": "HH:mm:ss", |
||||
"short": "dd/MM/yy HH:mm", |
||||
"shortDate": "dd/MM/yy", |
||||
"shortTime": "HH:mm" |
||||
}, |
||||
"NUMBER_FORMATS": { |
||||
"CURRENCY_SYM": "$", |
||||
"DECIMAL_SEP": ".", |
||||
"GROUP_SEP": ",", |
||||
"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": "(\u00a4", |
||||
"negSuf": ")", |
||||
"posPre": "\u00a4", |
||||
"posSuf": "" |
||||
} |
||||
] |
||||
}, |
||||
"id": "en-bz", |
||||
"pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} |
||||
}); |
||||
}]); |
@ -1,99 +0,0 @@ |
||||
'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": [ |
||||
"AM", |
||||
"PM" |
||||
], |
||||
"DAY": [ |
||||
"Sunday", |
||||
"Monday", |
||||
"Tuesday", |
||||
"Wednesday", |
||||
"Thursday", |
||||
"Friday", |
||||
"Saturday" |
||||
], |
||||
"MONTH": [ |
||||
"January", |
||||
"February", |
||||
"March", |
||||
"April", |
||||
"May", |
||||
"June", |
||||
"July", |
||||
"August", |
||||
"September", |
||||
"October", |
||||
"November", |
||||
"December" |
||||
], |
||||
"SHORTDAY": [ |
||||
"Sun", |
||||
"Mon", |
||||
"Tue", |
||||
"Wed", |
||||
"Thu", |
||||
"Fri", |
||||
"Sat" |
||||
], |
||||
"SHORTMONTH": [ |
||||
"Jan", |
||||
"Feb", |
||||
"Mar", |
||||
"Apr", |
||||
"May", |
||||
"Jun", |
||||
"Jul", |
||||
"Aug", |
||||
"Sep", |
||||
"Oct", |
||||
"Nov", |
||||
"Dec" |
||||
], |
||||
"fullDate": "EEEE, d MMMM, y", |
||||
"longDate": "d MMMM, y", |
||||
"medium": "yyyy-MM-dd h:mm:ss a", |
||||
"mediumDate": "yyyy-MM-dd", |
||||
"mediumTime": "h:mm:ss a", |
||||
"short": "yy-MM-dd h:mm a", |
||||
"shortDate": "yy-MM-dd", |
||||
"shortTime": "h:mm a" |
||||
}, |
||||
"NUMBER_FORMATS": { |
||||
"CURRENCY_SYM": "$", |
||||
"DECIMAL_SEP": ".", |
||||
"GROUP_SEP": ",", |
||||
"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": "(\u00a4", |
||||
"negSuf": ")", |
||||
"posPre": "\u00a4", |
||||
"posSuf": "" |
||||
} |
||||
] |
||||
}, |
||||
"id": "en-ca", |
||||
"pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} |
||||
}); |
||||
}]); |
@ -1,99 +0,0 @@ |
||||
'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": [ |
||||
"\ud801\udc08\ud801\udc23", |
||||
"\ud801\udc11\ud801\udc23" |
||||
], |
||||
"DAY": [ |
||||
"\ud801\udc1d\ud801\udc32\ud801\udc4c\ud801\udc3c\ud801\udc29", |
||||
"\ud801\udc23\ud801\udc32\ud801\udc4c\ud801\udc3c\ud801\udc29", |
||||
"\ud801\udc13\ud801\udc2d\ud801\udc46\ud801\udc3c\ud801\udc29", |
||||
"\ud801\udc0e\ud801\udc2f\ud801\udc4c\ud801\udc46\ud801\udc3c\ud801\udc29", |
||||
"\ud801\udc1b\ud801\udc32\ud801\udc49\ud801\udc46\ud801\udc3c\ud801\udc29", |
||||
"\ud801\udc19\ud801\udc49\ud801\udc34\ud801\udc3c\ud801\udc29", |
||||
"\ud801\udc1d\ud801\udc30\ud801\udc3b\ud801\udc32\ud801\udc49\ud801\udc3c\ud801\udc29" |
||||
], |
||||
"MONTH": [ |
||||
"\ud801\udc16\ud801\udc30\ud801\udc4c\ud801\udc37\ud801\udc2d\ud801\udc2f\ud801\udc49\ud801\udc28", |
||||
"\ud801\udc19\ud801\udc2f\ud801\udc3a\ud801\udc49\ud801\udc2d\ud801\udc2f\ud801\udc49\ud801\udc28", |
||||
"\ud801\udc23\ud801\udc2a\ud801\udc49\ud801\udc3d", |
||||
"\ud801\udc01\ud801\udc39\ud801\udc49\ud801\udc2e\ud801\udc4a", |
||||
"\ud801\udc23\ud801\udc29", |
||||
"\ud801\udc16\ud801\udc2d\ud801\udc4c", |
||||
"\ud801\udc16\ud801\udc2d\ud801\udc4a\ud801\udc34", |
||||
"\ud801\udc02\ud801\udc40\ud801\udc32\ud801\udc45\ud801\udc3b", |
||||
"\ud801\udc1d\ud801\udc2f\ud801\udc39\ud801\udc3b\ud801\udc2f\ud801\udc4b\ud801\udc3a\ud801\udc32\ud801\udc49", |
||||
"\ud801\udc09\ud801\udc3f\ud801\udc3b\ud801\udc2c\ud801\udc3a\ud801\udc32\ud801\udc49", |
||||
"\ud801\udc24\ud801\udc2c\ud801\udc42\ud801\udc2f\ud801\udc4b\ud801\udc3a\ud801\udc32\ud801\udc49", |
||||
"\ud801\udc14\ud801\udc28\ud801\udc45\ud801\udc2f\ud801\udc4b\ud801\udc3a\ud801\udc32\ud801\udc49" |
||||
], |
||||
"SHORTDAY": [ |
||||
"\ud801\udc1d\ud801\udc32\ud801\udc4c", |
||||
"\ud801\udc23\ud801\udc32\ud801\udc4c", |
||||
"\ud801\udc13\ud801\udc2d\ud801\udc46", |
||||
"\ud801\udc0e\ud801\udc2f\ud801\udc4c", |
||||
"\ud801\udc1b\ud801\udc32\ud801\udc49", |
||||
"\ud801\udc19\ud801\udc49\ud801\udc34", |
||||
"\ud801\udc1d\ud801\udc30\ud801\udc3b" |
||||
], |
||||
"SHORTMONTH": [ |
||||
"\ud801\udc16\ud801\udc30\ud801\udc4c", |
||||
"\ud801\udc19\ud801\udc2f\ud801\udc3a", |
||||
"\ud801\udc23\ud801\udc2a\ud801\udc49", |
||||
"\ud801\udc01\ud801\udc39\ud801\udc49", |
||||
"\ud801\udc23\ud801\udc29", |
||||
"\ud801\udc16\ud801\udc2d\ud801\udc4c", |
||||
"\ud801\udc16\ud801\udc2d\ud801\udc4a", |
||||
"\ud801\udc02\ud801\udc40", |
||||
"\ud801\udc1d\ud801\udc2f\ud801\udc39", |
||||
"\ud801\udc09\ud801\udc3f\ud801\udc3b", |
||||
"\ud801\udc24\ud801\udc2c\ud801\udc42", |
||||
"\ud801\udc14\ud801\udc28\ud801\udc45" |
||||
], |
||||
"fullDate": "EEEE, MMMM d, y", |
||||
"longDate": "MMMM d, y", |
||||
"medium": "MMM d, y h:mm:ss a", |
||||
"mediumDate": "MMM d, y", |
||||
"mediumTime": "h:mm:ss a", |
||||
"short": "M/d/yy h:mm a", |
||||
"shortDate": "M/d/yy", |
||||
"shortTime": "h:mm a" |
||||
}, |
||||
"NUMBER_FORMATS": { |
||||
"CURRENCY_SYM": "$", |
||||
"DECIMAL_SEP": ".", |
||||
"GROUP_SEP": ",", |
||||
"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": "(\u00a4", |
||||
"negSuf": ")", |
||||
"posPre": "\u00a4", |
||||
"posSuf": "" |
||||
} |
||||
] |
||||
}, |
||||
"id": "en-dsrt-us", |
||||
"pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} |
||||
}); |
||||
}]); |
@ -1,99 +0,0 @@ |
||||
'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": [ |
||||
"\ud801\udc08\ud801\udc23", |
||||
"\ud801\udc11\ud801\udc23" |
||||
], |
||||
"DAY": [ |
||||
"\ud801\udc1d\ud801\udc32\ud801\udc4c\ud801\udc3c\ud801\udc29", |
||||
"\ud801\udc23\ud801\udc32\ud801\udc4c\ud801\udc3c\ud801\udc29", |
||||
"\ud801\udc13\ud801\udc2d\ud801\udc46\ud801\udc3c\ud801\udc29", |
||||
"\ud801\udc0e\ud801\udc2f\ud801\udc4c\ud801\udc46\ud801\udc3c\ud801\udc29", |
||||
"\ud801\udc1b\ud801\udc32\ud801\udc49\ud801\udc46\ud801\udc3c\ud801\udc29", |
||||
"\ud801\udc19\ud801\udc49\ud801\udc34\ud801\udc3c\ud801\udc29", |
||||
"\ud801\udc1d\ud801\udc30\ud801\udc3b\ud801\udc32\ud801\udc49\ud801\udc3c\ud801\udc29" |
||||
], |
||||
"MONTH": [ |
||||
"\ud801\udc16\ud801\udc30\ud801\udc4c\ud801\udc37\ud801\udc2d\ud801\udc2f\ud801\udc49\ud801\udc28", |
||||
"\ud801\udc19\ud801\udc2f\ud801\udc3a\ud801\udc49\ud801\udc2d\ud801\udc2f\ud801\udc49\ud801\udc28", |
||||
"\ud801\udc23\ud801\udc2a\ud801\udc49\ud801\udc3d", |
||||
"\ud801\udc01\ud801\udc39\ud801\udc49\ud801\udc2e\ud801\udc4a", |
||||
"\ud801\udc23\ud801\udc29", |
||||
"\ud801\udc16\ud801\udc2d\ud801\udc4c", |
||||
"\ud801\udc16\ud801\udc2d\ud801\udc4a\ud801\udc34", |
||||
"\ud801\udc02\ud801\udc40\ud801\udc32\ud801\udc45\ud801\udc3b", |
||||
"\ud801\udc1d\ud801\udc2f\ud801\udc39\ud801\udc3b\ud801\udc2f\ud801\udc4b\ud801\udc3a\ud801\udc32\ud801\udc49", |
||||
"\ud801\udc09\ud801\udc3f\ud801\udc3b\ud801\udc2c\ud801\udc3a\ud801\udc32\ud801\udc49", |
||||
"\ud801\udc24\ud801\udc2c\ud801\udc42\ud801\udc2f\ud801\udc4b\ud801\udc3a\ud801\udc32\ud801\udc49", |
||||
"\ud801\udc14\ud801\udc28\ud801\udc45\ud801\udc2f\ud801\udc4b\ud801\udc3a\ud801\udc32\ud801\udc49" |
||||
], |
||||
"SHORTDAY": [ |
||||
"\ud801\udc1d\ud801\udc32\ud801\udc4c", |
||||
"\ud801\udc23\ud801\udc32\ud801\udc4c", |
||||
"\ud801\udc13\ud801\udc2d\ud801\udc46", |
||||
"\ud801\udc0e\ud801\udc2f\ud801\udc4c", |
||||
"\ud801\udc1b\ud801\udc32\ud801\udc49", |
||||
"\ud801\udc19\ud801\udc49\ud801\udc34", |
||||
"\ud801\udc1d\ud801\udc30\ud801\udc3b" |
||||
], |
||||
"SHORTMONTH": [ |
||||
"\ud801\udc16\ud801\udc30\ud801\udc4c", |
||||
"\ud801\udc19\ud801\udc2f\ud801\udc3a", |
||||
"\ud801\udc23\ud801\udc2a\ud801\udc49", |
||||
"\ud801\udc01\ud801\udc39\ud801\udc49", |
||||
"\ud801\udc23\ud801\udc29", |
||||
"\ud801\udc16\ud801\udc2d\ud801\udc4c", |
||||
"\ud801\udc16\ud801\udc2d\ud801\udc4a", |
||||
"\ud801\udc02\ud801\udc40", |
||||
"\ud801\udc1d\ud801\udc2f\ud801\udc39", |
||||
"\ud801\udc09\ud801\udc3f\ud801\udc3b", |
||||
"\ud801\udc24\ud801\udc2c\ud801\udc42", |
||||
"\ud801\udc14\ud801\udc28\ud801\udc45" |
||||
], |
||||
"fullDate": "EEEE, MMMM d, y", |
||||
"longDate": "MMMM d, y", |
||||
"medium": "MMM d, y h:mm:ss a", |
||||
"mediumDate": "MMM d, y", |
||||
"mediumTime": "h:mm:ss a", |
||||
"short": "M/d/yy h:mm a", |
||||
"shortDate": "M/d/yy", |
||||
"shortTime": "h:mm a" |
||||
}, |
||||
"NUMBER_FORMATS": { |
||||
"CURRENCY_SYM": "$", |
||||
"DECIMAL_SEP": ".", |
||||
"GROUP_SEP": ",", |
||||
"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": "(\u00a4", |
||||
"negSuf": ")", |
||||
"posPre": "\u00a4", |
||||
"posSuf": "" |
||||
} |
||||
] |
||||
}, |
||||
"id": "en-dsrt", |
||||
"pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} |
||||
}); |
||||
}]); |
@ -1,99 +0,0 @@ |
||||
'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": [ |
||||
"AM", |
||||
"PM" |
||||
], |
||||
"DAY": [ |
||||
"Sunday", |
||||
"Monday", |
||||
"Tuesday", |
||||
"Wednesday", |
||||
"Thursday", |
||||
"Friday", |
||||
"Saturday" |
||||
], |
||||
"MONTH": [ |
||||
"January", |
||||
"February", |
||||
"March", |
||||
"April", |
||||
"May", |
||||
"June", |
||||
"July", |
||||
"August", |
||||
"September", |
||||
"October", |
||||
"November", |
||||
"December" |
||||
], |
||||
"SHORTDAY": [ |
||||
"Sun", |
||||
"Mon", |
||||
"Tue", |
||||
"Wed", |
||||
"Thu", |
||||
"Fri", |
||||
"Sat" |
||||
], |
||||
"SHORTMONTH": [ |
||||
"Jan", |
||||
"Feb", |
||||
"Mar", |
||||
"Apr", |
||||
"May", |
||||
"Jun", |
||||
"Jul", |
||||
"Aug", |
||||
"Sep", |
||||
"Oct", |
||||
"Nov", |
||||
"Dec" |
||||
], |
||||
"fullDate": "EEEE, MMMM d, y", |
||||
"longDate": "MMMM d, y", |
||||
"medium": "MMM d, y h:mm:ss a", |
||||
"mediumDate": "MMM d, y", |
||||
"mediumTime": "h:mm:ss a", |
||||
"short": "M/d/yy h:mm a", |
||||
"shortDate": "M/d/yy", |
||||
"shortTime": "h:mm a" |
||||
}, |
||||
"NUMBER_FORMATS": { |
||||
"CURRENCY_SYM": "$", |
||||
"DECIMAL_SEP": ".", |
||||
"GROUP_SEP": ",", |
||||
"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": "(\u00a4", |
||||
"negSuf": ")", |
||||
"posPre": "\u00a4", |
||||
"posSuf": "" |
||||
} |
||||
] |
||||
}, |
||||
"id": "en-fm", |
||||
"pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} |
||||
}); |
||||
}]); |
@ -1,99 +0,0 @@ |
||||
'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": [ |
||||
"AM", |
||||
"PM" |
||||
], |
||||
"DAY": [ |
||||
"Sunday", |
||||
"Monday", |
||||
"Tuesday", |
||||
"Wednesday", |
||||
"Thursday", |
||||
"Friday", |
||||
"Saturday" |
||||
], |
||||
"MONTH": [ |
||||
"January", |
||||
"February", |
||||
"March", |
||||
"April", |
||||
"May", |
||||
"June", |
||||
"July", |
||||
"August", |
||||
"September", |
||||
"October", |
||||
"November", |
||||
"December" |
||||
], |
||||
"SHORTDAY": [ |
||||
"Sun", |
||||
"Mon", |
||||
"Tue", |
||||
"Wed", |
||||
"Thu", |
||||
"Fri", |
||||
"Sat" |
||||
], |
||||
"SHORTMONTH": [ |
||||
"Jan", |
||||
"Feb", |
||||
"Mar", |
||||
"Apr", |
||||
"May", |
||||
"Jun", |
||||
"Jul", |
||||
"Aug", |
||||
"Sep", |
||||
"Oct", |
||||
"Nov", |
||||
"Dec" |
||||
], |
||||
"fullDate": "EEEE, d MMMM y", |
||||
"longDate": "d MMMM y", |
||||
"medium": "d MMM y HH:mm:ss", |
||||
"mediumDate": "d MMM y", |
||||
"mediumTime": "HH:mm:ss", |
||||
"short": "dd/MM/yyyy HH:mm", |
||||
"shortDate": "dd/MM/yyyy", |
||||
"shortTime": "HH:mm" |
||||
}, |
||||
"NUMBER_FORMATS": { |
||||
"CURRENCY_SYM": "\u00a3", |
||||
"DECIMAL_SEP": ".", |
||||
"GROUP_SEP": ",", |
||||
"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": "\u00a4-", |
||||
"negSuf": "", |
||||
"posPre": "\u00a4", |
||||
"posSuf": "" |
||||
} |
||||
] |
||||
}, |
||||
"id": "en-gb", |
||||
"pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} |
||||
}); |
||||
}]); |
@ -1,99 +0,0 @@ |
||||
'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": [ |
||||
"AM", |
||||
"PM" |
||||
], |
||||
"DAY": [ |
||||
"Sunday", |
||||
"Monday", |
||||
"Tuesday", |
||||
"Wednesday", |
||||
"Thursday", |
||||
"Friday", |
||||
"Saturday" |
||||
], |
||||
"MONTH": [ |
||||
"January", |
||||
"February", |
||||
"March", |
||||
"April", |
||||
"May", |
||||
"June", |
||||
"July", |
||||
"August", |
||||
"September", |
||||
"October", |
||||
"November", |
||||
"December" |
||||
], |
||||
"SHORTDAY": [ |
||||
"Sun", |
||||
"Mon", |
||||
"Tue", |
||||
"Wed", |
||||
"Thu", |
||||
"Fri", |
||||
"Sat" |
||||
], |
||||
"SHORTMONTH": [ |
||||
"Jan", |
||||
"Feb", |
||||
"Mar", |
||||
"Apr", |
||||
"May", |
||||
"Jun", |
||||
"Jul", |
||||
"Aug", |
||||
"Sep", |
||||
"Oct", |
||||
"Nov", |
||||
"Dec" |
||||
], |
||||
"fullDate": "EEEE, MMMM d, y", |
||||
"longDate": "MMMM d, y", |
||||
"medium": "MMM d, y h:mm:ss a", |
||||
"mediumDate": "MMM d, y", |
||||
"mediumTime": "h:mm:ss a", |
||||
"short": "M/d/yy h:mm a", |
||||
"shortDate": "M/d/yy", |
||||
"shortTime": "h:mm a" |
||||
}, |
||||
"NUMBER_FORMATS": { |
||||
"CURRENCY_SYM": "$", |
||||
"DECIMAL_SEP": ".", |
||||
"GROUP_SEP": ",", |
||||
"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": "(\u00a4", |
||||
"negSuf": ")", |
||||
"posPre": "\u00a4", |
||||
"posSuf": "" |
||||
} |
||||
] |
||||
}, |
||||
"id": "en-gu", |
||||
"pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} |
||||
}); |
||||
}]); |
@ -1,99 +0,0 @@ |
||||
'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": [ |
||||
"AM", |
||||
"PM" |
||||
], |
||||
"DAY": [ |
||||
"Sunday", |
||||
"Monday", |
||||
"Tuesday", |
||||
"Wednesday", |
||||
"Thursday", |
||||
"Friday", |
||||
"Saturday" |
||||
], |
||||
"MONTH": [ |
||||
"January", |
||||
"February", |
||||
"March", |
||||
"April", |
||||
"May", |
||||
"June", |
||||
"July", |
||||
"August", |
||||
"September", |
||||
"October", |
||||
"November", |
||||
"December" |
||||
], |
||||
"SHORTDAY": [ |
||||
"Sun", |
||||
"Mon", |
||||
"Tue", |
||||
"Wed", |
||||
"Thu", |
||||
"Fri", |
||||
"Sat" |
||||
], |
||||
"SHORTMONTH": [ |
||||
"Jan", |
||||
"Feb", |
||||
"Mar", |
||||
"Apr", |
||||
"May", |
||||
"Jun", |
||||
"Jul", |
||||
"Aug", |
||||
"Sep", |
||||
"Oct", |
||||
"Nov", |
||||
"Dec" |
||||
], |
||||
"fullDate": "EEEE, MMMM d, y", |
||||
"longDate": "MMMM d, y", |
||||
"medium": "MMM d, y h:mm:ss a", |
||||
"mediumDate": "MMM d, y", |
||||
"mediumTime": "h:mm:ss a", |
||||
"short": "M/d/yy h:mm a", |
||||
"shortDate": "M/d/yy", |
||||
"shortTime": "h:mm a" |
||||
}, |
||||
"NUMBER_FORMATS": { |
||||
"CURRENCY_SYM": "$", |
||||
"DECIMAL_SEP": ".", |
||||
"GROUP_SEP": ",", |
||||
"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": "(\u00a4", |
||||
"negSuf": ")", |
||||
"posPre": "\u00a4", |
||||
"posSuf": "" |
||||
} |
||||
] |
||||
}, |
||||
"id": "en-gy", |
||||
"pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} |
||||
}); |
||||
}]); |
@ -1,99 +0,0 @@ |
||||
'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": [ |
||||
"AM", |
||||
"PM" |
||||
], |
||||
"DAY": [ |
||||
"Sunday", |
||||
"Monday", |
||||
"Tuesday", |
||||
"Wednesday", |
||||
"Thursday", |
||||
"Friday", |
||||
"Saturday" |
||||
], |
||||
"MONTH": [ |
||||
"January", |
||||
"February", |
||||
"March", |
||||
"April", |
||||
"May", |
||||
"June", |
||||
"July", |
||||
"August", |
||||
"September", |
||||
"October", |
||||
"November", |
||||
"December" |
||||
], |
||||
"SHORTDAY": [ |
||||
"Sun", |
||||
"Mon", |
||||
"Tue", |
||||
"Wed", |
||||
"Thu", |
||||
"Fri", |
||||
"Sat" |
||||
], |
||||
"SHORTMONTH": [ |
||||
"Jan", |
||||
"Feb", |
||||
"Mar", |
||||
"Apr", |
||||
"May", |
||||
"Jun", |
||||
"Jul", |
||||
"Aug", |
||||
"Sep", |
||||
"Oct", |
||||
"Nov", |
||||
"Dec" |
||||
], |
||||
"fullDate": "EEEE, d MMMM, y", |
||||
"longDate": "d MMMM, y", |
||||
"medium": "d MMM, y h:mm:ss a", |
||||
"mediumDate": "d MMM, y", |
||||
"mediumTime": "h:mm:ss a", |
||||
"short": "d/M/yy h:mm a", |
||||
"shortDate": "d/M/yy", |
||||
"shortTime": "h:mm a" |
||||
}, |
||||
"NUMBER_FORMATS": { |
||||
"CURRENCY_SYM": "$", |
||||
"DECIMAL_SEP": ".", |
||||
"GROUP_SEP": ",", |
||||
"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": "(\u00a4", |
||||
"negSuf": ")", |
||||
"posPre": "\u00a4", |
||||
"posSuf": "" |
||||
} |
||||
] |
||||
}, |
||||
"id": "en-hk", |
||||
"pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} |
||||
}); |
||||
}]); |
@ -1,99 +0,0 @@ |
||||
'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": [ |
||||
"a.m.", |
||||
"p.m." |
||||
], |
||||
"DAY": [ |
||||
"Sunday", |
||||
"Monday", |
||||
"Tuesday", |
||||
"Wednesday", |
||||
"Thursday", |
||||
"Friday", |
||||
"Saturday" |
||||
], |
||||
"MONTH": [ |
||||
"January", |
||||
"February", |
||||
"March", |
||||
"April", |
||||
"May", |
||||
"June", |
||||
"July", |
||||
"August", |
||||
"September", |
||||
"October", |
||||
"November", |
||||
"December" |
||||
], |
||||
"SHORTDAY": [ |
||||
"Sun", |
||||
"Mon", |
||||
"Tue", |
||||
"Wed", |
||||
"Thu", |
||||
"Fri", |
||||
"Sat" |
||||
], |
||||
"SHORTMONTH": [ |
||||
"Jan", |
||||
"Feb", |
||||
"Mar", |
||||
"Apr", |
||||
"May", |
||||
"Jun", |
||||
"Jul", |
||||
"Aug", |
||||
"Sep", |
||||
"Oct", |
||||
"Nov", |
||||
"Dec" |
||||
], |
||||
"fullDate": "EEEE d MMMM y", |
||||
"longDate": "d MMMM y", |
||||
"medium": "d MMM y h:mm:ss a", |
||||
"mediumDate": "d MMM y", |
||||
"mediumTime": "h:mm:ss a", |
||||
"short": "dd/MM/yyyy h:mm a", |
||||
"shortDate": "dd/MM/yyyy", |
||||
"shortTime": "h:mm a" |
||||
}, |
||||
"NUMBER_FORMATS": { |
||||
"CURRENCY_SYM": "\u20ac", |
||||
"DECIMAL_SEP": ".", |
||||
"GROUP_SEP": ",", |
||||
"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": "(\u00a4", |
||||
"negSuf": ")", |
||||
"posPre": "\u00a4", |
||||
"posSuf": "" |
||||
} |
||||
] |
||||
}, |
||||
"id": "en-ie", |
||||
"pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} |
||||
}); |
||||
}]); |
@ -1,99 +0,0 @@ |
||||
'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": [ |
||||
"AM", |
||||
"PM" |
||||
], |
||||
"DAY": [ |
||||
"Sunday", |
||||
"Monday", |
||||
"Tuesday", |
||||
"Wednesday", |
||||
"Thursday", |
||||
"Friday", |
||||
"Saturday" |
||||
], |
||||
"MONTH": [ |
||||
"January", |
||||
"February", |
||||
"March", |
||||
"April", |
||||
"May", |
||||
"June", |
||||
"July", |
||||
"August", |
||||
"September", |
||||
"October", |
||||
"November", |
||||
"December" |
||||
], |
||||
"SHORTDAY": [ |
||||
"Sun", |
||||
"Mon", |
||||
"Tue", |
||||
"Wed", |
||||
"Thu", |
||||
"Fri", |
||||
"Sat" |
||||
], |
||||
"SHORTMONTH": [ |
||||
"Jan", |
||||
"Feb", |
||||
"Mar", |
||||
"Apr", |
||||
"May", |
||||
"Jun", |
||||
"Jul", |
||||
"Aug", |
||||
"Sep", |
||||
"Oct", |
||||
"Nov", |
||||
"Dec" |
||||
], |
||||
"fullDate": "EEEE d MMMM y", |
||||
"longDate": "d MMMM y", |
||||
"medium": "dd-MMM-y h:mm:ss a", |
||||
"mediumDate": "dd-MMM-y", |
||||
"mediumTime": "h:mm:ss a", |
||||
"short": "dd/MM/yy h:mm a", |
||||
"shortDate": "dd/MM/yy", |
||||
"shortTime": "h:mm a" |
||||
}, |
||||
"NUMBER_FORMATS": { |
||||
"CURRENCY_SYM": "\u20b9", |
||||
"DECIMAL_SEP": ".", |
||||
"GROUP_SEP": ",", |
||||
"PATTERNS": [ |
||||
{ |
||||
"gSize": 2, |
||||
"lgSize": 3, |
||||
"macFrac": 0, |
||||
"maxFrac": 3, |
||||
"minFrac": 0, |
||||
"minInt": 1, |
||||
"negPre": "-", |
||||
"negSuf": "", |
||||
"posPre": "", |
||||
"posSuf": "" |
||||
}, |
||||
{ |
||||
"gSize": 2, |
||||
"lgSize": 3, |
||||
"macFrac": 0, |
||||
"maxFrac": 2, |
||||
"minFrac": 2, |
||||
"minInt": 1, |
||||
"negPre": "\u00a4\u00a0-", |
||||
"negSuf": "", |
||||
"posPre": "\u00a4\u00a0", |
||||
"posSuf": "" |
||||
} |
||||
] |
||||
}, |
||||
"id": "en-in", |
||||
"pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} |
||||
}); |
||||
}]); |
@ -1,99 +0,0 @@ |
||||
'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": [ |
||||
"AM", |
||||
"PM" |
||||
], |
||||
"DAY": [ |
||||
"Sunday", |
||||
"Monday", |
||||
"Tuesday", |
||||
"Wednesday", |
||||
"Thursday", |
||||
"Friday", |
||||
"Saturday" |
||||
], |
||||
"MONTH": [ |
||||
"January", |
||||
"February", |
||||
"March", |
||||
"April", |
||||
"May", |
||||
"June", |
||||
"July", |
||||
"August", |
||||
"September", |
||||
"October", |
||||
"November", |
||||
"December" |
||||
], |
||||
"SHORTDAY": [ |
||||
"Sun", |
||||
"Mon", |
||||
"Tue", |
||||
"Wed", |
||||
"Thu", |
||||
"Fri", |
||||
"Sat" |
||||
], |
||||
"SHORTMONTH": [ |
||||
"Jan", |
||||
"Feb", |
||||
"Mar", |
||||
"Apr", |
||||
"May", |
||||
"Jun", |
||||
"Jul", |
||||
"Aug", |
||||
"Sep", |
||||
"Oct", |
||||
"Nov", |
||||
"Dec" |
||||
], |
||||
"fullDate": "EEEE, y MMMM dd", |
||||
"longDate": "y MMMM d", |
||||
"medium": "y MMM d HH:mm:ss", |
||||
"mediumDate": "y MMM d", |
||||
"mediumTime": "HH:mm:ss", |
||||
"short": "yyyy-MM-dd HH:mm", |
||||
"shortDate": "yyyy-MM-dd", |
||||
"shortTime": "HH:mm" |
||||
}, |
||||
"NUMBER_FORMATS": { |
||||
"CURRENCY_SYM": "$", |
||||
"DECIMAL_SEP": ".", |
||||
"GROUP_SEP": ",", |
||||
"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": "(\u00a4", |
||||
"negSuf": ")", |
||||
"posPre": "\u00a4", |
||||
"posSuf": "" |
||||
} |
||||
] |
||||
}, |
||||
"id": "en-iso", |
||||
"pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} |
||||
}); |
||||
}]); |
@ -1,99 +0,0 @@ |
||||
'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": [ |
||||
"AM", |
||||
"PM" |
||||
], |
||||
"DAY": [ |
||||
"Sunday", |
||||
"Monday", |
||||
"Tuesday", |
||||
"Wednesday", |
||||
"Thursday", |
||||
"Friday", |
||||
"Saturday" |
||||
], |
||||
"MONTH": [ |
||||
"January", |
||||
"February", |
||||
"March", |
||||
"April", |
||||
"May", |
||||
"June", |
||||
"July", |
||||
"August", |
||||
"September", |
||||
"October", |
||||
"November", |
||||
"December" |
||||
], |
||||
"SHORTDAY": [ |
||||
"Sun", |
||||
"Mon", |
||||
"Tue", |
||||
"Wed", |
||||
"Thu", |
||||
"Fri", |
||||
"Sat" |
||||
], |
||||
"SHORTMONTH": [ |
||||
"Jan", |
||||
"Feb", |
||||
"Mar", |
||||
"Apr", |
||||
"May", |
||||
"Jun", |
||||
"Jul", |
||||
"Aug", |
||||
"Sep", |
||||
"Oct", |
||||
"Nov", |
||||
"Dec" |
||||
], |
||||
"fullDate": "EEEE, MMMM d, y", |
||||
"longDate": "MMMM d, y", |
||||
"medium": "MMM d, y h:mm:ss a", |
||||
"mediumDate": "MMM d, y", |
||||
"mediumTime": "h:mm:ss a", |
||||
"short": "d/M/yy h:mm a", |
||||
"shortDate": "d/M/yy", |
||||
"shortTime": "h:mm a" |
||||
}, |
||||
"NUMBER_FORMATS": { |
||||
"CURRENCY_SYM": "$", |
||||
"DECIMAL_SEP": ".", |
||||
"GROUP_SEP": ",", |
||||
"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": "(\u00a4", |
||||
"negSuf": ")", |
||||
"posPre": "\u00a4", |
||||
"posSuf": "" |
||||
} |
||||
] |
||||
}, |
||||
"id": "en-jm", |
||||
"pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} |
||||
}); |
||||
}]); |
@ -1,99 +0,0 @@ |
||||
'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": [ |
||||
"AM", |
||||
"PM" |
||||
], |
||||
"DAY": [ |
||||
"Sunday", |
||||
"Monday", |
||||
"Tuesday", |
||||
"Wednesday", |
||||
"Thursday", |
||||
"Friday", |
||||
"Saturday" |
||||
], |
||||
"MONTH": [ |
||||
"January", |
||||
"February", |
||||
"March", |
||||
"April", |
||||
"May", |
||||
"June", |
||||
"July", |
||||
"August", |
||||
"September", |
||||
"October", |
||||
"November", |
||||
"December" |
||||
], |
||||
"SHORTDAY": [ |
||||
"Sun", |
||||
"Mon", |
||||
"Tue", |
||||
"Wed", |
||||
"Thu", |
||||
"Fri", |
||||
"Sat" |
||||
], |
||||
"SHORTMONTH": [ |
||||
"Jan", |
||||
"Feb", |
||||
"Mar", |
||||
"Apr", |
||||
"May", |
||||
"Jun", |
||||
"Jul", |
||||
"Aug", |
||||
"Sep", |
||||
"Oct", |
||||
"Nov", |
||||
"Dec" |
||||
], |
||||
"fullDate": "EEEE, MMMM d, y", |
||||
"longDate": "MMMM d, y", |
||||
"medium": "MMM d, y h:mm:ss a", |
||||
"mediumDate": "MMM d, y", |
||||
"mediumTime": "h:mm:ss a", |
||||
"short": "M/d/yy h:mm a", |
||||
"shortDate": "M/d/yy", |
||||
"shortTime": "h:mm a" |
||||
}, |
||||
"NUMBER_FORMATS": { |
||||
"CURRENCY_SYM": "$", |
||||
"DECIMAL_SEP": ".", |
||||
"GROUP_SEP": ",", |
||||
"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": "(\u00a4", |
||||
"negSuf": ")", |
||||
"posPre": "\u00a4", |
||||
"posSuf": "" |
||||
} |
||||
] |
||||
}, |
||||
"id": "en-mh", |
||||
"pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} |
||||
}); |
||||
}]); |
@ -1,99 +0,0 @@ |
||||
'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": [ |
||||
"AM", |
||||
"PM" |
||||
], |
||||
"DAY": [ |
||||
"Sunday", |
||||
"Monday", |
||||
"Tuesday", |
||||
"Wednesday", |
||||
"Thursday", |
||||
"Friday", |
||||
"Saturday" |
||||
], |
||||
"MONTH": [ |
||||
"January", |
||||
"February", |
||||
"March", |
||||
"April", |
||||
"May", |
||||
"June", |
||||
"July", |
||||
"August", |
||||
"September", |
||||
"October", |
||||
"November", |
||||
"December" |
||||
], |
||||
"SHORTDAY": [ |
||||
"Sun", |
||||
"Mon", |
||||
"Tue", |
||||
"Wed", |
||||
"Thu", |
||||
"Fri", |
||||
"Sat" |
||||
], |
||||
"SHORTMONTH": [ |
||||
"Jan", |
||||
"Feb", |
||||
"Mar", |
||||
"Apr", |
||||
"May", |
||||
"Jun", |
||||
"Jul", |
||||
"Aug", |
||||
"Sep", |
||||
"Oct", |
||||
"Nov", |
||||
"Dec" |
||||
], |
||||
"fullDate": "EEEE, MMMM d, y", |
||||
"longDate": "MMMM d, y", |
||||
"medium": "MMM d, y h:mm:ss a", |
||||
"mediumDate": "MMM d, y", |
||||
"mediumTime": "h:mm:ss a", |
||||
"short": "M/d/yy h:mm a", |
||||
"shortDate": "M/d/yy", |
||||
"shortTime": "h:mm a" |
||||
}, |
||||
"NUMBER_FORMATS": { |
||||
"CURRENCY_SYM": "$", |
||||
"DECIMAL_SEP": ".", |
||||
"GROUP_SEP": ",", |
||||
"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": "(\u00a4", |
||||
"negSuf": ")", |
||||
"posPre": "\u00a4", |
||||
"posSuf": "" |
||||
} |
||||
] |
||||
}, |
||||
"id": "en-mp", |
||||
"pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} |
||||
}); |
||||
}]); |
@ -1,99 +0,0 @@ |
||||
'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": [ |
||||
"AM", |
||||
"PM" |
||||
], |
||||
"DAY": [ |
||||
"Sunday", |
||||
"Monday", |
||||
"Tuesday", |
||||
"Wednesday", |
||||
"Thursday", |
||||
"Friday", |
||||
"Saturday" |
||||
], |
||||
"MONTH": [ |
||||
"January", |
||||
"February", |
||||
"March", |
||||
"April", |
||||
"May", |
||||
"June", |
||||
"July", |
||||
"August", |
||||
"September", |
||||
"October", |
||||
"November", |
||||
"December" |
||||
], |
||||
"SHORTDAY": [ |
||||
"Sun", |
||||
"Mon", |
||||
"Tue", |
||||
"Wed", |
||||
"Thu", |
||||
"Fri", |
||||
"Sat" |
||||
], |
||||
"SHORTMONTH": [ |
||||
"Jan", |
||||
"Feb", |
||||
"Mar", |
||||
"Apr", |
||||
"May", |
||||
"Jun", |
||||
"Jul", |
||||
"Aug", |
||||
"Sep", |
||||
"Oct", |
||||
"Nov", |
||||
"Dec" |
||||
], |
||||
"fullDate": "EEEE, d MMMM y", |
||||
"longDate": "dd MMMM y", |
||||
"medium": "dd MMM y h:mm:ss a", |
||||
"mediumDate": "dd MMM y", |
||||
"mediumTime": "h:mm:ss a", |
||||
"short": "dd/MM/yyyy h:mm a", |
||||
"shortDate": "dd/MM/yyyy", |
||||
"shortTime": "h:mm a" |
||||
}, |
||||
"NUMBER_FORMATS": { |
||||
"CURRENCY_SYM": "$", |
||||
"DECIMAL_SEP": ".", |
||||
"GROUP_SEP": ",", |
||||
"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": "(\u00a4", |
||||
"negSuf": ")", |
||||
"posPre": "\u00a4", |
||||
"posSuf": "" |
||||
} |
||||
] |
||||
}, |
||||
"id": "en-mt", |
||||
"pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} |
||||
}); |
||||
}]); |
@ -1,99 +0,0 @@ |
||||
'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": [ |
||||
"AM", |
||||
"PM" |
||||
], |
||||
"DAY": [ |
||||
"Sunday", |
||||
"Monday", |
||||
"Tuesday", |
||||
"Wednesday", |
||||
"Thursday", |
||||
"Friday", |
||||
"Saturday" |
||||
], |
||||
"MONTH": [ |
||||
"January", |
||||
"February", |
||||
"March", |
||||
"April", |
||||
"May", |
||||
"June", |
||||
"July", |
||||
"August", |
||||
"September", |
||||
"October", |
||||
"November", |
||||
"December" |
||||
], |
||||
"SHORTDAY": [ |
||||
"Sun", |
||||
"Mon", |
||||
"Tue", |
||||
"Wed", |
||||
"Thu", |
||||
"Fri", |
||||
"Sat" |
||||
], |
||||
"SHORTMONTH": [ |
||||
"Jan", |
||||
"Feb", |
||||
"Mar", |
||||
"Apr", |
||||
"May", |
||||
"Jun", |
||||
"Jul", |
||||
"Aug", |
||||
"Sep", |
||||
"Oct", |
||||
"Nov", |
||||
"Dec" |
||||
], |
||||
"fullDate": "EEEE, MMMM d, y", |
||||
"longDate": "MMMM d, y", |
||||
"medium": "MMM d, y h:mm:ss a", |
||||
"mediumDate": "MMM d, y", |
||||
"mediumTime": "h:mm:ss a", |
||||
"short": "M/d/yy h:mm a", |
||||
"shortDate": "M/d/yy", |
||||
"shortTime": "h:mm a" |
||||
}, |
||||
"NUMBER_FORMATS": { |
||||
"CURRENCY_SYM": "$", |
||||
"DECIMAL_SEP": ".", |
||||
"GROUP_SEP": ",", |
||||
"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": "(\u00a4", |
||||
"negSuf": ")", |
||||
"posPre": "\u00a4", |
||||
"posSuf": "" |
||||
} |
||||
] |
||||
}, |
||||
"id": "en-mu", |
||||
"pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} |
||||
}); |
||||
}]); |
@ -1,99 +0,0 @@ |
||||
'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": [ |
||||
"AM", |
||||
"PM" |
||||
], |
||||
"DAY": [ |
||||
"Sunday", |
||||
"Monday", |
||||
"Tuesday", |
||||
"Wednesday", |
||||
"Thursday", |
||||
"Friday", |
||||
"Saturday" |
||||
], |
||||
"MONTH": [ |
||||
"January", |
||||
"February", |
||||
"March", |
||||
"April", |
||||
"May", |
||||
"June", |
||||
"July", |
||||
"August", |
||||
"September", |
||||
"October", |
||||
"November", |
||||
"December" |
||||
], |
||||
"SHORTDAY": [ |
||||
"Sun", |
||||
"Mon", |
||||
"Tue", |
||||
"Wed", |
||||
"Thu", |
||||
"Fri", |
||||
"Sat" |
||||
], |
||||
"SHORTMONTH": [ |
||||
"Jan", |
||||
"Feb", |
||||
"Mar", |
||||
"Apr", |
||||
"May", |
||||
"Jun", |
||||
"Jul", |
||||
"Aug", |
||||
"Sep", |
||||
"Oct", |
||||
"Nov", |
||||
"Dec" |
||||
], |
||||
"fullDate": "EEEE, MMMM d, y", |
||||
"longDate": "MMMM d, y", |
||||
"medium": "MMM d, y h:mm:ss a", |
||||
"mediumDate": "MMM d, y", |
||||
"mediumTime": "h:mm:ss a", |
||||
"short": "M/d/yy h:mm a", |
||||
"shortDate": "M/d/yy", |
||||
"shortTime": "h:mm a" |
||||
}, |
||||
"NUMBER_FORMATS": { |
||||
"CURRENCY_SYM": "$", |
||||
"DECIMAL_SEP": ".", |
||||
"GROUP_SEP": ",", |
||||
"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": "(\u00a4", |
||||
"negSuf": ")", |
||||
"posPre": "\u00a4", |
||||
"posSuf": "" |
||||
} |
||||
] |
||||
}, |
||||
"id": "en-na", |
||||
"pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} |
||||
}); |
||||
}]); |
@ -1,99 +0,0 @@ |
||||
'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": [ |
||||
"AM", |
||||
"PM" |
||||
], |
||||
"DAY": [ |
||||
"Sunday", |
||||
"Monday", |
||||
"Tuesday", |
||||
"Wednesday", |
||||
"Thursday", |
||||
"Friday", |
||||
"Saturday" |
||||
], |
||||
"MONTH": [ |
||||
"January", |
||||
"February", |
||||
"March", |
||||
"April", |
||||
"May", |
||||
"June", |
||||
"July", |
||||
"August", |
||||
"September", |
||||
"October", |
||||
"November", |
||||
"December" |
||||
], |
||||
"SHORTDAY": [ |
||||
"Sun", |
||||
"Mon", |
||||
"Tue", |
||||
"Wed", |
||||
"Thu", |
||||
"Fri", |
||||
"Sat" |
||||
], |
||||
"SHORTMONTH": [ |
||||
"Jan", |
||||
"Feb", |
||||
"Mar", |
||||
"Apr", |
||||
"May", |
||||
"Jun", |
||||
"Jul", |
||||
"Aug", |
||||
"Sep", |
||||
"Oct", |
||||
"Nov", |
||||
"Dec" |
||||
], |
||||
"fullDate": "EEEE, d MMMM y", |
||||
"longDate": "d MMMM y", |
||||
"medium": "d/MM/yyyy h:mm:ss a", |
||||
"mediumDate": "d/MM/yyyy", |
||||
"mediumTime": "h:mm:ss a", |
||||
"short": "d/MM/yy h:mm a", |
||||
"shortDate": "d/MM/yy", |
||||
"shortTime": "h:mm a" |
||||
}, |
||||
"NUMBER_FORMATS": { |
||||
"CURRENCY_SYM": "$", |
||||
"DECIMAL_SEP": ".", |
||||
"GROUP_SEP": ",", |
||||
"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": "(\u00a4", |
||||
"negSuf": ")", |
||||
"posPre": "\u00a4", |
||||
"posSuf": "" |
||||
} |
||||
] |
||||
}, |
||||
"id": "en-nz", |
||||
"pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} |
||||
}); |
||||
}]); |
@ -1,99 +0,0 @@ |
||||
'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": [ |
||||
"AM", |
||||
"PM" |
||||
], |
||||
"DAY": [ |
||||
"Sunday", |
||||
"Monday", |
||||
"Tuesday", |
||||
"Wednesday", |
||||
"Thursday", |
||||
"Friday", |
||||
"Saturday" |
||||
], |
||||
"MONTH": [ |
||||
"January", |
||||
"February", |
||||
"March", |
||||
"April", |
||||
"May", |
||||
"June", |
||||
"July", |
||||
"August", |
||||
"September", |
||||
"October", |
||||
"November", |
||||
"December" |
||||
], |
||||
"SHORTDAY": [ |
||||
"Sun", |
||||
"Mon", |
||||
"Tue", |
||||
"Wed", |
||||
"Thu", |
||||
"Fri", |
||||
"Sat" |
||||
], |
||||
"SHORTMONTH": [ |
||||
"Jan", |
||||
"Feb", |
||||
"Mar", |
||||
"Apr", |
||||
"May", |
||||
"Jun", |
||||
"Jul", |
||||
"Aug", |
||||
"Sep", |
||||
"Oct", |
||||
"Nov", |
||||
"Dec" |
||||
], |
||||
"fullDate": "EEEE, MMMM d, y", |
||||
"longDate": "MMMM d, y", |
||||
"medium": "MMM d, y h:mm:ss a", |
||||
"mediumDate": "MMM d, y", |
||||
"mediumTime": "h:mm:ss a", |
||||
"short": "M/d/yy h:mm a", |
||||
"shortDate": "M/d/yy", |
||||
"shortTime": "h:mm a" |
||||
}, |
||||
"NUMBER_FORMATS": { |
||||
"CURRENCY_SYM": "$", |
||||
"DECIMAL_SEP": ".", |
||||
"GROUP_SEP": ",", |
||||
"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": "(\u00a4", |
||||
"negSuf": ")", |
||||
"posPre": "\u00a4", |
||||
"posSuf": "" |
||||
} |
||||
] |
||||
}, |
||||
"id": "en-ph", |
||||
"pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} |
||||
}); |
||||
}]); |
@ -1,99 +0,0 @@ |
||||
'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": [ |
||||
"AM", |
||||
"PM" |
||||
], |
||||
"DAY": [ |
||||
"Sunday", |
||||
"Monday", |
||||
"Tuesday", |
||||
"Wednesday", |
||||
"Thursday", |
||||
"Friday", |
||||
"Saturday" |
||||
], |
||||
"MONTH": [ |
||||
"January", |
||||
"February", |
||||
"March", |
||||
"April", |
||||
"May", |
||||
"June", |
||||
"July", |
||||
"August", |
||||
"September", |
||||
"October", |
||||
"November", |
||||
"December" |
||||
], |
||||
"SHORTDAY": [ |
||||
"Sun", |
||||
"Mon", |
||||
"Tue", |
||||
"Wed", |
||||
"Thu", |
||||
"Fri", |
||||
"Sat" |
||||
], |
||||
"SHORTMONTH": [ |
||||
"Jan", |
||||
"Feb", |
||||
"Mar", |
||||
"Apr", |
||||
"May", |
||||
"Jun", |
||||
"Jul", |
||||
"Aug", |
||||
"Sep", |
||||
"Oct", |
||||
"Nov", |
||||
"Dec" |
||||
], |
||||
"fullDate": "EEEE d MMMM y", |
||||
"longDate": "d MMMM y", |
||||
"medium": "dd-MMM-y h:mm:ss a", |
||||
"mediumDate": "dd-MMM-y", |
||||
"mediumTime": "h:mm:ss a", |
||||
"short": "dd/MM/yy h:mm a", |
||||
"shortDate": "dd/MM/yy", |
||||
"shortTime": "h:mm a" |
||||
}, |
||||
"NUMBER_FORMATS": { |
||||
"CURRENCY_SYM": "$", |
||||
"DECIMAL_SEP": ".", |
||||
"GROUP_SEP": ",", |
||||
"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": "(\u00a4", |
||||
"negSuf": ")", |
||||
"posPre": "\u00a4", |
||||
"posSuf": "" |
||||
} |
||||
] |
||||
}, |
||||
"id": "en-pk", |
||||
"pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} |
||||
}); |
||||
}]); |
@ -1,99 +0,0 @@ |
||||
'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": [ |
||||
"AM", |
||||
"PM" |
||||
], |
||||
"DAY": [ |
||||
"Sunday", |
||||
"Monday", |
||||
"Tuesday", |
||||
"Wednesday", |
||||
"Thursday", |
||||
"Friday", |
||||
"Saturday" |
||||
], |
||||
"MONTH": [ |
||||
"January", |
||||
"February", |
||||
"March", |
||||
"April", |
||||
"May", |
||||
"June", |
||||
"July", |
||||
"August", |
||||
"September", |
||||
"October", |
||||
"November", |
||||
"December" |
||||
], |
||||
"SHORTDAY": [ |
||||
"Sun", |
||||
"Mon", |
||||
"Tue", |
||||
"Wed", |
||||
"Thu", |
||||
"Fri", |
||||
"Sat" |
||||
], |
||||
"SHORTMONTH": [ |
||||
"Jan", |
||||
"Feb", |
||||
"Mar", |
||||
"Apr", |
||||
"May", |
||||
"Jun", |
||||
"Jul", |
||||
"Aug", |
||||
"Sep", |
||||
"Oct", |
||||
"Nov", |
||||
"Dec" |
||||
], |
||||
"fullDate": "EEEE, MMMM d, y", |
||||
"longDate": "MMMM d, y", |
||||
"medium": "MMM d, y h:mm:ss a", |
||||
"mediumDate": "MMM d, y", |
||||
"mediumTime": "h:mm:ss a", |
||||
"short": "M/d/yy h:mm a", |
||||
"shortDate": "M/d/yy", |
||||
"shortTime": "h:mm a" |
||||
}, |
||||
"NUMBER_FORMATS": { |
||||
"CURRENCY_SYM": "$", |
||||
"DECIMAL_SEP": ".", |
||||
"GROUP_SEP": ",", |
||||
"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": "(\u00a4", |
||||
"negSuf": ")", |
||||
"posPre": "\u00a4", |
||||
"posSuf": "" |
||||
} |
||||
] |
||||
}, |
||||
"id": "en-pr", |
||||
"pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} |
||||
}); |
||||
}]); |
@ -1,99 +0,0 @@ |
||||
'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": [ |
||||
"AM", |
||||
"PM" |
||||
], |
||||
"DAY": [ |
||||
"Sunday", |
||||
"Monday", |
||||
"Tuesday", |
||||
"Wednesday", |
||||
"Thursday", |
||||
"Friday", |
||||
"Saturday" |
||||
], |
||||
"MONTH": [ |
||||
"January", |
||||
"February", |
||||
"March", |
||||
"April", |
||||
"May", |
||||
"June", |
||||
"July", |
||||
"August", |
||||
"September", |
||||
"October", |
||||
"November", |
||||
"December" |
||||
], |
||||
"SHORTDAY": [ |
||||
"Sun", |
||||
"Mon", |
||||
"Tue", |
||||
"Wed", |
||||
"Thu", |
||||
"Fri", |
||||
"Sat" |
||||
], |
||||
"SHORTMONTH": [ |
||||
"Jan", |
||||
"Feb", |
||||
"Mar", |
||||
"Apr", |
||||
"May", |
||||
"Jun", |
||||
"Jul", |
||||
"Aug", |
||||
"Sep", |
||||
"Oct", |
||||
"Nov", |
||||
"Dec" |
||||
], |
||||
"fullDate": "EEEE, MMMM d, y", |
||||
"longDate": "MMMM d, y", |
||||
"medium": "MMM d, y h:mm:ss a", |
||||
"mediumDate": "MMM d, y", |
||||
"mediumTime": "h:mm:ss a", |
||||
"short": "M/d/yy h:mm a", |
||||
"shortDate": "M/d/yy", |
||||
"shortTime": "h:mm a" |
||||
}, |
||||
"NUMBER_FORMATS": { |
||||
"CURRENCY_SYM": "$", |
||||
"DECIMAL_SEP": ".", |
||||
"GROUP_SEP": ",", |
||||
"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": "(\u00a4", |
||||
"negSuf": ")", |
||||
"posPre": "\u00a4", |
||||
"posSuf": "" |
||||
} |
||||
] |
||||
}, |
||||
"id": "en-pw", |
||||
"pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} |
||||
}); |
||||
}]); |
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue