在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
开源软件名称:coderifous/jquery-localize开源软件地址:https://github.com/coderifous/jquery-localize开源编程语言:JavaScript 84.5%开源软件介绍:jquery.localize.jsA jQuery plugin that makes it easy to i18n your static web site. Synopsis
Getting StartedDownload the production version or the development version. Load the jquery-localize plugin on your page.It's the file located at Mark up tags whose content you want to be translatedSomewhere in your html: <h1 data-localize="greeting"> Hello! </h1> Provide a JSON language file that has translations:example-fr.json:
Use the localize plugin.<script>
// In a browser where the language is set to French
$("[data-localize]").localize("example")
// You can also override the language detection, and pass in a language code
$("[data-localize]").localize("example", { language: "fr" })
</script> Gory DetailsLanguage file loadingThe first argument of the localize method is the name of the language pack. You might have a different language pack for different parts of your website. Here's an example of loading several language packs: <script>
$("[data-localize]")
.localize("header")
.localize("sidebar")
.localize("footer")
</script> If the language of the browser were set to "fr", then the plugin would try to load:
if the language of the browser also had a country code, like "fr-FR", then the plugin would ALSO try to load:
This let's you define partial language refinements for different regions. For instance, you can have the base language translation file for a language that translates 100 different phrases, and for countries were maybe a some of those phrases would be out of place, you can just provide a country-specific file with just those special phrases defined. Skipping Languages (aka Optimizing for My Language)This is useful if you've got a default language. For example, if all of your content is served in english, then you probably don't want the overhead of loading up unecessary (and probably non-existant) english langauge packs (foo-en.json) You can tell the localize plugin to always skip certain languages using the skipLanguage option: <script>
//using a string will skip ONLY if the language code matches exactly
//this would prevent loading only if the language was "en-US"
$("[data-localize]").localize("example", { skipLanguage: "en-US" })
//using a regex will skip if the regex matches
//this would prevent loading of any english language translations
$("[data-localize]").localize("example", { skipLanguage: /^en/ })
//using an array of strings will skip if any of the strings matches exactly
$("[data-localize]").localize("example", { skipLanguage: ["en", "en-US"] })
</script> Applying the language fileIf you rely on the default callback and use the "data-localize" attribute then the changes will be applied for you. Examples:HTML: <p data-localize="title">Tracker Pro XT Deluxe</p>
<p data-localize="search.placeholder">Search...</p>
<p data-localize="search.button">Go!</p>
<p data-localize="footer.disclaimer">Use at your own risk.</p>
<p data-localize="menu.dashboard">Dashboard</p>
<p data-localize="menu.list">Bug List</p>
<p data-localize="menu.logout">Logout</p> application-es.json (fake spanish)
Localize it! <script>
$("[data-localize]").localize("application", { language: "es" });
</script> CallbacksYou can provide a callback if you want to augment or replace the default callback provided by the plugin. Your callback should take at least 1 argument: the language data (contents of your json file). It can optionally accept a second argument, which is a reference to the default callback function. This is handy if you still want the default behavior, but also need to do something else with the language data. <script>
$("[data-localize]").localize("application", {
language: "es",
callback: function(data, defaultCallback){
data.title = data.title + currentBugName();
defaultCallback(data)
}
});
</script> See the test/samples for working examples. ContributingTo contribute to this plugin, please read the contributing guidelines. Credits & LicensingCopyright (c) Jim Garvin (http://github.com/coderifous), 2008. Dual licensed under the GPL (http://dev.jquery.com/browser/trunk/jquery/GPL-LICENSE.txt) and MIT (http://dev.jquery.com/browser/trunk/jquery/MIT-LICENSE.txt) licenses. Written by Jim Garvin (@coderifous) for use on LMGTFY.com. Please use it, and contribute changes. http://github.com/coderifous/jquery-localize Based off of Keith Wood's Localisation jQuery plugin. http://keith-wood.name/localisation.html |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论