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:
authorAntonioya <blendergit@gmail.com>2016-09-11 14:05:29 +0300
committerAntonioya <blendergit@gmail.com>2016-09-11 14:06:37 +0300
commitac2fe8312bd2a609eb884ad95dd27bcbbf7f1b0e (patch)
tree9b32e67d45e55c6d7122885dc816dca2dcd09fdc /source/blender/editors/gpencil
parentb50a5b92c15e0f110ca978352c2ba59bc3e97dd3 (diff)
Revert "GPencil: Add IFACE_ macro to some strings"
This reverts commit b50a5b92c15e0f110ca978352c2ba59bc3e97dd3 because BKE_report functions are already automatically handled by translation system.
Diffstat (limited to 'source/blender/editors/gpencil')
-rw-r--r--source/blender/editors/gpencil/gpencil_edit.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/source/blender/editors/gpencil/gpencil_edit.c b/source/blender/editors/gpencil/gpencil_edit.c
index c3d10480f56..cce22ba9e17 100644
--- a/source/blender/editors/gpencil/gpencil_edit.c
+++ b/source/blender/editors/gpencil/gpencil_edit.c
@@ -2349,19 +2349,19 @@ static int gpencil_interpolate_invoke(bContext *C, wmOperator *op, const wmEvent
/* cannot interpolate if not between 2 frames */
if ((gpl->actframe == NULL) || (gpl->actframe->next == NULL)) {
- BKE_report(op->reports, RPT_ERROR, IFACE_("Interpolation requires to be between two grease pencil frames in active layer"));
+ BKE_report(op->reports, RPT_ERROR, "Interpolation requires to be between two grease pencil frames in active layer");
return OPERATOR_CANCELLED;
}
/* cannot interpolate in extremes */
if ((gpl->actframe->framenum == scene->r.cfra) || (gpl->actframe->next->framenum == scene->r.cfra)) {
- BKE_report(op->reports, RPT_ERROR, IFACE_("Interpolation requires to be between two grease pencil frames in active layer"));
+ BKE_report(op->reports, RPT_ERROR, "Interpolation requires to be between two grease pencil frames in active layer");
return OPERATOR_CANCELLED;
}
/* need editable strokes */
if (!gp_interpolate_check_todo(C, gpd)) {
- BKE_report(op->reports, RPT_ERROR, IFACE_("Interpolation requires some editable stroke"));
+ BKE_report(op->reports, RPT_ERROR, "Interpolation requires some editable stroke");
return OPERATOR_CANCELLED;
}
@@ -2543,12 +2543,12 @@ static int gpencil_interpolate_seq_exec(bContext *C, wmOperator *op)
/* cannot interpolate if not between 2 frames */
if ((active_gpl->actframe == NULL) || (active_gpl->actframe->next == NULL)) {
- BKE_report(op->reports, RPT_ERROR, IFACE_("Interpolation requires to be between two grease pencil frames"));
+ BKE_report(op->reports, RPT_ERROR, "Interpolation requires to be between two grease pencil frames");
return OPERATOR_CANCELLED;
}
/* cannot interpolate in extremes */
if ((active_gpl->actframe->framenum == scene->r.cfra) || (active_gpl->actframe->next->framenum == scene->r.cfra)) {
- BKE_report(op->reports, RPT_ERROR, IFACE_("Interpolation requires to be between two grease pencil frames"));
+ BKE_report(op->reports, RPT_ERROR, "Interpolation requires to be between two grease pencil frames");
return OPERATOR_CANCELLED;
}