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:
authorSv. Lockal <lockalsash@gmail.com>2014-04-03 22:49:27 +0400
committerSv. Lockal <lockalsash@gmail.com>2014-04-03 22:49:27 +0400
commitc019ae5ea3a8eb49010de76c14a359c4729bbcf0 (patch)
tree53fb5237d88b34935b201619d2bbe85f9e678025 /source/blender/editors/space_node
parente7c2578576380288befcd77e88edd8ae508ed01a (diff)
I18N: add missing lines
Reviewed By: mont29 Differential Revision: https://developer.blender.org/D328
Diffstat (limited to 'source/blender/editors/space_node')
-rw-r--r--source/blender/editors/space_node/drawnode.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/source/blender/editors/space_node/drawnode.c b/source/blender/editors/space_node/drawnode.c
index ae5737a04d0..78dae08bed0 100644
--- a/source/blender/editors/space_node/drawnode.c
+++ b/source/blender/editors/space_node/drawnode.c
@@ -2725,7 +2725,7 @@ static void node_template_properties_update(bNodeType *ntype)
static void node_socket_undefined_draw(bContext *UNUSED(C), uiLayout *layout, PointerRNA *UNUSED(ptr), PointerRNA *UNUSED(node_ptr),
const char *UNUSED(text))
{
- uiItemL(layout, "Undefined Socket Type", ICON_ERROR);
+ uiItemL(layout, IFACE_("Undefined Socket Type"), ICON_ERROR);
}
static void node_socket_undefined_draw_color(bContext *UNUSED(C), PointerRNA *UNUSED(ptr), PointerRNA *UNUSED(node_ptr), float *r_color)
@@ -2738,7 +2738,7 @@ static void node_socket_undefined_draw_color(bContext *UNUSED(C), PointerRNA *UN
static void node_socket_undefined_interface_draw(bContext *UNUSED(C), uiLayout *layout, PointerRNA *UNUSED(ptr))
{
- uiItemL(layout, "Undefined Socket Type", ICON_ERROR);
+ uiItemL(layout, IFACE_("Undefined Socket Type"), ICON_ERROR);
}
static void node_socket_undefined_interface_draw_color(bContext *UNUSED(C), PointerRNA *UNUSED(ptr), float *r_color)
@@ -2944,8 +2944,8 @@ static void std_node_socket_interface_draw(bContext *UNUSED(C), uiLayout *layout
uiLayout *row;
uiItemR(layout, ptr, "default_value", 0, NULL, 0);
row = uiLayoutRow(layout, true);
- uiItemR(row, ptr, "min_value", 0, "Min", 0);
- uiItemR(row, ptr, "max_value", 0, "Max", 0);
+ uiItemR(row, ptr, "min_value", 0, IFACE_("Min"), 0);
+ uiItemR(row, ptr, "max_value", 0, IFACE_("Max"), 0);
break;
}
case SOCK_INT:
@@ -2953,8 +2953,8 @@ static void std_node_socket_interface_draw(bContext *UNUSED(C), uiLayout *layout
uiLayout *row;
uiItemR(layout, ptr, "default_value", 0, NULL, 0);
row = uiLayoutRow(layout, true);
- uiItemR(row, ptr, "min_value", 0, "Min", 0);
- uiItemR(row, ptr, "max_value", 0, "Max", 0);
+ uiItemR(row, ptr, "min_value", 0, IFACE_("Min"), 0);
+ uiItemR(row, ptr, "max_value", 0, IFACE_("Max"), 0);
break;
}
case SOCK_BOOLEAN:
@@ -2967,8 +2967,8 @@ static void std_node_socket_interface_draw(bContext *UNUSED(C), uiLayout *layout
uiLayout *row;
uiItemR(layout, ptr, "default_value", UI_ITEM_R_EXPAND, NULL, 0);
row = uiLayoutRow(layout, true);
- uiItemR(row, ptr, "min_value", 0, "Min", 0);
- uiItemR(row, ptr, "max_value", 0, "Max", 0);
+ uiItemR(row, ptr, "min_value", 0, IFACE_("Min"), 0);
+ uiItemR(row, ptr, "max_value", 0, IFACE_("Max"), 0);
break;
}
case SOCK_RGBA: