project.godot 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. ; Engine configuration file.
  2. ; It's best edited using the editor UI and not directly,
  3. ; since the parameters that go here are not all obvious.
  4. ;
  5. ; Format:
  6. ; [section] ; section goes between []
  7. ; param=value ; assign values to parameters
  8. config_version=5
  9. [application]
  10. config/name="Translation Demo"
  11. config/description="A demo showing how Godot seamlessly enables
  12. the use of localized resources and texts."
  13. config/tags=PackedStringArray("demo", "internationalization", "official")
  14. run/main_scene="res://translation_demo_csv.tscn"
  15. config/features=PackedStringArray("4.2")
  16. config/icon="res://icon.webp"
  17. [debug]
  18. gdscript/warnings/untyped_declaration=1
  19. [display]
  20. window/stretch/mode="canvas_items"
  21. window/stretch/aspect="expand"
  22. [internationalization]
  23. locale/translation_remaps={
  24. "res://audio/hello_en.wav": PackedStringArray("res://audio/hello_es.wav:es", "res://audio/hello_jp.wav:ja", "res://audio/hello_ru.wav:ru"),
  25. "res://images/flag_uk.webp": PackedStringArray("res://images/flag_japan.webp:ja", "res://images/flag_russia.webp:ru", "res://images/flag_spain.webp:es")
  26. }
  27. locale/translations=PackedStringArray("res://translations/csv/text.en.translation", "res://translations/csv/text.es.translation", "res://translations/csv/text.ja.translation", "res://translations/csv/text.ru.translation", "res://translations/po/translation_demo_es.po", "res://translations/po/translation_demo_ja.po")
  28. locale/translations_pot_files=PackedStringArray("res://translation_demo_po.tscn")
  29. locale/locale_filter_mode=0
  30. [locale]
  31. translations=PackedStringArray("res://TranslationFiles/CSV/text.en.translation", "res://TranslationFiles/CSV/text.es.translation", "res://TranslationFiles/CSV/text.ja.translation", "res://TranslationFiles/CSV/text.ru.translation", "res://TranslationFiles/PO/translation_demo_es.po", "res://TranslationFiles/PO/translation_demo_ja.po")
  32. translation_remaps={
  33. "res://Audio/hello_en.wav": PackedStringArray("res://Audio/hello_es.wav:es", "res://Audio/hello_jp.wav:ja", "res://Audio/hello_ru.wav:ru"),
  34. "res://Images/flag_uk.png": PackedStringArray("res://Images/flag_spain.png:es", "res://Images/flag_japan.png:ja", "res://Images/flag_russia.png:ru")
  35. }
  36. translations_pot_files=PackedStringArray("res://translation_po.gd", "res://translation_demo_po.tscn")
  37. [rendering]
  38. renderer/rendering_method="gl_compatibility"