2
0

strings.ts 786 B

12345678910111213141516171819202122232425262728293031323334
  1. function strings_arm_file_expected(): string {
  2. return tr("Error: .arm file expected");
  3. }
  4. function strings_unknown_asset_format(): string {
  5. return tr("Error: Unknown asset format");
  6. }
  7. function strings_could_not_locate_texture(): string {
  8. return tr("Error: Could not locate texture");
  9. }
  10. function strings_failed_to_read_mesh_data(): string {
  11. return tr("Error: Failed to read mesh data");
  12. }
  13. function strings_check_internet_connection(): string {
  14. return tr("Error: Check internet connection to access the cloud");
  15. }
  16. function strings_asset_already_imported(): string {
  17. return tr("Info: Asset already imported");
  18. }
  19. function strings_graphics_api(): string {
  20. /// if arm_direct3d12
  21. return "Direct3D12";
  22. /// elseif arm_metal
  23. return "Metal";
  24. /// else
  25. return "Vulkan";
  26. /// end
  27. }