Babel is an integrated collection of utilities that assist in internationalizing and localizing Python applications, with an emphasis on web-based applications.
0
votes
0answers
3 views
pybabel text extraction from mako templates
By default pybabel is extacting ${_("mystr")} strings just fine from my mako templates, but when I try to use ${pgettext("myctx", "mystr")} for contextual translations, it doesn't seem to find and ...
0
votes
2answers
30 views
Get current locale in Jinja2
On my website use Flask + Jinja2, and Flask-Babel for translation. The site has two languages (depending on the URL), and I'd want to add a link to switch between them. To do this correctly I need to ...
0
votes
0answers
14 views
Trying to setup Rhode Code on Ubuntu and ran into
While following instructions on how to setup Rhode Code listed here:
http://pythonhosted.org/RhodeCode/setup.html
I was on the step where I am supposed to use the command:
paster setup-rhodecode ...
0
votes
0answers
24 views
Latek doesn't install Greek package [closed]
I am a newbie but here it is my problem. I have to write in my document something in greek. So at the beginning I use:
\usepackage[polutonikogreek,english]{babel}
and then when I have to write ...
0
votes
0answers
16 views
i18n with webapp2/babel in a loop?
Is it not possible to use i18n with webapp2/babel in a loop!? I've no idea how babel is creating the 'messeges.pot' file but I assume it scans the main.py for hardcoded strings, right? How can ...
1
vote
1answer
63 views
Blacklist jinja2 custom tags in pybabel configuration file
I am using pybabel to translate wordings in my templates. Templates are handled by jinja2. I created a jinja2 Extension to automatically generate my breadcrumb.
However, extracting the wordings with ...
0
votes
1answer
34 views
Babel's message_extractors configuration in setup.py: Third parameter in tuple
I want to start using Babel with my Python project. I have a setup.py that has something along the following as per documentation:
setup(
...
message_extractors = {'my_project': [('**.py', ...
0
votes
0answers
80 views
Babel and jinja2 with coffin extension
I'm trying to translate a jinja2/coffin template with Babel using the command line tool. The issue is that the function babel_extract jams on the coffin tags like {% url %} or {% csrf_token %}.
...
0
votes
0answers
86 views
How to enable auto-complete in Emacs Org-babel?
I want auto-complete can complete code in Org-mode org-babel region.
e.g.
#+begin_src emacs-lisp
(setq )
#+end_src
How to set emacs rc file and configuare auto-complete to do this ?
1
vote
1answer
51 views
What does the number “1” next to the “class” Babel icon and the “field/variable” icon mean in Visual C# 2010 Express?
I am new to Visual C# 2010 Express. I am trying to learn what the Babel icons mean.
So far the link http://msdn.microsoft.com/en-us/library/y47ychfe(v=VS.100).aspx has answered all of my questions -- ...
1
vote
2answers
126 views
Internationalization with python gae, babel and i18n. Can't output the correct string
jinja_env = jinja2.Environment(loader = jinja2.FileSystemLoader(template_dir),extensions=['jinja2.ext.i18n'], autoescape = True)
jinja_env.install_gettext_translations(i18n)
...
0
votes
3answers
236 views
Using Flask-Babel with virtualenv fails
I have Flask, Babel and Flask-Babel installed in the global packages.
When running python and I type this, no error
>>> from flaskext.babel import Babel
>>>
With a virtual ...
0
votes
1answer
96 views
Trouble converting string/character to byte in lisp
I've some data that I'm reading in using read-line and I want to convert it into a byte-array. babel:string-to-octet works for the most part except when the character\byte is larger (above 200) in ...
1
vote
2answers
105 views
Python Unit test with i18 but without webapp2
I encountered a problem with unit tests when use i18 in my project.
My project uses framewoks i18 and webapp2
The function uses the translation by i18. But when I test, I get the error - missing ...
0
votes
2answers
422 views
Flask Babel - 'translations/de/LC_MESSAGES/messages.po' is marked as fuzzy, skipping
I cant get a basic translationto work in Flask Babel.
Here are my steps.
I have this in a page {{_("Hello")}}
I run this command.
pybabel extract -F babel.cfg -o messages.pot .
I then run this ...
0
votes
1answer
173 views
Flask Bable - [jinja2: **/templates/**.html] SyntaxError: invalid syntax
I find the documentation between Flask Babel and Jinja confusing.
ubuntu@ubuntu-VirtualBox:~/workspace/rtbopsConfig/rtbDashboard3$ python run.py
Traceback (most recent call last):
File "run.py", ...
0
votes
1answer
86 views
Flask-Babel -0 pybabel: error: unknown locale 'jp'
I am having issues with Flask-babel. I cant create a translation for Japanese.
pybabel: error: unknown locale 'jp'
Is this a Flask-Babel issue?
That is the same error when a language does not ...
0
votes
1answer
80 views
extend Babel date format tags in Django
I'm using BabelDjango to format dates and times in templates. Babel comes with some predefined formats called "short", "long", and "full". I know you can also just pass in your custom format like ...
0
votes
1answer
318 views
Error occurs everytime after modifying the source
I'm trying to use i18n in google app engine with jinja2.
I found a tutorial here http://webapp-improved.appspot.com/tutorials/i18n.html
Everything is fine except one thing.
I got an error everytime ...
0
votes
1answer
231 views
Babel doesn't recognize jinja2 extraction method for language support
I'm adding language translation support to my project. The code is on Python and has jinja2 in the html files, and Javascript.
I'm trying to use Babel to do the translation, but it doesn't recognize ...
0
votes
1answer
61 views
modx revolution babel - pages are unavailable when I'm not logged on
I've installed this package as it is mentioned in instruction and I get this strange error ...
1
vote
1answer
684 views
Extracting gettext strings from Javascript and HTML files (templates)
I know that there are at least two ways to extract gettext strings from .js files - using the gettext parser in python mode (which I've heard has some shortcomings) and Babel, which is written in ...
3
votes
2answers
408 views
Python, flask, babel- message, and e.g. Spanish - How to
I am utterly confused with trying to use babel with flask for language translation.
Lets assume the following. A user has a preferance of spanish over english. I have a variable that marks this:
...
10
votes
1answer
578 views
Language Localization of Khan Academy
I am currently working on language localization of Khan Academy, I have downloaded the source 8051 from Google Code . After survey information and viewing code online, the project is made using jinja2 ...
3
votes
1answer
238 views
mustache, babel and gettext
I am using Flask, jinja together with Mustachjs.
In order to get the job done I am using the {% raw %} tag.
Now, it is a multi-languages application and I use Babel.
How can I do :
{% raw %}
...
3
votes
1answer
105 views
Extracting gettext messages from coffeescript files
Is there any library that can extract gettext messages directly from coffeescript files or do I need to compile them to javascript and extract only then?
I've been using python babel module for ...
1
vote
1answer
278 views
lazy_gettext error on google app engine with python webapp2 babel
Background: I'm one of the primary contributors to gae-boilerplate, an open source boilerplate project to help users jump start development on google app engine with webapp2 and the latest features. ...
0
votes
0answers
129 views
Babel daemon mesh network
I have a mesh network set up with two Pandaboards (running Ubuntu 12.04) set up as access points connected to each other with a switch. There is a client node connected to each access point. I am able ...
0
votes
1answer
104 views
Flask - Localized numbers in forms
Is there a way to make Flask/Wtforms work with locale specific number formatting?
I did not see anything regarding number formatting the Flask-Babel docs so I'm assuming it doesn't. (at least not ...
2
votes
2answers
90 views
How to display 'IntelliSense Babel icons in WPF?
How to display these 'IntelliSense Babel Icons' in a WPF Application?
Where to find these icons?
Is there any API to get these icons?
(I'm going to develop a intellisense feature in a WPF ...
1
vote
1answer
311 views
serving i18n js using babel, django, & jinja2
Using django, with jinja2 for rendering & babel for message extraction
I have some js files that need to be internationalized. I haven't been able to figure out a syntax for extracting messages ...
1
vote
3answers
483 views
How to use Pyramid i18n outside of views and templates?
Pyramid documentation shows us how to use i18n inside views (and templates as well). But how to does one use it outside of views and templates where we have no access to current request (for example, ...
1
vote
2answers
797 views
Extracting Javascript gettext messages using Babel CLI extractor
It is stated here that Babel can extract gettext messages for Python and Javascript files.
Babel comes with a few builtin extractors: python (which extracts
messages from Python source files), ...
0
votes
2answers
666 views
using unix timestamp generate timedelta for babel's format_timedelta
I am not sure I worded that correctly but python and time always confuses me.
This is what I am trying.
Given a unix timestamp (INT) which is definitely in the past (can be seconds ago or years ago) I ...
1
vote
2answers
546 views
running shell script from php
I have a shell script which works perfectly if I run it in the terminal (MAC OSX)
#!/bin/bash
cd /Applications/XAMPP/xamppfiles/htdocs/chemedit/
babel -imol 'a.mol' -oinchi 'outputfile.inchi'
babel ...
1
vote
2answers
192 views
variable “x” in block “square” must be assigned a default value
I am using Emacs 24/Org 7.8 and am having some issues with org-babel. I want to call a block of code with #+call:
#+name: square(x)
#+begin_src python
return x*x
#+end_src
#+call: square(x=6)
...
4
votes
1answer
2k views
Flask-Babel how to use translation in Jinja template file
In my Flask application, in main.py file, I defined:
from flaskext.babel import gettext
....
def somefun():
return render_template('some.html', messages=messages)
in template file some.html, I ...
1
vote
1answer
204 views
Redefinition error (C2365) in C++/CLI caused by Babel Obfuscator
When I obfuscate my assebly (DLL with custom control) written in C#. It works in both C# and VB.NET apps.
When I use the DLL from C++/CLI app, however, errors like this appear during build:
error ...
0
votes
1answer
383 views
How do I install Python Babel library in it's trunk version?
After hours of finding out why there are missing some documented functions in my Babel installation, I learned there are two branches of Babel development:
Babel has two separate development paths ...
5
votes
1answer
600 views
How to localize my wtform?
I have a form that I want to localize from English to many languages. I can do it either with gettext or the datastore and I've chosen gettext for performance but I could also use the datastore to ...
3
votes
2answers
158 views
Get translatable text from an external source into catalog
Possibly i am overlooking an obvious solution or thinking the wrong way...
I have a limited amount of text, words in a database, that I want to display translated to users in a flask/jinja/babel ...
1
vote
1answer
304 views
How to enable timezones with babel in my jinja filter?
I want to use timezones according to the babel locale. How can I achieve this? The specific situation I have is the goal of displaying the date and time of an article and a humanized and localized way ...
3
votes
1answer
216 views
babel:octets-to-string throws out INVALID-UTF8-CONTINUATION-BYTE
I'm writing a lisp program to fetch a web page of a Chinese website, I meet problem about parsing the Chinese words from the binary stream, I already have a vector of (unsigned-byte 8) containing the ...
2
votes
1answer
231 views
How to localize humanized time formatting
How can I localize to get nice humanized output of the time for an article like
Today
16:48
or
Yesterday
17:10
or
13 Dec
11:20
from webapp2_extras.i18n import ...
3
votes
1answer
232 views
FIXED: emacs:org-babel: noweb reference expand with an surplus line
When noweb reference in org-mode 's source code block is expanded, ever the content of the reference consists of only one line, it will expand the reference with an surplus line. This is an example:
...
2
votes
0answers
154 views
Can I use the same translation file for django and babel?
I'm pleased with the way my localization works and now I want to recode it so that it doesn't import django at all. I use some of django's django.po and django.mo files and I can combine those ...
0
votes
1answer
159 views
Mako, Babel and string interpolation
I'm trying to do something like this:
${_('Hello ${name}, welcome to...', mapping=dict(name='${name}'))}
Where _() is my Babel translation function, the first ${name} is string interpolation I'd ...
0
votes
0answers
191 views
Babel example language [closed]
Why are the language examples of babel always about Danish? I am from Denmark, and i have been wondering.
See for example http://www.tex.ac.uk/cgi-bin/texfaq2html?label=latexwords
5
votes
1answer
279 views
How to register a Pylons translator object?
I've got an application that runs in several processes (one webserver and few processes that are used for heavy calculations). The goal is to make these calculation processes return localized errors. ...
0
votes
1answer
142 views
How to sort collections based on current user locale on a Django site
I need to sort a collection of objects by a utf-8 string property (built via ActiveRecord). Currently the code is sorting by ASCII order via the order_by method, however this needs to be changed to ...
