Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 17 additions & 17 deletions src/i18n/locales/en-US.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,16 @@

"cuttingActions": {
"cut-button": "Cut",
"cut-tooltip": "Split the segment at the current timeline marker position. Hotkey: {{hotkeyName}}",
"cut-tooltip-aria": "Cut. Split the segment at the current timeline marker position. Hotkey: {{hotkeyName}}.",
"cut-tooltip": "Split the segment at the current timeline marker position.\n Hotkey: {{hotkeyName}}",
"cut-tooltip-aria": "Cut. Split the segment at the current timeline marker position.\n Hotkey: {{hotkeyName}}.",
"add-button": "Add",
"add-tooltip": "Add a segment at the current timeline marker position. Hotkey: {{hotkeyName}}",
"add-tooltip-aria": "Add. Add a segment at the current timeline marker position. Hotkey: {{hotkeyName}}.",
"add-tooltip": "Add a segment at the current timeline marker position.\n Hotkey: {{hotkeyName}}",
"add-tooltip-aria": "Add. Add a segment at the current timeline marker position.\n Hotkey: {{hotkeyName}}.",
"delete-button": "Delete",
"delete-restore-tooltip": "Mark or unmark the segment at the current position as to be deleted. Hotkey: {{hotkeyName}}",
"delete-restore-tooltip-aria": "Delete and Restore. Mark or unmark the segment at the current position as to be deleted. Hotkey: {{hotkeyName}}.",
"deleteByMerge-tooltip": "Remove the segment at the current position. Hotkey: {{hotkeyName}}",
"deleteByMerge-tooltip-aria": "Remove the segment at the current position. Hotkey: {{hotkeyName}}.",
"delete-restore-tooltip": "Mark or unmark the segment at the current position as to be deleted.\n Hotkey: {{hotkeyName}}",
"delete-restore-tooltip-aria": "Delete and Restore. Mark or unmark the segment at the current position as to be deleted.\n Hotkey: {{hotkeyName}}.",
"deleteByMerge-tooltip": "Remove the segment at the current position.\n Hotkey: {{hotkeyName}}",
"deleteByMerge-tooltip-aria": "Remove the segment at the current position.\n Hotkey: {{hotkeyName}}.",
"merge-all-button": "Merge All",
"merge-all-tooltip": "Combine all segments into a single segment.",
"merge-all-tooltip-aria": "Merge All. Combine all segments into a single segment.",
Expand All @@ -31,11 +31,11 @@
"delete-all-tooltip-aria": "Delete All. Remove all segments.",
"restore-button": "Restore",
"mergeLeft-button": "Merge Left",
"mergeLeft-tooltip": "Combine the currently active segment with the segment to its left. Hotkey: {{hotkeyName}}",
"mergeLeft-tooltip-aria": "Merge Left. Combine the currently active segment with the segment to its left. Hotkey: {{hotkeyName}}.",
"mergeLeft-tooltip": "Combine the currently active segment with the segment to its left.\n Hotkey: {{hotkeyName}}",
"mergeLeft-tooltip-aria": "Merge Left. Combine the currently active segment with the segment to its left.\n Hotkey: {{hotkeyName}}.",
"mergeRight-button": "Merge Right",
"mergeRight-tooltip": "Combine the currently active segment with the segment to its right. Hotkey: {{hotkeyName}}",
"mergeRight-tooltip-aria": "Merge Right. Combine the currently active segment with the segment to its right. Hotkey: {{hotkeyName}}.",
"mergeRight-tooltip": "Combine the currently active segment with the segment to its right.\n Hotkey: {{hotkeyName}}",
"mergeRight-tooltip-aria": "Merge Right. Combine the currently active segment with the segment to its right.\n Hotkey: {{hotkeyName}}.",
"zoom": "Zoom",
"zoomSlider-aria": "Zoom. Zoom in or out of the timeline. Hotkey for Zoom in: {{hotkeyNameIn}}. Hotkey for Zoom out: {{hotkeyNameOut}}.",
"zoomSlider-tooltip": "Zoom in or out of the timeline. Hotkey for Zoom in: {{hotkeyNameIn}}. Hotkey for Zoom out: {{hotkeyNameOut}}.",
Expand All @@ -45,15 +45,15 @@

"video": {
"previewButton": "Preview Mode",
"previewButton-tooltip-on": "Skips deleted segments when playing the video. Currently on. Hotkey: {{hotkeyName}}",
"previewButton-tooltip-off": "Skips deleted segments when playing the video. Currently off. Hotkey: {{hotkeyName}}",
"previewButton-aria": "Enable or disable preview mode. Hotkey: {{hotkeyName}}.",
"previewButton-tooltip-on": "Skips deleted segments when playing the video. Currently on. \n Hotkey: {{hotkeyName}}",
"previewButton-tooltip-off": "Skips deleted segments when playing the video. Currently off. \n Hotkey: {{hotkeyName}}",
"previewButton-aria": "Enable or disable preview mode. \n Hotkey: {{hotkeyName}}.",
"playButton-tooltip": "Play video",
"pauseButton-tooltip": "Pause video",
"previousButton": "Back",
"previousButton-tooltip": "Back. Hotkey: {{hotkeyName}}.",
"previousButton-tooltip": "Back.\n Hotkey: {{hotkeyName}}.",
"nextButton": "Forward",
"nextButton-tooltip": "Forward. Hotkey: {{hotkeyName}}.",
"nextButton-tooltip": "Forward.\n Hotkey: {{hotkeyName}}.",
"current-time-tooltip": "Current time",
"time-duration-tooltip": "Video duration",
"duration-aria": "Duration",
Expand Down
1 change: 1 addition & 0 deletions src/main/Tooltip.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ export const ThemedTooltip = ({ className, ...props }: TooltipProps) => {
fontSize: "16px",
lineHeight: "normal",
fontFamily: "Roboto Flex Variable",
whiteSpace: "pre-line",
},
},
arrow: {
Expand Down
Loading