在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
开源软件名称(OpenSource Name):lavinjj/angularjs-localizationservice开源软件地址(OpenSource Url):https://github.com/lavinjj/angularjs-localizationservice开源编程语言(OpenSource Language):HTML 77.5%开源软件介绍(OpenSource Introduction):#AngularJS Resource Localization Service OverviewThis 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 UpYou need to follow a few steps to wire the service into your app:
Localization File FormatThe localization file is pretty simple. It consists of a JSON array of the following object:
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 AppI'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 Log0.1.2 - 09/26/2013Resolved github issue #6 by adding code to properly parse language under android 2.x 0.1.1 - 09/26/2013Resolved github issue #8 by changing broadcast message to "localizeResourcesUpdated" across all components. LICENSEThe 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! |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论