Giter Site home page Giter Site logo

angularjs-localizationservice's Introduction

#AngularJS Resource Localization Service

Overview

This is a simple service module that allows you to localize your AngularJS applications. A tutorial that covers the service is located at Coding Smackdown TV

The service returns a localized string based on the current locale of the browser.

You can inject the service into a controller or use it via the i18n filter or the i18n directive provided in the code.

Wiring It Up

You need to follow a few steps to wire the service into your app:

  1. Include the script localize.js in your project.
  2. Ensure you add 'localization' to your app's dependency list.
  3. Create a folder off the root of your web app named i18n and create a resource-locale_default.js file in it.
  4. For every language you want to provide localized strings for you will also need to create a resource file that ends in the languageId-countryId (e.g. resource-locale_en-us.js).
  5. To get the translated string using the filter with either ng-bind="'HomeTitle' | i18n" or {{'HomeTitle' | i18n}} in your HTML. You can use the directive by adding the data-i18n="HomeTitle" attribute to your markup.

Localization File Format

The localization file is pretty simple. It consists of a JSON array of the following object:

{
    "key":"_Greeting_",
    "value":"iteSa ocalizationla xampleea singua heta esourcera ocalizationla ervicesa",
    "description":"Home page greeting text"
}

The key is used to look up the localized string, the value will be returned from the lookup and the description is an aide to developers and translators what the string is used for.

Sample App

I've created a sample app that uses the Resource Localization Service to provide the text for the entire application. I registered 'localization' in my app's dependency list and I then use a combination of ng-bind="'HomeTitle' | i18n" and data-i18n="HomeTitle" to insert the text into the page at run time.

There is a delay loading the resource file, you may need to use the filter instead of the directive on the home page. This is due to the fact that the directive is only called once per instance where a filter is re-evaluated each time the DOM is compiled.

Change Log

0.1.2 - 09/26/2013

Resolved github issue #6 by adding code to properly parse language under android 2.x

0.1.1 - 09/26/2013

Resolved github issue #8 by changing broadcast message to "localizeResourcesUpdated" across all components.

LICENSE

The MIT License

Copyright (c) 2012-2013 Coding Smackdown TV, http://codingsmackdown.tv

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Enjoy!

angularjs-localizationservice's People

Contributors

brugnara avatar cs45977 avatar hadrienl avatar lavinjj avatar michaelwoods avatar ricick 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.