paint: move ts to c

This commit is contained in:
luboslenco
2026-03-06 12:56:38 +01:00
parent 1adcc0f59a
commit 313378a923
396 changed files with 46606 additions and 45005 deletions
+35
View File
@@ -0,0 +1,35 @@
string_t *strings_arm_file_expected() {
return tr("Error: .arm file expected", null);
}
string_t *strings_unknown_asset_format() {
return tr("Error: Unknown asset format", null);
}
string_t *strings_could_not_locate_texture() {
return tr("Error: Could not locate texture", null);
}
string_t *strings_failed_to_read_mesh_data() {
return tr("Error: Failed to read mesh data", null);
}
string_t *strings_check_internet_connection() {
return tr("Error: Check internet connection to access the cloud", null);
}
string_t *strings_asset_already_imported() {
return tr("Info: Asset already imported", null);
}
string_t *strings_graphics_api() {
#ifdef IRON_DIRECT3D12
return "Direct3D12";
#elif defined(IRON_METAL)
return "Metal";
#elif defined(IRON_VULKAN)
return "Vulkan";
#else
return "WebGPU";
#endif
}