├── assets ├── css │ ├── .gitkeep │ └── app.css ├── img │ └── .gitkeep ├── partials │ ├── .gitkeep │ ├── partial1.html │ └── partial2.html ├── lib │ └── angular │ │ ├── version.txt │ │ ├── version.json │ │ ├── angular.min.js.gzip │ │ ├── angular-csp.css │ │ ├── angular-cookies.min.js │ │ ├── angular-loader.min.js │ │ ├── i18n │ │ ├── angular-locale_ms.js │ │ ├── angular-locale_id.js │ │ ├── angular-locale_in.js │ │ ├── angular-locale_ms-my.js │ │ ├── angular-locale_id-id.js │ │ ├── angular-locale_en-bz.js │ │ ├── angular-locale_en.js │ │ ├── angular-locale_en-as.js │ │ ├── angular-locale_en-bb.js │ │ ├── angular-locale_en-be.js │ │ ├── angular-locale_en-bm.js │ │ ├── angular-locale_en-fm.js │ │ ├── angular-locale_en-gu.js │ │ ├── angular-locale_en-gy.js │ │ ├── angular-locale_en-hk.js │ │ ├── angular-locale_en-jm.js │ │ ├── angular-locale_en-mh.js │ │ ├── angular-locale_en-mp.js │ │ ├── angular-locale_en-mu.js │ │ ├── angular-locale_en-na.js │ │ ├── angular-locale_en-ph.js │ │ ├── angular-locale_en-pr.js │ │ ├── angular-locale_en-pw.js │ │ ├── angular-locale_en-sg.js │ │ ├── angular-locale_en-tc.js │ │ ├── angular-locale_en-tt.js │ │ ├── angular-locale_en-um.js │ │ ├── angular-locale_en-us.js │ │ ├── angular-locale_en-vg.js │ │ ├── angular-locale_en-vi.js │ │ ├── angular-locale_en-au.js │ │ ├── angular-locale_en-bw.js │ │ ├── angular-locale_en-gb.js │ │ ├── angular-locale_en-iso.js │ │ ├── angular-locale_en-nz.js │ │ ├── angular-locale_en-pk.js │ │ ├── angular-locale_en-zw.js │ │ ├── angular-locale_sw.js │ │ ├── angular-locale_tl.js │ │ ├── angular-locale_af-na.js │ │ ├── angular-locale_af.js │ │ ├── angular-locale_en-ca.js │ │ ├── angular-locale_en-mt.js │ │ ├── angular-locale_fil.js │ │ ├── angular-locale_tr.js │ │ ├── angular-locale_af-za.js │ │ ├── angular-locale_en-ie.js │ │ ├── angular-locale_en-za.js │ │ ├── angular-locale_fil-ph.js │ │ ├── angular-locale_nl.js │ │ ├── angular-locale_sw-tz.js │ │ ├── angular-locale_tr-tr.js │ │ ├── angular-locale_zu.js │ │ ├── angular-locale_en-in.js │ │ ├── angular-locale_nl-cw.js │ │ ├── angular-locale_nl-nl.js │ │ ├── angular-locale_nl-sx.js │ │ ├── angular-locale_zu-za.js │ │ ├── angular-locale_gl.js │ │ ├── angular-locale_de-ch.js │ │ ├── angular-locale_de.js │ │ ├── angular-locale_gl-es.js │ │ ├── angular-locale_de-be.js │ │ ├── angular-locale_de-de.js │ │ ├── angular-locale_de-li.js │ │ ├── angular-locale_de-lu.js │ │ ├── angular-locale_no.js │ │ ├── angular-locale_da.js │ │ ├── angular-locale_it.js │ │ ├── angular-locale_da-dk.js │ │ ├── angular-locale_de-at.js │ │ ├── angular-locale_es-419.js │ │ ├── angular-locale_eu.js │ │ ├── angular-locale_it-it.js │ │ └── angular-locale_it-sm.js │ │ └── angular-cookies.min.js.map ├── js │ ├── controllers.js │ ├── services.js │ ├── directives.js │ ├── filters.js │ └── app.js └── index.html ├── config ├── locales │ ├── de.json │ ├── en.json │ ├── fr.json │ ├── es.json │ └── _README.md ├── globals.js ├── models.js ├── i18n.js ├── bootstrap.js ├── log.js ├── routes.js ├── cors.js ├── csrf.js └── session.js ├── .sailsrc ├── tasks ├── register │ ├── default.js │ ├── syncAssets.js │ ├── build.js │ ├── linkAssets.js │ ├── compileAssets.js │ ├── linkAssetsBuild.js │ ├── linkAssetsBuildProd.js │ ├── buildProd.js │ └── prod.js ├── config │ ├── clean.js │ ├── cssmin.js │ ├── uglify.js │ ├── sync.js │ ├── less.js │ ├── watch.js │ ├── concat.js │ ├── copy.js │ ├── coffee.js │ └── jst.js └── values │ └── injectedFiles.js ├── README.md ├── views ├── homepage.ejs └── layout.ejs ├── api ├── policies │ └── sessionAuth.js └── responses │ ├── notFound.js │ └── forbidden.js ├── package.json ├── app.js └── Gruntfile.js /assets/css/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/img/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/partials/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/lib/angular/version.txt: -------------------------------------------------------------------------------- 1 | 1.2.13 -------------------------------------------------------------------------------- /config/locales/de.json: -------------------------------------------------------------------------------- 1 | { 2 | "Welcome": "Wilkommen" 3 | } -------------------------------------------------------------------------------- /config/locales/en.json: -------------------------------------------------------------------------------- 1 | { 2 | "Welcome": "Welcome" 3 | } 4 | -------------------------------------------------------------------------------- /config/locales/fr.json: -------------------------------------------------------------------------------- 1 | { 2 | "Welcome": "Bienvenue" 3 | } 4 | -------------------------------------------------------------------------------- /.sailsrc: -------------------------------------------------------------------------------- 1 | { 2 | "generators": { 3 | "modules": {} 4 | } 5 | } -------------------------------------------------------------------------------- /config/locales/es.json: -------------------------------------------------------------------------------- 1 | { 2 | "Welcome": "Bienvenido" 3 | } 4 | -------------------------------------------------------------------------------- /assets/partials/partial1.html: -------------------------------------------------------------------------------- 1 |

This is the partial for view 1.

2 | -------------------------------------------------------------------------------- /assets/lib/angular/version.json: -------------------------------------------------------------------------------- 1 | {"full":"1.2.13","major":"1","minor":"2","dot":"13","codename":"romantic-transclusion","cdn":"1.2.12"} -------------------------------------------------------------------------------- /assets/lib/angular/angular.min.js.gzip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgress454/angular-on-sails/HEAD/assets/lib/angular/angular.min.js.gzip -------------------------------------------------------------------------------- /config/globals.js: -------------------------------------------------------------------------------- 1 | module.exports.globals = { 2 | _: true, 3 | async: true, 4 | sails: true, 5 | services: true, 6 | models: true 7 | }; 8 | -------------------------------------------------------------------------------- /tasks/register/default.js: -------------------------------------------------------------------------------- 1 | module.exports = function (grunt) { 2 | grunt.registerTask('default', ['compileAssets', 'linkAssets', 'watch']); 3 | }; 4 | -------------------------------------------------------------------------------- /assets/partials/partial2.html: -------------------------------------------------------------------------------- 1 |

This is the partial for view 2.

2 |

3 | Showing of 'interpolate' filter: 4 | {{ 'Current version is v%VERSION%.' | interpolate }} 5 |

6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Angular on Sails 2 | 3 | Just a plain 'ol skeleton v0.10 Sails app with [Angular Seed](https://github.com/angular/angular-seed) in the assets folder, layout.ejs and homepage.ejs. 4 | -------------------------------------------------------------------------------- /tasks/register/syncAssets.js: -------------------------------------------------------------------------------- 1 | module.exports = function (grunt) { 2 | grunt.registerTask('syncAssets', [ 3 | 'jst:dev', 4 | 'less:dev', 5 | 'sync:dev', 6 | 'coffee:dev' 7 | ]); 8 | }; 9 | -------------------------------------------------------------------------------- /tasks/register/build.js: -------------------------------------------------------------------------------- 1 | module.exports = function (grunt) { 2 | grunt.registerTask('build', [ 3 | 'compileAssets', 4 | 'linkAssetsBuild', 5 | 'clean:build', 6 | 'copy:build' 7 | ]); 8 | }; 9 | -------------------------------------------------------------------------------- /tasks/register/linkAssets.js: -------------------------------------------------------------------------------- 1 | module.exports = function (grunt) { 2 | grunt.registerTask('linkAssets', [ 3 | 'sails-linker:devJs', 4 | 'sails-linker:devStyles', 5 | 'sails-linker:devTpl' 6 | ]); 7 | }; 8 | -------------------------------------------------------------------------------- /tasks/config/clean.js: -------------------------------------------------------------------------------- 1 | module.exports = function(grunt) { 2 | 3 | grunt.config.set('clean', { 4 | dev: ['.tmp/public/**'], 5 | build: ['www'] 6 | }); 7 | 8 | grunt.loadNpmTasks('grunt-contrib-clean'); 9 | }; 10 | -------------------------------------------------------------------------------- /tasks/register/compileAssets.js: -------------------------------------------------------------------------------- 1 | module.exports = function (grunt) { 2 | grunt.registerTask('compileAssets', [ 3 | 'clean:dev', 4 | 'jst:dev', 5 | 'less:dev', 6 | 'copy:dev', 7 | 'coffee:dev' 8 | ]); 9 | }; 10 | -------------------------------------------------------------------------------- /tasks/register/linkAssetsBuild.js: -------------------------------------------------------------------------------- 1 | module.exports = function (grunt) { 2 | grunt.registerTask('linkAssetsBuild', [ 3 | 'sails-linker:devJsRelative', 4 | 'sails-linker:devStylesRelative', 5 | 'sails-linker:devTpl' 6 | ]); 7 | }; 8 | -------------------------------------------------------------------------------- /assets/js/controllers.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | /* Controllers */ 4 | 5 | angular.module('myApp.controllers', []). 6 | controller('MyCtrl1', [function() { 7 | 8 | }]) 9 | .controller('MyCtrl2', [function() { 10 | 11 | }]); -------------------------------------------------------------------------------- /views/homepage.ejs: -------------------------------------------------------------------------------- 1 | 5 | 6 |
7 | 8 |
Angular seed app: v
9 | -------------------------------------------------------------------------------- /tasks/register/linkAssetsBuildProd.js: -------------------------------------------------------------------------------- 1 | module.exports = function (grunt) { 2 | grunt.registerTask('linkAssetsBuildProd', [ 3 | 'sails-linker:prodJsRelative', 4 | 'sails-linker:prodStylesRelative', 5 | 'sails-linker:devTpl' 6 | ]); 7 | }; 8 | -------------------------------------------------------------------------------- /assets/js/services.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | /* Services */ 4 | 5 | 6 | // Demonstrate how to register services 7 | // In this case it is a simple value service. 8 | angular.module('myApp.services', []). 9 | value('version', '0.1'); 10 | -------------------------------------------------------------------------------- /tasks/register/buildProd.js: -------------------------------------------------------------------------------- 1 | module.exports = function (grunt) { 2 | grunt.registerTask('buildProd', [ 3 | 'compileAssets', 4 | 'concat', 5 | 'uglify', 6 | 'cssmin', 7 | 'linkAssetsBuildProd', 8 | 'clean:build', 9 | 'copy:build' 10 | ]); 11 | }; 12 | -------------------------------------------------------------------------------- /tasks/register/prod.js: -------------------------------------------------------------------------------- 1 | module.exports = function (grunt) { 2 | grunt.registerTask('prod', [ 3 | 'compileAssets', 4 | 'concat', 5 | 'uglify', 6 | 'cssmin', 7 | 'sails-linker:prodJs', 8 | 'sails-linker:prodStyles', 9 | 'sails-linker:devTpl' 10 | ]); 11 | }; 12 | -------------------------------------------------------------------------------- /assets/js/directives.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | /* Directives */ 4 | 5 | 6 | angular.module('myApp.directives', []). 7 | directive('appVersion', ['version', function(version) { 8 | return function(scope, elm, attrs) { 9 | elm.text(version); 10 | }; 11 | }]); 12 | -------------------------------------------------------------------------------- /assets/js/filters.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | /* Filters */ 4 | 5 | angular.module('myApp.filters', []). 6 | filter('interpolate', ['version', function(version) { 7 | return function(text) { 8 | return String(text).replace(/\%VERSION\%/mg, version); 9 | } 10 | }]); 11 | -------------------------------------------------------------------------------- /tasks/config/cssmin.js: -------------------------------------------------------------------------------- 1 | module.exports = function(grunt) { 2 | 3 | grunt.config.set('cssmin', { 4 | dist: { 5 | src: ['.tmp/public/concat/production.css'], 6 | dest: '.tmp/public/min/production.css' 7 | } 8 | }); 9 | 10 | grunt.loadNpmTasks('grunt-contrib-cssmin'); 11 | }; 12 | -------------------------------------------------------------------------------- /tasks/config/uglify.js: -------------------------------------------------------------------------------- 1 | module.exports = function(grunt) { 2 | 3 | grunt.config.set('uglify', { 4 | dist: { 5 | src: ['.tmp/public/concat/production.js'], 6 | dest: '.tmp/public/min/production.js' 7 | } 8 | }); 9 | 10 | grunt.loadNpmTasks('grunt-contrib-uglify'); 11 | }; 12 | -------------------------------------------------------------------------------- /tasks/config/sync.js: -------------------------------------------------------------------------------- 1 | module.exports = function(grunt) { 2 | 3 | grunt.config.set('sync', { 4 | dev: { 5 | files: [{ 6 | cwd: './assets', 7 | src: ['**/*.!(coffee)'], 8 | dest: '.tmp/public' 9 | }] 10 | } 11 | }); 12 | 13 | grunt.loadNpmTasks('grunt-sync'); 14 | }; 15 | -------------------------------------------------------------------------------- /tasks/config/less.js: -------------------------------------------------------------------------------- 1 | module.exports = function(grunt) { 2 | 3 | grunt.config.set('less', { 4 | dev: { 5 | files: [{ 6 | expand: true, 7 | cwd: 'assets/styles/', 8 | src: ['*.less'], 9 | dest: '.tmp/public/styles/', 10 | ext: '.css' 11 | }] 12 | } 13 | }); 14 | 15 | grunt.loadNpmTasks('grunt-contrib-less'); 16 | }; 17 | -------------------------------------------------------------------------------- /tasks/config/watch.js: -------------------------------------------------------------------------------- 1 | module.exports = function(grunt) { 2 | 3 | grunt.config.set('watch', { 4 | api: { 5 | 6 | // API files to watch: 7 | files: ['api/**/*'] 8 | }, 9 | assets: { 10 | 11 | // Assets to watch: 12 | files: ['assets/**/*'], 13 | 14 | // When assets are changed: 15 | tasks: ['syncAssets' , 'linkAssets'] 16 | } 17 | }); 18 | 19 | grunt.loadNpmTasks('grunt-contrib-watch'); 20 | }; 21 | -------------------------------------------------------------------------------- /config/models.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Models 3 | * (sails.config.models) 4 | * 5 | * Unless you override them, the following properties will be included 6 | * in each of your models. 7 | */ 8 | 9 | module.exports.models = { 10 | 11 | // Your app's default connection. 12 | // i.e. the name of one of your app's connections (see `config/connections.js`) 13 | // 14 | // (defaults to localDiskDb) 15 | connection: 'localDiskDb' 16 | }; 17 | -------------------------------------------------------------------------------- /assets/lib/angular/angular-csp.css: -------------------------------------------------------------------------------- 1 | /* Include this file in your html if you are using the CSP mode. */ 2 | 3 | @charset "UTF-8"; 4 | 5 | [ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak], 6 | .ng-cloak, .x-ng-cloak, 7 | .ng-hide { 8 | display: none !important; 9 | } 10 | 11 | ng\:form { 12 | display: block; 13 | } 14 | 15 | .ng-animate-block-transitions { 16 | transition:0s all!important; 17 | -webkit-transition:0s all!important; 18 | } 19 | -------------------------------------------------------------------------------- /tasks/config/concat.js: -------------------------------------------------------------------------------- 1 | var injectedFiles = require('../values/injectedFiles'); 2 | 3 | module.exports = function(grunt) { 4 | 5 | grunt.config.set('concat', { 6 | js: { 7 | src: injectedFiles.jsFilesToInject, 8 | dest: '.tmp/public/concat/production.js' 9 | }, 10 | css: { 11 | src: injectedFiles.cssFilesToInject, 12 | dest: '.tmp/public/concat/production.css' 13 | } 14 | }); 15 | 16 | grunt.loadNpmTasks('grunt-contrib-concat'); 17 | }; 18 | -------------------------------------------------------------------------------- /config/i18n.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Internationalization / Localization Settings 3 | * 4 | * If your app will touch people from all over the world, i18n (or internationalization) 5 | * may be an important part of your international strategy. 6 | * 7 | * 8 | * For more information, check out: 9 | * http://sailsjs.org/#documentation 10 | */ 11 | 12 | module.exports.i18n = { 13 | 14 | // Which locales are supported? 15 | locales: ['en', 'es', 'fr', 'de'] 16 | 17 | }; 18 | -------------------------------------------------------------------------------- /tasks/config/copy.js: -------------------------------------------------------------------------------- 1 | module.exports = function(grunt) { 2 | 3 | grunt.config.set('copy', { 4 | dev: { 5 | files: [{ 6 | expand: true, 7 | cwd: './assets', 8 | src: ['**/*.!(coffee|less)'], 9 | dest: '.tmp/public' 10 | }] 11 | }, 12 | build: { 13 | files: [{ 14 | expand: true, 15 | cwd: '.tmp/public', 16 | src: ['**/*'], 17 | dest: 'www' 18 | }] 19 | } 20 | }); 21 | 22 | grunt.loadNpmTasks('grunt-contrib-copy'); 23 | }; 24 | -------------------------------------------------------------------------------- /assets/css/app.css: -------------------------------------------------------------------------------- 1 | /* app css stylesheet */ 2 | 3 | .menu { 4 | list-style: none; 5 | border-bottom: 0.1em solid black; 6 | margin-bottom: 2em; 7 | padding: 0 0 0.5em; 8 | } 9 | 10 | .menu:before { 11 | content: "["; 12 | } 13 | 14 | .menu:after { 15 | content: "]"; 16 | } 17 | 18 | .menu > li { 19 | display: inline; 20 | } 21 | 22 | .menu > li:before { 23 | content: "|"; 24 | padding-right: 0.3em; 25 | } 26 | 27 | .menu > li:nth-child(1):before { 28 | content: ""; 29 | padding: 0; 30 | } 31 | -------------------------------------------------------------------------------- /assets/js/app.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | 4 | // Declare app level module which depends on filters, and services 5 | angular.module('myApp', [ 6 | 'ngRoute', 7 | 'myApp.filters', 8 | 'myApp.services', 9 | 'myApp.directives', 10 | 'myApp.controllers' 11 | ]). 12 | config(['$routeProvider', function($routeProvider) { 13 | $routeProvider.when('/view1', {templateUrl: 'partials/partial1.html', controller: 'MyCtrl1'}); 14 | $routeProvider.when('/view2', {templateUrl: 'partials/partial2.html', controller: 'MyCtrl2'}); 15 | $routeProvider.otherwise({redirectTo: '/view1'}); 16 | }]); 17 | -------------------------------------------------------------------------------- /tasks/config/coffee.js: -------------------------------------------------------------------------------- 1 | module.exports = function(grunt) { 2 | 3 | grunt.config.set('coffee', { 4 | dev: { 5 | options: { 6 | bare: true, 7 | sourceMap: true, 8 | sourceRoot: './' 9 | }, 10 | files: [{ 11 | expand: true, 12 | cwd: 'assets/js/', 13 | src: ['**/*.coffee'], 14 | dest: '.tmp/public/js/', 15 | ext: '.js' 16 | }, { 17 | expand: true, 18 | cwd: 'assets/js/', 19 | src: ['**/*.coffee'], 20 | dest: '.tmp/public/js/', 21 | ext: '.js' 22 | }] 23 | } 24 | }); 25 | 26 | grunt.loadNpmTasks('grunt-contrib-coffee'); 27 | }; 28 | -------------------------------------------------------------------------------- /config/bootstrap.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Bootstrap 3 | * 4 | * An asynchronous bootstrap function that runs before your Sails app gets lifted. 5 | * This gives you an opportunity to set up your data model, run jobs, or perform some special logic. 6 | * 7 | * For more information on bootstrapping your app, check out: 8 | * http://sailsjs.org/#documentation 9 | */ 10 | 11 | module.exports.bootstrap = function (cb) { 12 | 13 | // It's very important to trigger this callack method when you are finished 14 | // with the bootstrap! (otherwise your server will never lift, since it's waiting on the bootstrap) 15 | cb(); 16 | }; -------------------------------------------------------------------------------- /tasks/config/jst.js: -------------------------------------------------------------------------------- 1 | var injectedFiles = require('../values/injectedFiles'); 2 | 3 | module.exports = function(grunt) { 4 | 5 | var templateFilesToInject = [ 6 | 'templates/**/*.html' 7 | ]; 8 | 9 | grunt.config.set('jst', { 10 | dev: { 11 | 12 | // To use other sorts of templates, specify the regexp below: 13 | // options: { 14 | // templateSettings: { 15 | // interpolate: /\{\{(.+?)\}\}/g 16 | // } 17 | // }, 18 | 19 | files: { 20 | '.tmp/public/jst.js': injectedFiles.templateFilesToInject 21 | } 22 | } 23 | }); 24 | 25 | grunt.loadNpmTasks('grunt-contrib-jst'); 26 | }; 27 | -------------------------------------------------------------------------------- /views/layout.ejs: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | My AngularJS App 6 | 7 | 8 | 9 | <%-body%> 10 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /api/policies/sessionAuth.js: -------------------------------------------------------------------------------- 1 | /** 2 | * sessionAuth 3 | * 4 | * @module :: Policy 5 | * @description :: Simple policy to allow any authenticated user 6 | * Assumes that your login action in one of your controllers sets `req.session.authenticated = true;` 7 | * @docs :: http://sailsjs.org/#!documentation/policies 8 | * 9 | */ 10 | module.exports = function(req, res, next) { 11 | 12 | // User is allowed, proceed to the next policy, 13 | // or if this is the last policy, the controller 14 | if (req.session.authenticated) { 15 | return next(); 16 | } 17 | 18 | // User is not allowed 19 | // (default res.forbidden() behavior can be overridden in `config/403.js`) 20 | return res.forbidden('You are not permitted to perform this action.'); 21 | }; 22 | -------------------------------------------------------------------------------- /assets/lib/angular/angular-cookies.min.js: -------------------------------------------------------------------------------- 1 | /* 2 | AngularJS v1.2.13 3 | (c) 2010-2014 Google, Inc. http://angularjs.org 4 | License: MIT 5 | */ 6 | (function(p,f,n){'use strict';f.module("ngCookies",["ng"]).factory("$cookies",["$rootScope","$browser",function(d,b){var c={},g={},h,k=!1,l=f.copy,m=f.isUndefined;b.addPollFn(function(){var a=b.cookies();h!=a&&(h=a,l(a,g),l(a,c),k&&d.$apply())})();k=!0;d.$watch(function(){var a,e,d;for(a in g)m(c[a])&&b.cookies(a,n);for(a in c)(e=c[a],f.isString(e))?e!==g[a]&&(b.cookies(a,e),d=!0):f.isDefined(g[a])?c[a]=g[a]:delete c[a];if(d)for(a in e=b.cookies(),c)c[a]!==e[a]&&(m(e[a])?delete c[a]:c[a]=e[a])}); 7 | return c}]).factory("$cookieStore",["$cookies",function(d){return{get:function(b){return(b=d[b])?f.fromJson(b):b},put:function(b,c){d[b]=f.toJson(c)},remove:function(b){delete d[b]}}}])})(window,window.angular); 8 | //# sourceMappingURL=angular-cookies.min.js.map 9 | -------------------------------------------------------------------------------- /assets/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | My AngularJS App 6 | 7 | 8 | 9 | 13 | 14 |
15 | 16 |
Angular seed app: v
17 | 18 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /config/log.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Logger configuration 3 | * 4 | * Configure the log level for your app, as well as the transport 5 | * (Underneath the covers, Sails uses Winston for logging, which 6 | * allows for some pretty neat custom transports/adapters for log messages) 7 | * 8 | * For more information on the Sails logger, check out: 9 | * http://sailsjs.org/#documentation 10 | */ 11 | 12 | module.exports = { 13 | 14 | // Valid `level` configs: 15 | // i.e. the minimum log level to capture with sails.log.*() 16 | // 17 | // 'error' : Display calls to `.error()` 18 | // 'warn' : Display calls from `.error()` to `.warn()` 19 | // 'debug' : Display calls from `.error()`, `.warn()` to `.debug()` 20 | // 'info' : Display calls from `.error()`, `.warn()`, `.debug()` to `.info()` 21 | // 'verbose': Display calls from `.error()`, `.warn()`, `.debug()`, `.info()` to `.verbose()` 22 | // 23 | log: { 24 | level: 'info' 25 | } 26 | 27 | }; 28 | -------------------------------------------------------------------------------- /api/responses/notFound.js: -------------------------------------------------------------------------------- 1 | /** 2 | * 404 (Not Found) Handler 3 | * 4 | * Usage: 5 | * return res.notFound(); 6 | * 7 | * NOTE: 8 | * If no user-defined route, blueprint route, or static file matches 9 | * the requested URL, Sails will call `res.notFound()`. 10 | */ 11 | 12 | module.exports = function notFound() { 13 | 14 | // Get access to `req` and `res` 15 | var req = this.req; 16 | var res = this.res; 17 | 18 | var viewFilePath = '404'; 19 | var statusCode = 404; 20 | var result = { 21 | status: statusCode 22 | }; 23 | 24 | // If the user-agent wants a JSON response, send json 25 | if (req.wantsJSON) { 26 | return res.json(result, result.status); 27 | } 28 | 29 | res.status(result.status); 30 | res.render(viewFilePath, function(err) { 31 | // If the view doesn't exist, or an error occured, send json 32 | if (err) { 33 | return res.json(result, result.status); 34 | } 35 | 36 | // Otherwise, serve the `views/404.*` page 37 | res.render(viewFilePath); 38 | }); 39 | }; 40 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "testangular", 3 | "private": true, 4 | "version": "0.0.0", 5 | "description": "a Sails application", 6 | "keywords": [], 7 | "dependencies": { 8 | "sails": "~0.10.0-rc3", 9 | "sails-disk": "~0.10.0", 10 | "ejs": "~0.8.4", 11 | "grunt": "0.4.2", 12 | "grunt-sync": "~0.0.4", 13 | "grunt-contrib-copy": "~0.4.1", 14 | "grunt-contrib-clean": "~0.4.1", 15 | "grunt-contrib-concat": "~0.3.0", 16 | "grunt-sails-linker": "~0.9.5", 17 | "grunt-contrib-jst": "~0.5.0", 18 | "grunt-contrib-watch": "~0.4.4", 19 | "grunt-contrib-uglify": "~0.2.2", 20 | "grunt-contrib-cssmin": "~0.6.1", 21 | "grunt-contrib-less": "~0.9.0", 22 | "grunt-contrib-coffee": "~0.7.0" 23 | }, 24 | "scripts": { 25 | "start": "node app.js", 26 | "debug": "node debug app.js" 27 | }, 28 | "main": "app.js", 29 | "repository": { 30 | "type": "git", 31 | "url": "git://github.com/scottmac/testangular.git" 32 | }, 33 | "author": "scottmac", 34 | "license": "" 35 | } -------------------------------------------------------------------------------- /config/locales/_README.md: -------------------------------------------------------------------------------- 1 | # Internationalization / Localization Settings 2 | 3 | ## Locale 4 | All locale files live under `config/locales`. Here is where you can add locale data as JSON key-value pairs. The name of the file should match the language that you are supporting, which allows for automatic language detection based on the user request. 5 | 6 | Here is an example locale stringfile for the Spanish language (`config/locales/es.json`): 7 | ```json 8 | { 9 | "Hello!": "Hola!", 10 | "Hello %s, how are you today?": "¿Hola %s, como estas?", 11 | } 12 | ``` 13 | ## Usage 14 | Locales can be accessed in controllers/policies through `res.i18n()`, or in views through the `__(key)` or `i18n(key)` functions. 15 | Remember that the keys are case sensitive and require exact key matches, e.g. 16 | 17 | ```ejs 18 |

<%= __('Welcome to PencilPals!') %>

19 |

<%= i18n('Hello %s, how are you today?', 'Pencil Maven') %>

20 |

<%= i18n('That\'s right-- you can use either i18n() or __()') %>

