在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
开源软件名称(OpenSource Name):bcabanes/gulp-angular-translate-extract开源软件地址(OpenSource Url):https://github.com/bcabanes/gulp-angular-translate-extract开源编程语言(OpenSource Language):JavaScript 83.4%开源软件介绍(OpenSource Introduction):gulp-angular-translate-extractGulp version of grunt-angular-translate. Simply extract all the translation keys for angular-translate project created by Pascal Precht. Getting startedInstall this gulp plugin next to your project. Require gulpjs. $ npm install gulp-angular-translate-extract Then you can use the gulp plugin inside your gulp tasks, as follow: //...
var gulp = require('gulp');
var angularTranslate = require('./');
//...
gulp.task('default', function () {
return gulp.src('fixtures/*.html')
.pipe(angularTranslate({
lang: ['en_CA', 'fr_CA']
}))
//..
});
//... To know all options available, please read the documentation (here). Use CasesViewsFilters{{'TRANSLATION' | translate}} {{'TRANSLATION' | translate:XXXXXX}} Directives<a href="#" translate>TRANSLATION</a> Directives plural (custom attribute angular-plural-extract to automatize extraction)<span translate="TRANSLATION_KEY" angular-plural-extract="['TEXT FOR ONE','# TEXT FOR OTHER']" translate-values="{NB: X}" translate-interpolation="messageformat"></span> JavascriptFilterfilter("translate")("TRANSLATION") Service angular-translate$translate('TRANSLATION') $translate.instant('TRANSLATION') $translate(['TRANSLATION', 'TRANSLATION_1']) ConfigurationOptionsThis is all options supported by gulp-angular-translate: nullEmptyType: Example: If set to true, it will replace all final empty translations by null value. namespaceType: Example: If set to true, it will organize output JSON like the following.
interpolationType: Example: Define interpolation symbol use for your angular application. The angular's docs about $interpolateProvider explain how you can configure the interpolation markup. defaultLangType: Example: Define the default language. For default language, by default the key will be set as value. customRegexType: Example: customRegex: [
'tt-default="\'((?:\\\\.|[^\'\\\\])*)\'\\|translate"'
], Will extract Enjoy your custom regex guys! langType: Example: Define language to be extract (en__CA, en__US, xxx). xxx will be the output filename wrapped by prefix and suffix option. prefixType: Example: Set prefix to output filenames (cf angular-translate#static-files). suffixType: Example: Set suffix to output filenames (cf angular-translate#static-files). destType: Example: Relative path to output folder. safeModeType: If safeMode is set to stringifyOptionsType: If stringifyOptions is set to LicenseThe MIT License (MIT) Copyright (c) 2015 Benjamin Cabanes 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. |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论