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 <montagne29@wanadoo.fr>2019-06-11 23:25:01 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2019-06-11 23:25:01 +0300
commit23df1a774b5b70e5108e2d1b1901d2a204ca1d9e (patch)
tree670e5658630b6c29056029685e7b6500debdc758 /source/blender/render
parentd665d128536cb7fc42e3796c0bd4529c1a391431 (diff)
Fix/Cleanup: I18N: Bad usage of IFACE_ instead of TIP_.
Cheap tip: anything that is not "Camel Case" and/or that is more than a few words long should use `TIP_` translation, not `IFACE_` one. Also added several missing strings (including the one reported in D5056 by Jean First (@robbott), thanks).
Diffstat (limited to 'source/blender/render')
-rw-r--r--source/blender/render/intern/source/pipeline.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/source/blender/render/intern/source/pipeline.c b/source/blender/render/intern/source/pipeline.c
index 2e27ec81bd0..e0576d6b253 100644
--- a/source/blender/render/intern/source/pipeline.c
+++ b/source/blender/render/intern/source/pipeline.c
@@ -181,22 +181,22 @@ static void stats_background(void *UNUSED(arg), RenderStats *rs)
megs_peak_memory = (peak_memory) / (1024.0 * 1024.0);
fprintf(stdout,
- IFACE_("Fra:%d Mem:%.2fM (%.2fM, Peak %.2fM) "),
+ TIP_("Fra:%d Mem:%.2fM (%.2fM, Peak %.2fM) "),
rs->cfra,
megs_used_memory,
mmap_used_memory,
megs_peak_memory);
if (rs->curfield) {
- fprintf(stdout, IFACE_("Field %d "), rs->curfield);
+ fprintf(stdout, TIP_("Field %d "), rs->curfield);
}
if (rs->curblur) {
- fprintf(stdout, IFACE_("Blur %d "), rs->curblur);
+ fprintf(stdout, TIP_("Blur %d "), rs->curblur);
}
BLI_timecode_string_from_time_simple(
info_time_str, sizeof(info_time_str), PIL_check_seconds_timer() - rs->starttime);
- fprintf(stdout, IFACE_("| Time:%s | "), info_time_str);
+ fprintf(stdout, TIP_("| Time:%s | "), info_time_str);
if (rs->infostr) {
fprintf(stdout, "%s", rs->infostr);
@@ -204,7 +204,7 @@ static void stats_background(void *UNUSED(arg), RenderStats *rs)
else {
if (rs->tothalo) {
fprintf(stdout,
- IFACE_("Sce: %s Ve:%d Fa:%d Ha:%d La:%d"),
+ TIP_("Sce: %s Ve:%d Fa:%d Ha:%d La:%d"),
rs->scene_name,
rs->totvert,
rs->totface,
@@ -213,7 +213,7 @@ static void stats_background(void *UNUSED(arg), RenderStats *rs)
}
else {
fprintf(stdout,
- IFACE_("Sce: %s Ve:%d Fa:%d La:%d"),
+ TIP_("Sce: %s Ve:%d Fa:%d La:%d"),
rs->scene_name,
rs->totvert,
rs->totface,