I18n: translate painting error message #105813

Closed
Damien Picard wants to merge 1 commits from pioverfour:dp_translate_painting_message into main

When changing the target branch, be careful to rebase the branch in your fork to match. See documentation.
1 changed files with 4 additions and 4 deletions

View File

@ -6356,10 +6356,10 @@ void ED_paint_data_warning(ReportList *reports, bool uvs, bool mat, bool tex, bo
BKE_reportf(reports, BKE_reportf(reports,
RPT_WARNING, RPT_WARNING,
"Missing%s%s%s%s detected!", "Missing%s%s%s%s detected!",
!uvs ? " UVs," : "", !uvs ? TIP_(" UVs,") : "",
!mat ? " Materials," : "", !mat ? TIP_(" Materials,") : "",
!tex ? " Textures," : "", !tex ? TIP_(" Textures,") : "",
!stencil ? " Stencil," : ""); !stencil ? TIP_(" Stencil,") : "");
} }
bool ED_paint_proj_mesh_data_check( bool ED_paint_proj_mesh_data_check(