21 | ``` 22 | 23 | ## Configuration 24 | Localization/internationalization config can be found in `config/i18n.js`, from where you can set your supported locales. -------------------------------------------------------------------------------- /api/responses/forbidden.js: -------------------------------------------------------------------------------- 1 | /** 2 | * 403 (Forbidden) Handler 3 | * 4 | * Usage: 5 | * return res.forbidden('Access denied.'); 6 | * 7 | * @param {String|Object|Array} message 8 | * optional message to inject into view locals or JSON response 9 | * 10 | */ 11 | 12 | module.exports = function forbidden(message) { 13 | 14 | // Get access to `req` and `res` 15 | var req = this.req; 16 | var res = this.res; 17 | 18 | var viewFilePath = '403'; 19 | var statusCode = 403; 20 | 21 | var result = { 22 | status: statusCode 23 | }; 24 | 25 | // Optional message 26 | if (message) { 27 | result.message = message; 28 | } 29 | 30 | // If the user-agent wants a JSON response, send json 31 | if (req.wantsJSON) { 32 | return res.json(result, result.status); 33 | } 34 | 35 | // Set status code and view locals 36 | res.status(result.status); 37 | for (var key in result) { 38 | res.locals[key] = result[key]; 39 | } 40 | // And render view 41 | res.render(viewFilePath, result, function(err) { 42 | // If the view doesn't exist, or an error occured, send json 43 | if (err) { 44 | return res.json(result, result.status); 45 | } 46 | 47 | // Otherwise, serve the `views/403.*` page 48 | res.render(viewFilePath); 49 | }); 50 | }; 51 | -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- 1 | /** 2 | * app.js 3 | * 4 | * Use `app.js` to run your app without `sails lift`. 5 | * To start the server, run: `node app.js`. 6 | * 7 | * This is handy in situations where the sails CLI is not relevant or useful. 8 | * 9 | * For example: 10 | * => `node app.js` 11 | * => `forever start app.js` 12 | * => `node debug app.js` 13 | * => `modulus deploy` 14 | * => `heroku scale` 15 | * 16 | * 17 | * The same command-line arguments are supported, e.g.: 18 | * `node app.js --silent --port=80 --prod` 19 | */ 20 | 21 | // Ensure a "sails" can be located: 22 | var sails; 23 | try { 24 | sails = require('sails'); 25 | } 26 | catch (e) { 27 | console.error('To run an app using `node app.js`, you usually need to have a version of `sails` installed in the same directory as your app.'); 28 | console.error('To do that, run `npm install sails`'); 29 | console.error(''); 30 | console.error('Alternatively, if you have sails installed globally (i.e. you did `npm install -g sails`), you can use `sails lift`.'); 31 | console.error('When you run `sails lift`, your app will still use a local `./node_modules/sails` dependency if it exists,'); 32 | console.error('but if it doesn\'t, the app will run with the global sails instead!'); 33 | return; 34 | } 35 | 36 | // Start server 37 | sails.lift(); 38 | -------------------------------------------------------------------------------- /config/routes.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Routes 3 | * 4 | * Your routes map URLs to views and controllers. 5 | * 6 | * If Sails receives a URL that doesn't match any of the routes below, 7 | * it will check for matching files (images, scripts, stylesheets, etc.) 8 | * in your assets directory. e.g. `http://localhost:1337/images/foo.jpg` 9 | * might match an image file: `/assets/images/foo.jpg` 10 | * 11 | * Finally, if those don't match either, the default 404 handler is triggered. 12 | * See `config/404.js` to adjust your app's 404 logic. 13 | * 14 | * Note: Sails doesn't ACTUALLY serve stuff from `assets`-- the default Gruntfile in Sails copies 15 | * flat files from `assets` to `.tmp/public`. This allows you to do things like compile LESS or 16 | * CoffeeScript for the front-end. 17 | * 18 | * For more information on routes, check out: 19 | * http://sailsjs.org/#documentation 20 | */ 21 | 22 | module.exports.routes = { 23 | 24 | 25 | // Make the view located at `views/homepage.ejs` (or `views/homepage.jade`, etc. depending on your 26 | // default view engine) your home page. 27 | // 28 | // (Alternatively, remove this and add an `index.html` file in your `assets` directory) 29 | '/': { 30 | view: 'homepage' 31 | }, 32 | 33 | 34 | // Custom routes here... 35 | 36 | 37 | // If a request to a URL doesn't match any of the custom routes above, it is matched 38 | // against Sails route blueprints. See `config/blueprints.js` for configuration options 39 | // and examples. 40 | 41 | }; 42 | -------------------------------------------------------------------------------- /assets/lib/angular/angular-loader.min.js: -------------------------------------------------------------------------------- 1 | /* 2 | AngularJS v1.2.13 3 | (c) 2010-2014 Google, Inc. http://angularjs.org 4 | License: MIT 5 | */ 6 | (function(){'use strict';function d(a){return function(){var c=arguments[0],b,c="["+(a?a+":":"")+c+"] http://errors.angularjs.org/1.2.13/"+(a?a+"/":"")+c;for(b=1;b 23 | * 24 | * 25 | * 26 | * or (b) For AJAX/Socket-heavy and/or single-page apps: 27 | * Sending a GET request to the `/csrfToken` route, where it will be returned 28 | * as JSON, e.g.: 29 | * { _csrf: 'ajg4JD(JGdajhLJALHDa' } 30 | * 31 | * 32 | * Enabling this option requires managing the token in your front-end app. 33 | * For traditional web apps, it's as easy as passing the data from a view into a form action. 34 | * In AJAX/Socket-heavy apps, just send a GET request to the /csrfToken route to get a valid token. 35 | * 36 | * For more information on CSRF, check out: 37 | * http://en.wikipedia.org/wiki/Cross-site_request_forgery 38 | */ 39 | 40 | module.exports.csrf = false; -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- 1 | var includeAll = require('sails/node_modules/include-all') 2 | , path = require('path'); 3 | 4 | /** 5 | * Gruntfile 6 | * 7 | * By default, the Gruntfile in new Sails projects comes with a `linker` 8 | * task, which will automatically inject client-side scripts, styles, and templates 9 | * from your `assets` folder into specific regions of certain EJS and HTML files 10 | * specified below. This behavior is completely optional, but here for convenience. 11 | * 12 | * At the top part of this file, you'll find a few of the most commonly 13 | * configured options, but Sails' integration with Grunt is also fully 14 | * customizable. If you'd like to work with your assets differently 15 | * you can change this file to do anything you like! 16 | * 17 | * More information on using Grunt to work with static assets: 18 | * http://gruntjs.com/configuring-tasks 19 | */ 20 | 21 | module.exports = function(grunt) { 22 | 23 | 24 | 25 | configureGruntfile(); 26 | 27 | /** 28 | * Load CommonJS submodules from the specified 29 | * relative path. 30 | * 31 | * @return {Object} 32 | */ 33 | function loadTasks (relPath) { 34 | return includeAll({ 35 | dirname: path.resolve(__dirname, relPath), 36 | filter: /(.+)\.js$/ 37 | }); 38 | } 39 | 40 | /** 41 | * Invokes the config function for the task config and register definitions. 42 | * Make sure to pass in grunt. 43 | * 44 | * @param {Object} tasks [Grunt object that each task will need] 45 | */ 46 | function invokeConfigFn (tasks) { 47 | for (var taskName in tasks) { 48 | if (tasks.hasOwnProperty(taskName)) { 49 | tasks[taskName](grunt); 50 | } 51 | } 52 | } 53 | 54 | /** 55 | * Configure the gruntfile. 56 | */ 57 | function configureGruntfile () { 58 | var taskConfigurations = loadTasks('./tasks/config'), 59 | registerDefinitions = loadTasks('./tasks/register'); 60 | 61 | invokeConfigFn(taskConfigurations); 62 | invokeConfigFn(registerDefinitions); 63 | } 64 | }; 65 | -------------------------------------------------------------------------------- /config/session.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Session 3 | * 4 | * Sails session integration leans heavily on the great work already done by Express, but also unifies 5 | * Socket.io with the Connect session store. It uses Connect's cookie parser to normalize configuration 6 | * differences between Express and Socket.io and hooks into Sails' middleware interpreter to allow you 7 | * to access and auto-save to `req.session` with Socket.io the same way you would with Express. 8 | * 9 | * For more information on configuring the session, check out: 10 | * http://sailsjs.org/#documentation 11 | */ 12 | 13 | module.exports.session = { 14 | 15 | // Session secret is automatically generated when your new app is created 16 | // Replace at your own risk in production-- you will invalidate the cookies of your users, 17 | // forcing them to log in again. 18 | secret: '957f7f7f30028d5029c7f0c7f087722c', 19 | 20 | 21 | // Set the session cookie expire time 22 | // The maxAge is set by milliseconds, the example below is for 24 hours 23 | // 24 | // cookie: { 25 | // maxAge: 24 * 60 * 60 * 1000 26 | // } 27 | 28 | 29 | // In production, uncomment the following lines to set up a shared redis session store 30 | // that can be shared across multiple Sails.js servers 31 | // adapter: 'redis', 32 | // 33 | // The following values are optional, if no options are set a redis instance running 34 | // on localhost is expected. 35 | // Read more about options at: https://github.com/visionmedia/connect-redis 36 | // 37 | // host: 'localhost', 38 | // port: 6379, 39 | // ttl: , 40 | // db: 0, 41 | // pass: 42 | // prefix: 'sess:' 43 | 44 | 45 | // Uncomment the following lines to use your Mongo adapter as a session store 46 | // adapter: 'mongo', 47 | // 48 | // host: 'localhost', 49 | // port: 27017, 50 | // db: 'sails', 51 | // collection: 'sessions', 52 | // 53 | // Optional Values: 54 | // 55 | // # Note: url will override other connection settings 56 | // url: 'mongodb://user:pass@host:port/database/collection', 57 | // 58 | // username: '', 59 | // password: '', 60 | // auto_reconnect: false, 61 | // ssl: false, 62 | // stringify: true 63 | 64 | }; 65 | -------------------------------------------------------------------------------- /assets/lib/angular/i18n/angular-locale_ms.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | angular.module("ngLocale", [], ["$provide", function($provide) { 3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"}; 4 | $provide.value("$locale", { 5 | "DATETIME_FORMATS": { 6 | "AMPMS": [ 7 | "PG", 8 | "PTG" 9 | ], 10 | "DAY": [ 11 | "Ahad", 12 | "Isnin", 13 | "Selasa", 14 | "Rabu", 15 | "Khamis", 16 | "Jumaat", 17 | "Sabtu" 18 | ], 19 | "MONTH": [ 20 | "Januari", 21 | "Februari", 22 | "Mac", 23 | "April", 24 | "Mei", 25 | "Jun", 26 | "Julai", 27 | "Ogos", 28 | "September", 29 | "Oktober", 30 | "November", 31 | "Disember" 32 | ], 33 | "SHORTDAY": [ 34 | "Ahd", 35 | "Isn", 36 | "Sel", 37 | "Rab", 38 | "Kha", 39 | "Jum", 40 | "Sab" 41 | ], 42 | "SHORTMONTH": [ 43 | "Jan", 44 | "Feb", 45 | "Mac", 46 | "Apr", 47 | "Mei", 48 | "Jun", 49 | "Jul", 50 | "Ogos", 51 | "Sep", 52 | "Okt", 53 | "Nov", 54 | "Dis" 55 | ], 56 | "fullDate": "EEEE, d MMMM y", 57 | "longDate": "d MMMM y", 58 | "medium": "dd/MM/yyyy h:mm:ss a", 59 | "mediumDate": "dd/MM/yyyy", 60 | "mediumTime": "h:mm:ss a", 61 | "short": "d/MM/yy h:mm a", 62 | "shortDate": "d/MM/yy", 63 | "shortTime": "h:mm a" 64 | }, 65 | "NUMBER_FORMATS": { 66 | "CURRENCY_SYM": "RM", 67 | "DECIMAL_SEP": ".", 68 | "GROUP_SEP": ",", 69 | "PATTERNS": [ 70 | { 71 | "gSize": 3, 72 | "lgSize": 3, 73 | "macFrac": 0, 74 | "maxFrac": 3, 75 | "minFrac": 0, 76 | "minInt": 1, 77 | "negPre": "-", 78 | "negSuf": "", 79 | "posPre": "", 80 | "posSuf": "" 81 | }, 82 | { 83 | "gSize": 3, 84 | "lgSize": 3, 85 | "macFrac": 0, 86 | "maxFrac": 2, 87 | "minFrac": 2, 88 | "minInt": 1, 89 | "negPre": "(\u00a4", 90 | "negSuf": ")", 91 | "posPre": "\u00a4", 92 | "posSuf": "" 93 | } 94 | ] 95 | }, 96 | "id": "ms", 97 | "pluralCat": function (n) { return PLURAL_CATEGORY.OTHER;} 98 | }); 99 | }]); -------------------------------------------------------------------------------- /assets/lib/angular/i18n/angular-locale_id.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | angular.module("ngLocale", [], ["$provide", function($provide) { 3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"}; 4 | $provide.value("$locale", { 5 | "DATETIME_FORMATS": { 6 | "AMPMS": [ 7 | "AM", 8 | "PM" 9 | ], 10 | "DAY": [ 11 | "Minggu", 12 | "Senin", 13 | "Selasa", 14 | "Rabu", 15 | "Kamis", 16 | "Jumat", 17 | "Sabtu" 18 | ], 19 | "MONTH": [ 20 | "Januari", 21 | "Februari", 22 | "Maret", 23 | "April", 24 | "Mei", 25 | "Juni", 26 | "Juli", 27 | "Agustus", 28 | "September", 29 | "Oktober", 30 | "November", 31 | "Desember" 32 | ], 33 | "SHORTDAY": [ 34 | "Min", 35 | "Sen", 36 | "Sel", 37 | "Rab", 38 | "Kam", 39 | "Jum", 40 | "Sab" 41 | ], 42 | "SHORTMONTH": [ 43 | "Jan", 44 | "Feb", 45 | "Mar", 46 | "Apr", 47 | "Mei", 48 | "Jun", 49 | "Jul", 50 | "Agt", 51 | "Sep", 52 | "Okt", 53 | "Nov", 54 | "Des" 55 | ], 56 | "fullDate": "EEEE, dd MMMM yyyy", 57 | "longDate": "d MMMM yyyy", 58 | "medium": "d MMM yyyy HH:mm:ss", 59 | "mediumDate": "d MMM yyyy", 60 | "mediumTime": "HH:mm:ss", 61 | "short": "dd/MM/yy HH:mm", 62 | "shortDate": "dd/MM/yy", 63 | "shortTime": "HH:mm" 64 | }, 65 | "NUMBER_FORMATS": { 66 | "CURRENCY_SYM": "Rp", 67 | "DECIMAL_SEP": ",", 68 | "GROUP_SEP": ".", 69 | "PATTERNS": [ 70 | { 71 | "gSize": 3, 72 | "lgSize": 3, 73 | "macFrac": 0, 74 | "maxFrac": 3, 75 | "minFrac": 0, 76 | "minInt": 1, 77 | "negPre": "-", 78 | "negSuf": "", 79 | "posPre": "", 80 | "posSuf": "" 81 | }, 82 | { 83 | "gSize": 3, 84 | "lgSize": 3, 85 | "macFrac": 0, 86 | "maxFrac": 2, 87 | "minFrac": 2, 88 | "minInt": 1, 89 | "negPre": "\u00a4-", 90 | "negSuf": "", 91 | "posPre": "\u00a4", 92 | "posSuf": "" 93 | } 94 | ] 95 | }, 96 | "id": "id", 97 | "pluralCat": function (n) { return PLURAL_CATEGORY.OTHER;} 98 | }); 99 | }]); -------------------------------------------------------------------------------- /assets/lib/angular/i18n/angular-locale_in.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | angular.module("ngLocale", [], ["$provide", function($provide) { 3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"}; 4 | $provide.value("$locale", { 5 | "DATETIME_FORMATS": { 6 | "AMPMS": [ 7 | "AM", 8 | "PM" 9 | ], 10 | "DAY": [ 11 | "Minggu", 12 | "Senin", 13 | "Selasa", 14 | "Rabu", 15 | "Kamis", 16 | "Jumat", 17 | "Sabtu" 18 | ], 19 | "MONTH": [ 20 | "Januari", 21 | "Februari", 22 | "Maret", 23 | "April", 24 | "Mei", 25 | "Juni", 26 | "Juli", 27 | "Agustus", 28 | "September", 29 | "Oktober", 30 | "November", 31 | "Desember" 32 | ], 33 | "SHORTDAY": [ 34 | "Min", 35 | "Sen", 36 | "Sel", 37 | "Rab", 38 | "Kam", 39 | "Jum", 40 | "Sab" 41 | ], 42 | "SHORTMONTH": [ 43 | "Jan", 44 | "Feb", 45 | "Mar", 46 | "Apr", 47 | "Mei", 48 | "Jun", 49 | "Jul", 50 | "Agt", 51 | "Sep", 52 | "Okt", 53 | "Nov", 54 | "Des" 55 | ], 56 | "fullDate": "EEEE, dd MMMM yyyy", 57 | "longDate": "d MMMM yyyy", 58 | "medium": "d MMM yyyy HH:mm:ss", 59 | "mediumDate": "d MMM yyyy", 60 | "mediumTime": "HH:mm:ss", 61 | "short": "dd/MM/yy HH:mm", 62 | "shortDate": "dd/MM/yy", 63 | "shortTime": "HH:mm" 64 | }, 65 | "NUMBER_FORMATS": { 66 | "CURRENCY_SYM": "Rp", 67 | "DECIMAL_SEP": ",", 68 | "GROUP_SEP": ".", 69 | "PATTERNS": [ 70 | { 71 | "gSize": 3, 72 | "lgSize": 3, 73 | "macFrac": 0, 74 | "maxFrac": 3, 75 | "minFrac": 0, 76 | "minInt": 1, 77 | "negPre": "-", 78 | "negSuf": "", 79 | "posPre": "", 80 | "posSuf": "" 81 | }, 82 | { 83 | "gSize": 3, 84 | "lgSize": 3, 85 | "macFrac": 0, 86 | "maxFrac": 2, 87 | "minFrac": 2, 88 | "minInt": 1, 89 | "negPre": "\u00a4-", 90 | "negSuf": "", 91 | "posPre": "\u00a4", 92 | "posSuf": "" 93 | } 94 | ] 95 | }, 96 | "id": "in", 97 | "pluralCat": function (n) { return PLURAL_CATEGORY.OTHER;} 98 | }); 99 | }]); -------------------------------------------------------------------------------- /assets/lib/angular/i18n/angular-locale_ms-my.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | angular.module("ngLocale", [], ["$provide", function($provide) { 3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"}; 4 | $provide.value("$locale", { 5 | "DATETIME_FORMATS": { 6 | "AMPMS": [ 7 | "PG", 8 | "PTG" 9 | ], 10 | "DAY": [ 11 | "Ahad", 12 | "Isnin", 13 | "Selasa", 14 | "Rabu", 15 | "Khamis", 16 | "Jumaat", 17 | "Sabtu" 18 | ], 19 | "MONTH": [ 20 | "Januari", 21 | "Februari", 22 | "Mac", 23 | "April", 24 | "Mei", 25 | "Jun", 26 | "Julai", 27 | "Ogos", 28 | "September", 29 | "Oktober", 30 | "November", 31 | "Disember" 32 | ], 33 | "SHORTDAY": [ 34 | "Ahd", 35 | "Isn", 36 | "Sel", 37 | "Rab", 38 | "Kha", 39 | "Jum", 40 | "Sab" 41 | ], 42 | "SHORTMONTH": [ 43 | "Jan", 44 | "Feb", 45 | "Mac", 46 | "Apr", 47 | "Mei", 48 | "Jun", 49 | "Jul", 50 | "Ogos", 51 | "Sep", 52 | "Okt", 53 | "Nov", 54 | "Dis" 55 | ], 56 | "fullDate": "EEEE, d MMMM y", 57 | "longDate": "d MMMM y", 58 | "medium": "dd/MM/yyyy h:mm:ss a", 59 | "mediumDate": "dd/MM/yyyy", 60 | "mediumTime": "h:mm:ss a", 61 | "short": "d/MM/yy h:mm a", 62 | "shortDate": "d/MM/yy", 63 | "shortTime": "h:mm a" 64 | }, 65 | "NUMBER_FORMATS": { 66 | "CURRENCY_SYM": "RM", 67 | "DECIMAL_SEP": ".", 68 | "GROUP_SEP": ",", 69 | "PATTERNS": [ 70 | { 71 | "gSize": 3, 72 | "lgSize": 3, 73 | "macFrac": 0, 74 | "maxFrac": 3, 75 | "minFrac": 0, 76 | "minInt": 1, 77 | "negPre": "-", 78 | "negSuf": "", 79 | "posPre": "", 80 | "posSuf": "" 81 | }, 82 | { 83 | "gSize": 3, 84 | "lgSize": 3, 85 | "macFrac": 0, 86 | "maxFrac": 2, 87 | "minFrac": 2, 88 | "minInt": 1, 89 | "negPre": "(\u00a4", 90 | "negSuf": ")", 91 | "posPre": "\u00a4", 92 | "posSuf": "" 93 | } 94 | ] 95 | }, 96 | "id": "ms-my", 97 | "pluralCat": function (n) { return PLURAL_CATEGORY.OTHER;} 98 | }); 99 | }]); -------------------------------------------------------------------------------- /assets/lib/angular/i18n/angular-locale_id-id.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | angular.module("ngLocale", [], ["$provide", function($provide) { 3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"}; 4 | $provide.value("$locale", { 5 | "DATETIME_FORMATS": { 6 | "AMPMS": [ 7 | "AM", 8 | "PM" 9 | ], 10 | "DAY": [ 11 | "Minggu", 12 | "Senin", 13 | "Selasa", 14 | "Rabu", 15 | "Kamis", 16 | "Jumat", 17 | "Sabtu" 18 | ], 19 | "MONTH": [ 20 | "Januari", 21 | "Februari", 22 | "Maret", 23 | "April", 24 | "Mei", 25 | "Juni", 26 | "Juli", 27 | "Agustus", 28 | "September", 29 | "Oktober", 30 | "November", 31 | "Desember" 32 | ], 33 | "SHORTDAY": [ 34 | "Min", 35 | "Sen", 36 | "Sel", 37 | "Rab", 38 | "Kam", 39 | "Jum", 40 | "Sab" 41 | ], 42 | "SHORTMONTH": [ 43 | "Jan", 44 | "Feb", 45 | "Mar", 46 | "Apr", 47 | "Mei", 48 | "Jun", 49 | "Jul", 50 | "Agt", 51 | "Sep", 52 | "Okt", 53 | "Nov", 54 | "Des" 55 | ], 56 | "fullDate": "EEEE, dd MMMM yyyy", 57 | "longDate": "d MMMM yyyy", 58 | "medium": "d MMM yyyy HH:mm:ss", 59 | "mediumDate": "d MMM yyyy", 60 | "mediumTime": "HH:mm:ss", 61 | "short": "dd/MM/yy HH:mm", 62 | "shortDate": "dd/MM/yy", 63 | "shortTime": "HH:mm" 64 | }, 65 | "NUMBER_FORMATS": { 66 | "CURRENCY_SYM": "Rp", 67 | "DECIMAL_SEP": ",", 68 | "GROUP_SEP": ".", 69 | "PATTERNS": [ 70 | { 71 | "gSize": 3, 72 | "lgSize": 3, 73 | "macFrac": 0, 74 | "maxFrac": 3, 75 | "minFrac": 0, 76 | "minInt": 1, 77 | "negPre": "-", 78 | "negSuf": "", 79 | "posPre": "", 80 | "posSuf": "" 81 | }, 82 | { 83 | "gSize": 3, 84 | "lgSize": 3, 85 | "macFrac": 0, 86 | "maxFrac": 2, 87 | "minFrac": 2, 88 | "minInt": 1, 89 | "negPre": "\u00a4-", 90 | "negSuf": "", 91 | "posPre": "\u00a4", 92 | "posSuf": "" 93 | } 94 | ] 95 | }, 96 | "id": "id-id", 97 | "pluralCat": function (n) { return PLURAL_CATEGORY.OTHER;} 98 | }); 99 | }]); -------------------------------------------------------------------------------- /tasks/values/injectedFiles.js: -------------------------------------------------------------------------------- 1 | /** 2 | * CSS files to inject in order 3 | * (uses Grunt-style wildcard/glob/splat expressions) 4 | * 5 | * By default, Sails also supports LESS in development and production. 6 | * To use SASS/SCSS, Stylus, etc., edit the `sails-linker:devStyles` task 7 | * below for more options. For this to work, you may need to install new 8 | * dependencies, e.g. `npm install grunt-contrib-sass` 9 | */ 10 | var cssFilesToInject = [ 11 | 'styles/**/*.css' 12 | ]; 13 | 14 | /** 15 | * Javascript files to inject in order 16 | * (uses Grunt-style wildcard/glob/splat expressions) 17 | * 18 | * To use client-side CoffeeScript, TypeScript, etc., edit the 19 | * `sails-linker:devJs` task below for more options. 20 | */ 21 | 22 | var jsFilesToInject = [ 23 | 24 | // Below, as a demonstration, you'll see the built-in dependencies 25 | // linked in the proper order order 26 | 27 | // Bring in the socket.io client 28 | 'js/socket.io.js', 29 | 30 | // then beef it up with some convenience logic for talking to Sails.js 31 | 'js/sails.io.js', 32 | 33 | // A simpler boilerplate library for getting you up and running w/ an 34 | // automatic listener for incoming messages from Socket.io. 35 | 'js/app.js', 36 | 37 | // *-> put other dependencies here <-* 38 | 39 | // All of the rest of your app scripts imported here 40 | 'js/**/*.js' 41 | ]; 42 | 43 | /** 44 | * Client-side HTML templates are injected using the sources below 45 | * The ordering of these templates shouldn't matter. 46 | * (uses Grunt-style wildcard/glob/splat expressions) 47 | * 48 | * By default, Sails uses JST templates and precompiles them into 49 | * functions for you. If you want to use jade, handlebars, dust, etc., 50 | * edit the relevant sections below. 51 | */ 52 | 53 | var templateFilesToInject = [ 54 | 'template/**/*.html' 55 | ] 56 | 57 | module.exports = { 58 | // Modify css file injection paths to use 59 | cssFilesToInject: cssFilesToInject.map(function(path) { 60 | return '.tmp/public/' + path; 61 | }), 62 | 63 | // Modify js file injection paths to use 64 | jsFilesToInject: jsFilesToInject.map(function(path) { 65 | return '.tmp/public/' + path; 66 | }), 67 | 68 | 69 | templateFilesToInject: templateFilesToInject.map(function(path) { 70 | return 'assets/' + path; 71 | }) 72 | }; 73 | -------------------------------------------------------------------------------- /assets/lib/angular/angular-cookies.min.js.map: -------------------------------------------------------------------------------- 1 | { 2 | "version":3, 3 | "file":"angular-cookies.min.js", 4 | "lineCount":7, 5 | "mappings":"A;;;;;aAKC,SAAQ,CAACA,CAAD,CAASC,CAAT,CAAkBC,CAAlB,CAA6B,CAoBtCD,CAAAE,OAAA,CAAe,WAAf,CAA4B,CAAC,IAAD,CAA5B,CAAAC,QAAA,CA4BW,UA5BX,CA4BuB,CAAC,YAAD,CAAe,UAAf,CAA2B,QAAS,CAACC,CAAD,CAAaC,CAAb,CAAuB,CAAA,IACxEC,EAAU,EAD8D,CAExEC,EAAc,EAF0D,CAGxEC,CAHwE,CAIxEC,EAAU,CAAA,CAJ8D,CAKxEC,EAAOV,CAAAU,KALiE,CAMxEC,EAAcX,CAAAW,YAGlBN,EAAAO,UAAA,CAAmB,QAAQ,EAAG,CAC5B,IAAIC,EAAiBR,CAAAC,QAAA,EACjBE,EAAJ,EAA0BK,CAA1B,GACEL,CAGA,CAHqBK,CAGrB,CAFAH,CAAA,CAAKG,CAAL,CAAqBN,CAArB,CAEA,CADAG,CAAA,CAAKG,CAAL,CAAqBP,CAArB,CACA,CAAIG,CAAJ,EAAaL,CAAAU,OAAA,EAJf,CAF4B,CAA9B,CAAA,EAUAL,EAAA,CAAU,CAAA,CAKVL,EAAAW,OAAA,CASAC,QAAa,EAAG,CAAA,IACVC,CADU,CAEVC,CAFU,CAIVC,CAGJ,KAAKF,CAAL,GAAaV,EAAb,CACMI,CAAA,CAAYL,CAAA,CAAQW,CAAR,CAAZ,CAAJ,EACEZ,CAAAC,QAAA,CAAiBW,CAAjB,CAAuBhB,CAAvB,CAKJ,KAAIgB,CAAJ,GAAYX,EAAZ,CAEE,CADAY,CACK,CADGZ,CAAA,CAAQW,CAAR,CACH,CAAAjB,CAAAoB,SAAA,CAAiBF,CAAjB,CAAL,EAMWA,CANX,GAMqBX,CAAA,CAAYU,CAAZ,CANrB,GAOEZ,CAAAC,QAAA,CAAiBW,CAAjB,CAAuBC,CAAvB,CACA,CAAAC,CAAA,CAAU,CAAA,CARZ,EACMnB,CAAAqB,UAAA,CAAkBd,CAAA,CAAYU,CAAZ,CAAlB,CAAJ,CACEX,CAAA,CAAQW,CAAR,CADF,CACkBV,CAAA,CAAYU,CAAZ,CADlB,CAGE,OAAOX,CAAA,CAAQW,CAAR,CASb,IAAIE,CAAJ,CAIE,IAAKF,CAAL,GAFAK,EAEahB,CAFID,CAAAC,QAAA,EAEJA,CAAAA,CAAb,CACMA,CAAA,CAAQW,CAAR,CAAJ,GAAsBK,CAAA,CAAeL,CAAf,CAAtB,GAEMN,CAAA,CAAYW,CAAA,CAAeL,CAAf,CAAZ,CAAJ,CACE,OAAOX,CAAA,CAAQW,CAAR,CADT,CAGEX,CAAA,CAAQW,CAAR,CAHF,CAGkBK,CAAA,CAAeL,CAAf,CALpB,CAlCU,CAThB,CAEA;MAAOX,EA1BqE,CAA3D,CA5BvB,CAAAH,QAAA,CA4HW,cA5HX,CA4H2B,CAAC,UAAD,CAAa,QAAQ,CAACoB,CAAD,CAAW,CAErD,MAAO,KAYAC,QAAQ,CAACC,CAAD,CAAM,CAEjB,MAAO,CADHP,CACG,CADKK,CAAA,CAASE,CAAT,CACL,EAAQzB,CAAA0B,SAAA,CAAiBR,CAAjB,CAAR,CAAkCA,CAFxB,CAZd,KA4BAS,QAAQ,CAACF,CAAD,CAAMP,CAAN,CAAa,CACxBK,CAAA,CAASE,CAAT,CAAA,CAAgBzB,CAAA4B,OAAA,CAAeV,CAAf,CADQ,CA5BrB,QA0CGW,QAAQ,CAACJ,CAAD,CAAM,CACpB,OAAOF,CAAA,CAASE,CAAT,CADa,CA1CjB,CAF8C,CAAhC,CA5H3B,CApBsC,CAArC,CAAA,CAoME1B,MApMF,CAoMUA,MAAAC,QApMV;", 6 | "sources":["angular-cookies.js"], 7 | "names":["window","angular","undefined","module","factory","$rootScope","$browser","cookies","lastCookies","lastBrowserCookies","runEval","copy","isUndefined","addPollFn","currentCookies","$apply","$watch","push","name","value","updated","isString","isDefined","browserCookies","$cookies","get","key","fromJson","put","toJson","remove"] 8 | } 9 | -------------------------------------------------------------------------------- /assets/lib/angular/i18n/angular-locale_en-bz.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | angular.module("ngLocale", [], ["$provide", function($provide) { 3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"}; 4 | $provide.value("$locale", { 5 | "DATETIME_FORMATS": { 6 | "AMPMS": [ 7 | "AM", 8 | "PM" 9 | ], 10 | "DAY": [ 11 | "Sunday", 12 | "Monday", 13 | "Tuesday", 14 | "Wednesday", 15 | "Thursday", 16 | "Friday", 17 | "Saturday" 18 | ], 19 | "MONTH": [ 20 | "January", 21 | "February", 22 | "March", 23 | "April", 24 | "May", 25 | "June", 26 | "July", 27 | "August", 28 | "September", 29 | "October", 30 | "November", 31 | "December" 32 | ], 33 | "SHORTDAY": [ 34 | "Sun", 35 | "Mon", 36 | "Tue", 37 | "Wed", 38 | "Thu", 39 | "Fri", 40 | "Sat" 41 | ], 42 | "SHORTMONTH": [ 43 | "Jan", 44 | "Feb", 45 | "Mar", 46 | "Apr", 47 | "May", 48 | "Jun", 49 | "Jul", 50 | "Aug", 51 | "Sep", 52 | "Oct", 53 | "Nov", 54 | "Dec" 55 | ], 56 | "fullDate": "dd MMMM y", 57 | "longDate": "dd MMMM y", 58 | "medium": "dd-MMM-y HH:mm:ss", 59 | "mediumDate": "dd-MMM-y", 60 | "mediumTime": "HH:mm:ss", 61 | "short": "dd/MM/yy HH:mm", 62 | "shortDate": "dd/MM/yy", 63 | "shortTime": "HH:mm" 64 | }, 65 | "NUMBER_FORMATS": { 66 | "CURRENCY_SYM": "$", 67 | "DECIMAL_SEP": ".", 68 | "GROUP_SEP": ",", 69 | "PATTERNS": [ 70 | { 71 | "gSize": 3, 72 | "lgSize": 3, 73 | "macFrac": 0, 74 | "maxFrac": 3, 75 | "minFrac": 0, 76 | "minInt": 1, 77 | "negPre": "-", 78 | "negSuf": "", 79 | "posPre": "", 80 | "posSuf": "" 81 | }, 82 | { 83 | "gSize": 3, 84 | "lgSize": 3, 85 | "macFrac": 0, 86 | "maxFrac": 2, 87 | "minFrac": 2, 88 | "minInt": 1, 89 | "negPre": "(\u00a4", 90 | "negSuf": ")", 91 | "posPre": "\u00a4", 92 | "posSuf": "" 93 | } 94 | ] 95 | }, 96 | "id": "en-bz", 97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} 98 | }); 99 | }]); -------------------------------------------------------------------------------- /assets/lib/angular/i18n/angular-locale_en.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | angular.module("ngLocale", [], ["$provide", function($provide) { 3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"}; 4 | $provide.value("$locale", { 5 | "DATETIME_FORMATS": { 6 | "AMPMS": [ 7 | "AM", 8 | "PM" 9 | ], 10 | "DAY": [ 11 | "Sunday", 12 | "Monday", 13 | "Tuesday", 14 | "Wednesday", 15 | "Thursday", 16 | "Friday", 17 | "Saturday" 18 | ], 19 | "MONTH": [ 20 | "January", 21 | "February", 22 | "March", 23 | "April", 24 | "May", 25 | "June", 26 | "July", 27 | "August", 28 | "September", 29 | "October", 30 | "November", 31 | "December" 32 | ], 33 | "SHORTDAY": [ 34 | "Sun", 35 | "Mon", 36 | "Tue", 37 | "Wed", 38 | "Thu", 39 | "Fri", 40 | "Sat" 41 | ], 42 | "SHORTMONTH": [ 43 | "Jan", 44 | "Feb", 45 | "Mar", 46 | "Apr", 47 | "May", 48 | "Jun", 49 | "Jul", 50 | "Aug", 51 | "Sep", 52 | "Oct", 53 | "Nov", 54 | "Dec" 55 | ], 56 | "fullDate": "EEEE, MMMM d, y", 57 | "longDate": "MMMM d, y", 58 | "medium": "MMM d, y h:mm:ss a", 59 | "mediumDate": "MMM d, y", 60 | "mediumTime": "h:mm:ss a", 61 | "short": "M/d/yy h:mm a", 62 | "shortDate": "M/d/yy", 63 | "shortTime": "h:mm a" 64 | }, 65 | "NUMBER_FORMATS": { 66 | "CURRENCY_SYM": "$", 67 | "DECIMAL_SEP": ".", 68 | "GROUP_SEP": ",", 69 | "PATTERNS": [ 70 | { 71 | "gSize": 3, 72 | "lgSize": 3, 73 | "macFrac": 0, 74 | "maxFrac": 3, 75 | "minFrac": 0, 76 | "minInt": 1, 77 | "negPre": "-", 78 | "negSuf": "", 79 | "posPre": "", 80 | "posSuf": "" 81 | }, 82 | { 83 | "gSize": 3, 84 | "lgSize": 3, 85 | "macFrac": 0, 86 | "maxFrac": 2, 87 | "minFrac": 2, 88 | "minInt": 1, 89 | "negPre": "(\u00a4", 90 | "negSuf": ")", 91 | "posPre": "\u00a4", 92 | "posSuf": "" 93 | } 94 | ] 95 | }, 96 | "id": "en", 97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} 98 | }); 99 | }]); -------------------------------------------------------------------------------- /assets/lib/angular/i18n/angular-locale_en-as.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | angular.module("ngLocale", [], ["$provide", function($provide) { 3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"}; 4 | $provide.value("$locale", { 5 | "DATETIME_FORMATS": { 6 | "AMPMS": [ 7 | "AM", 8 | "PM" 9 | ], 10 | "DAY": [ 11 | "Sunday", 12 | "Monday", 13 | "Tuesday", 14 | "Wednesday", 15 | "Thursday", 16 | "Friday", 17 | "Saturday" 18 | ], 19 | "MONTH": [ 20 | "January", 21 | "February", 22 | "March", 23 | "April", 24 | "May", 25 | "June", 26 | "July", 27 | "August", 28 | "September", 29 | "October", 30 | "November", 31 | "December" 32 | ], 33 | "SHORTDAY": [ 34 | "Sun", 35 | "Mon", 36 | "Tue", 37 | "Wed", 38 | "Thu", 39 | "Fri", 40 | "Sat" 41 | ], 42 | "SHORTMONTH": [ 43 | "Jan", 44 | "Feb", 45 | "Mar", 46 | "Apr", 47 | "May", 48 | "Jun", 49 | "Jul", 50 | "Aug", 51 | "Sep", 52 | "Oct", 53 | "Nov", 54 | "Dec" 55 | ], 56 | "fullDate": "EEEE, MMMM d, y", 57 | "longDate": "MMMM d, y", 58 | "medium": "MMM d, y h:mm:ss a", 59 | "mediumDate": "MMM d, y", 60 | "mediumTime": "h:mm:ss a", 61 | "short": "M/d/yy h:mm a", 62 | "shortDate": "M/d/yy", 63 | "shortTime": "h:mm a" 64 | }, 65 | "NUMBER_FORMATS": { 66 | "CURRENCY_SYM": "$", 67 | "DECIMAL_SEP": ".", 68 | "GROUP_SEP": ",", 69 | "PATTERNS": [ 70 | { 71 | "gSize": 3, 72 | "lgSize": 3, 73 | "macFrac": 0, 74 | "maxFrac": 3, 75 | "minFrac": 0, 76 | "minInt": 1, 77 | "negPre": "-", 78 | "negSuf": "", 79 | "posPre": "", 80 | "posSuf": "" 81 | }, 82 | { 83 | "gSize": 3, 84 | "lgSize": 3, 85 | "macFrac": 0, 86 | "maxFrac": 2, 87 | "minFrac": 2, 88 | "minInt": 1, 89 | "negPre": "(\u00a4", 90 | "negSuf": ")", 91 | "posPre": "\u00a4", 92 | "posSuf": "" 93 | } 94 | ] 95 | }, 96 | "id": "en-as", 97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} 98 | }); 99 | }]); -------------------------------------------------------------------------------- /assets/lib/angular/i18n/angular-locale_en-bb.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | angular.module("ngLocale", [], ["$provide", function($provide) { 3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"}; 4 | $provide.value("$locale", { 5 | "DATETIME_FORMATS": { 6 | "AMPMS": [ 7 | "AM", 8 | "PM" 9 | ], 10 | "DAY": [ 11 | "Sunday", 12 | "Monday", 13 | "Tuesday", 14 | "Wednesday", 15 | "Thursday", 16 | "Friday", 17 | "Saturday" 18 | ], 19 | "MONTH": [ 20 | "January", 21 | "February", 22 | "March", 23 | "April", 24 | "May", 25 | "June", 26 | "July", 27 | "August", 28 | "September", 29 | "October", 30 | "November", 31 | "December" 32 | ], 33 | "SHORTDAY": [ 34 | "Sun", 35 | "Mon", 36 | "Tue", 37 | "Wed", 38 | "Thu", 39 | "Fri", 40 | "Sat" 41 | ], 42 | "SHORTMONTH": [ 43 | "Jan", 44 | "Feb", 45 | "Mar", 46 | "Apr", 47 | "May", 48 | "Jun", 49 | "Jul", 50 | "Aug", 51 | "Sep", 52 | "Oct", 53 | "Nov", 54 | "Dec" 55 | ], 56 | "fullDate": "EEEE, MMMM d, y", 57 | "longDate": "MMMM d, y", 58 | "medium": "MMM d, y h:mm:ss a", 59 | "mediumDate": "MMM d, y", 60 | "mediumTime": "h:mm:ss a", 61 | "short": "M/d/yy h:mm a", 62 | "shortDate": "M/d/yy", 63 | "shortTime": "h:mm a" 64 | }, 65 | "NUMBER_FORMATS": { 66 | "CURRENCY_SYM": "$", 67 | "DECIMAL_SEP": ".", 68 | "GROUP_SEP": ",", 69 | "PATTERNS": [ 70 | { 71 | "gSize": 3, 72 | "lgSize": 3, 73 | "macFrac": 0, 74 | "maxFrac": 3, 75 | "minFrac": 0, 76 | "minInt": 1, 77 | "negPre": "-", 78 | "negSuf": "", 79 | "posPre": "", 80 | "posSuf": "" 81 | }, 82 | { 83 | "gSize": 3, 84 | "lgSize": 3, 85 | "macFrac": 0, 86 | "maxFrac": 2, 87 | "minFrac": 2, 88 | "minInt": 1, 89 | "negPre": "(\u00a4", 90 | "negSuf": ")", 91 | "posPre": "\u00a4", 92 | "posSuf": "" 93 | } 94 | ] 95 | }, 96 | "id": "en-bb", 97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} 98 | }); 99 | }]); -------------------------------------------------------------------------------- /assets/lib/angular/i18n/angular-locale_en-be.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | angular.module("ngLocale", [], ["$provide", function($provide) { 3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"}; 4 | $provide.value("$locale", { 5 | "DATETIME_FORMATS": { 6 | "AMPMS": [ 7 | "AM", 8 | "PM" 9 | ], 10 | "DAY": [ 11 | "Sunday", 12 | "Monday", 13 | "Tuesday", 14 | "Wednesday", 15 | "Thursday", 16 | "Friday", 17 | "Saturday" 18 | ], 19 | "MONTH": [ 20 | "January", 21 | "February", 22 | "March", 23 | "April", 24 | "May", 25 | "June", 26 | "July", 27 | "August", 28 | "September", 29 | "October", 30 | "November", 31 | "December" 32 | ], 33 | "SHORTDAY": [ 34 | "Sun", 35 | "Mon", 36 | "Tue", 37 | "Wed", 38 | "Thu", 39 | "Fri", 40 | "Sat" 41 | ], 42 | "SHORTMONTH": [ 43 | "Jan", 44 | "Feb", 45 | "Mar", 46 | "Apr", 47 | "May", 48 | "Jun", 49 | "Jul", 50 | "Aug", 51 | "Sep", 52 | "Oct", 53 | "Nov", 54 | "Dec" 55 | ], 56 | "fullDate": "EEEE d MMMM y", 57 | "longDate": "d MMM y", 58 | "medium": "dd MMM y HH:mm:ss", 59 | "mediumDate": "dd MMM y", 60 | "mediumTime": "HH:mm:ss", 61 | "short": "dd/MM/yy HH:mm", 62 | "shortDate": "dd/MM/yy", 63 | "shortTime": "HH:mm" 64 | }, 65 | "NUMBER_FORMATS": { 66 | "CURRENCY_SYM": "$", 67 | "DECIMAL_SEP": ".", 68 | "GROUP_SEP": ",", 69 | "PATTERNS": [ 70 | { 71 | "gSize": 3, 72 | "lgSize": 3, 73 | "macFrac": 0, 74 | "maxFrac": 3, 75 | "minFrac": 0, 76 | "minInt": 1, 77 | "negPre": "-", 78 | "negSuf": "", 79 | "posPre": "", 80 | "posSuf": "" 81 | }, 82 | { 83 | "gSize": 3, 84 | "lgSize": 3, 85 | "macFrac": 0, 86 | "maxFrac": 2, 87 | "minFrac": 2, 88 | "minInt": 1, 89 | "negPre": "(\u00a4", 90 | "negSuf": ")", 91 | "posPre": "\u00a4", 92 | "posSuf": "" 93 | } 94 | ] 95 | }, 96 | "id": "en-be", 97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} 98 | }); 99 | }]); -------------------------------------------------------------------------------- /assets/lib/angular/i18n/angular-locale_en-bm.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | angular.module("ngLocale", [], ["$provide", function($provide) { 3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"}; 4 | $provide.value("$locale", { 5 | "DATETIME_FORMATS": { 6 | "AMPMS": [ 7 | "AM", 8 | "PM" 9 | ], 10 | "DAY": [ 11 | "Sunday", 12 | "Monday", 13 | "Tuesday", 14 | "Wednesday", 15 | "Thursday", 16 | "Friday", 17 | "Saturday" 18 | ], 19 | "MONTH": [ 20 | "January", 21 | "February", 22 | "March", 23 | "April", 24 | "May", 25 | "June", 26 | "July", 27 | "August", 28 | "September", 29 | "October", 30 | "November", 31 | "December" 32 | ], 33 | "SHORTDAY": [ 34 | "Sun", 35 | "Mon", 36 | "Tue", 37 | "Wed", 38 | "Thu", 39 | "Fri", 40 | "Sat" 41 | ], 42 | "SHORTMONTH": [ 43 | "Jan", 44 | "Feb", 45 | "Mar", 46 | "Apr", 47 | "May", 48 | "Jun", 49 | "Jul", 50 | "Aug", 51 | "Sep", 52 | "Oct", 53 | "Nov", 54 | "Dec" 55 | ], 56 | "fullDate": "EEEE, MMMM d, y", 57 | "longDate": "MMMM d, y", 58 | "medium": "MMM d, y h:mm:ss a", 59 | "mediumDate": "MMM d, y", 60 | "mediumTime": "h:mm:ss a", 61 | "short": "M/d/yy h:mm a", 62 | "shortDate": "M/d/yy", 63 | "shortTime": "h:mm a" 64 | }, 65 | "NUMBER_FORMATS": { 66 | "CURRENCY_SYM": "$", 67 | "DECIMAL_SEP": ".", 68 | "GROUP_SEP": ",", 69 | "PATTERNS": [ 70 | { 71 | "gSize": 3, 72 | "lgSize": 3, 73 | "macFrac": 0, 74 | "maxFrac": 3, 75 | "minFrac": 0, 76 | "minInt": 1, 77 | "negPre": "-", 78 | "negSuf": "", 79 | "posPre": "", 80 | "posSuf": "" 81 | }, 82 | { 83 | "gSize": 3, 84 | "lgSize": 3, 85 | "macFrac": 0, 86 | "maxFrac": 2, 87 | "minFrac": 2, 88 | "minInt": 1, 89 | "negPre": "(\u00a4", 90 | "negSuf": ")", 91 | "posPre": "\u00a4", 92 | "posSuf": "" 93 | } 94 | ] 95 | }, 96 | "id": "en-bm", 97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} 98 | }); 99 | }]); -------------------------------------------------------------------------------- /assets/lib/angular/i18n/angular-locale_en-fm.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | angular.module("ngLocale", [], ["$provide", function($provide) { 3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"}; 4 | $provide.value("$locale", { 5 | "DATETIME_FORMATS": { 6 | "AMPMS": [ 7 | "AM", 8 | "PM" 9 | ], 10 | "DAY": [ 11 | "Sunday", 12 | "Monday", 13 | "Tuesday", 14 | "Wednesday", 15 | "Thursday", 16 | "Friday", 17 | "Saturday" 18 | ], 19 | "MONTH": [ 20 | "January", 21 | "February", 22 | "March", 23 | "April", 24 | "May", 25 | "June", 26 | "July", 27 | "August", 28 | "September", 29 | "October", 30 | "November", 31 | "December" 32 | ], 33 | "SHORTDAY": [ 34 | "Sun", 35 | "Mon", 36 | "Tue", 37 | "Wed", 38 | "Thu", 39 | "Fri", 40 | "Sat" 41 | ], 42 | "SHORTMONTH": [ 43 | "Jan", 44 | "Feb", 45 | "Mar", 46 | "Apr", 47 | "May", 48 | "Jun", 49 | "Jul", 50 | "Aug", 51 | "Sep", 52 | "Oct", 53 | "Nov", 54 | "Dec" 55 | ], 56 | "fullDate": "EEEE, MMMM d, y", 57 | "longDate": "MMMM d, y", 58 | "medium": "MMM d, y h:mm:ss a", 59 | "mediumDate": "MMM d, y", 60 | "mediumTime": "h:mm:ss a", 61 | "short": "M/d/yy h:mm a", 62 | "shortDate": "M/d/yy", 63 | "shortTime": "h:mm a" 64 | }, 65 | "NUMBER_FORMATS": { 66 | "CURRENCY_SYM": "$", 67 | "DECIMAL_SEP": ".", 68 | "GROUP_SEP": ",", 69 | "PATTERNS": [ 70 | { 71 | "gSize": 3, 72 | "lgSize": 3, 73 | "macFrac": 0, 74 | "maxFrac": 3, 75 | "minFrac": 0, 76 | "minInt": 1, 77 | "negPre": "-", 78 | "negSuf": "", 79 | "posPre": "", 80 | "posSuf": "" 81 | }, 82 | { 83 | "gSize": 3, 84 | "lgSize": 3, 85 | "macFrac": 0, 86 | "maxFrac": 2, 87 | "minFrac": 2, 88 | "minInt": 1, 89 | "negPre": "(\u00a4", 90 | "negSuf": ")", 91 | "posPre": "\u00a4", 92 | "posSuf": "" 93 | } 94 | ] 95 | }, 96 | "id": "en-fm", 97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} 98 | }); 99 | }]); -------------------------------------------------------------------------------- /assets/lib/angular/i18n/angular-locale_en-gu.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | angular.module("ngLocale", [], ["$provide", function($provide) { 3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"}; 4 | $provide.value("$locale", { 5 | "DATETIME_FORMATS": { 6 | "AMPMS": [ 7 | "AM", 8 | "PM" 9 | ], 10 | "DAY": [ 11 | "Sunday", 12 | "Monday", 13 | "Tuesday", 14 | "Wednesday", 15 | "Thursday", 16 | "Friday", 17 | "Saturday" 18 | ], 19 | "MONTH": [ 20 | "January", 21 | "February", 22 | "March", 23 | "April", 24 | "May", 25 | "June", 26 | "July", 27 | "August", 28 | "September", 29 | "October", 30 | "November", 31 | "December" 32 | ], 33 | "SHORTDAY": [ 34 | "Sun", 35 | "Mon", 36 | "Tue", 37 | "Wed", 38 | "Thu", 39 | "Fri", 40 | "Sat" 41 | ], 42 | "SHORTMONTH": [ 43 | "Jan", 44 | "Feb", 45 | "Mar", 46 | "Apr", 47 | "May", 48 | "Jun", 49 | "Jul", 50 | "Aug", 51 | "Sep", 52 | "Oct", 53 | "Nov", 54 | "Dec" 55 | ], 56 | "fullDate": "EEEE, MMMM d, y", 57 | "longDate": "MMMM d, y", 58 | "medium": "MMM d, y h:mm:ss a", 59 | "mediumDate": "MMM d, y", 60 | "mediumTime": "h:mm:ss a", 61 | "short": "M/d/yy h:mm a", 62 | "shortDate": "M/d/yy", 63 | "shortTime": "h:mm a" 64 | }, 65 | "NUMBER_FORMATS": { 66 | "CURRENCY_SYM": "$", 67 | "DECIMAL_SEP": ".", 68 | "GROUP_SEP": ",", 69 | "PATTERNS": [ 70 | { 71 | "gSize": 3, 72 | "lgSize": 3, 73 | "macFrac": 0, 74 | "maxFrac": 3, 75 | "minFrac": 0, 76 | "minInt": 1, 77 | "negPre": "-", 78 | "negSuf": "", 79 | "posPre": "", 80 | "posSuf": "" 81 | }, 82 | { 83 | "gSize": 3, 84 | "lgSize": 3, 85 | "macFrac": 0, 86 | "maxFrac": 2, 87 | "minFrac": 2, 88 | "minInt": 1, 89 | "negPre": "(\u00a4", 90 | "negSuf": ")", 91 | "posPre": "\u00a4", 92 | "posSuf": "" 93 | } 94 | ] 95 | }, 96 | "id": "en-gu", 97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} 98 | }); 99 | }]); -------------------------------------------------------------------------------- /assets/lib/angular/i18n/angular-locale_en-gy.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | angular.module("ngLocale", [], ["$provide", function($provide) { 3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"}; 4 | $provide.value("$locale", { 5 | "DATETIME_FORMATS": { 6 | "AMPMS": [ 7 | "AM", 8 | "PM" 9 | ], 10 | "DAY": [ 11 | "Sunday", 12 | "Monday", 13 | "Tuesday", 14 | "Wednesday", 15 | "Thursday", 16 | "Friday", 17 | "Saturday" 18 | ], 19 | "MONTH": [ 20 | "January", 21 | "February", 22 | "March", 23 | "April", 24 | "May", 25 | "June", 26 | "July", 27 | "August", 28 | "September", 29 | "October", 30 | "November", 31 | "December" 32 | ], 33 | "SHORTDAY": [ 34 | "Sun", 35 | "Mon", 36 | "Tue", 37 | "Wed", 38 | "Thu", 39 | "Fri", 40 | "Sat" 41 | ], 42 | "SHORTMONTH": [ 43 | "Jan", 44 | "Feb", 45 | "Mar", 46 | "Apr", 47 | "May", 48 | "Jun", 49 | "Jul", 50 | "Aug", 51 | "Sep", 52 | "Oct", 53 | "Nov", 54 | "Dec" 55 | ], 56 | "fullDate": "EEEE, MMMM d, y", 57 | "longDate": "MMMM d, y", 58 | "medium": "MMM d, y h:mm:ss a", 59 | "mediumDate": "MMM d, y", 60 | "mediumTime": "h:mm:ss a", 61 | "short": "M/d/yy h:mm a", 62 | "shortDate": "M/d/yy", 63 | "shortTime": "h:mm a" 64 | }, 65 | "NUMBER_FORMATS": { 66 | "CURRENCY_SYM": "$", 67 | "DECIMAL_SEP": ".", 68 | "GROUP_SEP": ",", 69 | "PATTERNS": [ 70 | { 71 | "gSize": 3, 72 | "lgSize": 3, 73 | "macFrac": 0, 74 | "maxFrac": 3, 75 | "minFrac": 0, 76 | "minInt": 1, 77 | "negPre": "-", 78 | "negSuf": "", 79 | "posPre": "", 80 | "posSuf": "" 81 | }, 82 | { 83 | "gSize": 3, 84 | "lgSize": 3, 85 | "macFrac": 0, 86 | "maxFrac": 2, 87 | "minFrac": 2, 88 | "minInt": 1, 89 | "negPre": "(\u00a4", 90 | "negSuf": ")", 91 | "posPre": "\u00a4", 92 | "posSuf": "" 93 | } 94 | ] 95 | }, 96 | "id": "en-gy", 97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} 98 | }); 99 | }]); -------------------------------------------------------------------------------- /assets/lib/angular/i18n/angular-locale_en-hk.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | angular.module("ngLocale", [], ["$provide", function($provide) { 3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"}; 4 | $provide.value("$locale", { 5 | "DATETIME_FORMATS": { 6 | "AMPMS": [ 7 | "AM", 8 | "PM" 9 | ], 10 | "DAY": [ 11 | "Sunday", 12 | "Monday", 13 | "Tuesday", 14 | "Wednesday", 15 | "Thursday", 16 | "Friday", 17 | "Saturday" 18 | ], 19 | "MONTH": [ 20 | "January", 21 | "February", 22 | "March", 23 | "April", 24 | "May", 25 | "June", 26 | "July", 27 | "August", 28 | "September", 29 | "October", 30 | "November", 31 | "December" 32 | ], 33 | "SHORTDAY": [ 34 | "Sun", 35 | "Mon", 36 | "Tue", 37 | "Wed", 38 | "Thu", 39 | "Fri", 40 | "Sat" 41 | ], 42 | "SHORTMONTH": [ 43 | "Jan", 44 | "Feb", 45 | "Mar", 46 | "Apr", 47 | "May", 48 | "Jun", 49 | "Jul", 50 | "Aug", 51 | "Sep", 52 | "Oct", 53 | "Nov", 54 | "Dec" 55 | ], 56 | "fullDate": "EEEE, d MMMM, y", 57 | "longDate": "d MMMM, y", 58 | "medium": "d MMM, y h:mm:ss a", 59 | "mediumDate": "d MMM, y", 60 | "mediumTime": "h:mm:ss a", 61 | "short": "d/M/yy h:mm a", 62 | "shortDate": "d/M/yy", 63 | "shortTime": "h:mm a" 64 | }, 65 | "NUMBER_FORMATS": { 66 | "CURRENCY_SYM": "$", 67 | "DECIMAL_SEP": ".", 68 | "GROUP_SEP": ",", 69 | "PATTERNS": [ 70 | { 71 | "gSize": 3, 72 | "lgSize": 3, 73 | "macFrac": 0, 74 | "maxFrac": 3, 75 | "minFrac": 0, 76 | "minInt": 1, 77 | "negPre": "-", 78 | "negSuf": "", 79 | "posPre": "", 80 | "posSuf": "" 81 | }, 82 | { 83 | "gSize": 3, 84 | "lgSize": 3, 85 | "macFrac": 0, 86 | "maxFrac": 2, 87 | "minFrac": 2, 88 | "minInt": 1, 89 | "negPre": "(\u00a4", 90 | "negSuf": ")", 91 | "posPre": "\u00a4", 92 | "posSuf": "" 93 | } 94 | ] 95 | }, 96 | "id": "en-hk", 97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} 98 | }); 99 | }]); -------------------------------------------------------------------------------- /assets/lib/angular/i18n/angular-locale_en-jm.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | angular.module("ngLocale", [], ["$provide", function($provide) { 3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"}; 4 | $provide.value("$locale", { 5 | "DATETIME_FORMATS": { 6 | "AMPMS": [ 7 | "AM", 8 | "PM" 9 | ], 10 | "DAY": [ 11 | "Sunday", 12 | "Monday", 13 | "Tuesday", 14 | "Wednesday", 15 | "Thursday", 16 | "Friday", 17 | "Saturday" 18 | ], 19 | "MONTH": [ 20 | "January", 21 | "February", 22 | "March", 23 | "April", 24 | "May", 25 | "June", 26 | "July", 27 | "August", 28 | "September", 29 | "October", 30 | "November", 31 | "December" 32 | ], 33 | "SHORTDAY": [ 34 | "Sun", 35 | "Mon", 36 | "Tue", 37 | "Wed", 38 | "Thu", 39 | "Fri", 40 | "Sat" 41 | ], 42 | "SHORTMONTH": [ 43 | "Jan", 44 | "Feb", 45 | "Mar", 46 | "Apr", 47 | "May", 48 | "Jun", 49 | "Jul", 50 | "Aug", 51 | "Sep", 52 | "Oct", 53 | "Nov", 54 | "Dec" 55 | ], 56 | "fullDate": "EEEE, MMMM d, y", 57 | "longDate": "MMMM d, y", 58 | "medium": "MMM d, y h:mm:ss a", 59 | "mediumDate": "MMM d, y", 60 | "mediumTime": "h:mm:ss a", 61 | "short": "d/M/yy h:mm a", 62 | "shortDate": "d/M/yy", 63 | "shortTime": "h:mm a" 64 | }, 65 | "NUMBER_FORMATS": { 66 | "CURRENCY_SYM": "$", 67 | "DECIMAL_SEP": ".", 68 | "GROUP_SEP": ",", 69 | "PATTERNS": [ 70 | { 71 | "gSize": 3, 72 | "lgSize": 3, 73 | "macFrac": 0, 74 | "maxFrac": 3, 75 | "minFrac": 0, 76 | "minInt": 1, 77 | "negPre": "-", 78 | "negSuf": "", 79 | "posPre": "", 80 | "posSuf": "" 81 | }, 82 | { 83 | "gSize": 3, 84 | "lgSize": 3, 85 | "macFrac": 0, 86 | "maxFrac": 2, 87 | "minFrac": 2, 88 | "minInt": 1, 89 | "negPre": "(\u00a4", 90 | "negSuf": ")", 91 | "posPre": "\u00a4", 92 | "posSuf": "" 93 | } 94 | ] 95 | }, 96 | "id": "en-jm", 97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} 98 | }); 99 | }]); -------------------------------------------------------------------------------- /assets/lib/angular/i18n/angular-locale_en-mh.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | angular.module("ngLocale", [], ["$provide", function($provide) { 3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"}; 4 | $provide.value("$locale", { 5 | "DATETIME_FORMATS": { 6 | "AMPMS": [ 7 | "AM", 8 | "PM" 9 | ], 10 | "DAY": [ 11 | "Sunday", 12 | "Monday", 13 | "Tuesday", 14 | "Wednesday", 15 | "Thursday", 16 | "Friday", 17 | "Saturday" 18 | ], 19 | "MONTH": [ 20 | "January", 21 | "February", 22 | "March", 23 | "April", 24 | "May", 25 | "June", 26 | "July", 27 | "August", 28 | "September", 29 | "October", 30 | "November", 31 | "December" 32 | ], 33 | "SHORTDAY": [ 34 | "Sun", 35 | "Mon", 36 | "Tue", 37 | "Wed", 38 | "Thu", 39 | "Fri", 40 | "Sat" 41 | ], 42 | "SHORTMONTH": [ 43 | "Jan", 44 | "Feb", 45 | "Mar", 46 | "Apr", 47 | "May", 48 | "Jun", 49 | "Jul", 50 | "Aug", 51 | "Sep", 52 | "Oct", 53 | "Nov", 54 | "Dec" 55 | ], 56 | "fullDate": "EEEE, MMMM d, y", 57 | "longDate": "MMMM d, y", 58 | "medium": "MMM d, y h:mm:ss a", 59 | "mediumDate": "MMM d, y", 60 | "mediumTime": "h:mm:ss a", 61 | "short": "M/d/yy h:mm a", 62 | "shortDate": "M/d/yy", 63 | "shortTime": "h:mm a" 64 | }, 65 | "NUMBER_FORMATS": { 66 | "CURRENCY_SYM": "$", 67 | "DECIMAL_SEP": ".", 68 | "GROUP_SEP": ",", 69 | "PATTERNS": [ 70 | { 71 | "gSize": 3, 72 | "lgSize": 3, 73 | "macFrac": 0, 74 | "maxFrac": 3, 75 | "minFrac": 0, 76 | "minInt": 1, 77 | "negPre": "-", 78 | "negSuf": "", 79 | "posPre": "", 80 | "posSuf": "" 81 | }, 82 | { 83 | "gSize": 3, 84 | "lgSize": 3, 85 | "macFrac": 0, 86 | "maxFrac": 2, 87 | "minFrac": 2, 88 | "minInt": 1, 89 | "negPre": "(\u00a4", 90 | "negSuf": ")", 91 | "posPre": "\u00a4", 92 | "posSuf": "" 93 | } 94 | ] 95 | }, 96 | "id": "en-mh", 97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} 98 | }); 99 | }]); -------------------------------------------------------------------------------- /assets/lib/angular/i18n/angular-locale_en-mp.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | angular.module("ngLocale", [], ["$provide", function($provide) { 3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"}; 4 | $provide.value("$locale", { 5 | "DATETIME_FORMATS": { 6 | "AMPMS": [ 7 | "AM", 8 | "PM" 9 | ], 10 | "DAY": [ 11 | "Sunday", 12 | "Monday", 13 | "Tuesday", 14 | "Wednesday", 15 | "Thursday", 16 | "Friday", 17 | "Saturday" 18 | ], 19 | "MONTH": [ 20 | "January", 21 | "February", 22 | "March", 23 | "April", 24 | "May", 25 | "June", 26 | "July", 27 | "August", 28 | "September", 29 | "October", 30 | "November", 31 | "December" 32 | ], 33 | "SHORTDAY": [ 34 | "Sun", 35 | "Mon", 36 | "Tue", 37 | "Wed", 38 | "Thu", 39 | "Fri", 40 | "Sat" 41 | ], 42 | "SHORTMONTH": [ 43 | "Jan", 44 | "Feb", 45 | "Mar", 46 | "Apr", 47 | "May", 48 | "Jun", 49 | "Jul", 50 | "Aug", 51 | "Sep", 52 | "Oct", 53 | "Nov", 54 | "Dec" 55 | ], 56 | "fullDate": "EEEE, MMMM d, y", 57 | "longDate": "MMMM d, y", 58 | "medium": "MMM d, y h:mm:ss a", 59 | "mediumDate": "MMM d, y", 60 | "mediumTime": "h:mm:ss a", 61 | "short": "M/d/yy h:mm a", 62 | "shortDate": "M/d/yy", 63 | "shortTime": "h:mm a" 64 | }, 65 | "NUMBER_FORMATS": { 66 | "CURRENCY_SYM": "$", 67 | "DECIMAL_SEP": ".", 68 | "GROUP_SEP": ",", 69 | "PATTERNS": [ 70 | { 71 | "gSize": 3, 72 | "lgSize": 3, 73 | "macFrac": 0, 74 | "maxFrac": 3, 75 | "minFrac": 0, 76 | "minInt": 1, 77 | "negPre": "-", 78 | "negSuf": "", 79 | "posPre": "", 80 | "posSuf": "" 81 | }, 82 | { 83 | "gSize": 3, 84 | "lgSize": 3, 85 | "macFrac": 0, 86 | "maxFrac": 2, 87 | "minFrac": 2, 88 | "minInt": 1, 89 | "negPre": "(\u00a4", 90 | "negSuf": ")", 91 | "posPre": "\u00a4", 92 | "posSuf": "" 93 | } 94 | ] 95 | }, 96 | "id": "en-mp", 97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} 98 | }); 99 | }]); -------------------------------------------------------------------------------- /assets/lib/angular/i18n/angular-locale_en-mu.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | angular.module("ngLocale", [], ["$provide", function($provide) { 3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"}; 4 | $provide.value("$locale", { 5 | "DATETIME_FORMATS": { 6 | "AMPMS": [ 7 | "AM", 8 | "PM" 9 | ], 10 | "DAY": [ 11 | "Sunday", 12 | "Monday", 13 | "Tuesday", 14 | "Wednesday", 15 | "Thursday", 16 | "Friday", 17 | "Saturday" 18 | ], 19 | "MONTH": [ 20 | "January", 21 | "February", 22 | "March", 23 | "April", 24 | "May", 25 | "June", 26 | "July", 27 | "August", 28 | "September", 29 | "October", 30 | "November", 31 | "December" 32 | ], 33 | "SHORTDAY": [ 34 | "Sun", 35 | "Mon", 36 | "Tue", 37 | "Wed", 38 | "Thu", 39 | "Fri", 40 | "Sat" 41 | ], 42 | "SHORTMONTH": [ 43 | "Jan", 44 | "Feb", 45 | "Mar", 46 | "Apr", 47 | "May", 48 | "Jun", 49 | "Jul", 50 | "Aug", 51 | "Sep", 52 | "Oct", 53 | "Nov", 54 | "Dec" 55 | ], 56 | "fullDate": "EEEE, MMMM d, y", 57 | "longDate": "MMMM d, y", 58 | "medium": "MMM d, y h:mm:ss a", 59 | "mediumDate": "MMM d, y", 60 | "mediumTime": "h:mm:ss a", 61 | "short": "M/d/yy h:mm a", 62 | "shortDate": "M/d/yy", 63 | "shortTime": "h:mm a" 64 | }, 65 | "NUMBER_FORMATS": { 66 | "CURRENCY_SYM": "$", 67 | "DECIMAL_SEP": ".", 68 | "GROUP_SEP": ",", 69 | "PATTERNS": [ 70 | { 71 | "gSize": 3, 72 | "lgSize": 3, 73 | "macFrac": 0, 74 | "maxFrac": 3, 75 | "minFrac": 0, 76 | "minInt": 1, 77 | "negPre": "-", 78 | "negSuf": "", 79 | "posPre": "", 80 | "posSuf": "" 81 | }, 82 | { 83 | "gSize": 3, 84 | "lgSize": 3, 85 | "macFrac": 0, 86 | "maxFrac": 2, 87 | "minFrac": 2, 88 | "minInt": 1, 89 | "negPre": "(\u00a4", 90 | "negSuf": ")", 91 | "posPre": "\u00a4", 92 | "posSuf": "" 93 | } 94 | ] 95 | }, 96 | "id": "en-mu", 97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} 98 | }); 99 | }]); -------------------------------------------------------------------------------- /assets/lib/angular/i18n/angular-locale_en-na.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | angular.module("ngLocale", [], ["$provide", function($provide) { 3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"}; 4 | $provide.value("$locale", { 5 | "DATETIME_FORMATS": { 6 | "AMPMS": [ 7 | "AM", 8 | "PM" 9 | ], 10 | "DAY": [ 11 | "Sunday", 12 | "Monday", 13 | "Tuesday", 14 | "Wednesday", 15 | "Thursday", 16 | "Friday", 17 | "Saturday" 18 | ], 19 | "MONTH": [ 20 | "January", 21 | "February", 22 | "March", 23 | "April", 24 | "May", 25 | "June", 26 | "July", 27 | "August", 28 | "September", 29 | "October", 30 | "November", 31 | "December" 32 | ], 33 | "SHORTDAY": [ 34 | "Sun", 35 | "Mon", 36 | "Tue", 37 | "Wed", 38 | "Thu", 39 | "Fri", 40 | "Sat" 41 | ], 42 | "SHORTMONTH": [ 43 | "Jan", 44 | "Feb", 45 | "Mar", 46 | "Apr", 47 | "May", 48 | "Jun", 49 | "Jul", 50 | "Aug", 51 | "Sep", 52 | "Oct", 53 | "Nov", 54 | "Dec" 55 | ], 56 | "fullDate": "EEEE, MMMM d, y", 57 | "longDate": "MMMM d, y", 58 | "medium": "MMM d, y h:mm:ss a", 59 | "mediumDate": "MMM d, y", 60 | "mediumTime": "h:mm:ss a", 61 | "short": "M/d/yy h:mm a", 62 | "shortDate": "M/d/yy", 63 | "shortTime": "h:mm a" 64 | }, 65 | "NUMBER_FORMATS": { 66 | "CURRENCY_SYM": "$", 67 | "DECIMAL_SEP": ".", 68 | "GROUP_SEP": ",", 69 | "PATTERNS": [ 70 | { 71 | "gSize": 3, 72 | "lgSize": 3, 73 | "macFrac": 0, 74 | "maxFrac": 3, 75 | "minFrac": 0, 76 | "minInt": 1, 77 | "negPre": "-", 78 | "negSuf": "", 79 | "posPre": "", 80 | "posSuf": "" 81 | }, 82 | { 83 | "gSize": 3, 84 | "lgSize": 3, 85 | "macFrac": 0, 86 | "maxFrac": 2, 87 | "minFrac": 2, 88 | "minInt": 1, 89 | "negPre": "(\u00a4", 90 | "negSuf": ")", 91 | "posPre": "\u00a4", 92 | "posSuf": "" 93 | } 94 | ] 95 | }, 96 | "id": "en-na", 97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} 98 | }); 99 | }]); -------------------------------------------------------------------------------- /assets/lib/angular/i18n/angular-locale_en-ph.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | angular.module("ngLocale", [], ["$provide", function($provide) { 3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"}; 4 | $provide.value("$locale", { 5 | "DATETIME_FORMATS": { 6 | "AMPMS": [ 7 | "AM", 8 | "PM" 9 | ], 10 | "DAY": [ 11 | "Sunday", 12 | "Monday", 13 | "Tuesday", 14 | "Wednesday", 15 | "Thursday", 16 | "Friday", 17 | "Saturday" 18 | ], 19 | "MONTH": [ 20 | "January", 21 | "February", 22 | "March", 23 | "April", 24 | "May", 25 | "June", 26 | "July", 27 | "August", 28 | "September", 29 | "October", 30 | "November", 31 | "December" 32 | ], 33 | "SHORTDAY": [ 34 | "Sun", 35 | "Mon", 36 | "Tue", 37 | "Wed", 38 | "Thu", 39 | "Fri", 40 | "Sat" 41 | ], 42 | "SHORTMONTH": [ 43 | "Jan", 44 | "Feb", 45 | "Mar", 46 | "Apr", 47 | "May", 48 | "Jun", 49 | "Jul", 50 | "Aug", 51 | "Sep", 52 | "Oct", 53 | "Nov", 54 | "Dec" 55 | ], 56 | "fullDate": "EEEE, MMMM d, y", 57 | "longDate": "MMMM d, y", 58 | "medium": "MMM d, y h:mm:ss a", 59 | "mediumDate": "MMM d, y", 60 | "mediumTime": "h:mm:ss a", 61 | "short": "M/d/yy h:mm a", 62 | "shortDate": "M/d/yy", 63 | "shortTime": "h:mm a" 64 | }, 65 | "NUMBER_FORMATS": { 66 | "CURRENCY_SYM": "$", 67 | "DECIMAL_SEP": ".", 68 | "GROUP_SEP": ",", 69 | "PATTERNS": [ 70 | { 71 | "gSize": 3, 72 | "lgSize": 3, 73 | "macFrac": 0, 74 | "maxFrac": 3, 75 | "minFrac": 0, 76 | "minInt": 1, 77 | "negPre": "-", 78 | "negSuf": "", 79 | "posPre": "", 80 | "posSuf": "" 81 | }, 82 | { 83 | "gSize": 3, 84 | "lgSize": 3, 85 | "macFrac": 0, 86 | "maxFrac": 2, 87 | "minFrac": 2, 88 | "minInt": 1, 89 | "negPre": "(\u00a4", 90 | "negSuf": ")", 91 | "posPre": "\u00a4", 92 | "posSuf": "" 93 | } 94 | ] 95 | }, 96 | "id": "en-ph", 97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} 98 | }); 99 | }]); -------------------------------------------------------------------------------- /assets/lib/angular/i18n/angular-locale_en-pr.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | angular.module("ngLocale", [], ["$provide", function($provide) { 3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"}; 4 | $provide.value("$locale", { 5 | "DATETIME_FORMATS": { 6 | "AMPMS": [ 7 | "AM", 8 | "PM" 9 | ], 10 | "DAY": [ 11 | "Sunday", 12 | "Monday", 13 | "Tuesday", 14 | "Wednesday", 15 | "Thursday", 16 | "Friday", 17 | "Saturday" 18 | ], 19 | "MONTH": [ 20 | "January", 21 | "February", 22 | "March", 23 | "April", 24 | "May", 25 | "June", 26 | "July", 27 | "August", 28 | "September", 29 | "October", 30 | "November", 31 | "December" 32 | ], 33 | "SHORTDAY": [ 34 | "Sun", 35 | "Mon", 36 | "Tue", 37 | "Wed", 38 | "Thu", 39 | "Fri", 40 | "Sat" 41 | ], 42 | "SHORTMONTH": [ 43 | "Jan", 44 | "Feb", 45 | "Mar", 46 | "Apr", 47 | "May", 48 | "Jun", 49 | "Jul", 50 | "Aug", 51 | "Sep", 52 | "Oct", 53 | "Nov", 54 | "Dec" 55 | ], 56 | "fullDate": "EEEE, MMMM d, y", 57 | "longDate": "MMMM d, y", 58 | "medium": "MMM d, y h:mm:ss a", 59 | "mediumDate": "MMM d, y", 60 | "mediumTime": "h:mm:ss a", 61 | "short": "M/d/yy h:mm a", 62 | "shortDate": "M/d/yy", 63 | "shortTime": "h:mm a" 64 | }, 65 | "NUMBER_FORMATS": { 66 | "CURRENCY_SYM": "$", 67 | "DECIMAL_SEP": ".", 68 | "GROUP_SEP": ",", 69 | "PATTERNS": [ 70 | { 71 | "gSize": 3, 72 | "lgSize": 3, 73 | "macFrac": 0, 74 | "maxFrac": 3, 75 | "minFrac": 0, 76 | "minInt": 1, 77 | "negPre": "-", 78 | "negSuf": "", 79 | "posPre": "", 80 | "posSuf": "" 81 | }, 82 | { 83 | "gSize": 3, 84 | "lgSize": 3, 85 | "macFrac": 0, 86 | "maxFrac": 2, 87 | "minFrac": 2, 88 | "minInt": 1, 89 | "negPre": "(\u00a4", 90 | "negSuf": ")", 91 | "posPre": "\u00a4", 92 | "posSuf": "" 93 | } 94 | ] 95 | }, 96 | "id": "en-pr", 97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} 98 | }); 99 | }]); -------------------------------------------------------------------------------- /assets/lib/angular/i18n/angular-locale_en-pw.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | angular.module("ngLocale", [], ["$provide", function($provide) { 3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"}; 4 | $provide.value("$locale", { 5 | "DATETIME_FORMATS": { 6 | "AMPMS": [ 7 | "AM", 8 | "PM" 9 | ], 10 | "DAY": [ 11 | "Sunday", 12 | "Monday", 13 | "Tuesday", 14 | "Wednesday", 15 | "Thursday", 16 | "Friday", 17 | "Saturday" 18 | ], 19 | "MONTH": [ 20 | "January", 21 | "February", 22 | "March", 23 | "April", 24 | "May", 25 | "June", 26 | "July", 27 | "August", 28 | "September", 29 | "October", 30 | "November", 31 | "December" 32 | ], 33 | "SHORTDAY": [ 34 | "Sun", 35 | "Mon", 36 | "Tue", 37 | "Wed", 38 | "Thu", 39 | "Fri", 40 | "Sat" 41 | ], 42 | "SHORTMONTH": [ 43 | "Jan", 44 | "Feb", 45 | "Mar", 46 | "Apr", 47 | "May", 48 | "Jun", 49 | "Jul", 50 | "Aug", 51 | "Sep", 52 | "Oct", 53 | "Nov", 54 | "Dec" 55 | ], 56 | "fullDate": "EEEE, MMMM d, y", 57 | "longDate": "MMMM d, y", 58 | "medium": "MMM d, y h:mm:ss a", 59 | "mediumDate": "MMM d, y", 60 | "mediumTime": "h:mm:ss a", 61 | "short": "M/d/yy h:mm a", 62 | "shortDate": "M/d/yy", 63 | "shortTime": "h:mm a" 64 | }, 65 | "NUMBER_FORMATS": { 66 | "CURRENCY_SYM": "$", 67 | "DECIMAL_SEP": ".", 68 | "GROUP_SEP": ",", 69 | "PATTERNS": [ 70 | { 71 | "gSize": 3, 72 | "lgSize": 3, 73 | "macFrac": 0, 74 | "maxFrac": 3, 75 | "minFrac": 0, 76 | "minInt": 1, 77 | "negPre": "-", 78 | "negSuf": "", 79 | "posPre": "", 80 | "posSuf": "" 81 | }, 82 | { 83 | "gSize": 3, 84 | "lgSize": 3, 85 | "macFrac": 0, 86 | "maxFrac": 2, 87 | "minFrac": 2, 88 | "minInt": 1, 89 | "negPre": "(\u00a4", 90 | "negSuf": ")", 91 | "posPre": "\u00a4", 92 | "posSuf": "" 93 | } 94 | ] 95 | }, 96 | "id": "en-pw", 97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} 98 | }); 99 | }]); -------------------------------------------------------------------------------- /assets/lib/angular/i18n/angular-locale_en-sg.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | angular.module("ngLocale", [], ["$provide", function($provide) { 3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"}; 4 | $provide.value("$locale", { 5 | "DATETIME_FORMATS": { 6 | "AMPMS": [ 7 | "AM", 8 | "PM" 9 | ], 10 | "DAY": [ 11 | "Sunday", 12 | "Monday", 13 | "Tuesday", 14 | "Wednesday", 15 | "Thursday", 16 | "Friday", 17 | "Saturday" 18 | ], 19 | "MONTH": [ 20 | "January", 21 | "February", 22 | "March", 23 | "April", 24 | "May", 25 | "June", 26 | "July", 27 | "August", 28 | "September", 29 | "October", 30 | "November", 31 | "December" 32 | ], 33 | "SHORTDAY": [ 34 | "Sun", 35 | "Mon", 36 | "Tue", 37 | "Wed", 38 | "Thu", 39 | "Fri", 40 | "Sat" 41 | ], 42 | "SHORTMONTH": [ 43 | "Jan", 44 | "Feb", 45 | "Mar", 46 | "Apr", 47 | "May", 48 | "Jun", 49 | "Jul", 50 | "Aug", 51 | "Sep", 52 | "Oct", 53 | "Nov", 54 | "Dec" 55 | ], 56 | "fullDate": "EEEE, d MMMM, y", 57 | "longDate": "d MMMM, y", 58 | "medium": "d MMM, y h:mm:ss a", 59 | "mediumDate": "d MMM, y", 60 | "mediumTime": "h:mm:ss a", 61 | "short": "d/M/yy h:mm a", 62 | "shortDate": "d/M/yy", 63 | "shortTime": "h:mm a" 64 | }, 65 | "NUMBER_FORMATS": { 66 | "CURRENCY_SYM": "$", 67 | "DECIMAL_SEP": ".", 68 | "GROUP_SEP": ",", 69 | "PATTERNS": [ 70 | { 71 | "gSize": 3, 72 | "lgSize": 3, 73 | "macFrac": 0, 74 | "maxFrac": 3, 75 | "minFrac": 0, 76 | "minInt": 1, 77 | "negPre": "-", 78 | "negSuf": "", 79 | "posPre": "", 80 | "posSuf": "" 81 | }, 82 | { 83 | "gSize": 3, 84 | "lgSize": 3, 85 | "macFrac": 0, 86 | "maxFrac": 2, 87 | "minFrac": 2, 88 | "minInt": 1, 89 | "negPre": "(\u00a4", 90 | "negSuf": ")", 91 | "posPre": "\u00a4", 92 | "posSuf": "" 93 | } 94 | ] 95 | }, 96 | "id": "en-sg", 97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} 98 | }); 99 | }]); -------------------------------------------------------------------------------- /assets/lib/angular/i18n/angular-locale_en-tc.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | angular.module("ngLocale", [], ["$provide", function($provide) { 3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"}; 4 | $provide.value("$locale", { 5 | "DATETIME_FORMATS": { 6 | "AMPMS": [ 7 | "AM", 8 | "PM" 9 | ], 10 | "DAY": [ 11 | "Sunday", 12 | "Monday", 13 | "Tuesday", 14 | "Wednesday", 15 | "Thursday", 16 | "Friday", 17 | "Saturday" 18 | ], 19 | "MONTH": [ 20 | "January", 21 | "February", 22 | "March", 23 | "April", 24 | "May", 25 | "June", 26 | "July", 27 | "August", 28 | "September", 29 | "October", 30 | "November", 31 | "December" 32 | ], 33 | "SHORTDAY": [ 34 | "Sun", 35 | "Mon", 36 | "Tue", 37 | "Wed", 38 | "Thu", 39 | "Fri", 40 | "Sat" 41 | ], 42 | "SHORTMONTH": [ 43 | "Jan", 44 | "Feb", 45 | "Mar", 46 | "Apr", 47 | "May", 48 | "Jun", 49 | "Jul", 50 | "Aug", 51 | "Sep", 52 | "Oct", 53 | "Nov", 54 | "Dec" 55 | ], 56 | "fullDate": "EEEE, MMMM d, y", 57 | "longDate": "MMMM d, y", 58 | "medium": "MMM d, y h:mm:ss a", 59 | "mediumDate": "MMM d, y", 60 | "mediumTime": "h:mm:ss a", 61 | "short": "M/d/yy h:mm a", 62 | "shortDate": "M/d/yy", 63 | "shortTime": "h:mm a" 64 | }, 65 | "NUMBER_FORMATS": { 66 | "CURRENCY_SYM": "$", 67 | "DECIMAL_SEP": ".", 68 | "GROUP_SEP": ",", 69 | "PATTERNS": [ 70 | { 71 | "gSize": 3, 72 | "lgSize": 3, 73 | "macFrac": 0, 74 | "maxFrac": 3, 75 | "minFrac": 0, 76 | "minInt": 1, 77 | "negPre": "-", 78 | "negSuf": "", 79 | "posPre": "", 80 | "posSuf": "" 81 | }, 82 | { 83 | "gSize": 3, 84 | "lgSize": 3, 85 | "macFrac": 0, 86 | "maxFrac": 2, 87 | "minFrac": 2, 88 | "minInt": 1, 89 | "negPre": "(\u00a4", 90 | "negSuf": ")", 91 | "posPre": "\u00a4", 92 | "posSuf": "" 93 | } 94 | ] 95 | }, 96 | "id": "en-tc", 97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} 98 | }); 99 | }]); -------------------------------------------------------------------------------- /assets/lib/angular/i18n/angular-locale_en-tt.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | angular.module("ngLocale", [], ["$provide", function($provide) { 3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"}; 4 | $provide.value("$locale", { 5 | "DATETIME_FORMATS": { 6 | "AMPMS": [ 7 | "AM", 8 | "PM" 9 | ], 10 | "DAY": [ 11 | "Sunday", 12 | "Monday", 13 | "Tuesday", 14 | "Wednesday", 15 | "Thursday", 16 | "Friday", 17 | "Saturday" 18 | ], 19 | "MONTH": [ 20 | "January", 21 | "February", 22 | "March", 23 | "April", 24 | "May", 25 | "June", 26 | "July", 27 | "August", 28 | "September", 29 | "October", 30 | "November", 31 | "December" 32 | ], 33 | "SHORTDAY": [ 34 | "Sun", 35 | "Mon", 36 | "Tue", 37 | "Wed", 38 | "Thu", 39 | "Fri", 40 | "Sat" 41 | ], 42 | "SHORTMONTH": [ 43 | "Jan", 44 | "Feb", 45 | "Mar", 46 | "Apr", 47 | "May", 48 | "Jun", 49 | "Jul", 50 | "Aug", 51 | "Sep", 52 | "Oct", 53 | "Nov", 54 | "Dec" 55 | ], 56 | "fullDate": "EEEE, MMMM d, y", 57 | "longDate": "MMMM d, y", 58 | "medium": "MMM d, y h:mm:ss a", 59 | "mediumDate": "MMM d, y", 60 | "mediumTime": "h:mm:ss a", 61 | "short": "M/d/yy h:mm a", 62 | "shortDate": "M/d/yy", 63 | "shortTime": "h:mm a" 64 | }, 65 | "NUMBER_FORMATS": { 66 | "CURRENCY_SYM": "$", 67 | "DECIMAL_SEP": ".", 68 | "GROUP_SEP": ",", 69 | "PATTERNS": [ 70 | { 71 | "gSize": 3, 72 | "lgSize": 3, 73 | "macFrac": 0, 74 | "maxFrac": 3, 75 | "minFrac": 0, 76 | "minInt": 1, 77 | "negPre": "-", 78 | "negSuf": "", 79 | "posPre": "", 80 | "posSuf": "" 81 | }, 82 | { 83 | "gSize": 3, 84 | "lgSize": 3, 85 | "macFrac": 0, 86 | "maxFrac": 2, 87 | "minFrac": 2, 88 | "minInt": 1, 89 | "negPre": "(\u00a4", 90 | "negSuf": ")", 91 | "posPre": "\u00a4", 92 | "posSuf": "" 93 | } 94 | ] 95 | }, 96 | "id": "en-tt", 97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} 98 | }); 99 | }]); -------------------------------------------------------------------------------- /assets/lib/angular/i18n/angular-locale_en-um.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | angular.module("ngLocale", [], ["$provide", function($provide) { 3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"}; 4 | $provide.value("$locale", { 5 | "DATETIME_FORMATS": { 6 | "AMPMS": [ 7 | "AM", 8 | "PM" 9 | ], 10 | "DAY": [ 11 | "Sunday", 12 | "Monday", 13 | "Tuesday", 14 | "Wednesday", 15 | "Thursday", 16 | "Friday", 17 | "Saturday" 18 | ], 19 | "MONTH": [ 20 | "January", 21 | "February", 22 | "March", 23 | "April", 24 | "May", 25 | "June", 26 | "July", 27 | "August", 28 | "September", 29 | "October", 30 | "November", 31 | "December" 32 | ], 33 | "SHORTDAY": [ 34 | "Sun", 35 | "Mon", 36 | "Tue", 37 | "Wed", 38 | "Thu", 39 | "Fri", 40 | "Sat" 41 | ], 42 | "SHORTMONTH": [ 43 | "Jan", 44 | "Feb", 45 | "Mar", 46 | "Apr", 47 | "May", 48 | "Jun", 49 | "Jul", 50 | "Aug", 51 | "Sep", 52 | "Oct", 53 | "Nov", 54 | "Dec" 55 | ], 56 | "fullDate": "EEEE, MMMM d, y", 57 | "longDate": "MMMM d, y", 58 | "medium": "MMM d, y h:mm:ss a", 59 | "mediumDate": "MMM d, y", 60 | "mediumTime": "h:mm:ss a", 61 | "short": "M/d/yy h:mm a", 62 | "shortDate": "M/d/yy", 63 | "shortTime": "h:mm a" 64 | }, 65 | "NUMBER_FORMATS": { 66 | "CURRENCY_SYM": "$", 67 | "DECIMAL_SEP": ".", 68 | "GROUP_SEP": ",", 69 | "PATTERNS": [ 70 | { 71 | "gSize": 3, 72 | "lgSize": 3, 73 | "macFrac": 0, 74 | "maxFrac": 3, 75 | "minFrac": 0, 76 | "minInt": 1, 77 | "negPre": "-", 78 | "negSuf": "", 79 | "posPre": "", 80 | "posSuf": "" 81 | }, 82 | { 83 | "gSize": 3, 84 | "lgSize": 3, 85 | "macFrac": 0, 86 | "maxFrac": 2, 87 | "minFrac": 2, 88 | "minInt": 1, 89 | "negPre": "(\u00a4", 90 | "negSuf": ")", 91 | "posPre": "\u00a4", 92 | "posSuf": "" 93 | } 94 | ] 95 | }, 96 | "id": "en-um", 97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} 98 | }); 99 | }]); -------------------------------------------------------------------------------- /assets/lib/angular/i18n/angular-locale_en-us.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | angular.module("ngLocale", [], ["$provide", function($provide) { 3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"}; 4 | $provide.value("$locale", { 5 | "DATETIME_FORMATS": { 6 | "AMPMS": [ 7 | "AM", 8 | "PM" 9 | ], 10 | "DAY": [ 11 | "Sunday", 12 | "Monday", 13 | "Tuesday", 14 | "Wednesday", 15 | "Thursday", 16 | "Friday", 17 | "Saturday" 18 | ], 19 | "MONTH": [ 20 | "January", 21 | "February", 22 | "March", 23 | "April", 24 | "May", 25 | "June", 26 | "July", 27 | "August", 28 | "September", 29 | "October", 30 | "November", 31 | "December" 32 | ], 33 | "SHORTDAY": [ 34 | "Sun", 35 | "Mon", 36 | "Tue", 37 | "Wed", 38 | "Thu", 39 | "Fri", 40 | "Sat" 41 | ], 42 | "SHORTMONTH": [ 43 | "Jan", 44 | "Feb", 45 | "Mar", 46 | "Apr", 47 | "May", 48 | "Jun", 49 | "Jul", 50 | "Aug", 51 | "Sep", 52 | "Oct", 53 | "Nov", 54 | "Dec" 55 | ], 56 | "fullDate": "EEEE, MMMM d, y", 57 | "longDate": "MMMM d, y", 58 | "medium": "MMM d, y h:mm:ss a", 59 | "mediumDate": "MMM d, y", 60 | "mediumTime": "h:mm:ss a", 61 | "short": "M/d/yy h:mm a", 62 | "shortDate": "M/d/yy", 63 | "shortTime": "h:mm a" 64 | }, 65 | "NUMBER_FORMATS": { 66 | "CURRENCY_SYM": "$", 67 | "DECIMAL_SEP": ".", 68 | "GROUP_SEP": ",", 69 | "PATTERNS": [ 70 | { 71 | "gSize": 3, 72 | "lgSize": 3, 73 | "macFrac": 0, 74 | "maxFrac": 3, 75 | "minFrac": 0, 76 | "minInt": 1, 77 | "negPre": "-", 78 | "negSuf": "", 79 | "posPre": "", 80 | "posSuf": "" 81 | }, 82 | { 83 | "gSize": 3, 84 | "lgSize": 3, 85 | "macFrac": 0, 86 | "maxFrac": 2, 87 | "minFrac": 2, 88 | "minInt": 1, 89 | "negPre": "(\u00a4", 90 | "negSuf": ")", 91 | "posPre": "\u00a4", 92 | "posSuf": "" 93 | } 94 | ] 95 | }, 96 | "id": "en-us", 97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} 98 | }); 99 | }]); -------------------------------------------------------------------------------- /assets/lib/angular/i18n/angular-locale_en-vg.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | angular.module("ngLocale", [], ["$provide", function($provide) { 3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"}; 4 | $provide.value("$locale", { 5 | "DATETIME_FORMATS": { 6 | "AMPMS": [ 7 | "AM", 8 | "PM" 9 | ], 10 | "DAY": [ 11 | "Sunday", 12 | "Monday", 13 | "Tuesday", 14 | "Wednesday", 15 | "Thursday", 16 | "Friday", 17 | "Saturday" 18 | ], 19 | "MONTH": [ 20 | "January", 21 | "February", 22 | "March", 23 | "April", 24 | "May", 25 | "June", 26 | "July", 27 | "August", 28 | "September", 29 | "October", 30 | "November", 31 | "December" 32 | ], 33 | "SHORTDAY": [ 34 | "Sun", 35 | "Mon", 36 | "Tue", 37 | "Wed", 38 | "Thu", 39 | "Fri", 40 | "Sat" 41 | ], 42 | "SHORTMONTH": [ 43 | "Jan", 44 | "Feb", 45 | "Mar", 46 | "Apr", 47 | "May", 48 | "Jun", 49 | "Jul", 50 | "Aug", 51 | "Sep", 52 | "Oct", 53 | "Nov", 54 | "Dec" 55 | ], 56 | "fullDate": "EEEE, MMMM d, y", 57 | "longDate": "MMMM d, y", 58 | "medium": "MMM d, y h:mm:ss a", 59 | "mediumDate": "MMM d, y", 60 | "mediumTime": "h:mm:ss a", 61 | "short": "M/d/yy h:mm a", 62 | "shortDate": "M/d/yy", 63 | "shortTime": "h:mm a" 64 | }, 65 | "NUMBER_FORMATS": { 66 | "CURRENCY_SYM": "$", 67 | "DECIMAL_SEP": ".", 68 | "GROUP_SEP": ",", 69 | "PATTERNS": [ 70 | { 71 | "gSize": 3, 72 | "lgSize": 3, 73 | "macFrac": 0, 74 | "maxFrac": 3, 75 | "minFrac": 0, 76 | "minInt": 1, 77 | "negPre": "-", 78 | "negSuf": "", 79 | "posPre": "", 80 | "posSuf": "" 81 | }, 82 | { 83 | "gSize": 3, 84 | "lgSize": 3, 85 | "macFrac": 0, 86 | "maxFrac": 2, 87 | "minFrac": 2, 88 | "minInt": 1, 89 | "negPre": "(\u00a4", 90 | "negSuf": ")", 91 | "posPre": "\u00a4", 92 | "posSuf": "" 93 | } 94 | ] 95 | }, 96 | "id": "en-vg", 97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} 98 | }); 99 | }]); -------------------------------------------------------------------------------- /assets/lib/angular/i18n/angular-locale_en-vi.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | angular.module("ngLocale", [], ["$provide", function($provide) { 3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"}; 4 | $provide.value("$locale", { 5 | "DATETIME_FORMATS": { 6 | "AMPMS": [ 7 | "AM", 8 | "PM" 9 | ], 10 | "DAY": [ 11 | "Sunday", 12 | "Monday", 13 | "Tuesday", 14 | "Wednesday", 15 | "Thursday", 16 | "Friday", 17 | "Saturday" 18 | ], 19 | "MONTH": [ 20 | "January", 21 | "February", 22 | "March", 23 | "April", 24 | "May", 25 | "June", 26 | "July", 27 | "August", 28 | "September", 29 | "October", 30 | "November", 31 | "December" 32 | ], 33 | "SHORTDAY": [ 34 | "Sun", 35 | "Mon", 36 | "Tue", 37 | "Wed", 38 | "Thu", 39 | "Fri", 40 | "Sat" 41 | ], 42 | "SHORTMONTH": [ 43 | "Jan", 44 | "Feb", 45 | "Mar", 46 | "Apr", 47 | "May", 48 | "Jun", 49 | "Jul", 50 | "Aug", 51 | "Sep", 52 | "Oct", 53 | "Nov", 54 | "Dec" 55 | ], 56 | "fullDate": "EEEE, MMMM d, y", 57 | "longDate": "MMMM d, y", 58 | "medium": "MMM d, y h:mm:ss a", 59 | "mediumDate": "MMM d, y", 60 | "mediumTime": "h:mm:ss a", 61 | "short": "M/d/yy h:mm a", 62 | "shortDate": "M/d/yy", 63 | "shortTime": "h:mm a" 64 | }, 65 | "NUMBER_FORMATS": { 66 | "CURRENCY_SYM": "$", 67 | "DECIMAL_SEP": ".", 68 | "GROUP_SEP": ",", 69 | "PATTERNS": [ 70 | { 71 | "gSize": 3, 72 | "lgSize": 3, 73 | "macFrac": 0, 74 | "maxFrac": 3, 75 | "minFrac": 0, 76 | "minInt": 1, 77 | "negPre": "-", 78 | "negSuf": "", 79 | "posPre": "", 80 | "posSuf": "" 81 | }, 82 | { 83 | "gSize": 3, 84 | "lgSize": 3, 85 | "macFrac": 0, 86 | "maxFrac": 2, 87 | "minFrac": 2, 88 | "minInt": 1, 89 | "negPre": "(\u00a4", 90 | "negSuf": ")", 91 | "posPre": "\u00a4", 92 | "posSuf": "" 93 | } 94 | ] 95 | }, 96 | "id": "en-vi", 97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} 98 | }); 99 | }]); -------------------------------------------------------------------------------- /assets/lib/angular/i18n/angular-locale_en-au.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | angular.module("ngLocale", [], ["$provide", function($provide) { 3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"}; 4 | $provide.value("$locale", { 5 | "DATETIME_FORMATS": { 6 | "AMPMS": [ 7 | "AM", 8 | "PM" 9 | ], 10 | "DAY": [ 11 | "Sunday", 12 | "Monday", 13 | "Tuesday", 14 | "Wednesday", 15 | "Thursday", 16 | "Friday", 17 | "Saturday" 18 | ], 19 | "MONTH": [ 20 | "January", 21 | "February", 22 | "March", 23 | "April", 24 | "May", 25 | "June", 26 | "July", 27 | "August", 28 | "September", 29 | "October", 30 | "November", 31 | "December" 32 | ], 33 | "SHORTDAY": [ 34 | "Sun", 35 | "Mon", 36 | "Tue", 37 | "Wed", 38 | "Thu", 39 | "Fri", 40 | "Sat" 41 | ], 42 | "SHORTMONTH": [ 43 | "Jan", 44 | "Feb", 45 | "Mar", 46 | "Apr", 47 | "May", 48 | "Jun", 49 | "Jul", 50 | "Aug", 51 | "Sep", 52 | "Oct", 53 | "Nov", 54 | "Dec" 55 | ], 56 | "fullDate": "EEEE, d MMMM y", 57 | "longDate": "d MMMM y", 58 | "medium": "dd/MM/yyyy h:mm:ss a", 59 | "mediumDate": "dd/MM/yyyy", 60 | "mediumTime": "h:mm:ss a", 61 | "short": "d/MM/yy h:mm a", 62 | "shortDate": "d/MM/yy", 63 | "shortTime": "h:mm a" 64 | }, 65 | "NUMBER_FORMATS": { 66 | "CURRENCY_SYM": "$", 67 | "DECIMAL_SEP": ".", 68 | "GROUP_SEP": ",", 69 | "PATTERNS": [ 70 | { 71 | "gSize": 3, 72 | "lgSize": 3, 73 | "macFrac": 0, 74 | "maxFrac": 3, 75 | "minFrac": 0, 76 | "minInt": 1, 77 | "negPre": "-", 78 | "negSuf": "", 79 | "posPre": "", 80 | "posSuf": "" 81 | }, 82 | { 83 | "gSize": 3, 84 | "lgSize": 3, 85 | "macFrac": 0, 86 | "maxFrac": 2, 87 | "minFrac": 2, 88 | "minInt": 1, 89 | "negPre": "(\u00a4", 90 | "negSuf": ")", 91 | "posPre": "\u00a4", 92 | "posSuf": "" 93 | } 94 | ] 95 | }, 96 | "id": "en-au", 97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} 98 | }); 99 | }]); -------------------------------------------------------------------------------- /assets/lib/angular/i18n/angular-locale_en-bw.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | angular.module("ngLocale", [], ["$provide", function($provide) { 3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"}; 4 | $provide.value("$locale", { 5 | "DATETIME_FORMATS": { 6 | "AMPMS": [ 7 | "AM", 8 | "PM" 9 | ], 10 | "DAY": [ 11 | "Sunday", 12 | "Monday", 13 | "Tuesday", 14 | "Wednesday", 15 | "Thursday", 16 | "Friday", 17 | "Saturday" 18 | ], 19 | "MONTH": [ 20 | "January", 21 | "February", 22 | "March", 23 | "April", 24 | "May", 25 | "June", 26 | "July", 27 | "August", 28 | "September", 29 | "October", 30 | "November", 31 | "December" 32 | ], 33 | "SHORTDAY": [ 34 | "Sun", 35 | "Mon", 36 | "Tue", 37 | "Wed", 38 | "Thu", 39 | "Fri", 40 | "Sat" 41 | ], 42 | "SHORTMONTH": [ 43 | "Jan", 44 | "Feb", 45 | "Mar", 46 | "Apr", 47 | "May", 48 | "Jun", 49 | "Jul", 50 | "Aug", 51 | "Sep", 52 | "Oct", 53 | "Nov", 54 | "Dec" 55 | ], 56 | "fullDate": "EEEE dd MMMM y", 57 | "longDate": "dd MMMM y", 58 | "medium": "MMM d, y h:mm:ss a", 59 | "mediumDate": "MMM d, y", 60 | "mediumTime": "h:mm:ss a", 61 | "short": "dd/MM/yy h:mm a", 62 | "shortDate": "dd/MM/yy", 63 | "shortTime": "h:mm a" 64 | }, 65 | "NUMBER_FORMATS": { 66 | "CURRENCY_SYM": "$", 67 | "DECIMAL_SEP": ".", 68 | "GROUP_SEP": ",", 69 | "PATTERNS": [ 70 | { 71 | "gSize": 3, 72 | "lgSize": 3, 73 | "macFrac": 0, 74 | "maxFrac": 3, 75 | "minFrac": 0, 76 | "minInt": 1, 77 | "negPre": "-", 78 | "negSuf": "", 79 | "posPre": "", 80 | "posSuf": "" 81 | }, 82 | { 83 | "gSize": 3, 84 | "lgSize": 3, 85 | "macFrac": 0, 86 | "maxFrac": 2, 87 | "minFrac": 2, 88 | "minInt": 1, 89 | "negPre": "(\u00a4", 90 | "negSuf": ")", 91 | "posPre": "\u00a4", 92 | "posSuf": "" 93 | } 94 | ] 95 | }, 96 | "id": "en-bw", 97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} 98 | }); 99 | }]); -------------------------------------------------------------------------------- /assets/lib/angular/i18n/angular-locale_en-gb.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | angular.module("ngLocale", [], ["$provide", function($provide) { 3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"}; 4 | $provide.value("$locale", { 5 | "DATETIME_FORMATS": { 6 | "AMPMS": [ 7 | "AM", 8 | "PM" 9 | ], 10 | "DAY": [ 11 | "Sunday", 12 | "Monday", 13 | "Tuesday", 14 | "Wednesday", 15 | "Thursday", 16 | "Friday", 17 | "Saturday" 18 | ], 19 | "MONTH": [ 20 | "January", 21 | "February", 22 | "March", 23 | "April", 24 | "May", 25 | "June", 26 | "July", 27 | "August", 28 | "September", 29 | "October", 30 | "November", 31 | "December" 32 | ], 33 | "SHORTDAY": [ 34 | "Sun", 35 | "Mon", 36 | "Tue", 37 | "Wed", 38 | "Thu", 39 | "Fri", 40 | "Sat" 41 | ], 42 | "SHORTMONTH": [ 43 | "Jan", 44 | "Feb", 45 | "Mar", 46 | "Apr", 47 | "May", 48 | "Jun", 49 | "Jul", 50 | "Aug", 51 | "Sep", 52 | "Oct", 53 | "Nov", 54 | "Dec" 55 | ], 56 | "fullDate": "EEEE, d MMMM y", 57 | "longDate": "d MMMM y", 58 | "medium": "d MMM y HH:mm:ss", 59 | "mediumDate": "d MMM y", 60 | "mediumTime": "HH:mm:ss", 61 | "short": "dd/MM/yyyy HH:mm", 62 | "shortDate": "dd/MM/yyyy", 63 | "shortTime": "HH:mm" 64 | }, 65 | "NUMBER_FORMATS": { 66 | "CURRENCY_SYM": "\u00a3", 67 | "DECIMAL_SEP": ".", 68 | "GROUP_SEP": ",", 69 | "PATTERNS": [ 70 | { 71 | "gSize": 3, 72 | "lgSize": 3, 73 | "macFrac": 0, 74 | "maxFrac": 3, 75 | "minFrac": 0, 76 | "minInt": 1, 77 | "negPre": "-", 78 | "negSuf": "", 79 | "posPre": "", 80 | "posSuf": "" 81 | }, 82 | { 83 | "gSize": 3, 84 | "lgSize": 3, 85 | "macFrac": 0, 86 | "maxFrac": 2, 87 | "minFrac": 2, 88 | "minInt": 1, 89 | "negPre": "\u00a4-", 90 | "negSuf": "", 91 | "posPre": "\u00a4", 92 | "posSuf": "" 93 | } 94 | ] 95 | }, 96 | "id": "en-gb", 97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} 98 | }); 99 | }]); -------------------------------------------------------------------------------- /assets/lib/angular/i18n/angular-locale_en-iso.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | angular.module("ngLocale", [], ["$provide", function($provide) { 3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"}; 4 | $provide.value("$locale", { 5 | "DATETIME_FORMATS": { 6 | "AMPMS": [ 7 | "AM", 8 | "PM" 9 | ], 10 | "DAY": [ 11 | "Sunday", 12 | "Monday", 13 | "Tuesday", 14 | "Wednesday", 15 | "Thursday", 16 | "Friday", 17 | "Saturday" 18 | ], 19 | "MONTH": [ 20 | "January", 21 | "February", 22 | "March", 23 | "April", 24 | "May", 25 | "June", 26 | "July", 27 | "August", 28 | "September", 29 | "October", 30 | "November", 31 | "December" 32 | ], 33 | "SHORTDAY": [ 34 | "Sun", 35 | "Mon", 36 | "Tue", 37 | "Wed", 38 | "Thu", 39 | "Fri", 40 | "Sat" 41 | ], 42 | "SHORTMONTH": [ 43 | "Jan", 44 | "Feb", 45 | "Mar", 46 | "Apr", 47 | "May", 48 | "Jun", 49 | "Jul", 50 | "Aug", 51 | "Sep", 52 | "Oct", 53 | "Nov", 54 | "Dec" 55 | ], 56 | "fullDate": "EEEE, y MMMM dd", 57 | "longDate": "y MMMM d", 58 | "medium": "y MMM d HH:mm:ss", 59 | "mediumDate": "y MMM d", 60 | "mediumTime": "HH:mm:ss", 61 | "short": "yyyy-MM-dd HH:mm", 62 | "shortDate": "yyyy-MM-dd", 63 | "shortTime": "HH:mm" 64 | }, 65 | "NUMBER_FORMATS": { 66 | "CURRENCY_SYM": "$", 67 | "DECIMAL_SEP": ".", 68 | "GROUP_SEP": ",", 69 | "PATTERNS": [ 70 | { 71 | "gSize": 3, 72 | "lgSize": 3, 73 | "macFrac": 0, 74 | "maxFrac": 3, 75 | "minFrac": 0, 76 | "minInt": 1, 77 | "negPre": "-", 78 | "negSuf": "", 79 | "posPre": "", 80 | "posSuf": "" 81 | }, 82 | { 83 | "gSize": 3, 84 | "lgSize": 3, 85 | "macFrac": 0, 86 | "maxFrac": 2, 87 | "minFrac": 2, 88 | "minInt": 1, 89 | "negPre": "(\u00a4", 90 | "negSuf": ")", 91 | "posPre": "\u00a4", 92 | "posSuf": "" 93 | } 94 | ] 95 | }, 96 | "id": "en-iso", 97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} 98 | }); 99 | }]); -------------------------------------------------------------------------------- /assets/lib/angular/i18n/angular-locale_en-nz.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | angular.module("ngLocale", [], ["$provide", function($provide) { 3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"}; 4 | $provide.value("$locale", { 5 | "DATETIME_FORMATS": { 6 | "AMPMS": [ 7 | "AM", 8 | "PM" 9 | ], 10 | "DAY": [ 11 | "Sunday", 12 | "Monday", 13 | "Tuesday", 14 | "Wednesday", 15 | "Thursday", 16 | "Friday", 17 | "Saturday" 18 | ], 19 | "MONTH": [ 20 | "January", 21 | "February", 22 | "March", 23 | "April", 24 | "May", 25 | "June", 26 | "July", 27 | "August", 28 | "September", 29 | "October", 30 | "November", 31 | "December" 32 | ], 33 | "SHORTDAY": [ 34 | "Sun", 35 | "Mon", 36 | "Tue", 37 | "Wed", 38 | "Thu", 39 | "Fri", 40 | "Sat" 41 | ], 42 | "SHORTMONTH": [ 43 | "Jan", 44 | "Feb", 45 | "Mar", 46 | "Apr", 47 | "May", 48 | "Jun", 49 | "Jul", 50 | "Aug", 51 | "Sep", 52 | "Oct", 53 | "Nov", 54 | "Dec" 55 | ], 56 | "fullDate": "EEEE, d MMMM y", 57 | "longDate": "d MMMM y", 58 | "medium": "d/MM/yyyy h:mm:ss a", 59 | "mediumDate": "d/MM/yyyy", 60 | "mediumTime": "h:mm:ss a", 61 | "short": "d/MM/yy h:mm a", 62 | "shortDate": "d/MM/yy", 63 | "shortTime": "h:mm a" 64 | }, 65 | "NUMBER_FORMATS": { 66 | "CURRENCY_SYM": "$", 67 | "DECIMAL_SEP": ".", 68 | "GROUP_SEP": ",", 69 | "PATTERNS": [ 70 | { 71 | "gSize": 3, 72 | "lgSize": 3, 73 | "macFrac": 0, 74 | "maxFrac": 3, 75 | "minFrac": 0, 76 | "minInt": 1, 77 | "negPre": "-", 78 | "negSuf": "", 79 | "posPre": "", 80 | "posSuf": "" 81 | }, 82 | { 83 | "gSize": 3, 84 | "lgSize": 3, 85 | "macFrac": 0, 86 | "maxFrac": 2, 87 | "minFrac": 2, 88 | "minInt": 1, 89 | "negPre": "(\u00a4", 90 | "negSuf": ")", 91 | "posPre": "\u00a4", 92 | "posSuf": "" 93 | } 94 | ] 95 | }, 96 | "id": "en-nz", 97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} 98 | }); 99 | }]); -------------------------------------------------------------------------------- /assets/lib/angular/i18n/angular-locale_en-pk.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | angular.module("ngLocale", [], ["$provide", function($provide) { 3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"}; 4 | $provide.value("$locale", { 5 | "DATETIME_FORMATS": { 6 | "AMPMS": [ 7 | "AM", 8 | "PM" 9 | ], 10 | "DAY": [ 11 | "Sunday", 12 | "Monday", 13 | "Tuesday", 14 | "Wednesday", 15 | "Thursday", 16 | "Friday", 17 | "Saturday" 18 | ], 19 | "MONTH": [ 20 | "January", 21 | "February", 22 | "March", 23 | "April", 24 | "May", 25 | "June", 26 | "July", 27 | "August", 28 | "September", 29 | "October", 30 | "November", 31 | "December" 32 | ], 33 | "SHORTDAY": [ 34 | "Sun", 35 | "Mon", 36 | "Tue", 37 | "Wed", 38 | "Thu", 39 | "Fri", 40 | "Sat" 41 | ], 42 | "SHORTMONTH": [ 43 | "Jan", 44 | "Feb", 45 | "Mar", 46 | "Apr", 47 | "May", 48 | "Jun", 49 | "Jul", 50 | "Aug", 51 | "Sep", 52 | "Oct", 53 | "Nov", 54 | "Dec" 55 | ], 56 | "fullDate": "EEEE d MMMM y", 57 | "longDate": "d MMMM y", 58 | "medium": "dd-MMM-y h:mm:ss a", 59 | "mediumDate": "dd-MMM-y", 60 | "mediumTime": "h:mm:ss a", 61 | "short": "dd/MM/yy h:mm a", 62 | "shortDate": "dd/MM/yy", 63 | "shortTime": "h:mm a" 64 | }, 65 | "NUMBER_FORMATS": { 66 | "CURRENCY_SYM": "$", 67 | "DECIMAL_SEP": ".", 68 | "GROUP_SEP": ",", 69 | "PATTERNS": [ 70 | { 71 | "gSize": 3, 72 | "lgSize": 3, 73 | "macFrac": 0, 74 | "maxFrac": 3, 75 | "minFrac": 0, 76 | "minInt": 1, 77 | "negPre": "-", 78 | "negSuf": "", 79 | "posPre": "", 80 | "posSuf": "" 81 | }, 82 | { 83 | "gSize": 3, 84 | "lgSize": 3, 85 | "macFrac": 0, 86 | "maxFrac": 2, 87 | "minFrac": 2, 88 | "minInt": 1, 89 | "negPre": "(\u00a4", 90 | "negSuf": ")", 91 | "posPre": "\u00a4", 92 | "posSuf": "" 93 | } 94 | ] 95 | }, 96 | "id": "en-pk", 97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} 98 | }); 99 | }]); -------------------------------------------------------------------------------- /assets/lib/angular/i18n/angular-locale_en-zw.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | angular.module("ngLocale", [], ["$provide", function($provide) { 3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"}; 4 | $provide.value("$locale", { 5 | "DATETIME_FORMATS": { 6 | "AMPMS": [ 7 | "AM", 8 | "PM" 9 | ], 10 | "DAY": [ 11 | "Sunday", 12 | "Monday", 13 | "Tuesday", 14 | "Wednesday", 15 | "Thursday", 16 | "Friday", 17 | "Saturday" 18 | ], 19 | "MONTH": [ 20 | "January", 21 | "February", 22 | "March", 23 | "April", 24 | "May", 25 | "June", 26 | "July", 27 | "August", 28 | "September", 29 | "October", 30 | "November", 31 | "December" 32 | ], 33 | "SHORTDAY": [ 34 | "Sun", 35 | "Mon", 36 | "Tue", 37 | "Wed", 38 | "Thu", 39 | "Fri", 40 | "Sat" 41 | ], 42 | "SHORTMONTH": [ 43 | "Jan", 44 | "Feb", 45 | "Mar", 46 | "Apr", 47 | "May", 48 | "Jun", 49 | "Jul", 50 | "Aug", 51 | "Sep", 52 | "Oct", 53 | "Nov", 54 | "Dec" 55 | ], 56 | "fullDate": "EEEE dd MMMM y", 57 | "longDate": "dd MMMM y", 58 | "medium": "dd MMM,y h:mm:ss a", 59 | "mediumDate": "dd MMM,y", 60 | "mediumTime": "h:mm:ss a", 61 | "short": "d/M/yyyy h:mm a", 62 | "shortDate": "d/M/yyyy", 63 | "shortTime": "h:mm a" 64 | }, 65 | "NUMBER_FORMATS": { 66 | "CURRENCY_SYM": "$", 67 | "DECIMAL_SEP": ".", 68 | "GROUP_SEP": ",", 69 | "PATTERNS": [ 70 | { 71 | "gSize": 3, 72 | "lgSize": 3, 73 | "macFrac": 0, 74 | "maxFrac": 3, 75 | "minFrac": 0, 76 | "minInt": 1, 77 | "negPre": "-", 78 | "negSuf": "", 79 | "posPre": "", 80 | "posSuf": "" 81 | }, 82 | { 83 | "gSize": 3, 84 | "lgSize": 3, 85 | "macFrac": 0, 86 | "maxFrac": 2, 87 | "minFrac": 2, 88 | "minInt": 1, 89 | "negPre": "(\u00a4", 90 | "negSuf": ")", 91 | "posPre": "\u00a4", 92 | "posSuf": "" 93 | } 94 | ] 95 | }, 96 | "id": "en-zw", 97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} 98 | }); 99 | }]); -------------------------------------------------------------------------------- /assets/lib/angular/i18n/angular-locale_sw.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | angular.module("ngLocale", [], ["$provide", function($provide) { 3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"}; 4 | $provide.value("$locale", { 5 | "DATETIME_FORMATS": { 6 | "AMPMS": [ 7 | "asubuhi", 8 | "alasiri" 9 | ], 10 | "DAY": [ 11 | "Jumapili", 12 | "Jumatatu", 13 | "Jumanne", 14 | "Jumatano", 15 | "Alhamisi", 16 | "Ijumaa", 17 | "Jumamosi" 18 | ], 19 | "MONTH": [ 20 | "Januari", 21 | "Februari", 22 | "Machi", 23 | "Aprili", 24 | "Mei", 25 | "Juni", 26 | "Julai", 27 | "Agosti", 28 | "Septemba", 29 | "Oktoba", 30 | "Novemba", 31 | "Desemba" 32 | ], 33 | "SHORTDAY": [ 34 | "J2", 35 | "J3", 36 | "J4", 37 | "J5", 38 | "Alh", 39 | "Ij", 40 | "J1" 41 | ], 42 | "SHORTMONTH": [ 43 | "Jan", 44 | "Feb", 45 | "Mac", 46 | "Apr", 47 | "Mei", 48 | "Jun", 49 | "Jul", 50 | "Ago", 51 | "Sep", 52 | "Okt", 53 | "Nov", 54 | "Des" 55 | ], 56 | "fullDate": "EEEE, d MMMM y", 57 | "longDate": "d MMMM y", 58 | "medium": "d MMM y h:mm:ss a", 59 | "mediumDate": "d MMM y", 60 | "mediumTime": "h:mm:ss a", 61 | "short": "dd/MM/yyyy h:mm a", 62 | "shortDate": "dd/MM/yyyy", 63 | "shortTime": "h:mm a" 64 | }, 65 | "NUMBER_FORMATS": { 66 | "CURRENCY_SYM": "TSh", 67 | "DECIMAL_SEP": ".", 68 | "GROUP_SEP": ",", 69 | "PATTERNS": [ 70 | { 71 | "gSize": 3, 72 | "lgSize": 3, 73 | "macFrac": 0, 74 | "maxFrac": 3, 75 | "minFrac": 0, 76 | "minInt": 1, 77 | "negPre": "-", 78 | "negSuf": "", 79 | "posPre": "", 80 | "posSuf": "" 81 | }, 82 | { 83 | "gSize": 3, 84 | "lgSize": 3, 85 | "macFrac": 0, 86 | "maxFrac": 2, 87 | "minFrac": 2, 88 | "minInt": 1, 89 | "negPre": "(\u00a4", 90 | "negSuf": ")", 91 | "posPre": "\u00a4", 92 | "posSuf": "" 93 | } 94 | ] 95 | }, 96 | "id": "sw", 97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} 98 | }); 99 | }]); -------------------------------------------------------------------------------- /assets/lib/angular/i18n/angular-locale_tl.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | angular.module("ngLocale", [], ["$provide", function($provide) { 3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"}; 4 | $provide.value("$locale", { 5 | "DATETIME_FORMATS": { 6 | "AMPMS": [ 7 | "AM", 8 | "PM" 9 | ], 10 | "DAY": [ 11 | "Linggo", 12 | "Lunes", 13 | "Martes", 14 | "Miyerkules", 15 | "Huwebes", 16 | "Biyernes", 17 | "Sabado" 18 | ], 19 | "MONTH": [ 20 | "Enero", 21 | "Pebrero", 22 | "Marso", 23 | "Abril", 24 | "Mayo", 25 | "Hunyo", 26 | "Hulyo", 27 | "Agosto", 28 | "Setyembre", 29 | "Oktubre", 30 | "Nobyembre", 31 | "Disyembre" 32 | ], 33 | "SHORTDAY": [ 34 | "Lin", 35 | "Lun", 36 | "Mar", 37 | "Mye", 38 | "Huw", 39 | "Bye", 40 | "Sab" 41 | ], 42 | "SHORTMONTH": [ 43 | "Ene", 44 | "Peb", 45 | "Mar", 46 | "Abr", 47 | "May", 48 | "Hun", 49 | "Hul", 50 | "Ago", 51 | "Set", 52 | "Okt", 53 | "Nob", 54 | "Dis" 55 | ], 56 | "fullDate": "EEEE, MMMM dd y", 57 | "longDate": "MMMM d, y", 58 | "medium": "MMM d, y HH:mm:ss", 59 | "mediumDate": "MMM d, y", 60 | "mediumTime": "HH:mm:ss", 61 | "short": "M/d/yy HH:mm", 62 | "shortDate": "M/d/yy", 63 | "shortTime": "HH:mm" 64 | }, 65 | "NUMBER_FORMATS": { 66 | "CURRENCY_SYM": "\u20b1", 67 | "DECIMAL_SEP": ".", 68 | "GROUP_SEP": ",", 69 | "PATTERNS": [ 70 | { 71 | "gSize": 3, 72 | "lgSize": 3, 73 | "macFrac": 0, 74 | "maxFrac": 3, 75 | "minFrac": 0, 76 | "minInt": 1, 77 | "negPre": "-", 78 | "negSuf": "", 79 | "posPre": "", 80 | "posSuf": "" 81 | }, 82 | { 83 | "gSize": 3, 84 | "lgSize": 3, 85 | "macFrac": 0, 86 | "maxFrac": 2, 87 | "minFrac": 2, 88 | "minInt": 1, 89 | "negPre": "(\u00a4", 90 | "negSuf": ")", 91 | "posPre": "\u00a4", 92 | "posSuf": "" 93 | } 94 | ] 95 | }, 96 | "id": "tl", 97 | "pluralCat": function (n) { if (n == 0 || n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} 98 | }); 99 | }]); -------------------------------------------------------------------------------- /assets/lib/angular/i18n/angular-locale_af-na.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | angular.module("ngLocale", [], ["$provide", function($provide) { 3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"}; 4 | $provide.value("$locale", { 5 | "DATETIME_FORMATS": { 6 | "AMPMS": [ 7 | "vm.", 8 | "nm." 9 | ], 10 | "DAY": [ 11 | "Sondag", 12 | "Maandag", 13 | "Dinsdag", 14 | "Woensdag", 15 | "Donderdag", 16 | "Vrydag", 17 | "Saterdag" 18 | ], 19 | "MONTH": [ 20 | "Januarie", 21 | "Februarie", 22 | "Maart", 23 | "April", 24 | "Mei", 25 | "Junie", 26 | "Julie", 27 | "Augustus", 28 | "September", 29 | "Oktober", 30 | "November", 31 | "Desember" 32 | ], 33 | "SHORTDAY": [ 34 | "So", 35 | "Ma", 36 | "Di", 37 | "Wo", 38 | "Do", 39 | "Vr", 40 | "Sa" 41 | ], 42 | "SHORTMONTH": [ 43 | "Jan", 44 | "Feb", 45 | "Mar", 46 | "Apr", 47 | "Mei", 48 | "Jun", 49 | "Jul", 50 | "Aug", 51 | "Sep", 52 | "Okt", 53 | "Nov", 54 | "Des" 55 | ], 56 | "fullDate": "EEEE d MMMM y", 57 | "longDate": "d MMMM y", 58 | "medium": "d MMM y HH:mm:ss", 59 | "mediumDate": "d MMM y", 60 | "mediumTime": "HH:mm:ss", 61 | "short": "yyyy-MM-dd HH:mm", 62 | "shortDate": "yyyy-MM-dd", 63 | "shortTime": "HH:mm" 64 | }, 65 | "NUMBER_FORMATS": { 66 | "CURRENCY_SYM": "R", 67 | "DECIMAL_SEP": ",", 68 | "GROUP_SEP": "\u00a0", 69 | "PATTERNS": [ 70 | { 71 | "gSize": 3, 72 | "lgSize": 3, 73 | "macFrac": 0, 74 | "maxFrac": 3, 75 | "minFrac": 0, 76 | "minInt": 1, 77 | "negPre": "-", 78 | "negSuf": "", 79 | "posPre": "", 80 | "posSuf": "" 81 | }, 82 | { 83 | "gSize": 3, 84 | "lgSize": 3, 85 | "macFrac": 0, 86 | "maxFrac": 2, 87 | "minFrac": 2, 88 | "minInt": 1, 89 | "negPre": "(\u00a4", 90 | "negSuf": ")", 91 | "posPre": "\u00a4", 92 | "posSuf": "" 93 | } 94 | ] 95 | }, 96 | "id": "af-na", 97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} 98 | }); 99 | }]); -------------------------------------------------------------------------------- /assets/lib/angular/i18n/angular-locale_af.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | angular.module("ngLocale", [], ["$provide", function($provide) { 3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"}; 4 | $provide.value("$locale", { 5 | "DATETIME_FORMATS": { 6 | "AMPMS": [ 7 | "vm.", 8 | "nm." 9 | ], 10 | "DAY": [ 11 | "Sondag", 12 | "Maandag", 13 | "Dinsdag", 14 | "Woensdag", 15 | "Donderdag", 16 | "Vrydag", 17 | "Saterdag" 18 | ], 19 | "MONTH": [ 20 | "Januarie", 21 | "Februarie", 22 | "Maart", 23 | "April", 24 | "Mei", 25 | "Junie", 26 | "Julie", 27 | "Augustus", 28 | "September", 29 | "Oktober", 30 | "November", 31 | "Desember" 32 | ], 33 | "SHORTDAY": [ 34 | "So", 35 | "Ma", 36 | "Di", 37 | "Wo", 38 | "Do", 39 | "Vr", 40 | "Sa" 41 | ], 42 | "SHORTMONTH": [ 43 | "Jan", 44 | "Feb", 45 | "Mar", 46 | "Apr", 47 | "Mei", 48 | "Jun", 49 | "Jul", 50 | "Aug", 51 | "Sep", 52 | "Okt", 53 | "Nov", 54 | "Des" 55 | ], 56 | "fullDate": "EEEE dd MMMM y", 57 | "longDate": "dd MMMM y", 58 | "medium": "dd MMM y h:mm:ss a", 59 | "mediumDate": "dd MMM y", 60 | "mediumTime": "h:mm:ss a", 61 | "short": "yyyy-MM-dd h:mm a", 62 | "shortDate": "yyyy-MM-dd", 63 | "shortTime": "h:mm a" 64 | }, 65 | "NUMBER_FORMATS": { 66 | "CURRENCY_SYM": "R", 67 | "DECIMAL_SEP": ",", 68 | "GROUP_SEP": "\u00a0", 69 | "PATTERNS": [ 70 | { 71 | "gSize": 3, 72 | "lgSize": 3, 73 | "macFrac": 0, 74 | "maxFrac": 3, 75 | "minFrac": 0, 76 | "minInt": 1, 77 | "negPre": "-", 78 | "negSuf": "", 79 | "posPre": "", 80 | "posSuf": "" 81 | }, 82 | { 83 | "gSize": 3, 84 | "lgSize": 3, 85 | "macFrac": 0, 86 | "maxFrac": 2, 87 | "minFrac": 2, 88 | "minInt": 1, 89 | "negPre": "(\u00a4", 90 | "negSuf": ")", 91 | "posPre": "\u00a4", 92 | "posSuf": "" 93 | } 94 | ] 95 | }, 96 | "id": "af", 97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} 98 | }); 99 | }]); -------------------------------------------------------------------------------- /assets/lib/angular/i18n/angular-locale_en-ca.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | angular.module("ngLocale", [], ["$provide", function($provide) { 3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"}; 4 | $provide.value("$locale", { 5 | "DATETIME_FORMATS": { 6 | "AMPMS": [ 7 | "AM", 8 | "PM" 9 | ], 10 | "DAY": [ 11 | "Sunday", 12 | "Monday", 13 | "Tuesday", 14 | "Wednesday", 15 | "Thursday", 16 | "Friday", 17 | "Saturday" 18 | ], 19 | "MONTH": [ 20 | "January", 21 | "February", 22 | "March", 23 | "April", 24 | "May", 25 | "June", 26 | "July", 27 | "August", 28 | "September", 29 | "October", 30 | "November", 31 | "December" 32 | ], 33 | "SHORTDAY": [ 34 | "Sun", 35 | "Mon", 36 | "Tue", 37 | "Wed", 38 | "Thu", 39 | "Fri", 40 | "Sat" 41 | ], 42 | "SHORTMONTH": [ 43 | "Jan", 44 | "Feb", 45 | "Mar", 46 | "Apr", 47 | "May", 48 | "Jun", 49 | "Jul", 50 | "Aug", 51 | "Sep", 52 | "Oct", 53 | "Nov", 54 | "Dec" 55 | ], 56 | "fullDate": "EEEE, d MMMM, y", 57 | "longDate": "d MMMM, y", 58 | "medium": "yyyy-MM-dd h:mm:ss a", 59 | "mediumDate": "yyyy-MM-dd", 60 | "mediumTime": "h:mm:ss a", 61 | "short": "yy-MM-dd h:mm a", 62 | "shortDate": "yy-MM-dd", 63 | "shortTime": "h:mm a" 64 | }, 65 | "NUMBER_FORMATS": { 66 | "CURRENCY_SYM": "$", 67 | "DECIMAL_SEP": ".", 68 | "GROUP_SEP": ",", 69 | "PATTERNS": [ 70 | { 71 | "gSize": 3, 72 | "lgSize": 3, 73 | "macFrac": 0, 74 | "maxFrac": 3, 75 | "minFrac": 0, 76 | "minInt": 1, 77 | "negPre": "-", 78 | "negSuf": "", 79 | "posPre": "", 80 | "posSuf": "" 81 | }, 82 | { 83 | "gSize": 3, 84 | "lgSize": 3, 85 | "macFrac": 0, 86 | "maxFrac": 2, 87 | "minFrac": 2, 88 | "minInt": 1, 89 | "negPre": "(\u00a4", 90 | "negSuf": ")", 91 | "posPre": "\u00a4", 92 | "posSuf": "" 93 | } 94 | ] 95 | }, 96 | "id": "en-ca", 97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} 98 | }); 99 | }]); -------------------------------------------------------------------------------- /assets/lib/angular/i18n/angular-locale_en-mt.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | angular.module("ngLocale", [], ["$provide", function($provide) { 3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"}; 4 | $provide.value("$locale", { 5 | "DATETIME_FORMATS": { 6 | "AMPMS": [ 7 | "AM", 8 | "PM" 9 | ], 10 | "DAY": [ 11 | "Sunday", 12 | "Monday", 13 | "Tuesday", 14 | "Wednesday", 15 | "Thursday", 16 | "Friday", 17 | "Saturday" 18 | ], 19 | "MONTH": [ 20 | "January", 21 | "February", 22 | "March", 23 | "April", 24 | "May", 25 | "June", 26 | "July", 27 | "August", 28 | "September", 29 | "October", 30 | "November", 31 | "December" 32 | ], 33 | "SHORTDAY": [ 34 | "Sun", 35 | "Mon", 36 | "Tue", 37 | "Wed", 38 | "Thu", 39 | "Fri", 40 | "Sat" 41 | ], 42 | "SHORTMONTH": [ 43 | "Jan", 44 | "Feb", 45 | "Mar", 46 | "Apr", 47 | "May", 48 | "Jun", 49 | "Jul", 50 | "Aug", 51 | "Sep", 52 | "Oct", 53 | "Nov", 54 | "Dec" 55 | ], 56 | "fullDate": "EEEE, d MMMM y", 57 | "longDate": "dd MMMM y", 58 | "medium": "dd MMM y h:mm:ss a", 59 | "mediumDate": "dd MMM y", 60 | "mediumTime": "h:mm:ss a", 61 | "short": "dd/MM/yyyy h:mm a", 62 | "shortDate": "dd/MM/yyyy", 63 | "shortTime": "h:mm a" 64 | }, 65 | "NUMBER_FORMATS": { 66 | "CURRENCY_SYM": "$", 67 | "DECIMAL_SEP": ".", 68 | "GROUP_SEP": ",", 69 | "PATTERNS": [ 70 | { 71 | "gSize": 3, 72 | "lgSize": 3, 73 | "macFrac": 0, 74 | "maxFrac": 3, 75 | "minFrac": 0, 76 | "minInt": 1, 77 | "negPre": "-", 78 | "negSuf": "", 79 | "posPre": "", 80 | "posSuf": "" 81 | }, 82 | { 83 | "gSize": 3, 84 | "lgSize": 3, 85 | "macFrac": 0, 86 | "maxFrac": 2, 87 | "minFrac": 2, 88 | "minInt": 1, 89 | "negPre": "(\u00a4", 90 | "negSuf": ")", 91 | "posPre": "\u00a4", 92 | "posSuf": "" 93 | } 94 | ] 95 | }, 96 | "id": "en-mt", 97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} 98 | }); 99 | }]); -------------------------------------------------------------------------------- /assets/lib/angular/i18n/angular-locale_fil.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | angular.module("ngLocale", [], ["$provide", function($provide) { 3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"}; 4 | $provide.value("$locale", { 5 | "DATETIME_FORMATS": { 6 | "AMPMS": [ 7 | "AM", 8 | "PM" 9 | ], 10 | "DAY": [ 11 | "Linggo", 12 | "Lunes", 13 | "Martes", 14 | "Miyerkules", 15 | "Huwebes", 16 | "Biyernes", 17 | "Sabado" 18 | ], 19 | "MONTH": [ 20 | "Enero", 21 | "Pebrero", 22 | "Marso", 23 | "Abril", 24 | "Mayo", 25 | "Hunyo", 26 | "Hulyo", 27 | "Agosto", 28 | "Setyembre", 29 | "Oktubre", 30 | "Nobyembre", 31 | "Disyembre" 32 | ], 33 | "SHORTDAY": [ 34 | "Lin", 35 | "Lun", 36 | "Mar", 37 | "Mye", 38 | "Huw", 39 | "Bye", 40 | "Sab" 41 | ], 42 | "SHORTMONTH": [ 43 | "Ene", 44 | "Peb", 45 | "Mar", 46 | "Abr", 47 | "May", 48 | "Hun", 49 | "Hul", 50 | "Ago", 51 | "Set", 52 | "Okt", 53 | "Nob", 54 | "Dis" 55 | ], 56 | "fullDate": "EEEE, MMMM dd y", 57 | "longDate": "MMMM d, y", 58 | "medium": "MMM d, y HH:mm:ss", 59 | "mediumDate": "MMM d, y", 60 | "mediumTime": "HH:mm:ss", 61 | "short": "M/d/yy HH:mm", 62 | "shortDate": "M/d/yy", 63 | "shortTime": "HH:mm" 64 | }, 65 | "NUMBER_FORMATS": { 66 | "CURRENCY_SYM": "\u20b1", 67 | "DECIMAL_SEP": ".", 68 | "GROUP_SEP": ",", 69 | "PATTERNS": [ 70 | { 71 | "gSize": 3, 72 | "lgSize": 3, 73 | "macFrac": 0, 74 | "maxFrac": 3, 75 | "minFrac": 0, 76 | "minInt": 1, 77 | "negPre": "-", 78 | "negSuf": "", 79 | "posPre": "", 80 | "posSuf": "" 81 | }, 82 | { 83 | "gSize": 3, 84 | "lgSize": 3, 85 | "macFrac": 0, 86 | "maxFrac": 2, 87 | "minFrac": 2, 88 | "minInt": 1, 89 | "negPre": "(\u00a4", 90 | "negSuf": ")", 91 | "posPre": "\u00a4", 92 | "posSuf": "" 93 | } 94 | ] 95 | }, 96 | "id": "fil", 97 | "pluralCat": function (n) { if (n == 0 || n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} 98 | }); 99 | }]); -------------------------------------------------------------------------------- /assets/lib/angular/i18n/angular-locale_tr.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | angular.module("ngLocale", [], ["$provide", function($provide) { 3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"}; 4 | $provide.value("$locale", { 5 | "DATETIME_FORMATS": { 6 | "AMPMS": [ 7 | "AM", 8 | "PM" 9 | ], 10 | "DAY": [ 11 | "Pazar", 12 | "Pazartesi", 13 | "Sal\u0131", 14 | "\u00c7ar\u015famba", 15 | "Per\u015fembe", 16 | "Cuma", 17 | "Cumartesi" 18 | ], 19 | "MONTH": [ 20 | "Ocak", 21 | "\u015eubat", 22 | "Mart", 23 | "Nisan", 24 | "May\u0131s", 25 | "Haziran", 26 | "Temmuz", 27 | "A\u011fustos", 28 | "Eyl\u00fcl", 29 | "Ekim", 30 | "Kas\u0131m", 31 | "Aral\u0131k" 32 | ], 33 | "SHORTDAY": [ 34 | "Paz", 35 | "Pzt", 36 | "Sal", 37 | "\u00c7ar", 38 | "Per", 39 | "Cum", 40 | "Cmt" 41 | ], 42 | "SHORTMONTH": [ 43 | "Oca", 44 | "\u015eub", 45 | "Mar", 46 | "Nis", 47 | "May", 48 | "Haz", 49 | "Tem", 50 | "A\u011fu", 51 | "Eyl", 52 | "Eki", 53 | "Kas", 54 | "Ara" 55 | ], 56 | "fullDate": "d MMMM y EEEE", 57 | "longDate": "d MMMM y", 58 | "medium": "d MMM y HH:mm:ss", 59 | "mediumDate": "d MMM y", 60 | "mediumTime": "HH:mm:ss", 61 | "short": "dd MM yyyy HH:mm", 62 | "shortDate": "dd MM yyyy", 63 | "shortTime": "HH:mm" 64 | }, 65 | "NUMBER_FORMATS": { 66 | "CURRENCY_SYM": "TL", 67 | "DECIMAL_SEP": ",", 68 | "GROUP_SEP": ".", 69 | "PATTERNS": [ 70 | { 71 | "gSize": 3, 72 | "lgSize": 3, 73 | "macFrac": 0, 74 | "maxFrac": 3, 75 | "minFrac": 0, 76 | "minInt": 1, 77 | "negPre": "-", 78 | "negSuf": "", 79 | "posPre": "", 80 | "posSuf": "" 81 | }, 82 | { 83 | "gSize": 3, 84 | "lgSize": 3, 85 | "macFrac": 0, 86 | "maxFrac": 2, 87 | "minFrac": 2, 88 | "minInt": 1, 89 | "negPre": "(", 90 | "negSuf": "\u00a0\u00a4)", 91 | "posPre": "", 92 | "posSuf": "\u00a0\u00a4" 93 | } 94 | ] 95 | }, 96 | "id": "tr", 97 | "pluralCat": function (n) { return PLURAL_CATEGORY.OTHER;} 98 | }); 99 | }]); -------------------------------------------------------------------------------- /assets/lib/angular/i18n/angular-locale_af-za.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | angular.module("ngLocale", [], ["$provide", function($provide) { 3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"}; 4 | $provide.value("$locale", { 5 | "DATETIME_FORMATS": { 6 | "AMPMS": [ 7 | "vm.", 8 | "nm." 9 | ], 10 | "DAY": [ 11 | "Sondag", 12 | "Maandag", 13 | "Dinsdag", 14 | "Woensdag", 15 | "Donderdag", 16 | "Vrydag", 17 | "Saterdag" 18 | ], 19 | "MONTH": [ 20 | "Januarie", 21 | "Februarie", 22 | "Maart", 23 | "April", 24 | "Mei", 25 | "Junie", 26 | "Julie", 27 | "Augustus", 28 | "September", 29 | "Oktober", 30 | "November", 31 | "Desember" 32 | ], 33 | "SHORTDAY": [ 34 | "So", 35 | "Ma", 36 | "Di", 37 | "Wo", 38 | "Do", 39 | "Vr", 40 | "Sa" 41 | ], 42 | "SHORTMONTH": [ 43 | "Jan", 44 | "Feb", 45 | "Mar", 46 | "Apr", 47 | "Mei", 48 | "Jun", 49 | "Jul", 50 | "Aug", 51 | "Sep", 52 | "Okt", 53 | "Nov", 54 | "Des" 55 | ], 56 | "fullDate": "EEEE dd MMMM y", 57 | "longDate": "dd MMMM y", 58 | "medium": "dd MMM y h:mm:ss a", 59 | "mediumDate": "dd MMM y", 60 | "mediumTime": "h:mm:ss a", 61 | "short": "yyyy-MM-dd h:mm a", 62 | "shortDate": "yyyy-MM-dd", 63 | "shortTime": "h:mm a" 64 | }, 65 | "NUMBER_FORMATS": { 66 | "CURRENCY_SYM": "R", 67 | "DECIMAL_SEP": ",", 68 | "GROUP_SEP": "\u00a0", 69 | "PATTERNS": [ 70 | { 71 | "gSize": 3, 72 | "lgSize": 3, 73 | "macFrac": 0, 74 | "maxFrac": 3, 75 | "minFrac": 0, 76 | "minInt": 1, 77 | "negPre": "-", 78 | "negSuf": "", 79 | "posPre": "", 80 | "posSuf": "" 81 | }, 82 | { 83 | "gSize": 3, 84 | "lgSize": 3, 85 | "macFrac": 0, 86 | "maxFrac": 2, 87 | "minFrac": 2, 88 | "minInt": 1, 89 | "negPre": "(\u00a4", 90 | "negSuf": ")", 91 | "posPre": "\u00a4", 92 | "posSuf": "" 93 | } 94 | ] 95 | }, 96 | "id": "af-za", 97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} 98 | }); 99 | }]); -------------------------------------------------------------------------------- /assets/lib/angular/i18n/angular-locale_en-ie.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | angular.module("ngLocale", [], ["$provide", function($provide) { 3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"}; 4 | $provide.value("$locale", { 5 | "DATETIME_FORMATS": { 6 | "AMPMS": [ 7 | "a.m.", 8 | "p.m." 9 | ], 10 | "DAY": [ 11 | "Sunday", 12 | "Monday", 13 | "Tuesday", 14 | "Wednesday", 15 | "Thursday", 16 | "Friday", 17 | "Saturday" 18 | ], 19 | "MONTH": [ 20 | "January", 21 | "February", 22 | "March", 23 | "April", 24 | "May", 25 | "June", 26 | "July", 27 | "August", 28 | "September", 29 | "October", 30 | "November", 31 | "December" 32 | ], 33 | "SHORTDAY": [ 34 | "Sun", 35 | "Mon", 36 | "Tue", 37 | "Wed", 38 | "Thu", 39 | "Fri", 40 | "Sat" 41 | ], 42 | "SHORTMONTH": [ 43 | "Jan", 44 | "Feb", 45 | "Mar", 46 | "Apr", 47 | "May", 48 | "Jun", 49 | "Jul", 50 | "Aug", 51 | "Sep", 52 | "Oct", 53 | "Nov", 54 | "Dec" 55 | ], 56 | "fullDate": "EEEE d MMMM y", 57 | "longDate": "d MMMM y", 58 | "medium": "d MMM y h:mm:ss a", 59 | "mediumDate": "d MMM y", 60 | "mediumTime": "h:mm:ss a", 61 | "short": "dd/MM/yyyy h:mm a", 62 | "shortDate": "dd/MM/yyyy", 63 | "shortTime": "h:mm a" 64 | }, 65 | "NUMBER_FORMATS": { 66 | "CURRENCY_SYM": "\u20ac", 67 | "DECIMAL_SEP": ".", 68 | "GROUP_SEP": ",", 69 | "PATTERNS": [ 70 | { 71 | "gSize": 3, 72 | "lgSize": 3, 73 | "macFrac": 0, 74 | "maxFrac": 3, 75 | "minFrac": 0, 76 | "minInt": 1, 77 | "negPre": "-", 78 | "negSuf": "", 79 | "posPre": "", 80 | "posSuf": "" 81 | }, 82 | { 83 | "gSize": 3, 84 | "lgSize": 3, 85 | "macFrac": 0, 86 | "maxFrac": 2, 87 | "minFrac": 2, 88 | "minInt": 1, 89 | "negPre": "(\u00a4", 90 | "negSuf": ")", 91 | "posPre": "\u00a4", 92 | "posSuf": "" 93 | } 94 | ] 95 | }, 96 | "id": "en-ie", 97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} 98 | }); 99 | }]); -------------------------------------------------------------------------------- /assets/lib/angular/i18n/angular-locale_en-za.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | angular.module("ngLocale", [], ["$provide", function($provide) { 3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"}; 4 | $provide.value("$locale", { 5 | "DATETIME_FORMATS": { 6 | "AMPMS": [ 7 | "AM", 8 | "PM" 9 | ], 10 | "DAY": [ 11 | "Sunday", 12 | "Monday", 13 | "Tuesday", 14 | "Wednesday", 15 | "Thursday", 16 | "Friday", 17 | "Saturday" 18 | ], 19 | "MONTH": [ 20 | "January", 21 | "February", 22 | "March", 23 | "April", 24 | "May", 25 | "June", 26 | "July", 27 | "August", 28 | "September", 29 | "October", 30 | "November", 31 | "December" 32 | ], 33 | "SHORTDAY": [ 34 | "Sun", 35 | "Mon", 36 | "Tue", 37 | "Wed", 38 | "Thu", 39 | "Fri", 40 | "Sat" 41 | ], 42 | "SHORTMONTH": [ 43 | "Jan", 44 | "Feb", 45 | "Mar", 46 | "Apr", 47 | "May", 48 | "Jun", 49 | "Jul", 50 | "Aug", 51 | "Sep", 52 | "Oct", 53 | "Nov", 54 | "Dec" 55 | ], 56 | "fullDate": "EEEE dd MMMM y", 57 | "longDate": "dd MMMM y", 58 | "medium": "dd MMM y h:mm:ss a", 59 | "mediumDate": "dd MMM y", 60 | "mediumTime": "h:mm:ss a", 61 | "short": "yyyy/MM/dd h:mm a", 62 | "shortDate": "yyyy/MM/dd", 63 | "shortTime": "h:mm a" 64 | }, 65 | "NUMBER_FORMATS": { 66 | "CURRENCY_SYM": "R", 67 | "DECIMAL_SEP": ",", 68 | "GROUP_SEP": "\u00a0", 69 | "PATTERNS": [ 70 | { 71 | "gSize": 3, 72 | "lgSize": 3, 73 | "macFrac": 0, 74 | "maxFrac": 3, 75 | "minFrac": 0, 76 | "minInt": 1, 77 | "negPre": "-", 78 | "negSuf": "", 79 | "posPre": "", 80 | "posSuf": "" 81 | }, 82 | { 83 | "gSize": 3, 84 | "lgSize": 3, 85 | "macFrac": 0, 86 | "maxFrac": 2, 87 | "minFrac": 2, 88 | "minInt": 1, 89 | "negPre": "(\u00a4", 90 | "negSuf": ")", 91 | "posPre": "\u00a4", 92 | "posSuf": "" 93 | } 94 | ] 95 | }, 96 | "id": "en-za", 97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} 98 | }); 99 | }]); -------------------------------------------------------------------------------- /assets/lib/angular/i18n/angular-locale_fil-ph.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | angular.module("ngLocale", [], ["$provide", function($provide) { 3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"}; 4 | $provide.value("$locale", { 5 | "DATETIME_FORMATS": { 6 | "AMPMS": [ 7 | "AM", 8 | "PM" 9 | ], 10 | "DAY": [ 11 | "Linggo", 12 | "Lunes", 13 | "Martes", 14 | "Miyerkules", 15 | "Huwebes", 16 | "Biyernes", 17 | "Sabado" 18 | ], 19 | "MONTH": [ 20 | "Enero", 21 | "Pebrero", 22 | "Marso", 23 | "Abril", 24 | "Mayo", 25 | "Hunyo", 26 | "Hulyo", 27 | "Agosto", 28 | "Setyembre", 29 | "Oktubre", 30 | "Nobyembre", 31 | "Disyembre" 32 | ], 33 | "SHORTDAY": [ 34 | "Lin", 35 | "Lun", 36 | "Mar", 37 | "Mye", 38 | "Huw", 39 | "Bye", 40 | "Sab" 41 | ], 42 | "SHORTMONTH": [ 43 | "Ene", 44 | "Peb", 45 | "Mar", 46 | "Abr", 47 | "May", 48 | "Hun", 49 | "Hul", 50 | "Ago", 51 | "Set", 52 | "Okt", 53 | "Nob", 54 | "Dis" 55 | ], 56 | "fullDate": "EEEE, MMMM dd y", 57 | "longDate": "MMMM d, y", 58 | "medium": "MMM d, y HH:mm:ss", 59 | "mediumDate": "MMM d, y", 60 | "mediumTime": "HH:mm:ss", 61 | "short": "M/d/yy HH:mm", 62 | "shortDate": "M/d/yy", 63 | "shortTime": "HH:mm" 64 | }, 65 | "NUMBER_FORMATS": { 66 | "CURRENCY_SYM": "\u20b1", 67 | "DECIMAL_SEP": ".", 68 | "GROUP_SEP": ",", 69 | "PATTERNS": [ 70 | { 71 | "gSize": 3, 72 | "lgSize": 3, 73 | "macFrac": 0, 74 | "maxFrac": 3, 75 | "minFrac": 0, 76 | "minInt": 1, 77 | "negPre": "-", 78 | "negSuf": "", 79 | "posPre": "", 80 | "posSuf": "" 81 | }, 82 | { 83 | "gSize": 3, 84 | "lgSize": 3, 85 | "macFrac": 0, 86 | "maxFrac": 2, 87 | "minFrac": 2, 88 | "minInt": 1, 89 | "negPre": "(\u00a4", 90 | "negSuf": ")", 91 | "posPre": "\u00a4", 92 | "posSuf": "" 93 | } 94 | ] 95 | }, 96 | "id": "fil-ph", 97 | "pluralCat": function (n) { if (n == 0 || n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} 98 | }); 99 | }]); -------------------------------------------------------------------------------- /assets/lib/angular/i18n/angular-locale_nl.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | angular.module("ngLocale", [], ["$provide", function($provide) { 3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"}; 4 | $provide.value("$locale", { 5 | "DATETIME_FORMATS": { 6 | "AMPMS": [ 7 | "AM", 8 | "PM" 9 | ], 10 | "DAY": [ 11 | "zondag", 12 | "maandag", 13 | "dinsdag", 14 | "woensdag", 15 | "donderdag", 16 | "vrijdag", 17 | "zaterdag" 18 | ], 19 | "MONTH": [ 20 | "januari", 21 | "februari", 22 | "maart", 23 | "april", 24 | "mei", 25 | "juni", 26 | "juli", 27 | "augustus", 28 | "september", 29 | "oktober", 30 | "november", 31 | "december" 32 | ], 33 | "SHORTDAY": [ 34 | "zo", 35 | "ma", 36 | "di", 37 | "wo", 38 | "do", 39 | "vr", 40 | "za" 41 | ], 42 | "SHORTMONTH": [ 43 | "jan.", 44 | "feb.", 45 | "mrt.", 46 | "apr.", 47 | "mei", 48 | "jun.", 49 | "jul.", 50 | "aug.", 51 | "sep.", 52 | "okt.", 53 | "nov.", 54 | "dec." 55 | ], 56 | "fullDate": "EEEE d MMMM y", 57 | "longDate": "d MMMM y", 58 | "medium": "d MMM y HH:mm:ss", 59 | "mediumDate": "d MMM y", 60 | "mediumTime": "HH:mm:ss", 61 | "short": "dd-MM-yy HH:mm", 62 | "shortDate": "dd-MM-yy", 63 | "shortTime": "HH:mm" 64 | }, 65 | "NUMBER_FORMATS": { 66 | "CURRENCY_SYM": "\u20ac", 67 | "DECIMAL_SEP": ",", 68 | "GROUP_SEP": ".", 69 | "PATTERNS": [ 70 | { 71 | "gSize": 3, 72 | "lgSize": 3, 73 | "macFrac": 0, 74 | "maxFrac": 3, 75 | "minFrac": 0, 76 | "minInt": 1, 77 | "negPre": "-", 78 | "negSuf": "", 79 | "posPre": "", 80 | "posSuf": "" 81 | }, 82 | { 83 | "gSize": 3, 84 | "lgSize": 3, 85 | "macFrac": 0, 86 | "maxFrac": 2, 87 | "minFrac": 2, 88 | "minInt": 1, 89 | "negPre": "\u00a4\u00a0", 90 | "negSuf": "-", 91 | "posPre": "\u00a4\u00a0", 92 | "posSuf": "" 93 | } 94 | ] 95 | }, 96 | "id": "nl", 97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} 98 | }); 99 | }]); -------------------------------------------------------------------------------- /assets/lib/angular/i18n/angular-locale_sw-tz.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | angular.module("ngLocale", [], ["$provide", function($provide) { 3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"}; 4 | $provide.value("$locale", { 5 | "DATETIME_FORMATS": { 6 | "AMPMS": [ 7 | "asubuhi", 8 | "alasiri" 9 | ], 10 | "DAY": [ 11 | "Jumapili", 12 | "Jumatatu", 13 | "Jumanne", 14 | "Jumatano", 15 | "Alhamisi", 16 | "Ijumaa", 17 | "Jumamosi" 18 | ], 19 | "MONTH": [ 20 | "Januari", 21 | "Februari", 22 | "Machi", 23 | "Aprili", 24 | "Mei", 25 | "Juni", 26 | "Julai", 27 | "Agosti", 28 | "Septemba", 29 | "Oktoba", 30 | "Novemba", 31 | "Desemba" 32 | ], 33 | "SHORTDAY": [ 34 | "J2", 35 | "J3", 36 | "J4", 37 | "J5", 38 | "Alh", 39 | "Ij", 40 | "J1" 41 | ], 42 | "SHORTMONTH": [ 43 | "Jan", 44 | "Feb", 45 | "Mac", 46 | "Apr", 47 | "Mei", 48 | "Jun", 49 | "Jul", 50 | "Ago", 51 | "Sep", 52 | "Okt", 53 | "Nov", 54 | "Des" 55 | ], 56 | "fullDate": "EEEE, d MMMM y", 57 | "longDate": "d MMMM y", 58 | "medium": "d MMM y h:mm:ss a", 59 | "mediumDate": "d MMM y", 60 | "mediumTime": "h:mm:ss a", 61 | "short": "dd/MM/yyyy h:mm a", 62 | "shortDate": "dd/MM/yyyy", 63 | "shortTime": "h:mm a" 64 | }, 65 | "NUMBER_FORMATS": { 66 | "CURRENCY_SYM": "TSh", 67 | "DECIMAL_SEP": ".", 68 | "GROUP_SEP": ",", 69 | "PATTERNS": [ 70 | { 71 | "gSize": 3, 72 | "lgSize": 3, 73 | "macFrac": 0, 74 | "maxFrac": 3, 75 | "minFrac": 0, 76 | "minInt": 1, 77 | "negPre": "-", 78 | "negSuf": "", 79 | "posPre": "", 80 | "posSuf": "" 81 | }, 82 | { 83 | "gSize": 3, 84 | "lgSize": 3, 85 | "macFrac": 0, 86 | "maxFrac": 2, 87 | "minFrac": 2, 88 | "minInt": 1, 89 | "negPre": "(\u00a4", 90 | "negSuf": ")", 91 | "posPre": "\u00a4", 92 | "posSuf": "" 93 | } 94 | ] 95 | }, 96 | "id": "sw-tz", 97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} 98 | }); 99 | }]); -------------------------------------------------------------------------------- /assets/lib/angular/i18n/angular-locale_tr-tr.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | angular.module("ngLocale", [], ["$provide", function($provide) { 3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"}; 4 | $provide.value("$locale", { 5 | "DATETIME_FORMATS": { 6 | "AMPMS": [ 7 | "AM", 8 | "PM" 9 | ], 10 | "DAY": [ 11 | "Pazar", 12 | "Pazartesi", 13 | "Sal\u0131", 14 | "\u00c7ar\u015famba", 15 | "Per\u015fembe", 16 | "Cuma", 17 | "Cumartesi" 18 | ], 19 | "MONTH": [ 20 | "Ocak", 21 | "\u015eubat", 22 | "Mart", 23 | "Nisan", 24 | "May\u0131s", 25 | "Haziran", 26 | "Temmuz", 27 | "A\u011fustos", 28 | "Eyl\u00fcl", 29 | "Ekim", 30 | "Kas\u0131m", 31 | "Aral\u0131k" 32 | ], 33 | "SHORTDAY": [ 34 | "Paz", 35 | "Pzt", 36 | "Sal", 37 | "\u00c7ar", 38 | "Per", 39 | "Cum", 40 | "Cmt" 41 | ], 42 | "SHORTMONTH": [ 43 | "Oca", 44 | "\u015eub", 45 | "Mar", 46 | "Nis", 47 | "May", 48 | "Haz", 49 | "Tem", 50 | "A\u011fu", 51 | "Eyl", 52 | "Eki", 53 | "Kas", 54 | "Ara" 55 | ], 56 | "fullDate": "d MMMM y EEEE", 57 | "longDate": "d MMMM y", 58 | "medium": "d MMM y HH:mm:ss", 59 | "mediumDate": "d MMM y", 60 | "mediumTime": "HH:mm:ss", 61 | "short": "dd MM yyyy HH:mm", 62 | "shortDate": "dd MM yyyy", 63 | "shortTime": "HH:mm" 64 | }, 65 | "NUMBER_FORMATS": { 66 | "CURRENCY_SYM": "TL", 67 | "DECIMAL_SEP": ",", 68 | "GROUP_SEP": ".", 69 | "PATTERNS": [ 70 | { 71 | "gSize": 3, 72 | "lgSize": 3, 73 | "macFrac": 0, 74 | "maxFrac": 3, 75 | "minFrac": 0, 76 | "minInt": 1, 77 | "negPre": "-", 78 | "negSuf": "", 79 | "posPre": "", 80 | "posSuf": "" 81 | }, 82 | { 83 | "gSize": 3, 84 | "lgSize": 3, 85 | "macFrac": 0, 86 | "maxFrac": 2, 87 | "minFrac": 2, 88 | "minInt": 1, 89 | "negPre": "(", 90 | "negSuf": "\u00a0\u00a4)", 91 | "posPre": "", 92 | "posSuf": "\u00a0\u00a4" 93 | } 94 | ] 95 | }, 96 | "id": "tr-tr", 97 | "pluralCat": function (n) { return PLURAL_CATEGORY.OTHER;} 98 | }); 99 | }]); -------------------------------------------------------------------------------- /assets/lib/angular/i18n/angular-locale_zu.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | angular.module("ngLocale", [], ["$provide", function($provide) { 3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"}; 4 | $provide.value("$locale", { 5 | "DATETIME_FORMATS": { 6 | "AMPMS": [ 7 | "AM", 8 | "PM" 9 | ], 10 | "DAY": [ 11 | "Sonto", 12 | "Msombuluko", 13 | "Lwesibili", 14 | "Lwesithathu", 15 | "uLwesine", 16 | "Lwesihlanu", 17 | "Mgqibelo" 18 | ], 19 | "MONTH": [ 20 | "Januwari", 21 | "Februwari", 22 | "Mashi", 23 | "Apreli", 24 | "Meyi", 25 | "Juni", 26 | "Julayi", 27 | "Agasti", 28 | "Septhemba", 29 | "Okthoba", 30 | "Novemba", 31 | "Disemba" 32 | ], 33 | "SHORTDAY": [ 34 | "Son", 35 | "Mso", 36 | "Bil", 37 | "Tha", 38 | "Sin", 39 | "Hla", 40 | "Mgq" 41 | ], 42 | "SHORTMONTH": [ 43 | "Jan", 44 | "Feb", 45 | "Mas", 46 | "Apr", 47 | "Mey", 48 | "Jun", 49 | "Jul", 50 | "Aga", 51 | "Sep", 52 | "Okt", 53 | "Nov", 54 | "Dis" 55 | ], 56 | "fullDate": "EEEE dd MMMM y", 57 | "longDate": "d MMMM y", 58 | "medium": "d MMM y h:mm:ss a", 59 | "mediumDate": "d MMM y", 60 | "mediumTime": "h:mm:ss a", 61 | "short": "yyyy-MM-dd h:mm a", 62 | "shortDate": "yyyy-MM-dd", 63 | "shortTime": "h:mm a" 64 | }, 65 | "NUMBER_FORMATS": { 66 | "CURRENCY_SYM": "R", 67 | "DECIMAL_SEP": ".", 68 | "GROUP_SEP": ",", 69 | "PATTERNS": [ 70 | { 71 | "gSize": 3, 72 | "lgSize": 3, 73 | "macFrac": 0, 74 | "maxFrac": 3, 75 | "minFrac": 0, 76 | "minInt": 1, 77 | "negPre": "-", 78 | "negSuf": "", 79 | "posPre": "", 80 | "posSuf": "" 81 | }, 82 | { 83 | "gSize": 3, 84 | "lgSize": 3, 85 | "macFrac": 0, 86 | "maxFrac": 2, 87 | "minFrac": 2, 88 | "minInt": 1, 89 | "negPre": "(\u00a4", 90 | "negSuf": ")", 91 | "posPre": "\u00a4", 92 | "posSuf": "" 93 | } 94 | ] 95 | }, 96 | "id": "zu", 97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} 98 | }); 99 | }]); -------------------------------------------------------------------------------- /assets/lib/angular/i18n/angular-locale_en-in.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | angular.module("ngLocale", [], ["$provide", function($provide) { 3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"}; 4 | $provide.value("$locale", { 5 | "DATETIME_FORMATS": { 6 | "AMPMS": [ 7 | "AM", 8 | "PM" 9 | ], 10 | "DAY": [ 11 | "Sunday", 12 | "Monday", 13 | "Tuesday", 14 | "Wednesday", 15 | "Thursday", 16 | "Friday", 17 | "Saturday" 18 | ], 19 | "MONTH": [ 20 | "January", 21 | "February", 22 | "March", 23 | "April", 24 | "May", 25 | "June", 26 | "July", 27 | "August", 28 | "September", 29 | "October", 30 | "November", 31 | "December" 32 | ], 33 | "SHORTDAY": [ 34 | "Sun", 35 | "Mon", 36 | "Tue", 37 | "Wed", 38 | "Thu", 39 | "Fri", 40 | "Sat" 41 | ], 42 | "SHORTMONTH": [ 43 | "Jan", 44 | "Feb", 45 | "Mar", 46 | "Apr", 47 | "May", 48 | "Jun", 49 | "Jul", 50 | "Aug", 51 | "Sep", 52 | "Oct", 53 | "Nov", 54 | "Dec" 55 | ], 56 | "fullDate": "EEEE d MMMM y", 57 | "longDate": "d MMMM y", 58 | "medium": "dd-MMM-y h:mm:ss a", 59 | "mediumDate": "dd-MMM-y", 60 | "mediumTime": "h:mm:ss a", 61 | "short": "dd/MM/yy h:mm a", 62 | "shortDate": "dd/MM/yy", 63 | "shortTime": "h:mm a" 64 | }, 65 | "NUMBER_FORMATS": { 66 | "CURRENCY_SYM": "\u20b9", 67 | "DECIMAL_SEP": ".", 68 | "GROUP_SEP": ",", 69 | "PATTERNS": [ 70 | { 71 | "gSize": 2, 72 | "lgSize": 3, 73 | "macFrac": 0, 74 | "maxFrac": 3, 75 | "minFrac": 0, 76 | "minInt": 1, 77 | "negPre": "-", 78 | "negSuf": "", 79 | "posPre": "", 80 | "posSuf": "" 81 | }, 82 | { 83 | "gSize": 2, 84 | "lgSize": 3, 85 | "macFrac": 0, 86 | "maxFrac": 2, 87 | "minFrac": 2, 88 | "minInt": 1, 89 | "negPre": "\u00a4\u00a0-", 90 | "negSuf": "", 91 | "posPre": "\u00a4\u00a0", 92 | "posSuf": "" 93 | } 94 | ] 95 | }, 96 | "id": "en-in", 97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} 98 | }); 99 | }]); -------------------------------------------------------------------------------- /assets/lib/angular/i18n/angular-locale_nl-cw.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | angular.module("ngLocale", [], ["$provide", function($provide) { 3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"}; 4 | $provide.value("$locale", { 5 | "DATETIME_FORMATS": { 6 | "AMPMS": [ 7 | "AM", 8 | "PM" 9 | ], 10 | "DAY": [ 11 | "zondag", 12 | "maandag", 13 | "dinsdag", 14 | "woensdag", 15 | "donderdag", 16 | "vrijdag", 17 | "zaterdag" 18 | ], 19 | "MONTH": [ 20 | "januari", 21 | "februari", 22 | "maart", 23 | "april", 24 | "mei", 25 | "juni", 26 | "juli", 27 | "augustus", 28 | "september", 29 | "oktober", 30 | "november", 31 | "december" 32 | ], 33 | "SHORTDAY": [ 34 | "zo", 35 | "ma", 36 | "di", 37 | "wo", 38 | "do", 39 | "vr", 40 | "za" 41 | ], 42 | "SHORTMONTH": [ 43 | "jan.", 44 | "feb.", 45 | "mrt.", 46 | "apr.", 47 | "mei", 48 | "jun.", 49 | "jul.", 50 | "aug.", 51 | "sep.", 52 | "okt.", 53 | "nov.", 54 | "dec." 55 | ], 56 | "fullDate": "EEEE d MMMM y", 57 | "longDate": "d MMMM y", 58 | "medium": "d MMM y HH:mm:ss", 59 | "mediumDate": "d MMM y", 60 | "mediumTime": "HH:mm:ss", 61 | "short": "dd-MM-yy HH:mm", 62 | "shortDate": "dd-MM-yy", 63 | "shortTime": "HH:mm" 64 | }, 65 | "NUMBER_FORMATS": { 66 | "CURRENCY_SYM": "\u20ac", 67 | "DECIMAL_SEP": ",", 68 | "GROUP_SEP": ".", 69 | "PATTERNS": [ 70 | { 71 | "gSize": 3, 72 | "lgSize": 3, 73 | "macFrac": 0, 74 | "maxFrac": 3, 75 | "minFrac": 0, 76 | "minInt": 1, 77 | "negPre": "-", 78 | "negSuf": "", 79 | "posPre": "", 80 | "posSuf": "" 81 | }, 82 | { 83 | "gSize": 3, 84 | "lgSize": 3, 85 | "macFrac": 0, 86 | "maxFrac": 2, 87 | "minFrac": 2, 88 | "minInt": 1, 89 | "negPre": "\u00a4\u00a0", 90 | "negSuf": "-", 91 | "posPre": "\u00a4\u00a0", 92 | "posSuf": "" 93 | } 94 | ] 95 | }, 96 | "id": "nl-cw", 97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} 98 | }); 99 | }]); -------------------------------------------------------------------------------- /assets/lib/angular/i18n/angular-locale_nl-nl.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | angular.module("ngLocale", [], ["$provide", function($provide) { 3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"}; 4 | $provide.value("$locale", { 5 | "DATETIME_FORMATS": { 6 | "AMPMS": [ 7 | "AM", 8 | "PM" 9 | ], 10 | "DAY": [ 11 | "zondag", 12 | "maandag", 13 | "dinsdag", 14 | "woensdag", 15 | "donderdag", 16 | "vrijdag", 17 | "zaterdag" 18 | ], 19 | "MONTH": [ 20 | "januari", 21 | "februari", 22 | "maart", 23 | "april", 24 | "mei", 25 | "juni", 26 | "juli", 27 | "augustus", 28 | "september", 29 | "oktober", 30 | "november", 31 | "december" 32 | ], 33 | "SHORTDAY": [ 34 | "zo", 35 | "ma", 36 | "di", 37 | "wo", 38 | "do", 39 | "vr", 40 | "za" 41 | ], 42 | "SHORTMONTH": [ 43 | "jan.", 44 | "feb.", 45 | "mrt.", 46 | "apr.", 47 | "mei", 48 | "jun.", 49 | "jul.", 50 | "aug.", 51 | "sep.", 52 | "okt.", 53 | "nov.", 54 | "dec." 55 | ], 56 | "fullDate": "EEEE d MMMM y", 57 | "longDate": "d MMMM y", 58 | "medium": "d MMM y HH:mm:ss", 59 | "mediumDate": "d MMM y", 60 | "mediumTime": "HH:mm:ss", 61 | "short": "dd-MM-yy HH:mm", 62 | "shortDate": "dd-MM-yy", 63 | "shortTime": "HH:mm" 64 | }, 65 | "NUMBER_FORMATS": { 66 | "CURRENCY_SYM": "\u20ac", 67 | "DECIMAL_SEP": ",", 68 | "GROUP_SEP": ".", 69 | "PATTERNS": [ 70 | { 71 | "gSize": 3, 72 | "lgSize": 3, 73 | "macFrac": 0, 74 | "maxFrac": 3, 75 | "minFrac": 0, 76 | "minInt": 1, 77 | "negPre": "-", 78 | "negSuf": "", 79 | "posPre": "", 80 | "posSuf": "" 81 | }, 82 | { 83 | "gSize": 3, 84 | "lgSize": 3, 85 | "macFrac": 0, 86 | "maxFrac": 2, 87 | "minFrac": 2, 88 | "minInt": 1, 89 | "negPre": "\u00a4\u00a0", 90 | "negSuf": "-", 91 | "posPre": "\u00a4\u00a0", 92 | "posSuf": "" 93 | } 94 | ] 95 | }, 96 | "id": "nl-nl", 97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} 98 | }); 99 | }]); -------------------------------------------------------------------------------- /assets/lib/angular/i18n/angular-locale_nl-sx.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | angular.module("ngLocale", [], ["$provide", function($provide) { 3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"}; 4 | $provide.value("$locale", { 5 | "DATETIME_FORMATS": { 6 | "AMPMS": [ 7 | "AM", 8 | "PM" 9 | ], 10 | "DAY": [ 11 | "zondag", 12 | "maandag", 13 | "dinsdag", 14 | "woensdag", 15 | "donderdag", 16 | "vrijdag", 17 | "zaterdag" 18 | ], 19 | "MONTH": [ 20 | "januari", 21 | "februari", 22 | "maart", 23 | "april", 24 | "mei", 25 | "juni", 26 | "juli", 27 | "augustus", 28 | "september", 29 | "oktober", 30 | "november", 31 | "december" 32 | ], 33 | "SHORTDAY": [ 34 | "zo", 35 | "ma", 36 | "di", 37 | "wo", 38 | "do", 39 | "vr", 40 | "za" 41 | ], 42 | "SHORTMONTH": [ 43 | "jan.", 44 | "feb.", 45 | "mrt.", 46 | "apr.", 47 | "mei", 48 | "jun.", 49 | "jul.", 50 | "aug.", 51 | "sep.", 52 | "okt.", 53 | "nov.", 54 | "dec." 55 | ], 56 | "fullDate": "EEEE d MMMM y", 57 | "longDate": "d MMMM y", 58 | "medium": "d MMM y HH:mm:ss", 59 | "mediumDate": "d MMM y", 60 | "mediumTime": "HH:mm:ss", 61 | "short": "dd-MM-yy HH:mm", 62 | "shortDate": "dd-MM-yy", 63 | "shortTime": "HH:mm" 64 | }, 65 | "NUMBER_FORMATS": { 66 | "CURRENCY_SYM": "\u20ac", 67 | "DECIMAL_SEP": ",", 68 | "GROUP_SEP": ".", 69 | "PATTERNS": [ 70 | { 71 | "gSize": 3, 72 | "lgSize": 3, 73 | "macFrac": 0, 74 | "maxFrac": 3, 75 | "minFrac": 0, 76 | "minInt": 1, 77 | "negPre": "-", 78 | "negSuf": "", 79 | "posPre": "", 80 | "posSuf": "" 81 | }, 82 | { 83 | "gSize": 3, 84 | "lgSize": 3, 85 | "macFrac": 0, 86 | "maxFrac": 2, 87 | "minFrac": 2, 88 | "minInt": 1, 89 | "negPre": "\u00a4\u00a0", 90 | "negSuf": "-", 91 | "posPre": "\u00a4\u00a0", 92 | "posSuf": "" 93 | } 94 | ] 95 | }, 96 | "id": "nl-sx", 97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} 98 | }); 99 | }]); -------------------------------------------------------------------------------- /assets/lib/angular/i18n/angular-locale_zu-za.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | angular.module("ngLocale", [], ["$provide", function($provide) { 3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"}; 4 | $provide.value("$locale", { 5 | "DATETIME_FORMATS": { 6 | "AMPMS": [ 7 | "AM", 8 | "PM" 9 | ], 10 | "DAY": [ 11 | "Sonto", 12 | "Msombuluko", 13 | "Lwesibili", 14 | "Lwesithathu", 15 | "uLwesine", 16 | "Lwesihlanu", 17 | "Mgqibelo" 18 | ], 19 | "MONTH": [ 20 | "Januwari", 21 | "Februwari", 22 | "Mashi", 23 | "Apreli", 24 | "Meyi", 25 | "Juni", 26 | "Julayi", 27 | "Agasti", 28 | "Septhemba", 29 | "Okthoba", 30 | "Novemba", 31 | "Disemba" 32 | ], 33 | "SHORTDAY": [ 34 | "Son", 35 | "Mso", 36 | "Bil", 37 | "Tha", 38 | "Sin", 39 | "Hla", 40 | "Mgq" 41 | ], 42 | "SHORTMONTH": [ 43 | "Jan", 44 | "Feb", 45 | "Mas", 46 | "Apr", 47 | "Mey", 48 | "Jun", 49 | "Jul", 50 | "Aga", 51 | "Sep", 52 | "Okt", 53 | "Nov", 54 | "Dis" 55 | ], 56 | "fullDate": "EEEE dd MMMM y", 57 | "longDate": "d MMMM y", 58 | "medium": "d MMM y h:mm:ss a", 59 | "mediumDate": "d MMM y", 60 | "mediumTime": "h:mm:ss a", 61 | "short": "yyyy-MM-dd h:mm a", 62 | "shortDate": "yyyy-MM-dd", 63 | "shortTime": "h:mm a" 64 | }, 65 | "NUMBER_FORMATS": { 66 | "CURRENCY_SYM": "R", 67 | "DECIMAL_SEP": ".", 68 | "GROUP_SEP": ",", 69 | "PATTERNS": [ 70 | { 71 | "gSize": 3, 72 | "lgSize": 3, 73 | "macFrac": 0, 74 | "maxFrac": 3, 75 | "minFrac": 0, 76 | "minInt": 1, 77 | "negPre": "-", 78 | "negSuf": "", 79 | "posPre": "", 80 | "posSuf": "" 81 | }, 82 | { 83 | "gSize": 3, 84 | "lgSize": 3, 85 | "macFrac": 0, 86 | "maxFrac": 2, 87 | "minFrac": 2, 88 | "minInt": 1, 89 | "negPre": "(\u00a4", 90 | "negSuf": ")", 91 | "posPre": "\u00a4", 92 | "posSuf": "" 93 | } 94 | ] 95 | }, 96 | "id": "zu-za", 97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} 98 | }); 99 | }]); -------------------------------------------------------------------------------- /assets/lib/angular/i18n/angular-locale_gl.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | angular.module("ngLocale", [], ["$provide", function($provide) { 3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"}; 4 | $provide.value("$locale", { 5 | "DATETIME_FORMATS": { 6 | "AMPMS": [ 7 | "a.m.", 8 | "p.m." 9 | ], 10 | "DAY": [ 11 | "Domingo", 12 | "Luns", 13 | "Martes", 14 | "M\u00e9rcores", 15 | "Xoves", 16 | "Venres", 17 | "S\u00e1bado" 18 | ], 19 | "MONTH": [ 20 | "Xaneiro", 21 | "Febreiro", 22 | "Marzo", 23 | "Abril", 24 | "Maio", 25 | "Xu\u00f1o", 26 | "Xullo", 27 | "Agosto", 28 | "Setembro", 29 | "Outubro", 30 | "Novembro", 31 | "Decembro" 32 | ], 33 | "SHORTDAY": [ 34 | "Dom", 35 | "Lun", 36 | "Mar", 37 | "M\u00e9r", 38 | "Xov", 39 | "Ven", 40 | "S\u00e1b" 41 | ], 42 | "SHORTMONTH": [ 43 | "Xan", 44 | "Feb", 45 | "Mar", 46 | "Abr", 47 | "Mai", 48 | "Xu\u00f1", 49 | "Xul", 50 | "Ago", 51 | "Set", 52 | "Out", 53 | "Nov", 54 | "Dec" 55 | ], 56 | "fullDate": "EEEE dd MMMM y", 57 | "longDate": "dd MMMM y", 58 | "medium": "d MMM, y HH:mm:ss", 59 | "mediumDate": "d MMM, y", 60 | "mediumTime": "HH:mm:ss", 61 | "short": "dd/MM/yy HH:mm", 62 | "shortDate": "dd/MM/yy", 63 | "shortTime": "HH:mm" 64 | }, 65 | "NUMBER_FORMATS": { 66 | "CURRENCY_SYM": "\u20ac", 67 | "DECIMAL_SEP": ",", 68 | "GROUP_SEP": ".", 69 | "PATTERNS": [ 70 | { 71 | "gSize": 3, 72 | "lgSize": 3, 73 | "macFrac": 0, 74 | "maxFrac": 3, 75 | "minFrac": 0, 76 | "minInt": 1, 77 | "negPre": "-", 78 | "negSuf": "", 79 | "posPre": "", 80 | "posSuf": "" 81 | }, 82 | { 83 | "gSize": 3, 84 | "lgSize": 3, 85 | "macFrac": 0, 86 | "maxFrac": 2, 87 | "minFrac": 2, 88 | "minInt": 1, 89 | "negPre": "(\u00a4", 90 | "negSuf": ")", 91 | "posPre": "\u00a4", 92 | "posSuf": "" 93 | } 94 | ] 95 | }, 96 | "id": "gl", 97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} 98 | }); 99 | }]); -------------------------------------------------------------------------------- /assets/lib/angular/i18n/angular-locale_de-ch.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | angular.module("ngLocale", [], ["$provide", function($provide) { 3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"}; 4 | $provide.value("$locale", { 5 | "DATETIME_FORMATS": { 6 | "AMPMS": [ 7 | "vorm.", 8 | "nachm." 9 | ], 10 | "DAY": [ 11 | "Sonntag", 12 | "Montag", 13 | "Dienstag", 14 | "Mittwoch", 15 | "Donnerstag", 16 | "Freitag", 17 | "Samstag" 18 | ], 19 | "MONTH": [ 20 | "Januar", 21 | "Februar", 22 | "M\u00e4rz", 23 | "April", 24 | "Mai", 25 | "Juni", 26 | "Juli", 27 | "August", 28 | "September", 29 | "Oktober", 30 | "November", 31 | "Dezember" 32 | ], 33 | "SHORTDAY": [ 34 | "So.", 35 | "Mo.", 36 | "Di.", 37 | "Mi.", 38 | "Do.", 39 | "Fr.", 40 | "Sa." 41 | ], 42 | "SHORTMONTH": [ 43 | "Jan", 44 | "Feb", 45 | "M\u00e4r", 46 | "Apr", 47 | "Mai", 48 | "Jun", 49 | "Jul", 50 | "Aug", 51 | "Sep", 52 | "Okt", 53 | "Nov", 54 | "Dez" 55 | ], 56 | "fullDate": "EEEE, d. MMMM y", 57 | "longDate": "d. MMMM y", 58 | "medium": "dd.MM.yyyy HH:mm:ss", 59 | "mediumDate": "dd.MM.yyyy", 60 | "mediumTime": "HH:mm:ss", 61 | "short": "dd.MM.yy HH:mm", 62 | "shortDate": "dd.MM.yy", 63 | "shortTime": "HH:mm" 64 | }, 65 | "NUMBER_FORMATS": { 66 | "CURRENCY_SYM": "CHF", 67 | "DECIMAL_SEP": ".", 68 | "GROUP_SEP": "'", 69 | "PATTERNS": [ 70 | { 71 | "gSize": 3, 72 | "lgSize": 3, 73 | "macFrac": 0, 74 | "maxFrac": 3, 75 | "minFrac": 0, 76 | "minInt": 1, 77 | "negPre": "-", 78 | "negSuf": "", 79 | "posPre": "", 80 | "posSuf": "" 81 | }, 82 | { 83 | "gSize": 3, 84 | "lgSize": 3, 85 | "macFrac": 0, 86 | "maxFrac": 2, 87 | "minFrac": 2, 88 | "minInt": 1, 89 | "negPre": "\u00a4-", 90 | "negSuf": "", 91 | "posPre": "\u00a4\u00a0", 92 | "posSuf": "" 93 | } 94 | ] 95 | }, 96 | "id": "de-ch", 97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} 98 | }); 99 | }]); -------------------------------------------------------------------------------- /assets/lib/angular/i18n/angular-locale_de.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | angular.module("ngLocale", [], ["$provide", function($provide) { 3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"}; 4 | $provide.value("$locale", { 5 | "DATETIME_FORMATS": { 6 | "AMPMS": [ 7 | "vorm.", 8 | "nachm." 9 | ], 10 | "DAY": [ 11 | "Sonntag", 12 | "Montag", 13 | "Dienstag", 14 | "Mittwoch", 15 | "Donnerstag", 16 | "Freitag", 17 | "Samstag" 18 | ], 19 | "MONTH": [ 20 | "Januar", 21 | "Februar", 22 | "M\u00e4rz", 23 | "April", 24 | "Mai", 25 | "Juni", 26 | "Juli", 27 | "August", 28 | "September", 29 | "Oktober", 30 | "November", 31 | "Dezember" 32 | ], 33 | "SHORTDAY": [ 34 | "So.", 35 | "Mo.", 36 | "Di.", 37 | "Mi.", 38 | "Do.", 39 | "Fr.", 40 | "Sa." 41 | ], 42 | "SHORTMONTH": [ 43 | "Jan", 44 | "Feb", 45 | "M\u00e4r", 46 | "Apr", 47 | "Mai", 48 | "Jun", 49 | "Jul", 50 | "Aug", 51 | "Sep", 52 | "Okt", 53 | "Nov", 54 | "Dez" 55 | ], 56 | "fullDate": "EEEE, d. MMMM y", 57 | "longDate": "d. MMMM y", 58 | "medium": "dd.MM.yyyy HH:mm:ss", 59 | "mediumDate": "dd.MM.yyyy", 60 | "mediumTime": "HH:mm:ss", 61 | "short": "dd.MM.yy HH:mm", 62 | "shortDate": "dd.MM.yy", 63 | "shortTime": "HH:mm" 64 | }, 65 | "NUMBER_FORMATS": { 66 | "CURRENCY_SYM": "\u20ac", 67 | "DECIMAL_SEP": ",", 68 | "GROUP_SEP": ".", 69 | "PATTERNS": [ 70 | { 71 | "gSize": 3, 72 | "lgSize": 3, 73 | "macFrac": 0, 74 | "maxFrac": 3, 75 | "minFrac": 0, 76 | "minInt": 1, 77 | "negPre": "-", 78 | "negSuf": "", 79 | "posPre": "", 80 | "posSuf": "" 81 | }, 82 | { 83 | "gSize": 3, 84 | "lgSize": 3, 85 | "macFrac": 0, 86 | "maxFrac": 2, 87 | "minFrac": 2, 88 | "minInt": 1, 89 | "negPre": "-", 90 | "negSuf": "\u00a0\u00a4", 91 | "posPre": "", 92 | "posSuf": "\u00a0\u00a4" 93 | } 94 | ] 95 | }, 96 | "id": "de", 97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} 98 | }); 99 | }]); -------------------------------------------------------------------------------- /assets/lib/angular/i18n/angular-locale_gl-es.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | angular.module("ngLocale", [], ["$provide", function($provide) { 3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"}; 4 | $provide.value("$locale", { 5 | "DATETIME_FORMATS": { 6 | "AMPMS": [ 7 | "a.m.", 8 | "p.m." 9 | ], 10 | "DAY": [ 11 | "Domingo", 12 | "Luns", 13 | "Martes", 14 | "M\u00e9rcores", 15 | "Xoves", 16 | "Venres", 17 | "S\u00e1bado" 18 | ], 19 | "MONTH": [ 20 | "Xaneiro", 21 | "Febreiro", 22 | "Marzo", 23 | "Abril", 24 | "Maio", 25 | "Xu\u00f1o", 26 | "Xullo", 27 | "Agosto", 28 | "Setembro", 29 | "Outubro", 30 | "Novembro", 31 | "Decembro" 32 | ], 33 | "SHORTDAY": [ 34 | "Dom", 35 | "Lun", 36 | "Mar", 37 | "M\u00e9r", 38 | "Xov", 39 | "Ven", 40 | "S\u00e1b" 41 | ], 42 | "SHORTMONTH": [ 43 | "Xan", 44 | "Feb", 45 | "Mar", 46 | "Abr", 47 | "Mai", 48 | "Xu\u00f1", 49 | "Xul", 50 | "Ago", 51 | "Set", 52 | "Out", 53 | "Nov", 54 | "Dec" 55 | ], 56 | "fullDate": "EEEE dd MMMM y", 57 | "longDate": "dd MMMM y", 58 | "medium": "d MMM, y HH:mm:ss", 59 | "mediumDate": "d MMM, y", 60 | "mediumTime": "HH:mm:ss", 61 | "short": "dd/MM/yy HH:mm", 62 | "shortDate": "dd/MM/yy", 63 | "shortTime": "HH:mm" 64 | }, 65 | "NUMBER_FORMATS": { 66 | "CURRENCY_SYM": "\u20ac", 67 | "DECIMAL_SEP": ",", 68 | "GROUP_SEP": ".", 69 | "PATTERNS": [ 70 | { 71 | "gSize": 3, 72 | "lgSize": 3, 73 | "macFrac": 0, 74 | "maxFrac": 3, 75 | "minFrac": 0, 76 | "minInt": 1, 77 | "negPre": "-", 78 | "negSuf": "", 79 | "posPre": "", 80 | "posSuf": "" 81 | }, 82 | { 83 | "gSize": 3, 84 | "lgSize": 3, 85 | "macFrac": 0, 86 | "maxFrac": 2, 87 | "minFrac": 2, 88 | "minInt": 1, 89 | "negPre": "(\u00a4", 90 | "negSuf": ")", 91 | "posPre": "\u00a4", 92 | "posSuf": "" 93 | } 94 | ] 95 | }, 96 | "id": "gl-es", 97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} 98 | }); 99 | }]); -------------------------------------------------------------------------------- /assets/lib/angular/i18n/angular-locale_de-be.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | angular.module("ngLocale", [], ["$provide", function($provide) { 3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"}; 4 | $provide.value("$locale", { 5 | "DATETIME_FORMATS": { 6 | "AMPMS": [ 7 | "vorm.", 8 | "nachm." 9 | ], 10 | "DAY": [ 11 | "Sonntag", 12 | "Montag", 13 | "Dienstag", 14 | "Mittwoch", 15 | "Donnerstag", 16 | "Freitag", 17 | "Samstag" 18 | ], 19 | "MONTH": [ 20 | "Januar", 21 | "Februar", 22 | "M\u00e4rz", 23 | "April", 24 | "Mai", 25 | "Juni", 26 | "Juli", 27 | "August", 28 | "September", 29 | "Oktober", 30 | "November", 31 | "Dezember" 32 | ], 33 | "SHORTDAY": [ 34 | "So.", 35 | "Mo.", 36 | "Di.", 37 | "Mi.", 38 | "Do.", 39 | "Fr.", 40 | "Sa." 41 | ], 42 | "SHORTMONTH": [ 43 | "Jan", 44 | "Feb", 45 | "M\u00e4r", 46 | "Apr", 47 | "Mai", 48 | "Jun", 49 | "Jul", 50 | "Aug", 51 | "Sep", 52 | "Okt", 53 | "Nov", 54 | "Dez" 55 | ], 56 | "fullDate": "EEEE, d. MMMM y", 57 | "longDate": "d. MMMM y", 58 | "medium": "dd.MM.yyyy HH:mm:ss", 59 | "mediumDate": "dd.MM.yyyy", 60 | "mediumTime": "HH:mm:ss", 61 | "short": "dd.MM.yy HH:mm", 62 | "shortDate": "dd.MM.yy", 63 | "shortTime": "HH:mm" 64 | }, 65 | "NUMBER_FORMATS": { 66 | "CURRENCY_SYM": "\u20ac", 67 | "DECIMAL_SEP": ",", 68 | "GROUP_SEP": ".", 69 | "PATTERNS": [ 70 | { 71 | "gSize": 3, 72 | "lgSize": 3, 73 | "macFrac": 0, 74 | "maxFrac": 3, 75 | "minFrac": 0, 76 | "minInt": 1, 77 | "negPre": "-", 78 | "negSuf": "", 79 | "posPre": "", 80 | "posSuf": "" 81 | }, 82 | { 83 | "gSize": 3, 84 | "lgSize": 3, 85 | "macFrac": 0, 86 | "maxFrac": 2, 87 | "minFrac": 2, 88 | "minInt": 1, 89 | "negPre": "-", 90 | "negSuf": "\u00a0\u00a4", 91 | "posPre": "", 92 | "posSuf": "\u00a0\u00a4" 93 | } 94 | ] 95 | }, 96 | "id": "de-be", 97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} 98 | }); 99 | }]); -------------------------------------------------------------------------------- /assets/lib/angular/i18n/angular-locale_de-de.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | angular.module("ngLocale", [], ["$provide", function($provide) { 3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"}; 4 | $provide.value("$locale", { 5 | "DATETIME_FORMATS": { 6 | "AMPMS": [ 7 | "vorm.", 8 | "nachm." 9 | ], 10 | "DAY": [ 11 | "Sonntag", 12 | "Montag", 13 | "Dienstag", 14 | "Mittwoch", 15 | "Donnerstag", 16 | "Freitag", 17 | "Samstag" 18 | ], 19 | "MONTH": [ 20 | "Januar", 21 | "Februar", 22 | "M\u00e4rz", 23 | "April", 24 | "Mai", 25 | "Juni", 26 | "Juli", 27 | "August", 28 | "September", 29 | "Oktober", 30 | "November", 31 | "Dezember" 32 | ], 33 | "SHORTDAY": [ 34 | "So.", 35 | "Mo.", 36 | "Di.", 37 | "Mi.", 38 | "Do.", 39 | "Fr.", 40 | "Sa." 41 | ], 42 | "SHORTMONTH": [ 43 | "Jan", 44 | "Feb", 45 | "M\u00e4r", 46 | "Apr", 47 | "Mai", 48 | "Jun", 49 | "Jul", 50 | "Aug", 51 | "Sep", 52 | "Okt", 53 | "Nov", 54 | "Dez" 55 | ], 56 | "fullDate": "EEEE, d. MMMM y", 57 | "longDate": "d. MMMM y", 58 | "medium": "dd.MM.yyyy HH:mm:ss", 59 | "mediumDate": "dd.MM.yyyy", 60 | "mediumTime": "HH:mm:ss", 61 | "short": "dd.MM.yy HH:mm", 62 | "shortDate": "dd.MM.yy", 63 | "shortTime": "HH:mm" 64 | }, 65 | "NUMBER_FORMATS": { 66 | "CURRENCY_SYM": "\u20ac", 67 | "DECIMAL_SEP": ",", 68 | "GROUP_SEP": ".", 69 | "PATTERNS": [ 70 | { 71 | "gSize": 3, 72 | "lgSize": 3, 73 | "macFrac": 0, 74 | "maxFrac": 3, 75 | "minFrac": 0, 76 | "minInt": 1, 77 | "negPre": "-", 78 | "negSuf": "", 79 | "posPre": "", 80 | "posSuf": "" 81 | }, 82 | { 83 | "gSize": 3, 84 | "lgSize": 3, 85 | "macFrac": 0, 86 | "maxFrac": 2, 87 | "minFrac": 2, 88 | "minInt": 1, 89 | "negPre": "-", 90 | "negSuf": "\u00a0\u00a4", 91 | "posPre": "", 92 | "posSuf": "\u00a0\u00a4" 93 | } 94 | ] 95 | }, 96 | "id": "de-de", 97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} 98 | }); 99 | }]); -------------------------------------------------------------------------------- /assets/lib/angular/i18n/angular-locale_de-li.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | angular.module("ngLocale", [], ["$provide", function($provide) { 3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"}; 4 | $provide.value("$locale", { 5 | "DATETIME_FORMATS": { 6 | "AMPMS": [ 7 | "vorm.", 8 | "nachm." 9 | ], 10 | "DAY": [ 11 | "Sonntag", 12 | "Montag", 13 | "Dienstag", 14 | "Mittwoch", 15 | "Donnerstag", 16 | "Freitag", 17 | "Samstag" 18 | ], 19 | "MONTH": [ 20 | "Januar", 21 | "Februar", 22 | "M\u00e4rz", 23 | "April", 24 | "Mai", 25 | "Juni", 26 | "Juli", 27 | "August", 28 | "September", 29 | "Oktober", 30 | "November", 31 | "Dezember" 32 | ], 33 | "SHORTDAY": [ 34 | "So.", 35 | "Mo.", 36 | "Di.", 37 | "Mi.", 38 | "Do.", 39 | "Fr.", 40 | "Sa." 41 | ], 42 | "SHORTMONTH": [ 43 | "Jan", 44 | "Feb", 45 | "M\u00e4r", 46 | "Apr", 47 | "Mai", 48 | "Jun", 49 | "Jul", 50 | "Aug", 51 | "Sep", 52 | "Okt", 53 | "Nov", 54 | "Dez" 55 | ], 56 | "fullDate": "EEEE, d. MMMM y", 57 | "longDate": "d. MMMM y", 58 | "medium": "dd.MM.yyyy HH:mm:ss", 59 | "mediumDate": "dd.MM.yyyy", 60 | "mediumTime": "HH:mm:ss", 61 | "short": "dd.MM.yy HH:mm", 62 | "shortDate": "dd.MM.yy", 63 | "shortTime": "HH:mm" 64 | }, 65 | "NUMBER_FORMATS": { 66 | "CURRENCY_SYM": "\u20ac", 67 | "DECIMAL_SEP": ",", 68 | "GROUP_SEP": ".", 69 | "PATTERNS": [ 70 | { 71 | "gSize": 3, 72 | "lgSize": 3, 73 | "macFrac": 0, 74 | "maxFrac": 3, 75 | "minFrac": 0, 76 | "minInt": 1, 77 | "negPre": "-", 78 | "negSuf": "", 79 | "posPre": "", 80 | "posSuf": "" 81 | }, 82 | { 83 | "gSize": 3, 84 | "lgSize": 3, 85 | "macFrac": 0, 86 | "maxFrac": 2, 87 | "minFrac": 2, 88 | "minInt": 1, 89 | "negPre": "-", 90 | "negSuf": "\u00a0\u00a4", 91 | "posPre": "", 92 | "posSuf": "\u00a0\u00a4" 93 | } 94 | ] 95 | }, 96 | "id": "de-li", 97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} 98 | }); 99 | }]); -------------------------------------------------------------------------------- /assets/lib/angular/i18n/angular-locale_de-lu.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | angular.module("ngLocale", [], ["$provide", function($provide) { 3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"}; 4 | $provide.value("$locale", { 5 | "DATETIME_FORMATS": { 6 | "AMPMS": [ 7 | "vorm.", 8 | "nachm." 9 | ], 10 | "DAY": [ 11 | "Sonntag", 12 | "Montag", 13 | "Dienstag", 14 | "Mittwoch", 15 | "Donnerstag", 16 | "Freitag", 17 | "Samstag" 18 | ], 19 | "MONTH": [ 20 | "Januar", 21 | "Februar", 22 | "M\u00e4rz", 23 | "April", 24 | "Mai", 25 | "Juni", 26 | "Juli", 27 | "August", 28 | "September", 29 | "Oktober", 30 | "November", 31 | "Dezember" 32 | ], 33 | "SHORTDAY": [ 34 | "So.", 35 | "Mo.", 36 | "Di.", 37 | "Mi.", 38 | "Do.", 39 | "Fr.", 40 | "Sa." 41 | ], 42 | "SHORTMONTH": [ 43 | "Jan", 44 | "Feb", 45 | "M\u00e4r", 46 | "Apr", 47 | "Mai", 48 | "Jun", 49 | "Jul", 50 | "Aug", 51 | "Sep", 52 | "Okt", 53 | "Nov", 54 | "Dez" 55 | ], 56 | "fullDate": "EEEE, d. MMMM y", 57 | "longDate": "d. MMMM y", 58 | "medium": "dd.MM.yyyy HH:mm:ss", 59 | "mediumDate": "dd.MM.yyyy", 60 | "mediumTime": "HH:mm:ss", 61 | "short": "dd.MM.yy HH:mm", 62 | "shortDate": "dd.MM.yy", 63 | "shortTime": "HH:mm" 64 | }, 65 | "NUMBER_FORMATS": { 66 | "CURRENCY_SYM": "\u20ac", 67 | "DECIMAL_SEP": ",", 68 | "GROUP_SEP": ".", 69 | "PATTERNS": [ 70 | { 71 | "gSize": 3, 72 | "lgSize": 3, 73 | "macFrac": 0, 74 | "maxFrac": 3, 75 | "minFrac": 0, 76 | "minInt": 1, 77 | "negPre": "-", 78 | "negSuf": "", 79 | "posPre": "", 80 | "posSuf": "" 81 | }, 82 | { 83 | "gSize": 3, 84 | "lgSize": 3, 85 | "macFrac": 0, 86 | "maxFrac": 2, 87 | "minFrac": 2, 88 | "minInt": 1, 89 | "negPre": "-", 90 | "negSuf": "\u00a0\u00a4", 91 | "posPre": "", 92 | "posSuf": "\u00a0\u00a4" 93 | } 94 | ] 95 | }, 96 | "id": "de-lu", 97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} 98 | }); 99 | }]); -------------------------------------------------------------------------------- /assets/lib/angular/i18n/angular-locale_no.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | angular.module("ngLocale", [], ["$provide", function($provide) { 3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"}; 4 | $provide.value("$locale", { 5 | "DATETIME_FORMATS": { 6 | "AMPMS": [ 7 | "AM", 8 | "PM" 9 | ], 10 | "DAY": [ 11 | "s\u00f8ndag", 12 | "mandag", 13 | "tirsdag", 14 | "onsdag", 15 | "torsdag", 16 | "fredag", 17 | "l\u00f8rdag" 18 | ], 19 | "MONTH": [ 20 | "januar", 21 | "februar", 22 | "mars", 23 | "april", 24 | "mai", 25 | "juni", 26 | "juli", 27 | "august", 28 | "september", 29 | "oktober", 30 | "november", 31 | "desember" 32 | ], 33 | "SHORTDAY": [ 34 | "s\u00f8n.", 35 | "man.", 36 | "tir.", 37 | "ons.", 38 | "tor.", 39 | "fre.", 40 | "l\u00f8r." 41 | ], 42 | "SHORTMONTH": [ 43 | "jan.", 44 | "feb.", 45 | "mars", 46 | "apr.", 47 | "mai", 48 | "juni", 49 | "juli", 50 | "aug.", 51 | "sep.", 52 | "okt.", 53 | "nov.", 54 | "des." 55 | ], 56 | "fullDate": "EEEE d. MMMM y", 57 | "longDate": "d. MMMM y", 58 | "medium": "d. MMM y HH:mm:ss", 59 | "mediumDate": "d. MMM y", 60 | "mediumTime": "HH:mm:ss", 61 | "short": "dd.MM.yy HH:mm", 62 | "shortDate": "dd.MM.yy", 63 | "shortTime": "HH:mm" 64 | }, 65 | "NUMBER_FORMATS": { 66 | "CURRENCY_SYM": "kr", 67 | "DECIMAL_SEP": ",", 68 | "GROUP_SEP": "\u00a0", 69 | "PATTERNS": [ 70 | { 71 | "gSize": 3, 72 | "lgSize": 3, 73 | "macFrac": 0, 74 | "maxFrac": 3, 75 | "minFrac": 0, 76 | "minInt": 1, 77 | "negPre": "-", 78 | "negSuf": "", 79 | "posPre": "", 80 | "posSuf": "" 81 | }, 82 | { 83 | "gSize": 3, 84 | "lgSize": 3, 85 | "macFrac": 0, 86 | "maxFrac": 2, 87 | "minFrac": 2, 88 | "minInt": 1, 89 | "negPre": "\u00a4\u00a0-", 90 | "negSuf": "", 91 | "posPre": "\u00a4\u00a0", 92 | "posSuf": "" 93 | } 94 | ] 95 | }, 96 | "id": "no", 97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} 98 | }); 99 | }]); -------------------------------------------------------------------------------- /assets/lib/angular/i18n/angular-locale_da.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | angular.module("ngLocale", [], ["$provide", function($provide) { 3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"}; 4 | $provide.value("$locale", { 5 | "DATETIME_FORMATS": { 6 | "AMPMS": [ 7 | "f.m.", 8 | "e.m." 9 | ], 10 | "DAY": [ 11 | "s\u00f8ndag", 12 | "mandag", 13 | "tirsdag", 14 | "onsdag", 15 | "torsdag", 16 | "fredag", 17 | "l\u00f8rdag" 18 | ], 19 | "MONTH": [ 20 | "januar", 21 | "februar", 22 | "marts", 23 | "april", 24 | "maj", 25 | "juni", 26 | "juli", 27 | "august", 28 | "september", 29 | "oktober", 30 | "november", 31 | "december" 32 | ], 33 | "SHORTDAY": [ 34 | "s\u00f8n", 35 | "man", 36 | "tir", 37 | "ons", 38 | "tor", 39 | "fre", 40 | "l\u00f8r" 41 | ], 42 | "SHORTMONTH": [ 43 | "jan.", 44 | "feb.", 45 | "mar.", 46 | "apr.", 47 | "maj", 48 | "jun.", 49 | "jul.", 50 | "aug.", 51 | "sep.", 52 | "okt.", 53 | "nov.", 54 | "dec." 55 | ], 56 | "fullDate": "EEEE 'den' d. MMMM y", 57 | "longDate": "d. MMM y", 58 | "medium": "dd/MM/yyyy HH.mm.ss", 59 | "mediumDate": "dd/MM/yyyy", 60 | "mediumTime": "HH.mm.ss", 61 | "short": "dd/MM/yy HH.mm", 62 | "shortDate": "dd/MM/yy", 63 | "shortTime": "HH.mm" 64 | }, 65 | "NUMBER_FORMATS": { 66 | "CURRENCY_SYM": "kr", 67 | "DECIMAL_SEP": ",", 68 | "GROUP_SEP": ".", 69 | "PATTERNS": [ 70 | { 71 | "gSize": 3, 72 | "lgSize": 3, 73 | "macFrac": 0, 74 | "maxFrac": 3, 75 | "minFrac": 0, 76 | "minInt": 1, 77 | "negPre": "-", 78 | "negSuf": "", 79 | "posPre": "", 80 | "posSuf": "" 81 | }, 82 | { 83 | "gSize": 3, 84 | "lgSize": 3, 85 | "macFrac": 0, 86 | "maxFrac": 2, 87 | "minFrac": 2, 88 | "minInt": 1, 89 | "negPre": "-", 90 | "negSuf": "\u00a0\u00a4", 91 | "posPre": "", 92 | "posSuf": "\u00a0\u00a4" 93 | } 94 | ] 95 | }, 96 | "id": "da", 97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} 98 | }); 99 | }]); -------------------------------------------------------------------------------- /assets/lib/angular/i18n/angular-locale_it.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | angular.module("ngLocale", [], ["$provide", function($provide) { 3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"}; 4 | $provide.value("$locale", { 5 | "DATETIME_FORMATS": { 6 | "AMPMS": [ 7 | "m.", 8 | "p." 9 | ], 10 | "DAY": [ 11 | "domenica", 12 | "luned\u00ec", 13 | "marted\u00ec", 14 | "mercoled\u00ec", 15 | "gioved\u00ec", 16 | "venerd\u00ec", 17 | "sabato" 18 | ], 19 | "MONTH": [ 20 | "gennaio", 21 | "febbraio", 22 | "marzo", 23 | "aprile", 24 | "maggio", 25 | "giugno", 26 | "luglio", 27 | "agosto", 28 | "settembre", 29 | "ottobre", 30 | "novembre", 31 | "dicembre" 32 | ], 33 | "SHORTDAY": [ 34 | "dom", 35 | "lun", 36 | "mar", 37 | "mer", 38 | "gio", 39 | "ven", 40 | "sab" 41 | ], 42 | "SHORTMONTH": [ 43 | "gen", 44 | "feb", 45 | "mar", 46 | "apr", 47 | "mag", 48 | "giu", 49 | "lug", 50 | "ago", 51 | "set", 52 | "ott", 53 | "nov", 54 | "dic" 55 | ], 56 | "fullDate": "EEEE d MMMM y", 57 | "longDate": "dd MMMM y", 58 | "medium": "dd/MMM/y HH:mm:ss", 59 | "mediumDate": "dd/MMM/y", 60 | "mediumTime": "HH:mm:ss", 61 | "short": "dd/MM/yy HH:mm", 62 | "shortDate": "dd/MM/yy", 63 | "shortTime": "HH:mm" 64 | }, 65 | "NUMBER_FORMATS": { 66 | "CURRENCY_SYM": "\u20ac", 67 | "DECIMAL_SEP": ",", 68 | "GROUP_SEP": ".", 69 | "PATTERNS": [ 70 | { 71 | "gSize": 3, 72 | "lgSize": 3, 73 | "macFrac": 0, 74 | "maxFrac": 3, 75 | "minFrac": 0, 76 | "minInt": 1, 77 | "negPre": "-", 78 | "negSuf": "", 79 | "posPre": "", 80 | "posSuf": "" 81 | }, 82 | { 83 | "gSize": 3, 84 | "lgSize": 3, 85 | "macFrac": 0, 86 | "maxFrac": 2, 87 | "minFrac": 2, 88 | "minInt": 1, 89 | "negPre": "\u00a4\u00a0-", 90 | "negSuf": "", 91 | "posPre": "\u00a4\u00a0", 92 | "posSuf": "" 93 | } 94 | ] 95 | }, 96 | "id": "it", 97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} 98 | }); 99 | }]); -------------------------------------------------------------------------------- /assets/lib/angular/i18n/angular-locale_da-dk.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | angular.module("ngLocale", [], ["$provide", function($provide) { 3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"}; 4 | $provide.value("$locale", { 5 | "DATETIME_FORMATS": { 6 | "AMPMS": [ 7 | "f.m.", 8 | "e.m." 9 | ], 10 | "DAY": [ 11 | "s\u00f8ndag", 12 | "mandag", 13 | "tirsdag", 14 | "onsdag", 15 | "torsdag", 16 | "fredag", 17 | "l\u00f8rdag" 18 | ], 19 | "MONTH": [ 20 | "januar", 21 | "februar", 22 | "marts", 23 | "april", 24 | "maj", 25 | "juni", 26 | "juli", 27 | "august", 28 | "september", 29 | "oktober", 30 | "november", 31 | "december" 32 | ], 33 | "SHORTDAY": [ 34 | "s\u00f8n", 35 | "man", 36 | "tir", 37 | "ons", 38 | "tor", 39 | "fre", 40 | "l\u00f8r" 41 | ], 42 | "SHORTMONTH": [ 43 | "jan.", 44 | "feb.", 45 | "mar.", 46 | "apr.", 47 | "maj", 48 | "jun.", 49 | "jul.", 50 | "aug.", 51 | "sep.", 52 | "okt.", 53 | "nov.", 54 | "dec." 55 | ], 56 | "fullDate": "EEEE 'den' d. MMMM y", 57 | "longDate": "d. MMM y", 58 | "medium": "dd/MM/yyyy HH.mm.ss", 59 | "mediumDate": "dd/MM/yyyy", 60 | "mediumTime": "HH.mm.ss", 61 | "short": "dd/MM/yy HH.mm", 62 | "shortDate": "dd/MM/yy", 63 | "shortTime": "HH.mm" 64 | }, 65 | "NUMBER_FORMATS": { 66 | "CURRENCY_SYM": "kr", 67 | "DECIMAL_SEP": ",", 68 | "GROUP_SEP": ".", 69 | "PATTERNS": [ 70 | { 71 | "gSize": 3, 72 | "lgSize": 3, 73 | "macFrac": 0, 74 | "maxFrac": 3, 75 | "minFrac": 0, 76 | "minInt": 1, 77 | "negPre": "-", 78 | "negSuf": "", 79 | "posPre": "", 80 | "posSuf": "" 81 | }, 82 | { 83 | "gSize": 3, 84 | "lgSize": 3, 85 | "macFrac": 0, 86 | "maxFrac": 2, 87 | "minFrac": 2, 88 | "minInt": 1, 89 | "negPre": "-", 90 | "negSuf": "\u00a0\u00a4", 91 | "posPre": "", 92 | "posSuf": "\u00a0\u00a4" 93 | } 94 | ] 95 | }, 96 | "id": "da-dk", 97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} 98 | }); 99 | }]); -------------------------------------------------------------------------------- /assets/lib/angular/i18n/angular-locale_de-at.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | angular.module("ngLocale", [], ["$provide", function($provide) { 3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"}; 4 | $provide.value("$locale", { 5 | "DATETIME_FORMATS": { 6 | "AMPMS": [ 7 | "vorm.", 8 | "nachm." 9 | ], 10 | "DAY": [ 11 | "Sonntag", 12 | "Montag", 13 | "Dienstag", 14 | "Mittwoch", 15 | "Donnerstag", 16 | "Freitag", 17 | "Samstag" 18 | ], 19 | "MONTH": [ 20 | "J\u00e4nner", 21 | "Februar", 22 | "M\u00e4rz", 23 | "April", 24 | "Mai", 25 | "Juni", 26 | "Juli", 27 | "August", 28 | "September", 29 | "Oktober", 30 | "November", 31 | "Dezember" 32 | ], 33 | "SHORTDAY": [ 34 | "So.", 35 | "Mo.", 36 | "Di.", 37 | "Mi.", 38 | "Do.", 39 | "Fr.", 40 | "Sa." 41 | ], 42 | "SHORTMONTH": [ 43 | "J\u00e4n", 44 | "Feb", 45 | "M\u00e4r", 46 | "Apr", 47 | "Mai", 48 | "Jun", 49 | "Jul", 50 | "Aug", 51 | "Sep", 52 | "Okt", 53 | "Nov", 54 | "Dez" 55 | ], 56 | "fullDate": "EEEE, dd. MMMM y", 57 | "longDate": "dd. MMMM y", 58 | "medium": "dd.MM.yyyy HH:mm:ss", 59 | "mediumDate": "dd.MM.yyyy", 60 | "mediumTime": "HH:mm:ss", 61 | "short": "dd.MM.yy HH:mm", 62 | "shortDate": "dd.MM.yy", 63 | "shortTime": "HH:mm" 64 | }, 65 | "NUMBER_FORMATS": { 66 | "CURRENCY_SYM": "\u20ac", 67 | "DECIMAL_SEP": ",", 68 | "GROUP_SEP": ".", 69 | "PATTERNS": [ 70 | { 71 | "gSize": 3, 72 | "lgSize": 3, 73 | "macFrac": 0, 74 | "maxFrac": 3, 75 | "minFrac": 0, 76 | "minInt": 1, 77 | "negPre": "-", 78 | "negSuf": "", 79 | "posPre": "", 80 | "posSuf": "" 81 | }, 82 | { 83 | "gSize": 3, 84 | "lgSize": 3, 85 | "macFrac": 0, 86 | "maxFrac": 2, 87 | "minFrac": 2, 88 | "minInt": 1, 89 | "negPre": "\u00a4\u00a0-", 90 | "negSuf": "", 91 | "posPre": "\u00a4\u00a0", 92 | "posSuf": "" 93 | } 94 | ] 95 | }, 96 | "id": "de-at", 97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} 98 | }); 99 | }]); -------------------------------------------------------------------------------- /assets/lib/angular/i18n/angular-locale_es-419.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | angular.module("ngLocale", [], ["$provide", function($provide) { 3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"}; 4 | $provide.value("$locale", { 5 | "DATETIME_FORMATS": { 6 | "AMPMS": [ 7 | "a.m.", 8 | "p.m." 9 | ], 10 | "DAY": [ 11 | "domingo", 12 | "lunes", 13 | "martes", 14 | "mi\u00e9rcoles", 15 | "jueves", 16 | "viernes", 17 | "s\u00e1bado" 18 | ], 19 | "MONTH": [ 20 | "enero", 21 | "febrero", 22 | "marzo", 23 | "abril", 24 | "mayo", 25 | "junio", 26 | "julio", 27 | "agosto", 28 | "septiembre", 29 | "octubre", 30 | "noviembre", 31 | "diciembre" 32 | ], 33 | "SHORTDAY": [ 34 | "dom", 35 | "lun", 36 | "mar", 37 | "mi\u00e9", 38 | "jue", 39 | "vie", 40 | "s\u00e1b" 41 | ], 42 | "SHORTMONTH": [ 43 | "ene", 44 | "feb", 45 | "mar", 46 | "abr", 47 | "may", 48 | "jun", 49 | "jul", 50 | "ago", 51 | "sep", 52 | "oct", 53 | "nov", 54 | "dic" 55 | ], 56 | "fullDate": "EEEE, d 'de' MMMM 'de' y", 57 | "longDate": "d 'de' MMMM 'de' y", 58 | "medium": "dd/MM/yyyy HH:mm:ss", 59 | "mediumDate": "dd/MM/yyyy", 60 | "mediumTime": "HH:mm:ss", 61 | "short": "dd/MM/yy HH:mm", 62 | "shortDate": "dd/MM/yy", 63 | "shortTime": "HH:mm" 64 | }, 65 | "NUMBER_FORMATS": { 66 | "CURRENCY_SYM": "$", 67 | "DECIMAL_SEP": ".", 68 | "GROUP_SEP": ",", 69 | "PATTERNS": [ 70 | { 71 | "gSize": 3, 72 | "lgSize": 3, 73 | "macFrac": 0, 74 | "maxFrac": 3, 75 | "minFrac": 0, 76 | "minInt": 1, 77 | "negPre": "-", 78 | "negSuf": "", 79 | "posPre": "", 80 | "posSuf": "" 81 | }, 82 | { 83 | "gSize": 3, 84 | "lgSize": 3, 85 | "macFrac": 0, 86 | "maxFrac": 2, 87 | "minFrac": 2, 88 | "minInt": 1, 89 | "negPre": "\u00a4-", 90 | "negSuf": "", 91 | "posPre": "\u00a4", 92 | "posSuf": "" 93 | } 94 | ] 95 | }, 96 | "id": "es-419", 97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} 98 | }); 99 | }]); -------------------------------------------------------------------------------- /assets/lib/angular/i18n/angular-locale_eu.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | angular.module("ngLocale", [], ["$provide", function($provide) { 3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"}; 4 | $provide.value("$locale", { 5 | "DATETIME_FORMATS": { 6 | "AMPMS": [ 7 | "AM", 8 | "PM" 9 | ], 10 | "DAY": [ 11 | "igandea", 12 | "astelehena", 13 | "asteartea", 14 | "asteazkena", 15 | "osteguna", 16 | "ostirala", 17 | "larunbata" 18 | ], 19 | "MONTH": [ 20 | "urtarrila", 21 | "otsaila", 22 | "martxoa", 23 | "apirila", 24 | "maiatza", 25 | "ekaina", 26 | "uztaila", 27 | "abuztua", 28 | "iraila", 29 | "urria", 30 | "azaroa", 31 | "abendua" 32 | ], 33 | "SHORTDAY": [ 34 | "ig", 35 | "al", 36 | "as", 37 | "az", 38 | "og", 39 | "or", 40 | "lr" 41 | ], 42 | "SHORTMONTH": [ 43 | "urt", 44 | "ots", 45 | "mar", 46 | "api", 47 | "mai", 48 | "eka", 49 | "uzt", 50 | "abu", 51 | "ira", 52 | "urr", 53 | "aza", 54 | "abe" 55 | ], 56 | "fullDate": "EEEE, y'eko' MMMM'ren' dd'a'", 57 | "longDate": "y'eko' MMM'ren' dd'a'", 58 | "medium": "y MMM d HH:mm:ss", 59 | "mediumDate": "y MMM d", 60 | "mediumTime": "HH:mm:ss", 61 | "short": "yyyy-MM-dd HH:mm", 62 | "shortDate": "yyyy-MM-dd", 63 | "shortTime": "HH:mm" 64 | }, 65 | "NUMBER_FORMATS": { 66 | "CURRENCY_SYM": "\u20ac", 67 | "DECIMAL_SEP": ",", 68 | "GROUP_SEP": ".", 69 | "PATTERNS": [ 70 | { 71 | "gSize": 3, 72 | "lgSize": 3, 73 | "macFrac": 0, 74 | "maxFrac": 3, 75 | "minFrac": 0, 76 | "minInt": 1, 77 | "negPre": "-", 78 | "negSuf": "", 79 | "posPre": "", 80 | "posSuf": "" 81 | }, 82 | { 83 | "gSize": 3, 84 | "lgSize": 3, 85 | "macFrac": 0, 86 | "maxFrac": 2, 87 | "minFrac": 2, 88 | "minInt": 1, 89 | "negPre": "(", 90 | "negSuf": "\u00a0\u00a4)", 91 | "posPre": "", 92 | "posSuf": "\u00a0\u00a4" 93 | } 94 | ] 95 | }, 96 | "id": "eu", 97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} 98 | }); 99 | }]); -------------------------------------------------------------------------------- /assets/lib/angular/i18n/angular-locale_it-it.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | angular.module("ngLocale", [], ["$provide", function($provide) { 3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"}; 4 | $provide.value("$locale", { 5 | "DATETIME_FORMATS": { 6 | "AMPMS": [ 7 | "m.", 8 | "p." 9 | ], 10 | "DAY": [ 11 | "domenica", 12 | "luned\u00ec", 13 | "marted\u00ec", 14 | "mercoled\u00ec", 15 | "gioved\u00ec", 16 | "venerd\u00ec", 17 | "sabato" 18 | ], 19 | "MONTH": [ 20 | "gennaio", 21 | "febbraio", 22 | "marzo", 23 | "aprile", 24 | "maggio", 25 | "giugno", 26 | "luglio", 27 | "agosto", 28 | "settembre", 29 | "ottobre", 30 | "novembre", 31 | "dicembre" 32 | ], 33 | "SHORTDAY": [ 34 | "dom", 35 | "lun", 36 | "mar", 37 | "mer", 38 | "gio", 39 | "ven", 40 | "sab" 41 | ], 42 | "SHORTMONTH": [ 43 | "gen", 44 | "feb", 45 | "mar", 46 | "apr", 47 | "mag", 48 | "giu", 49 | "lug", 50 | "ago", 51 | "set", 52 | "ott", 53 | "nov", 54 | "dic" 55 | ], 56 | "fullDate": "EEEE d MMMM y", 57 | "longDate": "dd MMMM y", 58 | "medium": "dd/MMM/y HH:mm:ss", 59 | "mediumDate": "dd/MMM/y", 60 | "mediumTime": "HH:mm:ss", 61 | "short": "dd/MM/yy HH:mm", 62 | "shortDate": "dd/MM/yy", 63 | "shortTime": "HH:mm" 64 | }, 65 | "NUMBER_FORMATS": { 66 | "CURRENCY_SYM": "\u20ac", 67 | "DECIMAL_SEP": ",", 68 | "GROUP_SEP": ".", 69 | "PATTERNS": [ 70 | { 71 | "gSize": 3, 72 | "lgSize": 3, 73 | "macFrac": 0, 74 | "maxFrac": 3, 75 | "minFrac": 0, 76 | "minInt": 1, 77 | "negPre": "-", 78 | "negSuf": "", 79 | "posPre": "", 80 | "posSuf": "" 81 | }, 82 | { 83 | "gSize": 3, 84 | "lgSize": 3, 85 | "macFrac": 0, 86 | "maxFrac": 2, 87 | "minFrac": 2, 88 | "minInt": 1, 89 | "negPre": "\u00a4\u00a0-", 90 | "negSuf": "", 91 | "posPre": "\u00a4\u00a0", 92 | "posSuf": "" 93 | } 94 | ] 95 | }, 96 | "id": "it-it", 97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} 98 | }); 99 | }]); -------------------------------------------------------------------------------- /assets/lib/angular/i18n/angular-locale_it-sm.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | angular.module("ngLocale", [], ["$provide", function($provide) { 3 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"}; 4 | $provide.value("$locale", { 5 | "DATETIME_FORMATS": { 6 | "AMPMS": [ 7 | "m.", 8 | "p." 9 | ], 10 | "DAY": [ 11 | "domenica", 12 | "luned\u00ec", 13 | "marted\u00ec", 14 | "mercoled\u00ec", 15 | "gioved\u00ec", 16 | "venerd\u00ec", 17 | "sabato" 18 | ], 19 | "MONTH": [ 20 | "gennaio", 21 | "febbraio", 22 | "marzo", 23 | "aprile", 24 | "maggio", 25 | "giugno", 26 | "luglio", 27 | "agosto", 28 | "settembre", 29 | "ottobre", 30 | "novembre", 31 | "dicembre" 32 | ], 33 | "SHORTDAY": [ 34 | "dom", 35 | "lun", 36 | "mar", 37 | "mer", 38 | "gio", 39 | "ven", 40 | "sab" 41 | ], 42 | "SHORTMONTH": [ 43 | "gen", 44 | "feb", 45 | "mar", 46 | "apr", 47 | "mag", 48 | "giu", 49 | "lug", 50 | "ago", 51 | "set", 52 | "ott", 53 | "nov", 54 | "dic" 55 | ], 56 | "fullDate": "EEEE d MMMM y", 57 | "longDate": "dd MMMM y", 58 | "medium": "dd/MMM/y HH:mm:ss", 59 | "mediumDate": "dd/MMM/y", 60 | "mediumTime": "HH:mm:ss", 61 | "short": "dd/MM/yy HH:mm", 62 | "shortDate": "dd/MM/yy", 63 | "shortTime": "HH:mm" 64 | }, 65 | "NUMBER_FORMATS": { 66 | "CURRENCY_SYM": "\u20ac", 67 | "DECIMAL_SEP": ",", 68 | "GROUP_SEP": ".", 69 | "PATTERNS": [ 70 | { 71 | "gSize": 3, 72 | "lgSize": 3, 73 | "macFrac": 0, 74 | "maxFrac": 3, 75 | "minFrac": 0, 76 | "minInt": 1, 77 | "negPre": "-", 78 | "negSuf": "", 79 | "posPre": "", 80 | "posSuf": "" 81 | }, 82 | { 83 | "gSize": 3, 84 | "lgSize": 3, 85 | "macFrac": 0, 86 | "maxFrac": 2, 87 | "minFrac": 2, 88 | "minInt": 1, 89 | "negPre": "\u00a4\u00a0-", 90 | "negSuf": "", 91 | "posPre": "\u00a4\u00a0", 92 | "posSuf": "" 93 | } 94 | ] 95 | }, 96 | "id": "it-sm", 97 | "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} 98 | }); 99 | }]); --------------------------------------------------------------------------------