From e8bb5a655866a9d1bd6aa7a920166a4ffcf7667d Mon Sep 17 00:00:00 2001 From: Casey Bianco-Davis Date: Mon, 29 Sep 2025 12:33:42 +0200 Subject: [PATCH] Python: Rename `IDType_ID_GP.name_plural` to `grease_pencils` This renames `IDType_ID_GP.name_plural` for Grease Pencil from `grease_pencil_v3` to `grease_pencil`. Part of #125058. Pull Request: https://projects.blender.org/blender/blender/pulls/146903 --- scripts/modules/bl_i18n_utils/settings.py | 1 - source/blender/blenkernel/intern/grease_pencil.cc | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/scripts/modules/bl_i18n_utils/settings.py b/scripts/modules/bl_i18n_utils/settings.py index 940b6f01be1..72365d35d07 100644 --- a/scripts/modules/bl_i18n_utils/settings.py +++ b/scripts/modules/bl_i18n_utils/settings.py @@ -429,7 +429,6 @@ WARN_MSGID_NOT_CAPITALIZED_ALLOWED = { "curves", "fonts", "grease_pencils", - "grease_pencils_v3", "hair_curves", "ipos", "lattices", diff --git a/source/blender/blenkernel/intern/grease_pencil.cc b/source/blender/blenkernel/intern/grease_pencil.cc index 1445fa02d37..f1119f4a663 100644 --- a/source/blender/blenkernel/intern/grease_pencil.cc +++ b/source/blender/blenkernel/intern/grease_pencil.cc @@ -358,7 +358,7 @@ IDTypeInfo IDType_ID_GP = { /*main_listbase_index*/ INDEX_ID_GP, /*struct_size*/ sizeof(GreasePencil), /*name*/ "GreasePencil", - /*name_plural*/ N_("grease_pencils_v3"), + /*name_plural*/ N_("grease_pencils"), /*translation_context*/ BLT_I18NCONTEXT_ID_GPENCIL, /*flags*/ IDTYPE_FLAGS_APPEND_IS_REUSABLE, /*asset_type_info*/ nullptr,