This fork was mainly created to provide the possibility to configure the value of the 'autoLowercase' parameter.
myApp.value("phraseAutoLowercase", true);
or
myApp.value("phraseAutoLowercase", false);
angular-phrase is an addon for angular-translate that lets you connect localized AngularJS applications to the PhraseApp In-Context Editor.
To use angular-phrase with your application you have to:
- Sign up for a PhraseApp account: https://phraseapp.com/en/signup
- Use the excellent angular-translate module by Pascal Precht for localization in your AngularJS app
- Have jQuery included
E-Mail: demo@phraseapp.com
Password: phrase
http://angular-phrase-demo.herokuapp.com/
(Find the source code for the demo on GitHub: angular-phrase-demo
bower install angular-phrase
(or download it manually from the dist folder)
You can also build it directly from source to get the latest and greatest:
grunt build
Add angular-phrase module to your existing AngularJS application after loading the angular-translate module:
var myApp = angular.module("myApp", ['pascalprecht.translate', 'phrase'])
Configure the module:
myApp.value("phraseProjectId", "YOUR-PROJECT-ID");
myApp.value("phraseEnabled", true);
myApp.value("phraseDecoratorPrefix", "{{__");
myApp.value("phraseDecoratorSuffix", "__}}");
You can find the Project-ID in the Project overview in the PhraseApp Translation Center
Add the phrase-javascript directive within your application, usually best within the <head>:
<phrase-javascript></phrase-javascript>
If this does not work for you, you can also integrate the JavaScript snippet manually.
Once the module is enabled it will:
-
override the $translate service and provide placeholders that can be picked up by the PhraseApp In-Context Editor
-
fetch the JavaScript application used to render the In-Context Editor on top of your application
If you use the angular-phrase plugin in combination with the phraseapp-in-context-editor-ruby gem or another server side technology that enables the In-Context Editor, AngularJS might have problems if you use curly braces as the decorator suffix/prefix since AngularJS thinks that youre decoratated keys are AngularJS directives (which is not the case).
You can easily solve this issue by using a different decorator syntax for your setup:
app.value("phraseDecoratorPrefix", "[[__");
app.value("phraseDecoratorSuffix", "__]]");
PhraseApp::InContextEditor.prefix = "[[__"
PhraseApp::InContextEditor.suffix = "__]]"
window.PHRASEAPP_CONFIG = {
prefix: '[[__',
suffix: "__]]"
}
- Add support for
translatefilter - Add support for
translatedirective - Add support for interpolation values
Question? Contact us at: phraseapp.com/contact
Issue? use GitHub issues and share the problem
Run unit tests using grunt/Karma:
grunt karma:unit
