mirror of
https://github.com/Orama-Interactive/Pixelorama.git
synced 2025-01-18 17:19:50 +00:00
Made 2 more strings in the About window translatable
This commit is contained in:
parent
3626d4281b
commit
1b57c4ee22
|
@ -6,7 +6,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
||||||
## [v0.6] - 06-01-2020
|
## [v0.6] - 06-01-2020
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
- Palettes. You can choose default ones or make your own! (Thanks to greusser - issue #27)
|
- Palettes. You can choose default ones or make your own! (Thanks to greusser/CheetoHead - issue #27)
|
||||||
- Multiple theme support (Dark, Gray, Light, Godot, Gold) to better match your style (Thanks to Erevoid)!
|
- Multiple theme support (Dark, Gray, Light, Godot, Gold) to better match your style (Thanks to Erevoid)!
|
||||||
- Image menu with new features (Outlines, Color invert, desaturation) for more editing power.
|
- Image menu with new features (Outlines, Color invert, desaturation) for more editing power.
|
||||||
- Added a new splash screen window dialog that appears when Pixelorama loads. Patrons with the rank of Visionaries and above can participate in splash screen artwork contests for every version! Click here for more info: https://www.patreon.com/OramaInteractive
|
- Added a new splash screen window dialog that appears when Pixelorama loads. Patrons with the rank of Visionaries and above can participate in splash screen artwork contests for every version! Click here for more info: https://www.patreon.com/OramaInteractive
|
||||||
|
|
|
@ -11,22 +11,18 @@ onready var contributors : Tree = $AboutUI/Credits/Contributors/ContributorTree
|
||||||
onready var donors : Tree = $AboutUI/Credits/Donors/DonorTree
|
onready var donors : Tree = $AboutUI/Credits/Donors/DonorTree
|
||||||
|
|
||||||
func _ready() -> void:
|
func _ready() -> void:
|
||||||
var dev_root := developers.create_item()
|
|
||||||
developers.create_item(dev_root).set_text(0, " Manolis Papadeas (Overloaded) - " + tr("Lead Programmer"))
|
|
||||||
developers.create_item(dev_root).set_text(0, " John Nikitakis (Erevos) - " + tr("UI Designer"))
|
|
||||||
|
|
||||||
var contributor_root := contributors.create_item()
|
var contributor_root := contributors.create_item()
|
||||||
contributors.create_item(contributor_root).set_text(0, " Hugo Locurcio")
|
contributors.create_item(contributor_root).set_text(0, " Hugo Locurcio")
|
||||||
contributors.create_item(contributor_root).set_text(0, " CheetoHead")
|
contributors.create_item(contributor_root).set_text(0, " CheetoHead")
|
||||||
|
contributors.create_item(contributor_root).set_text(0, " Schweini07")
|
||||||
contributors.create_item(contributor_root).set_text(0, " Dawid Niedźwiedzki")
|
contributors.create_item(contributor_root).set_text(0, " Dawid Niedźwiedzki")
|
||||||
contributors.create_item(contributor_root).set_text(0, " Michael Alexsander")
|
contributors.create_item(contributor_root).set_text(0, " Michael Alexsander")
|
||||||
contributors.create_item(contributor_root).set_text(0, " Martin Zabinski")
|
contributors.create_item(contributor_root).set_text(0, " Martin Zabinski")
|
||||||
contributors.create_item(contributor_root).set_text(0, " azagaya")
|
contributors.create_item(contributor_root).set_text(0, " azagaya")
|
||||||
contributors.create_item(contributor_root).set_text(0, " Schweini07")
|
|
||||||
contributors.create_item(contributor_root).set_text(0, " Andreev Andrei")
|
contributors.create_item(contributor_root).set_text(0, " Andreev Andrei")
|
||||||
|
contributors.create_item(contributor_root).set_text(0, " JunYouIntrovert")
|
||||||
contributors.create_item(contributor_root).set_text(0, " Subhang Nanduri")
|
contributors.create_item(contributor_root).set_text(0, " Subhang Nanduri")
|
||||||
contributors.create_item(contributor_root).set_text(0, " danielnaoexiste")
|
contributors.create_item(contributor_root).set_text(0, " danielnaoexiste")
|
||||||
contributors.create_item(contributor_root).set_text(0, " JunYouIntrovert")
|
|
||||||
contributors.create_item(contributor_root).set_text(0, " huskee")
|
contributors.create_item(contributor_root).set_text(0, " huskee")
|
||||||
|
|
||||||
var donors_root := donors.create_item()
|
var donors_root := donors.create_item()
|
||||||
|
@ -49,8 +45,13 @@ func _on_AboutDialog_about_to_show() -> void:
|
||||||
donors_button.set_text(0, " " + tr("Donors"))
|
donors_button.set_text(0, " " + tr("Donors"))
|
||||||
donors_button.set_metadata(0, "Donors")
|
donors_button.set_metadata(0, "Donors")
|
||||||
|
|
||||||
|
var dev_root := developers.create_item()
|
||||||
|
developers.create_item(dev_root).set_text(0, " Manolis Papadeas (Overloaded) - " + tr("Lead Programmer"))
|
||||||
|
developers.create_item(dev_root).set_text(0, " John Nikitakis (Erevos) - " + tr("UI Designer"))
|
||||||
|
|
||||||
func _on_AboutDialog_popup_hide() -> void:
|
func _on_AboutDialog_popup_hide() -> void:
|
||||||
groups.clear()
|
groups.clear()
|
||||||
|
developers.clear()
|
||||||
|
|
||||||
func _on_Groups_item_selected() -> void:
|
func _on_Groups_item_selected() -> void:
|
||||||
for child in credits.get_children():
|
for child in credits.get_children():
|
||||||
|
|
|
@ -268,6 +268,12 @@ msgstr ""
|
||||||
msgid "Development Team"
|
msgid "Development Team"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Lead Programmer"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "UI Designer"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "GitHub Contributors"
|
msgid "GitHub Contributors"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
|
@ -281,6 +281,12 @@ msgstr "Spender"
|
||||||
msgid "Development Team"
|
msgid "Development Team"
|
||||||
msgstr "Entwicklerteam"
|
msgstr "Entwicklerteam"
|
||||||
|
|
||||||
|
msgid "Lead Programmer"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "UI Designer"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "GitHub Contributors"
|
msgid "GitHub Contributors"
|
||||||
msgstr "Github Beitragende"
|
msgstr "Github Beitragende"
|
||||||
|
|
||||||
|
|
|
@ -278,6 +278,12 @@ msgstr "Δωρητές"
|
||||||
msgid "Development Team"
|
msgid "Development Team"
|
||||||
msgstr "Ομάδα Ανάπτυξης"
|
msgstr "Ομάδα Ανάπτυξης"
|
||||||
|
|
||||||
|
msgid "Lead Programmer"
|
||||||
|
msgstr "Επικεφαλής Προγραμματιστής"
|
||||||
|
|
||||||
|
msgid "UI Designer"
|
||||||
|
msgstr "Σχεδιαστής UI"
|
||||||
|
|
||||||
msgid "GitHub Contributors"
|
msgid "GitHub Contributors"
|
||||||
msgstr "Συνεισφέροντες στο GitHub"
|
msgstr "Συνεισφέροντες στο GitHub"
|
||||||
|
|
||||||
|
|
|
@ -275,6 +275,12 @@ msgstr "Donors"
|
||||||
msgid "Development Team"
|
msgid "Development Team"
|
||||||
msgstr "Development Team"
|
msgstr "Development Team"
|
||||||
|
|
||||||
|
msgid "Lead Programmer"
|
||||||
|
msgstr "Lead Programmer"
|
||||||
|
|
||||||
|
msgid "UI Designer"
|
||||||
|
msgstr "UI Designer"
|
||||||
|
|
||||||
msgid "GitHub Contributors"
|
msgid "GitHub Contributors"
|
||||||
msgstr "GitHub Contributors"
|
msgstr "GitHub Contributors"
|
||||||
|
|
||||||
|
|
|
@ -287,6 +287,12 @@ msgstr ""
|
||||||
msgid "Development Team"
|
msgid "Development Team"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Lead Programmer"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "UI Designer"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "GitHub Contributors"
|
msgid "GitHub Contributors"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
|
@ -287,6 +287,12 @@ msgstr ""
|
||||||
msgid "Development Team"
|
msgid "Development Team"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Lead Programmer"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "UI Designer"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "GitHub Contributors"
|
msgid "GitHub Contributors"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
|
@ -275,6 +275,12 @@ msgstr "Doadores"
|
||||||
msgid "Development Team"
|
msgid "Development Team"
|
||||||
msgstr "Time de Desenvolvimento"
|
msgstr "Time de Desenvolvimento"
|
||||||
|
|
||||||
|
msgid "Lead Programmer"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "UI Designer"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "GitHub Contributors"
|
msgid "GitHub Contributors"
|
||||||
msgstr "Contribuidores do GitHub"
|
msgstr "Contribuidores do GitHub"
|
||||||
|
|
||||||
|
|
|
@ -287,6 +287,12 @@ msgstr ""
|
||||||
msgid "Development Team"
|
msgid "Development Team"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Lead Programmer"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "UI Designer"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "GitHub Contributors"
|
msgid "GitHub Contributors"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
|
@ -275,6 +275,12 @@ msgstr "捐款人"
|
||||||
msgid "Development Team"
|
msgid "Development Team"
|
||||||
msgstr "開發團隊"
|
msgstr "開發團隊"
|
||||||
|
|
||||||
|
msgid "Lead Programmer"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "UI Designer"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "GitHub Contributors"
|
msgid "GitHub Contributors"
|
||||||
msgstr "GitHub 貢獻者"
|
msgstr "GitHub 貢獻者"
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue