Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Montagne <bastien@blender.org>2022-08-22 16:44:44 +0300
committerBastien Montagne <bastien@blender.org>2022-08-22 16:44:44 +0300
commit500e4d540a97ccbd8374f5596f74fc1e9ff65f08 (patch)
tree3f3012fdac442d85c4b06d9d187b1dfe30d24038 /source/blender/blenkernel/intern/image.cc
parentba74704c9acec7b0791a28fa7d1627cf1321ec5d (diff)
parent0b2be4fbc348c22fe4140ee8517892c44996da34 (diff)
Merge branch 'blender-v3.3-release'
Conflicts: release/scripts/startup/bl_ui/space_userpref.py
Diffstat (limited to 'source/blender/blenkernel/intern/image.cc')
-rw-r--r--source/blender/blenkernel/intern/image.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/image.cc b/source/blender/blenkernel/intern/image.cc
index 3e5d997c873..d6caec86b5d 100644
--- a/source/blender/blenkernel/intern/image.cc
+++ b/source/blender/blenkernel/intern/image.cc
@@ -5519,7 +5519,7 @@ RenderSlot *BKE_image_add_renderslot(Image *ima, const char *name)
}
else {
int n = BLI_listbase_count(&ima->renderslots) + 1;
- BLI_snprintf(slot->name, sizeof(slot->name), "Slot %d", n);
+ BLI_snprintf(slot->name, sizeof(slot->name), DATA_("Slot %d"), n);
}
BLI_addtail(&ima->renderslots, slot);
return slot;