Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Delta Between Two Patch Sets: tests/test_site/pages/translate-tmpl.tmpl

Issue 29659605: Issue 6231 - Add tests for translation string substitution (Closed)
Left Patch Set: Add tests for different types of pages; also for includes and templates Created Jan. 12, 2018, 7:53 p.m.
Right Patch Set: Add tests for partial translation and for get_string Created Jan. 19, 2018, 3:26 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
LEFTRIGHT
1 template = empty 1 template = empty
2 2
3 <html> 3 <html>
4 <body> 4 <body>
5 Simple TS with default: {{ 'Translate' | translate('simple') }}. 5 Simple TS with default: {{ 'Translate' | translate('simple') }}.
6 6
7 Same TS with no default: doesn't work in templates. 7 Same TS with no default: {{ get_string('simple') }}.
8 8
9 TS with fixed text: {{ 'Fixed <fix>text</fix>' | translate('fix-ts') }}. 9 TS with fixed text: {{ 'Fixed <fix>text</fix>' | translate('fix-ts') }}.
10 10
11 Nested translation: {{ '<a href="{{nested-link http://foo.com/}}">Foo</a> and <a href="{{nested-link2 http://baz.com/}}">Baz</a>' | translate('nested-ts') }}. 11 Nested translation: {{ '<a href="{{nested-link http://foo.com/}}">Foo</a> and <a href="{{nested-link2 http://baz.com/}}">Baz</a>' | translate('nested-ts') }}.
12 12
13 Link resolving: {{ '<a href="translate">This page</a>' | translate('linked-ts') }}. 13 Link resolving: {{ '<a href="translate">This page</a>' | translate('linked-ts') }}.
14 14
15 Entity escaping: {{ 'Drag&drop' | translate('entity-ts') }}. 15 Entity escaping: {{ 'Drag&drop' | translate('entity-ts') }}.
16 16
17 Entity escaping in links: {{ '<a href="http://foo.com/?a&b">Foo</a>' | translate ('entity-lnk') }}. 17 Entity escaping in links: {{ '<a href="http://foo.com/?a&b">Foo</a>' | translate ('entity-lnk') }}.
18 </body> 18 </body>
19 </html> 19 </html>
LEFTRIGHT

Powered by Google App Engine
This is Rietveld