View Issue Details
| ID | Project | Category | View Status | Date Submitted | Last Update |
|---|---|---|---|---|---|
| 0005528 | ardour | bugs | public | 2013-06-13 23:52 | 2020-04-19 20:16 |
| Reporter | prokoudine | Assigned To | paul | ||
| Priority | normal | Severity | trivial | Reproducibility | always |
| Status | closed | Resolution | fixed | ||
| Summary | 0005528: Spelling in the video exporting dialog | ||||
| Description | The video exporting dialog has a few spelling bugs, as well as unabstracted program name. The patch fixes it. | ||||
| Tags | No tags attached. | ||||
|
2013-06-13 23:52
|
0001-Fix-the-spelling-and-abstract-the-program-name.patch (2,414 bytes)
From cb327b405e2ea78ecb8bfa089a1e4f7cfe5ef9a5 Mon Sep 17 00:00:00 2001
From: Alexandre Prokoudine <alexandre.prokoudine@gmail.com>
Date: Fri, 14 Jun 2013 03:48:00 +0400
Subject: [PATCH] Fix the spelling and abstract the program name
The video exporting dialog has a few spelling bugs, as well
as unabstracted program name. The patch fixes it.
---
gtk2_ardour/export_video_dialog.cc | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/gtk2_ardour/export_video_dialog.cc b/gtk2_ardour/export_video_dialog.cc
index 309e3af..cf60eaa 100644
--- a/gtk2_ardour/export_video_dialog.cc
+++ b/gtk2_ardour/export_video_dialog.cc
@@ -141,20 +141,20 @@ ExportVideoDialog::ExportVideoDialog (PublicEditor& ed, Session* s)
vbox->pack_start (*path_hbox, false, false, 2);
insnd_combo.set_name ("PaddedButton");
- insnd_combo.append_text("from ardour session-start to session-end");
+ insnd_combo.append_text (string_compose (_("from the %1 session's start to the session's end"), PROGRAM_NAME));
frameoffset_t av_offset = ARDOUR_UI::instance()->video_timeline->get_offset();
if (av_offset < 0 ) {
- insnd_combo.append_text("from 00:00:00:00 to video-end");
+ insnd_combo.append_text (_("from 00:00:00:00 to the video's end"));
} else {
- insnd_combo.append_text("from video-start to video-end");
+ insnd_combo.append_text (_("from the video's start to the video's end"));
}
insnd_combo.set_active(0);
outfn_path_entry.set_width_chars(38);
outfn_path_entry.set_text (_session->session_directory().export_path() + G_DIR_SEPARATOR +"export.avi");
- XMLNode* node = _session->extra_xml (X_("Videotimeline"));
+ XMLNode* node = _session->extra_xml (X_("Video Timeline"));
if (node && node->property(X_("Filename"))) {
std::string filename = node->property(X_("Filename"))->value();
if (filename.at(0) != G_DIR_SEPARATOR) {
@@ -416,7 +416,7 @@ ExportVideoDialog::launch_export ()
cancel_button->hide();
transcode_button.hide();
pbar.set_size_request(300,-1);
- pbar.set_text(_("Exporting Audio.."));
+ pbar.set_text(_("Exporting Audio..."));
progress_box->show();
aborted = false;
twopass = twopass_checkbox.get_active();
@@ -541,7 +541,7 @@ ExportVideoDialog::launch_export ()
Gtk::Dialog::response(RESPONSE_CANCEL);
return;
}
- pbar.set_text (_("Encoding Video.."));
+ pbar.set_text (_("Encoding Video..."));
encode_pass(1);
}
--
1.8.1.2
|
|
|
applied as 3.2-4-g2b90a57 |
|
|
now in git |
|
|
Issue has been closed automatically, by Trigger Close Plugin. Feel free to re-open with additional information if you think the issue is not resolved. |
| Date Modified | Username | Field | Change |
|---|---|---|---|
| 2013-06-13 23:52 | prokoudine | New Issue | |
| 2013-06-13 23:52 | prokoudine | File Added: 0001-Fix-the-spelling-and-abstract-the-program-name.patch | |
| 2013-06-14 00:11 | x42 | Note Added: 0014990 | |
| 2013-06-14 00:11 | x42 | Status | new => closed |
| 2013-06-14 00:11 | x42 | Resolution | open => fixed |
| 2013-06-14 01:32 | paul | Note Added: 0014993 | |
| 2013-06-14 01:32 | paul | Status | closed => resolved |
| 2013-06-14 01:32 | paul | Assigned To | => paul |
| 2020-04-19 20:16 | system | Note Added: 0023242 | |
| 2020-04-19 20:16 | system | Status | resolved => closed |