summaryrefslogtreecommitdiff
path: root/gtk2_ardour/session_dialog.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2017-09-21 02:00:05 +0200
committerRobin Gareus <robin@gareus.org>2017-09-21 02:01:12 +0200
commit0fd861d8dedbaa5d262432b05cf9b1fe66381eab (patch)
treeafb75ee6a11b5e57ac086473068ea4142fe5dee8 /gtk2_ardour/session_dialog.cc
parenta42f6ff8288d6065bdf2fb27a0ef4457f7ec21d3 (diff)
s/created with/modified with/
Once a session has been saved by a more recent version or a different variant, the session file is tied to that version/variant. The created-with version is only for debug purposes and internal use.
Diffstat (limited to 'gtk2_ardour/session_dialog.cc')
-rw-r--r--gtk2_ardour/session_dialog.cc24
1 files changed, 12 insertions, 12 deletions
diff --git a/gtk2_ardour/session_dialog.cc b/gtk2_ardour/session_dialog.cc
index 8ad6e2d388..af3232072a 100644
--- a/gtk2_ardour/session_dialog.cc
+++ b/gtk2_ardour/session_dialog.cc
@@ -375,7 +375,7 @@ SessionDialog::setup_recent_sessions ()
recent_session_display.append_column (_("Session Name"), recent_session_columns.visible_name);
recent_session_display.append_column (_("Sample Rate"), recent_session_columns.sample_rate);
#ifdef MIXBUS
- recent_session_display.append_column (_("Created With"), recent_session_columns.created_with);
+ recent_session_display.append_column (_("Modified With"), recent_session_columns.modified_with);
#else
recent_session_display.append_column (_("File Resolution"), recent_session_columns.disk_format);
#endif
@@ -580,8 +580,8 @@ SessionDialog::populate_session_templates ()
row[session_template_columns.name] = (*s)->name;
row[session_template_columns.path] = "urn:ardour:" + (*s)->path;
row[session_template_columns.description] = (*s)->description;
- row[session_template_columns.created_with_short] = _("{Factory Template}");
- row[session_template_columns.created_with_long] = _("{Factory Template}");
+ row[session_template_columns.modified_with_short] = _("{Factory Template}");
+ row[session_template_columns.modified_with_long] = _("{Factory Template}");
}
/* Add Lua Action Scripts which can also be used for session-setup */
@@ -594,8 +594,8 @@ SessionDialog::populate_session_templates ()
row[session_template_columns.name] = (*s)->name;
row[session_template_columns.path] = "urn:ardour:" + (*s)->path;
row[session_template_columns.description] = (*s)->description;
- row[session_template_columns.created_with_short] = _("{Factory Template}");
- row[session_template_columns.created_with_long] = _("{Factory Template}");
+ row[session_template_columns.modified_with_short] = _("{Factory Template}");
+ row[session_template_columns.modified_with_long] = _("{Factory Template}");
}
@@ -608,8 +608,8 @@ SessionDialog::populate_session_templates ()
row[session_template_columns.name] = (*x).name;
row[session_template_columns.path] = (*x).path;
row[session_template_columns.description] = (*x).description;
- row[session_template_columns.created_with_long] = (*x).created_with;
- row[session_template_columns.created_with_short] = (*x).created_with.substr(0, (*x).created_with.find(" "));
+ row[session_template_columns.modified_with_long] = (*x).modified_with;
+ row[session_template_columns.modified_with_short] = (*x).modified_with.substr(0, (*x).modified_with.find(" "));
}
//Add an explicit 'Empty Template' item
@@ -617,8 +617,8 @@ SessionDialog::populate_session_templates ()
row[session_template_columns.name] = (_("Empty Template"));
row[session_template_columns.path] = string();
row[session_template_columns.description] = _("An empty session with factory default settings.");
- row[session_template_columns.created_with_short] = _("");
- row[session_template_columns.created_with_long] = _("");
+ row[session_template_columns.modified_with_short] = _("");
+ row[session_template_columns.modified_with_long] = _("");
//auto-select the first item in the list
Gtk::TreeModel::Row first = template_model->children()[0];
@@ -715,9 +715,9 @@ SessionDialog::setup_new_session_page ()
template_chooser.set_model (template_model);
template_chooser.append_column (_("Template"), session_template_columns.name);
#ifdef MIXBUS
- template_chooser.append_column (_("Created With"), session_template_columns.created_with_short);
+ template_chooser.append_column (_("Modified With"), session_template_columns.modified_with_short);
#endif
- template_chooser.set_tooltip_column(4); // created_with_long
+ template_chooser.set_tooltip_column(4); // modified_with_long
template_chooser.set_headers_visible (true);
template_chooser.get_selection()->set_mode (SELECTION_SINGLE);
template_chooser.get_selection()->signal_changed().connect (sigc::mem_fun (*this, &SessionDialog::template_row_selected));
@@ -867,7 +867,7 @@ SessionDialog::redisplay_recent_sessions ()
row[recent_session_columns.tip] = Gtkmm2ext::markup_escape_text (dirname);
} else {
row[recent_session_columns.tip] = Gtkmm2ext::markup_escape_text (dirname + "\n" + string_compose (_("Last modified with: %1"), program_version));
- row[recent_session_columns.created_with] = program_version;
+ row[recent_session_columns.modified_with] = program_version;
}
++session_snapshot_count;