1# This Source Code Form is subject to the terms of the Mozilla Public
2# License, v. 2.0. If a copy of the MPL was not distributed with this
3# file, You can obtain one at http://mozilla.org/MPL/2.0/.
4
5# LOCALIZATION NOTE These strings are used inside the Animation inspector
6# which is available as a sidebar panel in the Inspector.
7# The correct localization of this file might be to keep it in
8# English, or another language commonly spoken among web developers.
9# You want to make that choice consistent across the developer tools.
10# A good criteria is the language in which you'd find the best
11# documentation on web development on the web.
12
13# LOCALIZATION NOTE (panel.noAnimation):
14# This is the label shown in the panel when there are no displayable animations.
15# (e.g. In case of user selected a non-element node or a node that is not animated).
16panel.noAnimation=No animations were found for the current element.\nPick another element from the page.
17
18# LOCALIZATION NOTE (player.animationDurationLabel):
19# This string is displayed in each animation player widget. It is the label
20# displayed before the animation duration.
21player.animationDurationLabel=Duration:
22
23# LOCALIZATION NOTE (player.infiniteDurationText):
24# This string is displayed in a tooltip on animation player widget, in case the
25# duration of the animation is infinite.
26player.infiniteDurationText=∞
27
28# LOCALIZATION NOTE (player.animationDelayLabel):
29# This string is displayed in each animation player widget. It is the label
30# displayed before the animation delay.
31player.animationDelayLabel=Delay:
32
33# LOCALIZATION NOTE (player.animationEndDelayLabel):
34# This string is displayed in each animation player widget. It is the label
35# displayed before the animation endDelay.
36player.animationEndDelayLabel=End delay:
37
38# LOCALIZATION NOTE (player.animationRateLabel):
39# This string is displayed in each animation player widget. It is the label
40# displayed before the animation playback rate.
41player.animationRateLabel=Playback rate:
42
43# LOCALIZATION NOTE (player.animationIterationCountLabel):
44# This string is displayed in each animation player widget. It is the label
45# displayed before the number of times the animation is set to repeat.
46player.animationIterationCountLabel=Repeats:
47
48# LOCALIZATION NOTE (player.infiniteIterationCount):
49# In case the animation repeats infinitely, this string is displayed next to the
50# player.animationIterationCountLabel string, instead of a number.
51player.infiniteIterationCount=∞
52
53# LOCALIZATION NOTE (player.infiniteIterationCountText):
54# See player.infiniteIterationCount for a description of what this is.
55# Unlike player.infiniteIterationCount, this string isn't used in HTML, but in
56# a tooltip.
57player.infiniteIterationCountText=∞
58
59# LOCALIZATION NOTE (player.animationIterationStartLabel2):
60# This string is displayed in a tooltip that appears when hovering over
61# animations in the timeline. It is the label displayed before the animation
62# iterationStart value.
63# %1$S will be replaced by the original iteration start value
64# %2$S will be replaced by the actual time of iteration start without time unit
65# e.g.
66# If iterationStart of animation is 0.5 and duration is 1 sec, the string will be
67# "Iteration start: 0.5 (0.5s)"
68player.animationIterationStartLabel2=Iteration start: %1$S (%2$S)
69
70# LOCALIZATION NOTE (player.animationOverallEasingLabel):
71# This string is displayed in a tooltip that appears when hovering over
72# animations in the timeline. It is the label displayed before the easing
73# that applies to a whole iteration of an animation as opposed to the
74# easing that applies between animation keyframes.
75player.animationOverallEasingLabel=Overall easing:
76
77# LOCALIZATION NOTE (player.animationTimingFunctionLabel):
78# This string is displayed in a tooltip that appears when hovering over
79# animations in the timeline. It is the label displayed before the
80# animation-timing-function for CSS Animations.
81player.animationTimingFunctionLabel=Animation timing function:
82
83# LOCALIZATION NOTE (player.animationFillLabel):
84# This string is displayed in a tooltip that appears when hovering over
85# animations in the timeline. It is the label displayed before the animation
86# fill mode value.
87player.animationFillLabel=Fill:
88
89# LOCALIZATION NOTE (player.animationDirectionLabel):
90# This string is displayed in a tooltip that appears when hovering over
91# animations in the timeline. It is the label displayed before the animation
92# direction value.
93player.animationDirectionLabel=Direction:
94
95# LOCALIZATION NOTE (player.timeLabel):
96# This string is displayed in each animation player widget, to indicate either
97# how long (in seconds) the animation lasts, or what is the animation's current
98# time (in seconds too);
99player.timeLabel=%Ss
100
101# LOCALIZATION NOTE (player.infiniteDurationText):
102# This string is displayed in animation player widget, in case the duration of the
103# animation is infinite.
104player.infiniteTimeLabel=∞
105
106# LOCALIZATION NOTE (player.playbackRateLabel):
107# This string is displayed in each animation player widget, as the label of
108# drop-down list items that can be used to change the rate at which the
109# animation runs (1× being the default, 2× being twice as fast).
110player.playbackRateLabel=%S×
111
112# LOCALIZATION NOTE (player.runningOnCompositorTooltip):
113# This string is displayed as a tooltip for the icon that indicates that the
114# animation is running on the compositor thread.
115player.runningOnCompositorTooltip=This animation is running on compositor thread
116
117# LOCALIZATION NOTE (player.allPropertiesOnCompositorTooltip):
118# This string is displayed as a tooltip for the icon that indicates that
119# all of animation is running on the compositor thread.
120player.allPropertiesOnCompositorTooltip=All animation properties are optimized
121
122# LOCALIZATION NOTE (player.somePropertiesOnCompositorTooltip):
123# This string is displayed as a tooltip for the icon that indicates that
124# all of animation is not running on the compositor thread.
125player.somePropertiesOnCompositorTooltip=Some animation properties are optimized
126
127# LOCALIZATION NOTE (timeline.pausedButtonTooltip):
128# This string is displayed in the timeline toolbar, as the tooltip of the
129# pause/resume button that can be used to pause or resume the animations
130timeline.pausedButtonTooltip=Resume the animations
131
132# LOCALIZATION NOTE (timeline.resumedButtonTooltip):
133# This string is displayed in the timeline toolbar, as the tooltip of the
134# pause/resume button that can be used to pause or resume the animations
135timeline.resumedButtonTooltip=Pause the animations
136
137# LOCALIZATION NOTE (timeline.rewindButtonTooltip):
138# This string is displayed in the timeline toolbar, as the tooltip of the
139# rewind button that can be used to rewind the animations
140timeline.rewindButtonTooltip=Rewind the animations
141
142# LOCALIZATION NOTE (timeline.timeGraduationLabel):
143# This string is displayed at the top of the animation panel, next to each time
144# graduation, to indicate what duration (in milliseconds) this graduation
145# corresponds to.
146timeline.timeGraduationLabel=%Sms
147
148# LOCALIZATION NOTE (timeline.cssanimation.nameLabel):
149# This string is displayed in a tooltip of the animation panel that is shown
150# when hovering over the name of a CSS Animation in the timeline UI.
151# %S will be replaced by the name of the animation at run-time.
152timeline.cssanimation.nameLabel=%S — CSS Animation
153
154# LOCALIZATION NOTE (timeline.csstransition.nameLabel):
155# This string is displayed in a tooltip of the animation panel that is shown
156# when hovering over the name of a CSS Transition in the timeline UI.
157# %S will be replaced by the name of the transition at run-time.
158timeline.csstransition.nameLabel=%S — CSS Transition
159
160# LOCALIZATION NOTE (timeline.scriptanimation.nameLabel):
161# This string is displayed in a tooltip of the animation panel that is shown
162# when hovering over the name of a script-generated animation in the timeline UI.
163# %S will be replaced by the name of the animation at run-time.
164timeline.scriptanimation.nameLabel=%S — Script Animation
165
166# LOCALIZATION NOTE (timeline.scriptanimation.unnamedLabel):
167# This string is displayed in a tooltip of the animation panel that is shown
168# when hovering over an unnamed script-generated animation in the timeline UI.
169timeline.scriptanimation.unnamedLabel=Script Animation
170
171# LOCALIZATION NOTE (timeline.unknown.nameLabel):
172# This string is displayed in a tooltip of the animation panel that is shown
173# when hovering over the name of an unknown animation type in the timeline UI.
174# This can happen if devtools couldn't figure out the type of the animation.
175# %S will be replaced by the name of the transition at run-time.
176timeline.unknown.nameLabel=%S
177
178# LOCALIZATION NOTE (detail.propertiesHeader.percentage):
179# This string is displayed on header label in .animated-properties-header.
180# %S represents the value in percentage with two decimal points, localized.
181# there are two "%" after %S to escape and display "%"
182detail.propertiesHeader.percentage=%S%%
183