From 304af6bb090c736e33567dc36622933995a48211 Mon Sep 17 00:00:00 2001 From: "Ignacio R. Morelle" Date: Sat, 15 Feb 2014 22:28:45 -0300 Subject: [PATCH] editor: Use "Identifier:" instead of "ID" for the label for gui2::tedit_text --- src/editor/map/context_manager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/editor/map/context_manager.cpp b/src/editor/map/context_manager.cpp index 9fa015eaadee..9c38e5be4dce 100644 --- a/src/editor/map/context_manager.cpp +++ b/src/editor/map/context_manager.cpp @@ -432,7 +432,7 @@ void context_manager::rename_area_dialog() { int active_area = get_map_context().get_active_area(); std::string name = get_map_context().get_time_manager()->get_area_ids()[active_area]; - if (gui2::tedit_text::execute(N_("Rename Area"), N_("ID"), name, gui_.video())) { + if (gui2::tedit_text::execute(N_("Rename Area"), N_("Identifier:"), name, gui_.video())) { get_map_context().get_time_manager()->set_area_id(active_area, name); } }