mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 15:25:01 +01:00
Tinker with text related to clean-up.
git-svn-id: svn://localhost/ardour2/branches/3.0@9459 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
2a1844a28e
commit
f89c285bcc
3 changed files with 19 additions and 16 deletions
|
|
@ -2948,10 +2948,11 @@ ARDOUR_UI::display_cleanup_results (ARDOUR::CleanupReport& rep, const gchar* lis
|
||||||
|
|
||||||
if (removed == 0) {
|
if (removed == 0) {
|
||||||
MessageDialog msgd (*editor,
|
MessageDialog msgd (*editor,
|
||||||
_("No files were ready for cleanup"),
|
_("No files were ready for clean-up"),
|
||||||
true,
|
true,
|
||||||
Gtk::MESSAGE_INFO,
|
Gtk::MESSAGE_INFO,
|
||||||
(Gtk::ButtonsType)(Gtk::BUTTONS_OK) );
|
(Gtk::ButtonsType)(Gtk::BUTTONS_OK) );
|
||||||
|
msgd.set_title (_("Clean-up"));
|
||||||
msgd.set_secondary_text (_("If this seems suprising, \n\
|
msgd.set_secondary_text (_("If this seems suprising, \n\
|
||||||
check for any existing snapshots.\n\
|
check for any existing snapshots.\n\
|
||||||
These may still include regions that\n\
|
These may still include regions that\n\
|
||||||
|
|
@ -3073,17 +3074,19 @@ ARDOUR_UI::cleanup ()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
MessageDialog checker (_("Are you sure you want to cleanup?"),
|
MessageDialog checker (_("Are you sure you want to clean-up?"),
|
||||||
true,
|
true,
|
||||||
Gtk::MESSAGE_QUESTION,
|
Gtk::MESSAGE_QUESTION,
|
||||||
(Gtk::ButtonsType)(Gtk::BUTTONS_NONE));
|
(Gtk::ButtonsType)(Gtk::BUTTONS_NONE));
|
||||||
|
|
||||||
checker.set_secondary_text(_("Cleanup is a destructive operation.\n\
|
checker.set_title (_("Clean-up"));
|
||||||
ALL undo/redo information will be lost if you cleanup.\n\
|
|
||||||
Cleanup will move all unused files to a \"dead\" location."));
|
checker.set_secondary_text(_("Clean-up is a destructive operation.\n\
|
||||||
|
ALL undo/redo information will be lost if you clean-up.\n\
|
||||||
|
Clean-up will move all unused files to a \"dead\" location."));
|
||||||
|
|
||||||
checker.add_button (Stock::CANCEL, RESPONSE_CANCEL);
|
checker.add_button (Stock::CANCEL, RESPONSE_CANCEL);
|
||||||
checker.add_button (_("Clean Up"), RESPONSE_ACCEPT);
|
checker.add_button (_("Clean-up"), RESPONSE_ACCEPT);
|
||||||
checker.set_default_response (RESPONSE_CANCEL);
|
checker.set_default_response (RESPONSE_CANCEL);
|
||||||
|
|
||||||
checker.set_name (_("CleanupDialog"));
|
checker.set_name (_("CleanupDialog"));
|
||||||
|
|
@ -3117,21 +3120,21 @@ Cleanup will move all unused files to a \"dead\" location."));
|
||||||
|
|
||||||
checker.hide();
|
checker.hide();
|
||||||
display_cleanup_results (rep,
|
display_cleanup_results (rep,
|
||||||
_("cleaned files"),
|
_("Cleaned Files"),
|
||||||
_("\
|
_("\
|
||||||
The following %1 files were not in use and \n\
|
The following %1 files were not in use and \n\
|
||||||
have been moved to:\n\n\
|
have been moved to:\n\n\
|
||||||
%2\n\n\
|
%2\n\n\
|
||||||
After a restart of Ardour,\n\n\
|
After a restart of Ardour,\n\n\
|
||||||
Session -> Cleanup -> Flush Wastebasket\n\n\
|
Session -> Clean-up -> Flush Wastebasket\n\n\
|
||||||
will release an additional\n\
|
will release an additional\n\
|
||||||
%3 %4bytes of disk space.\n"),
|
%3 %4bytes of disk space.\n"),
|
||||||
_("\
|
_("\
|
||||||
The following file was not in use and \n \
|
The following file was not in use and \n\
|
||||||
has been moved to:\n \
|
has been moved to:\n \
|
||||||
%2\n\n\
|
%2\n\n\
|
||||||
After a restart of Ardour,\n\n\
|
After a restart of Ardour,\n\n\
|
||||||
Session -> Cleanup -> Flush Wastebasket\n\n\
|
Session -> Clean-up -> Flush Wastebasket\n\n\
|
||||||
will release an additional\n\
|
will release an additional\n\
|
||||||
%3 %4bytes of disk space.\n"
|
%3 %4bytes of disk space.\n"
|
||||||
));
|
));
|
||||||
|
|
|
||||||
|
|
@ -98,7 +98,7 @@ ARDOUR_UI::install_actions ()
|
||||||
/* menus + submenus that need action items */
|
/* menus + submenus that need action items */
|
||||||
|
|
||||||
ActionManager::register_action (main_actions, X_("Session"), _("Session"));
|
ActionManager::register_action (main_actions, X_("Session"), _("Session"));
|
||||||
act = ActionManager::register_action (main_actions, X_("Cleanup"), _("Cleanup"));
|
act = ActionManager::register_action (main_actions, X_("Cleanup"), _("Clean-up"));
|
||||||
ActionManager::write_sensitive_actions.push_back (act);
|
ActionManager::write_sensitive_actions.push_back (act);
|
||||||
ActionManager::register_action (main_actions, X_("Sync"), _("Sync"));
|
ActionManager::register_action (main_actions, X_("Sync"), _("Sync"));
|
||||||
ActionManager::register_action (main_actions, X_("TransportOptions"), _("Options"));
|
ActionManager::register_action (main_actions, X_("TransportOptions"), _("Options"));
|
||||||
|
|
@ -168,7 +168,7 @@ ARDOUR_UI::install_actions ()
|
||||||
act = ActionManager::register_action (main_actions, X_("Export"), _("Export"));
|
act = ActionManager::register_action (main_actions, X_("Export"), _("Export"));
|
||||||
ActionManager::session_sensitive_actions.push_back (act);
|
ActionManager::session_sensitive_actions.push_back (act);
|
||||||
|
|
||||||
act = ActionManager::register_action (main_actions, X_("CleanupUnused"), _("Cleanup Unused Sources..."), sigc::mem_fun (*(ARDOUR_UI::instance()), &ARDOUR_UI::cleanup));
|
act = ActionManager::register_action (main_actions, X_("CleanupUnused"), _("Clean-up Unused Sources..."), sigc::mem_fun (*(ARDOUR_UI::instance()), &ARDOUR_UI::cleanup));
|
||||||
ActionManager::session_sensitive_actions.push_back (act);
|
ActionManager::session_sensitive_actions.push_back (act);
|
||||||
ActionManager::write_sensitive_actions.push_back (act);
|
ActionManager::write_sensitive_actions.push_back (act);
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -3833,8 +3833,8 @@ Editor::playlist_deletion_dialog (boost::shared_ptr<Playlist> pl)
|
||||||
{
|
{
|
||||||
ArdourDialog dialog (_("Playlist Deletion"));
|
ArdourDialog dialog (_("Playlist Deletion"));
|
||||||
Label label (string_compose (_("Playlist %1 is currently unused.\n"
|
Label label (string_compose (_("Playlist %1 is currently unused.\n"
|
||||||
"If left alone, no audio files used by it will be cleaned.\n"
|
"If it is kept, its audio files will not be cleaned.\n"
|
||||||
"If deleted, audio files used by it alone by will cleaned."),
|
"If it is deleted, audio files used by it alone will be cleaned."),
|
||||||
pl->name()));
|
pl->name()));
|
||||||
|
|
||||||
dialog.set_position (WIN_POS_CENTER);
|
dialog.set_position (WIN_POS_CENTER);
|
||||||
|
|
@ -3842,8 +3842,8 @@ Editor::playlist_deletion_dialog (boost::shared_ptr<Playlist> pl)
|
||||||
|
|
||||||
label.show ();
|
label.show ();
|
||||||
|
|
||||||
dialog.add_button (_("Delete playlist"), RESPONSE_ACCEPT);
|
dialog.add_button (_("Delete Playlist"), RESPONSE_ACCEPT);
|
||||||
dialog.add_button (_("Keep playlist"), RESPONSE_REJECT);
|
dialog.add_button (_("Keep Playlist"), RESPONSE_REJECT);
|
||||||
dialog.add_button (_("Cancel"), RESPONSE_CANCEL);
|
dialog.add_button (_("Cancel"), RESPONSE_CANCEL);
|
||||||
|
|
||||||
switch (dialog.run ()) {
|
switch (dialog.run ()) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue