1
0
Fork 0
mirror of https://github.com/Orama-Interactive/Pixelorama.git synced 2025-01-18 17:19:50 +00:00

Added missing CelButton hint tooltip translation

This commit is contained in:
OverloadedOrama 2020-08-27 20:02:53 +03:00
parent 205ce71d82
commit b07545a3d1
2 changed files with 4 additions and 1 deletions

View file

@ -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 ""

View file

@ -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")