diff --git a/Translations/Translations.pot b/Translations/Translations.pot index 74e41f5fa..f51b0318f 100644 --- a/Translations/Translations.pot +++ b/Translations/Translations.pot @@ -1088,6 +1088,9 @@ msgstr "" msgid "Lock/unlock layer" msgstr "" +msgid "Frame: %s, Layer: %s" +msgstr "" + msgid "Enable/disable cel linking\n\n" "Linked cels are being shared across multiple frames" msgstr "" diff --git a/src/UI/Timeline/CelButton.gd b/src/UI/Timeline/CelButton.gd index 9f35551e5..55f78c17a 100644 --- a/src/UI/Timeline/CelButton.gd +++ b/src/UI/Timeline/CelButton.gd @@ -7,7 +7,7 @@ onready var popup_menu : PopupMenu = $PopupMenu func _ready() -> void: - hint_tooltip = "Frame: %s, Layer: %s" % [frame + 1, layer] + hint_tooltip = tr("Frame: %s, Layer: %s") % [frame + 1, layer] if Global.current_project.frames[frame] in Global.current_project.layers[layer].linked_cels: get_node("LinkedIndicator").visible = true popup_menu.set_item_text(4, "Unlink Cel")