Add a few missing UI strings to translation.

Reviewed By: mont29

Differential Revision: https://developer.blender.org/D15392
This commit is contained in:
Damien Picard
2022-07-08 11:54:45 +02:00
committed by Bastien Montagne
parent 754dae6c76
commit 2c4dfe3453
2 changed files with 18 additions and 17 deletions

View File

@@ -18,6 +18,7 @@ from bpy.props import (
FloatVectorProperty, FloatVectorProperty,
) )
from bpy.app.translations import pgettext_iface as iface_ from bpy.app.translations import pgettext_iface as iface_
from bpy.app.translations import pgettext_tip as tip_
def _rna_path_prop_search_for_context_impl(context, edit_text, unique_attrs): def _rna_path_prop_search_for_context_impl(context, edit_text, unique_attrs):
@@ -1060,31 +1061,31 @@ class WM_OT_url_open_preset(Operator):
# Allow dynamically extending. # Allow dynamically extending.
preset_items = [ preset_items = [
# Dynamic URL's. # Dynamic URL's.
(('BUG', "Bug", (('BUG', iface_("Bug"),
"Report a bug with pre-filled version information"), tip_("Report a bug with pre-filled version information")),
_url_from_bug), _url_from_bug),
(('BUG_ADDON', "Add-on Bug", (('BUG_ADDON', iface_("Add-on Bug"),
"Report a bug in an add-on"), tip_("Report a bug in an add-on")),
_url_from_bug_addon), _url_from_bug_addon),
(('RELEASE_NOTES', "Release Notes", (('RELEASE_NOTES', iface_("Release Notes"),
"Read about what's new in this version of Blender"), tip_("Read about what's new in this version of Blender")),
_url_from_release_notes), _url_from_release_notes),
(('MANUAL', "User Manual", (('MANUAL', iface_("User Manual"),
"The reference manual for this version of Blender"), tip_("The reference manual for this version of Blender")),
_url_from_manual), _url_from_manual),
(('API', "Python API Reference", (('API', iface_("Python API Reference"),
"The API reference manual for this version of Blender"), tip_("The API reference manual for this version of Blender")),
_url_from_api), _url_from_api),
# Static URL's. # Static URL's.
(('FUND', "Development Fund", (('FUND', iface_("Development Fund"),
"The donation program to support maintenance and improvements"), tip_("The donation program to support maintenance and improvements")),
"https://fund.blender.org"), "https://fund.blender.org"),
(('BLENDER', "blender.org", (('BLENDER', iface_("blender.org"),
"Blender's official web-site"), tip_("Blender's official web-site")),
"https://www.blender.org"), "https://www.blender.org"),
(('CREDITS', "Credits", (('CREDITS', iface_("Credits"),
"Lists committers to Blender's source code"), tip_("Lists committers to Blender's source code")),
"https://www.blender.org/about/credits/"), "https://www.blender.org/about/credits/"),
] ]

View File

@@ -2094,7 +2094,7 @@ class StudioLightPanelMixin:
for studio_light in lights: for studio_light in lights:
self.draw_studio_light(flow, studio_light) self.draw_studio_light(flow, studio_light)
else: else:
layout.label(text="No custom %s configured" % self.bl_label) layout.label(text=iface_("No custom %s configured") % self.bl_label)
def draw_studio_light(self, layout, studio_light): def draw_studio_light(self, layout, studio_light):
box = layout.box() box = layout.box()