mirror of
https://github.com/tonytins/CozyPixelStudio.git
synced 2025-06-25 09:14:42 -04:00
Added Turkish translation
This commit is contained in:
parent
15994fb818
commit
4ca4cbcc01
7 changed files with 14 additions and 5 deletions
|
@ -21,6 +21,7 @@ const languages_dict := {
|
|||
"hu_HU" : ["Magyar", "Hungarian"],
|
||||
"ro_RO" : ["Română", "Romanian"],
|
||||
"ko_KR" : ["한국어", "Korean"],
|
||||
"tr_TR" : ["Türkçe", "Turkish"],
|
||||
}
|
||||
|
||||
var loaded_locales : Array
|
||||
|
|
|
@ -188,3 +188,9 @@ func create_translators() -> void:
|
|||
translators.create_item(translators_root).set_text(0, " sfun_G - " + tr("Korean"))
|
||||
translators.create_item(translators_root).set_text(0, " KripC2160 - " + tr("Korean"))
|
||||
translators.create_item(translators_root).set_text(0, " M. Gabriel Lup - " + tr("Romanian"))
|
||||
translators.create_item(translators_root).set_text(0, " ANormalKnife - " + tr("Turkish"))
|
||||
translators.create_item(translators_root).set_text(0, " kmsecer - " + tr("Turkish"))
|
||||
translators.create_item(translators_root).set_text(0, " Rıdvan SAYLAR - " + tr("Turkish"))
|
||||
translators.create_item(translators_root).set_text(0, " latbat58 - " + tr("Turkish"))
|
||||
translators.create_item(translators_root).set_text(0, " M Buhari Horoz (Sorian01) - " + tr("Turkish"))
|
||||
translators.create_item(translators_root).set_text(0, " br.bahrampour - " + tr("Turkish"))
|
||||
|
|
|
@ -101,7 +101,7 @@ func _on_PopupMenu_id_pressed(ID : int) -> void:
|
|||
Global.current_project.undo_redo.add_undo_method(Global, "undo")
|
||||
Global.current_project.undo_redo.add_do_method(Global, "redo")
|
||||
Global.current_project.undo_redo.commit_action()
|
||||
5: #Frame Properties
|
||||
5: # Frame Properties
|
||||
Global.frame_properties.popup_centered()
|
||||
Global.dialog_open(true)
|
||||
Global.frame_properties.set_frame_label(frame)
|
||||
|
|
|
@ -7,7 +7,7 @@ func set_frame_label(frame : int) -> void:
|
|||
frame_num.set_text(str(frame + 1))
|
||||
|
||||
func set_frame_dur(duration : float) -> void:
|
||||
frame_dur.set_value(duration)
|
||||
frame_dur.set_value(duration)
|
||||
|
||||
func _on_FrameProperties_popup_hide() -> void:
|
||||
Global.dialog_open(false)
|
||||
|
@ -16,7 +16,7 @@ func _on_FrameProperties_confirmed():
|
|||
var frame : int = int(frame_num.get_text())
|
||||
var duration : float = frame_dur.get_value()
|
||||
var frame_duration = Global.current_project.frame_duration.duplicate()
|
||||
frame_duration[frame - 1] = duration
|
||||
frame_duration[frame - 1] = duration
|
||||
|
||||
Global.current_project.undos += 1
|
||||
Global.current_project.undo_redo.create_action("Change frame duration")
|
||||
|
|
|
@ -57,6 +57,7 @@ margin_left = 101.0
|
|||
margin_top = 18.0
|
||||
margin_right = 193.0
|
||||
margin_bottom = 42.0
|
||||
mouse_default_cursor_shape = 2
|
||||
size_flags_horizontal = 3
|
||||
step = 0.05
|
||||
value = 2.0
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue