From c187702bfe2c2dbc9614175db5cfa060936159bf Mon Sep 17 00:00:00 2001 From: Adam Young Date: Fri, 24 Sep 2010 20:48:23 -0400 Subject: I18N for web Performing I18N completely on the server, to leverage the existing gettext architecture. Also, the browser does not have access to the Language header. Added the additional po files for a set of required languages conflict with install/static/ipa.js was resolved. Note that the addition of the .po files in this patch is necessary. In order to get Transifex support, we need to update the LINGUAS file with the languages for which we want support. If we don't add the .po files in, they get automatically generated by the rpmbuild process. Our implementation of gettext has a bug in it (It might be F13 thing) where the the Plurals line is not getting correctly transformed, which causes a build failure. However, since the RPM would have the .po files anyway, we should revision control the ones we have, even if they are empty. Fixed the Bug reporting url to the original value. Corrected the Chartype encoding for UK --- install/static/search.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'install/static/search.js') diff --git a/install/static/search.js b/install/static/search.js index 6c88e41a6..5e5be8fa0 100644 --- a/install/static/search.js +++ b/install/static/search.js @@ -48,7 +48,7 @@ function search_create(obj_name, scl, container) var jobj = div.children().last(); jobj.append(''); jobj.children().last().attr('name', 'search-' + obj_name + '-filter') - jobj.append('');; + jobj.append(''); jobj.children().last().click(find_on_click); div.append(''); -- cgit