You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"Sinusoid graph with midline intersection point at %(point1X)s comma %(point1Y)s and extremum point at %(point2X)s comma %(point2Y)s.",
1097
1126
},
1127
+
srLogarithmGraph: {
1128
+
context:
1129
+
"Aria label for the container containing a Logarithm function in the interactive graph widget.",
1130
+
message: "A logarithm function on a coordinate plane.",
1131
+
},
1132
+
srLogarithmPoint1: {
1133
+
context:
1134
+
"Aria label for the first Point on the Logarithm function in the interactive graph widget.",
1135
+
message: "Point 1 at %(x)s comma %(y)s.",
1136
+
},
1137
+
srLogarithmPoint2: {
1138
+
context:
1139
+
"Aria label for the second Point on the Logarithm function in the interactive graph widget.",
1140
+
message: "Point 2 at %(x)s comma %(y)s.",
1141
+
},
1142
+
srLogarithmDescription: {
1143
+
context:
1144
+
"Screen reader description of the Logarithm function in the interactive graph widget.",
1145
+
message:
1146
+
"The graph shows a logarithmic curve passing through point %(point1X)s comma %(point1Y)s and point %(point2X)s comma %(point2Y)s with a vertical asymptote at x equals %(asymptoteX)s.",
1147
+
},
1148
+
srLogarithmInteractiveElements: {
1149
+
context:
1150
+
"Screen reader description of all the elements available to interact with within the Logarithm function in the interactive graph widget.",
1151
+
message:
1152
+
"Logarithm graph with point 1 at %(point1X)s comma %(point1Y)s, point 2 at %(point2X)s comma %(point2Y)s, and vertical asymptote at x equals %(asymptoteX)s.",
1153
+
},
1098
1154
imageExploreButton: "Explore image",
1099
1155
imageAlternativeTitle: "Explore image and description",
`The graph shows a wave with a minimum value of ${minValue} and a maximum value of ${maxValue}. The wave completes a full cycle from ${cycleStart} to ${cycleEnd}.`,
`Sinusoid graph with midline intersection point at ${point1X} comma ${point1Y} and extremum point at ${point2X} comma ${point2Y}.`,
1489
+
srLogarithmGraph: "A logarithm function on a coordinate plane.",
1490
+
srLogarithmPoint1: ({x, y})=>`Point 1 at ${x} comma ${y}.`,
1491
+
srLogarithmPoint2: ({x, y})=>`Point 2 at ${x} comma ${y}.`,
1492
+
srLogarithmDescription: ({
1493
+
point1X,
1494
+
point1Y,
1495
+
point2X,
1496
+
point2Y,
1497
+
asymptoteX,
1498
+
})=>
1499
+
`The graph shows a logarithmic curve passing through point ${point1X} comma ${point1Y} and point ${point2X} comma ${point2Y} with a vertical asymptote at x equals ${asymptoteX}.`,
1500
+
srLogarithmInteractiveElements: ({
1501
+
point1X,
1502
+
point1Y,
1503
+
point2X,
1504
+
point2Y,
1505
+
asymptoteX,
1506
+
})=>
1507
+
`Logarithm graph with point 1 at ${point1X} comma ${point1Y}, point 2 at ${point2X} comma ${point2Y}, and vertical asymptote at x equals ${asymptoteX}.`,
1433
1508
imageExploreButton: "Explore image",
1434
1509
imageAlternativeTitle: "Explore image and description",
0 commit comments