Tagged Questions
0
votes
1answer
89 views
Form errors i18n Play framework
I'm using the form helper and a custom form template to render my forms in the Play framework like this:
@(lang: Lang)(myForm: Form[MyModel])
@import play.i18n._
@import helper._
@implicitField = ...
1
vote
1answer
56 views
Ampersand notation not working in Play framework 2.0
I have a simple scala.html template created in a Playframework 2.0 project. If I reference messages with @Messages("message")
<div id="content">
@Messages("test")
</div>
the ...
0
votes
1answer
79 views
Display of German Umlautes not displayed correctly in play framework (i18n)
I have the following setting:
application.conf
application.langs="de"
messages.de
deleteAlbum=Album Löschen
And in a template I use:
@Messages.get("deleteAlbum")
But wenn I view it in the ...
0
votes
1answer
98 views
Scala play internationalization: how to set an explicit language across all templates
I've read through the documentation: http://www.playframework.com/documentation/2.1.0/ScalaI18N
and this post:
i18n error: controller and templates uses different implicit languages
and it looks ...
0
votes
1answer
41 views
Can't override default messages in Play 2.0.4
I'm overriding the default play messages in a file /conf/messages
error.required=Dieses Feld ist erforderlich
This works on my local machine, but not an a dev server. I deploy the app via 'play ...
0
votes
1answer
259 views
Customising validation messages in Play Framework 2
I am trying to customise the validation messages in Play.
I found the following entry in the file $PLAY_HOME/src/main/resources/messages:
error.max=Must be less or equal to {0}
I redefined the ...
0
votes
1answer
77 views
Unescaped messages in Play 2.0
I am playing a little bit with Play 2.0.
Now I have a problem regarding html elements in the message file.
I have the following template extract:
<footer>
@Messages("footer")
...
4
votes
4answers
189 views
How can I serve mostly static pages from a scala Play! application like an “About” page in different languages?
I am building an application using the Play! framework version 2.0.4. Some pages that are legally required such as an imprint mostly contain lots (some 10k each) of static text which I would like to ...
1
vote
1answer
166 views
Play framework 2 - i18n in javascript files
I am using Scala Play Framework 2. I want multilanguage javascript files and it would be perfect to have the possibility to put Messages("title.items") inside javascript files.
To do so, I think we ...
1
vote
2answers
137 views
Play 2.0 date format
I'm trying to format a date in a Scala template in Play. So far I've written this:
<p>@DateFormat.getInstance().format(deadline)</p>
Where deadline is the date I'm outputting to the web ...
2
votes
1answer
403 views
Play! Framework - Can my view template be localised when rendering it as an AsyncResult?
I've recently started using the Play! framework (v2.0.4) for writing a Java web application. In the majority of my controllers I'm following the paradigm of suspending the HTTP request until the ...
1
vote
1answer
96 views
play 2 Framework @Messages -> How insert dynamic variable in a same Message?
I would like insert dynamic variable on my Messages.
For example : @Messages("social.feed") work good.
But I would like have more specific variable :
@Messages("social.feed.1")
...
1
vote
2answers
126 views
How translate /YYYY/MM/DD/ URL path to non-Gregorian calendars?
I'm developing a blog hosting service, and blog articles can be reached via URLs like
http://server/2012/10/30/article-title. How do I best handle the /YYYY/MM/DD/ part of the URL for countries where ...
1
vote
2answers
103 views
What are the i18n message ids for field infos and errors?
I'd like to translate the default constraints and error messages for markup generated by the views.html.helpers._ inputs. I couldn't find it in the documentation, and have already started browsing the ...
1
vote
1answer
360 views
Play framework and javascript i18n
I'm working with getting javascript localization to work my play 2.0 app using twitter bootstrap and jquery with Jquery UI. The localization I'm aiming at requires messages for the validation plugin, ...
0
votes
1answer
175 views
PlayFramework 2 - Scala - How to pass the implicit Lang outside the Controller scope
In a Play 2.0 application I use Jerkson for custom JSON serialization.
In the implementation of a JsonSerializer class I need to internationalize the messages based on the main language of the ...
1
vote
1answer
77 views
Internalizating content heavy pages into messagefiles seem cumbersome in play2?
Internalization in Play2 can be done with Message.get("home.title") and language files. What about when you internalizate a page full of textual content and not just one specific header or link?
For ...
1
vote
1answer
123 views
How to use single quotes in i18n in Playframework2?
In working on a French app and french language is full of single quotes. So I need to use i18n with single quotes and many other chars.
So here is an extract of my messages.fr-FR file :
...
1
vote
2answers
592 views
Play framework : Setting Lang in a helper.form in a scala view
I've got the following code in a view :
@(lang:Lang)...
...
<div>
...
@helper.form(action = routes.item.add) {
<p>@helper.inputText(myItem("name"))</p>
...
}
...
...
3
votes
1answer
305 views
Playframework 2.0.1DateFormatter receives system locale
I wrote a custom DateFormatter in Play 2.0 / Java because the default one seems to be i18n-unaware (the implementation details are irrelevant here)
public class DateFormatter extends ...
0
votes
1answer
423 views
Playframework i18 date binding
Am I missing something (again) or is there a (bad) lack of internationalization support for form binding in Play 2.0 (Java) ?
Our system should support at least english and portuguese, which use ...
4
votes
1answer
1k views
How to let the user switch language in playframework 2
In my play 1.x controller I had this:
public static void language(final String language){
Lang.change(language);
Header referer = request.headers.get("referer");
if(referer == null){
...
5
votes
1answer
3k views
play framework 2.0 - internationalization - how to translate a message
First question: how can I retrieve the translation of a text in a controller?
Second question: how can I retrieve the translation of a text in a template?
The api says that there is a .get method ...
1
vote
2answers
2k views
Access translated i18n messages from Scala templates (Play! Internationalization)
In my Play! 2.0 application I would like to define the following languages:
# The application languages
# ~~~~~
application.langs=en-GB,de-DE,nl-NL
I also have created 3 files that ends with the ...
3
votes
1answer
1k views
i18n error: controller and templates uses different implicit languages
Controller:
def test = Action { implicit request =>
import play.api.i18n._
val msg = Messages("error.invalid")
implicit val langInController = lang(request)
...
3
votes
3answers
1k views