mirror of
https://github.com/tonytins/CozyPixelStudio.git
synced 2025-06-25 10:14:42 -04:00
Made strings "Patrons" and "Changes" translatable
Not sure if you'd want to translate them, but now you can if you want to.
This commit is contained in:
parent
b1d84042b1
commit
d7134dc616
10 changed files with 59 additions and 0 deletions
|
@ -1,5 +1,6 @@
|
|||
extends WindowDialog
|
||||
|
||||
onready var changes_label : Label = $Contents/HBoxContainer/ChangesLabel
|
||||
onready var art_by_label : Label = $Contents/PatronsArtNews/ArtContainer/ArtCredits
|
||||
onready var show_on_startup_button : CheckBox = $Contents/BottomHboxContainer/ShowOnStartup
|
||||
onready var developed_by_label : Label = $Contents/BottomHboxContainer/VBoxContainer/DevelopedBy
|
||||
|
@ -7,6 +8,7 @@ onready var developed_by_label : Label = $Contents/BottomHboxContainer/VBoxConta
|
|||
func _on_SplashDialog_about_to_show() -> void:
|
||||
var current_version : String = ProjectSettings.get_setting("application/config/Version")
|
||||
window_title = "Pixelorama" + " " + current_version
|
||||
changes_label.text = current_version + " " + tr("Changes")
|
||||
developed_by_label.text = "Pixelorama" + " " + current_version + " - " + tr("MADEBY_LABEL")
|
||||
|
||||
art_by_label.text = tr("Art by") + ": Erevos"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue