Skip to content

Commit 1515d95

Browse files
credit:trailer
1 parent 0afc1d3 commit 1515d95

File tree

10 files changed

+6
-4
lines changed

10 files changed

+6
-4
lines changed

assets/i18n/localization.csv

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -670,4 +670,5 @@ credit:theme,game theme,Theme,游戏主题,Thème,Tema,Motyw grafiki,Оформ
670670
credit:shader,game shader script,Shader,着色器,Shader,Sombreador,Shadery,Шейдери
671671
credit:writing,credit role descriptor,Writing,写作,Écriture,Escrita,Scanariusz,Написання
672672
credit:external,"assets not contributed by credited *, but outsourced",External,外部资源,Externe,Externo,Zewnętrzny,Зовнішнє
673-
ui_label:seconds,Time unit label (e.g. 5 seconds),seconds,,secondes,segundos,sekund,секунди
673+
ui_label:seconds,Time unit label (e.g. 5 seconds),seconds,,secondes,segundos,sekund,секунди
674+
credit:trailer,Steam Page Game Trailer,Trailer,预告片,Trailer,Trailer,Zwiastun,Zаставка
48 Bytes
Binary file not shown.
28 Bytes
Binary file not shown.
32 Bytes
Binary file not shown.
32 Bytes
Binary file not shown.
28 Bytes
Binary file not shown.
40 Bytes
Binary file not shown.
36 Bytes
Binary file not shown.

resources/game_data/worker_role/worker_role.gd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ func get_info() -> String:
5252
var worker_names: Array = WorkerRole.get_display_names_of(worker_consume.keys())
5353
info += (", -%s " + (", -%s ".join(worker_names))) % worker_consume.values()
5454

55-
var label_seconds = Locale.get_ui_label("seconds") # "s" #"seconds"
55+
var label_seconds: String = Locale.get_ui_label("seconds") # "s" #"seconds"
5656

5757
var cycle_seconds: String = "%1.1f" % SaveFile.get_cycle_seconds()
5858
info += " / %s %s" % [cycle_seconds, label_seconds]

scenes/ui/screen/settings_screen/settings_screen.gd

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -338,9 +338,9 @@ static func _get_credits_2() -> String:
338338
[url=https://www.linkedin.com/in/marion-veber-838279342/]Marion Veber[/url] - {French}
339339
[url=https://www.linkedin.com/in/xiaofei-shen/]Xiaofei Shen[/url] & [url=https://www.middlebury.edu/institute/]Gloria[/url] - {Chinese}
340340
341-
342341
[color=#e0e064][b]{Publishing & Management}[/b][/color]
343342
[url=https://abyssalnovelist.carrd.co/]Abyssal Novelist[/url] - {Steam}
343+
[url=https://circlesinthesky.com/]Skyler Newsome[/url] - {Trailer}
344344
[url=https://github.com/TinyTakinTeller]TinyTakinTeller[/url] - {Itch}"""
345345
return _localize_credits(template)
346346

@@ -355,7 +355,7 @@ static func _get_license_1() -> String:
355355
{Music} : [url=https://pixabay.com/music/video-games-to-the-death-159171/]To The Death[/url] - [color=#e00064][url=https://pixabay.com/service/license-summary/]Pixabay License[/url][/color]
356356
{SFX} : Sound Packs (by PlaceHolderAssets) - [color=#e00064][url=https://en.wikipedia.org/wiki/Licence_to_use]LTU[/url][/color]
357357
{SFX} : [url=https://freesound.org/s/331656/]Keyboard Typing[/url], [url=https://freesound.org/s/249583/]Fart[/url], [url=https://freesound.org/s/332820/]Heartbeat[/url] - [color=#e00064][url=https://creativecommons.org/public-domain/cc0/]CC0[/url][/color]
358-
{Theme} : Minimalistic UI Theme (by @AzagayaVj) - [color=#e00064][url=https://creativecommons.org/licenses/by/4.0/]CC-BY 4.0[/url][/color]
358+
{Theme} : Minimalistic UI Theme (by Azagaya) - [color=#e00064][url=https://creativecommons.org/licenses/by/4.0/]CC-BY 4.0[/url][/color]
359359
{Shader} : [url=https://godotshaders.com/shader/chromatic-aberration-vignette/]Vignette[/url], [url=https://godotshaders.com/shader/wiggle-2d/]Wiggle[/url], [url=https://godotshaders.com/shader/chromatic-abberation/]Aberration[/url], [url=https://godotshaders.com/shader/2d-radial-distortion-fisheye-barrel/]Fisheye[/url] - [color=#e00064][url=https://creativecommons.org/publicdomain/zero/1.0/]CC0[/url][/color]
360360
{Shader} : [url=https://godotshaders.com/shader/starry-sky/]Starry Sky[/url] - [color=#e00064][url=https://opensource.org/license/mit/]MIT[/url][/color]
361361
{Shader} : [url=https://gamedev.stackexchange.com/a/207351]Pixel Explosion Shader[/url] - [color=#e00064][url=https://creativecommons.org/licenses/by-sa/4.0/]CC-BY-SA 4.0[/url][/color]
@@ -376,6 +376,7 @@ static func _localize_credits(template: String) -> String:
376376
. replace("{Chinese}", Locale.get_credit_label("chinese"))
377377
. replace("{Review}", Locale.get_credit_label("review"))
378378
. replace("{Steam}", Locale.get_credit_label("steam"))
379+
. replace("{Trailer}", Locale.get_credit_label("trailer"))
379380
. replace("{Itch}", Locale.get_credit_label("itch"))
380381
. replace("{Programming}", Locale.get_role_label("programming"))
381382
. replace("{Art}", Locale.get_role_label("art"))

0 commit comments

Comments
 (0)