forked from oppia/oppia
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix oppia#7161: Removes expression evaluation braces from i18n transl…
…ation-values (oppia#7183)
- Loading branch information
1 parent
7e37bbb
commit bafc5f5
Showing
9 changed files
with
21 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 4 additions & 4 deletions
8
extensions/interactions/GraphInput/directives/graph_input_short_response_directive.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<!-- TODO(mili) Replace this logic for the correct pluralize tool when there are more cases that justify the use of the library --> | ||
<div ng-if="$ctrl.graph.edges"> | ||
<span translate="I18N_INTERACTIONS_GRAPH_RESPONSE_EDGES" translate-values="{edges: <[$ctrl.graph.edges.length]>}" ng-if="$ctrl.graph.edges.length != 1"></span> | ||
<span translate="I18N_INTERACTIONS_GRAPH_RESPONSE_EDGE" translate-values="{edges: <[$ctrl.graph.edges.length]>}" ng-if="$ctrl.graph.edges.length == 1"></span> | ||
<span translate="I18N_INTERACTIONS_GRAPH_RESPONSE_VERTICES" translate-values="{vertices: <[$ctrl.graph.vertices.length]>}" ng-if="$ctrl.graph.vertices.length != 1"></span> | ||
<span translate="I18N_INTERACTIONS_GRAPH_RESPONSE_VERTEX" translate-values="{vertices: <[$ctrl.graph.vertices.length]>}" ng-if="$ctrl.graph.vertices.length == 1"></span> | ||
<span translate="I18N_INTERACTIONS_GRAPH_RESPONSE_EDGES" translate-values="{edges: $ctrl.graph.edges.length}" ng-if="$ctrl.graph.edges.length != 1"></span> | ||
<span translate="I18N_INTERACTIONS_GRAPH_RESPONSE_EDGE" translate-values="{edges: $ctrl.graph.edges.length}" ng-if="$ctrl.graph.edges.length == 1"></span> | ||
<span translate="I18N_INTERACTIONS_GRAPH_RESPONSE_VERTICES" translate-values="{vertices: $ctrl.graph.vertices.length}" ng-if="$ctrl.graph.vertices.length != 1"></span> | ||
<span translate="I18N_INTERACTIONS_GRAPH_RESPONSE_VERTEX" translate-values="{vertices: $ctrl.graph.vertices.length}" ng-if="$ctrl.graph.vertices.length == 1"></span> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
extensions/interactions/LogicProof/directives/logic_proof_interaction_directive.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters