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:
authorCampbell Barton <ideasman42@gmail.com>2011-10-24 09:00:53 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-10-24 09:00:53 +0400
commit77a7ec7c61965efa9e2e82894c821fe5c937b989 (patch)
tree5761c94b242930c1e30d895b72dd3b228a4faff8 /source/blender/editors/space_info
parent0503a4f7a6fa2aba573ff4f8d4c6d7f387894952 (diff)
parenta35261cfee1e04bca3366e6967e046cdb00d3d44 (diff)
svn merge ^/trunk/blender -r41150:41175
Diffstat (limited to 'source/blender/editors/space_info')
-rw-r--r--source/blender/editors/space_info/space_info.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/space_info/space_info.c b/source/blender/editors/space_info/space_info.c
index 9157df6960f..bafcf36e646 100644
--- a/source/blender/editors/space_info/space_info.c
+++ b/source/blender/editors/space_info/space_info.c
@@ -280,7 +280,7 @@ static void recent_files_menu_draw(const bContext *UNUSED(C), Menu *menu)
uiItemStringO(layout, BLI_path_basename(recent->filepath), ICON_FILE_BLEND, "WM_OT_open_mainfile", "filepath", recent->filepath);
}
} else {
- uiItemL(layout, UI_translate_do_iface(N_("No Recent Files")), ICON_NONE);
+ uiItemL(layout, IFACE_("No Recent Files"), ICON_NONE);
}
}
@@ -290,7 +290,7 @@ static void recent_files_menu_register(void)
mt= MEM_callocN(sizeof(MenuType), "spacetype info menu recent files");
strcpy(mt->idname, "INFO_MT_file_open_recent");
- strcpy(mt->label, _("Open Recent..."));
+ strcpy(mt->label, N_("Open Recent..."));
mt->draw= recent_files_menu_draw;
WM_menutype_add(mt);
}