Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Tor Browser
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
The Tor Project
Applications
Tor Browser
Commits
6523fd10
Commit
6523fd10
authored
Nov 6, 2023
by
henry
Committed by
Pier Angelo Vendrame
Apr 10, 2024
Browse files
Options
Downloads
Patches
Plain Diff
fixup! Tor Browser localization migration scripts.
Bug 42209: Migrate tor circuit strings to Fluent.
parent
0b53d576
Branches
Branches containing commit
Tags
Tags containing commit
1 merge request
!980
Bug 42512: Rebased alpha onto Firefox 115.10.0esr
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
tools/torbrowser/l10n/migrate.py
+118
-67
118 additions, 67 deletions
tools/torbrowser/l10n/migrate.py
tools/torbrowser/l10n/migrations/bug-42209-tor-circuit.py
+83
-0
83 additions, 0 deletions
tools/torbrowser/l10n/migrations/bug-42209-tor-circuit.py
with
201 additions
and
67 deletions
tools/torbrowser/l10n/migrate.py
+
118
−
67
View file @
6523fd10
...
...
@@ -253,16 +253,13 @@ class TorBrowserMigrationContext(MigrationContext):
if
path
not
in
self
.
localization_resources
)
def
tb_get_transform
ed
(
self
,
target_path
,
transform_id
):
def
tb_get_transform
(
self
,
target_path
,
transform_id
):
"""
Find the transformation node with the given id for the given path.
The node will be evaluated (converted to regular fluent.ast) before it
is returned.
"""
for
node
in
self
.
transforms
[
target_path
]:
if
node
.
id
.
name
==
transform_id
:
return
self
.
evaluate
(
node
)
return
node
return
None
def
tb_get_reference_entry
(
self
,
target_path
,
entry_id
):
...
...
@@ -330,6 +327,21 @@ class TorBrowserMigrator:
ctx
=
self
.
_get_migration_context
(
locale
,
locale_dir
)
# NOTE: We do not use the existing ctx.serialize_changeset method.
# The problem with this approach was that it would re-shuffle the order
# of already existing strings to match the en-US locale.
# But Weblate currently does not preserve the order of translated
# strings: https://github.com/WeblateOrg/weblate/issues/11134
# so this created extra noise in the diff.
# Instead, we just always append transformations to the end of the
# existing file.
# Moreover, it would inject group comments into the translated files,
# which Weblate does not handle well. Instead, we just do not add any
# comments.
#
# In case we want to use it again in the future, here is a reference
# to how it works:
#
# ctx.serialize_changeset expects a set of (path, identifier) of
# localization resources that can be used to evaluate the
# transformations.
...
...
@@ -344,10 +356,39 @@ class TorBrowserMigrator:
# one step, so we want to fill the changeset with all required
# (path, identifier) pairs found in the localization resources.
# Choose the transforms that are required and available.
changeset
=
set
()
available_strings
=
ctx
.
tb_get_available_strings
()
for
(
target_path
,
transform_id
),
dep_set
in
ctx
.
dependencies
.
items
():
wrote_file
=
False
errors
=
[]
for
target_path
,
reference
in
ctx
.
reference_resources
.
items
():
translated_ids
=
[
entry
.
id
.
name
for
entry
in
ctx
.
target_resources
[
target_path
].
body
if
isinstance
(
entry
,
(
ast
.
Message
,
ast
.
Term
))
# NOTE: We're assuming that the Message and Term ids do not
# conflict with each other.
]
new_entries
=
[]
# Apply transfomations in the order they appear in the reference
# (en-US) file.
for
entry
in
reference
.
body
:
if
not
isinstance
(
entry
,
(
ast
.
Message
,
ast
.
Term
)):
continue
transform_id
=
entry
.
id
.
name
transform
=
ctx
.
tb_get_transform
(
target_path
,
transform_id
)
if
not
transform
:
# No transformation for this reference entry.
continue
if
transform_id
in
translated_ids
:
self
.
logger
.
info
(
f
"
Skipping transform
{
target_path
}
:
{
transform_id
}
"
f
"
for
'
{
locale
}
'
locale because it already has a
"
f
"
translation.
"
)
continue
# ctx.dependencies is a dict of dependencies for all
# transformations
# { (target_path, transform_identifier): set(
...
...
@@ -367,14 +408,15 @@ class TorBrowserMigrator:
# ("old-file2.dtd", "oldString3"),
# ),
# }
dep_set
=
ctx
.
dependencies
[(
target_path
,
transform_id
)]
can_transform
=
True
for
dep
in
dep_set
:
path
,
string_id
=
dep
if
dep
not
in
available_strings
:
can_transform
=
False
self
.
logger
.
info
(
f
"
Skipping transform
{
target_path
}
:
{
transform_id
}
for
"
f
"
'
{
locale
}
'
locale because it is missing the
"
f
"
Skipping transform
{
target_path
}
:
{
transform_id
}
"
f
"
for
'
{
locale
}
'
locale because it is missing the
"
f
"
string
{
path
}
:
{
string_id
}
.
"
)
break
...
...
@@ -391,29 +433,38 @@ class TorBrowserMigrator:
):
can_transform
=
False
self
.
logger
.
info
(
f
"
Skipping transform
{
target_path
}
:
{
transform_id
}
for
"
f
"
'
{
locale
}
'
locale because the string
"
f
"
Skipping transform
{
target_path
}
:
{
transform_id
}
"
f
"
for
'
{
locale
}
'
locale because the string
"
f
"
{
path
}
:
{
string_id
}
has not been translated on
"
"
weblate.
"
)
break
if
can_transform
:
changeset
.
update
(
dep_set
)
if
not
can_transform
:
continue
# Run the transformation.
new_entries
.
append
(
ctx
.
evaluate
(
transform
))
if
not
new_entries
:
continue
full_path
=
os
.
path
.
join
(
locale_dir
,
target_path
)
print
(
""
,
file
=
sys
.
stderr
)
wrote_file
=
False
errors
=
[]
for
path
,
fluent
in
ctx
.
serialize_changeset
(
changeset
).
items
():
full_path
=
os
.
path
.
join
(
locale_dir
,
path
)
self
.
logger
.
info
(
f
"
Writing to
{
full_path
}
"
)
with
open
(
full_path
,
"
w
"
)
as
file
:
file
.
write
(
fluent
)
wrote_file
=
True
# For Fluent we can just serialize the transformations and append
# them to the end of the existing file.
resource
=
ast
.
Resource
(
new_entries
)
with
open
(
full_path
,
"
a
"
)
as
file
:
file
.
write
(
serialize
(
resource
))
with
open
(
full_path
,
"
r
"
)
as
file
:
full_content
=
file
.
read
()
wrote_file
=
True
# Collect any fluent parsing errors from the newly written file.
errors
.
extend
(
(
full_path
,
message
,
line
,
sample
)
for
message
,
line
,
sample
in
self
.
_fluent_errors
(
f
l
uent
)
for
message
,
line
,
sample
in
self
.
_fluent_errors
(
fu
ll_cont
ent
)
)
if
not
wrote_file
:
...
...
@@ -547,7 +598,7 @@ class TorBrowserMigrator:
have_error
=
True
continue
transformed
=
ctx
.
tb_get_transform
ed
(
target_path
,
transform_id
)
transformed
=
ctx
.
evaluate
(
ctx
.
tb_get_transform
(
target_path
,
transform_id
)
)
reference_entry
=
ctx
.
tb_get_reference_entry
(
target_path
,
transform_id
)
if
reference_entry
is
None
:
self
.
logger
.
error
(
...
...
This diff is collapsed.
Click to expand it.
tools/torbrowser/l10n/migrations/bug-42209-tor-circuit.py
0 → 100644
+
83
−
0
View file @
6523fd10
import
fluent.syntax.ast
as
FTL
from
fluent.migrate.helpers
import
VARIABLE_REFERENCE
,
transforms_from
from
fluent.migrate.transforms
import
CONCAT
,
REPLACE
def
migrate
(
ctx
):
legacy_dtd
=
"
torbutton.dtd
"
legacy_properties
=
"
torbutton.properties
"
ctx
.
add_transforms
(
"
tor-browser.ftl
"
,
"
tor-browser.ftl
"
,
transforms_from
(
"""
menu-new-tor-circuit =
.label = { COPY(dtd_path,
"
torbutton.context_menu.new_circuit
"
) }
.accesskey = { COPY(dtd_path,
"
torbutton.context_menu.new_circuit_key
"
) }
appmenuitem-new-tor-circuit =
.label = { COPY(dtd_path,
"
torbutton.context_menu.new_circuit_sentence_case
"
) }
toolbar-new-tor-circuit =
.label = { COPY(dtd_path,
"
torbutton.context_menu.new_circuit_sentence_case
"
) }
.tooltiptext = { toolbar-new-tor-circuit.label }
tor-circuit-urlbar-button =
.tooltiptext = { COPY(dtd_path,
"
torbutton.circuit_display.title
"
) }
tor-circuit-panel-node-list-introduction = { COPY(dtd_path,
"
torbutton.circuit_display.title
"
) }
tor-circuit-panel-node-browser = { COPY(path,
"
torbutton.circuit_display.this_browser
"
) }
tor-circuit-panel-node-onion-relays = { COPY(path,
"
torbutton.circuit_display.onion-site-relays
"
) }
tor-circuit-panel-node-bridge = { COPY(path,
"
torbutton.circuit_display.tor_bridge
"
) }
tor-circuit-panel-node-unknown-region = { COPY(path,
"
torbutton.circuit_display.unknown_region
"
) }
tor-circuit-panel-new-button = { COPY(dtd_path,
"
torbutton.context_menu.new_circuit_sentence_case
"
) }
tor-circuit-panel-new-button-description-guard = { COPY(path,
"
torbutton.circuit_display.new-circuit-guard-description
"
) }
tor-circuit-panel-new-button-description-bridge = { COPY(path,
"
torbutton.circuit_display.new-circuit-bridge-description
"
) }
"""
,
dtd_path
=
legacy_dtd
,
path
=
legacy_properties
,
)
+
[
# Replace "%S" with "{ $host }"
FTL
.
Message
(
id
=
FTL
.
Identifier
(
"
tor-circuit-panel-heading
"
),
value
=
REPLACE
(
legacy_properties
,
"
torbutton.circuit_display.heading
"
,
{
"
%1$S
"
:
VARIABLE_REFERENCE
(
"
host
"
)},
),
),
# Replace "%S" with "<a data-l10n-name="alias-link">{ $alias }</a>"
FTL
.
Message
(
id
=
FTL
.
Identifier
(
"
tor-circuit-panel-alias
"
),
value
=
REPLACE
(
legacy_properties
,
"
torbutton.circuit_display.connected-to-alias
"
,
{
"
%1$S
"
:
CONCAT
(
FTL
.
TextElement
(
'
<a data-l10n-name=
"
alias-link
"
>
'
),
VARIABLE_REFERENCE
(
"
alias
"
),
FTL
.
TextElement
(
"
</a>
"
),
)
},
),
),
# Replace "%S" with "{ $region }"
FTL
.
Message
(
id
=
FTL
.
Identifier
(
"
tor-circuit-panel-node-region-guard
"
),
value
=
REPLACE
(
legacy_properties
,
"
torbutton.circuit_display.region-guard-node
"
,
{
"
%1$S
"
:
VARIABLE_REFERENCE
(
"
region
"
)},
),
),
# Replace "%S" with "{ $bridge-type }"
FTL
.
Message
(
id
=
FTL
.
Identifier
(
"
tor-circuit-panel-node-typed-bridge
"
),
value
=
REPLACE
(
legacy_properties
,
"
torbutton.circuit_display.tor_typed_bridge
"
,
{
"
%1$S
"
:
VARIABLE_REFERENCE
(
"
bridge-type
"
)},
),
),
],
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
sign in
to comment