Giter VIP home page Giter VIP logo

angular-localization's Introduction

Angular-localization

Angular localization library. Makes it easy to manage languages on your website.


## Installation ### Using npm ````bash $ npm install angular-localization ````
## Usage ### [Live Example](https://embed.plnkr.co/uQedPz/)
##### Injecting the library ````javascript angular .module('yourApp', [ 'i18n' ]) ````
##### Configuration ````javascript angular .module('yourApp') .config(['$i18nProvider', function($i18nProvider) {
// assuming assets/locals/en.json exists

$i18nProvider.config({
  language: 'en', // default language
  path: 'path/to/your/files', // for example: assets/locals
  type: 'json', // type of your translations files
});

}])

<br>
##### Example translation file ````assets/locals/en.json````
````json
{
  "name": "english",
  "translations": {
    "foo": "bar",
    "baz": "qux"
  }
}

##### Using the directive ````html ````
##### Using the provider inside a controller ````javascript angular .module('yourApp') .controller('yourController', ['$i18n', function($i18n) { var vm = this;
vm.foo = $i18n('bar');

}])

and then just
````html
<body ng-app="yourApp">
  <div ng-controller="yourController as ctrl">
    <span>{{ctrl.foo}}</span>
  </div>
</body>

##### Changing language ````javascript angular .module('yourApp') .controller('yourController', ['$i18n', function($i18n) { $i18n.set('el'); }]) ````
## Documentation *(work in progress)*

angular-localization's People

Contributors

ktsalik avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.