Bugzilla – Attachment 12939 Details for
Bug 8942
Translation process breaks javascript in calendar.inc
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Proposed patch
0001-Bug-8942-Fix-translation-of-JS-strings-containing-si.patch (text/plain), 1.46 KB, created by
Frédéric Demians
on 2012-10-19 13:04:17 UTC
(
hide
)
Description:
Proposed patch
Filename:
MIME Type:
Creator:
Frédéric Demians
Created:
2012-10-19 13:04:17 UTC
Size:
1.46 KB
patch
obsolete
>From 2325558e1d4a61e43e84642ba3d79af5ca2e65ce Mon Sep 17 00:00:00 2001 >From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Demians?= <f.demians@tamil.fr> >Date: Wed, 17 Oct 2012 17:14:17 +0200 >Subject: [PATCH] Bug 8942 Fix translation of JS strings containing > simple/double quote > >With this patch, translated strings containing simple or double quotes >are escaped. This prevent breaking JavaScript strings. > >For example: > > Today, translated in French is Aujourd'hui. And so this JS line: > > var m = _('Today'); > > become in French: > > var m = _('Aujourd'hui'); > > It breaks the whole JS code. With this patch: > > var m = _('Ajourd\'hui'); > >Same issue with ", and JS strings like "foo". >--- > misc/translator/tmpl_process3.pl | 6 ++++-- > 1 file changed, 4 insertions(+), 2 deletions(-) > >diff --git a/misc/translator/tmpl_process3.pl b/misc/translator/tmpl_process3.pl >index 89c993f..3d38af7 100755 >--- a/misc/translator/tmpl_process3.pl >+++ b/misc/translator/tmpl_process3.pl >@@ -117,8 +117,10 @@ sub text_replace (**) { > for my $t (@{$s->js_data}) { > # FIXME for this whole block > if ($t->[0]) { >- printf $output "%s%s%s", $t->[2], find_translation $t->[3], >- $t->[2]; >+ my $translation = find_translation $t->[3]; >+ $translation =~ s/'/\\'/g; >+ $translation =~ s/"/\\"/g; >+ printf $output "%s%s%s", $t->[2], $translation, $t->[2]; > } else { > print $output $t->[1]; > } >-- >1.7.12.3 >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 8942
:
12907
|
12908
|
12935
|
12939
|
13151
|
13756
|
13757
|
13758
|
14336
|
14337
|
14338
|
14934
|
14935
|
14936
|
15021
|
15058
|
15524
|
17030
|
17031
|
17032
|
17033
|
17034
|
17035