diff --git a/crashreports/crashreporter/CrashReportApp.cpp b/crashreports/crashreporter/CrashReportApp.cpp index 16f0a64eb..214181517 100644 --- a/crashreports/crashreporter/CrashReportApp.cpp +++ b/crashreports/crashreporter/CrashReportApp.cpp @@ -8,6 +8,8 @@ #include #include #include +#include +#include #include "google_breakpad/processor/basic_source_line_resolver.h" #include "google_breakpad/processor/minidump_processor.h" @@ -91,6 +93,8 @@ namespace #endif +constexpr bool CrashReportAppHasUserComment = false; + IMPLEMENT_APP(CrashReportApp); namespace { @@ -287,7 +291,8 @@ namespace auto buttonsLayout = new wxBoxSizer(wxHORIZONTAL); wxTextCtrl* commentCtrl = nullptr; - if (onSend != nullptr) + + if (onSend != nullptr && CrashReportAppHasUserComment) { mainLayout->AddSpacer(10); mainLayout->Add(new wxStaticText(dialog, wxID_ANY, _("Comments")), wxSizerFlags().Border(wxALL)); @@ -298,8 +303,45 @@ namespace mainLayout->Add(commentCtrl, wxSizerFlags().Border(wxALL).Expand()); } - if (onSend != nullptr && commentCtrl != nullptr) + if (onSend != nullptr) { + /* i18n-hint: %s will be replaced with "our Privacy Policy" */ + const wxString translatedText = _("See %s for more info."); + + /* i18n-hint: Title of hyperlink to the privacy policy. This is an + object of "See". */ + const wxString translatedLink = _("our Privacy Policy"); + + const size_t placeholderPosition = translatedText.Find(wxT("%s")); + + if (placeholderPosition != wxString::npos) + { + auto privacyPolicyLayout = new wxWrapSizer(); + + privacyPolicyLayout->Add( + new wxStaticText(dialog, wxID_ANY, translatedText.substr(0, placeholderPosition)), + wxSizerFlags().Proportion(0).Border(wxUP | wxDOWN)); + + privacyPolicyLayout->Add( + new wxHyperlinkCtrl( + dialog, wxID_ANY, translatedLink, + "https://www.audacityteam.org/about/desktop-privacy-notice/"), + wxSizerFlags().Proportion(0).Border(wxUP | wxDOWN)); + + if (placeholderPosition + 2 < translatedText.Length()) + { + privacyPolicyLayout->Add( + new wxStaticText( + dialog, wxID_ANY, + translatedText.substr(placeholderPosition + 2)), + wxSizerFlags().Proportion(1).Border(wxUP | wxDOWN)); + } + + mainLayout->Add( + privacyPolicyLayout, wxSizerFlags().Border(wxALL)); + } + + auto dontSendButton = new wxButton(dialog, wxID_ANY, XC("&Don't send", "crash reporter button")); auto sendButton = new wxButton(dialog, wxID_ANY, XC("&Send", "crash reporter button")); @@ -308,8 +350,13 @@ namespace dialog->Close(true); }); sendButton->Bind(wxEVT_BUTTON, [dialog, commentCtrl, onSend](wxCommandEvent&) - { - if (onSend(commentCtrl->GetValue())) + { + const wxString comment = + commentCtrl != nullptr ? + commentCtrl->GetValue() : + wxString {}; + + if (onSend(comment)) { dialog->Close(true); } diff --git a/locale/de.po b/locale/de.po index c12d161c0..363227c45 100644 --- a/locale/de.po +++ b/locale/de.po @@ -27,7 +27,7 @@ msgstr "" "Project-Id-Version: audacity 3.0.3\n" "Report-Msgid-Bugs-To: audacity-translation@lists.sourceforge.net\n" "POT-Creation-Date: 2021-07-15 12:48-0400\n" -"PO-Revision-Date: 2021-06-10 20:28+0200\n" +"PO-Revision-Date: 2021-07-17 10:17+0200\n" "Last-Translator: jhuffer \n" "Language-Team: German (http://www.transifex.com/klyok/audacity/language/de/)\n" "Language: de\n" @@ -856,7 +856,7 @@ msgstr "Unterstützung für extreme Änderung von Tonhöhe und Tempo" #: src/AboutDialog.cpp msgctxt "about dialog" msgid "Legal" -msgstr "" +msgstr "Rechtliches" #: src/AboutDialog.cpp msgid "GPL License" @@ -866,24 +866,24 @@ msgstr "GPL-Lizenz" #: src/AboutDialog.cpp msgctxt "about dialog" msgid "PRIVACY POLICY" -msgstr "" +msgstr "DATENSCHUTZ-BESTIMMUNGEN" #: src/AboutDialog.cpp msgid "App update checking and error reporting require network access. These features are optional." -msgstr "" +msgstr "Für die Überprüfung auf App-Aktualisierungen und die Fehlerberichterstattung ist Netzwerkzugriff erforderlich. Diese Funktionen sind optional." #. i18n-hint: %s will be replaced with "our Privacy Policy" #: src/AboutDialog.cpp src/prefs/ApplicationPrefs.cpp #: src/update/UpdateNoticeDialog.cpp -#, fuzzy, c-format +#, c-format msgid "See %s for more info." -msgstr "Eine oder mehrere Dateien wählen" +msgstr "Lesen Sie %s für weitere Informationen." #. i18n-hint: Title of hyperlink to the privacy policy. This is an object of "See". #: src/AboutDialog.cpp src/prefs/ApplicationPrefs.cpp #: src/update/UpdateNoticeDialog.cpp msgid "our Privacy Policy" -msgstr "" +msgstr "unsere Datenschutz-Bestimmungen" #: src/AdornedRulerPanel.cpp msgid "Timeline actions disabled during recording" @@ -2675,9 +2675,9 @@ msgid "Specify New Filename:" msgstr "Neuen Dateinamen auswählen:" #: src/FileNames.cpp -#, fuzzy, c-format +#, c-format msgid "Directory %s does not have write permissions" -msgstr "Verzeichnis %s existiert nicht. Anlegen?" +msgstr "Verzeichnis %s hat keine Schreibberechtigungen" #: src/FreqWindow.cpp msgid "Frequency Analysis" @@ -4019,7 +4019,7 @@ msgid "" msgstr "" "Dieses Projekt wurde mit einer neueren Version von Audacity erstellt.\n" "\n" -"Sie müssen upgraden, um es öffnen zu können" +"Sie müssen upgraden, um es öffnen zu können." #: src/ProjectFileIO.cpp msgid "Unable to initialize the project file" @@ -14802,25 +14802,23 @@ msgid "%s %2.0f%% complete. Click to change task focal point." msgstr "%s %2.0f%% erledigt. Klicken um Fokus der Aufgabe zu ändern." #: src/prefs/ApplicationPrefs.cpp -#, fuzzy msgid "Preferences for Application" -msgstr "Einstellungen für Qualität" +msgstr "Einstellungen für Anwendung" #. i18n-hint: Title for the update notifications panel in the preferences dialog. #: src/prefs/ApplicationPrefs.cpp msgid "Update notifications" -msgstr "" +msgstr "Aktualisierungsbenachrichtigungen" #. i18n-hint: Check-box title that configures periodic updates checking. #: src/prefs/ApplicationPrefs.cpp -#, fuzzy msgctxt "application preferences" msgid "&Check for updates" -msgstr "Auf Aktualisierungen &prüfen..." +msgstr "Auf Aktualisierungen &prüfen" #: src/prefs/ApplicationPrefs.cpp msgid "App update checking requires network access. In order to protect your privacy, Audacity does not store any personal information." -msgstr "" +msgstr "Für die Überprüfung auf App-Aktualisierungen ist Netzwerkzugriff erforderlich. Um Ihre Privatsphäre zu schützen, speichert Audacity keine persönlichen Informationen." #: src/prefs/BatchPrefs.cpp src/prefs/BatchPrefs.h msgid "Batch" @@ -14873,7 +14871,6 @@ msgstr "&Gerät:" #. i18n-hint: modifier as in "Recording preferences", not progressive verb #: src/prefs/DevicePrefs.cpp src/prefs/RecordingPrefs.cpp #: src/prefs/RecordingPrefs.h -#, fuzzy msgctxt "preference" msgid "Recording" msgstr "Aufnahme" @@ -17990,31 +17987,30 @@ msgstr "Der Download-Link von Audacity kann nicht geöffnet werden." #. i18n-hint: Title of the app update notice dialog. #: src/update/UpdateNoticeDialog.cpp msgid "App update checking" -msgstr "" +msgstr "Prüfen auf App-Aktualisierungen" #: src/update/UpdateNoticeDialog.cpp msgid "To stay up to date, you will receive an in-app notification whenever there is a new version of Audacity available to download." -msgstr "" +msgstr "Um aktuell zu bleiben, erhalten Sie eine Benachrichtigung in der App, sobald eine neue Version von Audacity zum Download bereit steht." #: src/update/UpdateNoticeDialog.cpp msgid "In order to protect your privacy, Audacity does not collect any personal information. However, app update checking does require network access." -msgstr "" +msgstr "Um Ihre Privatsphäre zu schützen, sammelt Audacity keine persönlichen Informationen. Das Prüfen auf App-Aktualisierungen erfordert jedoch Netzwerkzugriff." #: src/update/UpdateNoticeDialog.cpp #, c-format msgid "You can turn off app update checking at any time in %s." -msgstr "" +msgstr "Sie können die Überprüfung auf App-Aktualisierungen jederzeit in %s abschalten." #. i18n-hint: Title of the app update notice dialog. #: src/update/UpdateNoticeDialog.cpp msgid "App updates" -msgstr "" +msgstr "App-Aktualisierungen" #. i18n-hint: a page in the Preferences dialog; use same name #: src/update/UpdateNoticeDialog.cpp -#, fuzzy msgid "Preferences > Application" -msgstr "Einstellungen für Qualität" +msgstr "Einstellungen > Anwendung" #: src/update/UpdatePopupDialog.cpp msgctxt "update dialog" @@ -18626,28 +18622,25 @@ msgstr "Schließen bestätigen" #. i18n-hint: %s is replaced with a directory path. #: src/widgets/UnwritableLocationErrorDialog.cpp -#, fuzzy, c-format +#, c-format msgid "Unable to write files to directory: %s." -msgstr "Konnte die Voreinstellung von \"%s\" nicht lesen" +msgstr "Konnte keine Dateien in das Verzeichnis %s schreiben." #. i18n-hint: This message describes the error in the Error dialog. #: src/widgets/UnwritableLocationErrorDialog.cpp msgid "Please check that the directory exists, has the necessary permissions, and the drive isn't full." -msgstr "" +msgstr "Bitte überprüfen Sie, ob das Verzeichnis existiert, die notwendigen Berechtigungen hat und das Laufwerk nicht voll ist." #. i18n-hint: %s is replaced with 'Preferences > Directories'. #: src/widgets/UnwritableLocationErrorDialog.cpp -#, fuzzy, c-format +#, c-format msgid "You can change the directory in %s." -msgstr "" -"Das Verzeichnis konnte nicht erstellt werden:\n" -" %s" +msgstr "Sie können das Verzeichnis unter %s ändern." #. i18n-hint: Hyperlink title that opens Preferences dialog on Directories page. #: src/widgets/UnwritableLocationErrorDialog.cpp -#, fuzzy msgid "Preferences > Directories" -msgstr "Einstellungen für Verzeichnisse" +msgstr "Einstellungen > Verzeichnisse" #: src/widgets/Warning.cpp msgid "Don't show this warning again" diff --git a/locale/el.po b/locale/el.po index 0515defa7..3fd8f5039 100644 --- a/locale/el.po +++ b/locale/el.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: audacity 3.0.3\n" "Report-Msgid-Bugs-To: audacity-translation@lists.sourceforge.net\n" "POT-Creation-Date: 2021-07-15 12:48-0400\n" -"PO-Revision-Date: 2021-06-12 13:36+0300\n" +"PO-Revision-Date: 2021-07-17 12:32+0300\n" "Last-Translator: Dimitris Spingos (Δημήτρης Σπίγγος) \n" "Language-Team: team@lists.gnome.gr\n" "Language: el\n" @@ -842,7 +842,7 @@ msgstr "Υποστήριξη ακραίας αλλαγής τόνου και ρ #: src/AboutDialog.cpp msgctxt "about dialog" msgid "Legal" -msgstr "" +msgstr "Νομικά" #: src/AboutDialog.cpp msgid "GPL License" @@ -852,24 +852,24 @@ msgstr "Άδεια GPL" #: src/AboutDialog.cpp msgctxt "about dialog" msgid "PRIVACY POLICY" -msgstr "" +msgstr "ΠΟΛΙΤΙΚΗ ΑΠΟΡΡΗΤΟΥ" #: src/AboutDialog.cpp msgid "App update checking and error reporting require network access. These features are optional." -msgstr "" +msgstr "Ο έλεγχος ενημέρωσης της εφαρμογής και η αναφορά σφαλμάτων απαιτούν πρόσβαση στο διαδίκτυο. Αυτά τα χαρακτηριστικά είναι προαιρετικά." #. i18n-hint: %s will be replaced with "our Privacy Policy" #: src/AboutDialog.cpp src/prefs/ApplicationPrefs.cpp #: src/update/UpdateNoticeDialog.cpp -#, fuzzy, c-format +#, c-format msgid "See %s for more info." -msgstr "Επέλεξε ένα ή περισσότερα αρχεία" +msgstr "Δείτε το% s για περισσότερες πληροφορίες." #. i18n-hint: Title of hyperlink to the privacy policy. This is an object of "See". #: src/AboutDialog.cpp src/prefs/ApplicationPrefs.cpp #: src/update/UpdateNoticeDialog.cpp msgid "our Privacy Policy" -msgstr "" +msgstr "η πολιτική απορρήτου μας" #: src/AdornedRulerPanel.cpp msgid "Timeline actions disabled during recording" @@ -2655,9 +2655,9 @@ msgid "Specify New Filename:" msgstr "Ορίστε ένα νέο όνομα αρχείου:" #: src/FileNames.cpp -#, fuzzy, c-format +#, c-format msgid "Directory %s does not have write permissions" -msgstr "Ο φάκελος %s δεν υπάρχει. Να δημιουργηθεί;" +msgstr "Ο κατάλογος% s δεν έχει δικαιώματα εγγραφής" #: src/FreqWindow.cpp msgid "Frequency Analysis" @@ -14813,25 +14813,23 @@ msgid "%s %2.0f%% complete. Click to change task focal point." msgstr "Ολοκληρώθηκε το %s %2.0f%%. Πατήστε για να αλλάξετε εργασία εστιακού σημείου." #: src/prefs/ApplicationPrefs.cpp -#, fuzzy msgid "Preferences for Application" -msgstr "Προτιμήσεις για" +msgstr "Προτιμήσεις για την εφαρμογή" #. i18n-hint: Title for the update notifications panel in the preferences dialog. #: src/prefs/ApplicationPrefs.cpp msgid "Update notifications" -msgstr "" +msgstr "Ειδοποιήσει ενημέρωσης" #. i18n-hint: Check-box title that configures periodic updates checking. #: src/prefs/ApplicationPrefs.cpp -#, fuzzy msgctxt "application preferences" msgid "&Check for updates" -msgstr "Έ&λεγχος για ενημερώσεις..." +msgstr "Έ&λεγχος για ενημερώσεις" #: src/prefs/ApplicationPrefs.cpp msgid "App update checking requires network access. In order to protect your privacy, Audacity does not store any personal information." -msgstr "" +msgstr "Ο έλεγχος ενημέρωσης της εφαρμογής απαιτεί πρόσβαση στο διαδίκτυο. Προκειμένου να προστατευθεί το απόρρητό σας, το Audacity δεν αποθηκεύει προσωπικές πληροφορίες." #: src/prefs/BatchPrefs.cpp src/prefs/BatchPrefs.h msgid "Batch" @@ -14884,7 +14882,6 @@ msgstr "&Συσκευή:" #. i18n-hint: modifier as in "Recording preferences", not progressive verb #: src/prefs/DevicePrefs.cpp src/prefs/RecordingPrefs.cpp #: src/prefs/RecordingPrefs.h -#, fuzzy msgctxt "preference" msgid "Recording" msgstr "Ηχογράφηση" @@ -18000,31 +17997,30 @@ msgstr "Αδυναμία ανοίγματος του συνδέσμου λήψη #. i18n-hint: Title of the app update notice dialog. #: src/update/UpdateNoticeDialog.cpp msgid "App update checking" -msgstr "" +msgstr "Έλεγχος ενημέρωσης εφαρμογής" #: src/update/UpdateNoticeDialog.cpp msgid "To stay up to date, you will receive an in-app notification whenever there is a new version of Audacity available to download." -msgstr "" +msgstr "Για να μείνετε ενημερωμένοι, θα λαμβάνετε μια ειδοποίηση στην εφαρμογή όποτε υπάρχει μια νέα έκδοση του Audacity διαθέσιμη για λήψη." #: src/update/UpdateNoticeDialog.cpp msgid "In order to protect your privacy, Audacity does not collect any personal information. However, app update checking does require network access." -msgstr "" +msgstr "Προκειμένου να προστατευθεί το απόρρητό σας, το Audacity δεν συλλέγει προσωπικές πληροφορίες. Ωστόσο, ο έλεγχος ενημερώσεων της εφαρμογής απαιτεί πρόσβαση στο διαδίκτυο." #: src/update/UpdateNoticeDialog.cpp #, c-format msgid "You can turn off app update checking at any time in %s." -msgstr "" +msgstr "Μπορείτε να απενεργοποιήσετε τον έλεγχο ενημέρωσης της εφαρμογής ανά πάσα στιγμή στο %s." #. i18n-hint: Title of the app update notice dialog. #: src/update/UpdateNoticeDialog.cpp msgid "App updates" -msgstr "" +msgstr "Ενημερώσεις εφαρμογής" #. i18n-hint: a page in the Preferences dialog; use same name #: src/update/UpdateNoticeDialog.cpp -#, fuzzy msgid "Preferences > Application" -msgstr "Προτιμήσεις για" +msgstr "Προτιμήσεις > Εφαρμογή" #: src/update/UpdatePopupDialog.cpp msgctxt "update dialog" @@ -18638,28 +18634,25 @@ msgstr "Επιβεβαίωση κλεισίματος" #. i18n-hint: %s is replaced with a directory path. #: src/widgets/UnwritableLocationErrorDialog.cpp -#, fuzzy, c-format +#, c-format msgid "Unable to write files to directory: %s." -msgstr "Αδύνατη η ανάγνωση της προρύθμισης από το \"%s\"" +msgstr "Αδύνατη η εγγραφή αρχείων στον κατάλογο: % s." #. i18n-hint: This message describes the error in the Error dialog. #: src/widgets/UnwritableLocationErrorDialog.cpp msgid "Please check that the directory exists, has the necessary permissions, and the drive isn't full." -msgstr "" +msgstr "Βεβαιωθείτε ότι ο κατάλογος υπάρχει, έχει τα απαραίτητα δικαιώματα και ότι η μονάδα δεν είναι πλήρης." #. i18n-hint: %s is replaced with 'Preferences > Directories'. #: src/widgets/UnwritableLocationErrorDialog.cpp -#, fuzzy, c-format +#, c-format msgid "You can change the directory in %s." -msgstr "" -"Αδυναμία δημιουργίας του φακέλου:\n" -" %s" +msgstr "Μπορείτε να αλλάξετε τον κατάλογο σε % s." #. i18n-hint: Hyperlink title that opens Preferences dialog on Directories page. #: src/widgets/UnwritableLocationErrorDialog.cpp -#, fuzzy msgid "Preferences > Directories" -msgstr "Προτιμήσεις καταλόγων" +msgstr "Προτιμήσεις > Κατάλογοι" #: src/widgets/Warning.cpp msgid "Don't show this warning again" diff --git a/locale/es.po b/locale/es.po index b961cbf86..56423b736 100644 --- a/locale/es.po +++ b/locale/es.po @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: audacity 3.0.3\n" "Report-Msgid-Bugs-To: audacity-translation@lists.sourceforge.net\n" "POT-Creation-Date: 2021-07-15 12:48-0400\n" -"PO-Revision-Date: 2021-06-14 11:19+0100\n" +"PO-Revision-Date: 2021-07-18 23:23+0100\n" "Last-Translator: Antonio Paniagua Navarro \n" "Language-Team: Spanish \n" "Language: es\n" @@ -37,8 +37,12 @@ msgstr "Informe de errores de Audacity" #: crashreports/crashreporter/CrashReportApp.cpp #: src/widgets/ErrorReportDialog.cpp -msgid "Click \"Send\" to submit the report to Audacity. This information is collected anonymously." -msgstr "Haga clic en \"Enviar\" para remitir el informe a Audacity. La información que se recopila es anónima." +msgid "" +"Click \"Send\" to submit the report to Audacity. This information is" +" collected anonymously." +msgstr "" +"Haga clic en \"Enviar\" para remitir el informe a Audacity. La información" +" que se recopila es anónima." #: crashreports/crashreporter/CrashReportApp.cpp #: src/widgets/ErrorReportDialog.cpp @@ -229,7 +233,9 @@ msgstr "Cargar secuencia Nyquist" #: modules/mod-nyq-bench/NyqBench.cpp msgid "Nyquist scripts (*.ny)|*.ny|Lisp scripts (*.lsp)|*.lsp|All files|*" -msgstr "Secuencia Nyquist (*.ny)|*.ny|Secuencia Lisp (*.lsp)|*.lsp|Todos los archivos|*" +msgstr "" +"Secuencia Nyquist (*.ny)|*.ny|Secuencia Lisp (*.lsp)|*.lsp|Todos los" +" archivos|*" #: modules/mod-nyq-bench/NyqBench.cpp msgid "Script was not saved." @@ -269,8 +275,10 @@ msgid "(C) 2009 by Leland Lucius" msgstr "(C) 2009 por Leland Lucius" #: modules/mod-nyq-bench/NyqBench.cpp -msgid "External Audacity module which provides a simple IDE for writing effects." -msgstr "Modulo externo de Audacity que proporciona un IDE sencillo para crear efectos." +msgid "" +"External Audacity module which provides a simple IDE for writing effects." +msgstr "" +"Modulo externo de Audacity que proporciona un IDE sencillo para crear efectos." #: modules/mod-nyq-bench/NyqBench.cpp msgid "Nyquist Effect Workbench" @@ -568,8 +576,12 @@ msgstr "Aceptar" #. second %s will be "volunteers", fourth "available" #: src/AboutDialog.cpp #, c-format -msgid "%s is a free program written by a worldwide team of %s. %s is %s for Windows, Mac, and GNU/Linux (and other Unix-like systems)." -msgstr "%s es una aplicación libre, escrita por un equipo de %s. Audacity está %s para Windows, Mac y GNU/Linux (y otros sistemas operativos tipo Unix)." +msgid "" +"%s is a free program written by a worldwide team of %s. %s is %s for Windows," +" Mac, and GNU/Linux (and other Unix-like systems)." +msgstr "" +"%s es una aplicación libre, escrita por un equipo de %s. Audacity está %s" +" para Windows, Mac y GNU/Linux (y otros sistemas operativos tipo Unix)." #. i18n-hint: substitutes into "a worldwide team of %s" #: src/AboutDialog.cpp @@ -584,8 +596,13 @@ msgstr "disponible" #. i18n-hint first and third %s will be "forum", second "wiki" #: src/AboutDialog.cpp #, c-format -msgid "If you find a bug or have a suggestion for us, please write, in English, to our %s. For help, view the tips and tricks on our %s or visit our %s." -msgstr "Si encuentra algún error o tiene alguna sugerencia escríbanos en inglés a nuestro %s. Para obtener ayuda consulte los consejos y trucos de nuestra %s o visite nuestro %s." +msgid "" +"If you find a bug or have a suggestion for us, please write, in English, to" +" our %s. For help, view the tips and tricks on our %s or visit our %s." +msgstr "" +"Si encuentra algún error o tiene alguna sugerencia escríbanos en inglés a" +" nuestro %s. Para obtener ayuda consulte los consejos y trucos de nuestra %s" +" o visite nuestro %s." #. i18n-hint substitutes into "write to our %s" #: src/AboutDialog.cpp @@ -620,8 +637,12 @@ msgstr "

" #. i18n-hint: The program's name substitutes for %s #: src/AboutDialog.cpp #, c-format -msgid "%s the free, open source, cross-platform software for recording and editing sounds." -msgstr "%s es software libre, de código abierto y multiplataforma para grabación y edición de sonido." +msgid "" +"%s the free, open source, cross-platform software for recording and editing" +" sounds." +msgstr "" +"%s es software libre, de código abierto y multiplataforma para grabación y" +" edición de sonido." #: src/AboutDialog.cpp msgid "Credits" @@ -645,7 +666,8 @@ msgstr "Eméritos:" #: src/AboutDialog.cpp #, c-format msgid "Distinguished %s Team members, not currently active" -msgstr "Miembros destacados del equipo de %s que actualmente no están en activo" +msgstr "" +"Miembros destacados del equipo de %s que actualmente no están en activo" #: src/AboutDialog.cpp msgid "Contributors" @@ -835,7 +857,7 @@ msgstr "Compatibilidad con cambio extremo de tono y ritmo" #: src/AboutDialog.cpp msgctxt "about dialog" msgid "Legal" -msgstr "" +msgstr "Información legal" #: src/AboutDialog.cpp msgid "GPL License" @@ -845,24 +867,28 @@ msgstr "Licencia GPL" #: src/AboutDialog.cpp msgctxt "about dialog" msgid "PRIVACY POLICY" -msgstr "" +msgstr "Política de privacidad" #: src/AboutDialog.cpp -msgid "App update checking and error reporting require network access. These features are optional." +msgid "" +"App update checking and error reporting require network access. These" +" features are optional." msgstr "" +"La búsqueda de actualizaciones y los informes de errores necesitan acceso a" +" la red. Estas características son opcionales." #. i18n-hint: %s will be replaced with "our Privacy Policy" #: src/AboutDialog.cpp src/prefs/ApplicationPrefs.cpp #: src/update/UpdateNoticeDialog.cpp -#, fuzzy, c-format +#, c-format msgid "See %s for more info." -msgstr "Seleccione uno o más archivos" +msgstr "Consulte %s para obtener más información." #. i18n-hint: Title of hyperlink to the privacy policy. This is an object of "See". #: src/AboutDialog.cpp src/prefs/ApplicationPrefs.cpp #: src/update/UpdateNoticeDialog.cpp msgid "our Privacy Policy" -msgstr "" +msgstr "nuestra Política de Privacidad" #: src/AdornedRulerPanel.cpp msgid "Timeline actions disabled during recording" @@ -904,7 +930,9 @@ msgstr "Haga clic y arrastre para comenzar la reproducción por desplazamiento" #. #: src/AdornedRulerPanel.cpp msgid "Click & move to Scrub. Click & drag to Seek." -msgstr "Clic y mover para reproducción por desplazamiento. Clic y arrastrar para buscar." +msgstr "" +"Clic y mover para reproducción por desplazamiento. Clic y arrastrar para" +" buscar." #. i18n-hint: These commands assist the user in finding a sound by ear. ... #. "Scrubbing" is variable-speed playback, ... @@ -928,7 +956,8 @@ msgstr "Arrastre para buscar. Suelte para detener la búsqueda." #: src/AdornedRulerPanel.cpp msgid "Drag to Seek. Release and move to Scrub." -msgstr "Arrastre para buscar. Suelte y desplace para reproducir por desplazamiento." +msgstr "" +"Arrastre para buscar. Suelte y desplace para reproducir por desplazamiento." #: src/AdornedRulerPanel.cpp msgid "Move to Scrub. Drag to Seek." @@ -1001,11 +1030,13 @@ msgstr "Fallo" msgid "" "Reset Preferences?\n" "\n" -"This is a one-time question, after an 'install' where you asked to have the Preferences reset." +"This is a one-time question, after an 'install' where you asked to have the" +" Preferences reset." msgstr "" "¿Desea restablecer las preferencias?\n" "\n" -"Esto sólo se preguntará esta vez, después de una instalación en la que se indicó que se restableciesen las preferencias." +"Esto sólo se preguntará esta vez, después de una instalación en la que se" +" indicó que se restableciesen las preferencias." #: src/AudacityApp.cpp msgid "Reset Audacity Preferences" @@ -1024,7 +1055,8 @@ msgstr "" #: src/AudacityApp.cpp msgid "SQLite library failed to initialize. Audacity cannot continue." -msgstr "Fallo al inicializar la biblioteca SQLite. Audacity no se puede ejecutar." +msgstr "" +"Fallo al inicializar la biblioteca SQLite. Audacity no se puede ejecutar." #: src/AudacityApp.cpp msgid "Block size must be within 256 to 100000000\n" @@ -1063,11 +1095,14 @@ msgstr "&Archivo" #: src/AudacityApp.cpp msgid "" "Audacity could not find a safe place to store temporary files.\n" -"Audacity needs a place where automatic cleanup programs won't delete the temporary files.\n" +"Audacity needs a place where automatic cleanup programs won't delete the" +" temporary files.\n" "Please enter an appropriate directory in the preferences dialog." msgstr "" -"Audacity no puede encontrar un lugar donde almacenar los archivos temporales.\n" -"Se necesita un lugar donde las aplicaciones de limpieza automática no borren los archivos temporales.\n" +"Audacity no puede encontrar un lugar donde almacenar los archivos" +" temporales.\n" +"Se necesita un lugar donde las aplicaciones de limpieza automática no borren" +" los archivos temporales.\n" "Indique una carpeta apropiada en la ventana de preferencias." #: src/AudacityApp.cpp @@ -1075,12 +1110,17 @@ msgid "" "Audacity could not find a place to store temporary files.\n" "Please enter an appropriate directory in the preferences dialog." msgstr "" -"Audacity no puede encontrar un lugar donde almacenar los archivos temporales.\n" +"Audacity no puede encontrar un lugar donde almacenar los archivos" +" temporales.\n" "Indique una carpeta apropiada en la ventana de preferencias." #: src/AudacityApp.cpp -msgid "Audacity is now going to exit. Please launch Audacity again to use the new temporary directory." -msgstr "Audacity se cerrará. Ejecute Audacity de nuevo para usar la nueva carpeta temporal." +msgid "" +"Audacity is now going to exit. Please launch Audacity again to use the new" +" temporary directory." +msgstr "" +"Audacity se cerrará. Ejecute Audacity de nuevo para usar la nueva carpeta" +" temporal." #: src/AudacityApp.cpp msgid "" @@ -1088,7 +1128,8 @@ msgid "" "data loss or cause your system to crash.\n" "\n" msgstr "" -"Ejecutar dos copias de Audacity simultáneamente puede provocar pérdidas de datos o provocar un bloqueo del sistema.\n" +"Ejecutar dos copias de Audacity simultáneamente puede provocar pérdidas de" +" datos o provocar un bloqueo del sistema.\n" "\n" #: src/AudacityApp.cpp @@ -1109,7 +1150,8 @@ msgstr "Error al bloquear la carpeta temporal" #: src/AudacityApp.cpp msgid "The system has detected that another copy of Audacity is running.\n" -msgstr "El sistema ha detectado que ya se está ejecutando otra copia de Audacity.\n" +msgstr "" +"El sistema ha detectado que ya se está ejecutando otra copia de Audacity.\n" #: src/AudacityApp.cpp msgid "" @@ -1250,21 +1292,28 @@ msgid "" "\n" "\t%s\n" "\n" -"This could be caused by many reasons, but the most likely are that the disk is full or you do not have write permissions to the file. More information can be obtained by clicking the help button below.\n" +"This could be caused by many reasons, but the most likely are that the disk" +" is full or you do not have write permissions to the file. More information" +" can be obtained by clicking the help button below.\n" "\n" "You can attempt to correct the issue and then click \"Retry\" to continue.\n" "\n" -"If you choose to \"Quit Audacity\", your project may be left in an unsaved state which will be recovered the next time you open it." +"If you choose to \"Quit Audacity\", your project may be left in an unsaved" +" state which will be recovered the next time you open it." msgstr "" "No se ha podido acceder al siguiente archivo de configuración:\n" "\n" "\t%s\n" "\n" -"Este error se puede producir por varios motivos, pero el más habitual es que el disco esté lleno o que no tenga permiso de escritura. Puede obtener más información haciendo clic en el botón de ayuda.\n" +"Este error se puede producir por varios motivos, pero el más habitual es que" +" el disco esté lleno o que no tenga permiso de escritura. Puede obtener más" +" información haciendo clic en el botón de ayuda.\n" "\n" -"Puede intentar corregir el problema y hacer clic en \"Reintentar\" para continuar.\n" +"Puede intentar corregir el problema y hacer clic en \"Reintentar\" para" +" continuar.\n" "\n" -"Si hace clic en \"Cerrar Audacity\" el proyecto puede quedar en un estado no guardado, en cuyo caso se intentará recuperar la próxima vez que se abra." +"Si hace clic en \"Cerrar Audacity\" el proyecto puede quedar en un estado no" +" guardado, en cuyo caso se intentará recuperar la próxima vez que se abra." #: src/AudacityFileConfig.cpp src/ShuttleGui.cpp src/commands/HelpCommand.cpp #: src/effects/Equalization.cpp src/export/Export.cpp src/menus/HelpMenus.cpp @@ -1366,8 +1415,12 @@ msgid "Out of memory!" msgstr "Sin memoria" #: src/AudioIO.cpp -msgid "Automated Recording Level Adjustment stopped. It was not possible to optimize it more. Still too high." -msgstr "Autoajuste de nivel de grabación detenido. No se pudo optimizar más. Aún es demasiado alto." +msgid "" +"Automated Recording Level Adjustment stopped. It was not possible to optimize" +" it more. Still too high." +msgstr "" +"Autoajuste de nivel de grabación detenido. No se pudo optimizar más. Aún es" +" demasiado alto." #: src/AudioIO.cpp #, c-format @@ -1375,8 +1428,12 @@ msgid "Automated Recording Level Adjustment decreased the volume to %f." msgstr "Autoajuste de nivel de grabación ha reducido el volumen a %f." #: src/AudioIO.cpp -msgid "Automated Recording Level Adjustment stopped. It was not possible to optimize it more. Still too low." -msgstr "Autoajuste de nivel de grabación detenido. No se pudo optimizar más. Aún es demasiado bajo." +msgid "" +"Automated Recording Level Adjustment stopped. It was not possible to optimize" +" it more. Still too low." +msgstr "" +"Autoajuste de nivel de grabación detenido. No se pudo optimizar más. Aún es" +" demasiado bajo." #: src/AudioIO.cpp #, c-format @@ -1384,17 +1441,28 @@ msgid "Automated Recording Level Adjustment increased the volume to %.2f." msgstr "Autoajuste de nivel de grabación ha incrementado el volumen a %2f." #: src/AudioIO.cpp -msgid "Automated Recording Level Adjustment stopped. The total number of analyses has been exceeded without finding an acceptable volume. Still too high." -msgstr "Autoajuste de nivel de grabación detenido. Se ha excedido el número total de análisis sin encontrar un volumen aceptable. Aún es demasiado alto." +msgid "" +"Automated Recording Level Adjustment stopped. The total number of analyses" +" has been exceeded without finding an acceptable volume. Still too high." +msgstr "" +"Autoajuste de nivel de grabación detenido. Se ha excedido el número total de" +" análisis sin encontrar un volumen aceptable. Aún es demasiado alto." #: src/AudioIO.cpp -msgid "Automated Recording Level Adjustment stopped. The total number of analyses has been exceeded without finding an acceptable volume. Still too low." -msgstr "Autoajuste de nivel de grabación detenido. Se ha excedido el número total de análisis sin encontrar un volumen aceptable. Aún es demasiado bajo." +msgid "" +"Automated Recording Level Adjustment stopped. The total number of analyses" +" has been exceeded without finding an acceptable volume. Still too low." +msgstr "" +"Autoajuste de nivel de grabación detenido. Se ha excedido el número total de" +" análisis sin encontrar un volumen aceptable. Aún es demasiado bajo." #: src/AudioIO.cpp #, c-format -msgid "Automated Recording Level Adjustment stopped. %.2f seems an acceptable volume." -msgstr "Autoajuste de nivel de grabación detenido. %.2f parece ser un volumen aceptable." +msgid "" +"Automated Recording Level Adjustment stopped. %.2f seems an acceptable volume." +msgstr "" +"Autoajuste de nivel de grabación detenido. %.2f parece ser un volumen" +" aceptable." #: src/AudioIOBase.cpp msgid "Stream is active ... unable to gather information.\n" @@ -1491,7 +1559,8 @@ msgstr "No se ha encontrado ningún dispositivo de reproducción para '%s'.\n" #: src/AudioIOBase.cpp msgid "Cannot check mutual sample rates without both devices.\n" -msgstr "No se puede comprobar las frecuencias de muestreo sin los dos dispositivos.\n" +msgstr "" +"No se puede comprobar las frecuencias de muestreo sin los dos dispositivos.\n" #: src/AudioIOBase.cpp #, c-format @@ -1570,7 +1639,8 @@ msgstr "Dispositivo de reproducción MIDI seleccionado: %d - %s\n" #: src/AudioIOBase.cpp #, c-format msgid "No MIDI playback device found for '%s'.\n" -msgstr "No se ha encontrado ningún dispositivo de reproducción MIDI para '%s'.\n" +msgstr "" +"No se ha encontrado ningún dispositivo de reproducción MIDI para '%s'.\n" #: src/AutoRecoveryDialog.cpp msgid "Automatic Crash Recovery" @@ -1578,13 +1648,16 @@ msgstr "Recuperación automática" #: src/AutoRecoveryDialog.cpp msgid "" -"The following projects were not saved properly the last time Audacity was run and can be automatically recovered.\n" +"The following projects were not saved properly the last time Audacity was run" +" and can be automatically recovered.\n" "\n" "After recovery, save the projects to ensure changes are written to disk." msgstr "" -"Algunos proyectos no se guardaron correctamente la última vez que se ejecutó Audacity y pueden ser recuperados automáticamente.\n" +"Algunos proyectos no se guardaron correctamente la última vez que se ejecutó" +" Audacity y pueden ser recuperados automáticamente.\n" "\n" -"Tras la recuperación, guarde los proyectos para asegurar que los cambios quedan almacenados." +"Tras la recuperación, guarde los proyectos para asegurar que los cambios" +" quedan almacenados." #: src/AutoRecoveryDialog.cpp msgid "Recoverable &projects" @@ -1625,7 +1698,8 @@ msgid "" msgstr "" "¿Está seguro de que descartar los proyectos seleccionados?\n" "\n" -"Haciendo clic en \"Sí\" se borrarán todos los proyectos seleccionados inmediatamente." +"Haciendo clic en \"Sí\" se borrarán todos los proyectos seleccionados" +" inmediatamente." #: src/BatchCommandDialog.cpp msgid "Select Command" @@ -2116,14 +2190,22 @@ msgstr "" #. i18n-hint: %s will be replaced by the name of an action, such as Normalize, Cut, Fade. #: src/CommonCommandFlags.cpp #, c-format -msgid "Select the audio for %s to use (for example, Cmd + A to Select All) then try again." -msgstr "Seleccione el audio que %s debe utilizar (por ejemplo, Cmd+A para seleccionar todo) e inténtelo de nuevo." +msgid "" +"Select the audio for %s to use (for example, Cmd + A to Select All) then try" +" again." +msgstr "" +"Seleccione el audio que %s debe utilizar (por ejemplo, Cmd+A para seleccionar" +" todo) e inténtelo de nuevo." #. i18n-hint: %s will be replaced by the name of an action, such as Normalize, Cut, Fade. #: src/CommonCommandFlags.cpp #, c-format -msgid "Select the audio for %s to use (for example, Ctrl + A to Select All) then try again." -msgstr "Seleccione el audio que %s debe utilizar (por ejemplo, Ctrl+A para seleccionar todo) e inténtelo de nuevo." +msgid "" +"Select the audio for %s to use (for example, Ctrl + A to Select All) then try" +" again." +msgstr "" +"Seleccione el audio que %s debe utilizar (por ejemplo, Ctrl+A para" +" seleccionar todo) e inténtelo de nuevo." #: src/CommonCommandFlags.cpp msgid "No Audio Selected" @@ -2135,16 +2217,19 @@ msgstr "No se ha seleccionado audio" msgid "" "Select the audio for %s to use.\n" "\n" -"1. Select audio that represents noise and use %s to get your 'noise profile'.\n" +"1. Select audio that represents noise and use %s to get your 'noise" +" profile'.\n" "\n" "2. When you have got your noise profile, select the audio you want to change\n" "and use %s to change that audio." msgstr "" "Seleccione el audio que %s debe utilizar.\n" "\n" -"1. Seleccione el audio que represente el ruido y que %s utilice para obtener el \"perfil de ruido\".\n" +"1. Seleccione el audio que represente el ruido y que %s utilice para obtener" +" el \"perfil de ruido\".\n" "\n" -"2. Cuando se haya generado el perfil de ruido seleccione el audio que quiere cambiar\n" +"2. Cuando se haya generado el perfil de ruido seleccione el audio que quiere" +" cambiar\n" " y utilice %s para modificar el audio." #: src/CommonCommandFlags.cpp @@ -2196,7 +2281,8 @@ msgstr "No se ha podido establecer el modo seguro en la conexión primaria a %s" #: src/DBConnection.cpp #, c-format msgid "Failed to set safe mode on checkpoint connection to %s" -msgstr "No se ha podido establecer el modo seguro en la conexión de control a %s" +msgstr "" +"No se ha podido establecer el modo seguro en la conexión de control a %s" #: src/DBConnection.cpp msgid "Checkpointing project" @@ -2221,7 +2307,8 @@ msgid "" msgstr "" "El disco está lleno.\n" "%s\n" -"Haga clic en el botón de ayuda para obtener recomendaciones sobre cómo liberar espacio." +"Haga clic en el botón de ayuda para obtener recomendaciones sobre cómo" +" liberar espacio." #: src/DBConnection.cpp #, c-format @@ -2278,8 +2365,10 @@ msgid "" msgstr "" "\n" "\n" -"Los archivos mostrados como MISSING han sido movidos o borrados y no se pueden copiar.\n" -"Para que sea posible copiarlos dentro del proyecto es necesario que los restaure a su posición original." +"Los archivos mostrados como MISSING han sido movidos o borrados y no se" +" pueden copiar.\n" +"Para que sea posible copiarlos dentro del proyecto es necesario que los" +" restaure a su posición original." #: src/Dependencies.cpp msgid "Project Dependencies" @@ -2354,20 +2443,25 @@ msgid "Missing" msgstr "Perdidos" #: src/Dependencies.cpp -msgid "If you proceed, your project will not be saved to disk. Is this what you want?" +msgid "" +"If you proceed, your project will not be saved to disk. Is this what you want?" msgstr "El proyecto no será guardado en el disco. ¿Es esto lo que desea hacer?" #: src/Dependencies.cpp msgid "" -"Your project is self-contained; it does not depend on any external audio files. \n" +"Your project is self-contained; it does not depend on any external audio" +" files. \n" "\n" "Some older Audacity projects may not be self-contained, and care \n" "is needed to keep their external dependencies in the right place.\n" "New projects will be self-contained and are less risky." msgstr "" -"Ahora el proyecto es independiente; no depende de ningún archivo de audio externo.\n" +"Ahora el proyecto es independiente; no depende de ningún archivo de audio" +" externo.\n" "\n" -"Algunos proyectos antiguos de Audacity pueden no ser independientes por que se debe tener precaución para mantener las dependencias externas en el lugar adecuado.\n" +"Algunos proyectos antiguos de Audacity pueden no ser independientes por que" +" se debe tener precaución para mantener las dependencias externas en el lugar" +" adecuado.\n" "Los nuevos proyectos serán independientes por lo que se corren menos riegos." #: src/Dependencies.cpp @@ -2453,7 +2547,8 @@ msgid "" "\n" "You may want to go back to Preferences > Libraries and re-configure it." msgstr "" -"FFmpeg fue configurado en Preferencias y cargado correctamente, pero esta vez Audacity no logró cargarlo al arrancar\n" +"FFmpeg fue configurado en Preferencias y cargado correctamente, pero esta vez" +" Audacity no logró cargarlo al arrancar\n" "\n" "Acceda a Preferencias > Bibliotecas para configurarlo de nuevo." @@ -2472,7 +2567,9 @@ msgstr "Localizar FFmpeg" #: src/FFmpeg.cpp #, c-format msgid "Audacity needs the file '%s' to import and export audio via FFmpeg." -msgstr "Audacity necesita el archivo '%s' para importar y exportar audio mediante FFmpeg." +msgstr "" +"Audacity necesita el archivo '%s' para importar y exportar audio mediante" +" FFmpeg." #: src/FFmpeg.cpp #, c-format @@ -2521,7 +2618,8 @@ msgstr "" "Audacity intentó utilizar FFmpeg para importar un archivo de audio,\n" "pero no se encontraron las bibliotecas necesarias.\n" "\n" -"Para usar las características de importación de FFmpeg, acceda a Editar > Preferencias > Bibliotecas\n" +"Para usar las características de importación de FFmpeg, acceda a Editar >" +" Preferencias > Bibliotecas\n" "y descargue o localice las bibliotecas FFmpeg." #: src/FFmpeg.cpp @@ -2554,7 +2652,9 @@ msgstr "Audacity ha fallado al leer de un archivo en %s." #: src/FileException.cpp #, c-format msgid "Audacity successfully wrote a file in %s but failed to rename it as %s." -msgstr "Audacity ha escrito correctamente un archivo en %s pero ha fallado al renombrarlo como %s." +msgstr "" +"Audacity ha escrito correctamente un archivo en %s pero ha fallado al" +" renombrarlo como %s." #: src/FileException.cpp #, c-format @@ -2565,7 +2665,8 @@ msgid "" msgstr "" "Audacity no ha podido escribir en un archivo.\n" "Tal vez %s no se pueda escribir o el disco esté lleno.\n" -"Haga clic en el botón de ayuda para obtener recomendaciones sobre cómo liberar espacio." +"Haga clic en el botón de ayuda para obtener recomendaciones sobre cómo" +" liberar espacio." #: src/FileException.h msgid "File Error" @@ -2579,11 +2680,14 @@ msgstr "Error (el archivo puede no haber sido escrito): %s" #: src/FileFormats.cpp msgid "&Copy uncompressed files into the project (safer)" -msgstr "&Copia el archivo de audio descomprimido dentro del proyecto (método más seguro)" +msgstr "" +"&Copia el archivo de audio descomprimido dentro del proyecto (método más" +" seguro)" #: src/FileFormats.cpp msgid "&Read uncompressed files from original location (faster)" -msgstr "Lee&r directamente desde el archivo de audio original (método más rápido)" +msgstr "" +"Lee&r directamente desde el archivo de audio original (método más rápido)" #: src/FileFormats.cpp msgid "&Copy all audio into project (safest)" @@ -2637,17 +2741,20 @@ msgid "%s files" msgstr "Archivos %s" #: src/FileNames.cpp -msgid "The specified filename could not be converted due to Unicode character use." -msgstr "El nombre de archivo indicado no puede ser convertido por el uso de caracteres Unicode." +msgid "" +"The specified filename could not be converted due to Unicode character use." +msgstr "" +"El nombre de archivo indicado no puede ser convertido por el uso de" +" caracteres Unicode." #: src/FileNames.cpp msgid "Specify New Filename:" msgstr "Indicar un nuevo nombre de archivo:" #: src/FileNames.cpp -#, fuzzy, c-format +#, c-format msgid "Directory %s does not have write permissions" -msgstr "La carpeta %s no existe. ¿Desea crearla?" +msgstr "La carpeta %s no tiene permiso de escritura" #: src/FreqWindow.cpp msgid "Frequency Analysis" @@ -2758,12 +2865,18 @@ msgstr "&Redibujar..." #: src/FreqWindow.cpp msgid "To plot the spectrum, all selected tracks must be the same sample rate." -msgstr "Para analizar el espectro, todas las pistas seleccionadas deberán tener la misma frecuencia de muestreo." +msgstr "" +"Para analizar el espectro, todas las pistas seleccionadas deberán tener la" +" misma frecuencia de muestreo." #: src/FreqWindow.cpp #, c-format -msgid "Too much audio was selected. Only the first %.1f seconds of audio will be analyzed." -msgstr "Se ha seleccionado demasiado audio. Sólo los primeros %.1f segundos de audio serán analizados." +msgid "" +"Too much audio was selected. Only the first %.1f seconds of audio will be" +" analyzed." +msgstr "" +"Se ha seleccionado demasiado audio. Sólo los primeros %.1f segundos de audio" +" serán analizados." #: src/FreqWindow.cpp msgid "Not enough data selected." @@ -2885,24 +2998,38 @@ msgid "No Local Help" msgstr "No hay ayuda local" #: src/HelpText.cpp -msgid "

The version of Audacity you are using is an Alpha test version." -msgstr "

La versión de Audacity que está utilizando es una versión Alpha de prueba." +msgid "" +"

The version of Audacity you are using is an Alpha test version." +msgstr "" +"

La versión de Audacity que está utilizando es una versión Alpha de" +" prueba." #: src/HelpText.cpp -msgid "

The version of Audacity you are using is a Beta test version." -msgstr "

La versión de Audacity que está utilizando es una versión Beta de prueba." +msgid "" +"

The version of Audacity you are using is a Beta test version." +msgstr "" +"

La versión de Audacity que está utilizando es una versión Beta de" +" prueba." #: src/HelpText.cpp msgid "Get the Official Released Version of Audacity" msgstr "Obtener la versión oficial de Audacity" #: src/HelpText.cpp -msgid "We strongly recommend that you use our latest stable released version, which has full documentation and support.

" -msgstr "Le recomendamos que utilice nuestra última versión estable publicada, que dispone de documentación completa y asistencia técnica.

" +msgid "" +"We strongly recommend that you use our latest stable released version, which" +" has full documentation and support.

" +msgstr "" +"Le recomendamos que utilice nuestra última versión estable publicada, que" +" dispone de documentación completa y asistencia técnica.

" #: src/HelpText.cpp -msgid "You can help us get Audacity ready for release by joining our [[https://www.audacityteam.org/community/|community]].


" -msgstr "Puede ayudarnos a preparar Audacity para su publicación uniéndose a nuestra [[https://www.audacityteam.org/community/|comunidad]].


" +msgid "" +"You can help us get Audacity ready for release by joining our" +" [[https://www.audacityteam.org/community/|community]].


" +msgstr "" +"Puede ayudarnos a preparar Audacity para su publicación uniéndose a nuestra" +" [[https://www.audacityteam.org/community/|comunidad]].


" #: src/HelpText.cpp msgid "How to get help" @@ -2914,37 +3041,89 @@ msgstr "Estos son nuestros métodos de ayuda:" #. i18n-hint: Preserve '[[help:Quick_Help|' as it's the name of a link. #: src/HelpText.cpp -msgid "[[help:Quick_Help|Quick Help]] - if not installed locally, [[https://manual.audacityteam.org/quick_help.html|view online]]" -msgstr "[[help:Quick_Help|Ayuda rápida]] Si no se encuentra instalada localmente [[https://manual.audacityteam.org/quick_help.html|usar la versión de Internet]])" +msgid "" +"[[help:Quick_Help|Quick Help]] - if not installed locally," +" [[https://manual.audacityteam.org/quick_help.html|view online]]" +msgstr "" +"[[help:Quick_Help|Ayuda rápida]] Si no se encuentra instalada localmente " +" [[https://manual.audacityteam.org/quick_help.html|usar la versión de" +" Internet]])" #. i18n-hint: Preserve '[[help:Main_Page|' as it's the name of a link. #: src/HelpText.cpp -msgid " [[help:Main_Page|Manual]] - if not installed locally, [[https://manual.audacityteam.org/|view online]]" -msgstr " [[help:Main_Page|Manual]] Si no se encuentra instalada localmente [[https://manual.audacityteam.org/|usar la versión de Internet]]" +msgid "" +" [[help:Main_Page|Manual]] - if not installed locally," +" [[https://manual.audacityteam.org/|view online]]" +msgstr "" +" [[help:Main_Page|Manual]] Si no se encuentra instalada localmente " +" [[https://manual.audacityteam.org/|usar la versión de Internet]]" #: src/HelpText.cpp -msgid " [[https://forum.audacityteam.org/|Forum]] - ask your question directly, online." -msgstr " [[https://forum.audacityteam.org/|Foro]] Realice su consulta directamente, en internet" +msgid "" +" [[https://forum.audacityteam.org/|Forum]] - ask your question directly," +" online." +msgstr "" +" [[https://forum.audacityteam.org/|Foro]] Realice su consulta directamente," +" en internet" #: src/HelpText.cpp -msgid "More: Visit our [[https://wiki.audacityteam.org/index.php|Wiki]] for tips, tricks, extra tutorials and effects plug-ins." -msgstr "Más: Consulte nuestro [[https://wiki.audacityteam.org/index.php|Wiki]] (los mejores trucos, consejos, tutoriales y complementos de efectos, en internet)" +msgid "" +"More: Visit our [[https://wiki.audacityteam.org/index.php|Wiki]] for" +" tips, tricks, extra tutorials and effects plug-ins." +msgstr "" +"Más: Consulte nuestro [[https://wiki.audacityteam.org/index.php|Wiki]]" +" (los mejores trucos, consejos, tutoriales y complementos de efectos, en" +" internet)" #: src/HelpText.cpp -msgid "Audacity can import unprotected files in many other formats (such as M4A and WMA, compressed WAV files from portable recorders and audio from video files) if you download and install the optional [[https://manual.audacityteam.org/man/faq_opening_and_saving_files.html#foreign| FFmpeg library]] to your computer." -msgstr "Audacity puede importar archivos no protegidos en muchos otros formatos (como M4A y WMA, archivos WAV comprimidos de grabadoras portátiles y audio de archivos de vídeo) con tan solo descargar e instalar la [[https://manual.audacityteam.org/man/faq_opening_and_saving_files.html#foreign| biblioteca FFmpeg]] opcional en su ordenador." +msgid "" +"Audacity can import unprotected files in many other formats (such as M4A and" +" WMA, compressed WAV files from portable recorders and audio from video" +" files) if you download and install the optional" +" [[https://manual.audacityteam.org/man/faq_opening_and_saving_files.html#forei" +"gn| FFmpeg library]] to your computer." +msgstr "" +"Audacity puede importar archivos no protegidos en muchos otros formatos (como" +" M4A y WMA, archivos WAV comprimidos de grabadoras portátiles y audio de" +" archivos de vídeo) con tan solo descargar e instalar la" +" [[https://manual.audacityteam.org/man/faq_opening_and_saving_files.html#forei" +"gn| biblioteca FFmpeg]] opcional en su ordenador." #: src/HelpText.cpp -msgid "You can also read our help on importing [[https://manual.audacityteam.org/man/playing_and_recording.html#midi|MIDI files]] and tracks from [[https://manual.audacityteam.org/man/faq_opening_and_saving_files.html#fromcd| audio CDs]]." -msgstr "También puede consultar nuestra ayuda sobre importación de [[https://manual.audacityteam.org/man/playing_and_recording.html#midi|#midi|archivos MIDI]] y pistas de [[https://manual.audacityteam.org/man/faq_opening_and_saving_files.html#fromcd|CD de audio]]." +msgid "" +"You can also read our help on importing [[https://manual.audacityteam.org/man/" +"playing_and_recording.html#midi|MIDI files]] and tracks from" +" [[https://manual.audacityteam.org/man/faq_opening_and_saving_files.html#fromc" +"d| audio CDs]]." +msgstr "" +"También puede consultar nuestra ayuda sobre importación de" +" [[https://manual.audacityteam.org/man/playing_and_recording.html#midi|#midi|a" +"rchivos MIDI]] y pistas de [[https://manual.audacityteam.org/man/faq_opening_" +"and_saving_files.html#fromcd|CD de audio]]." #: src/HelpText.cpp -msgid "The Manual does not appear to be installed. Please [[*URL*|view the Manual online]].

To always view the Manual online, change \"Location of Manual\" in Interface Preferences to \"From Internet\"." -msgstr "El manual no está instalado. Consulte [[*URL*|el contenido en Internet]]

Para poder ver siempre el manual en Internet cambie la opción \"Ubicación del manual\" en las
Preferencias del Interfaz a \"Desde Internet\"." +msgid "" +"The Manual does not appear to be installed. Please [[*URL*|view the Manual" +" online]].

To always view the Manual online, change \"Location of" +" Manual\" in Interface Preferences to \"From Internet\"." +msgstr "" +"El manual no está instalado. Consulte [[*URL*|el contenido en Internet]]
Para poder ver siempre el manual en Internet cambie la opción" +" \"Ubicación del manual\" en las
Preferencias del Interfaz a \"Desde" +" Internet\"." #: src/HelpText.cpp -msgid "The Manual does not appear to be installed. Please [[*URL*|view the Manual online]] or [[https://manual.audacityteam.org/man/unzipping_the_manual.html| download the Manual]].

To always view the Manual online, change \"Location of Manual\" in Interface Preferences to \"From Internet\"." -msgstr "El manual no está instalado. Consulte [[*URL*|el contenido en Internet]] o [[https://manual.audacityteam.org/man/unzipping_the_manual.html| descargue el manual completo]].

Para poder ver siempre el manual en Internet cambie la opción \"Ubicación del manual\" en las
Preferencias del Interfaz a \"Desde Internet\"." +msgid "" +"The Manual does not appear to be installed. Please [[*URL*|view the Manual" +" online]] or [[https://manual.audacityteam.org/man/unzipping_the_manual.html|" +" download the Manual]].

To always view the Manual online, change" +" \"Location of Manual\" in Interface Preferences to \"From Internet\"." +msgstr "" +"El manual no está instalado. Consulte [[*URL*|el contenido en Internet]] o" +" [[https://manual.audacityteam.org/man/unzipping_the_manual.html| descargue" +" el manual completo]].

Para poder ver siempre el manual en Internet" +" cambie la opción \"Ubicación del manual\" en las
Preferencias del" +" Interfaz a \"Desde Internet\"." #: src/HelpText.cpp msgid "Check Online" @@ -3123,8 +3302,12 @@ msgstr "Seleccione el idioma que desea utilizar:" #. * versions of language names. #: src/LangChoice.cpp #, c-format -msgid "The language you have chosen, %s (%s), is not the same as the system language, %s (%s)." -msgstr "El idioma que ha elegido, %s (%s), no es el predeterminado del sistema, %s (%s)." +msgid "" +"The language you have chosen, %s (%s), is not the same as the system" +" language, %s (%s)." +msgstr "" +"El idioma que ha elegido, %s (%s), no es el predeterminado del sistema, %s (" +"%s)." #: src/LangChoice.cpp src/effects/VST/VSTEffect.cpp #: src/widgets/FileDialog/gtk/FileDialogPrivate.cpp @@ -3483,7 +3666,8 @@ msgstr "Administrar complementos" #: src/PluginManager.cpp msgid "Select effects, click the Enable or Disable button, then click OK." -msgstr "Seleccione efectos, pulse Habilitar o Deshabilitar y confirme con Aceptar." +msgstr "" +"Seleccione efectos, pulse Habilitar o Deshabilitar y confirme con Aceptar." #. i18n-hint: This is before radio buttons selecting which effects to show #: src/PluginManager.cpp @@ -3659,7 +3843,9 @@ msgstr "" #: src/ProjectAudioManager.cpp src/menus/TransportMenus.cpp msgid "The tracks selected for recording must all have the same sampling rate" -msgstr "Las pistas seleccionadas para la grabación deben tener la misma frecuencia de muestreo." +msgstr "" +"Las pistas seleccionadas para la grabación deben tener la misma frecuencia de" +" muestreo." #: src/ProjectAudioManager.cpp src/menus/TransportMenus.cpp msgid "Mismatched Sampling Rates" @@ -3671,8 +3857,10 @@ msgid "" "(Audacity requires two channels at the same sample rate for\n" "each stereo track)" msgstr "" -"No se han seleccionado pistas suficientes para grabar con esta frecuencia de muestra.\n" -"Audacity necesita dos canales con la misma frecuencia de muestra para cada pista\n" +"No se han seleccionado pistas suficientes para grabar con esta frecuencia de" +" muestra.\n" +"Audacity necesita dos canales con la misma frecuencia de muestra para cada" +" pista\n" "estéreo." #: src/ProjectAudioManager.cpp src/menus/TransportMenus.cpp @@ -3704,11 +3892,13 @@ msgid "" "\n" "You are saving directly to a slow external storage device\n" msgstr "" -"El audio guardado se ha perdido en las ubicaciones etiquetas. Los motivos pueden ser:\n" +"El audio guardado se ha perdido en las ubicaciones etiquetas. Los motivos" +" pueden ser:\n" "\n" "Otra aplicación estaba ocupando excesivamente el tiempo del procesador\n" "\n" -"Se está intentando almacenar directamente a un dispositivo externo demasiado lento\n" +"Se está intentando almacenar directamente a un dispositivo externo demasiado" +" lento\n" #: src/ProjectAudioManager.cpp msgid "Turn off dropout detection" @@ -3721,15 +3911,23 @@ msgstr "Desactivar detección de pérdidas" #. "Found problems with when checking project file." #: src/ProjectFSCK.cpp msgid "Project check read faulty Sequence tags." -msgstr "La comprobación de proyectos lee las etiquetas de secuencia defectuosas." +msgstr "" +"La comprobación de proyectos lee las etiquetas de secuencia defectuosas." #: src/ProjectFSCK.cpp msgid "Close project immediately with no changes" msgstr "Cerrar el proyecto inmediatamente sin guardar cambios" #: src/ProjectFSCK.cpp -msgid "Continue with repairs noted in log, and check for more errors. This will save the project in its current state, unless you \"Close project immediately\" on further error alerts." -msgstr "Continuar con las reparaciones indicadas en el registro y buscar más errores. Esto guardará el proyecto en su estado actual a no ser que seleccione \"Cerrar el proyecto inmediatamente\" en el cuadro de diálogo de detalles del error." +msgid "" +"Continue with repairs noted in log, and check for more errors. This will save" +" the project in its current state, unless you \"Close project immediately\"" +" on further error alerts." +msgstr "" +"Continuar con las reparaciones indicadas en el registro y buscar más errores." +" Esto guardará el proyecto en su estado actual a no ser que seleccione" +" \"Cerrar el proyecto inmediatamente\" en el cuadro de diálogo de detalles" +" del error." #: src/ProjectFSCK.cpp msgid "Warning - Problems Reading Sequence Tags" @@ -3892,9 +4090,11 @@ msgid "" "\n" "Select 'Help > Diagnostics > Show Log...' to see details." msgstr "" -"La comprobación del proyecto encontró inconsistencias al realizar la recuperación automática.\n" +"La comprobación del proyecto encontró inconsistencias al realizar la" +" recuperación automática.\n" "\n" -"Seleccione 'Ayuda > Diagnosticos > Mostrar registro...' para obtener más información." +"Seleccione 'Ayuda > Diagnosticos > Mostrar registro...' para obtener más" +" información." #: src/ProjectFSCK.cpp msgid "Warning: Problems in Automatic Recovery" @@ -3997,7 +4197,8 @@ msgstr "No se puede inicializar el archivo de proyecto" #. i18n-hint: An error message. Don't translate inset or blockids. #: src/ProjectFileIO.cpp msgid "Unable to add 'inset' function (can't verify blockids)" -msgstr "No se puede añadir la función 'inset' (no se puede verificar los blockids)" +msgstr "" +"No se puede añadir la función 'inset' (no se puede verificar los blockids)" #. i18n-hint: An error message. Don't translate blockfiles. #: src/ProjectFileIO.cpp @@ -4122,7 +4323,8 @@ msgid "" msgstr "" "Audacity no ha podido escribir en el archivo %s.\n" "Tal vez el disco esté lleno o no esté protegido contra escritura.\n" -"Haga clic en el botón de ayuda para obtener recomendaciones sobre cómo liberar espacio." +"Haga clic en el botón de ayuda para obtener recomendaciones sobre cómo" +" liberar espacio." #: src/ProjectFileIO.cpp msgid "Compacting project" @@ -4144,10 +4346,12 @@ msgstr "(Recuperado)" #, c-format msgid "" "This file was saved using Audacity %s.\n" -"You are using Audacity %s. You may need to upgrade to a newer version to open this file." +"You are using Audacity %s. You may need to upgrade to a newer version to open" +" this file." msgstr "" "Este archivo fue guardado usando Audacity %s.\n" -"Está usando Audacity %s. Deberá actualizar a una versión más moderna para poder abrir este archivo." +"Está usando Audacity %s. Deberá actualizar a una versión más moderna para" +" poder abrir este archivo." #: src/ProjectFileIO.cpp msgid "Can't open project file" @@ -4155,7 +4359,9 @@ msgstr "No se puede abrir el archivo de proyecto" #: src/ProjectFileIO.cpp msgid "Failed to remove the autosave information from the project file." -msgstr "No se ha podido eliminar la información de autoguardado del archivo de proyeto." +msgstr "" +"No se ha podido eliminar la información de autoguardado del archivo de" +" proyeto." #: src/ProjectFileIO.cpp msgid "Unable to bind to blob" @@ -4170,8 +4376,12 @@ msgid "Unable to parse project information." msgstr "No se ha podido analizar la información del proyecto." #: src/ProjectFileIO.cpp -msgid "The project's database failed to reopen, possibly because of limited space on the storage device." -msgstr "No se ha podido reabrir la base de datos del proyecto, posiblemente por un problema de espacio en el dispositivo de almacenamiento." +msgid "" +"The project's database failed to reopen, possibly because of limited space on" +" the storage device." +msgstr "" +"No se ha podido reabrir la base de datos del proyecto, posiblemente por un" +" problema de espacio en el dispositivo de almacenamiento." #: src/ProjectFileIO.cpp msgid "Saving project" @@ -4206,7 +4416,8 @@ msgid "" "\n" "%s" msgstr "" -"No se ha podido eliminar la información de autoguardado, posiblemente por un problema de espacio\n" +"No se ha podido eliminar la información de autoguardado, posiblemente por un" +" problema de espacio\n" "en el dispositivo de almacenamiento.\n" "\n" "%s" @@ -4221,7 +4432,8 @@ msgid "" "\n" "It has been recovered to the last snapshot." msgstr "" -"Este proyecto no se ha guardado correctamente la última vez que se ejecutó Audacity.\n" +"Este proyecto no se ha guardado correctamente la última vez que se ejecutó" +" Audacity.\n" "\n" "Se ha recuperado desde la ultima copia automática." @@ -4232,7 +4444,8 @@ msgid "" "It has been recovered to the last snapshot, but you must save it\n" "to preserve its contents." msgstr "" -"Este proyecto no se ha guardado correctamente la última vez que se ejecutó Audacity.\n" +"Este proyecto no se ha guardado correctamente la última vez que se ejecutó" +" Audacity.\n" "\n" "Se ha recuperado desde la ultima copia automática, pero debe guardarlo\n" "para preservar su contenido." @@ -4280,13 +4493,18 @@ msgid "" "\n" "Please select a different disk with more free space." msgstr "" -"El tamaño del proyecto es superior al espacio disponible en el disco de destino.\n" +"El tamaño del proyecto es superior al espacio disponible en el disco de" +" destino.\n" "\n" "Seleccione un disco diferente con más espacio libre." #: src/ProjectFileManager.cpp -msgid "The project exceeds the maximum size of 4GB when writing to a FAT32 formatted filesystem." -msgstr "El tamaño del proyecto es superior al límite de 4GB permitido por los sistemas de archivos formateados mediante FAT32." +msgid "" +"The project exceeds the maximum size of 4GB when writing to a FAT32 formatted" +" filesystem." +msgstr "" +"El tamaño del proyecto es superior al límite de 4GB permitido por los" +" sistemas de archivos formateados mediante FAT32." #: src/ProjectFileManager.cpp src/commands/ScreenshotCommand.cpp #, c-format @@ -4295,10 +4513,12 @@ msgstr "Se ha guardado en %s" #: src/ProjectFileManager.cpp msgid "" -"The project was not saved because the file name provided would overwrite another project.\n" +"The project was not saved because the file name provided would overwrite" +" another project.\n" "Please try again and select an original name." msgstr "" -"El proyecto no fue guardado porque con el nombre de archivo indicado se sobrescribiría otro proyecto.\n" +"El proyecto no fue guardado porque con el nombre de archivo indicado se" +" sobrescribiría otro proyecto.\n" "Inténtelo de nuevo y escoja un nombre diferente." #: src/ProjectFileManager.cpp @@ -4311,8 +4531,10 @@ msgid "" "'Save Project' is for an Audacity project, not an audio file.\n" "For an audio file that will open in other apps, use 'Export'.\n" msgstr "" -"La opción 'Guardar proyecto' se emplea con un proyecto de Audacity, no con un archivo de audio.\n" -"Para crear un archivo de audio que se abrirá con otras aplicaciones utilice la opción 'Exportar'.\n" +"La opción 'Guardar proyecto' se emplea con un proyecto de Audacity, no con un" +" archivo de audio.\n" +"Para crear un archivo de audio que se abrirá con otras aplicaciones utilice" +" la opción 'Exportar'.\n" #. i18n-hint: In each case, %s is the name #. of the file being overwritten. @@ -4340,7 +4562,8 @@ msgstr "Advertencia al sobrescribir proyecto" #: src/ProjectFileManager.cpp msgid "" -"The project was not saved because the selected project is open in another window.\n" +"The project was not saved because the selected project is open in another" +" window.\n" "Please try again and select an original name." msgstr "" "El proyecto no se ha guardado porque ya está abierto en otra ventana.\n" @@ -4383,7 +4606,8 @@ msgid "" "\n" "Please open the actual Audacity project file instead." msgstr "" -"Está intentado abrir un archivo de copia de seguridad generado automáticamente.\n" +"Está intentado abrir un archivo de copia de seguridad generado" +" automáticamente.\n" "Esto puede conllevar una grave perdida de datos.\n" "\n" "En su lugar, abra el archivo de proyecto de Audacity." @@ -4457,19 +4681,24 @@ msgstr "Compactar proyecto" #: src/ProjectFileManager.cpp #, c-format msgid "" -"Compacting this project will free up disk space by removing unused bytes within the file.\n" +"Compacting this project will free up disk space by removing unused bytes" +" within the file.\n" "\n" "There is %s of free disk space and this project is currently using %s.\n" "\n" -"If you proceed, the current Undo/Redo History and clipboard contents will be discarded and you will recover approximately %s of disk space.\n" +"If you proceed, the current Undo/Redo History and clipboard contents will be" +" discarded and you will recover approximately %s of disk space.\n" "\n" "Do you want to continue?" msgstr "" -"Compactar este proyecto liberará espacio en disco eliminando partes no usadas dentro del archivo.\n" +"Compactar este proyecto liberará espacio en disco eliminando partes no" +" usadas dentro del archivo.\n" "\n" "Hay %s de espacio libre en disco y este proyecto está utilizando %s.\n" "\n" -"Si continua las opciones de Deshacer/Rehacer historial y el contenido del portapapeles se descartarán y recuperará aproximadamente %s de espacio en disco.\n" +"Si continua las opciones de Deshacer/Rehacer historial y el contenido del" +" portapapeles se descartarán y recuperará aproximadamente %s de espacio en" +" disco.\n" "\n" "¿Quiere continuar?" @@ -4487,7 +4716,8 @@ msgstr "Nuevo proyecto creado" #: src/ProjectHistory.cpp msgid "Automatic database backup failed." -msgstr "No se ha podido realizar la copia de seguridad automática de la base de datos." +msgstr "" +"No se ha podido realizar la copia de seguridad automática de la base de datos." #: src/ProjectManager.cpp #, c-format @@ -4557,7 +4787,8 @@ msgid "" "You need to run that version of Audacity to recover the project." msgstr "" "El archivo de recuperación se creó con Audacity 2.3.0 o anterior.\n" -"Es necesario ejecutar esa versión de Audacity para poder recuperar el proyecto." +"Es necesario ejecutar esa versión de Audacity para poder recuperar el" +" proyecto." #. i18n-hint: This is an experimental feature where the main panel in #. Audacity is put on a notebook tab, and this is the name on that tab. @@ -4581,8 +4812,11 @@ msgstr "El grupo de complementos de %s se ha combinado con el grupo anterior" #: src/Registry.cpp #, c-format -msgid "Plug-in item at %s conflicts with a previously defined item and was discarded" -msgstr "El complemento de %s entra en conflicto con un elemento anterior y se ha descartado" +msgid "" +"Plug-in item at %s conflicts with a previously defined item and was discarded" +msgstr "" +"El complemento de %s entra en conflicto con un elemento anterior y se ha" +" descartado" #: src/Registry.cpp #, c-format @@ -4682,7 +4916,9 @@ msgstr "Pantalla completa" #: src/Screenshot.cpp msgid "Wait 5 seconds and capture frontmost window/dialog" -msgstr "Esperar cinco segundos y capturar el cuadro de diálogo o ventana en primer plano" +msgstr "" +"Esperar cinco segundos y capturar el cuadro de diálogo o ventana en primer" +" plano" #: src/Screenshot.cpp msgid "Capture part of a project window" @@ -4850,7 +5086,8 @@ msgid "" "Sequence has block file exceeding maximum %s samples per block.\n" "Truncating to this maximum length." msgstr "" -"La secuencia ha bloqueado un archivo con una duración máxima de %s muestras por bloque.\n" +"La secuencia ha bloqueado un archivo con una duración máxima de %s muestras" +" por bloque.\n" "Se truncará a su longitud máxima." #: src/Sequence.cpp @@ -4931,7 +5168,9 @@ msgstr "Género" #: src/Tags.cpp msgid "Use arrow keys (or ENTER key after editing) to navigate fields." -msgstr "Use las teclas de cursor (o Intro después de editar) para desplazarse por los campos." +msgstr "" +"Use las teclas de cursor (o Intro después de editar) para desplazarse por los" +" campos." #: src/Tags.cpp msgid "Tag" @@ -4991,7 +5230,9 @@ msgstr "Restablecer géneros" #: src/Tags.cpp msgid "Are you sure you want to reset the genre list to defaults?" -msgstr "¿Está seguro de que desea restablecer la lista de géneros a los valores predeterminados?" +msgstr "" +"¿Está seguro de que desea restablecer la lista de géneros a los valores" +" predeterminados?" #: src/Tags.cpp msgid "Unable to open genre file." @@ -5022,7 +5263,8 @@ msgid "" "The temporary files directory is on a FAT formatted drive.\n" "Resetting to default location." msgstr "" -"La carpeta de archivos temporales se encuentra en una unidad formateada con FAT.\n" +"La carpeta de archivos temporales se encuentra en una unidad formateada con" +" FAT.\n" "Restableciendo a la ubicación predeterminada." #: src/TempDirectory.cpp @@ -5034,7 +5276,8 @@ msgid "" msgstr "" "%s\n" "\n" -"Haga clic en el botón de ayuda para obtener recomendaciones sobre unidades apropiadas." +"Haga clic en el botón de ayuda para obtener recomendaciones sobre unidades" +" apropiadas." #: src/Theme.cpp #, c-format @@ -5255,14 +5498,16 @@ msgstr "Error en la exportación automática" #: src/TimerRecordDialog.cpp #, c-format msgid "" -"You may not have enough free disk space to complete this Timer Recording, based on your current settings.\n" +"You may not have enough free disk space to complete this Timer Recording," +" based on your current settings.\n" "\n" "Do you wish to continue?\n" "\n" "Planned recording duration: %s\n" "Recording time remaining on disk: %s" msgstr "" -"Según la configuración actual puede que no tenga suficiente espacio libre para esta Grabación Programada\n" +"Según la configuración actual puede que no tenga suficiente espacio libre" +" para esta Grabación Programada\n" "\n" "¿Está seguro de que quiere continuar?\n" "\n" @@ -5570,8 +5815,12 @@ msgid " Select On" msgstr " Selección activada" #: src/TrackPanelResizeHandle.cpp -msgid "Click and drag to adjust relative size of stereo tracks, double-click to make heights equal" -msgstr "Haga clic y arrastre para ajustar el tamaño relativo de las pistas estéreo. Doble clic para igualar sus alturas." +msgid "" +"Click and drag to adjust relative size of stereo tracks, double-click to make" +" heights equal" +msgstr "" +"Haga clic y arrastre para ajustar el tamaño relativo de las pistas estéreo." +" Doble clic para igualar sus alturas." #: src/TrackPanelResizeHandle.cpp msgid "Click and drag to resize the track." @@ -5686,7 +5935,8 @@ msgstr "No hay espacio suficiente para expandir la línea de corte" #: src/blockfile/NotYetAvailableException.cpp #, c-format msgid "This operation cannot be done until importation of %s completes." -msgstr "Esta operación no se puede realizar hasta que se complete la imprtación de %s." +msgstr "" +"Esta operación no se puede realizar hasta que se complete la imprtación de %s." #: src/commands/AudacityCommand.cpp src/effects/Effect.cpp #: src/effects/nyquist/Nyquist.cpp src/prefs/PrefsPanel.cpp plug-ins/beat.ny @@ -5700,7 +5950,8 @@ msgid "" "\n" "%s" msgstr "" -"%s: No se puede cargar la configuración. Se usarán los valores predeterminados.\n" +"%s: No se puede cargar la configuración. Se usarán los valores" +" predeterminados.\n" "\n" "%s" @@ -5760,8 +6011,14 @@ msgstr "" "* %s, porque tiene asignado el atajo de teclado %s a %s" #: src/commands/CommandManager.cpp -msgid "The following commands have had their shortcuts removed, because their default shortcut is new or changed, and is the same shortcut that you have assigned to another command." -msgstr "Se han eliminado los atajos de teclado de los siguientes comandos, porque los valores predeterminados nuevos o que han cambiado coinciden con algunos de los que estaban asignados." +msgid "" +"The following commands have had their shortcuts removed, because their" +" default shortcut is new or changed, and is the same shortcut that you have" +" assigned to another command." +msgstr "" +"Se han eliminado los atajos de teclado de los siguientes comandos, porque los" +" valores predeterminados nuevos o que han cambiado coinciden con algunos de" +" los que estaban asignados." #: src/commands/CommandManager.cpp msgid "Shortcuts have been removed" @@ -6509,22 +6766,34 @@ msgid "Auto Duck" msgstr "Auto Duck" #: src/effects/AutoDuck.cpp -msgid "Reduces (ducks) the volume of one or more tracks whenever the volume of a specified \"control\" track reaches a particular level" -msgstr "Reduce (duck) el volumen de una o mas pistas cada vez que el volumen de una pista de \"control\" concreta alcanza el nivel específico." +msgid "" +"Reduces (ducks) the volume of one or more tracks whenever the volume of a" +" specified \"control\" track reaches a particular level" +msgstr "" +"Reduce (duck) el volumen de una o mas pistas cada vez que el volumen de una" +" pista de \"control\" concreta alcanza el nivel específico." #. i18n-hint: Auto duck is the name of an effect that 'ducks' (reduces the volume) #. * of the audio automatically when there is sound on another track. Not as #. * in 'Donald-Duck'! #: src/effects/AutoDuck.cpp -msgid "You selected a track which does not contain audio. AutoDuck can only process audio tracks." -msgstr "Se ha seleccionado una pista que no contiene audio. AutoDuck solo puede procesar pistas de audio." +msgid "" +"You selected a track which does not contain audio. AutoDuck can only process" +" audio tracks." +msgstr "" +"Se ha seleccionado una pista que no contiene audio. AutoDuck solo puede" +" procesar pistas de audio." #. i18n-hint: Auto duck is the name of an effect that 'ducks' (reduces the volume) #. * of the audio automatically when there is sound on another track. Not as #. * in 'Donald-Duck'! #: src/effects/AutoDuck.cpp -msgid "Auto Duck needs a control track which must be placed below the selected track(s)." -msgstr "Auto Duck necesita una pista de control que debe situarse bajo la(s) pista(s) seleccionada(s)." +msgid "" +"Auto Duck needs a control track which must be placed below the selected" +" track(s)." +msgstr "" +"Auto Duck necesita una pista de control que debe situarse bajo la(s) pista(s)" +" seleccionada(s)." #: src/effects/AutoDuck.cpp src/effects/TruncSilence.cpp msgid "db" @@ -6879,11 +7148,13 @@ msgstr "Eliminación de click" #: src/effects/ClickRemoval.cpp msgid "Click Removal is designed to remove clicks on audio tracks" -msgstr "Eliminación de click está diseñado para eliminar los clicks de pistas de audio" +msgstr "" +"Eliminación de click está diseñado para eliminar los clicks de pistas de audio" #: src/effects/ClickRemoval.cpp msgid "Algorithm not effective on this audio. Nothing changed." -msgstr "El algoritmo no tiene efecto en este audio. No se han producido cambios." +msgstr "" +"El algoritmo no tiene efecto en este audio. No se han producido cambios." #: src/effects/ClickRemoval.cpp #, c-format @@ -7055,8 +7326,12 @@ msgstr "" #. i18n-hint: RMS abbreviates root mean square, a certain averaging method #: src/effects/Contrast.cpp -msgid "Contrast Analyzer, for measuring RMS volume differences between two selections of audio." -msgstr "Analizador de contraste para medir las diferencias de volumen RMS entre dos selecciones de audio." +msgid "" +"Contrast Analyzer, for measuring RMS volume differences between two" +" selections of audio." +msgstr "" +"Analizador de contraste para medir las diferencias de volumen RMS entre dos" +" selecciones de audio." #. i18n-hint noun #: src/effects/Contrast.cpp src/effects/ToneGen.cpp @@ -7539,8 +7814,12 @@ msgid "DTMF Tones" msgstr "Tonos DTMF" #: src/effects/DtmfGen.cpp -msgid "Generates dual-tone multi-frequency (DTMF) tones like those produced by the keypad on telephones" -msgstr "Genera un tonos duales multifrecuencia (DTMF) como los que se producen mediante un teclado de un teléfono" +msgid "" +"Generates dual-tone multi-frequency (DTMF) tones like those produced by the" +" keypad on telephones" +msgstr "" +"Genera un tonos duales multifrecuencia (DTMF) como los que se producen" +" mediante un teclado de un teléfono" #: src/effects/DtmfGen.cpp msgid "" @@ -8026,22 +8305,28 @@ msgstr "Recorte de agudos" #: src/effects/Equalization.cpp msgid "" "To use this filter curve in a macro, please choose a new name for it.\n" -"Choose the 'Save/Manage Curves...' button and rename the 'unnamed' curve, then use that one." +"Choose the 'Save/Manage Curves...' button and rename the 'unnamed' curve," +" then use that one." msgstr "" "Para utilizar esta curva de ecualización en una macro, indique un nombre.\n" -"Haga clic en el botón 'Guardar/Administrar curvas...' y renombre la curva denominada 'sin nombre' y utilice esa." +"Haga clic en el botón 'Guardar/Administrar curvas...' y renombre la curva" +" denominada 'sin nombre' y utilice esa." #: src/effects/Equalization.cpp msgid "Filter Curve EQ needs a different name" msgstr "La ecualización de curva de filtro necesita un nombre diferente" #: src/effects/Equalization.cpp -msgid "To apply Equalization, all selected tracks must have the same sample rate." -msgstr "Para aplicar Ecualización todas las pistas seleccionadas deben tener la misma frecuencia de muestreo." +msgid "" +"To apply Equalization, all selected tracks must have the same sample rate." +msgstr "" +"Para aplicar Ecualización todas las pistas seleccionadas deben tener la misma" +" frecuencia de muestreo." #: src/effects/Equalization.cpp msgid "Track sample rate is too low for this effect." -msgstr "La frecuencia de muestreo de la pista es demasiado baja para este efecto." +msgstr "" +"La frecuencia de muestreo de la pista es demasiado baja para este efecto." #: src/effects/Equalization.cpp msgid "Effect Unavailable" @@ -8372,7 +8657,8 @@ msgstr "Aplica un aparición progresiva (fade in) lineal del audio seleccionado" #: src/effects/Fade.cpp msgid "Applies a linear fade-out to the selected audio" -msgstr "Aplica un desvanecimiento progresivo (fade out) lineal del audio seleccionado" +msgstr "" +"Aplica un desvanecimiento progresivo (fade out) lineal del audio seleccionado" #: src/effects/FindClipping.cpp msgid "Find Clipping" @@ -8554,7 +8840,9 @@ msgstr "Reducción de ruido" #: src/effects/NoiseReduction.cpp msgid "Removes background noise such as fans, tape noise, or hums" -msgstr "Elimina diferentes tipos de ruidos de fondo como ventiladores, ruido de cinta o zumbidos" +msgstr "" +"Elimina diferentes tipos de ruidos de fondo como ventiladores, ruido de cinta" +" o zumbidos" #: src/effects/NoiseReduction.cpp msgid "Steps per block are too few for the window types." @@ -8566,7 +8854,9 @@ msgstr "Los pasos por bloque no pueden exceder el tamaño de ventana." #: src/effects/NoiseReduction.cpp msgid "Median method is not implemented for more than four steps per window." -msgstr "El método de mediana no está implementado para más de cuatro pasos por ventana." +msgstr "" +"El método de mediana no está implementado para más de cuatro pasos por" +" ventana." #: src/effects/NoiseReduction.cpp msgid "You must specify the same window size for steps 1 and 2." @@ -8574,15 +8864,20 @@ msgstr "Debe especificar el mismo tamaño de ventana para los pasos 1 y 2." #: src/effects/NoiseReduction.cpp msgid "Warning: window types are not the same as for profiling." -msgstr "Advertencia: los tamaños de ventana no son los mismos que para el análisis." +msgstr "" +"Advertencia: los tamaños de ventana no son los mismos que para el análisis." #: src/effects/NoiseReduction.cpp msgid "All noise profile data must have the same sample rate." msgstr "Todas las pistas deben tener la misma frecuencia de muestreo." #: src/effects/NoiseReduction.cpp -msgid "The sample rate of the noise profile must match that of the sound to be processed." -msgstr "La frecuencia de muestreo del perfil de ruido debe coincidir con la del sonido que se va a procesar." +msgid "" +"The sample rate of the noise profile must match that of the sound to be" +" processed." +msgstr "" +"La frecuencia de muestreo del perfil de ruido debe coincidir con la del" +" sonido que se va a procesar." #: src/effects/NoiseReduction.cpp msgid "Selected noise profile is too short." @@ -8661,7 +8956,8 @@ msgid "" "Select all of the audio you want filtered, choose how much noise you want\n" "filtered out, and then click 'OK' to reduce noise.\n" msgstr "" -"Seleccione todo el audio que desea filtrar, elija qué porcentaje de ruido desea filtrar\n" +"Seleccione todo el audio que desea filtrar, elija qué porcentaje de ruido" +" desea filtrar\n" "y luego haga clic en Aceptar para reducir el ruido.\n" #: src/effects/NoiseReduction.cpp src/effects/NoiseRemoval.cpp @@ -8765,14 +9061,17 @@ msgstr "Reducción de ruido" #: src/effects/NoiseRemoval.cpp msgid "Removes constant background noise such as fans, tape noise, or hums" -msgstr "Elimina diferentes tipos de ruidos de fondo permanentes como ventiladores, ruido de cinta o zumbidos" +msgstr "" +"Elimina diferentes tipos de ruidos de fondo permanentes como ventiladores," +" ruido de cinta o zumbidos" #: src/effects/NoiseRemoval.cpp msgid "" "Select all of the audio you want filtered, choose how much noise you want\n" "filtered out, and then click 'OK' to remove noise.\n" msgstr "" -"Seleccione todo el audio que desea filtrar, elija que porcentaje de ruido desea filtrar\n" +"Seleccione todo el audio que desea filtrar, elija que porcentaje de ruido" +" desea filtrar\n" "y luego haga clic en Aceptar para eliminar el ruido.\n" #: src/effects/NoiseRemoval.cpp @@ -8870,7 +9169,9 @@ msgstr "Paulstretch" #: src/effects/Paulstretch.cpp msgid "Paulstretch is only for an extreme time-stretch or \"stasis\" effect" -msgstr "Utilice Paulstrech únicamente para estirar el tiempo radicalmente o generar un efecto \"éxtasis\"" +msgstr "" +"Utilice Paulstrech únicamente para estirar el tiempo radicalmente o generar" +" un efecto \"éxtasis\"" #. i18n-hint: This is how many times longer the sound will be, e.g. applying #. * the effect to a 1-second sample, with the default Stretch Factor of 10.0 @@ -9000,13 +9301,16 @@ msgstr "Establece el pico máximo de amplitud de una o más pistas" #: src/effects/Repair.cpp msgid "" -"The Repair effect is intended to be used on very short sections of damaged audio (up to 128 samples).\n" +"The Repair effect is intended to be used on very short sections of damaged" +" audio (up to 128 samples).\n" "\n" "Zoom in and select a tiny fraction of a second to repair." msgstr "" -"El efecto de reparación está pensado para usarse en pequeñas secciones de audio dañado (hasta 128 muestras).\n" +"El efecto de reparación está pensado para usarse en pequeñas secciones de" +" audio dañado (hasta 128 muestras).\n" "\n" -"Utilice la herramienta Acercar y seleccione una pequeña fracción de un segundo para realizar la reparación." +"Utilice la herramienta Acercar y seleccione una pequeña fracción de un" +" segundo para realizar la reparación." #: src/effects/Repair.cpp msgid "" @@ -9191,7 +9495,9 @@ msgstr "Realiza un filtrado IIR que simula filtros analógicos" #: src/effects/ScienFilter.cpp msgid "To apply a filter, all selected tracks must have the same sample rate." -msgstr "Para aplicar un filtro, todas las pistas seleccionadas deberán tener la misma frecuencia de muestreo." +msgstr "" +"Para aplicar un filtro, todas las pistas seleccionadas deberán tener la misma" +" frecuencia de muestreo." #: src/effects/ScienFilter.cpp msgid "&Filter Type:" @@ -9466,12 +9772,20 @@ msgid "Truncate Silence" msgstr "Truncar silencio" #: src/effects/TruncSilence.cpp -msgid "Automatically reduces the length of passages where the volume is below a specified level" -msgstr "Reduce automáticamente la duración de los pasajes donde el volumen es menor que el nivel especificado" +msgid "" +"Automatically reduces the length of passages where the volume is below a" +" specified level" +msgstr "" +"Reduce automáticamente la duración de los pasajes donde el volumen es menor" +" que el nivel especificado" #: src/effects/TruncSilence.cpp -msgid "When truncating independently, there may only be one selected audio track in each Sync-Locked Track Group." -msgstr "Cuando se trunca de forma independiente sólo puede haber una pista de audio seleccionada en cada grupo de pistas con sincronización bloqueada." +msgid "" +"When truncating independently, there may only be one selected audio track in" +" each Sync-Locked Track Group." +msgstr "" +"Cuando se trunca de forma independiente sólo puede haber una pista de audio" +" seleccionada en cada grupo de pistas con sincronización bloqueada." #: src/effects/TruncSilence.cpp msgid "Detect Silence" @@ -9524,8 +9838,17 @@ msgid "Buffer Size" msgstr "Tamaño de buffer" #: src/effects/VST/VSTEffect.cpp src/effects/lv2/LV2Effect.cpp -msgid "The buffer size controls the number of samples sent to the effect on each iteration. Smaller values will cause slower processing and some effects require 8192 samples or less to work properly. However most effects can accept large buffers and using them will greatly reduce processing time." -msgstr "El tamaño de buffer controla el número de muestras enviadas al efecto en cada repetición. Unos valores pequeños provocarán un procesamiento más lento y algunos efectos necesitan 8192 muestras o menos para funcionar correctamente. No obstante la mayoría de los efectos pueden trabajar con buffer mayores y usarlos para reducir notablemente el tiempo de cálculo." +msgid "" +"The buffer size controls the number of samples sent to the effect on each" +" iteration. Smaller values will cause slower processing and some effects" +" require 8192 samples or less to work properly. However most effects can" +" accept large buffers and using them will greatly reduce processing time." +msgstr "" +"El tamaño de buffer controla el número de muestras enviadas al efecto en cada" +" repetición. Unos valores pequeños provocarán un procesamiento más lento y" +" algunos efectos necesitan 8192 muestras o menos para funcionar" +" correctamente. No obstante la mayoría de los efectos pueden trabajar con" +" buffer mayores y usarlos para reducir notablemente el tiempo de cálculo." #: src/effects/VST/VSTEffect.cpp msgid "&Buffer Size (8 to 1048576 samples):" @@ -9537,8 +9860,16 @@ msgid "Latency Compensation" msgstr "Compensación de latencia" #: src/effects/VST/VSTEffect.cpp -msgid "As part of their processing, some VST effects must delay returning audio to Audacity. When not compensating for this delay, you will notice that small silences have been inserted into the audio. Enabling this option will provide that compensation, but it may not work for all VST effects." -msgstr "Algunos efectos VST deben retrasar el audio que se devuelve a Audacity como parte de su procesamiento. Si no se compensa este retardo se pueden provocar pequeños silencios insertados en el audio. Habilitando esta opción se compensará ese problema, aunque puede no funcionar en todos los efectos VST." +msgid "" +"As part of their processing, some VST effects must delay returning audio to" +" Audacity. When not compensating for this delay, you will notice that small" +" silences have been inserted into the audio. Enabling this option will" +" provide that compensation, but it may not work for all VST effects." +msgstr "" +"Algunos efectos VST deben retrasar el audio que se devuelve a Audacity como" +" parte de su procesamiento. Si no se compensa este retardo se pueden provocar" +" pequeños silencios insertados en el audio. Habilitando esta opción se" +" compensará ese problema, aunque puede no funcionar en todos los efectos VST." #: src/effects/VST/VSTEffect.cpp src/effects/audiounits/AudioUnitEffect.cpp #: src/effects/ladspa/LadspaEffect.cpp src/effects/lv2/LV2Effect.cpp @@ -9550,8 +9881,14 @@ msgid "Graphical Mode" msgstr "Interfaz gráfica" #: src/effects/VST/VSTEffect.cpp -msgid "Most VST effects have a graphical interface for setting parameter values. A basic text-only method is also available. Reopen the effect for this to take effect." -msgstr "La mayoría de los efectos VST cuentan con una interfaz gráfica para establecer los parámetros. También se cuenta con un método básico sólo de texto. Vuelva a abrir el efecto para que se aplique el cambio." +msgid "" +"Most VST effects have a graphical interface for setting parameter values. A" +" basic text-only method is also available. Reopen the effect for this to" +" take effect." +msgstr "" +"La mayoría de los efectos VST cuentan con una interfaz gráfica para" +" establecer los parámetros. También se cuenta con un método básico sólo de" +" texto. Vuelva a abrir el efecto para que se aplique el cambio." #: src/effects/VST/VSTEffect.cpp src/effects/lv2/LV2Effect.cpp msgid "Enable &graphical interface" @@ -9631,8 +9968,11 @@ msgid "Wahwah" msgstr "Wahwah" #: src/effects/Wahwah.cpp -msgid "Rapid tone quality variations, like that guitar sound so popular in the 1970's" -msgstr "Variaciones rápidas de la calidad del tono, como ese sonido de guitarra tan popular en los 70." +msgid "" +"Rapid tone quality variations, like that guitar sound so popular in the 1970's" +msgstr "" +"Variaciones rápidas de la calidad del tono, como ese sonido de guitarra tan" +" popular en los 70." #: src/effects/Wahwah.cpp msgid "Dept&h (%):" @@ -9676,16 +10016,34 @@ msgid "Audio Unit Effect Options" msgstr "Opciones de efectos Audio Unit" #: src/effects/audiounits/AudioUnitEffect.cpp -msgid "As part of their processing, some Audio Unit effects must delay returning audio to Audacity. When not compensating for this delay, you will notice that small silences have been inserted into the audio. Enabling this option will provide that compensation, but it may not work for all Audio Unit effects." -msgstr "Algunos efectos Audio Unit deben retrasar el audio que se devuelve a Audacity como parte de su procesamiento. Si no se compensa este retardo se pueden provocar pequeños silencios insertados en el audio. Habilitando esta opción se compensará ese problema, aunque puede no funcionar en todos los efectos Audio Unit." +msgid "" +"As part of their processing, some Audio Unit effects must delay returning" +" audio to Audacity. When not compensating for this delay, you will notice" +" that small silences have been inserted into the audio. Enabling this option" +" will provide that compensation, but it may not work for all Audio Unit" +" effects." +msgstr "" +"Algunos efectos Audio Unit deben retrasar el audio que se devuelve a Audacity" +" como parte de su procesamiento. Si no se compensa este retardo se pueden" +" provocar pequeños silencios insertados en el audio. Habilitando esta opción" +" se compensará ese problema, aunque puede no funcionar en todos los efectos" +" Audio Unit." #: src/effects/audiounits/AudioUnitEffect.cpp msgid "User Interface" msgstr "Interfaz de usuario" #: src/effects/audiounits/AudioUnitEffect.cpp -msgid "Select \"Full\" to use the graphical interface if supplied by the Audio Unit. Select \"Generic\" to use the system supplied generic interface. Select \"Basic\" for a basic text-only interface. Reopen the effect for this to take effect." -msgstr "Seleccione \"Completo\" para utilizar el interface gráfico suministrado por Audio Unit. \"Genérico\" para usar el interface del sistema. \"Básico\" para un interface de texto. Vuelva a abrir el efecto para que el cambio se aplique." +msgid "" +"Select \"Full\" to use the graphical interface if supplied by the Audio Unit." +" Select \"Generic\" to use the system supplied generic interface. Select" +" \"Basic\" for a basic text-only interface. Reopen the effect for this to" +" take effect." +msgstr "" +"Seleccione \"Completo\" para utilizar el interface gráfico suministrado por" +" Audio Unit. \"Genérico\" para usar el interface del sistema. \"Básico\" para" +" un interface de texto. Vuelva a abrir el efecto para que el cambio se" +" aplique." #: src/effects/audiounits/AudioUnitEffect.cpp msgid "Select &interface" @@ -9738,7 +10096,8 @@ msgstr "" #: src/effects/audiounits/AudioUnitEffect.cpp msgid "Unable to store preset in config file" -msgstr "No se puede almacenar los valores predefinidos en el archivo de configuración" +msgstr "" +"No se puede almacenar los valores predefinidos en el archivo de configuración" #: src/effects/audiounits/AudioUnitEffect.cpp #, c-format @@ -9807,12 +10166,15 @@ msgstr "No se ha podido convertir los valores predefinidos a formato propio" #: src/effects/audiounits/AudioUnitEffect.cpp msgid "Failed to create property list for preset" -msgstr "No se ha podido crear la lista de propiedades para los valores predefinidos" +msgstr "" +"No se ha podido crear la lista de propiedades para los valores predefinidos" #: src/effects/audiounits/AudioUnitEffect.cpp #, c-format msgid "Failed to set class info for \"%s\" preset" -msgstr "No se ha podido establecer la información de clase para los valores predefinidos \"%s\"" +msgstr "" +"No se ha podido establecer la información de clase para los valores" +" predefinidos \"%s\"" #. i18n-hint: the name of an Apple audio software protocol #. i18n-hint: Audio Unit is the name of an Apple audio software protocol @@ -9840,8 +10202,17 @@ msgid "LADSPA Effect Options" msgstr "Opciones de efecto LADSPA" #: src/effects/ladspa/LadspaEffect.cpp -msgid "As part of their processing, some LADSPA effects must delay returning audio to Audacity. When not compensating for this delay, you will notice that small silences have been inserted into the audio. Enabling this option will provide that compensation, but it may not work for all LADSPA effects." -msgstr "Algunos efectos LADSPA deben retrasar el audio que se devuelve a Audacity como parte de su procesamiento. Si no se compensa este retardo se pueden provocar pequeños silencios insertados en el audio. Habilitando esta opción se compensará ese problema, aunque puede no funcionar en todos los efectos LADSPA." +msgid "" +"As part of their processing, some LADSPA effects must delay returning audio" +" to Audacity. When not compensating for this delay, you will notice that" +" small silences have been inserted into the audio. Enabling this option will" +" provide that compensation, but it may not work for all LADSPA effects." +msgstr "" +"Algunos efectos LADSPA deben retrasar el audio que se devuelve a Audacity" +" como parte de su procesamiento. Si no se compensa este retardo se pueden" +" provocar pequeños silencios insertados en el audio. Habilitando esta opción" +" se compensará ese problema, aunque puede no funcionar en todos los efectos" +" LADSPA." #. i18n-hint: An item name introducing a value, which is not part of the string but #. appears in a following text box window; translate with appropriate punctuation @@ -9873,12 +10244,26 @@ msgid "&Buffer Size (8 to %d) samples:" msgstr "Tamaño de &buffer (8 a %d) muestras:" #: src/effects/lv2/LV2Effect.cpp -msgid "As part of their processing, some LV2 effects must delay returning audio to Audacity. When not compensating for this delay, you will notice that small silences have been inserted into the audio. Enabling this setting will provide that compensation, but it may not work for all LV2 effects." -msgstr "Algunos efectos LV2 deben retrasar el audio que se devuelve a Audacity como parte de su procesamiento. Si no se compensa este retardo se pueden provocar pequeños silencios insertados en el audio. Habilitando esta opción se compensará ese problema, aunque puede no funcionar en todos los efectos LV2." +msgid "" +"As part of their processing, some LV2 effects must delay returning audio to" +" Audacity. When not compensating for this delay, you will notice that small" +" silences have been inserted into the audio. Enabling this setting will" +" provide that compensation, but it may not work for all LV2 effects." +msgstr "" +"Algunos efectos LV2 deben retrasar el audio que se devuelve a Audacity como" +" parte de su procesamiento. Si no se compensa este retardo se pueden provocar" +" pequeños silencios insertados en el audio. Habilitando esta opción se" +" compensará ese problema, aunque puede no funcionar en todos los efectos LV2." #: src/effects/lv2/LV2Effect.cpp -msgid "LV2 effects can have a graphical interface for setting parameter values. A basic text-only method is also available. Reopen the effect for this to take effect." -msgstr "Los efectos LV2 cuentan con una interfaz gráfica para establecer los parámetros. También se cuenta con un método básico sólo de texto. Vuelva a abrir el efecto para que se aplique el cambio." +msgid "" +"LV2 effects can have a graphical interface for setting parameter values. A" +" basic text-only method is also available. Reopen the effect for this to" +" take effect." +msgstr "" +"Los efectos LV2 cuentan con una interfaz gráfica para establecer los" +" parámetros. También se cuenta con un método básico sólo de texto. Vuelva a" +" abrir el efecto para que se aplique el cambio." #: src/effects/lv2/LV2Effect.cpp msgid "Couldn't instantiate effect" @@ -9954,7 +10339,9 @@ msgstr "" #: src/effects/nyquist/Nyquist.cpp #, c-format msgid "error: File \"%s\" specified in header but not found in plug-in path.\n" -msgstr "error: Se ha especificado el archivo \"%s\" en la cabecera pero no se ha encontrado en la ruta de complementos.\n" +msgstr "" +"error: Se ha especificado el archivo \"%s\" en la cabecera pero no se ha" +" encontrado en la ruta de complementos.\n" #: src/effects/nyquist/Nyquist.cpp msgid "Audio selection required." @@ -9965,8 +10352,10 @@ msgid "Nyquist Error" msgstr "Error Nyquist" #: src/effects/nyquist/Nyquist.cpp -msgid "Sorry, cannot apply effect on stereo tracks where the tracks don't match." -msgstr "No se puede aplicar el efecto en pistas estéreo donde las pistas no coinciden." +msgid "" +"Sorry, cannot apply effect on stereo tracks where the tracks don't match." +msgstr "" +"No se puede aplicar el efecto en pistas estéreo donde las pistas no coinciden." #: src/effects/nyquist/Nyquist.cpp #, c-format @@ -10038,13 +10427,18 @@ msgid "Nyquist returned nil audio.\n" msgstr "Nyquist no devolvió audio.\n" #: src/effects/nyquist/Nyquist.cpp -msgid "[Warning: Nyquist returned invalid UTF-8 string, converted here as Latin-1]" -msgstr "[Advertencia: Nyquist ha devuelto una secuencia UTF-8 inválida, convertida a Latin-1]" +msgid "" +"[Warning: Nyquist returned invalid UTF-8 string, converted here as Latin-1]" +msgstr "" +"[Advertencia: Nyquist ha devuelto una secuencia UTF-8 inválida, convertida a" +" Latin-1]" #: src/effects/nyquist/Nyquist.cpp #, c-format msgid "This version of Audacity does not support Nyquist plug-in version %ld" -msgstr "Esta versión de Audacity no fue compilada con compatibilidad para la versión %ld de complemento Nyquist" +msgstr "" +"Esta versión de Audacity no fue compilada con compatibilidad para la versión " +"%ld de complemento Nyquist" #: src/effects/nyquist/Nyquist.cpp msgid "Could not open file" @@ -10059,7 +10453,8 @@ msgid "" "\t(mult *track* 0.1)\n" " ." msgstr "" -"Su secuencia de código parece tener sintáxis SAL, pero no hay devolución de valores. \n" +"Su secuencia de código parece tener sintáxis SAL, pero no hay devolución de" +" valores. \n" "Utilice una sentencia de retorno como \n" "\treturn *track* * 0.1\n" "de SAL, o para LISP comience con un apertura de paréntesis como:\n" @@ -10159,8 +10554,12 @@ msgid "Provides Vamp Effects support to Audacity" msgstr "Proporciona compatibilidad a Audacity con efectos Vamp" #: src/effects/vamp/VampEffect.cpp -msgid "Sorry, Vamp Plug-ins cannot be run on stereo tracks where the individual channels of the track do not match." -msgstr "Los complementos Vamp no pueden ser aplicados en pistas estéreo donde los canales individuales de la pista no coinciden." +msgid "" +"Sorry, Vamp Plug-ins cannot be run on stereo tracks where the individual" +" channels of the track do not match." +msgstr "" +"Los complementos Vamp no pueden ser aplicados en pistas estéreo donde los" +" canales individuales de la pista no coinciden." #: src/effects/vamp/VampEffect.cpp msgid "Sorry, failed to load Vamp Plug-in." @@ -10218,13 +10617,15 @@ msgstr "¿Está seguro de que desea exportar el archivo como \"%s\"?\n" msgid "" "You are about to export a %s file with the name \"%s\".\n" "\n" -"Normally these files end in \".%s\", and some programs will not open files with nonstandard extensions.\n" +"Normally these files end in \".%s\", and some programs will not open files" +" with nonstandard extensions.\n" "\n" "Are you sure you want to export the file under this name?" msgstr "" "Va a exportar un archivo %s con el nombre \"%s\".\n" "\n" -"Estos archivos suelen acabar con \".%s\", y alguno programas no abrirán archivos con una extensión no estándar.\n" +"Estos archivos suelen acabar con \".%s\", y alguno programas no abrirán" +" archivos con una extensión no estándar.\n" "\n" "¿Está seguro de que desea exportar el archivo con ese nombre?" @@ -10246,8 +10647,12 @@ msgid "Your tracks will be mixed down and exported as one stereo file." msgstr "Las pistas serán mezcladas y exportadas como un único archivo estéreo." #: src/export/Export.cpp -msgid "Your tracks will be mixed down to one exported file according to the encoder settings." -msgstr "Las pistas serán mezcladas en un archivo exportado según la configuración del codificador." +msgid "" +"Your tracks will be mixed down to one exported file according to the encoder" +" settings." +msgstr "" +"Las pistas serán mezcladas en un archivo exportado según la configuración del" +" codificador." #: src/export/Export.cpp msgid "Advanced Mixing Options" @@ -10303,8 +10708,12 @@ msgstr "Mostrar salida" #. in the program as a format string. Keep %f unchanged. #: src/export/ExportCL.cpp #, c-format -msgid "Data will be piped to standard in. \"%f\" uses the file name in the export window." -msgstr "Los datos serán enviados a la entrada estándar. \"%f\" utiliza el nombre de archivo en la ventana de exportación." +msgid "" +"Data will be piped to standard in. \"%f\" uses the file name in the export" +" window." +msgstr "" +"Los datos serán enviados a la entrada estándar. \"%f\" utiliza el nombre de" +" archivo en la ventana de exportación." #. i18n-hint files that can be run as programs #: src/export/ExportCL.cpp @@ -10330,7 +10739,9 @@ msgstr "Exportar" #: src/export/ExportCL.cpp msgid "Exporting the selected audio using command-line encoder" -msgstr "Exportando el audio seleccionado utilizando el codificador de línea de comandos" +msgstr "" +"Exportando el audio seleccionado utilizando el codificador de línea de" +" comandos" #: src/export/ExportCL.cpp msgid "Exporting the audio using command-line encoder" @@ -10346,7 +10757,9 @@ msgstr "&Aceptar" #: src/export/ExportCL.cpp msgid "You've specified a file name without an extension. Are you sure?" -msgstr "Ha indicado un nombre de archivo sin extensión. ¿Está seguro de que desea continuar?" +msgstr "" +"Ha indicado un nombre de archivo sin extensión. ¿Está seguro de que desea" +" continuar?" #: src/export/ExportCL.cpp msgid "Program name appears to be missing." @@ -10373,7 +10786,9 @@ msgstr "" #: src/export/ExportFFmpeg.cpp #, c-format msgid "FFmpeg : ERROR - Can't determine format description for file \"%s\"." -msgstr "FFmpeg : ERROR - No se puede determinar la descripción de formato del archivo \"%s\"." +msgstr "" +"FFmpeg : ERROR - No se puede determinar la descripción de formato del archivo" +" \"%s\"." #: src/export/ExportFFmpeg.cpp msgid "FFmpeg Error" @@ -10386,17 +10801,25 @@ msgstr "FFmpeg : ERROR - No se puede ubicar el contexto del formato de salida." #: src/export/ExportFFmpeg.cpp #, c-format msgid "FFmpeg : ERROR - Can't add audio stream to output file \"%s\"." -msgstr "FFmpeg : ERROR - No se puede agregar el flujo de audio al archivo de salida \"%s\"." +msgstr "" +"FFmpeg : ERROR - No se puede agregar el flujo de audio al archivo de salida" +" \"%s\"." #: src/export/ExportFFmpeg.cpp #, c-format -msgid "FFmpeg : ERROR - Can't open output file \"%s\" to write. Error code is %d." -msgstr "FFmpeg : ERROR - No se puede abrir el archivo de salida \"%s\" en modo escritura. El código de error es %d." +msgid "" +"FFmpeg : ERROR - Can't open output file \"%s\" to write. Error code is %d." +msgstr "" +"FFmpeg : ERROR - No se puede abrir el archivo de salida \"%s\" en modo" +" escritura. El código de error es %d." #: src/export/ExportFFmpeg.cpp #, c-format -msgid "FFmpeg : ERROR - Can't write headers to output file \"%s\". Error code is %d." -msgstr "FFmpeg : ERROR - No se pueden escribir las cabeceras en el archivo de salida \"%s\". El código de error es %d." +msgid "" +"FFmpeg : ERROR - Can't write headers to output file \"%s\". Error code is %d." +msgstr "" +"FFmpeg : ERROR - No se pueden escribir las cabeceras en el archivo de salida" +" \"%s\". El código de error es %d." #. i18n-hint: "codec" is short for a "coder-decoder" algorithm #: src/export/ExportFFmpeg.cpp @@ -10430,7 +10853,8 @@ msgstr "" #: src/export/ExportFFmpeg.cpp msgid "FFmpeg : ERROR - Can't allocate buffer to read into from audio FIFO." -msgstr "FFmpeg : ERROR - No se puede ubicar el buffer para leer dentro del audio FIFO." +msgstr "" +"FFmpeg : ERROR - No se puede ubicar el buffer para leer dentro del audio FIFO." #: src/export/ExportFFmpeg.cpp msgid "FFmpeg : ERROR - Could not get sample buffer size" @@ -10438,7 +10862,8 @@ msgstr "FFmpeg : ERROR - No se puede obtener el tamaño del buffer de muestra" #: src/export/ExportFFmpeg.cpp msgid "FFmpeg : ERROR - Could not allocate bytes for samples buffer" -msgstr "FFmpeg : ERROR - No se pueden ubicar los bytes para el buffer de muestra" +msgstr "" +"FFmpeg : ERROR - No se pueden ubicar los bytes para el buffer de muestra" #: src/export/ExportFFmpeg.cpp msgid "FFmpeg : ERROR - Could not setup audio frame" @@ -10454,7 +10879,9 @@ msgstr "FFmpeg : ERROR - Demasiados datos pendientes." #: src/export/ExportFFmpeg.cpp msgid "FFmpeg : ERROR - Couldn't write last audio frame to output file." -msgstr "FFmpeg : ERROR - No se pudo escribir la última trama de audio en el archivo de salida." +msgstr "" +"FFmpeg : ERROR - No se pudo escribir la última trama de audio en el archivo" +" de salida." #: src/export/ExportFFmpeg.cpp msgid "FFmpeg : ERROR - nAudioFrameSizeOut too large." @@ -10466,8 +10893,12 @@ msgstr "FFmpeg : ERROR - No se puede codificar la trama de audio." #: src/export/ExportFFmpeg.cpp #, c-format -msgid "Attempted to export %d channels, but maximum number of channels for selected output format is %d" -msgstr "Se intentó exportar %d canales, pero el número máximo de canales para el formato de salida seleccionado es de %d" +msgid "" +"Attempted to export %d channels, but maximum number of channels for selected" +" output format is %d" +msgstr "" +"Se intentó exportar %d canales, pero el número máximo de canales para el" +" formato de salida seleccionado es de %d" #: src/export/ExportFFmpeg.cpp #, c-format @@ -10503,7 +10934,8 @@ msgid "" "The project sample rate (%d) and bit rate (%d kbps) combination is not\n" "supported by the current output file format. " msgstr "" -"La combinación de frecuencia de muestreo (%d) y velocidad de transferencia (%d kbps) del proyecto no es\n" +"La combinación de frecuencia de muestreo (%d) y velocidad de transferencia (" +"%d kbps) del proyecto no es\n" "compatible con el formato de archivo de salida actual." #: src/export/ExportFFmpeg.cpp src/export/ExportMP3.cpp @@ -10786,8 +11218,12 @@ msgid "Codec:" msgstr "Códec:" #: src/export/ExportFFmpegDialogs.cpp -msgid "Not all formats and codecs are compatible. Nor are all option combinations compatible with all codecs." -msgstr "No todos los formatos y códecs son compatibles. Tampoco lo son todas las combinaciones de parámetros con todos los códecs." +msgid "" +"Not all formats and codecs are compatible. Nor are all option combinations" +" compatible with all codecs." +msgstr "" +"No todos los formatos y códecs son compatibles. Tampoco lo son todas las" +" combinaciones de parámetros con todos los códecs." #: src/export/ExportFFmpegDialogs.cpp msgid "Show All Formats" @@ -10846,7 +11282,8 @@ msgid "" "Recommended - 192000" msgstr "" "Velocidad de transferencia (bits/segundo) - influye en el tamaño y calidad\n" -"del archivo resultante. Algunos códec pueden aceptar sólo valores específicos (128k, 192k, 256k, etc.)\n" +"del archivo resultante. Algunos códec pueden aceptar sólo valores específicos" +" (128k, 192k, 256k, etc.)\n" "0 - automático.\n" "Recomendado - 192000" @@ -11191,7 +11628,9 @@ msgstr "Archivos MP2" #: src/export/ExportMP2.cpp msgid "Cannot export MP2 with this sample rate and bit rate" -msgstr "No se puede exportar a MP2 con esta frecuencia de muestreo y esta velocidad de transferencia" +msgstr "" +"No se puede exportar a MP2 con esta frecuencia de muestreo y esta velocidad" +" de transferencia" #: src/export/ExportMP2.cpp src/export/ExportMP3.cpp src/export/ExportOGG.cpp msgid "Unable to open target file for writing" @@ -11356,10 +11795,12 @@ msgstr "¿Dónde está %s?" #: src/export/ExportMP3.cpp #, c-format msgid "" -"You are linking to lame_enc.dll v%d.%d. This version is not compatible with Audacity %d.%d.%d.\n" +"You are linking to lame_enc.dll v%d.%d. This version is not compatible with" +" Audacity %d.%d.%d.\n" "Please download the latest version of 'LAME for Audacity'." msgstr "" -"Está enlazando con un lame_enc.dll v%d.%d. Esta versión no es compatible con Audacity %d.%d.%d.\n" +"Está enlazando con un lame_enc.dll v%d.%d. Esta versión no es compatible con" +" Audacity %d.%d.%d.\n" "Descargue la última versión disponible de la biblioteca 'LAME para Audacity'." #: src/export/ExportMP3.cpp @@ -11456,7 +11897,8 @@ msgid "" "The project sample rate (%d) and bit rate (%d kbps) combination is not\n" "supported by the MP3 file format. " msgstr "" -"La combinación de frecuencia de muestreo (%d) y velocidad de transferencia (%d kbps) del proyecto no es compatible con el\n" +"La combinación de frecuencia de muestreo (%d) y velocidad de transferencia (" +"%d kbps) del proyecto no es compatible con el\n" "formato de archivo MP3." #: src/export/ExportMP3.cpp @@ -11618,7 +12060,8 @@ msgid "" "\n" "Suggested replacement:" msgstr "" -"El nombre etiqueta o pista \"%s\" no es un valor permitido para un archivo. No puede utilizar %s.\n" +"El nombre etiqueta o pista \"%s\" no es un valor permitido para un archivo." +" No puede utilizar %s.\n" "\n" "Utilice en su lugar:" @@ -11684,7 +12127,8 @@ msgstr "Otros archivos sin comprimir" #: src/export/ExportPCM.cpp msgid "" -"You have attempted to Export a WAV or AIFF file which would be greater than 4GB.\n" +"You have attempted to Export a WAV or AIFF file which would be greater than" +" 4GB.\n" "Audacity cannot do this, the Export was abandoned." msgstr "" "Se ha intentado exportar un archivo WAV o AIFF de un tamaño mayor de 4GB.\n" @@ -11787,11 +12231,14 @@ msgstr "" #, c-format msgid "" "\"%s\" is a playlist file. \n" -"Audacity cannot open this file because it only contains links to other files. \n" -"You may be able to open it in a text editor and download the actual audio files." +"Audacity cannot open this file because it only contains links to other files." +" \n" +"You may be able to open it in a text editor and download the actual audio" +" files." msgstr "" "\"%s\" es una archivo de lista de reproducción. \n" -"Audacity no puede abrir este archivo porque sólo contiene enlaces a otros archivos. \n" +"Audacity no puede abrir este archivo porque sólo contiene enlaces a otros" +" archivos. \n" "Podría abrirlo con un editor de texto y descargar el archivo de audio real." #. i18n-hint: %s will be the filename @@ -11803,7 +12250,8 @@ msgid "" "You need to convert it to a supported audio format, such as WAV or AIFF." msgstr "" "\"%s\" es un archivo de Windows Media Audio. \n" -"Audacity no puede abrir este tipo de archivo por restricciones en su patente. \n" +"Audacity no puede abrir este tipo de archivo por restricciones en su patente." +" \n" "Deberá convertirlo a un formato de audio compatible, como WAV o AIFF." #. i18n-hint: %s will be the filename @@ -11812,10 +12260,12 @@ msgstr "" msgid "" "\"%s\" is an Advanced Audio Coding file.\n" "Without the optional FFmpeg library, Audacity cannot open this type of file.\n" -"Otherwise, you need to convert it to a supported audio format, such as WAV or AIFF." +"Otherwise, you need to convert it to a supported audio format, such as WAV or" +" AIFF." msgstr "" "\"%s\" es un archivo de Advanced Audio Coding. \n" -"Audacity no puede abrir este tipo de archivo sin la biblioteca opcional FFmpeg. \n" +"Audacity no puede abrir este tipo de archivo sin la biblioteca opcional" +" FFmpeg. \n" "Deberá convertirlo a un formato de audio compatible, como WAV o AIFF." #. i18n-hint: %s will be the filename @@ -11867,7 +12317,8 @@ msgid "" "\"%s\" is a Musepack audio file. \n" "Audacity cannot open this type of file. \n" "If you think it might be an mp3 file, rename it to end with \".mp3\" \n" -"and try importing it again. Otherwise you need to convert it to a supported audio \n" +"and try importing it again. Otherwise you need to convert it to a supported" +" audio \n" "format, such as WAV or AIFF." msgstr "" "\"%s\" es un archivo de audio Musepack. \n" @@ -11939,7 +12390,8 @@ msgid "" msgstr "" "Audacity no reconoce el tipo de archivo '%s'.\n" "\n" -"%sPara sin compresión, intente usando Archivo > Importar > Datos en bruto (RAW)." +"%sPara sin compresión, intente usando Archivo > Importar > Datos en bruto" +" (RAW)." #: src/import/Import.cpp msgid "" @@ -11995,10 +12447,12 @@ msgid "" "Use a version of Audacity prior to v3.0.0 to upgrade the project and then\n" "you may import it with this version of Audacity." msgstr "" -"Este proyecto se guardó con la versión 1.0 o anterior de Audacity. El formato ha\n" +"Este proyecto se guardó con la versión 1.0 o anterior de Audacity. El formato" +" ha\n" "cambiado por lo que esta versión de Audacity no puede importar el proyecto.\n" "\n" -"Puede resolverlo utilizando una versión de Audacity anterior a la v.3.0.0 para \n" +"Puede resolverlo utilizando una versión de Audacity anterior a la v.3.0.0" +" para \n" "actualizar el proyecto y a continuación importarlo a la esta versión." #: src/import/ImportAUP.cpp @@ -12044,16 +12498,25 @@ msgid "Couldn't find the project data folder: \"%s\"" msgstr "No se ha podido encontrar la carpeta de datos de proyecto: \"%s\"" #: src/import/ImportAUP.cpp -msgid "MIDI tracks found in project file, but this build of Audacity does not include MIDI support, bypassing track." -msgstr "El proyecto contiene pistas MIDI, pero esta versión de Audacity no cuenta con compatibilidad MIDI, por lo que se omite la pista." +msgid "" +"MIDI tracks found in project file, but this build of Audacity does not" +" include MIDI support, bypassing track." +msgstr "" +"El proyecto contiene pistas MIDI, pero esta versión de Audacity no cuenta con" +" compatibilidad MIDI, por lo que se omite la pista." #: src/import/ImportAUP.cpp msgid "Project Import" msgstr "Importar proyecto" #: src/import/ImportAUP.cpp -msgid "The active project already has a time track and one was encountered in the project being imported, bypassing imported time track." -msgstr "El proyecto activo ya cuenta con una pista de tiempo, pero se ha encontrado otra en el proyecto que se está importando, por lo que se omite la pista de tiempo importada." +msgid "" +"The active project already has a time track and one was encountered in the" +" project being imported, bypassing imported time track." +msgstr "" +"El proyecto activo ya cuenta con una pista de tiempo, pero se ha encontrado" +" otra en el proyecto que se está importando, por lo que se omite la pista de" +" tiempo importada." #: src/import/ImportAUP.cpp msgid "Invalid sequence 'maxsamples' attribute." @@ -12103,11 +12566,13 @@ msgstr "" #: src/import/ImportAUP.cpp msgid "Missing or invalid pcmaliasblockfile 'aliasstart' attribute." -msgstr "El atributo pcmaliasblockfile 'aliasstart' no se encuentra o es inválido." +msgstr "" +"El atributo pcmaliasblockfile 'aliasstart' no se encuentra o es inválido." #: src/import/ImportAUP.cpp msgid "Missing or invalid pcmaliasblockfile 'aliaslen' attribute." -msgstr "El atributo pcmaliasblockfile 'aliaslen' no se encuentra o es inválido." +msgstr "" +"El atributo pcmaliasblockfile 'aliaslen' no se encuentra o es inválido." #: src/import/ImportAUP.cpp #, c-format @@ -12142,8 +12607,11 @@ msgstr "Archivos compatibles con FFmpeg" #. i18n-hint: "codec" is short for a "coder-decoder" algorithm #: src/import/ImportFFmpeg.cpp #, c-format -msgid "Index[%02x] Codec[%s], Language[%s], Bitrate[%s], Channels[%d], Duration[%d]" -msgstr "Índice[%02x] Códec[%s], Idioma[%s], Velocidad de transferencia[%s], Canales[%d], Duración[%d]" +msgid "" +"Index[%02x] Codec[%s], Language[%s], Bitrate[%s], Channels[%d], Duration[%d]" +msgstr "" +"Índice[%02x] Códec[%s], Idioma[%s], Velocidad de transferencia[%s], Canales[" +"%d], Duración[%d]" #: src/import/ImportFLAC.cpp msgid "FLAC files" @@ -12204,7 +12672,9 @@ msgstr "Duración no válida en archivo LOF." #: src/import/ImportLOF.cpp msgid "MIDI tracks cannot be offset individually, only audio files can be." -msgstr "Las pistas MIDI no pueden ser trasladadas individualmente, sólo se puede hacer con los archivos de audio." +msgstr "" +"Las pistas MIDI no pueden ser trasladadas individualmente, sólo se puede" +" hacer con los archivos de audio." #. i18n-hint: You do not need to translate "LOF" #: src/import/ImportLOF.cpp @@ -12223,7 +12693,8 @@ msgstr "Importar MIDI" #: src/import/ImportMIDI.cpp #, c-format msgid "Could not open file %s: Filename too short." -msgstr "No se ha podido abrir el archivo %s: Nombre de archivo demasiado corto." +msgstr "" +"No se ha podido abrir el archivo %s: Nombre de archivo demasiado corto." #: src/import/ImportMIDI.cpp #, c-format @@ -12480,7 +12951,8 @@ msgstr "No se puede establecer la calidad de renderizado de QuickTime" #: src/import/ImportQT.cpp msgid "Unable to set QuickTime discrete channels property" -msgstr "No se puede establecer la propiedad de separación de canales en QuickTime" +msgstr "" +"No se puede establecer la propiedad de separación de canales en QuickTime" #: src/import/ImportQT.cpp msgid "Unable to get QuickTime sample size property" @@ -12778,7 +13250,8 @@ msgstr "Silenciar" #: src/menus/EditMenus.cpp #, c-format msgid "Trim selected audio tracks from %.2f seconds to %.2f seconds" -msgstr "Pistas seleccionadas recortadas desde %.2f segundos hasta %.2f segundos" +msgstr "" +"Pistas seleccionadas recortadas desde %.2f segundos hasta %.2f segundos" #: src/menus/EditMenus.cpp msgid "Trim Audio" @@ -14137,8 +14610,11 @@ msgid "Created new label track" msgstr "Nueva pista de etiqueta creada" #: src/menus/TrackMenus.cpp -msgid "This version of Audacity only allows one time track for each project window." -msgstr "Esta versión de Audacity sólo permite una pista de tiempo en cada ventana de proyecto." +msgid "" +"This version of Audacity only allows one time track for each project window." +msgstr "" +"Esta versión de Audacity sólo permite una pista de tiempo en cada ventana de" +" proyecto." #: src/menus/TrackMenus.cpp msgid "Created new time track" @@ -14173,8 +14649,12 @@ msgstr "Seleccione al menos una pista de audio o una pista MIDI" #: src/menus/TrackMenus.cpp #, c-format -msgid "Alignment completed: MIDI from %.2f to %.2f secs, Audio from %.2f to %.2f secs." -msgstr "Alignment completed: MIDI from %.2f to %.2f secs, Audio from %.2f to %.2f secs." +msgid "" +"Alignment completed: MIDI from %.2f to %.2f secs, Audio from %.2f to %.2f" +" secs." +msgstr "" +"Alignment completed: MIDI from %.2f to %.2f secs, Audio from %.2f to %.2f" +" secs." #: src/menus/TrackMenus.cpp msgid "Sync MIDI with Audio" @@ -14182,8 +14662,12 @@ msgstr "Sincronizar MIDI con audio" #: src/menus/TrackMenus.cpp #, c-format -msgid "Alignment error: input too short: MIDI from %.2f to %.2f secs, Audio from %.2f to %.2f secs." -msgstr "Error de alineado: la entrada es demasiado breve: MIDI desde %.2f hasta %.2f seg, Audio desde %.2f hasta %.2f seg." +msgid "" +"Alignment error: input too short: MIDI from %.2f to %.2f secs, Audio from " +"%.2f to %.2f secs." +msgstr "" +"Error de alineado: la entrada es demasiado breve: MIDI desde %.2f hasta %.2f" +" seg, Audio desde %.2f hasta %.2f seg." #: src/menus/TrackMenus.cpp msgid "Internal error reported by alignment process." @@ -14445,7 +14929,8 @@ msgid "" "\n" "Please save or close this project and try again." msgstr "" -"La grabación programada no puede ser usada mientras haya cambios sin guardar.\n" +"La grabación programada no puede ser usada mientras haya cambios sin" +" guardar.\n" "\n" "Guarde los cambios o cierre este proyecto e inténtelo de nuevo." @@ -14771,25 +15256,27 @@ msgid "%s %2.0f%% complete. Click to change task focal point." msgstr "%s %2.0f%% completado. Haga clic para cambiar el foco de la tarea." #: src/prefs/ApplicationPrefs.cpp -#, fuzzy msgid "Preferences for Application" -msgstr "Preferencias de calidad" +msgstr "Preferencias de la aplicación" #. i18n-hint: Title for the update notifications panel in the preferences dialog. #: src/prefs/ApplicationPrefs.cpp msgid "Update notifications" -msgstr "" +msgstr "Notificación de actualizaciones" #. i18n-hint: Check-box title that configures periodic updates checking. #: src/prefs/ApplicationPrefs.cpp -#, fuzzy msgctxt "application preferences" msgid "&Check for updates" -msgstr "&Buscar actualizaciones..." +msgstr "&Comprobar actualizaciones..." #: src/prefs/ApplicationPrefs.cpp -msgid "App update checking requires network access. In order to protect your privacy, Audacity does not store any personal information." +msgid "" +"App update checking requires network access. In order to protect your" +" privacy, Audacity does not store any personal information." msgstr "" +"La comprobación de actualizaciones necesita acceso a la red. Para proteger su" +" privacidad, Audacity no almacena ninguna información personal." #: src/prefs/BatchPrefs.cpp src/prefs/BatchPrefs.h msgid "Batch" @@ -14842,7 +15329,6 @@ msgstr "&Dispositivo:" #. i18n-hint: modifier as in "Recording preferences", not progressive verb #: src/prefs/DevicePrefs.cpp src/prefs/RecordingPrefs.cpp #: src/prefs/RecordingPrefs.h -#, fuzzy msgctxt "preference" msgid "Recording" msgstr "Grabación" @@ -14907,7 +15393,8 @@ msgid "" "Leave a field empty to go to the last directory used for that operation.\n" "Fill in a field to always go to that directory for that operation." msgstr "" -"Deje el campo vacío para ir a la última carpeta utilizada para esa operación.\n" +"Deje el campo vacío para ir a la última carpeta utilizada para esa" +" operación.\n" "Rellene el campo para ir siempre a esa carpeta para esa operación." #: src/prefs/DirectoriesPrefs.cpp @@ -14981,7 +15468,8 @@ msgstr "Seleccione una ubicacóin" #: src/prefs/DirectoriesPrefs.cpp #, c-format msgid "Directory %s is not suitable (at risk of being cleaned out)" -msgstr "La carpeta %s no es apropiada (tiene riesgo de ser limpiada por el sistema)" +msgstr "" +"La carpeta %s no es apropiada (tiene riesgo de ser limpiada por el sistema)" #: src/prefs/DirectoriesPrefs.cpp #, c-format @@ -14998,8 +15486,12 @@ msgid "Directory %s is not writable" msgstr "La carpeta %s no tiene permiso de escritura" #: src/prefs/DirectoriesPrefs.cpp -msgid "Changes to temporary directory will not take effect until Audacity is restarted" -msgstr "Los cambios de la carpeta temporal no tendrán efecto hasta que se reinicie Audacity" +msgid "" +"Changes to temporary directory will not take effect until Audacity is" +" restarted" +msgstr "" +"Los cambios de la carpeta temporal no tendrán efecto hasta que se reinicie" +" Audacity" #: src/prefs/DirectoriesPrefs.cpp msgid "Temp Directory Update" @@ -15157,8 +15649,16 @@ msgid "Unused filters:" msgstr "Filtros no usados:" #: src/prefs/ExtImportPrefs.cpp -msgid "There are space characters (spaces, newlines, tabs or linefeeds) in one of the items. They are likely to break the pattern matching. Unless you know what you are doing, it is recommended to trim spaces. Do you want Audacity to trim spaces for you?" -msgstr "Hay caracteres en blanco (espacios, saltos de línea, tabuladores o retornos de carro) en uno de los elementos. Parece que van a romper el patrón. A no ser que sepa exactamente lo que está haciendo es recomendable que elimine esos caracteres. ¿Desea que Audacity elimine los espacios?" +msgid "" +"There are space characters (spaces, newlines, tabs or linefeeds) in one of" +" the items. They are likely to break the pattern matching. Unless you know" +" what you are doing, it is recommended to trim spaces. Do you want Audacity" +" to trim spaces for you?" +msgstr "" +"Hay caracteres en blanco (espacios, saltos de línea, tabuladores o retornos" +" de carro) en uno de los elementos. Parece que van a romper el patrón. A no" +" ser que sepa exactamente lo que está haciendo es recomendable que elimine" +" esos caracteres. ¿Desea que Audacity elimine los espacios?" #: src/prefs/ExtImportPrefs.cpp msgid "Spaces detected" @@ -15425,7 +15925,9 @@ msgstr "E&stablecer" #: src/prefs/KeyConfigPrefs.cpp msgid "Note: Pressing Cmd+Q will quit. All other keys are valid." -msgstr "Nota: Pulsando Cmd+Q se cerrará el programa. El resto de las teclas son válidas." +msgstr "" +"Nota: Pulsando Cmd+Q se cerrará el programa. El resto de las teclas son" +" válidas." #: src/prefs/KeyConfigPrefs.cpp msgid "&Import..." @@ -15446,7 +15948,8 @@ msgstr "" #: src/prefs/KeyConfigPrefs.cpp msgid "Select an XML file containing Audacity keyboard shortcuts..." -msgstr "Seleccione un archivo XML que contenga atajos de teclado de Audacity..." +msgstr "" +"Seleccione un archivo XML que contenga atajos de teclado de Audacity..." #: src/prefs/KeyConfigPrefs.cpp msgid "Error Importing Keyboard Shortcuts" @@ -15455,10 +15958,12 @@ msgstr "Error al importar los atajos de teclado" #: src/prefs/KeyConfigPrefs.cpp #, c-format msgid "" -"The file with the shortcuts contains illegal shortcut duplicates for \"%s\" and \"%s\".\n" +"The file with the shortcuts contains illegal shortcut duplicates for \"%s\"" +" and \"%s\".\n" "Nothing is imported." msgstr "" -"El archivo con los atajos de teclado contiene combinaciones duplicadas para \"%s\"y \"%s\".\n" +"El archivo con los atajos de teclado contiene combinaciones duplicadas para" +" \"%s\"y \"%s\".\n" "No se ha importado nada." #: src/prefs/KeyConfigPrefs.cpp @@ -15469,10 +15974,12 @@ msgstr "%d accesos directos cargados\n" #: src/prefs/KeyConfigPrefs.cpp msgid "" "\n" -"The following commands are not mentioned in the imported file, but have their shortcuts removed because of the conflict with other new shortcuts:\n" +"The following commands are not mentioned in the imported file, but have their" +" shortcuts removed because of the conflict with other new shortcuts:\n" msgstr "" "\n" -"Los comandos siguientes no se encontraban en el archivo importado, pero se han eliminado sus atajos de teclado por conflictos con otros nuevos:\n" +"Los comandos siguientes no se encontraban en el archivo importado, pero se" +" han eliminado sus atajos de teclado por conflictos con otros nuevos:\n" #: src/prefs/KeyConfigPrefs.cpp msgid "Loading Keyboard Shortcuts" @@ -15639,21 +16146,29 @@ msgstr "Preferencias de módulo" #: src/prefs/ModulePrefs.cpp msgid "" -"These are experimental modules. Enable them only if you've read the Audacity Manual\n" +"These are experimental modules. Enable them only if you've read the Audacity" +" Manual\n" "and know what you are doing." msgstr "" -"Estos son módulos experimentales. Actívelos sólo si ha consultado el manual de Audacity\n" +"Estos son módulos experimentales. Actívelos sólo si ha consultado el manual" +" de Audacity\n" "y sabe lo que está haciendo." #. i18n-hint preserve the leading spaces #: src/prefs/ModulePrefs.cpp -msgid " 'Ask' means Audacity will ask if you want to load the module each time it starts." -msgstr "'Preguntar' significa que Audacity le preguntará si desea cargar el módulo en cada nuevo inicio." +msgid "" +" 'Ask' means Audacity will ask if you want to load the module each time it" +" starts." +msgstr "" +"'Preguntar' significa que Audacity le preguntará si desea cargar el módulo en" +" cada nuevo inicio." #. i18n-hint preserve the leading spaces #: src/prefs/ModulePrefs.cpp msgid " 'Failed' means Audacity thinks the module is broken and won't run it." -msgstr "'Fallo' significa que Audacity considera que el módulo está estropeado y no lo ejecutará." +msgstr "" +"'Fallo' significa que Audacity considera que el módulo está estropeado y no" +" lo ejecutará." #. i18n-hint preserve the leading spaces #: src/prefs/ModulePrefs.cpp @@ -15662,7 +16177,9 @@ msgstr "'Nuevo' significa que aún no se ha elegido ninguna opción." #: src/prefs/ModulePrefs.cpp msgid "Changes to these settings only take effect when Audacity starts up." -msgstr "Los cambios de esta configuración sólo tendrán efecto cuando se reinicie Audacity." +msgstr "" +"Los cambios de esta configuración sólo tendrán efecto cuando se reinicie" +" Audacity." #: src/prefs/ModulePrefs.cpp msgid "Ask" @@ -16372,31 +16889,39 @@ msgstr "Información" msgid "" "Themability is an experimental feature.\n" "\n" -"To try it out, click \"Save Theme Cache\" then find and modify the images and colors in\n" +"To try it out, click \"Save Theme Cache\" then find and modify the images and" +" colors in\n" "ImageCacheVxx.png using an image editor such as the Gimp.\n" "\n" -"Click \"Load Theme Cache\" to load the changed images and colors back into Audacity.\n" +"Click \"Load Theme Cache\" to load the changed images and colors back into" +" Audacity.\n" "\n" -"(Only the Transport Toolbar and the colors on the wavetrack are currently affected, even\n" +"(Only the Transport Toolbar and the colors on the wavetrack are currently" +" affected, even\n" "though the image file shows other icons too.)" msgstr "" "El uso de temas es una característica experimental.\n" "\n" -"Para probarla, haga clic en \"Guardar caché de tema\" cuando encuentre y modifique las imágenes y colores en \n" +"Para probarla, haga clic en \"Guardar caché de tema\" cuando encuentre y" +" modifique las imágenes y colores en \n" "ImageCacheVxx.png usando un editor de imágenes como \n" "Gimp.\n" "\n" -"Haga clic en \"Cargar caché de tema\" para cargar las imágenes cambiada y colores en Audacity.\n" +"Haga clic en \"Cargar caché de tema\" para cargar las imágenes cambiada y" +" colores en Audacity.\n" "\n" -"[Sólo la barra de herramientas de reproducción y los colores de las pistas de onda se verán afectadas, incluso cuando\n" +"[Sólo la barra de herramientas de reproducción y los colores de las pistas de" +" onda se verán afectadas, incluso cuando\n" "el archivo de imagen muestra también otros iconos.]" #: src/prefs/ThemePrefs.cpp msgid "" -"Saving and loading individual theme files uses a separate file for each image, but is\n" +"Saving and loading individual theme files uses a separate file for each" +" image, but is\n" "otherwise the same idea." msgstr "" -"El guardado y carga de archivos de tema individuales utiliza un archivo separado para cada imagen,\n" +"El guardado y carga de archivos de tema individuales utiliza un archivo" +" separado para cada imagen,\n" "pero es el mismo concepto." #. i18n-hint: && in here is an escape character to get a single & on screen, @@ -16461,7 +16986,8 @@ msgstr "La edición de un &bloque puede desplazar otros bloques" #: src/prefs/TracksBehaviorsPrefs.cpp msgid "\"Move track focus\" c&ycles repeatedly through tracks" -msgstr "'Mover la pista seleccionada' se repite &cíclicamente a través de las pistas" +msgstr "" +"'Mover la pista seleccionada' se repite &cíclicamente a través de las pistas" #: src/prefs/TracksBehaviorsPrefs.cpp msgid "&Type to create a label" @@ -17083,7 +17609,8 @@ msgstr "Barra de herramientas de %s" #: src/toolbars/ToolBar.cpp msgid "Click and drag to resize toolbar" -msgstr "Haga clic y arrastre para modificar el tamaño de la barra de herramientas" +msgstr "" +"Haga clic y arrastre para modificar el tamaño de la barra de herramientas" #: src/toolbars/ToolDock.cpp msgid "ToolDock" @@ -17255,8 +17782,12 @@ msgstr "Bajar una octa&va" #: src/tracks/playabletrack/notetrack/ui/NoteTrackVZoomHandle.cpp #: src/tracks/playabletrack/wavetrack/ui/WaveTrackVZoomHandle.cpp -msgid "Click to vertically zoom in. Shift-click to zoom out. Drag to specify a zoom region." -msgstr "Haga clic para acercar verticalmente, Mayús-Clic para alejar. Arrastre para acercar una región en concreto." +msgid "" +"Click to vertically zoom in. Shift-click to zoom out. Drag to specify a zoom" +" region." +msgstr "" +"Haga clic para acercar verticalmente, Mayús-Clic para alejar. Arrastre para" +" acercar una región en concreto." #: src/tracks/playabletrack/notetrack/ui/NoteTrackVZoomHandle.cpp #: src/tracks/playabletrack/wavetrack/ui/WaveTrackVZoomHandle.cpp @@ -17335,7 +17866,9 @@ msgstr "Haga clic y arrastre para editar las muestras" #: src/tracks/playabletrack/wavetrack/ui/SampleHandle.cpp msgid "To use Draw, zoom in further until you can see the individual samples." -msgstr "Para utilizar la herramienta de dibujo debe acercar la pista hasta poder ver cada muestra" +msgstr "" +"Para utilizar la herramienta de dibujo debe acercar la pista hasta poder ver" +" cada muestra" #: src/tracks/playabletrack/wavetrack/ui/SampleHandle.cpp msgid "Moved Samples" @@ -17589,8 +18122,11 @@ msgid "%.0f%% Right" msgstr "%.0f%% Derecha" #: src/tracks/playabletrack/wavetrack/ui/WaveTrackView.cpp -msgid "Click and drag to adjust sizes of sub-views, double-click to split evenly" -msgstr "Haga clic y arrastre para ajustar el tamaño, doble clic para distribuir uniformemente" +msgid "" +"Click and drag to adjust sizes of sub-views, double-click to split evenly" +msgstr "" +"Haga clic y arrastre para ajustar el tamaño, doble clic para distribuir" +" uniformemente" #: src/tracks/playabletrack/wavetrack/ui/WaveTrackView.cpp msgid "Click and drag to rearrange sub-views" @@ -17775,7 +18311,9 @@ msgstr "Desplazar el puntero del ratón a búsqueda" #: src/tracks/ui/Scrubbing.cpp msgid "Move mouse pointer to Scrub" -msgstr "Desplazar el puntero del ratón para realizar la reproducción por desplazamiento" +msgstr "" +"Desplazar el puntero del ratón para realizar la reproducción por" +" desplazamiento" #: src/tracks/ui/Scrubbing.cpp msgid "Scru&bbing" @@ -17799,15 +18337,21 @@ msgstr "Haga clic y arrastre para mover el límite derecho de la selección." #: src/tracks/ui/SelectHandle.cpp msgid "Click and drag to move bottom selection frequency." -msgstr "Haga clic y arrastre para mover la parte inferior de la selección de frecuencia." +msgstr "" +"Haga clic y arrastre para mover la parte inferior de la selección de" +" frecuencia." #: src/tracks/ui/SelectHandle.cpp msgid "Click and drag to move top selection frequency." -msgstr "Haga clic y arrastre para mover la parte superior de la selección de frecuencia." +msgstr "" +"Haga clic y arrastre para mover la parte superior de la selección de" +" frecuencia." #: src/tracks/ui/SelectHandle.cpp msgid "Click and drag to move center selection frequency to a spectral peak." -msgstr "Haga clic y arrastre para mover el centro de selección de frecuencia a un pico espectral." +msgstr "" +"Haga clic y arrastre para mover el centro de selección de frecuencia a un" +" pico espectral." #: src/tracks/ui/SelectHandle.cpp msgid "Click and drag to move center selection frequency." @@ -17830,7 +18374,8 @@ msgstr "Modo multiherramienta: %s para preferencias de ratón y teclado" #: src/tracks/ui/SelectHandle.cpp msgid "Click and drag to set frequency bandwidth." -msgstr "Haga clic y arrastre para establecer el ancho de banda de la frecuencia." +msgstr "" +"Haga clic y arrastre para establecer el ancho de banda de la frecuencia." #: src/tracks/ui/SelectHandle.cpp msgid "Click and drag to select audio" @@ -17897,7 +18442,9 @@ msgstr "Ctrl+Clic" #: src/tracks/ui/TrackSelectHandle.cpp #, c-format msgid "%s to select or deselect track. Drag up or down to change track order." -msgstr "%s para seleccionar o deseleccionar la pista. Arrastrar arriba o abajo para cambiar orden." +msgstr "" +"%s para seleccionar o deseleccionar la pista. Arrastrar arriba o abajo para" +" cambiar orden." #. i18n-hint: %s is replaced by (translation of) 'Ctrl+Click' on windows, 'Command+Click' on Mac #: src/tracks/ui/TrackSelectHandle.cpp @@ -17940,7 +18487,8 @@ msgstr "Error al buscar actualizaciones" #: src/update/UpdateManager.cpp msgctxt "update dialog" msgid "Unable to connect to Audacity update server." -msgstr "No se ha podido conectar con el servidor de actualizaciones de Audacity" +msgstr "" +"No se ha podido conectar con el servidor de actualizaciones de Audacity" #: src/update/UpdateManager.cpp msgctxt "update dialog" @@ -17960,31 +18508,39 @@ msgstr "No se puede abrir el enlace de descarga de Audacity" #. i18n-hint: Title of the app update notice dialog. #: src/update/UpdateNoticeDialog.cpp msgid "App update checking" -msgstr "" +msgstr "Comprobación de actualizaciones" #: src/update/UpdateNoticeDialog.cpp -msgid "To stay up to date, you will receive an in-app notification whenever there is a new version of Audacity available to download." +msgid "" +"To stay up to date, you will receive an in-app notification whenever there is" +" a new version of Audacity available to download." msgstr "" +"Para mantenerse al día, recibirá una notificación en la aplicación cada vez" +" que se encuentre disponible una nueva versión de Audacity." #: src/update/UpdateNoticeDialog.cpp -msgid "In order to protect your privacy, Audacity does not collect any personal information. However, app update checking does require network access." +msgid "" +"In order to protect your privacy, Audacity does not collect any personal" +" information. However, app update checking does require network access." msgstr "" +"Para proteger su privacidad, Audacity no recopila ningún dato personal. No" +" obstante, la comprobación de actualizaciones requiere acceso a la red." #: src/update/UpdateNoticeDialog.cpp #, c-format msgid "You can turn off app update checking at any time in %s." msgstr "" +"Puede desactiva la comprobación de actualizaciones en cualquier momento en %s." #. i18n-hint: Title of the app update notice dialog. #: src/update/UpdateNoticeDialog.cpp msgid "App updates" -msgstr "" +msgstr "Comprobación de actualizaciones" #. i18n-hint: a page in the Preferences dialog; use same name #: src/update/UpdateNoticeDialog.cpp -#, fuzzy msgid "Preferences > Application" -msgstr "Preferencias de calidad" +msgstr "Preferencias > Aplicación" #: src/update/UpdatePopupDialog.cpp msgctxt "update dialog" @@ -18597,28 +19153,29 @@ msgstr "Confirmar cierre" #. i18n-hint: %s is replaced with a directory path. #: src/widgets/UnwritableLocationErrorDialog.cpp -#, fuzzy, c-format +#, c-format msgid "Unable to write files to directory: %s." -msgstr "No se puede leer los valores predefinidos de \"%s\"" +msgstr "No se puede escribir en la carpeta: %s." #. i18n-hint: This message describes the error in the Error dialog. #: src/widgets/UnwritableLocationErrorDialog.cpp -msgid "Please check that the directory exists, has the necessary permissions, and the drive isn't full." +msgid "" +"Please check that the directory exists, has the necessary permissions, and" +" the drive isn't full." msgstr "" +"Compruebe que la carpeta existe, que dispone de los permisos necesarios y que" +" el disco no está lleno." #. i18n-hint: %s is replaced with 'Preferences > Directories'. #: src/widgets/UnwritableLocationErrorDialog.cpp -#, fuzzy, c-format +#, c-format msgid "You can change the directory in %s." -msgstr "" -"No se ha podido crear la carpeta:\n" -" %s" +msgstr "Puede cambiar la carpeta en %s." #. i18n-hint: Hyperlink title that opens Preferences dialog on Directories page. #: src/widgets/UnwritableLocationErrorDialog.cpp -#, fuzzy msgid "Preferences > Directories" -msgstr "Preferencias de carpetas" +msgstr "Preferencias > Carpetas" #: src/widgets/Warning.cpp msgid "Don't show this warning again" @@ -18732,7 +19289,8 @@ msgstr "Paul Licameli" #: plug-ins/spectral-delete.ny plug-ins/tremolo.ny plug-ins/vocalrediso.ny #: plug-ins/vocoder.ny msgid "Released under terms of the GNU General Public License version 2" -msgstr "Publicado bajo los términos de la Licencia Pública General de GNU versión 2" +msgstr "" +"Publicado bajo los términos de la Licencia Pública General de GNU versión 2" #: plug-ins/SpectralEditMulti.ny plug-ins/SpectralEditParametricEQ.ny #: plug-ins/SpectralEditShelves.ny @@ -18795,10 +19353,12 @@ msgstr "~aFrecuencia central debe ser mayor que 0 Hz." #, lisp-format msgid "" "~aFrequency selection is too high for track sample rate.~%~\n" -" For the current track, the high frequency setting cannot~%~\n" +" For the current track, the high frequency setting" +" cannot~%~\n" " be greater than ~a Hz" msgstr "" -"~aLa selección de frecuencia es demasiado alta para la frecuencia de muestreo de la pista.~%~\n" +"~aLa selección de frecuencia es demasiado alta para la frecuencia de muestreo" +" de la pista.~%~\n" " Para esta pista la frecuencia alta no puede ~%~\n" " ser mayor de ~a Hz" @@ -18994,8 +19554,10 @@ msgid "Benjamin Schwartz and Steve Daulton" msgstr "Benjamin Schwartz y Steve Daulton" #: plug-ins/clipfix.ny -msgid "Licensing confirmed under terms of the GNU General Public License version 2" -msgstr "Licenciado según los términos de la Licencia Pública General de GNU versión 2" +msgid "" +"Licensing confirmed under terms of the GNU General Public License version 2" +msgstr "" +"Licenciado según los términos de la Licencia Pública General de GNU versión 2" #: plug-ins/clipfix.ny msgid "Threshold of Clipping (%)" @@ -19021,7 +19583,8 @@ msgstr "Error.~%Selección incorrecta.~%Se ha seleccionado más de dos bloques." #: plug-ins/crossfadeclips.ny #, lisp-format msgid "Error.~%Invalid selection.~%Empty space at start/ end of the selection." -msgstr "Error.~%Selección incorrecta.~%Espacio vació al inicio/final de la selección." +msgstr "" +"Error.~%Selección incorrecta.~%Espacio vació al inicio/final de la selección." #: plug-ins/crossfadeclips.ny #, lisp-format @@ -19344,7 +19907,8 @@ msgid "" " Track sample rate is ~a Hz~%~\n" " Frequency must be less than ~a Hz." msgstr "" -"Error:~%~%La frecuencia (~a Hz) es demasiado alta para la frecuencia de muestreo de la pista.~%~%~\n" +"Error:~%~%La frecuencia (~a Hz) es demasiado alta para la frecuencia de" +" muestreo de la pista.~%~%~\n" " La frecuencia de muestreo de la pista es de ~a Hz.~%~\n" " La frecuencia debe ser menor de ~a Hz." @@ -19354,8 +19918,11 @@ msgid "Label Sounds" msgstr "Etiquetar sonidos" #: plug-ins/label-sounds.ny plug-ins/noisegate.ny -msgid "Released under terms of the GNU General Public License version 2 or later." -msgstr "Publicado bajo los términos de la Licencia Pública General de GNU versión 2 o posterior." +msgid "" +"Released under terms of the GNU General Public License version 2 or later." +msgstr "" +"Publicado bajo los términos de la Licencia Pública General de GNU versión 2 o" +" posterior." #: plug-ins/label-sounds.ny msgid "Threshold level (dB)" @@ -19426,7 +19993,9 @@ msgstr "~ah ~am ~as" #: plug-ins/label-sounds.ny #, lisp-format msgid "Too many silences detected.~%Only the first 10000 labels added." -msgstr "Se han detectado demasiados silencios. ~% Sólo se añaden las primeras 10000 etiquetas." +msgstr "" +"Se han detectado demasiados silencios. ~% Sólo se añaden las primeras 10000" +" etiquetas." #. i18n-hint: '~a' will be replaced by a time duration #: plug-ins/label-sounds.ny @@ -19436,13 +20005,21 @@ msgstr "Error. ~% La selección debe ser menor que ~a." #: plug-ins/label-sounds.ny #, lisp-format -msgid "No sounds found.~%Try lowering the 'Threshold' or reduce 'Minimum sound duration'." -msgstr "No se han encontrado sonidos. ~% Intente bajar el 'Umbral' o reducir el valor 'Duración mínima del silencio'." +msgid "" +"No sounds found.~%Try lowering the 'Threshold' or reduce 'Minimum sound" +" duration'." +msgstr "" +"No se han encontrado sonidos. ~% Intente bajar el 'Umbral' o reducir el" +" valor 'Duración mínima del silencio'." #: plug-ins/label-sounds.ny #, lisp-format -msgid "Labelling regions between sounds requires~%at least two sounds.~%Only one sound detected." -msgstr "El etiquetado de regiones entre silencios requiere ~%dos sonidos al menos.~%Sólo se ha detectado uno." +msgid "" +"Labelling regions between sounds requires~%at least two sounds.~%Only one" +" sound detected." +msgstr "" +"El etiquetado de regiones entre silencios requiere ~%dos sonidos al menos.~" +"%Sólo se ha detectado uno." #: plug-ins/limiter.ny msgid "Limiter" @@ -19630,7 +20207,8 @@ msgid "" " Track sample rate is ~a Hz.~%~\n" " Frequency must be less than ~a Hz." msgstr "" -"Error:~%~%La frecuencia (~a Hz) es demasiado alta para la frecuencia de muestreo de la pista.~%~%~\n" +"Error:~%~%La frecuencia (~a Hz) es demasiado alta para la frecuencia de" +" muestreo de la pista.~%~%~\n" " La frecuencia de muestreo de la pista es de ~a Hz.~%~\n" " La frecuencia debe ser menor que ~a Hz." @@ -19689,7 +20267,9 @@ msgstr "Advertencia. ~%No se ha podido copiar algunos ficheros:~%" #: plug-ins/nyquist-plug-in-installer.ny #, lisp-format msgid "Plug-ins installed.~%(Use the Plug-in Manager to enable effects):" -msgstr "Complementos instalados. ~%(Utilice el Administrador de complementos para habilitar los efectos):" +msgstr "" +"Complementos instalados. ~%(Utilice el Administrador de complementos para" +" habilitar los efectos):" #: plug-ins/nyquist-plug-in-installer.ny msgid "Plug-ins updated:" @@ -19790,7 +20370,9 @@ msgstr "+/- 1" #: plug-ins/rhythmtrack.ny msgid "Set 'Number of bars' to zero to enable the 'Rhythm track duration'." -msgstr "Establecer el 'Numero de barras' a cero para habilitar la 'Duración de pista de ritmo'." +msgstr "" +"Establecer el 'Numero de barras' a cero para habilitar la 'Duración de pista" +" de ritmo'." #: plug-ins/rhythmtrack.ny msgid "Number of bars" @@ -20009,12 +20591,16 @@ msgstr "~aDatos escritos a:~%~a" #: plug-ins/sample-data-export.ny #, lisp-format msgid "Sample Rate: ~a Hz. Sample values on ~a scale.~%~a~%~a" -msgstr "Frecuencia de muestreo: ~a Hz. Valores de muestra en escala ~a.~%~a~%~a" +msgstr "" +"Frecuencia de muestreo: ~a Hz. Valores de muestra en escala ~a.~%~a~%~a" #: plug-ins/sample-data-export.ny #, lisp-format -msgid "~a ~a~%~aSample Rate: ~a Hz.~%Length processed: ~a samples ~a seconds.~a" -msgstr "~a ~a~%~aFrecuencia de muestreo: ~a Hz.~%Duración procesada: ~a muestras ~a segundos.~a" +msgid "" +"~a ~a~%~aSample Rate: ~a Hz.~%Length processed: ~a samples ~a seconds.~a" +msgstr "" +"~a ~a~%~aFrecuencia de muestreo: ~a Hz.~%Duración procesada: ~a muestras ~a" +" segundos.~a" #: plug-ins/sample-data-export.ny #, lisp-format @@ -20022,18 +20608,23 @@ msgid "" "~a ~a~%~aSample Rate: ~a Hz. Sample values on ~a scale.~%~\n" " Length processed: ~a samples ~a seconds.~a" msgstr "" -"~a ~a~%~aFrecuencia de muestreo: ~a Hz. Valores de muestra en escala ~a.~%~\n" +"~a ~a~%~aFrecuencia de muestreo: ~a Hz. Valores de muestra en escala ~a.~" +"%~\n" " Duración procesada: ~a muestras ~a segundos.~a" #: plug-ins/sample-data-export.ny #, lisp-format msgid "" -"~a~%Sample Rate: ~a Hz. Sample values on ~a scale. ~a.~%~aLength processed: ~a ~\n" -" samples, ~a seconds.~%Peak amplitude: ~a (linear) ~a dB. Unweighted RMS: ~a dB.~%~\n" +"~a~%Sample Rate: ~a Hz. Sample values on ~a scale. ~a.~%~aLength processed:" +" ~a ~\n" +" samples, ~a seconds.~%Peak amplitude: ~a (linear) ~a dB. " +" Unweighted RMS: ~a dB.~%~\n" " DC offset: ~a~a" msgstr "" -"~a~%Frecuencia de muestreo: ~a Hz. Valores de muestra en escala ~a. ~a.~%~aDuración procesada: ~a ~\n" -" muestras, ~a segundos.~%Pico de amplitud: ~a (lineal) ~a dB. RMS sin peso: ~a dB.~%~\n" +"~a~%Frecuencia de muestreo: ~a Hz. Valores de muestra en escala ~a. ~a.~" +"%~aDuración procesada: ~a ~\n" +" muestras, ~a segundos.~%Pico de amplitud: ~a (lineal) ~a" +" dB. RMS sin peso: ~a dB.~%~\n" " Desplazamiento DC: ~a~a" #: plug-ins/sample-data-export.ny @@ -20255,7 +20846,8 @@ msgstr "Borrar espectrograma" #: plug-ins/spectral-delete.ny #, lisp-format msgid "Error.~%Track sample rate below 100 Hz is not supported." -msgstr "Error.~%No se adminten frecuencia de muestreo de pista por debajo de 100 Hz." +msgstr "" +"Error.~%No se adminten frecuencia de muestreo de pista por debajo de 100 Hz." #: plug-ins/tremolo.ny msgid "Tremolo" @@ -20364,8 +20956,12 @@ msgstr "" #: plug-ins/vocalrediso.ny #, lisp-format -msgid "Pan position: ~a~%The left and right channels are correlated by about ~a %. This means:~%~a~%" -msgstr "Posición panorámica: ~a~%Los canales izquierdo y derecho son correlativos por ~a %. Esto significa:~%~a~%" +msgid "" +"Pan position: ~a~%The left and right channels are correlated by about ~a %." +" This means:~%~a~%" +msgstr "" +"Posición panorámica: ~a~%Los canales izquierdo y derecho son correlativos por" +" ~a %. Esto significa:~%~a~%" #: plug-ins/vocalrediso.ny msgid "" @@ -20375,36 +20971,45 @@ msgid "" msgstr "" " - Los dos canales son idénticos, por ejemplo, mono dual.\n" " El centro no puede ser eliminado.\n" -" Cualquier otra diferencia puede ser derivada de una codificación con pérdida." +" Cualquier otra diferencia puede ser derivada de una" +" codificación con pérdida." #: plug-ins/vocalrediso.ny msgid "" -" - The two Channels are strongly related, i.e. nearly mono or extremely panned.\n" +" - The two Channels are strongly related, i.e. nearly mono or extremely" +" panned.\n" " Most likely, the center extraction will be poor." msgstr "" -" - Los dos canales están fuertemente relacionados, por ejemplo, mono muy similar o extremadamente panoramizados.\n" +" - Los dos canales están fuertemente relacionados, por ejemplo, mono muy" +" similar o extremadamente panoramizados.\n" " La extracción de centro será muy pobre." #: plug-ins/vocalrediso.ny -msgid " - A fairly good value, at least stereo in average and not too wide spread." -msgstr " - Un valor adecuado, al menos estéreo en la media y no demasiado expandido." +msgid "" +" - A fairly good value, at least stereo in average and not too wide spread." +msgstr "" +" - Un valor adecuado, al menos estéreo en la media y no demasiado expandido." #: plug-ins/vocalrediso.ny msgid "" " - An ideal value for Stereo.\n" -" However, the center extraction depends also on the used reverb." +" However, the center extraction depends also on the used" +" reverb." msgstr "" " - Un valor ideal para estéreo.\n" -" No obstante, la extracción del centro depende también de la reverberación empleada." +" No obstante, la extracción del centro depende también de la" +" reverberación empleada." #: plug-ins/vocalrediso.ny msgid "" " - The two channels are almost not related.\n" -" Either you have only noise or the piece is mastered in a unbalanced manner.\n" +" Either you have only noise or the piece is mastered in a" +" unbalanced manner.\n" " The center extraction can still be good though." msgstr "" " - Los dos canales no presentan casi relación.\n" -" O sólo hay ruido o la pieza original ha sido tomada de una manera no balanceada.\n" +" O sólo hay ruido o la pieza original ha sido tomada de una" +" manera no balanceada.\n" " La extracción del centro puede ser correcta de todos modos." #: plug-ins/vocalrediso.ny @@ -20421,12 +21026,14 @@ msgstr "" msgid "" " - The two channels are nearly identical.\n" " Obviously, a pseudo stereo effect has been used\n" -" to spread the signal over the physical distance between the speakers.\n" +" to spread the signal over the physical distance between the" +" speakers.\n" " Don't expect good results from a center removal." msgstr "" " - Los dos canales son prácticamente idénticos.\n" " Obviamente se ha empleado un efecto de simulación de estéreo\n" -" para expandir la señal sobre la distancia física entre los altavoces.\n" +" para expandir la señal sobre la distancia física entre los" +" altavoces.\n" " No se esperan buenos resultados de la eliminación del centro." #: plug-ins/vocalrediso.ny diff --git a/locale/hi.po b/locale/hi.po index 13bb6812c..f7467d298 100644 --- a/locale/hi.po +++ b/locale/hi.po @@ -1,25 +1,27 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Audacity Team # This file is distributed under the same license as the audacity package. +# FIRST AUTHOR , YEAR. # # Translators: -# Bashishtha Narayan Singh , 2010 -# Bashishtha Narayan Singh , 2018 -# Bashishtha Narayan Singh , 2010,2018,2020-2021 -# plankton rules , 2016 +# Thomas De Rocker, 2021 +# Paval Shalamitski , 2021 +# Bashishtha Narayan Singh , 2021 +# msgid "" msgstr "" "Project-Id-Version: audacity 3.0.3\n" "Report-Msgid-Bugs-To: audacity-translation@lists.sourceforge.net\n" "POT-Creation-Date: 2021-07-15 12:48-0400\n" -"PO-Revision-Date: 2021-06-09 11:01+0000\n" -"Last-Translator: Bashishtha Narayan Singh \n" -"Language-Team: Hindi (http://www.transifex.com/klyok/audacity/language/hi/)\n" -"Language: hi\n" +"PO-Revision-Date: 2021-07-19 22:36+0530\n" +"Last-Translator: Bashishtha Singh \n" +"Language-Team: Hindi (https://www.transifex.com/klyok/teams/690/hi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Poedit 3.0\n" #. i18n-hint C++ programming assertion #: crashreports/crashreporter/CrashReportApp.cpp @@ -40,29 +42,24 @@ msgstr "अज्ञात त्रुटि" msgid "Problem Report for Audacity" msgstr "Audacity के लिए समस्या रिपोर्ट" -#: crashreports/crashreporter/CrashReportApp.cpp -#: src/widgets/ErrorReportDialog.cpp +#: crashreports/crashreporter/CrashReportApp.cpp src/widgets/ErrorReportDialog.cpp msgid "Click \"Send\" to submit the report to Audacity. This information is collected anonymously." msgstr "Audacity को रिपोर्ट भेजने के लिए \"भेजें\" पर क्लिक करें. यह जानकारी गुमनाम रूप से एकत्र की जाती है." -#: crashreports/crashreporter/CrashReportApp.cpp -#: src/widgets/ErrorReportDialog.cpp +#: crashreports/crashreporter/CrashReportApp.cpp src/widgets/ErrorReportDialog.cpp msgid "Problem details" msgstr "समस्या विवरण" -#: crashreports/crashreporter/CrashReportApp.cpp src/Tags.cpp -#: src/prefs/MousePrefs.cpp src/widgets/ErrorReportDialog.cpp +#: crashreports/crashreporter/CrashReportApp.cpp src/Tags.cpp src/prefs/MousePrefs.cpp src/widgets/ErrorReportDialog.cpp msgid "Comments" msgstr "टिप्पणी" -#: crashreports/crashreporter/CrashReportApp.cpp -#: src/widgets/ErrorReportDialog.cpp +#: crashreports/crashreporter/CrashReportApp.cpp src/widgets/ErrorReportDialog.cpp msgctxt "crash reporter button" msgid "&Don't send" msgstr "भेजें नहीं (&D)" -#: crashreports/crashreporter/CrashReportApp.cpp -#: src/widgets/ErrorReportDialog.cpp +#: crashreports/crashreporter/CrashReportApp.cpp src/widgets/ErrorReportDialog.cpp msgctxt "crash reporter button" msgid "&Send" msgstr "भेजें (&S)" @@ -152,7 +149,7 @@ msgstr "खोजें...\tCtrl+F" #: modules/mod-nyq-bench/NyqBench.cpp msgid "&Matching Paren\tF8" -msgstr "मिलते-जुलते paren\tF8" +msgstr "मिलते-जुलते Paren\tF8" #: modules/mod-nyq-bench/NyqBench.cpp msgid "&Top S-expr\tF9" @@ -216,15 +213,14 @@ msgstr "रोकें\tF6" #: modules/mod-nyq-bench/NyqBench.cpp msgid "&About" -msgstr "बारे में" +msgstr "परिचय" #: modules/mod-nyq-bench/NyqBench.cpp msgid "Script" msgstr "स्क्रिप्ट" #. i18n-hint noun -#: modules/mod-nyq-bench/NyqBench.cpp src/Benchmark.cpp -#: src/effects/BassTreble.cpp +#: modules/mod-nyq-bench/NyqBench.cpp src/Benchmark.cpp src/effects/BassTreble.cpp msgid "Output" msgstr "आउटपुट" @@ -240,12 +236,9 @@ msgstr "Nyquist स्क्रिप्ट्स (*.ny)|*.ny|Lisp स्क् msgid "Script was not saved." msgstr "स्क्रिप्ट संचित नहीं हुआ." -#: modules/mod-nyq-bench/NyqBench.cpp src/AudacityLogger.cpp -#: src/DBConnection.cpp src/Project.cpp src/ProjectFileIO.cpp -#: src/ProjectHistory.cpp src/SqliteSampleBlock.cpp src/WaveClip.cpp -#: src/WaveTrack.cpp src/export/Export.cpp src/export/ExportCL.cpp -#: src/export/ExportMultiple.cpp src/import/RawAudioGuess.cpp -#: src/menus/EditMenus.cpp src/prefs/KeyConfigPrefs.cpp src/widgets/Warning.cpp +#: modules/mod-nyq-bench/NyqBench.cpp src/AudacityLogger.cpp src/DBConnection.cpp src/Project.cpp src/ProjectFileIO.cpp src/ProjectHistory.cpp src/SqliteSampleBlock.cpp src/WaveClip.cpp +#: src/WaveTrack.cpp src/export/Export.cpp src/export/ExportCL.cpp src/export/ExportMultiple.cpp src/import/RawAudioGuess.cpp src/menus/EditMenus.cpp src/prefs/KeyConfigPrefs.cpp +#: src/widgets/Warning.cpp msgid "Warning" msgstr "चेतावनी" @@ -297,8 +290,7 @@ msgstr "बेनाम" msgid "Nyquist Effect Workbench - " msgstr "Nyquist प्रभाव वर्कबेंच - " -#: modules/mod-nyq-bench/NyqBench.cpp src/PluginManager.cpp -#: src/prefs/ModulePrefs.cpp +#: modules/mod-nyq-bench/NyqBench.cpp src/PluginManager.cpp src/prefs/ModulePrefs.cpp msgid "New" msgstr "नया" @@ -338,8 +330,7 @@ msgstr "प्रतिलिपि बनाएं" msgid "Copy to clipboard" msgstr "प्रतिलिपि क्लिपबोर्ड में डालें" -#: modules/mod-nyq-bench/NyqBench.cpp src/menus/EditMenus.cpp -#: src/toolbars/EditToolBar.cpp +#: modules/mod-nyq-bench/NyqBench.cpp src/menus/EditMenus.cpp src/toolbars/EditToolBar.cpp msgid "Cut" msgstr "काटें" @@ -347,8 +338,7 @@ msgstr "काटें" msgid "Cut to clipboard" msgstr "कतरन क्लिपबोर्ड में डालें" -#: modules/mod-nyq-bench/NyqBench.cpp src/menus/EditMenus.cpp -#: src/toolbars/EditToolBar.cpp +#: modules/mod-nyq-bench/NyqBench.cpp src/menus/EditMenus.cpp src/toolbars/EditToolBar.cpp msgid "Paste" msgstr "चिपकाएं" @@ -373,8 +363,7 @@ msgstr "सब को चुनें" msgid "Select all text" msgstr "सब पाठ चुनें" -#: modules/mod-nyq-bench/NyqBench.cpp src/toolbars/EditToolBar.cpp -#: src/widgets/KeyView.cpp +#: modules/mod-nyq-bench/NyqBench.cpp src/toolbars/EditToolBar.cpp src/widgets/KeyView.cpp msgid "Undo" msgstr "पूर्ववत करें" @@ -382,8 +371,7 @@ msgstr "पूर्ववत करें" msgid "Undo last change" msgstr "पिछला परिवर्तन पूर्ववत करें" -#: modules/mod-nyq-bench/NyqBench.cpp src/toolbars/EditToolBar.cpp -#: src/widgets/KeyView.cpp +#: modules/mod-nyq-bench/NyqBench.cpp src/toolbars/EditToolBar.cpp src/widgets/KeyView.cpp msgid "Redo" msgstr "दोहराएं" @@ -440,8 +428,7 @@ msgid "Go to next S-expr" msgstr "अगले S-expr पर जाएं" #. i18n-hint noun -#: modules/mod-nyq-bench/NyqBench.cpp src/effects/Contrast.cpp -#: src/effects/ToneGen.cpp src/toolbars/SelectionBar.cpp +#: modules/mod-nyq-bench/NyqBench.cpp src/effects/Contrast.cpp src/effects/ToneGen.cpp src/toolbars/SelectionBar.cpp msgid "Start" msgstr "आरंभ" @@ -449,8 +436,7 @@ msgstr "आरंभ" msgid "Start script" msgstr "स्क्रिप्ट आरंभ" -#: modules/mod-nyq-bench/NyqBench.cpp src/effects/EffectUI.cpp -#: src/toolbars/ControlToolBar.cpp src/widgets/ProgressDialog.cpp +#: modules/mod-nyq-bench/NyqBench.cpp src/effects/EffectUI.cpp src/toolbars/ControlToolBar.cpp src/widgets/ProgressDialog.cpp msgid "Stop" msgstr "रोकें" @@ -462,91 +448,106 @@ msgstr "स्क्रिप्ट रोकें" msgid "No revision identifier was provided" msgstr "कोई संशोधन पहचानकर्ता प्रदान नहीं किया गया था" -#. i18n-hint: For "About Audacity..." credits, substituting a person's proper name +#. i18n-hint: For "About Audacity..." credits, substituting a person's proper +#. name #: src/AboutDialog.cpp #, c-format msgid "%s, system administration" msgstr "%s, सिस्टम प्रशासन" -#. i18n-hint: For "About Audacity..." credits, substituting a person's proper name +#. i18n-hint: For "About Audacity..." credits, substituting a person's proper +#. name #: src/AboutDialog.cpp #, c-format msgid "%s, co-founder and developer" msgstr "%s, सह-संस्थापक और डेवलपर" -#. i18n-hint: For "About Audacity..." credits, substituting a person's proper name +#. i18n-hint: For "About Audacity..." credits, substituting a person's proper +#. name #: src/AboutDialog.cpp #, c-format msgid "%s, developer" msgstr "%s, डेवलपर" -#. i18n-hint: For "About Audacity..." credits, substituting a person's proper name +#. i18n-hint: For "About Audacity..." credits, substituting a person's proper +#. name #: src/AboutDialog.cpp #, c-format msgid "%s, developer and support" msgstr "%s, डेवलपर व सहायक" -#. i18n-hint: For "About Audacity..." credits, substituting a person's proper name +#. i18n-hint: For "About Audacity..." credits, substituting a person's proper +#. name #: src/AboutDialog.cpp #, c-format msgid "%s, documentation and support" msgstr "%s, प्रलेखन व सहायता" -#. i18n-hint: For "About Audacity..." credits, substituting a person's proper name +#. i18n-hint: For "About Audacity..." credits, substituting a person's proper +#. name #: src/AboutDialog.cpp #, c-format msgid "%s, QA tester, documentation and support" msgstr "%s, QA परीक्षक, प्रलेखन और सहायक" -#. i18n-hint: For "About Audacity..." credits, substituting a person's proper name +#. i18n-hint: For "About Audacity..." credits, substituting a person's proper +#. name #: src/AboutDialog.cpp #, c-format msgid "%s, documentation and support, French" msgstr "%s, प्रलेखन व सहायता, फ़्रेंच" -#. i18n-hint: For "About Audacity..." credits, substituting a person's proper name +#. i18n-hint: For "About Audacity..." credits, substituting a person's proper +#. name #: src/AboutDialog.cpp #, c-format msgid "%s, quality assurance" msgstr "%s, गुणवत्ता आश्वासन" -#. i18n-hint: For "About Audacity..." credits, substituting a person's proper name +#. i18n-hint: For "About Audacity..." credits, substituting a person's proper +#. name #: src/AboutDialog.cpp #, c-format msgid "%s, accessibility advisor" msgstr "%s, अभिगम्यता सलाहकार" -#. i18n-hint: For "About Audacity..." credits, substituting a person's proper name +#. i18n-hint: For "About Audacity..." credits, substituting a person's proper +#. name #: src/AboutDialog.cpp #, c-format msgid "%s, graphic artist" msgstr "%s, ग्राफिक कलाकार" -#. i18n-hint: For "About Audacity..." credits, substituting a person's proper name +#. i18n-hint: For "About Audacity..." credits, substituting a person's proper +#. name #: src/AboutDialog.cpp #, c-format msgid "%s, composer" msgstr "%s, संगीतकार" -#. i18n-hint: For "About Audacity..." credits, substituting a person's proper name +#. i18n-hint: For "About Audacity..." credits, substituting a person's proper +#. name #: src/AboutDialog.cpp #, c-format msgid "%s, tester" msgstr "%s, परीक्षक" -#. i18n-hint: For "About Audacity..." credits, substituting a person's proper name +#. i18n-hint: For "About Audacity..." credits, substituting a person's proper +#. name #: src/AboutDialog.cpp #, c-format msgid "%s, Nyquist plug-ins" msgstr "%s, Nyquist प्लग-इन्स" -#. i18n-hint: For "About Audacity..." credits, substituting a person's proper name +#. i18n-hint: For "About Audacity..." credits, substituting a person's proper +#. name #: src/AboutDialog.cpp #, c-format msgid "%s, web developer" msgstr "%s, वेब डेवलपर" -#. i18n-hint: For "About Audacity..." credits, substituting a person's proper name +#. i18n-hint: For "About Audacity..." credits, substituting a person's proper +#. name #: src/AboutDialog.cpp #, c-format msgid "%s, graphics" @@ -563,9 +564,9 @@ msgstr "%s (लागू कर रहे हैं %s, %s, %s, %s and %s)" msgid "About %s" msgstr "%s के बारे में" -#. i18n-hint: In most languages OK is to be translated as OK. It appears on a button. -#: src/AboutDialog.cpp src/Dependencies.cpp src/SplashDialog.cpp -#: src/effects/nyquist/Nyquist.cpp src/widgets/MultiDialog.cpp +#. i18n-hint: In most languages OK is to be translated as OK. It appears on a +#. button. +#: src/AboutDialog.cpp src/Dependencies.cpp src/SplashDialog.cpp src/effects/nyquist/Nyquist.cpp src/widgets/MultiDialog.cpp msgid "OK" msgstr "ठीक" @@ -675,7 +676,7 @@ msgstr "लाइब्रेरी" #: src/AboutDialog.cpp #, c-format msgid "%s includes code from the following projects:" -msgstr "%s में निम्नलिखित परियोजनाओं से कोड शामिल हैं:" +msgstr "%s में निम्नलिखित परियोजनाओं से कोड शामिल हैं :" #: src/AboutDialog.cpp msgid "Special thanks:" @@ -708,8 +709,7 @@ msgstr "निर्माण जानकारी" msgid "Enabled" msgstr "सक्रिय" -#: src/AboutDialog.cpp src/PluginManager.cpp src/export/ExportFFmpegDialogs.cpp -#: src/prefs/ModulePrefs.cpp +#: src/AboutDialog.cpp src/PluginManager.cpp src/export/ExportFFmpegDialogs.cpp src/prefs/ModulePrefs.cpp msgid "Disabled" msgstr "निष्क्रिय" @@ -838,12 +838,12 @@ msgstr "पिच और टेम्पो परिवर्तन का स #: src/AboutDialog.cpp msgid "Extreme Pitch and Tempo Change support" -msgstr "चरम पिच तथा टेम्पो में परिवर्तन का समर्थन" +msgstr "चरम पिच तथा टेम्पो परिवर्तन का समर्थन" #: src/AboutDialog.cpp msgctxt "about dialog" msgid "Legal" -msgstr "" +msgstr "कानूनी" #: src/AboutDialog.cpp msgid "GPL License" @@ -853,24 +853,23 @@ msgstr "GPL लाइसेंस" #: src/AboutDialog.cpp msgctxt "about dialog" msgid "PRIVACY POLICY" -msgstr "" +msgstr "गोपनीयता नीति" #: src/AboutDialog.cpp msgid "App update checking and error reporting require network access. These features are optional." -msgstr "" +msgstr "ऐप अपडेट की जांच और त्रुटि रिपोर्टिंग के लिए नेटवर्क एक्सेस की आवश्यकता होती है. ये सुविधाएँ वैकल्पिक हैं." #. i18n-hint: %s will be replaced with "our Privacy Policy" -#: src/AboutDialog.cpp src/prefs/ApplicationPrefs.cpp -#: src/update/UpdateNoticeDialog.cpp -#, fuzzy, c-format +#: src/AboutDialog.cpp src/prefs/ApplicationPrefs.cpp src/update/UpdateNoticeDialog.cpp +#, c-format msgid "See %s for more info." -msgstr "एक या अधिक फ़ाइल चुनें" +msgstr "अधिक जानकारी के लिए %s देखें." -#. i18n-hint: Title of hyperlink to the privacy policy. This is an object of "See". -#: src/AboutDialog.cpp src/prefs/ApplicationPrefs.cpp -#: src/update/UpdateNoticeDialog.cpp +#. i18n-hint: Title of hyperlink to the privacy policy. This is an object of +#. "See". +#: src/AboutDialog.cpp src/prefs/ApplicationPrefs.cpp src/update/UpdateNoticeDialog.cpp msgid "our Privacy Policy" -msgstr "" +msgstr "हमारी गोपनीयता नीति" #: src/AdornedRulerPanel.cpp msgid "Timeline actions disabled during recording" @@ -893,7 +892,6 @@ msgstr "समयरेखा" #. i18n-hint: These commands assist the user in finding a sound by ear. ... #. "Scrubbing" is variable-speed playback, ... #. "Seeking" is normal speed playback but with skips -#. #: src/AdornedRulerPanel.cpp msgid "Click or drag to begin Seek" msgstr "खोज आरंभ के लिए क्लिक करें या खीचें" @@ -901,7 +899,6 @@ msgstr "खोज आरंभ के लिए क्लिक करें य #. i18n-hint: These commands assist the user in finding a sound by ear. ... #. "Scrubbing" is variable-speed playback, ... #. "Seeking" is normal speed playback but with skips -#. #: src/AdornedRulerPanel.cpp msgid "Click or drag to begin Scrub" msgstr "स्क्रब आरंभ के लिए क्लिक करें या खीचें" @@ -909,7 +906,6 @@ msgstr "स्क्रब आरंभ के लिए क्लिक कर #. i18n-hint: These commands assist the user in finding a sound by ear. ... #. "Scrubbing" is variable-speed playback, ... #. "Seeking" is normal speed playback but with skips -#. #: src/AdornedRulerPanel.cpp msgid "Click & move to Scrub. Click & drag to Seek." msgstr "स्क्रब के लिए क्लिक कर खीचें. खोज के लिए क्लिक कर खीचें." @@ -917,7 +913,6 @@ msgstr "स्क्रब के लिए क्लिक कर खीचे #. i18n-hint: These commands assist the user in finding a sound by ear. ... #. "Scrubbing" is variable-speed playback, ... #. "Seeking" is normal speed playback but with skips -#. #: src/AdornedRulerPanel.cpp msgid "Move to Seek" msgstr "खोजने के लिए आगे बढ़ें" @@ -925,7 +920,6 @@ msgstr "खोजने के लिए आगे बढ़ें" #. i18n-hint: These commands assist the user in finding a sound by ear. ... #. "Scrubbing" is variable-speed playback, ... #. "Seeking" is normal speed playback but with skips -#. #: src/AdornedRulerPanel.cpp msgid "Move to Scrub" msgstr "स्क्रब के लिए घुमाएं" @@ -982,17 +976,9 @@ msgstr "" "परियोजना के परे क्षेत्र को ताला नहीं\n" "लगा सकते." -#: src/AdornedRulerPanel.cpp src/AudioIO.cpp src/FileNames.cpp -#: src/ProjectAudioManager.cpp src/TimerRecordDialog.cpp -#: src/effects/Contrast.cpp src/effects/Effect.cpp src/effects/Generator.cpp -#: src/effects/nyquist/Nyquist.cpp src/export/ExportFFmpeg.cpp -#: src/export/ExportMP2.cpp src/menus/TrackMenus.cpp -#: src/menus/TransportMenus.cpp src/prefs/DirectoriesPrefs.cpp -#: src/prefs/KeyConfigPrefs.cpp -#: src/tracks/playabletrack/wavetrack/ui/WaveTrackControls.cpp -#: src/widgets/FileDialog/gtk/FileDialogPrivate.cpp -#: src/widgets/UnwritableLocationErrorDialog.cpp -#: plug-ins/eq-xml-to-txt-converter.ny +#: src/AdornedRulerPanel.cpp src/AudioIO.cpp src/FileNames.cpp src/ProjectAudioManager.cpp src/TimerRecordDialog.cpp src/effects/Contrast.cpp src/effects/Effect.cpp src/effects/Generator.cpp +#: src/effects/nyquist/Nyquist.cpp src/export/ExportFFmpeg.cpp src/export/ExportMP2.cpp src/menus/TrackMenus.cpp src/menus/TransportMenus.cpp src/prefs/DirectoriesPrefs.cpp src/prefs/KeyConfigPrefs.cpp +#: src/tracks/playabletrack/wavetrack/ui/WaveTrackControls.cpp src/widgets/FileDialog/gtk/FileDialogPrivate.cpp src/widgets/UnwritableLocationErrorDialog.cpp plug-ins/eq-xml-to-txt-converter.ny msgid "Error" msgstr "त्रुटि" @@ -1242,8 +1228,7 @@ msgstr "" msgid "Audacity Project Files" msgstr "Audacity परियोजना फ़ाईलें" -#: src/AudacityException.h src/commands/MessageCommand.cpp -#: src/widgets/AudacityMessageBox.cpp +#: src/AudacityException.h src/commands/MessageCommand.cpp src/widgets/AudacityMessageBox.cpp msgid "Message" msgstr "संदेश" @@ -1258,7 +1243,8 @@ msgid "" "\n" "\t%s\n" "\n" -"This could be caused by many reasons, but the most likely are that the disk is full or you do not have write permissions to the file. More information can be obtained by clicking the help button below.\n" +"This could be caused by many reasons, but the most likely are that the disk is full or you do not have write permissions to the file. More information can be obtained by clicking the help button " +"below.\n" "\n" "You can attempt to correct the issue and then click \"Retry\" to continue.\n" "\n" @@ -1274,9 +1260,8 @@ msgstr "" "\n" "यदि आप \"Audacity से निकलें\" चुनते हैं, तो आपकी परियोजना को बिना सहेजे स्थिति में छोड़ दिया जा सकता है, जिसे अगली बार खोलने पर पुनः प्राप्त किया जाएगा." -#: src/AudacityFileConfig.cpp src/ShuttleGui.cpp src/commands/HelpCommand.cpp -#: src/effects/Equalization.cpp src/export/Export.cpp src/menus/HelpMenus.cpp -#: src/widgets/ErrorReportDialog.cpp src/widgets/MultiDialog.cpp +#: src/AudacityFileConfig.cpp src/ShuttleGui.cpp src/commands/HelpCommand.cpp src/effects/Equalization.cpp src/export/Export.cpp src/menus/HelpMenus.cpp src/widgets/ErrorReportDialog.cpp +#: src/widgets/MultiDialog.cpp msgid "Help" msgstr "सहायता" @@ -1301,8 +1286,7 @@ msgstr "संचित करें..." msgid "Cl&ear" msgstr "साफ़(&e)" -#: src/AudacityLogger.cpp src/ShuttleGui.cpp src/effects/Contrast.cpp -#: src/menus/FileMenus.cpp +#: src/AudacityLogger.cpp src/ShuttleGui.cpp src/effects/Contrast.cpp src/menus/FileMenus.cpp msgid "&Close" msgstr "बंद करें(&C)" @@ -1599,8 +1583,7 @@ msgid "Recoverable &projects" msgstr "पुनर्प्राप्त करने योग्य परियोजनाएं (&p)" #. i18n-hint: (verb). It instruct the user to select items. -#: src/AutoRecoveryDialog.cpp src/TrackInfo.cpp src/commands/SelectCommand.cpp -#: src/prefs/MousePrefs.cpp +#: src/AutoRecoveryDialog.cpp src/TrackInfo.cpp src/commands/SelectCommand.cpp src/prefs/MousePrefs.cpp msgid "Select" msgstr "चुनें" @@ -1701,7 +1684,8 @@ msgstr "(%s)" msgid "Menu Command (No Parameters)" msgstr "मेनू आदेश (पैरामिटर्स के बिना)" -#. i18n-hint: %s will be replaced by the name of an action, such as "Remove Tracks". +#. i18n-hint: %s will be replaced by the name of an action, such as "Remove +#. Tracks". #: src/BatchCommands.cpp src/CommonCommandFlags.cpp #, c-format msgid "\"%s\" requires one or more tracks to be selected." @@ -1842,8 +1826,7 @@ msgstr "बहाल करें (&s)" msgid "I&mport..." msgstr "आयात (&m)करें..." -#: src/BatchProcessDialog.cpp src/effects/Contrast.cpp -#: src/effects/Equalization.cpp +#: src/BatchProcessDialog.cpp src/effects/Contrast.cpp src/effects/Equalization.cpp msgid "E&xport..." msgstr "निर्यात (&x)..." @@ -1884,8 +1867,7 @@ msgstr "ऊपर जाएं(&U)" msgid "Move &Down" msgstr "नीचे जाएं(&D)" -#: src/BatchProcessDialog.cpp src/effects/nyquist/Nyquist.cpp -#: src/menus/HelpMenus.cpp +#: src/BatchProcessDialog.cpp src/effects/nyquist/Nyquist.cpp src/menus/HelpMenus.cpp msgid "&Save" msgstr "संचित करें" @@ -1920,7 +1902,8 @@ msgstr "नए मैक्रो का नाम" msgid "Name must not be blank" msgstr "नाम रिक्त नहीं होना चाहिए" -#. i18n-hint: The %c will be replaced with 'forbidden characters', like '/' and '\'. +#. i18n-hint: The %c will be replaced with 'forbidden characters', like '/' +#. and '\'. #: src/BatchProcessDialog.cpp #, c-format msgid "Names may not contain '%c' and '%c'" @@ -1968,8 +1951,7 @@ msgid "Run" msgstr "चलाएं" #. i18n-hint verb -#: src/Benchmark.cpp src/tracks/ui/TrackButtonHandles.cpp -#: src/widgets/HelpSystem.cpp +#: src/Benchmark.cpp src/tracks/ui/TrackButtonHandles.cpp src/widgets/HelpSystem.cpp msgid "Close" msgstr "बंद करें" @@ -2110,7 +2092,8 @@ msgstr "जाँच में असफ़ल!!!\n" msgid "Benchmark completed successfully.\n" msgstr "मान-दंड सफलतापूर्वक पूर्ण.\n" -#. i18n-hint: %s will be replaced by the name of an action, such as Normalize, Cut, Fade. +#. i18n-hint: %s will be replaced by the name of an action, such as Normalize, +#. Cut, Fade. #: src/CommonCommandFlags.cpp #, c-format msgid "" @@ -2122,13 +2105,15 @@ msgstr "" "\n" "Ctrl + A सभी कुछ चयन करने के लिए." -#. i18n-hint: %s will be replaced by the name of an action, such as Normalize, Cut, Fade. +#. i18n-hint: %s will be replaced by the name of an action, such as Normalize, +#. Cut, Fade. #: src/CommonCommandFlags.cpp #, c-format msgid "Select the audio for %s to use (for example, Cmd + A to Select All) then try again." msgstr "%s के उपयोग के लिए ऑडियो का चयन करें (उदाहरण के लिए, Cmd + A सभी कुछ चयन करने के लिए) तब पुन: प्रयास करें." -#. i18n-hint: %s will be replaced by the name of an action, such as Normalize, Cut, Fade. +#. i18n-hint: %s will be replaced by the name of an action, such as Normalize, +#. Cut, Fade. #: src/CommonCommandFlags.cpp #, c-format msgid "Select the audio for %s to use (for example, Ctrl + A to Select All) then try again." @@ -2138,7 +2123,8 @@ msgstr "%s के उपयोग के लिए ऑडियो का चय msgid "No Audio Selected" msgstr "कुछ भी ऑडियो चयनित नहीं है" -#. i18n-hint: %s will be replaced by the name of an effect, usually 'Noise Reduction'. +#. i18n-hint: %s will be replaced by the name of an effect, usually 'Noise +#. Reduction'. #: src/CommonCommandFlags.cpp #, c-format msgid "" @@ -2384,10 +2370,7 @@ msgstr "" msgid "Dependency Check" msgstr "निर्भरता निरीक्षण" -#: src/Dither.cpp src/commands/ScreenshotCommand.cpp -#: src/effects/EffectManager.cpp src/effects/EffectUI.cpp -#: src/prefs/TracksBehaviorsPrefs.cpp plug-ins/equalabel.ny -#: plug-ins/sample-data-export.ny +#: src/Dither.cpp src/commands/ScreenshotCommand.cpp src/effects/EffectManager.cpp src/effects/EffectUI.cpp src/prefs/TracksBehaviorsPrefs.cpp plug-ins/equalabel.ny plug-ins/sample-data-export.ny msgid "None" msgstr "कुछ नहीं" @@ -2495,8 +2478,7 @@ msgstr "'%s' का स्थान :" msgid "To find '%s', click here -->" msgstr "'%s' को ढूंढ़ने के लिए, यहाँ क्लिक करें -->" -#: src/FFmpeg.cpp src/export/ExportCL.cpp src/export/ExportMP3.cpp -#: plug-ins/nyquist-plug-in-installer.ny +#: src/FFmpeg.cpp src/export/ExportCL.cpp src/export/ExportMP3.cpp plug-ins/nyquist-plug-in-installer.ny msgid "Browse..." msgstr "ब्राऊज़..." @@ -2582,7 +2564,8 @@ msgstr "" msgid "File Error" msgstr "फ़ाइल त्रुटि" -#. i18n-hint: %s will be the error message from the libsndfile software library +#. i18n-hint: %s will be the error message from the libsndfile software +#. library #: src/FileFormats.cpp #, c-format msgid "Error (file may not have been written): %s" @@ -2608,9 +2591,7 @@ msgstr "कोई भी ध्वनि नकल न करें(&n)" msgid "As&k" msgstr "पूछिए(&k)" -#: src/FileNames.cpp plug-ins/eq-xml-to-txt-converter.ny -#: plug-ins/nyquist-plug-in-installer.ny plug-ins/sample-data-export.ny -#: plug-ins/sample-data-import.ny +#: src/FileNames.cpp plug-ins/eq-xml-to-txt-converter.ny plug-ins/nyquist-plug-in-installer.ny plug-ins/sample-data-export.ny plug-ins/sample-data-import.ny msgid "All files" msgstr "सभी फ़ाइलें" @@ -2656,9 +2637,9 @@ msgid "Specify New Filename:" msgstr "नए फ़ाइल का नाम बताएं:" #: src/FileNames.cpp -#, fuzzy, c-format +#, c-format msgid "Directory %s does not have write permissions" -msgstr "निर्देशिका %s विद्यमान नहीं है. निर्माण करूँ?" +msgstr "निर्देशिका %s में लिखने की अनुमति नहीं है" #: src/FreqWindow.cpp msgid "Frequency Analysis" @@ -2705,12 +2686,8 @@ msgstr "Log आवृति" #. i18n-hint: abbreviates decibels #. i18n-hint: short form of 'decibels'. -#: src/FreqWindow.cpp src/commands/SetTrackInfoCommand.cpp -#: src/effects/AutoDuck.cpp src/effects/Compressor.cpp -#: src/effects/Equalization.cpp src/effects/Loudness.cpp -#: src/effects/Normalize.cpp src/effects/ScienFilter.cpp -#: src/effects/TruncSilence.cpp src/prefs/WaveformSettings.cpp -#: src/widgets/Meter.cpp plug-ins/sample-data-export.ny +#: src/FreqWindow.cpp src/commands/SetTrackInfoCommand.cpp src/effects/AutoDuck.cpp src/effects/Compressor.cpp src/effects/Equalization.cpp src/effects/Loudness.cpp src/effects/Normalize.cpp +#: src/effects/ScienFilter.cpp src/effects/TruncSilence.cpp src/prefs/WaveformSettings.cpp src/widgets/Meter.cpp plug-ins/sample-data-export.ny msgid "dB" msgstr "dB" @@ -2725,9 +2702,7 @@ msgstr "बड़ा करें" #. i18n-hint: This is the abbreviation for "Hertz", or #. cycles per second. #. i18n-hint: Name of display format that shows frequency in hertz -#: src/FreqWindow.cpp src/effects/ChangePitch.cpp src/effects/Equalization.cpp -#: src/effects/ScienFilter.cpp src/import/ImportRaw.cpp -#: src/widgets/NumericTextCtrl.cpp +#: src/FreqWindow.cpp src/effects/ChangePitch.cpp src/effects/Equalization.cpp src/effects/ScienFilter.cpp src/import/ImportRaw.cpp src/widgets/NumericTextCtrl.cpp msgid "Hz" msgstr "Hz" @@ -2785,26 +2760,30 @@ msgstr "समुचित डाटा नहीं चुना गया." msgid "s" msgstr "s" -#. i18n-hint: The %d's are replaced by numbers, the %s by musical notes, e.g. A# +#. i18n-hint: The %d's are replaced by numbers, the %s by musical notes, e.g. +#. A# #: src/FreqWindow.cpp #, c-format msgid "%d Hz (%s) = %d dB" msgstr "%d Hz (%s) = %d dB" -#. i18n-hint: The %d's are replaced by numbers, the %s by musical notes, e.g. A# +#. i18n-hint: The %d's are replaced by numbers, the %s by musical notes, e.g. +#. A# #: src/FreqWindow.cpp #, c-format msgid "%d Hz (%s) = %.1f dB" msgstr "%d Hz (%s) = %.1f dB" -#. i18n-hint: The %d's are replaced by numbers, the %s by musical notes, e.g. A# +#. i18n-hint: The %d's are replaced by numbers, the %s by musical notes, e.g. +#. A# #. * the %.4f are numbers, and 'sec' should be an abbreviation for seconds #: src/FreqWindow.cpp #, c-format msgid "%.4f sec (%d Hz) (%s) = %f" msgstr "%.4f सेकेंड (%d Hz) (%s) = %f" -#. i18n-hint: The %d's are replaced by numbers, the %s by musical notes, e.g. A# +#. i18n-hint: The %d's are replaced by numbers, the %s by musical notes, e.g. +#. A# #. * the %.4f are numbers, and 'sec' should be an abbreviation for seconds #: src/FreqWindow.cpp #, c-format @@ -2819,8 +2798,7 @@ msgstr "spectrum.txt" msgid "Export Spectral Data As:" msgstr "Spectral डेटा निर्यात इस तरह:" -#: src/FreqWindow.cpp src/LabelDialog.cpp src/effects/Contrast.cpp -#: src/menus/FileMenus.cpp +#: src/FreqWindow.cpp src/LabelDialog.cpp src/effects/Contrast.cpp src/menus/FileMenus.cpp #, c-format msgid "Couldn't write to file: %s" msgstr "फ़ाइल में लिख नहीं सका: %s" @@ -2942,20 +2920,34 @@ msgid "More: Visit our [[https://wiki.audacityteam.org/index.php|Wiki]] for msgstr "अधिक : पधारें, हमारे [[https://wiki.audacityteam.org/index.php|Wiki]] पर युक्तियों, गुर, अतिरिक्त ट्यूटोरियल और प्रभाव प्लग-इन्स के लिए." #: src/HelpText.cpp -msgid "Audacity can import unprotected files in many other formats (such as M4A and WMA, compressed WAV files from portable recorders and audio from video files) if you download and install the optional [[https://manual.audacityteam.org/man/faq_opening_and_saving_files.html#foreign| FFmpeg library]] to your computer." -msgstr "Audacity कई अन्य स्वरूपों के असुरक्षित फ़ाइलों (जैसे M4A और WMA, पोर्टेबल recorders से संकुचित WAV फ़ाइलें और वीडियो फ़ाइलों से ऑडियो ) का आयात कर सकता है, यदि आप एक वैकल्पिक लाईब्रेरी [[https://manual.audacityteam.org/man/faq_opening_and_saving_files.html#foreign| FFmpeg लाईब्रेरी]] डाउनलोड कर आपके कंप्यूटर पर स्थापित करें." +msgid "" +"Audacity can import unprotected files in many other formats (such as M4A and WMA, compressed WAV files from portable recorders and audio from video files) if you download and install the optional " +"[[https://manual.audacityteam.org/man/faq_opening_and_saving_files.html#foreign| FFmpeg library]] to your computer." +msgstr "" +"Audacity कई अन्य स्वरूपों के असुरक्षित फ़ाइलों (जैसे M4A और WMA, पोर्टेबल recorders से संकुचित WAV फ़ाइलें और वीडियो फ़ाइलों से ऑडियो ) का आयात कर सकता है, यदि आप एक वैकल्पिक लाईब्रेरी [[https://manual.audacityteam.org/man/" +"faq_opening_and_saving_files.html#foreign| FFmpeg लाईब्रेरी]] डाउनलोड कर आपके कंप्यूटर पर स्थापित करें." #: src/HelpText.cpp -msgid "You can also read our help on importing [[https://manual.audacityteam.org/man/playing_and_recording.html#midi|MIDI files]] and tracks from [[https://manual.audacityteam.org/man/faq_opening_and_saving_files.html#fromcd| audio CDs]]." -msgstr "आप [[https://manual.audacityteam.org/man/faq_opening_and_saving_files.html#midi|MIDI फ़ाइलें]] और [[https://manual.audacityteam.org/man/faq_opening_and_saving_files.html#fromcd| ऑडियो CDs]] ट्रैकों से आयात के बारे में भी हमारी मदद पढ़ सकते हैं." +msgid "" +"You can also read our help on importing [[https://manual.audacityteam.org/man/playing_and_recording.html#midi|MIDI files]] and tracks from [[https://manual.audacityteam.org/man/" +"faq_opening_and_saving_files.html#fromcd| audio CDs]]." +msgstr "" +"आप [[https://manual.audacityteam.org/man/faq_opening_and_saving_files.html#midi|MIDI फ़ाइलें]] और [[https://manual.audacityteam.org/man/faq_opening_and_saving_files.html#fromcd| ऑडियो CDs]] ट्रैकों से " +"आयात के बारे में भी हमारी मदद पढ़ सकते हैं." #: src/HelpText.cpp -msgid "The Manual does not appear to be installed. Please [[*URL*|view the Manual online]].

To always view the Manual online, change \"Location of Manual\" in Interface Preferences to \"From Internet\"." +msgid "" +"The Manual does not appear to be installed. Please [[*URL*|view the Manual online]].

To always view the Manual online, change \"Location of Manual\" in Interface Preferences to \"From Internet" +"\"." msgstr "लगता है मदद पुस्तिका स्थापित नहीं है. कृपया [[*URL*|मदद सामग्री ऑनलाइन देखें]].

हमेशा मैनुअल ऑनलाइन देखने के लिए, \"मैनुअल निवासस्थान\" को इंटरफेस में पसंद बदलकर \"इंटरनेट से \" करें." #: src/HelpText.cpp -msgid "The Manual does not appear to be installed. Please [[*URL*|view the Manual online]] or [[https://manual.audacityteam.org/man/unzipping_the_manual.html| download the Manual]].

To always view the Manual online, change \"Location of Manual\" in Interface Preferences to \"From Internet\"." -msgstr "लगता है मदद पुस्तिका स्थापित नहीं है. कृपया [[*URL*|मदद सामग्री ऑनलाइन देखें]] या [[https://manual.audacityteam.org/man/unzipping_the_manual.html| मैनुअल डाउनलोड करें]].

हमेशा मैनुअल ऑनलाइन देखने के लिए, \"मैनुअल निवासस्थान\" को इंटरफेस में पसंद बदलकर \"इंटरनेट से\" करें." +msgid "" +"The Manual does not appear to be installed. Please [[*URL*|view the Manual online]] or [[https://manual.audacityteam.org/man/unzipping_the_manual.html| download the Manual]].

To always view " +"the Manual online, change \"Location of Manual\" in Interface Preferences to \"From Internet\"." +msgstr "" +"लगता है मदद पुस्तिका स्थापित नहीं है. कृपया [[*URL*|मदद सामग्री ऑनलाइन देखें]] या [[https://manual.audacityteam.org/man/unzipping_the_manual.html| मैनुअल डाउनलोड करें]].

हमेशा मैनुअल ऑनलाइन देखने के लिए, \"मैनुअल " +"निवासस्थान\" को इंटरफेस में पसंद बदलकर \"इंटरनेट से\" करें." #: src/HelpText.cpp msgid "Check Online" @@ -3049,9 +3041,7 @@ msgid "Track" msgstr "ट्रैक" #. i18n-hint: (noun) -#: src/LabelDialog.cpp src/commands/SetLabelCommand.cpp -#: src/menus/LabelMenus.cpp src/toolbars/TranscriptionToolBar.cpp -#: src/tracks/labeltrack/ui/LabelTrackView.cpp plug-ins/equalabel.ny +#: src/LabelDialog.cpp src/commands/SetLabelCommand.cpp src/menus/LabelMenus.cpp src/toolbars/TranscriptionToolBar.cpp src/tracks/labeltrack/ui/LabelTrackView.cpp plug-ins/equalabel.ny msgid "Label" msgstr "नाम-पट्टी" @@ -3111,8 +3101,7 @@ msgstr "ट्रैक का नाम बताएं" #. i18n-hint: (noun) it's the name of a kind of track. #. i18n-hint: This is for screen reader software and indicates that #. this is a Label track. -#: src/LabelDialog.cpp src/LabelDialog.h src/LabelTrack.cpp -#: src/TrackPanelAx.cpp +#: src/LabelDialog.cpp src/LabelDialog.h src/LabelTrack.cpp src/TrackPanelAx.cpp msgid "Label Track" msgstr "नाम ट्रैक" @@ -3137,8 +3126,7 @@ msgstr "Audacity के उपयोग की भाषा चुनें:" msgid "The language you have chosen, %s (%s), is not the same as the system language, %s (%s)." msgstr "आपकी चुनी गई भाषा, %s (%s), इस कंप्युटर प्रणाली की भाषा, %s (%s), नहीं है." -#: src/LangChoice.cpp src/effects/VST/VSTEffect.cpp -#: src/widgets/FileDialog/gtk/FileDialogPrivate.cpp +#: src/LangChoice.cpp src/effects/VST/VSTEffect.cpp src/widgets/FileDialog/gtk/FileDialogPrivate.cpp msgid "Confirm" msgstr "संपुष्टी दें" @@ -3216,17 +3204,14 @@ msgstr "Audacity मिक्सर बोर्ड%s" #. i18n-hint: title of the Gain slider, used to adjust the volume #. i18n-hint: Title of the Gain slider, used to adjust the volume -#: src/MixerBoard.cpp src/menus/TrackMenus.cpp -#: src/tracks/playabletrack/wavetrack/ui/WaveTrackControls.cpp -#: src/tracks/playabletrack/wavetrack/ui/WaveTrackSliderHandles.cpp +#: src/MixerBoard.cpp src/menus/TrackMenus.cpp src/tracks/playabletrack/wavetrack/ui/WaveTrackControls.cpp src/tracks/playabletrack/wavetrack/ui/WaveTrackSliderHandles.cpp msgid "Gain" msgstr "गेन" #. i18n-hint: title of the MIDI Velocity slider -#. i18n-hint: Title of the Velocity slider, used to adjust the volume of note tracks -#: src/MixerBoard.cpp -#: src/tracks/playabletrack/notetrack/ui/NoteTrackControls.cpp -#: src/tracks/playabletrack/notetrack/ui/NoteTrackSliderHandles.cpp +#. i18n-hint: Title of the Velocity slider, used to adjust the volume of note +#. tracks +#: src/MixerBoard.cpp src/tracks/playabletrack/notetrack/ui/NoteTrackControls.cpp src/tracks/playabletrack/notetrack/ui/NoteTrackSliderHandles.cpp msgid "Velocity" msgstr "गति" @@ -3235,23 +3220,17 @@ msgid "Musical Instrument" msgstr "वाद्य यंत्र" #. i18n-hint: Title of the Pan slider, used to move the sound left or right -#: src/MixerBoard.cpp src/menus/TrackMenus.cpp -#: src/tracks/playabletrack/wavetrack/ui/WaveTrackControls.cpp -#: src/tracks/playabletrack/wavetrack/ui/WaveTrackSliderHandles.cpp +#: src/MixerBoard.cpp src/menus/TrackMenus.cpp src/tracks/playabletrack/wavetrack/ui/WaveTrackControls.cpp src/tracks/playabletrack/wavetrack/ui/WaveTrackSliderHandles.cpp msgid "Pan" msgstr "दाँए-बाँए" #. i18n-hint: This is on a button that will silence this track. -#: src/MixerBoard.cpp src/commands/SetTrackInfoCommand.cpp -#: src/tracks/playabletrack/ui/PlayableTrackButtonHandles.cpp -#: src/tracks/playabletrack/ui/PlayableTrackControls.cpp +#: src/MixerBoard.cpp src/commands/SetTrackInfoCommand.cpp src/tracks/playabletrack/ui/PlayableTrackButtonHandles.cpp src/tracks/playabletrack/ui/PlayableTrackControls.cpp msgid "Mute" msgstr "मौन" #. i18n-hint: This is on a button that will silence all the other tracks. -#: src/MixerBoard.cpp src/commands/SetTrackInfoCommand.cpp -#: src/tracks/playabletrack/ui/PlayableTrackButtonHandles.cpp -#: src/tracks/playabletrack/ui/PlayableTrackControls.cpp +#: src/MixerBoard.cpp src/commands/SetTrackInfoCommand.cpp src/tracks/playabletrack/ui/PlayableTrackButtonHandles.cpp src/tracks/playabletrack/ui/PlayableTrackControls.cpp msgid "Solo" msgstr "एकल" @@ -3259,18 +3238,15 @@ msgstr "एकल" msgid "Signal Level Meter" msgstr "सिगनल स्तर मीटर" -#: src/MixerBoard.cpp -#: src/tracks/playabletrack/wavetrack/ui/WaveTrackSliderHandles.cpp +#: src/MixerBoard.cpp src/tracks/playabletrack/wavetrack/ui/WaveTrackSliderHandles.cpp msgid "Moved gain slider" msgstr "गेन स्लाइडर स्थानांतरित" -#: src/MixerBoard.cpp -#: src/tracks/playabletrack/notetrack/ui/NoteTrackSliderHandles.cpp +#: src/MixerBoard.cpp src/tracks/playabletrack/notetrack/ui/NoteTrackSliderHandles.cpp msgid "Moved velocity slider" msgstr "गति स्लाइडर स्थानांतरित" -#: src/MixerBoard.cpp -#: src/tracks/playabletrack/wavetrack/ui/WaveTrackSliderHandles.cpp +#: src/MixerBoard.cpp src/tracks/playabletrack/wavetrack/ui/WaveTrackSliderHandles.cpp msgid "Moved pan slider" msgstr "पैन स्लाइडर स्थानांतरित" @@ -3341,13 +3317,11 @@ msgstr "" "\n" "केवल विश्वसनीय स्रोतों से मॉड्यूल का उपयोग करें" -#: src/ModuleManager.cpp src/TimerRecordDialog.cpp plug-ins/delay.ny -#: plug-ins/equalabel.ny plug-ins/limiter.ny plug-ins/sample-data-export.ny +#: src/ModuleManager.cpp src/TimerRecordDialog.cpp plug-ins/delay.ny plug-ins/equalabel.ny plug-ins/limiter.ny plug-ins/sample-data-export.ny msgid "Yes" msgstr "हाँ" -#: src/ModuleManager.cpp src/TimerRecordDialog.cpp plug-ins/delay.ny -#: plug-ins/equalabel.ny plug-ins/limiter.ny +#: src/ModuleManager.cpp src/TimerRecordDialog.cpp plug-ins/delay.ny plug-ins/equalabel.ny plug-ins/limiter.ny msgid "No" msgstr "ना" @@ -3461,27 +3435,32 @@ msgstr "ध॒" msgid "B♭" msgstr "नि॒" -#. i18n-hint: Two, alternate names of a musical note in the 12-tone chromatic scale +#. i18n-hint: Two, alternate names of a musical note in the 12-tone chromatic +#. scale #: src/PitchName.cpp msgid "C♯/D♭" msgstr "रे॒" -#. i18n-hint: Two, alternate names of a musical note in the 12-tone chromatic scale +#. i18n-hint: Two, alternate names of a musical note in the 12-tone chromatic +#. scale #: src/PitchName.cpp msgid "D♯/E♭" msgstr "ग॒" -#. i18n-hint: Two, alternate names of a musical note in the 12-tone chromatic scale +#. i18n-hint: Two, alternate names of a musical note in the 12-tone chromatic +#. scale #: src/PitchName.cpp msgid "F♯/G♭" msgstr "म॑" -#. i18n-hint: Two, alternate names of a musical note in the 12-tone chromatic scale +#. i18n-hint: Two, alternate names of a musical note in the 12-tone chromatic +#. scale #: src/PitchName.cpp msgid "G♯/A♭" msgstr "ध॒" -#. i18n-hint: Two, alternate names of a musical note in the 12-tone chromatic scale +#. i18n-hint: Two, alternate names of a musical note in the 12-tone chromatic +#. scale #: src/PitchName.cpp msgid "A♯/B♭" msgstr "नि॒" @@ -3623,7 +3602,7 @@ msgctxt "plug-ins" msgid "Enable this plug-in?\n" msgid_plural "Enable these plug-ins?\n" msgstr[0] "इस प्लग-इन को सक्षम करें?\n" -msgstr[1] "इन प्लग-इनों को सक्षम करें?\n" +msgstr[1] "इन प्लग-इन्स को सक्षम करें?\n" #: src/PluginManager.cpp msgid "Enable new plug-ins" @@ -3887,8 +3866,7 @@ msgstr "चेतावनी - अनाथ ब्लाक फ़ाइल ( #. i18n-hint: This title appears on a dialog that indicates the progress #. in doing something. -#: src/ProjectFSCK.cpp src/ProjectFileIO.cpp src/UndoManager.cpp -#: src/menus/TransportMenus.cpp +#: src/ProjectFSCK.cpp src/ProjectFileIO.cpp src/UndoManager.cpp src/menus/TransportMenus.cpp msgid "Progress" msgstr "प्रगति" @@ -4500,7 +4478,8 @@ msgstr "स्वचालित डेटाबेस बैकअप विफ msgid "Welcome to Audacity version %s" msgstr "Audacity के %s संस्करण में आपका स्वागत है" -#. i18n-hint: The first %s numbers the project, the second %s is the project name. +#. i18n-hint: The first %s numbers the project, the second %s is the project +#. name. #: src/ProjectManager.cpp #, c-format msgid "%sSave changes to %s?" @@ -4546,7 +4525,7 @@ msgstr[1] "%d घंटे" #, c-format msgid "%d minute" msgid_plural "%d minutes" -msgstr[0] "%d मिनट" +msgstr[0] "%d मिनट" msgstr[1] "%d मिनट" #. i18n-hint: A time in hours and minutes. Only translate the "and". @@ -4712,8 +4691,7 @@ msgstr "सभी वरीयतायें" msgid "SelectionBar" msgstr "चयनपट्टी" -#: src/Screenshot.cpp src/commands/ScreenshotCommand.cpp -#: src/toolbars/SpectralSelectionBar.cpp +#: src/Screenshot.cpp src/commands/ScreenshotCommand.cpp src/toolbars/SpectralSelectionBar.cpp msgid "Spectral Selection" msgstr "वर्णक्रम चयन" @@ -4721,56 +4699,47 @@ msgstr "वर्णक्रम चयन" msgid "Timer" msgstr "टाइमर" -#: src/Screenshot.cpp src/commands/ScreenshotCommand.cpp -#: src/toolbars/ToolsToolBar.cpp +#: src/Screenshot.cpp src/commands/ScreenshotCommand.cpp src/toolbars/ToolsToolBar.cpp msgid "Tools" msgstr "औज़ार" -#: src/Screenshot.cpp src/commands/ScreenshotCommand.cpp -#: src/toolbars/ControlToolBar.cpp +#: src/Screenshot.cpp src/commands/ScreenshotCommand.cpp src/toolbars/ControlToolBar.cpp msgid "Transport" msgstr "भ्रमण" -#: src/Screenshot.cpp src/commands/ScreenshotCommand.cpp -#: src/toolbars/MixerToolBar.cpp +#: src/Screenshot.cpp src/commands/ScreenshotCommand.cpp src/toolbars/MixerToolBar.cpp msgid "Mixer" msgstr "मिक्सर" #. i18n-hint: Noun (the meter is used for playback or record level monitoring) -#: src/Screenshot.cpp src/commands/ScreenshotCommand.cpp -#: src/toolbars/MeterToolBar.cpp src/widgets/Meter.cpp +#: src/Screenshot.cpp src/commands/ScreenshotCommand.cpp src/toolbars/MeterToolBar.cpp src/widgets/Meter.cpp msgid "Meter" msgstr "मीटर" #. i18n-hint: (noun) The meter that shows the loudness of the audio playing. -#: src/Screenshot.cpp src/commands/ScreenshotCommand.cpp -#: src/toolbars/MeterToolBar.cpp +#: src/Screenshot.cpp src/commands/ScreenshotCommand.cpp src/toolbars/MeterToolBar.cpp msgid "Play Meter" msgstr "बजाने का मीटर" -#. i18n-hint: (noun) The meter that shows the loudness of the audio being recorded. -#: src/Screenshot.cpp src/commands/ScreenshotCommand.cpp -#: src/toolbars/MeterToolBar.cpp +#. i18n-hint: (noun) The meter that shows the loudness of the audio being +#. recorded. +#: src/Screenshot.cpp src/commands/ScreenshotCommand.cpp src/toolbars/MeterToolBar.cpp msgid "Record Meter" msgstr "ध्वन्यांकन मीटर" -#: src/Screenshot.cpp src/commands/ScreenshotCommand.cpp -#: src/toolbars/EditToolBar.cpp +#: src/Screenshot.cpp src/commands/ScreenshotCommand.cpp src/toolbars/EditToolBar.cpp msgid "Edit" msgstr "संपादन" -#: src/Screenshot.cpp src/commands/ScreenshotCommand.cpp -#: src/prefs/DevicePrefs.h src/toolbars/DeviceToolBar.cpp +#: src/Screenshot.cpp src/commands/ScreenshotCommand.cpp src/prefs/DevicePrefs.h src/toolbars/DeviceToolBar.cpp msgid "Device" msgstr "यंत्र" -#: src/Screenshot.cpp src/commands/ScreenshotCommand.cpp -#: src/toolbars/TranscriptionToolBar.cpp +#: src/Screenshot.cpp src/commands/ScreenshotCommand.cpp src/toolbars/TranscriptionToolBar.cpp msgid "Play-at-Speed" msgstr "इस-गति-पर बजाएं" -#: src/Screenshot.cpp src/commands/ScreenshotCommand.cpp -#: src/toolbars/ScrubbingToolBar.cpp +#: src/Screenshot.cpp src/commands/ScreenshotCommand.cpp src/toolbars/ScrubbingToolBar.cpp msgid "Scrub" msgstr "Scrub" @@ -4783,11 +4752,10 @@ msgid "Ruler" msgstr "मापक" #. i18n-hint: "Tracks" include audio recordings but also other collections of -#. * data associated with a time line, such as sequences of labels, and musical +#. * data associated with a time line, such as sequences of labels, and +#. musical #. * notes -#: src/Screenshot.cpp src/commands/GetInfoCommand.cpp -#: src/commands/GetTrackInfoCommand.cpp src/commands/ScreenshotCommand.cpp -#: src/export/ExportMultiple.cpp src/prefs/TracksPrefs.cpp +#: src/Screenshot.cpp src/commands/GetInfoCommand.cpp src/commands/GetTrackInfoCommand.cpp src/commands/ScreenshotCommand.cpp src/export/ExportMultiple.cpp src/prefs/TracksPrefs.cpp #: src/prefs/TracksPrefs.h msgid "Tracks" msgstr "ट्रैक" @@ -5050,7 +5018,8 @@ msgstr "" " %s." #. i18n-hint: A theme is a consistent visual style across an application's -#. graphical user interface, including choices of colors, and similarity of images +#. graphical user interface, including choices of colors, and similarity of +#. images #. such as those on button controls. Audacity can load and save alternative #. themes. #: src/Theme.cpp @@ -5189,18 +5158,20 @@ msgstr "अति विरोभासी" msgid "Custom" msgstr "विशिष्ट" -#. i18n-hint: This string is used to configure the controls which shows the recording -#. * duration. As such it is important that only the alphabetic parts of the string +#. i18n-hint: This string is used to configure the controls which shows the +#. recording +#. * duration. As such it is important that only the alphabetic parts of the +#. string #. * are translated, with the numbers left exactly as they are. -#. * The string 'days' indicates that the first number in the control will be the number of days, -#. * then the 'h' indicates the second number displayed is hours, the 'm' indicates the third -#. * number displayed is minutes, and the 's' indicates that the fourth number displayed is +#. * The string 'days' indicates that the first number in the control will be +#. the number of days, +#. * then the 'h' indicates the second number displayed is hours, the 'm' +#. indicates the third +#. * number displayed is minutes, and the 's' indicates that the fourth number +#. displayed is #. * seconds. -#. -#: src/TimeDialog.h src/TimerRecordDialog.cpp src/effects/DtmfGen.cpp -#: src/effects/Noise.cpp src/effects/Silence.cpp src/effects/ToneGen.cpp -#: src/effects/VST/VSTEffect.cpp src/effects/ladspa/LadspaEffect.cpp -#: src/effects/lv2/LV2Effect.cpp +#: src/TimeDialog.h src/TimerRecordDialog.cpp src/effects/DtmfGen.cpp src/effects/Noise.cpp src/effects/Silence.cpp src/effects/ToneGen.cpp src/effects/VST/VSTEffect.cpp +#: src/effects/ladspa/LadspaEffect.cpp src/effects/lv2/LV2Effect.cpp msgid "Duration" msgstr "अवधि" @@ -5285,8 +5256,7 @@ msgstr "वर्तमान परियोजना" msgid "Recording start:" msgstr "ध्वन्यांकन आरंभ :" -#: src/TimerRecordDialog.cpp src/effects/VST/VSTEffect.cpp -#: src/effects/ladspa/LadspaEffect.cpp +#: src/TimerRecordDialog.cpp src/effects/VST/VSTEffect.cpp src/effects/ladspa/LadspaEffect.cpp msgid "Duration:" msgstr "अंतराल :" @@ -5398,12 +5368,15 @@ msgstr "099 घं 060 मि 060 से" msgid "099 days 024 h 060 m 060 s" msgstr "099 दिन 024 घं 060 मि 060 से" -#. i18n-hint: This string is used to configure the controls for times when the recording is -#. * started and stopped. As such it is important that only the alphabetic parts of the string +#. i18n-hint: This string is used to configure the controls for times when the +#. recording is +#. * started and stopped. As such it is important that only the alphabetic +#. parts of the string #. * are translated, with the numbers left exactly as they are. -#. * The 'h' indicates the first number displayed is hours, the 'm' indicates the second number -#. * displayed is minutes, and the 's' indicates that the third number displayed is seconds. -#. +#. * The 'h' indicates the first number displayed is hours, the 'm' indicates +#. the second number +#. * displayed is minutes, and the 's' indicates that the third number +#. displayed is seconds. #: src/TimerRecordDialog.cpp msgid "Start Date and Time" msgstr "आरंभ तिथि और समय" @@ -5448,8 +5421,7 @@ msgstr "स्वचालित निर्यात सक्रिय कर msgid "Export Project As:" msgstr "परियोजना निर्यात इस नाम से:" -#: src/TimerRecordDialog.cpp src/prefs/GUIPrefs.cpp src/prefs/PlaybackPrefs.cpp -#: src/prefs/RecordingPrefs.cpp +#: src/TimerRecordDialog.cpp src/prefs/GUIPrefs.cpp src/prefs/PlaybackPrefs.cpp src/prefs/RecordingPrefs.cpp msgid "Options" msgstr "विकल्प" @@ -5655,7 +5627,8 @@ msgstr "आवाज कुंजी का प्रयोग करने क msgid "Calibration Results\n" msgstr "अंशांकन परिणाम\n" -#. i18n-hint: %1.4f is replaced by a number. sd stands for 'Standard Deviations' +#. i18n-hint: %1.4f is replaced by a number. sd stands for 'Standard +#. Deviations' #: src/VoiceKey.cpp #, c-format msgid "Energy -- mean: %1.4f sd: (%1.4f)\n" @@ -5692,8 +5665,7 @@ msgstr "काट-रेखा के विस्तार के लिए प msgid "This operation cannot be done until importation of %s completes." msgstr "इस प्रक्रिया को तब तक नहीं कर सकते जब तक %s का आयात समाप्त नहीं हो जाता." -#: src/commands/AudacityCommand.cpp src/effects/Effect.cpp -#: src/effects/nyquist/Nyquist.cpp src/prefs/PrefsPanel.cpp plug-ins/beat.ny +#: src/commands/AudacityCommand.cpp src/effects/Effect.cpp src/effects/nyquist/Nyquist.cpp src/prefs/PrefsPanel.cpp plug-ins/beat.ny msgid "Audacity" msgstr "Audacity" @@ -5713,12 +5685,10 @@ msgstr "" msgid "Applying %s..." msgstr "%s लागू कर रहे हैं..." -#. i18n-hint: An item name followed by a value, with appropriate separating punctuation -#: src/commands/AudacityCommand.cpp src/effects/Effect.cpp -#: src/effects/vamp/VampEffect.cpp src/menus/PluginMenus.cpp -#: src/tracks/playabletrack/notetrack/ui/NoteTrackSliderHandles.cpp -#: src/tracks/playabletrack/wavetrack/ui/WaveTrackSliderHandles.cpp -#: src/widgets/ASlider.cpp +#. i18n-hint: An item name followed by a value, with appropriate separating +#. punctuation +#: src/commands/AudacityCommand.cpp src/effects/Effect.cpp src/effects/vamp/VampEffect.cpp src/menus/PluginMenus.cpp src/tracks/playabletrack/notetrack/ui/NoteTrackSliderHandles.cpp +#: src/tracks/playabletrack/wavetrack/ui/WaveTrackSliderHandles.cpp src/widgets/ASlider.cpp #, c-format msgid "%s: %s" msgstr "%s: %s" @@ -5741,15 +5711,13 @@ msgstr "%s वह पैरामीटर नहीं जो %s को मा msgid "Invalid value for parameter '%s': should be %s" msgstr "पैरामीटर '%s': should be %s" -#: src/commands/CommandManager.cpp src/prefs/MousePrefs.cpp -#: src/widgets/KeyView.cpp +#: src/commands/CommandManager.cpp src/prefs/MousePrefs.cpp src/widgets/KeyView.cpp msgid "Command" msgstr "आदेश" #. i18n-hint: %s will be the name of the effect which will be #. * repeated if this menu item is chosen -#: src/commands/CommandManager.cpp src/effects/EffectUI.cpp -#: src/menus/PluginMenus.cpp +#: src/commands/CommandManager.cpp src/effects/EffectUI.cpp src/menus/PluginMenus.cpp #, c-format msgid "Repeat %s" msgstr "%s दुहराएं" @@ -5807,8 +5775,7 @@ msgstr "खींचें" msgid "Panel" msgstr "पैनल" -#: src/commands/DragCommand.cpp src/prefs/ApplicationPrefs.cpp -#: src/update/UpdateNoticeDialog.cpp +#: src/commands/DragCommand.cpp src/prefs/ApplicationPrefs.cpp src/update/UpdateNoticeDialog.cpp msgid "Application" msgstr "एप्लिकेशन" @@ -5877,8 +5844,7 @@ msgstr "क्लिप्स" msgid "Envelopes" msgstr "लिफ़ाफ़े" -#: src/commands/GetInfoCommand.cpp src/commands/GetTrackInfoCommand.cpp -#: src/export/ExportMultiple.cpp +#: src/commands/GetInfoCommand.cpp src/commands/GetTrackInfoCommand.cpp src/export/ExportMultiple.cpp msgid "Labels" msgstr "लेबल" @@ -5904,8 +5870,7 @@ msgstr "सारांश" msgid "Type:" msgstr "प्रकार :" -#: src/commands/GetInfoCommand.cpp src/commands/HelpCommand.cpp -#: src/export/ExportFFmpegDialogs.cpp src/export/ExportMultiple.cpp +#: src/commands/GetInfoCommand.cpp src/commands/HelpCommand.cpp src/export/ExportFFmpegDialogs.cpp src/export/ExportMultiple.cpp msgid "Format:" msgstr "प्रारुप:" @@ -5973,9 +5938,7 @@ msgstr "फाइल में निर्यात करें." msgid "Builtin Commands" msgstr "अंतर्निहित आदेश" -#: src/commands/LoadCommands.cpp src/effects/LoadEffects.cpp -#: src/effects/VST/VSTEffect.cpp src/effects/audiounits/AudioUnitEffect.cpp -#: src/effects/ladspa/LadspaEffect.cpp src/effects/lv2/LoadLV2.cpp +#: src/commands/LoadCommands.cpp src/effects/LoadEffects.cpp src/effects/VST/VSTEffect.cpp src/effects/audiounits/AudioUnitEffect.cpp src/effects/ladspa/LadspaEffect.cpp src/effects/lv2/LoadLV2.cpp #: src/effects/nyquist/LoadNyquist.cpp src/effects/vamp/LoadVamp.cpp msgid "The Audacity Team" msgstr "Audacity टीम" @@ -6044,10 +6007,7 @@ msgstr "लॉग सामग्री मिटाता है." msgid "Get Preference" msgstr "पसंद जानें" -#: src/commands/PreferenceCommands.cpp src/commands/SetProjectCommand.cpp -#: src/commands/SetTrackInfoCommand.cpp -#: src/tracks/labeltrack/ui/LabelTrackView.cpp -#: src/tracks/ui/CommonTrackControls.cpp +#: src/commands/PreferenceCommands.cpp src/commands/SetProjectCommand.cpp src/commands/SetTrackInfoCommand.cpp src/tracks/labeltrack/ui/LabelTrackView.cpp src/tracks/ui/CommonTrackControls.cpp msgid "Name:" msgstr "नाम :" @@ -6095,8 +6055,7 @@ msgstr "पूर्ण स्क्रीन" msgid "Toolbars" msgstr "औजार-पट्टी" -#: src/commands/ScreenshotCommand.cpp src/prefs/EffectsPrefs.cpp -#: src/prefs/EffectsPrefs.h +#: src/commands/ScreenshotCommand.cpp src/prefs/EffectsPrefs.cpp src/prefs/EffectsPrefs.h msgid "Effects" msgstr "प्रभाव" @@ -6236,8 +6195,7 @@ msgstr "सेट करें" msgid "Add" msgstr "जोड़ें" -#: src/commands/SelectCommand.cpp src/effects/EffectUI.cpp -#: src/tracks/playabletrack/wavetrack/ui/CutlineHandle.cpp +#: src/commands/SelectCommand.cpp src/effects/EffectUI.cpp src/tracks/playabletrack/wavetrack/ui/CutlineHandle.cpp msgid "Remove" msgstr "हटाएं" @@ -6322,8 +6280,7 @@ msgid "Edited Envelope" msgstr "संपादित लिफाफा" #. i18n-hint: The envelope is a curve that controls the audio loudness. -#: src/commands/SetEnvelopeCommand.cpp src/prefs/MousePrefs.cpp -#: src/tracks/ui/EnvelopeHandle.cpp +#: src/commands/SetEnvelopeCommand.cpp src/prefs/MousePrefs.cpp src/tracks/ui/EnvelopeHandle.cpp msgid "Envelope" msgstr "लिफ़ाफ़ा" @@ -6423,9 +6380,7 @@ msgstr "दाँए-बाँए :" msgid "Set Track Visuals" msgstr "ट्रैक प्रदर्शन निर्धारित करें" -#: src/commands/SetTrackInfoCommand.cpp src/effects/ToneGen.cpp -#: src/prefs/SpectrogramSettings.cpp src/prefs/TracksPrefs.cpp -#: src/prefs/WaveformSettings.cpp src/widgets/Meter.cpp +#: src/commands/SetTrackInfoCommand.cpp src/effects/ToneGen.cpp src/prefs/SpectrogramSettings.cpp src/prefs/TracksPrefs.cpp src/prefs/WaveformSettings.cpp src/widgets/Meter.cpp #: plug-ins/sample-data-export.ny msgid "Linear" msgstr "रेखीय" @@ -6516,14 +6471,16 @@ msgstr "ऑटो डक" msgid "Reduces (ducks) the volume of one or more tracks whenever the volume of a specified \"control\" track reaches a particular level" msgstr "एक निर्दिष्ट \"कंट्रोल\" ट्रैक का वॉल्यूम जब एक खास स्तर तक पहुँच जाता है तब एक या एक से अधिक ट्रैकों का वॉल्यूम कम (duck) कर देता है" -#. i18n-hint: Auto duck is the name of an effect that 'ducks' (reduces the volume) +#. i18n-hint: Auto duck is the name of an effect that 'ducks' (reduces the +#. volume) #. * of the audio automatically when there is sound on another track. Not as #. * in 'Donald-Duck'! #: src/effects/AutoDuck.cpp msgid "You selected a track which does not contain audio. AutoDuck can only process audio tracks." msgstr "आपने एक ऐसा ट्रैक चुना है जिसमें ऑडियो शामिल नहीं है. ऑटोडक केवल ऑडियो ट्रैक पर ही काम करता है." -#. i18n-hint: Auto duck is the name of an effect that 'ducks' (reduces the volume) +#. i18n-hint: Auto duck is the name of an effect that 'ducks' (reduces the +#. volume) #. * of the audio automatically when there is sound on another track. Not as #. * in 'Donald-Duck'! #: src/effects/AutoDuck.cpp @@ -6539,9 +6496,7 @@ msgid "Duck &amount:" msgstr "डक परिमाण :" #. i18n-hint: Name of time display format that shows time in seconds -#: src/effects/AutoDuck.cpp src/effects/TruncSilence.cpp -#: src/prefs/PlaybackPrefs.cpp src/prefs/RecordingPrefs.cpp -#: src/widgets/NumericTextCtrl.cpp +#: src/effects/AutoDuck.cpp src/effects/TruncSilence.cpp src/prefs/PlaybackPrefs.cpp src/prefs/RecordingPrefs.cpp src/widgets/NumericTextCtrl.cpp msgid "seconds" msgstr "सेकेंड" @@ -6565,8 +6520,7 @@ msgstr "आंतरिक फेएड डाऊन लंबाई :" msgid "Inner &fade up length:" msgstr "आंतरिक फेएड अप लंबाई :" -#: src/effects/AutoDuck.cpp src/effects/Compressor.cpp -#: src/effects/TruncSilence.cpp +#: src/effects/AutoDuck.cpp src/effects/Compressor.cpp src/effects/TruncSilence.cpp msgid "&Threshold:" msgstr "परिसीमा :" @@ -6670,7 +6624,7 @@ msgstr "इसमें" #: src/effects/ChangePitch.cpp msgctxt "change pitch" msgid "&to" -msgstr "से" +msgstr "से अब" #: src/effects/ChangePitch.cpp msgid "to Octave" @@ -6704,13 +6658,11 @@ msgstr "से (Hz)" msgid "t&o" msgstr "से अब" -#: src/effects/ChangePitch.cpp src/effects/ChangeSpeed.cpp -#: src/effects/ChangeTempo.cpp +#: src/effects/ChangePitch.cpp src/effects/ChangeSpeed.cpp src/effects/ChangeTempo.cpp msgid "Percent C&hange:" msgstr "प्रतिशत परिवर्तन :" -#: src/effects/ChangePitch.cpp src/effects/ChangeSpeed.cpp -#: src/effects/ChangeTempo.cpp +#: src/effects/ChangePitch.cpp src/effects/ChangeSpeed.cpp src/effects/ChangeTempo.cpp msgid "Percent Change" msgstr "प्रतिशत परिवर्तन" @@ -6732,9 +6684,7 @@ msgstr "78" #. i18n-hint: n/a is an English abbreviation meaning "not applicable". #. i18n-hint: Can mean "not available," "not applicable," "no answer" -#: src/effects/ChangeSpeed.cpp src/effects/audiounits/AudioUnitEffect.cpp -#: src/effects/ladspa/LadspaEffect.cpp src/effects/lv2/LV2Effect.cpp -#: src/effects/nyquist/Nyquist.cpp +#: src/effects/ChangeSpeed.cpp src/effects/audiounits/AudioUnitEffect.cpp src/effects/ladspa/LadspaEffect.cpp src/effects/lv2/LV2Effect.cpp src/effects/nyquist/Nyquist.cpp msgid "n/a" msgstr "अनुपयुक्त" @@ -6754,7 +6704,8 @@ msgstr "चाल बदलें, गति और पिच दोनों msgid "&Speed Multiplier:" msgstr "गति गुणांक :" -#. i18n-hint: "rpm" is an English abbreviation meaning "revolutions per minute". +#. i18n-hint: "rpm" is an English abbreviation meaning "revolutions per +#. minute". #. "vinyl" refers to old-fashioned phonograph records #: src/effects/ChangeSpeed.cpp msgid "Standard Vinyl rpm:" @@ -6762,7 +6713,6 @@ msgstr "स्टैंडर्ड विनाईल घूर्णन प् #. i18n-hint: changing speed of audio "from" one value "to" another #. "rpm" means "revolutions per minute" as on a vinyl record turntable -#. #: src/effects/ChangeSpeed.cpp msgid "From rpm" msgstr "चक्कर प्रति मिनट से" @@ -6771,11 +6721,10 @@ msgstr "चक्कर प्रति मिनट से" #: src/effects/ChangeSpeed.cpp msgctxt "change speed" msgid "&from" -msgstr "पहले" +msgstr "यहाँ से" #. i18n-hint: changing speed of audio "from" one value "to" another #. "rpm" means "revolutions per minute" as on a vinyl record turntable -#. #: src/effects/ChangeSpeed.cpp msgid "To rpm" msgstr "RPM तक" @@ -6843,7 +6792,7 @@ msgstr "ताल प्रति मिनट, से" #: src/effects/ChangeTempo.cpp msgctxt "change tempo" msgid "&from" -msgstr "पहले" +msgstr "यहाँ से" #. i18n-hint: changing tempo "from" one value "to" another #: src/effects/ChangeTempo.cpp @@ -6854,7 +6803,7 @@ msgstr "ताल प्रति मिनट, तक" #: src/effects/ChangeTempo.cpp msgctxt "change tempo" msgid "&to" -msgstr "से" +msgstr "से अब" #: src/effects/ChangeTempo.cpp msgid "Length (seconds)" @@ -6989,20 +6938,23 @@ msgid "Attack Time" msgstr "चढ़ाई समय" #. i18n-hint: Particularly in percussion, sounds can be regarded as having -#. * an 'attack' phase where the sound builds up and a 'decay' or 'release' where the +#. * an 'attack' phase where the sound builds up and a 'decay' or 'release' +#. where the #. * sound dies away. #: src/effects/Compressor.cpp msgid "R&elease Time:" msgstr "अवरोह समय :" #. i18n-hint: Particularly in percussion, sounds can be regarded as having -#. * an 'attack' phase where the sound builds up and a 'decay' or 'release' where the +#. * an 'attack' phase where the sound builds up and a 'decay' or 'release' +#. where the #. * sound dies away. #: src/effects/Compressor.cpp msgid "Release Time" msgstr "उतार समय" -#. i18n-hint: Make-up, i.e. correct for any reduction, rather than fabricate it. +#. i18n-hint: Make-up, i.e. correct for any reduction, rather than fabricate +#. it. #: src/effects/Compressor.cpp msgid "Ma&ke-up gain for 0 dB after compressing" msgstr "संपीड़न के बाद 0 डीबी करने के लिए आवश्यक सुधार" @@ -7063,8 +7015,7 @@ msgid "Contrast Analyzer, for measuring RMS volume differences between two selec msgstr "कॉनट्रास्ट विश्लेषक, दो चुने हुए ऑडियो के बीच rms वाल्यूम में अंतर मापने के लिए." #. i18n-hint noun -#: src/effects/Contrast.cpp src/effects/ToneGen.cpp -#: src/toolbars/SelectionBar.cpp +#: src/effects/Contrast.cpp src/effects/ToneGen.cpp src/toolbars/SelectionBar.cpp msgid "End" msgstr "अंत" @@ -7185,7 +7136,8 @@ msgstr "पृष्ठभूमि स्तर बहुत अधिक" msgid "Background higher than foreground" msgstr "पृष्ठभूमि अग्रभूमि की तुलना में अधिक" -#. i18n-hint: WCAG2 is the 'Web Content Accessibility Guidelines (WCAG) 2.0', see http://www.w3.org/TR/WCAG20/ +#. i18n-hint: WCAG2 is the 'Web Content Accessibility Guidelines (WCAG) 2.0', +#. see http://www.w3.org/TR/WCAG20/ #: src/effects/Contrast.cpp msgid "WCAG2 Pass" msgstr "WCAG2 उतीर्ण" @@ -7562,9 +7514,7 @@ msgstr "DTMF अनुक्रम :" msgid "&Amplitude (0-1):" msgstr "तीव्रता (0-1)" -#: src/effects/DtmfGen.cpp src/effects/Noise.cpp src/effects/Silence.cpp -#: src/effects/ToneGen.cpp src/effects/TruncSilence.cpp -#: src/effects/lv2/LV2Effect.cpp +#: src/effects/DtmfGen.cpp src/effects/Noise.cpp src/effects/Silence.cpp src/effects/ToneGen.cpp src/effects/TruncSilence.cpp src/effects/lv2/LV2Effect.cpp msgid "&Duration:" msgstr "अंतराल:" @@ -7609,8 +7559,7 @@ msgstr "गूँज" msgid "Repeats the selected audio again and again" msgstr "चुनी हुई ध्वनी को बार-बार दोहराता है" -#: src/effects/Echo.cpp src/effects/FindClipping.cpp -#: src/effects/Paulstretch.cpp +#: src/effects/Echo.cpp src/effects/FindClipping.cpp src/effects/Paulstretch.cpp msgid "Requested value exceeds memory capacity." msgstr "यह मूल्य मेमोरी की क्षमता को पार कर जाएगा." @@ -7634,8 +7583,7 @@ msgstr "पूर्व-निर्धारण" msgid "Export Effect Parameters" msgstr "निर्यात प्रभाव पैरामीटर" -#: src/effects/Effect.cpp src/effects/VST/VSTEffect.cpp -#: src/xml/XMLFileReader.cpp +#: src/effects/Effect.cpp src/effects/VST/VSTEffect.cpp src/xml/XMLFileReader.cpp #, c-format msgid "Could not open file: \"%s\"" msgstr "फ़ाइल खोला नहीं जा सका : \"%s\"" @@ -7674,7 +7622,8 @@ msgid "Previewing" msgstr "पुर्वालोकन करते हुए" #. i18n-hint: "Nyquist" is an embedded interpreted programming language in -#. Audacity, named in honor of the Swedish-American Harry Nyquist (or Nyqvist). +#. Audacity, named in honor of the Swedish-American Harry Nyquist (or +#. Nyqvist). #. In the translations of this and other strings, you may transliterate the #. name into another alphabet. #: src/effects/Effect.h @@ -8082,7 +8031,8 @@ msgstr "%d Hz" msgid "%g kHz" msgstr "%g kHz" -#. i18n-hint k is SI abbreviation for x1,000. Usually unchanged in translation. +#. i18n-hint k is SI abbreviation for x1,000. Usually unchanged in +#. translation. #: src/effects/Equalization.cpp #, c-format msgid "%gk" @@ -8681,7 +8631,8 @@ msgstr "कम करें (&d)" msgid "&Isolate" msgstr "अलग करें (&I)" -#. i18n-hint: Means the difference between effect and original sound. Translate differently from "Reduce" ! +#. i18n-hint: Means the difference between effect and original sound. +#. Translate differently from "Reduce" ! #: src/effects/NoiseReduction.cpp msgid "Resid&ue" msgstr "शेष (&u)" @@ -8750,8 +8701,7 @@ msgstr "16384" msgid "S&teps per window:" msgstr "प्रति विंडो पायदान :" -#: src/effects/NoiseReduction.cpp src/export/ExportFFmpegDialogs.cpp -#: src/export/ExportFLAC.cpp +#: src/effects/NoiseReduction.cpp src/export/ExportFFmpegDialogs.cpp src/export/ExportFLAC.cpp msgid "2" msgstr "2" @@ -8879,7 +8829,6 @@ msgstr "केवल एक चरम समय-खिंचाव या \"stas #. i18n-hint: This is how many times longer the sound will be, e.g. applying #. * the effect to a 1-second sample, with the default Stretch Factor of 10.0 #. * will give an (approximately) 10 second sound -#. #: src/effects/Paulstretch.cpp msgid "&Stretch Factor:" msgstr "विस्तार गुणांक :" @@ -8888,7 +8837,8 @@ msgstr "विस्तार गुणांक :" msgid "&Time Resolution (seconds):" msgstr "समय रिजल्यूशन (सेकंड) :" -#. i18n-hint: 'Time Resolution' is the name of a control in the Paulstretch effect. +#. i18n-hint: 'Time Resolution' is the name of a control in the Paulstretch +#. effect. #: src/effects/Paulstretch.cpp #, c-format msgid "" @@ -8902,7 +8852,8 @@ msgstr "" "ऑडियो चयन को न्यूनतम %.1f सेकेंड तक बढ़ाने का प्रयास करें,\n" "या 'समय रिजोल्यूशन' को %.1f सेकेंड से भी कम करें." -#. i18n-hint: 'Time Resolution' is the name of a control in the Paulstretch effect. +#. i18n-hint: 'Time Resolution' is the name of a control in the Paulstretch +#. effect. #: src/effects/Paulstretch.cpp #, c-format msgid "" @@ -8916,7 +8867,8 @@ msgstr "" "वर्तमान ऑडियो चयन के लिए, अधिकतम\n" "'समय रिजोल्यूशन' %.1f सेकंड है." -#. i18n-hint: 'Time Resolution' is the name of a control in the Paulstretch effect. +#. i18n-hint: 'Time Resolution' is the name of a control in the Paulstretch +#. effect. #: src/effects/Paulstretch.cpp #, c-format msgid "" @@ -9160,17 +9112,20 @@ msgstr "चुनी हुई ध्वनी को उल्टा करत msgid "SBSMS Time / Pitch Stretch" msgstr "SBSMS समय / सुर विस्तार" -#. i18n-hint: Butterworth is the name of the person after whom the filter type is named. +#. i18n-hint: Butterworth is the name of the person after whom the filter type +#. is named. #: src/effects/ScienFilter.cpp msgid "Butterworth" msgstr "बटरवर्थ" -#. i18n-hint: Chebyshev is the name of the person after whom the filter type is named. +#. i18n-hint: Chebyshev is the name of the person after whom the filter type +#. is named. #: src/effects/ScienFilter.cpp msgid "Chebyshev Type I" msgstr "चेबीशेव टाईप I" -#. i18n-hint: Chebyshev is the name of the person after whom the filter type is named. +#. i18n-hint: Chebyshev is the name of the person after whom the filter type +#. is named. #: src/effects/ScienFilter.cpp msgid "Chebyshev Type II" msgstr "चेबीशेव टाईप II" @@ -9200,7 +9155,8 @@ msgstr "फिल्टर लगाने के लिए, सभी चयन msgid "&Filter Type:" msgstr "फ़िल्टर प्रकार :" -#. i18n-hint: 'Order' means the complexity of the filter, and is a number between 1 and 10. +#. i18n-hint: 'Order' means the complexity of the filter, and is a number +#. between 1 and 10. #: src/effects/ScienFilter.cpp msgid "O&rder:" msgstr "क्रम :" @@ -9269,32 +9225,40 @@ msgstr "मौन शिखर:" msgid "Silence Threshold" msgstr "मौन शिखर" -#. i18n-hint: The English would be clearer if it had 'Duration' rather than 'Time' -#. This is a NEW experimental effect, and until we have it documented in the user +#. i18n-hint: The English would be clearer if it had 'Duration' rather than +#. 'Time' +#. This is a NEW experimental effect, and until we have it documented in the +#. user #. manual we don't have a clear description of what this parameter does. #. It is OK to leave it in English. #: src/effects/ScoreAlignDialog.cpp msgid "Presmooth Time:" msgstr "Presmooth Time:" -#. i18n-hint: The English would be clearer if it had 'Duration' rather than 'Time' -#. This is a NEW experimental effect, and until we have it documented in the user +#. i18n-hint: The English would be clearer if it had 'Duration' rather than +#. 'Time' +#. This is a NEW experimental effect, and until we have it documented in the +#. user #. manual we don't have a clear description of what this parameter does. #. It is OK to leave it in English. #: src/effects/ScoreAlignDialog.cpp msgid "Presmooth Time" msgstr "Presmooth Time" -#. i18n-hint: The English would be clearer if it had 'Duration' rather than 'Time' -#. This is a NEW experimental effect, and until we have it documented in the user +#. i18n-hint: The English would be clearer if it had 'Duration' rather than +#. 'Time' +#. This is a NEW experimental effect, and until we have it documented in the +#. user #. manual we don't have a clear description of what this parameter does. #. It is OK to leave it in English. #: src/effects/ScoreAlignDialog.cpp msgid "Line Time:" msgstr "Line Time:" -#. i18n-hint: The English would be clearer if it had 'Duration' rather than 'Time' -#. This is a NEW experimental effect, and until we have it documented in the user +#. i18n-hint: The English would be clearer if it had 'Duration' rather than +#. 'Time' +#. This is a NEW experimental effect, and until we have it documented in the +#. user #. manual we don't have a clear description of what this parameter does. #. It is OK to leave it in English. #: src/effects/ScoreAlignDialog.cpp @@ -9305,8 +9269,10 @@ msgstr "Line Time" msgid "Smooth Time:" msgstr "Smooth Time:" -#. i18n-hint: The English would be clearer if it had 'Duration' rather than 'Time' -#. This is a NEW experimental effect, and until we have it documented in the user +#. i18n-hint: The English would be clearer if it had 'Duration' rather than +#. 'Time' +#. This is a NEW experimental effect, and until we have it documented in the +#. user #. manual we don't have a clear description of what this parameter does. #. It is OK to leave it in English. #: src/effects/ScoreAlignDialog.cpp @@ -9513,8 +9479,7 @@ msgstr "Shell VST ढूंढ रहे हैं" msgid "Registering %d of %d: %-64.64s" msgstr "पंजीकरण %d of %d चल रहा है: %-64.64s" -#: src/effects/VST/VSTEffect.cpp src/effects/ladspa/LadspaEffect.cpp -#: src/effects/lv2/LoadLV2.cpp src/effects/vamp/LoadVamp.cpp +#: src/effects/VST/VSTEffect.cpp src/effects/ladspa/LadspaEffect.cpp src/effects/lv2/LoadLV2.cpp src/effects/vamp/LoadVamp.cpp msgid "Could not load the library" msgstr "लाइब्रेरी को लोड नहीं किया जा सका" @@ -9527,24 +9492,30 @@ msgid "Buffer Size" msgstr "बफ़र आकार" #: src/effects/VST/VSTEffect.cpp src/effects/lv2/LV2Effect.cpp -msgid "The buffer size controls the number of samples sent to the effect on each iteration. Smaller values will cause slower processing and some effects require 8192 samples or less to work properly. However most effects can accept large buffers and using them will greatly reduce processing time." -msgstr "बफर आकार प्रत्येक पुनरावृत्ति पर प्रभाव के लिए भेजे गए नमूनों की संख्या को नियंत्रित करता है. छोटे मान धीमी प्रक्रिया का कारण बनेंगे तथा कुछ प्रभावों को ठीक से काम करने के लिए 8192 नमूनों या उससे कम की आवश्यकता होगी. हालांकि अधिकांश प्रभाव बड़े बफ़र्स को स्वीकार कर सकते हैं और उनका उपयोग करने से प्रसंस्करण समय बहुत कम हो जाएगा." +msgid "" +"The buffer size controls the number of samples sent to the effect on each iteration. Smaller values will cause slower processing and some effects require 8192 samples or less to work properly. " +"However most effects can accept large buffers and using them will greatly reduce processing time." +msgstr "" +"बफर आकार प्रत्येक पुनरावृत्ति पर प्रभाव के लिए भेजे गए नमूनों की संख्या को नियंत्रित करता है. छोटे मान धीमी प्रक्रिया का कारण बनेंगे तथा कुछ प्रभावों को ठीक से काम करने के लिए 8192 नमूनों या उससे कम की आवश्यकता होगी. हालांकि अधिकांश " +"प्रभाव बड़े बफ़र्स को स्वीकार कर सकते हैं और उनका उपयोग करने से प्रसंस्करण समय बहुत कम हो जाएगा." #: src/effects/VST/VSTEffect.cpp msgid "&Buffer Size (8 to 1048576 samples):" msgstr "&बफ़र आकार (8 से 1048576 नमूनों तक) :" -#: src/effects/VST/VSTEffect.cpp src/effects/audiounits/AudioUnitEffect.cpp -#: src/effects/ladspa/LadspaEffect.cpp src/effects/lv2/LV2Effect.cpp +#: src/effects/VST/VSTEffect.cpp src/effects/audiounits/AudioUnitEffect.cpp src/effects/ladspa/LadspaEffect.cpp src/effects/lv2/LV2Effect.cpp msgid "Latency Compensation" msgstr "विलंबता भरपाई" #: src/effects/VST/VSTEffect.cpp -msgid "As part of their processing, some VST effects must delay returning audio to Audacity. When not compensating for this delay, you will notice that small silences have been inserted into the audio. Enabling this option will provide that compensation, but it may not work for all VST effects." -msgstr "उनके प्रसंस्करण के समय, कुछ VST प्रभावों को ऑडियो को Audacity में लौटने में विलंब करनी चाहिए. जब इस देरी की भरपाई नहीं होती है, तो आप देखेंगे कि ऑडियो में छोटी चुप्पी डाली गई है. इस विकल्प को सक्षम करने से यह भरपाई हो जाएगी, लेकिन यह सभी VST प्रभावों के लिए काम नहीं भी कर सकता है." +msgid "" +"As part of their processing, some VST effects must delay returning audio to Audacity. When not compensating for this delay, you will notice that small silences have been inserted into the audio. " +"Enabling this option will provide that compensation, but it may not work for all VST effects." +msgstr "" +"उनके प्रसंस्करण के समय, कुछ VST प्रभावों को ऑडियो को Audacity में लौटने में विलंब करनी चाहिए. जब इस देरी की भरपाई नहीं होती है, तो आप देखेंगे कि ऑडियो में छोटी चुप्पी डाली गई है. इस विकल्प को सक्षम करने से यह भरपाई हो जाएगी, " +"लेकिन यह सभी VST प्रभावों के लिए काम नहीं भी कर सकता है." -#: src/effects/VST/VSTEffect.cpp src/effects/audiounits/AudioUnitEffect.cpp -#: src/effects/ladspa/LadspaEffect.cpp src/effects/lv2/LV2Effect.cpp +#: src/effects/VST/VSTEffect.cpp src/effects/audiounits/AudioUnitEffect.cpp src/effects/ladspa/LadspaEffect.cpp src/effects/lv2/LV2Effect.cpp msgid "Enable &compensation" msgstr "भरपाई सक्रिय (&c)" @@ -9605,8 +9576,7 @@ msgstr "VST प्रिसेट लोड करने में त्रु msgid "Unable to load presets file." msgstr "प्रिसेट फ़ाइल लोड नहीं किया जा सका." -#: src/effects/VST/VSTEffect.cpp src/effects/ladspa/LadspaEffect.cpp -#: src/effects/lv2/LV2Effect.cpp +#: src/effects/VST/VSTEffect.cpp src/effects/ladspa/LadspaEffect.cpp src/effects/lv2/LV2Effect.cpp msgid "Effect Settings" msgstr "प्रभाव सेटिंग्स" @@ -9623,7 +9593,8 @@ msgstr "प्रिसेट फ़ाइल पढ़ नहीं सका." msgid "This parameter file was saved from %s. Continue?" msgstr "यह पैरामीटर फाइल %s से सहेजा गया था. जारी रखें?" -#. i18n-hint: Abbreviates Virtual Studio Technology, an audio software protocol +#. i18n-hint: Abbreviates Virtual Studio Technology, an audio software +#. protocol #. developed by Steinberg GmbH #: src/effects/VST/VSTEffect.h msgid "VST" @@ -9679,16 +9650,24 @@ msgid "Audio Unit Effect Options" msgstr "आडियो युनिट प्रभाव विकल्प" #: src/effects/audiounits/AudioUnitEffect.cpp -msgid "As part of their processing, some Audio Unit effects must delay returning audio to Audacity. When not compensating for this delay, you will notice that small silences have been inserted into the audio. Enabling this option will provide that compensation, but it may not work for all Audio Unit effects." -msgstr "उनके प्रसंस्करण के समय, कुछ ऑडियो यूनिट प्रभावों को ऑडियो को Audacity में लौटने में विलंब करनी चाहिए. जब इस देरी की भरपाई नहीं होती है, तो आप देखेंगे कि ऑडियो में छोटी चुप्पी डाली गई है. इस विकल्प को सक्षम करने से यह भरपाई हो जाएगी, लेकिन यह सभी ऑडियो यूनिट प्रभावों के लिए काम नहीं भी कर सकता है." +msgid "" +"As part of their processing, some Audio Unit effects must delay returning audio to Audacity. When not compensating for this delay, you will notice that small silences have been inserted into the " +"audio. Enabling this option will provide that compensation, but it may not work for all Audio Unit effects." +msgstr "" +"उनके प्रसंस्करण के समय, कुछ ऑडियो यूनिट प्रभावों को ऑडियो को Audacity में लौटने में विलंब करनी चाहिए. जब इस देरी की भरपाई नहीं होती है, तो आप देखेंगे कि ऑडियो में छोटी चुप्पी डाली गई है. इस विकल्प को सक्षम करने से यह भरपाई हो " +"जाएगी, लेकिन यह सभी ऑडियो यूनिट प्रभावों के लिए काम नहीं भी कर सकता है." #: src/effects/audiounits/AudioUnitEffect.cpp msgid "User Interface" msgstr "उपभोक्ता इंटरफ़ेस" #: src/effects/audiounits/AudioUnitEffect.cpp -msgid "Select \"Full\" to use the graphical interface if supplied by the Audio Unit. Select \"Generic\" to use the system supplied generic interface. Select \"Basic\" for a basic text-only interface. Reopen the effect for this to take effect." -msgstr "यदि ऑडियो यूनिट द्वारा उपलब्ध हो तो ग्राफिकल इंटरफ़ेस का उपयोग करने के लिए \"पूर्ण\" का चयन करें. सिस्टम में उपलब्ध जेनेरिक इंटरफ़ेस का उपयोग करने के लिए \"सामान्य\" का चयन करें. केवल टेक्सट् के लिए \"बेसिक\" चुनें. इसे प्रभावी करने के लिए प्रभाव को फिर से खोलें." +msgid "" +"Select \"Full\" to use the graphical interface if supplied by the Audio Unit. Select \"Generic\" to use the system supplied generic interface. Select \"Basic\" for a basic text-only interface. " +"Reopen the effect for this to take effect." +msgstr "" +"यदि ऑडियो यूनिट द्वारा उपलब्ध हो तो ग्राफिकल इंटरफ़ेस का उपयोग करने के लिए \"पूर्ण\" का चयन करें. सिस्टम में उपलब्ध जेनेरिक इंटरफ़ेस का उपयोग करने के लिए \"सामान्य\" का चयन करें. केवल टेक्सट् के लिए \"बेसिक\" चुनें. इसे प्रभावी करने के " +"लिए प्रभाव को फिर से खोलें." #: src/effects/audiounits/AudioUnitEffect.cpp msgid "Select &interface" @@ -9823,7 +9802,6 @@ msgstr "ऑडियो युनिट" #. i18n-hint: abbreviates "Linux Audio Developer's Simple Plugin API" #. (Application programming interface) -#. #: src/effects/ladspa/LadspaEffect.cpp msgid "LADSPA Effects" msgstr "LADSPA प्रभाव" @@ -9841,14 +9819,18 @@ msgid "LADSPA Effect Options" msgstr "LADSPA प्रभाव विकल्प" #: src/effects/ladspa/LadspaEffect.cpp -msgid "As part of their processing, some LADSPA effects must delay returning audio to Audacity. When not compensating for this delay, you will notice that small silences have been inserted into the audio. Enabling this option will provide that compensation, but it may not work for all LADSPA effects." -msgstr "उनके प्रसंस्करण के भाग के रूप में, कुछ LADSPA प्रभावों को Audacity में ऑडियो लौटने में देरी करनी चाहिए. जब इस देरी की भरपाई नहीं होती है, तो आप देखेंगे कि ऑडियो में छोटी चुप्पी डाली गई है. इस विकल्प को सक्षम करने से वह मुआवजा मिल जाएगा, लेकिन यह सभी LADSPA प्रभावों के लिए काम नहीं कर सकता है." +msgid "" +"As part of their processing, some LADSPA effects must delay returning audio to Audacity. When not compensating for this delay, you will notice that small silences have been inserted into the audio. " +"Enabling this option will provide that compensation, but it may not work for all LADSPA effects." +msgstr "" +"उनके प्रसंस्करण के भाग के रूप में, कुछ LADSPA प्रभावों को Audacity में ऑडियो लौटने में देरी करनी चाहिए. जब इस देरी की भरपाई नहीं होती है, तो आप देखेंगे कि ऑडियो में छोटी चुप्पी डाली गई है. इस विकल्प को सक्षम करने से वह मुआवजा मिल " +"जाएगा, लेकिन यह सभी LADSPA प्रभावों के लिए काम नहीं कर सकता है." -#. i18n-hint: An item name introducing a value, which is not part of the string but -#. appears in a following text box window; translate with appropriate punctuation -#: src/effects/ladspa/LadspaEffect.cpp src/effects/nyquist/Nyquist.cpp -#: src/effects/vamp/VampEffect.cpp -#: src/tracks/playabletrack/wavetrack/ui/SpectrumView.cpp +#. i18n-hint: An item name introducing a value, which is not part of the +#. string but +#. appears in a following text box window; translate with appropriate +#. punctuation +#: src/effects/ladspa/LadspaEffect.cpp src/effects/nyquist/Nyquist.cpp src/effects/vamp/VampEffect.cpp src/tracks/playabletrack/wavetrack/ui/SpectrumView.cpp #, c-format msgid "%s:" msgstr "%s :" @@ -9859,7 +9841,6 @@ msgstr "प्रभाव आउटपुट" #. i18n-hint: abbreviates "Linux Audio Developer's Simple Plugin API" #. (Application programming interface) -#. #: src/effects/ladspa/LadspaEffect.h msgid "LADSPA" msgstr "LADSPA" @@ -9874,8 +9855,12 @@ msgid "&Buffer Size (8 to %d) samples:" msgstr "बफर आकार (8 से %d) नमूने :" #: src/effects/lv2/LV2Effect.cpp -msgid "As part of their processing, some LV2 effects must delay returning audio to Audacity. When not compensating for this delay, you will notice that small silences have been inserted into the audio. Enabling this setting will provide that compensation, but it may not work for all LV2 effects." -msgstr "उनके प्रसंस्करण के हिस्से के रूप में, कुछ LV2 प्रभावों को ऑडियो को Audacity में लौटने में देरी करनी चाहिए. जब इस देरी की भरपाई नहीं होती है, तो आप देखेंगे कि ऑडियो में छोटी चुप्पी डाली गई है. इस सेटिंग को सक्षम करने से वह मुआवजा मिलेगा, लेकिन यह सभी LV2 प्रभावों के लिए काम नहीं कर सकता है." +msgid "" +"As part of their processing, some LV2 effects must delay returning audio to Audacity. When not compensating for this delay, you will notice that small silences have been inserted into the audio. " +"Enabling this setting will provide that compensation, but it may not work for all LV2 effects." +msgstr "" +"उनके प्रसंस्करण के हिस्से के रूप में, कुछ LV2 प्रभावों को ऑडियो को Audacity में लौटने में देरी करनी चाहिए. जब इस देरी की भरपाई नहीं होती है, तो आप देखेंगे कि ऑडियो में छोटी चुप्पी डाली गई है. इस सेटिंग को सक्षम करने से वह मुआवजा मिलेगा, " +"लेकिन यह सभी LV2 प्रभावों के लिए काम नहीं कर सकता है." #: src/effects/lv2/LV2Effect.cpp msgid "LV2 effects can have a graphical interface for setting parameter values. A basic text-only method is also available. Reopen the effect for this to take effect." @@ -9925,7 +9910,8 @@ msgstr "Audacity में Nyquist प्रभाव का समर्थन msgid "Applying Nyquist Effect..." msgstr "Nyquist प्रभाव लगाना..." -#. i18n-hint: It is acceptable to translate this the same as for "Nyquist Prompt" +#. i18n-hint: It is acceptable to translate this the same as for "Nyquist +#. Prompt" #: src/effects/nyquist/Nyquist.cpp msgid "Nyquist Worker" msgstr "Nyquist कार्यकर्ता" @@ -10142,8 +10128,7 @@ msgstr "एक फ़ाइल चुनें" msgid "Save file as" msgstr "फ़ाइलों को ऐसे सहेजें" -#: src/effects/nyquist/Nyquist.cpp src/export/Export.cpp -#: src/export/ExportMultiple.cpp +#: src/effects/nyquist/Nyquist.cpp src/export/Export.cpp src/export/ExportMultiple.cpp msgid "untitled" msgstr "बेनाम" @@ -10175,7 +10160,8 @@ msgstr "प्लगइन सेटिग्स" msgid "Program" msgstr "कार्यक्रम" -#. i18n-hint: Vamp is the proper name of a software protocol for sound analysis. +#. i18n-hint: Vamp is the proper name of a software protocol for sound +#. analysis. #. It is not an abbreviation for anything. See http://vamp-plugins.org #: src/effects/vamp/VampEffect.h msgid "Vamp" @@ -10296,7 +10282,8 @@ msgstr "आउटपुट दिखाएं" #. i18n-hint: Some programmer-oriented terminology here: #. "Data" refers to the sound to be exported, "piped" means sent, #. and "standard in" means the default input stream that the external program, -#. named by %f, will read. And yes, it's %f, not %s -- this isn't actually used +#. named by %f, will read. And yes, it's %f, not %s -- this isn't actually +#. used #. in the program as a format string. Keep %f unchanged. #: src/export/ExportCL.cpp #, c-format @@ -10480,8 +10467,7 @@ msgstr "%s में चुनी हुई ध्वनी निर्या msgid "Invalid sample rate" msgstr "अमान्य सैंपल रेट" -#: src/export/ExportFFmpeg.cpp src/export/ExportMP3.cpp -#: src/menus/TrackMenus.cpp +#: src/export/ExportFFmpeg.cpp src/export/ExportMP3.cpp src/menus/TrackMenus.cpp msgid "Resample" msgstr "पुन: नमूना लें" @@ -10513,8 +10499,7 @@ msgstr "सैंपल रेट" #. i18n-hint kbps abbreviates "thousands of bits per second" #. i18n-hint: kbps is the bitrate of the MP3 file, kilobits per second -#: src/export/ExportFFmpegDialogs.cpp src/export/ExportMP2.cpp -#: src/export/ExportMP3.cpp +#: src/export/ExportFFmpegDialogs.cpp src/export/ExportMP2.cpp src/export/ExportMP3.cpp #, c-format msgid "%d kbps" msgstr "%d kbps" @@ -11065,15 +11050,19 @@ msgstr "" "वैकल्पिक\n" "0 - डिफ़ॉल्ट" -#. i18n-hint: 'mux' is short for multiplexor, a device that selects between several inputs -#. 'Mux Rate' is a parameter that has some bearing on compression ratio for MPEG +#. i18n-hint: 'mux' is short for multiplexor, a device that selects between +#. several inputs +#. 'Mux Rate' is a parameter that has some bearing on compression ratio for +#. MPEG #. it has a hard to predict effect on the degree of compression #: src/export/ExportFFmpegDialogs.cpp msgid "Mux Rate:" msgstr "Mux रेट:" -#. i18n-hint: 'Packet Size' is a parameter that has some bearing on compression ratio for MPEG -#. compression. It measures how big a chunk of audio is compressed in one piece. +#. i18n-hint: 'Packet Size' is a parameter that has some bearing on +#. compression ratio for MPEG +#. compression. It measures how big a chunk of audio is compressed in one +#. piece. #: src/export/ExportFFmpegDialogs.cpp msgid "" "Packet size\n" @@ -11084,8 +11073,10 @@ msgstr "" "वैकल्पिक\n" "0 - डिफ़ॉल्ट" -#. i18n-hint: 'Packet Size' is a parameter that has some bearing on compression ratio for MPEG -#. compression. It measures how big a chunk of audio is compressed in one piece. +#. i18n-hint: 'Packet Size' is a parameter that has some bearing on +#. compression ratio for MPEG +#. compression. It measures how big a chunk of audio is compressed in one +#. piece. #: src/export/ExportFFmpegDialogs.cpp msgid "Packet Size:" msgstr "पैकेट आकार:" @@ -11273,8 +11264,7 @@ msgstr "असामान्य" msgid "Extreme" msgstr "तीव्रतम" -#: src/export/ExportMP3.cpp src/prefs/KeyConfigPrefs.cpp -#: plug-ins/sample-data-export.ny +#: src/export/ExportMP3.cpp src/prefs/KeyConfigPrefs.cpp plug-ins/sample-data-export.ny msgid "Standard" msgstr "सामान्य" @@ -11319,7 +11309,8 @@ msgstr "चैनल मोड:" msgid "Force export to mono" msgstr "निर्यात को मोनो बनाएं" -#. i18n-hint: LAME is the name of an MP3 converter and should not be translated +#. i18n-hint: LAME is the name of an MP3 converter and should not be +#. translated #: src/export/ExportMP3.cpp msgid "Locate LAME" msgstr "LAME ढूंढे" @@ -12589,13 +12580,12 @@ msgstr "%s दायाँ" #. last number counts all clips, #. and the last string is the name of the track containing the #. clips. -#. #: src/menus/ClipMenus.cpp #, c-format msgid "%s %d of %d clip %s" msgid_plural "%s %d of %d clips %s" -msgstr[0] "%s %d of %d clip %s" -msgstr[1] "%s %d of %d clips %s" +msgstr[0] "%s %d कुल %d क्लिप %s" +msgstr[1] "%s %d कुल %d क्लिप्स %s" #: src/menus/ClipMenus.cpp msgid "start" @@ -12613,13 +12603,12 @@ msgstr "अंत" #. last number counts all clips, #. and the last string is the name of the track containing the #. clips. -#. #: src/menus/ClipMenus.cpp #, c-format msgid "%s %d and %s %d of %d clip %s" msgid_plural "%s %d and %s %d of %d clips %s" -msgstr[0] "%s %d और %s %d of %d क्लिप %s" -msgstr[1] "%s %d और %s %d of %d क्लिप %s" +msgstr[0] "%s %d तथा%s %d कुल %d क्लिप %s" +msgstr[1] "%s %d तथा%s %d कुल %d क्लिप्स %s" #. i18n-hint: #. first number identifies one of a sequence of clips, @@ -12629,8 +12618,8 @@ msgstr[1] "%s %d और %s %d of %d क्लिप %s" #, c-format msgid "%d of %d clip %s" msgid_plural "%d of %d clips %s" -msgstr[0] "%d of %d clip %s" -msgstr[1] "%d of %d clips %s" +msgstr[0] "%d कुल %d क्लिप %s" +msgstr[1] "%d कुल %d क्लिप्स %s" #: src/menus/ClipMenus.cpp msgid "Time shifted clips to the right" @@ -12640,8 +12629,7 @@ msgstr "समय स्थानांतरित क्लिप को द msgid "Time shifted clips to the left" msgstr "समय स्थानांतरित क्लिप को बाईं ओर" -#: src/menus/ClipMenus.cpp src/prefs/MousePrefs.cpp -#: src/tracks/ui/TimeShiftHandle.cpp +#: src/menus/ClipMenus.cpp src/prefs/MousePrefs.cpp src/tracks/ui/TimeShiftHandle.cpp msgid "Time-Shift" msgstr "समय-स्थानांतरण" @@ -12779,8 +12767,7 @@ msgstr "चयनित ऑडियो ट्रैकों को छाँ msgid "Trim Audio" msgstr "आडियो छाँटें" -#: src/menus/EditMenus.cpp -#: src/tracks/playabletrack/wavetrack/ui/WaveTrackControls.cpp +#: src/menus/EditMenus.cpp src/tracks/playabletrack/wavetrack/ui/WaveTrackControls.cpp msgid "Split" msgstr "तोड़ें" @@ -13233,8 +13220,7 @@ msgstr "संबंधित जानकारी जुटाएं... (&G)" msgid "&Check for Updates..." msgstr "अद्यतन के लिए देखें..." -#: src/menus/LabelMenus.cpp src/toolbars/TranscriptionToolBar.cpp -#: src/tracks/labeltrack/ui/LabelTrackView.cpp +#: src/menus/LabelMenus.cpp src/toolbars/TranscriptionToolBar.cpp src/tracks/labeltrack/ui/LabelTrackView.cpp msgid "Added label" msgstr "नाम-पट्ट लगाया" @@ -13924,7 +13910,6 @@ msgstr "कर्सर की लंबी छलांग (&m) दाँई #. i18n-hint: These commands assist the user in finding a sound by ear. ... #. "Scrubbing" is variable-speed playback, ... #. "Seeking" is normal speed playback but with skips, ... -#. #: src/menus/SelectMenus.cpp src/tracks/ui/Scrubbing.cpp msgid "See&k" msgstr "ढूंढें" @@ -14139,13 +14124,11 @@ msgstr "Audacity का यह संस्करण प्रत्येक msgid "Created new time track" msgstr "नया समय ट्रैक बनाया गया" -#: src/menus/TrackMenus.cpp -#: src/tracks/playabletrack/wavetrack/ui/WaveTrackControls.cpp +#: src/menus/TrackMenus.cpp src/tracks/playabletrack/wavetrack/ui/WaveTrackControls.cpp msgid "New sample rate (Hz):" msgstr "नया नमूना आवृति दर(Hz):" -#: src/menus/TrackMenus.cpp -#: src/tracks/playabletrack/wavetrack/ui/WaveTrackControls.cpp +#: src/menus/TrackMenus.cpp src/tracks/playabletrack/wavetrack/ui/WaveTrackControls.cpp msgid "The entered value is invalid" msgstr "प्रविष्टि अमान्य है" @@ -14392,18 +14375,19 @@ msgstr "केंद्रित ट्रैक सबसे ऊपर (&o) ल msgid "Move Focused Track to &Bottom" msgstr "केंद्रित ट्रैक सबसे नीचे (&b) लाएं" -#. i18n-hint: These are strings for the status bar, and indicate whether Audacity +#. i18n-hint: These are strings for the status bar, and indicate whether +#. Audacity #. is playing or recording or stopped, and whether it is paused; #. progressive verb form #: src/menus/TransportMenus.cpp src/toolbars/ControlToolBar.cpp msgid "Playing" msgstr "बजना जारी" -#. i18n-hint: These are strings for the status bar, and indicate whether Audacity +#. i18n-hint: These are strings for the status bar, and indicate whether +#. Audacity #. is playing or recording or stopped, and whether it is paused; #. progressive verb form -#: src/menus/TransportMenus.cpp src/prefs/MidiIOPrefs.cpp -#: src/toolbars/ControlToolBar.cpp +#: src/menus/TransportMenus.cpp src/prefs/MidiIOPrefs.cpp src/toolbars/ControlToolBar.cpp msgid "Recording" msgstr "ध्वन्यांकन" @@ -14766,25 +14750,24 @@ msgid "%s %2.0f%% complete. Click to change task focal point." msgstr "%s %2.0f%% संपन्न. कार्य केन्द्र बिन्दु बदलने के लिए क्लिक करें." #: src/prefs/ApplicationPrefs.cpp -#, fuzzy msgid "Preferences for Application" -msgstr "गुणवत्ता के लिए वरीयतायें" +msgstr "ऐपलिकेशन के लिए प्राथमिकताएं" -#. i18n-hint: Title for the update notifications panel in the preferences dialog. +#. i18n-hint: Title for the update notifications panel in the preferences +#. dialog. #: src/prefs/ApplicationPrefs.cpp msgid "Update notifications" -msgstr "" +msgstr "अद्यतन सूचनाएं" #. i18n-hint: Check-box title that configures periodic updates checking. #: src/prefs/ApplicationPrefs.cpp -#, fuzzy msgctxt "application preferences" msgid "&Check for updates" -msgstr "अद्यतन के लिए देखें..." +msgstr "अद्यतन के लिए देखें (&C)" #: src/prefs/ApplicationPrefs.cpp msgid "App update checking requires network access. In order to protect your privacy, Audacity does not store any personal information." -msgstr "" +msgstr "ऐप अद्यतन की जाँच के लिए नेटवर्क एक्सेस की आवश्यकता होती है. आपकी गोपनीयता की रक्षा के लिए, Audacity कोई व्यक्तिगत जानकारी संग्रहीत नहीं करता है." #: src/prefs/BatchPrefs.cpp src/prefs/BatchPrefs.h msgid "Batch" @@ -14825,8 +14808,7 @@ msgstr "मेज़बान :" msgid "Using:" msgstr "उपयोग में:" -#: src/prefs/DevicePrefs.cpp src/prefs/MidiIOPrefs.cpp -#: src/prefs/PlaybackPrefs.cpp src/prefs/PlaybackPrefs.h +#: src/prefs/DevicePrefs.cpp src/prefs/MidiIOPrefs.cpp src/prefs/PlaybackPrefs.cpp src/prefs/PlaybackPrefs.h msgid "Playback" msgstr "बजाएं" @@ -14835,9 +14817,7 @@ msgid "&Device:" msgstr "यंत्र (&D):" #. i18n-hint: modifier as in "Recording preferences", not progressive verb -#: src/prefs/DevicePrefs.cpp src/prefs/RecordingPrefs.cpp -#: src/prefs/RecordingPrefs.h -#, fuzzy +#: src/prefs/DevicePrefs.cpp src/prefs/RecordingPrefs.cpp src/prefs/RecordingPrefs.h msgctxt "preference" msgid "Recording" msgstr "ध्वन्यांकन" @@ -14854,8 +14834,7 @@ msgstr "चैनल्स (&n):" msgid "Latency" msgstr "विलंबता" -#: src/prefs/DevicePrefs.cpp src/prefs/RecordingPrefs.cpp -#: src/widgets/NumericTextCtrl.cpp +#: src/prefs/DevicePrefs.cpp src/prefs/RecordingPrefs.cpp src/widgets/NumericTextCtrl.cpp msgid "milliseconds" msgstr "मिलिसेकेंड" @@ -14884,8 +14863,7 @@ msgid "2 (Stereo)" msgstr "2 (स्टिरियो)" #. i18n-hint: Directories, also called directories, in computer file systems -#: src/prefs/DirectoriesPrefs.cpp src/prefs/DirectoriesPrefs.h -#: src/widgets/UnwritableLocationErrorDialog.cpp +#: src/prefs/DirectoriesPrefs.cpp src/prefs/DirectoriesPrefs.h src/widgets/UnwritableLocationErrorDialog.cpp msgid "Directories" msgstr "निर्देशिकाएं" @@ -15026,7 +15004,6 @@ msgstr "प्रकार द्वारा समूहीकृत" #. i18n-hint: abbreviates "Linux Audio Developer's Simple Plugin API" #. (Application programming interface) -#. #: src/prefs/EffectsPrefs.cpp msgid "&LADSPA" msgstr "&LADSPA" @@ -15038,20 +15015,23 @@ msgid "LV&2" msgstr "LV&2" #. i18n-hint: "Nyquist" is an embedded interpreted programming language in -#. Audacity, named in honor of the Swedish-American Harry Nyquist (or Nyqvist). +#. Audacity, named in honor of the Swedish-American Harry Nyquist (or +#. Nyqvist). #. In the translations of this and other strings, you may transliterate the #. name into another alphabet. #: src/prefs/EffectsPrefs.cpp msgid "N&yquist" msgstr "N&yquist" -#. i18n-hint: Vamp is the proper name of a software protocol for sound analysis. +#. i18n-hint: Vamp is the proper name of a software protocol for sound +#. analysis. #. It is not an abbreviation for anything. See http://vamp-plugins.org #: src/prefs/EffectsPrefs.cpp msgid "&Vamp" msgstr "&Vamp" -#. i18n-hint: Abbreviates Virtual Studio Technology, an audio software protocol +#. i18n-hint: Abbreviates Virtual Studio Technology, an audio software +#. protocol #. developed by Steinberg GmbH #: src/prefs/EffectsPrefs.cpp msgid "V&ST" @@ -15152,7 +15132,9 @@ msgid "Unused filters:" msgstr "अनुपयुक्त फिल्टरें:" #: src/prefs/ExtImportPrefs.cpp -msgid "There are space characters (spaces, newlines, tabs or linefeeds) in one of the items. They are likely to break the pattern matching. Unless you know what you are doing, it is recommended to trim spaces. Do you want Audacity to trim spaces for you?" +msgid "" +"There are space characters (spaces, newlines, tabs or linefeeds) in one of the items. They are likely to break the pattern matching. Unless you know what you are doing, it is recommended to trim " +"spaces. Do you want Audacity to trim spaces for you?" msgstr "किसी एक वस्तु में रिक्ताक्षर (रिक्त स्थान, नई पंक्ति, टैब या खाली पंक्ति ) हैं. जो पैटर्न से मेल कराने में बाधा डाल सकता है. जब तक आप नहीं जानते, रिक्त स्थानों को छाँटना ही ठीक है. क्या आप के लिए ऑडेसिटी रिक्त स्थानों को छाँट दे?" #: src/prefs/ExtImportPrefs.cpp @@ -15623,7 +15605,8 @@ msgstr "MIDI Synthesizer Latency एक पूर्णांक ही हो msgid "Midi IO" msgstr "Midi IO" -#. i18n-hint: Modules are optional extensions to Audacity that add NEW features. +#. i18n-hint: Modules are optional extensions to Audacity that add NEW +#. features. #: src/prefs/ModulePrefs.cpp msgid "Modules" msgstr "मोड्यूल्स" @@ -15719,9 +15702,7 @@ msgstr "बायाँ-खीचें" msgid "Set Selection Range" msgstr "चयन क्षेत्र बताएं" -#: src/prefs/MousePrefs.cpp -#: src/tracks/playabletrack/notetrack/ui/NoteTrackVZoomHandle.cpp -#: src/tracks/playabletrack/wavetrack/ui/SpectrumVZoomHandle.cpp +#: src/prefs/MousePrefs.cpp src/tracks/playabletrack/notetrack/ui/NoteTrackVZoomHandle.cpp src/tracks/playabletrack/wavetrack/ui/SpectrumVZoomHandle.cpp #: src/tracks/playabletrack/wavetrack/ui/WaveformVZoomHandle.cpp msgid "Shift-Left-Click" msgstr "ऊच्च-बायाँ-क्लिक" @@ -15977,7 +15958,8 @@ msgstr "वास्तविक-समय में बदलना" msgid "Sample Rate Con&verter:" msgstr "नमूना दर परिवर्तक:" -#. i18n-hint: technical term for randomization to reduce undesirable resampling artifacts +#. i18n-hint: technical term for randomization to reduce undesirable +#. resampling artifacts #: src/prefs/QualityPrefs.cpp msgid "&Dither:" msgstr "डिथर(&D):" @@ -15990,7 +15972,8 @@ msgstr "ऊच्च-गुणवत्ता परिवर्तन" msgid "Sample Rate Conver&ter:" msgstr "नमूना दर परिवर्तक(&t):" -#. i18n-hint: technical term for randomization to reduce undesirable resampling artifacts +#. i18n-hint: technical term for randomization to reduce undesirable +#. resampling artifacts #: src/prefs/QualityPrefs.cpp msgid "Dit&her:" msgstr "डिथर:(&h)" @@ -16023,7 +16006,8 @@ msgstr "इनपुट को सॉटवेयर(&S) द्वारा ब msgid "Record on a new track" msgstr "नए ट्रैक में रिकार्ड करें" -#. i18n-hint: Dropout is a loss of a short sequence audio sample data from the recording +#. i18n-hint: Dropout is a loss of a short sequence audio sample data from the +#. recording #: src/prefs/RecordingPrefs.cpp msgid "Detect dropouts" msgstr "छूटे हुए का पता लगाएं" @@ -16120,12 +16104,14 @@ msgstr "क्रॉसफ़ेड (&f):" msgid "Mel" msgstr "Mel" -#. i18n-hint: The name of a frequency scale in psychoacoustics, named for Heinrich Barkhausen +#. i18n-hint: The name of a frequency scale in psychoacoustics, named for +#. Heinrich Barkhausen #: src/prefs/SpectrogramSettings.cpp msgid "Bark" msgstr "Bark" -#. i18n-hint: The name of a frequency scale in psychoacoustics, abbreviates Equivalent Rectangular Bandwidth +#. i18n-hint: The name of a frequency scale in psychoacoustics, abbreviates +#. Equivalent Rectangular Bandwidth #: src/prefs/SpectrogramSettings.cpp msgid "ERB" msgstr "ERB" @@ -16286,7 +16272,8 @@ msgstr "वर्णक्रम चयन सक्रिय करें" msgid "Show a grid along the &Y-axis" msgstr "&Y-धुरी पर एक ग्रिड दिखाएं" -#. i18n-hint: FFT stands for Fast Fourier Transform and probably shouldn't be translated +#. i18n-hint: FFT stands for Fast Fourier Transform and probably shouldn't be +#. translated #: src/prefs/SpectrumPrefs.cpp msgid "FFT Find Notes" msgstr "FFT खोज टिप्पणी" @@ -16348,7 +16335,8 @@ msgid "The maximum number of notes must be in the range 1..128" msgstr "सुरों की अधिकतम संख्या 1..128 की सीमा में ही होनी चाहिए" #. i18n-hint: A theme is a consistent visual style across an application's -#. graphical user interface, including choices of colors, and similarity of images +#. graphical user interface, including choices of colors, and similarity of +#. images #. such as those on button controls. Audacity can load and save alternative #. themes. #: src/prefs/ThemePrefs.cpp src/prefs/ThemePrefs.h @@ -16551,8 +16539,7 @@ msgstr "नमूने" msgid "4 Pixels per Sample" msgstr "4 पिक्सेल प्रति नमूना" -#: src/prefs/TracksPrefs.cpp -#: src/tracks/playabletrack/notetrack/ui/NoteTrackVZoomHandle.cpp +#: src/prefs/TracksPrefs.cpp src/tracks/playabletrack/notetrack/ui/NoteTrackVZoomHandle.cpp msgid "Max Zoom" msgstr "सबसे बड़ा दिखाएं" @@ -16666,7 +16653,8 @@ msgstr "तरंगरूप के लिए वरीयतायें" msgid "Waveform dB &range:" msgstr "तरंग dB सीमा :" -#. i18n-hint: These are strings for the status bar, and indicate whether Audacity +#. i18n-hint: These are strings for the status bar, and indicate whether +#. Audacity #. is playing or recording or stopped, and whether it is paused; #. progressive verb form #: src/toolbars/ControlToolBar.cpp @@ -16705,7 +16693,8 @@ msgstr "अंत तक चुनें" msgid "Select to Start" msgstr "आरंभ से चुनें" -#. i18n-hint: These are strings for the status bar, and indicate whether Audacity +#. i18n-hint: These are strings for the status bar, and indicate whether +#. Audacity #. is playing or recording or stopped, and whether it is paused. #: src/toolbars/ControlToolBar.cpp src/tracks/ui/Scrubbing.cpp #, c-format @@ -16795,16 +16784,12 @@ msgstr "मूक ऑडियो को चुनना" msgid "Sync-Lock Tracks" msgstr "ट्रैकों को गठबंधन में रखें" -#: src/toolbars/EditToolBar.cpp -#: src/tracks/playabletrack/notetrack/ui/NoteTrackVZoomHandle.cpp -#: src/tracks/playabletrack/wavetrack/ui/SpectrumVZoomHandle.cpp +#: src/toolbars/EditToolBar.cpp src/tracks/playabletrack/notetrack/ui/NoteTrackVZoomHandle.cpp src/tracks/playabletrack/wavetrack/ui/SpectrumVZoomHandle.cpp #: src/tracks/playabletrack/wavetrack/ui/WaveformVZoomHandle.cpp msgid "Zoom In" msgstr "बड़ा करें" -#: src/toolbars/EditToolBar.cpp -#: src/tracks/playabletrack/notetrack/ui/NoteTrackVZoomHandle.cpp -#: src/tracks/playabletrack/wavetrack/ui/SpectrumVZoomHandle.cpp +#: src/toolbars/EditToolBar.cpp src/tracks/playabletrack/notetrack/ui/NoteTrackVZoomHandle.cpp src/tracks/playabletrack/wavetrack/ui/SpectrumVZoomHandle.cpp #: src/tracks/playabletrack/wavetrack/ui/WaveformVZoomHandle.cpp msgid "Zoom Out" msgstr "छोटा करें" @@ -16838,7 +16823,8 @@ msgstr "रिकार्डिंग मीटर" msgid "Playback Meter" msgstr "प्लेबैक मीटर" -#. i18n-hint: (noun) The meter that shows the loudness of the audio being recorded. +#. i18n-hint: (noun) The meter that shows the loudness of the audio being +#. recorded. #. This is the name used in screen reader software, where having 'Meter' first #. apparently is helpful to partially sighted people. #: src/toolbars/MeterToolBar.cpp @@ -16924,7 +16910,6 @@ msgstr "स्क्रबिंग" #. i18n-hint: These commands assist the user in finding a sound by ear. ... #. "Scrubbing" is variable-speed playback, ... #. "Seeking" is normal speed playback but with skips -#. #: src/toolbars/ScrubbingToolBar.cpp msgid "Stop Scrubbing" msgstr "स्क्रबिंग बंद करें" @@ -16932,7 +16917,6 @@ msgstr "स्क्रबिंग बंद करें" #. i18n-hint: These commands assist the user in finding a sound by ear. ... #. "Scrubbing" is variable-speed playback, ... #. "Seeking" is normal speed playback but with skips -#. #: src/toolbars/ScrubbingToolBar.cpp msgid "Start Scrubbing" msgstr "स्क्रबिंग आरंभ" @@ -16940,7 +16924,6 @@ msgstr "स्क्रबिंग आरंभ" #. i18n-hint: These commands assist the user in finding a sound by ear. ... #. "Scrubbing" is variable-speed playback, ... #. "Seeking" is normal speed playback but with skips -#. #: src/toolbars/ScrubbingToolBar.cpp msgid "Stop Seeking" msgstr "खोजना बंद करें" @@ -16948,7 +16931,6 @@ msgstr "खोजना बंद करें" #. i18n-hint: These commands assist the user in finding a sound by ear. ... #. "Scrubbing" is variable-speed playback, ... #. "Seeking" is normal speed playback but with skips -#. #: src/toolbars/ScrubbingToolBar.cpp msgid "Start Seeking" msgstr "खोजना आरंभ" @@ -17003,9 +16985,7 @@ msgstr "साथ जोड़ें" msgid "Length" msgstr "लंबाई" -#: src/toolbars/SelectionBar.cpp -#: src/tracks/playabletrack/wavetrack/ui/WaveTrackSliderHandles.cpp -#: src/widgets/ASlider.cpp +#: src/toolbars/SelectionBar.cpp src/tracks/playabletrack/wavetrack/ui/WaveTrackSliderHandles.cpp src/widgets/ASlider.cpp msgid "Center" msgstr "मध्य" @@ -17097,8 +17077,7 @@ msgstr "समय आगे-पीछे करें" msgid "Zoom Tool" msgstr "बड़ा-छोटा करें" -#: src/toolbars/ToolsToolBar.cpp -#: src/tracks/playabletrack/wavetrack/ui/SampleHandle.cpp +#: src/toolbars/ToolsToolBar.cpp src/tracks/playabletrack/wavetrack/ui/SampleHandle.cpp msgid "Draw Tool" msgstr "पेंसिल औजार" @@ -17174,13 +17153,11 @@ msgstr "नाम-पट्टी (या पट्टियों) को क msgid "Drag label boundary." msgstr "नाम-पट्टी सीमा को खीचें." -#: src/tracks/labeltrack/ui/LabelGlyphHandle.cpp -#: src/tracks/labeltrack/ui/LabelTrackView.cpp +#: src/tracks/labeltrack/ui/LabelGlyphHandle.cpp src/tracks/labeltrack/ui/LabelTrackView.cpp msgid "Modified Label" msgstr "परिवर्तित नाम" -#: src/tracks/labeltrack/ui/LabelGlyphHandle.cpp -#: src/tracks/labeltrack/ui/LabelTrackView.cpp +#: src/tracks/labeltrack/ui/LabelGlyphHandle.cpp src/tracks/labeltrack/ui/LabelTrackView.cpp msgid "Label Edit" msgstr "नाम संपादन" @@ -17235,42 +17212,31 @@ msgstr "संपादित नाम-पट्टी" msgid "New label" msgstr "नया लेबल" -#: src/tracks/playabletrack/notetrack/ui/NoteTrackControls.cpp -#: src/tracks/playabletrack/notetrack/ui/NoteTrackVZoomHandle.cpp +#: src/tracks/playabletrack/notetrack/ui/NoteTrackControls.cpp src/tracks/playabletrack/notetrack/ui/NoteTrackVZoomHandle.cpp msgid "Up &Octave" msgstr "ऊपरी सप्तक(&O)" -#: src/tracks/playabletrack/notetrack/ui/NoteTrackControls.cpp -#: src/tracks/playabletrack/notetrack/ui/NoteTrackVZoomHandle.cpp +#: src/tracks/playabletrack/notetrack/ui/NoteTrackControls.cpp src/tracks/playabletrack/notetrack/ui/NoteTrackVZoomHandle.cpp msgid "Down Octa&ve" msgstr "निम्न सप्तक(&v)" -#: src/tracks/playabletrack/notetrack/ui/NoteTrackVZoomHandle.cpp -#: src/tracks/playabletrack/wavetrack/ui/WaveTrackVZoomHandle.cpp +#: src/tracks/playabletrack/notetrack/ui/NoteTrackVZoomHandle.cpp src/tracks/playabletrack/wavetrack/ui/WaveTrackVZoomHandle.cpp msgid "Click to vertically zoom in. Shift-click to zoom out. Drag to specify a zoom region." msgstr "क्लिक करें ऊर्ध्व में ज़ूम के लिए, उच्च-क्लिक ज़ूम-आउट के लिए. ज़ूम-क्षेत्र बताने के लिए क्लिक करते हुए खींचें." -#: src/tracks/playabletrack/notetrack/ui/NoteTrackVZoomHandle.cpp -#: src/tracks/playabletrack/wavetrack/ui/WaveTrackVZoomHandle.cpp -#: src/tracks/timetrack/ui/TimeTrackVZoomHandle.cpp +#: src/tracks/playabletrack/notetrack/ui/NoteTrackVZoomHandle.cpp src/tracks/playabletrack/wavetrack/ui/WaveTrackVZoomHandle.cpp src/tracks/timetrack/ui/TimeTrackVZoomHandle.cpp msgid "Right-click for menu." msgstr "मेन्यू के लिए दायां-क्लिक." -#: src/tracks/playabletrack/notetrack/ui/NoteTrackVZoomHandle.cpp -#: src/tracks/playabletrack/wavetrack/ui/SpectrumVZoomHandle.cpp -#: src/tracks/playabletrack/wavetrack/ui/WaveformVZoomHandle.cpp +#: src/tracks/playabletrack/notetrack/ui/NoteTrackVZoomHandle.cpp src/tracks/playabletrack/wavetrack/ui/SpectrumVZoomHandle.cpp src/tracks/playabletrack/wavetrack/ui/WaveformVZoomHandle.cpp msgid "Zoom Reset" msgstr "ज़ूम रिसेट" -#: src/tracks/playabletrack/notetrack/ui/NoteTrackVZoomHandle.cpp -#: src/tracks/playabletrack/wavetrack/ui/SpectrumVZoomHandle.cpp -#: src/tracks/playabletrack/wavetrack/ui/WaveformVZoomHandle.cpp +#: src/tracks/playabletrack/notetrack/ui/NoteTrackVZoomHandle.cpp src/tracks/playabletrack/wavetrack/ui/SpectrumVZoomHandle.cpp src/tracks/playabletrack/wavetrack/ui/WaveformVZoomHandle.cpp msgid "Shift-Right-Click" msgstr "शिफ्ट-दायां-क्लिक करें" -#: src/tracks/playabletrack/notetrack/ui/NoteTrackVZoomHandle.cpp -#: src/tracks/playabletrack/wavetrack/ui/SpectrumVZoomHandle.cpp -#: src/tracks/playabletrack/wavetrack/ui/WaveformVZoomHandle.cpp +#: src/tracks/playabletrack/notetrack/ui/NoteTrackVZoomHandle.cpp src/tracks/playabletrack/wavetrack/ui/SpectrumVZoomHandle.cpp src/tracks/playabletrack/wavetrack/ui/WaveformVZoomHandle.cpp msgid "Left-Click/Left-Drag" msgstr "बायाँ-क्लिक / बायाँ-ड्रैग" @@ -17312,8 +17278,7 @@ msgstr "विलय" msgid "Expanded Cut Line" msgstr "विस्तृत काट-रेखा" -#: src/tracks/playabletrack/wavetrack/ui/CutlineHandle.cpp -#: src/tracks/ui/TrackButtonHandles.cpp +#: src/tracks/playabletrack/wavetrack/ui/CutlineHandle.cpp src/tracks/ui/TrackButtonHandles.cpp msgid "Expand" msgstr "विस्तार" @@ -17385,9 +17350,9 @@ msgid "Processing... %i%%" msgstr "प्रक्रिया जारी... %i%%" #. i18n-hint: The strings name a track and a format -#. i18n-hint: The strings name a track and a channel choice (mono, left, or right) -#: src/tracks/playabletrack/wavetrack/ui/WaveTrackControls.cpp -#: src/tracks/playabletrack/wavetrack/ui/WaveformView.cpp +#. i18n-hint: The strings name a track and a channel choice (mono, left, or +#. right) +#: src/tracks/playabletrack/wavetrack/ui/WaveTrackControls.cpp src/tracks/playabletrack/wavetrack/ui/WaveformView.cpp #, c-format msgid "Changed '%s' to %s" msgstr "परिवर्तित '%s' से %s" @@ -17466,8 +17431,7 @@ msgstr "आवृति दर परिवर्तन" msgid "Set Rate" msgstr "आवृति दर निर्धारित करें" -#: src/tracks/playabletrack/wavetrack/ui/WaveTrackControls.cpp -#: src/tracks/playabletrack/wavetrack/ui/WaveTrackViewConstants.cpp +#: src/tracks/playabletrack/wavetrack/ui/WaveTrackControls.cpp src/tracks/playabletrack/wavetrack/ui/WaveTrackViewConstants.cpp msgid "&Multi-view" msgstr "बहु-दृश्य (&M)" @@ -17560,22 +17524,19 @@ msgid "Right, %dHz" msgstr "दायाँ, %dHz" #. i18n-hint dB abbreviates decibels -#: src/tracks/playabletrack/wavetrack/ui/WaveTrackSliderHandles.cpp -#: src/widgets/ASlider.cpp +#: src/tracks/playabletrack/wavetrack/ui/WaveTrackSliderHandles.cpp src/widgets/ASlider.cpp #, c-format msgid "%+.1f dB" msgstr "%+.1f dB" #. i18n-hint: Stereo pan setting -#: src/tracks/playabletrack/wavetrack/ui/WaveTrackSliderHandles.cpp -#: src/widgets/ASlider.cpp +#: src/tracks/playabletrack/wavetrack/ui/WaveTrackSliderHandles.cpp src/widgets/ASlider.cpp #, c-format msgid "%.0f%% Left" msgstr "%.0f%% बायां" #. i18n-hint: Stereo pan setting -#: src/tracks/playabletrack/wavetrack/ui/WaveTrackSliderHandles.cpp -#: src/widgets/ASlider.cpp +#: src/tracks/playabletrack/wavetrack/ui/WaveTrackSliderHandles.cpp src/widgets/ASlider.cpp #, c-format msgid "%.0f%% Right" msgstr "%.0f%% दायां" @@ -17740,7 +17701,6 @@ msgstr "ऐडजस्टेड लिफ़ाफ़ा." #. i18n-hint: These commands assist the user in finding a sound by ear. ... #. "Scrubbing" is variable-speed playback, ... #. "Seeking" is normal speed playback but with skips, ... -#. #: src/tracks/ui/Scrubbing.cpp msgid "&Scrub" msgstr "स्क्रब(&S)" @@ -17752,7 +17712,6 @@ msgstr "खोजना" #. i18n-hint: These commands assist the user in finding a sound by ear. ... #. "Scrubbing" is variable-speed playback, ... #. "Seeking" is normal speed playback but with skips, ... -#. #: src/tracks/ui/Scrubbing.cpp msgid "Scrub &Ruler" msgstr "स्क्रब(&R) पैमाना" @@ -17814,7 +17773,8 @@ msgstr "आवृत्ति बैंडविड्थ को ठीक क msgid "Edit, Preferences..." msgstr "संपादन, पसंद..." -#. i18n-hint: %s is usually replaced by "Ctrl+P" for Windows/Linux, "Command+," for Mac +#. i18n-hint: %s is usually replaced by "Ctrl+P" for Windows/Linux, +#. "Command+," for Mac #: src/tracks/ui/SelectHandle.cpp #, c-format msgid "Multi-Tool Mode: %s for Mouse and Keyboard Preferences." @@ -17828,7 +17788,8 @@ msgstr "आवृत्ति बैंडविड्थ निर्धार msgid "Click and drag to select audio" msgstr "ऑडियो चुनने के लिए क्लिक कर खींचें" -#. i18n-hint: "Snapping" means automatic alignment of selection edges to any nearby label or clip boundaries +#. i18n-hint: "Snapping" means automatic alignment of selection edges to any +#. nearby label or clip boundaries #: src/tracks/ui/SelectHandle.cpp msgid "(snapping)" msgstr "(स्नैपिंग)" @@ -17885,13 +17846,15 @@ msgstr "कमांड+क्लिक करें" msgid "Ctrl+Click" msgstr "कंट्रोल+क्लिक" -#. i18n-hint: %s is replaced by (translation of) 'Ctrl+Click' on windows, 'Command+Click' on Mac +#. i18n-hint: %s is replaced by (translation of) 'Ctrl+Click' on windows, +#. 'Command+Click' on Mac #: src/tracks/ui/TrackSelectHandle.cpp #, c-format msgid "%s to select or deselect track. Drag up or down to change track order." msgstr "%s से ट्रैक का चयन करें या रद्द करें. ट्रैक का क्रम बदलने के लिए.ऊपर या नीचे खींचें." -#. i18n-hint: %s is replaced by (translation of) 'Ctrl+Click' on windows, 'Command+Click' on Mac +#. i18n-hint: %s is replaced by (translation of) 'Ctrl+Click' on windows, +#. 'Command+Click' on Mac #: src/tracks/ui/TrackSelectHandle.cpp #, c-format msgid "%s to select or deselect track." @@ -17952,31 +17915,30 @@ msgstr "Audacity ऑडेसिटी डाउनलोड लिंक नह #. i18n-hint: Title of the app update notice dialog. #: src/update/UpdateNoticeDialog.cpp msgid "App update checking" -msgstr "" +msgstr "ऐप अद्यतन" #: src/update/UpdateNoticeDialog.cpp msgid "To stay up to date, you will receive an in-app notification whenever there is a new version of Audacity available to download." -msgstr "" +msgstr "अद्यतित रहने के लिए, जब भी Audacity का कोई नया संस्करण डाउनलोड करने के लिए उपलब्ध होगा, आपको एक इन-ऐप सूचना प्राप्त होगी." #: src/update/UpdateNoticeDialog.cpp msgid "In order to protect your privacy, Audacity does not collect any personal information. However, app update checking does require network access." -msgstr "" +msgstr "आपकी गोपनीयता की रक्षा के लिए, Audacity कोई व्यक्तिगत जानकारी एकत्र नहीं करता है. हालाँकि, ऐप अपडेट चेकिंग के लिए नेटवर्क एक्सेस की आवश्यकता होती है." #: src/update/UpdateNoticeDialog.cpp #, c-format msgid "You can turn off app update checking at any time in %s." -msgstr "" +msgstr "आप में किसी भी समय %s पर ऐप अपडेट चेकिंग को बंद कर सकते हैं." #. i18n-hint: Title of the app update notice dialog. #: src/update/UpdateNoticeDialog.cpp msgid "App updates" -msgstr "" +msgstr "ऐप अद्यतन" #. i18n-hint: a page in the Preferences dialog; use same name #: src/update/UpdateNoticeDialog.cpp -#, fuzzy msgid "Preferences > Application" -msgstr "गुणवत्ता के लिए वरीयतायें" +msgstr "वरीयताएं > ऐपलिकेशन" #: src/update/UpdatePopupDialog.cpp msgctxt "update dialog" @@ -18252,10 +18214,12 @@ msgstr "घंटे:मिनट:सेकेंड + सौवाँ भाग #. i18n-hint: Format string for displaying time in hours, minutes, seconds #. * and hundredths of a second. Change the 'h' to the abbreviation for hours, -#. * 'm' to the abbreviation for minutes and 's' to the abbreviation for seconds +#. * 'm' to the abbreviation for minutes and 's' to the abbreviation for +#. seconds #. * (the hundredths are shown as decimal seconds). Don't change the numbers #. * unless there aren't 60 minutes in an hour in your locale. -#. * The decimal separator is specified using '<' if your language uses a ',' or +#. * The decimal separator is specified using '<' if your language uses a ',' +#. or #. * to '>' if your language uses a '.'. #: src/widgets/NumericTextCtrl.cpp msgid "0100 h 060 m 060>0100 s" @@ -18268,11 +18232,13 @@ msgid "hh:mm:ss + milliseconds" msgstr "घंटे:मिनट:सेकेंड + मिलिसेकेंड" #. i18n-hint: Format string for displaying time in hours, minutes, seconds -#. * and milliseconds. Change the 'h' to the abbreviation for hours, 'm' to the +#. * and milliseconds. Change the 'h' to the abbreviation for hours, 'm' to +#. the #. * abbreviation for minutes and 's' to the abbreviation for seconds (the #. * milliseconds are shown as decimal seconds) . Don't change the numbers #. * unless there aren't 60 minutes in an hour in your locale. -#. * The decimal separator is specified using '<' if your language uses a ',' or +#. * The decimal separator is specified using '<' if your language uses a ',' +#. or #. * to '>' if your language uses a '.'. #: src/widgets/NumericTextCtrl.cpp msgid "0100 h 060 m 060>01000 s" @@ -18289,7 +18255,8 @@ msgstr "घंटे:मिनट:सेकेंड + नमूने" #. * abbreviation for minutes, 's' to the abbreviation for seconds and #. * translate samples . Don't change the numbers #. * unless there aren't 60 seconds in a minute in your locale. -#. * The decimal separator is specified using '<' if your language uses a ',' or +#. * The decimal separator is specified using '<' if your language uses a ',' +#. or #. * to '>' if your language uses a '.'. #: src/widgets/NumericTextCtrl.cpp msgid "0100 h 060 m 060 s+># samples" @@ -18298,7 +18265,6 @@ msgstr "0100 घं 060 मि 060 से+># नमूने" #. i18n-hint: Name of time display format that shows time in samples (at the #. * current project sample rate). For example the number of a sample at 1 #. * second into a recording at 44.1KHz would be 44,100. -#. #: src/widgets/NumericTextCtrl.cpp plug-ins/sample-data-export.ny msgid "samples" msgstr "नमूने" @@ -18322,7 +18288,8 @@ msgstr "घंटे:मिनट:सेकेंड + चलचित्र फ #. * for hours, 'm' to the abbreviation for minutes, 's' to the abbreviation #. * for seconds and translate 'frames' . Don't change the numbers #. * unless there aren't 60 seconds in a minute in your locale. -#. * The decimal separator is specified using '<' if your language uses a ',' or +#. * The decimal separator is specified using '<' if your language uses a ',' +#. or #. * to '>' if your language uses a '.'. #: src/widgets/NumericTextCtrl.cpp msgid "0100 h 060 m 060 s+>24 frames" @@ -18353,7 +18320,8 @@ msgstr "घंटे:मिनट:सेकेंड + NTSC drop फ़्रे #. * and frames with NTSC drop frames. Change the 'h' to the abbreviation #. * for hours, 'm' to the abbreviation for minutes, 's' to the abbreviation #. * for seconds and translate 'frames'. Leave the |N alone, it's important! -#. * The decimal separator is specified using '<' if your language uses a ',' or +#. * The decimal separator is specified using '<' if your language uses a ',' +#. or #. * to '>' if your language uses a '.'. #: src/widgets/NumericTextCtrl.cpp msgid "0100 h 060 m 060 s+>30 frames|N" @@ -18371,7 +18339,8 @@ msgstr "घंटे:मिनिट:सेकेंड + NTSC नॉन-ड् #. * for hours, 'm' to the abbreviation for minutes, 's' to the abbreviation #. * for seconds and translate 'frames'. Leave the | .999000999 alone, #. * the whole things really is slightly off-speed! -#. * The decimal separator is specified using '<' if your language uses a ',' or +#. * The decimal separator is specified using '<' if your language uses a ',' +#. or #. * to '>' if your language uses a '.'. #: src/widgets/NumericTextCtrl.cpp msgid "0100 h 060 m 060 s+>030 frames| .999000999" @@ -18402,7 +18371,8 @@ msgstr "घंटे:मिनट:सेकेंड + PAL frames (25 fps)" #. * and frames with PAL TV frames. Change the 'h' to the abbreviation #. * for hours, 'm' to the abbreviation for minutes, 's' to the abbreviation #. * for seconds and translate 'frames'. Nice simple time code! -#. * The decimal separator is specified using '<' if your language uses a ',' or +#. * The decimal separator is specified using '<' if your language uses a ',' +#. or #. * to '>' if your language uses a '.'. #: src/widgets/NumericTextCtrl.cpp msgid "0100 h 060 m 060 s+>25 frames" @@ -18432,7 +18402,8 @@ msgstr "घंटे:मिनट:सेकेंड + CDDA फ़्रेम #. * and frames with CD Audio frames. Change the 'h' to the abbreviation #. * for hours, 'm' to the abbreviation for minutes, 's' to the abbreviation #. * for seconds and translate 'frames'. -#. * The decimal separator is specified using '<' if your language uses a ',' or +#. * The decimal separator is specified using '<' if your language uses a ',' +#. or #. * to '>' if your language uses a '.'. #: src/widgets/NumericTextCtrl.cpp msgid "0100 h 060 m 060 s+>75 frames" @@ -18454,7 +18425,8 @@ msgstr "01000,01000 फ़्रेम्स|75" #. i18n-hint: Format string for displaying frequency in hertz. Change #. * the decimal point for your locale. Don't change the numbers. -#. * The decimal separator is specified using '<' if your language uses a ',' or +#. * The decimal separator is specified using '<' if your language uses a ',' +#. or #. * to '>' if your language uses a '.'. #: src/widgets/NumericTextCtrl.cpp msgid "010,01000>0100 Hz" @@ -18471,7 +18443,8 @@ msgstr "kHz" #. i18n-hint: Format string for displaying frequency in kilohertz. Change #. * the decimal point for your locale. Don't change the numbers. -#. * The decimal separator is specified using '<' if your language uses a ',' or +#. * The decimal separator is specified using '<' if your language uses a ',' +#. or #. * to '>' if your language uses a '.'. #: src/widgets/NumericTextCtrl.cpp msgid "01000>01000 kHz|0.001" @@ -18489,7 +18462,8 @@ msgstr "सप्तक" #. i18n-hint: Format string for displaying log of frequency in octaves. #. * Change the decimal points for your locale. Don't change the numbers. -#. * The decimal separator is specified using '<' if your language uses a ',' or +#. * The decimal separator is specified using '<' if your language uses a ',' +#. or #. * to '>' if your language uses a '.'. #: src/widgets/NumericTextCtrl.cpp msgid "100>01000 octaves|1.442695041" @@ -18509,7 +18483,8 @@ msgstr "अर्द्ध-स्वर + सेंट्स" #. i18n-hint: Format string for displaying log of frequency in semitones #. * and cents. #. * Change the decimal points for your locale. Don't change the numbers. -#. * The decimal separator is specified using '<' if your language uses a ',' or +#. * The decimal separator is specified using '<' if your language uses a ',' +#. or #. * to '>' if your language uses a '.'. #: src/widgets/NumericTextCtrl.cpp msgid "1000 semitones >0100 cents|17.312340491" @@ -18588,28 +18563,26 @@ msgstr "बंद करने की पुष्टि करें" #. i18n-hint: %s is replaced with a directory path. #: src/widgets/UnwritableLocationErrorDialog.cpp -#, fuzzy, c-format +#, c-format msgid "Unable to write files to directory: %s." -msgstr "\"%s\" में से प्रिसेट नहीं पढ़ सका." +msgstr "डायरेक्टरी में फ़ाइलें लिखने में असमर्थ : %s." #. i18n-hint: This message describes the error in the Error dialog. #: src/widgets/UnwritableLocationErrorDialog.cpp msgid "Please check that the directory exists, has the necessary permissions, and the drive isn't full." -msgstr "" +msgstr "कृपया जांचें कि डायरेक्टरी मौजूद है, आवश्यक अनुमतियां हैं, और ड्राइव भरा नहीं है." #. i18n-hint: %s is replaced with 'Preferences > Directories'. #: src/widgets/UnwritableLocationErrorDialog.cpp -#, fuzzy, c-format +#, c-format msgid "You can change the directory in %s." -msgstr "" -"निर्देशिका (डायरेक्टरी )उत्पन्न नहीं कर सका :\n" -" %s" +msgstr "आप डायरेक्टरी को %s से बदल सकते हैं." -#. i18n-hint: Hyperlink title that opens Preferences dialog on Directories page. +#. i18n-hint: Hyperlink title that opens Preferences dialog on Directories +#. page. #: src/widgets/UnwritableLocationErrorDialog.cpp -#, fuzzy msgid "Preferences > Directories" -msgstr "डायरेक्टरी के लिए वरीयतायें" +msgstr "वरीयताएँ > डायरेक्टरी" #: src/widgets/Warning.cpp msgid "Don't show this warning again" @@ -18701,32 +18674,22 @@ msgstr "XML का विश्लेषण नहीं किया जा स msgid "Spectral edit multi tool" msgstr "वर्णक्रम संपादन विभिन्न औजार" -#: plug-ins/SpectralEditMulti.ny plug-ins/SpectralEditParametricEQ.ny -#: plug-ins/SpectralEditShelves.ny +#: plug-ins/SpectralEditMulti.ny plug-ins/SpectralEditParametricEQ.ny plug-ins/SpectralEditShelves.ny msgid "Filtering..." msgstr "फिल्टर लगाना..." -#: plug-ins/SpectralEditMulti.ny plug-ins/SpectralEditParametricEQ.ny -#: plug-ins/SpectralEditShelves.ny +#: plug-ins/SpectralEditMulti.ny plug-ins/SpectralEditParametricEQ.ny plug-ins/SpectralEditShelves.ny msgid "Paul Licameli" msgstr "Paul Licameli" -#: plug-ins/SpectralEditMulti.ny plug-ins/SpectralEditParametricEQ.ny -#: plug-ins/SpectralEditShelves.ny plug-ins/StudioFadeOut.ny -#: plug-ins/adjustable-fade.ny plug-ins/beat.ny plug-ins/crossfadeclips.ny -#: plug-ins/crossfadetracks.ny plug-ins/delay.ny -#: plug-ins/eq-xml-to-txt-converter.ny plug-ins/equalabel.ny -#: plug-ins/highpass.ny plug-ins/limiter.ny plug-ins/lowpass.ny -#: plug-ins/notch.ny plug-ins/nyquist-plug-in-installer.ny plug-ins/pluck.ny -#: plug-ins/rhythmtrack.ny plug-ins/rissetdrum.ny -#: plug-ins/sample-data-export.ny plug-ins/sample-data-import.ny -#: plug-ins/spectral-delete.ny plug-ins/tremolo.ny plug-ins/vocalrediso.ny -#: plug-ins/vocoder.ny +#: plug-ins/SpectralEditMulti.ny plug-ins/SpectralEditParametricEQ.ny plug-ins/SpectralEditShelves.ny plug-ins/StudioFadeOut.ny plug-ins/adjustable-fade.ny plug-ins/beat.ny plug-ins/crossfadeclips.ny +#: plug-ins/crossfadetracks.ny plug-ins/delay.ny plug-ins/eq-xml-to-txt-converter.ny plug-ins/equalabel.ny plug-ins/highpass.ny plug-ins/limiter.ny plug-ins/lowpass.ny plug-ins/notch.ny +#: plug-ins/nyquist-plug-in-installer.ny plug-ins/pluck.ny plug-ins/rhythmtrack.ny plug-ins/rissetdrum.ny plug-ins/sample-data-export.ny plug-ins/sample-data-import.ny plug-ins/spectral-delete.ny +#: plug-ins/tremolo.ny plug-ins/vocalrediso.ny plug-ins/vocoder.ny msgid "Released under terms of the GNU General Public License version 2" msgstr "जीएनयू जनरल पब्लिक लाइसेंस संस्करण 2 के तहत जारी किया गया" -#: plug-ins/SpectralEditMulti.ny plug-ins/SpectralEditParametricEQ.ny -#: plug-ins/SpectralEditShelves.ny +#: plug-ins/SpectralEditMulti.ny plug-ins/SpectralEditParametricEQ.ny plug-ins/SpectralEditShelves.ny #, lisp-format msgid "~aPlease select frequencies." msgstr "~aकृपया आवृत्तियाँ चुनें." @@ -18753,8 +18716,7 @@ msgstr "" " निम्न आवृत्ति बाध्य बढ़ाने की कोशिश करें~% ~\n" " या फ़िल्टर की 'चौड़ाई' को कम करें." -#: plug-ins/SpectralEditMulti.ny plug-ins/SpectralEditParametricEQ.ny -#: plug-ins/SpectralEditShelves.ny plug-ins/nyquist-plug-in-installer.ny +#: plug-ins/SpectralEditMulti.ny plug-ins/SpectralEditParametricEQ.ny plug-ins/SpectralEditShelves.ny plug-ins/nyquist-plug-in-installer.ny #, lisp-format msgid "Error.~%" msgstr "त्रुटि.~%" @@ -18816,12 +18778,8 @@ msgstr "स्टूडियो फ़ेड आउट" msgid "Applying Fade..." msgstr "फ़ेड लागू करना..." -#: plug-ins/StudioFadeOut.ny plug-ins/adjustable-fade.ny -#: plug-ins/crossfadeclips.ny plug-ins/crossfadetracks.ny plug-ins/delay.ny -#: plug-ins/eq-xml-to-txt-converter.ny plug-ins/equalabel.ny -#: plug-ins/label-sounds.ny plug-ins/limiter.ny plug-ins/noisegate.ny -#: plug-ins/sample-data-export.ny plug-ins/sample-data-import.ny -#: plug-ins/spectral-delete.ny plug-ins/tremolo.ny +#: plug-ins/StudioFadeOut.ny plug-ins/adjustable-fade.ny plug-ins/crossfadeclips.ny plug-ins/crossfadetracks.ny plug-ins/delay.ny plug-ins/eq-xml-to-txt-converter.ny plug-ins/equalabel.ny +#: plug-ins/label-sounds.ny plug-ins/limiter.ny plug-ins/noisegate.ny plug-ins/sample-data-export.ny plug-ins/sample-data-import.ny plug-ins/spectral-delete.ny plug-ins/tremolo.ny msgid "Steve Daulton" msgstr "स्टीव डॉल्टन" @@ -19295,8 +19253,7 @@ msgstr "हाइ-पास फ़िल्टर संपादित हो msgid "Dominic Mazzoni" msgstr "डॉमिनिक मज्जो़नी" -#: plug-ins/highpass.ny plug-ins/lowpass.ny plug-ins/notch.ny -#: plug-ins/rissetdrum.ny plug-ins/tremolo.ny +#: plug-ins/highpass.ny plug-ins/lowpass.ny plug-ins/notch.ny plug-ins/rissetdrum.ny plug-ins/tremolo.ny msgid "Frequency (Hz)" msgstr "आवृति (Hz)" @@ -19455,7 +19412,8 @@ msgstr "सॉफ्ट लिमिट" msgid "Hard Limit" msgstr "हार्ड सीमा" -#. i18n-hint: clipping of wave peaks and troughs, not division of a track into clips +#. i18n-hint: clipping of wave peaks and troughs, not division of a track into +#. clips #: plug-ins/limiter.ny msgid "Soft Clip" msgstr "सॉफ़्ट क्लिप" @@ -19647,8 +19605,7 @@ msgstr "Lisp फ़ाईल" msgid "HTML file" msgstr "HTML फ़ाईल" -#: plug-ins/nyquist-plug-in-installer.ny plug-ins/sample-data-export.ny -#: plug-ins/sample-data-import.ny +#: plug-ins/nyquist-plug-in-installer.ny plug-ins/sample-data-export.ny plug-ins/sample-data-import.ny msgid "Text file" msgstr "टेक्स्ट फ़ाईल" @@ -20063,13 +20020,15 @@ msgstr "नमूना दर :   ~a Hz." msgid "Peak Amplitude:   ~a (linear)   ~a dB." msgstr "उच्चतम ऐम्पलिच्यूड :   ~a (रैखिक)   ~a dB." -#. i18n-hint: RMS abbreviates root-mean-square, a method of averaging a signal; there also "weighted" versions of it but this isn't that +#. i18n-hint: RMS abbreviates root-mean-square, a method of averaging a +#. signal; there also "weighted" versions of it but this isn't that #: plug-ins/sample-data-export.ny #, lisp-format msgid "RMS (unweighted):   ~a dB." msgstr "RMS (unweighted):   ~a dB." -#. i18n-hint: DC derives from "direct current" in electronics, really means the zero frequency component of a signal +#. i18n-hint: DC derives from "direct current" in electronics, really means +#. the zero frequency component of a signal #: plug-ins/sample-data-export.ny #, lisp-format msgid "DC Offset:   ~a" @@ -20477,24 +20436,3 @@ msgstr "रडार सुई की आवृति (Hz)" #, lisp-format msgid "Error.~%Stereo track required." msgstr "त्रुटि.~%स्टिरियो ट्रैक चाहिए." - -#~ msgid "Unknown assertion" -#~ msgstr "अज्ञात दावा" - -#~ msgid "Can't open new empty project" -#~ msgstr "नया खाली प्रोजेक्ट नहीं खोल सकता" - -#~ msgid "Error opening a new empty project" -#~ msgstr "एक नया खाली प्रोजेक्ट खोलने में त्रुटि" - -#~ msgid "Gray Scale" -#~ msgstr "छाया पैमाना" - -#~ msgid "Menu Tree" -#~ msgstr "मेन्यू ट्री" - -#~ msgid "Menu Tree..." -#~ msgstr "मेन्यू ट्री..." - -#~ msgid "Gra&yscale" -#~ msgstr "ग्रेस्केल(&y)" diff --git a/locale/ja.po b/locale/ja.po index 51908935a..775d4fa8c 100644 --- a/locale/ja.po +++ b/locale/ja.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: audacity 3.0.3\n" "Report-Msgid-Bugs-To: audacity-translation@lists.sourceforge.net\n" "POT-Creation-Date: 2021-07-15 12:48-0400\n" -"PO-Revision-Date: 2021-06-16 02:35+0900\n" +"PO-Revision-Date: 2021-07-20 03:20+0900\n" "Last-Translator: Phroneris \n" "Language-Team: Atsushi YOSHIDA, Phroneris\n" "Language: ja\n" @@ -17,10 +17,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 3.0\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Poedit-Bookmarks: 3966,3790,511,2745,1188,718,1435,-1,-1,-1\n" "X-Poedit-SourceCharset: UTF-8\n" -"X-Poedit-Basepath: ..\n" -"X-Poedit-SearchPath-0: .\n" #. i18n-hint C++ programming assertion #: crashreports/crashreporter/CrashReportApp.cpp @@ -44,7 +41,7 @@ msgstr "Audacity の障害を報告" #: crashreports/crashreporter/CrashReportApp.cpp #: src/widgets/ErrorReportDialog.cpp msgid "Click \"Send\" to submit the report to Audacity. This information is collected anonymously." -msgstr "Audacity へ障害報告を提出するには、[送信] をクリックしてください。情報は匿名で収集されます。" +msgstr "Audacity の障害報告にご協力いただける場合、[送信] をクリックしてください。この情報は匿名で収集されます。" #: crashreports/crashreporter/CrashReportApp.cpp #: src/widgets/ErrorReportDialog.cpp @@ -320,7 +317,6 @@ msgstr "新規スクリプト" msgid "Open" msgstr "開く" -# i18n-hint: This is the name of the menu item on Mac OS X only #: modules/mod-nyq-bench/NyqBench.cpp msgid "Open script" msgstr "スクリプトを開く" @@ -558,7 +554,7 @@ msgstr "Nyquist プラグイン: %s" #: src/AboutDialog.cpp #, c-format msgid "%s, web developer" -msgstr "Web 開発: %s" +msgstr "ウェブ開発: %s" #. i18n-hint: For "About Audacity..." credits, substituting a person's proper name #: src/AboutDialog.cpp @@ -571,7 +567,6 @@ msgstr "グラフィック: %s" msgid "%s (incorporating %s, %s, %s, %s and %s)" msgstr "%s (%s、%s、%s、%s、%s)" -# ja: 独自アクセスキー #. i18n-hint: information about the program #: src/AboutDialog.cpp #, c-format @@ -641,7 +636,7 @@ msgstr "" #: src/AboutDialog.cpp #, c-format msgid "%s the free, open source, cross-platform software for recording and editing sounds." -msgstr "%s は、録音と音声編集のために開発された
無料 & オープンソース & クロスプラットフォームなソフトウェアです。" +msgstr "%s は、録音と音声編集のために開発された、
無料 & オープンソース & クロスプラットフォームなソフトウェアです。" #: src/AboutDialog.cpp msgid "Credits" @@ -717,7 +712,7 @@ msgstr "%s の名称は登録商標です。" msgid "Build Information" msgstr "ビルド情報" -# ja: 「無効」と見分けやすくするためにあえて文字数を増やす +# ja: 「無効」と見分けやすくするために、あえて文字数を増やす。 #: src/AboutDialog.cpp src/PluginManager.cpp src/prefs/ModulePrefs.cpp msgid "Enabled" msgstr "有効です" @@ -857,7 +852,7 @@ msgstr "急激なピッチとテンポの変化のサポート" #: src/AboutDialog.cpp msgctxt "about dialog" msgid "Legal" -msgstr "" +msgstr "法的要件" #: src/AboutDialog.cpp msgid "GPL License" @@ -867,24 +862,24 @@ msgstr "GPL ライセンス" #: src/AboutDialog.cpp msgctxt "about dialog" msgid "PRIVACY POLICY" -msgstr "" +msgstr "プライバシーポリシー" #: src/AboutDialog.cpp msgid "App update checking and error reporting require network access. These features are optional." -msgstr "" +msgstr "更新確認と障害報告には、ネットワーク接続が必要です。これらの機能のご利用はあくまで任意です。" #. i18n-hint: %s will be replaced with "our Privacy Policy" #: src/AboutDialog.cpp src/prefs/ApplicationPrefs.cpp #: src/update/UpdateNoticeDialog.cpp -#, fuzzy, c-format +#, c-format msgid "See %s for more info." -msgstr "1 個以上のファイルを選択してください" +msgstr "詳細については、%sをご覧ください。" #. i18n-hint: Title of hyperlink to the privacy policy. This is an object of "See". #: src/AboutDialog.cpp src/prefs/ApplicationPrefs.cpp #: src/update/UpdateNoticeDialog.cpp msgid "our Privacy Policy" -msgstr "" +msgstr "プライバシーポリシー" #: src/AdornedRulerPanel.cpp msgid "Timeline actions disabled during recording" @@ -1039,7 +1034,7 @@ msgstr "" msgid "Reset Audacity Preferences" msgstr "Audacity の環境設定をリセット" -# ja: 文字列だけ見ると「(既に)削除されています」かと思っちゃうが、これは見つからなかったファイルについて「(今)削除しました」という意味。 +# ja: 原文の文字列だけ見ると「(既に)削除されています」かと思っちゃうが、これは見つからなかったファイルについて「(今)削除しました」という意味。 #: src/AudacityApp.cpp #, c-format msgid "" @@ -1658,7 +1653,7 @@ msgid "" msgstr "" "選択したプロジェクトを破棄してもよろしいですか?\n" "\n" -"[はい] を選ぶと、すべてのプロジェクトは即座に、永久に削除されます。" +"[はい] を選ぶと、すべてのプロジェクトは即座に、永続的に削除されます。" #: src/BatchCommandDialog.cpp msgid "Select Command" @@ -2154,19 +2149,19 @@ msgid "" msgstr "" "「%s」の実行対象となる音声を最初に選択してください。\n" "\n" -"Ctrl+A で全ての音声が選択できます。" +"Ctrl+A ですべての音声を選択できます。" #. i18n-hint: %s will be replaced by the name of an action, such as Normalize, Cut, Fade. #: src/CommonCommandFlags.cpp #, c-format msgid "Select the audio for %s to use (for example, Cmd + A to Select All) then try again." -msgstr "%s に利用させる音声を選択してやり直してください (例えば Cmd+A で全選択)。" +msgstr "%s に利用させる音声を選択してやり直してください (例えば Cmd+A ですべて選択)。" #. i18n-hint: %s will be replaced by the name of an action, such as Normalize, Cut, Fade. #: src/CommonCommandFlags.cpp #, c-format msgid "Select the audio for %s to use (for example, Ctrl + A to Select All) then try again." -msgstr "%s に利用させる音声を選択してやり直してください (例えば Ctrl+A で全選択)。" +msgstr "%s に利用させる音声を選択してやり直してください (例えば Ctrl+A ですべて選択)。" #: src/CommonCommandFlags.cpp msgid "No Audio Selected" @@ -2699,9 +2694,9 @@ msgid "Specify New Filename:" msgstr "新しいファイル名を指定してください:" #: src/FileNames.cpp -#, fuzzy, c-format +#, c-format msgid "Directory %s does not have write permissions" -msgstr "ディレクトリ %s はありません。作成しますか?" +msgstr "ディレクトリ %s には書き込み権限がありません" #: src/FreqWindow.cpp msgid "Frequency Analysis" @@ -2731,7 +2726,7 @@ msgstr "強調自己相関" msgid "Cepstrum" msgstr "ケプストラム" -# ja: これは [解析]→[スペクトル表示] で使われているが、"window" 無しのものも [環境設定]→[トラック]→[スペクトログラム] で使われているため、「窓」という語を元の各メニュー項目の方に付けてこちらには付けない +# ja: これは [解析]→[スペクトル表示] で使われているが、"window" 無しのものも [環境設定]→[トラック]→[スペクトログラム] で使われているため、「窓」という語を元の各メニュー項目の方に付けてこちらには付けない。 #. i18n-hint: This refers to a "window function", #. * such as Hann or Rectangular, used in the #. * Frequency analyze dialog box. @@ -3666,7 +3661,7 @@ msgstr "" "登録失敗:\n" "%s" -# ja: 本当は「この」「これらの」を使い分けたい +# ja: 本当は「この」「これらの」を使い分けたい。 #. i18n-hint A plug-in is an optional added program for a sound #. effect, or generator, or analyzer #: src/PluginManager.cpp @@ -3798,7 +3793,7 @@ msgid "Inspecting project file data" msgstr "プロジェクトファイルを精査しています" # ja: この辺りの文字列、そもそも `#if 0` の中にあるし使われてないのでは? -# ja: 「方法」は次の3個 +# ja: 「方法」は次の3個: # ・"Close project immediately with no changes" # ・"Treat missing audio as silence (this session only)" # ・"Replace missing audio with silence (permanent immediately)." @@ -3842,7 +3837,7 @@ msgstr "欠落した音声を無音として扱う (このセッションのみ) #: src/ProjectFSCK.cpp msgid "Replace missing audio with silence (permanent immediately)." -msgstr "欠落した音声を無音で置換 (恒久的に今すぐ)" +msgstr "欠落した音声を無音で置換 (即座に、永続的に)" #: src/ProjectFSCK.cpp msgid "Warning - Missing Aliased File(s)" @@ -3909,7 +3904,7 @@ msgstr "" #: src/ProjectFSCK.cpp msgid "Replace missing audio with silence (permanent immediately)" -msgstr "欠落した音声を無音で置換 (恒久的に今すぐ)" +msgstr "欠落した音声を無音で置換 (即座に、永続的に)" #: src/ProjectFSCK.cpp msgid "Warning - Missing Audio Data Block File(s)" @@ -3934,7 +3929,7 @@ msgstr "削除せずに続行 (このセッションでは余計なファイル #: src/ProjectFSCK.cpp msgid "Delete orphan files (permanent immediately)" -msgstr "無用なファイルの削除 (恒久的に今すぐ)" +msgstr "無用なファイルを削除 (即座に、永続的に)" #: src/ProjectFSCK.cpp msgid "Warning - Orphan Block File(s)" @@ -4745,19 +4740,19 @@ msgstr "部分的に取り込む" #: src/Screenshot.cpp msgid "All Toolbars" -msgstr "全ツールバー" +msgstr "すべてのツールバー" #: src/Screenshot.cpp msgid "All Effects" -msgstr "全エフェクト" +msgstr "すべてのエフェクト" #: src/Screenshot.cpp msgid "All Scriptables" -msgstr "全スクリプト用機能" +msgstr "すべてのスクリプト用機能" #: src/Screenshot.cpp msgid "All Preferences" -msgstr "全環境設定" +msgstr "すべての環境設定" #: src/Screenshot.cpp msgid "SelectionBar" @@ -4849,7 +4844,7 @@ msgstr "最初のトラック" #: src/Screenshot.cpp src/commands/ScreenshotCommand.cpp msgid "Second Track" -msgstr "2 番目トラック" +msgstr "2 本目のトラック" #: src/Screenshot.cpp src/prefs/SpectrumPrefs.cpp msgid "Scale" @@ -5817,7 +5812,7 @@ msgstr "閾値:" msgid "Compares a range on two tracks." msgstr "2 本のトラックのレンジを比較します。" -# ja: デモはデモなのであえて翻訳しない +# ja: デモはデモなのであえて翻訳しない。 #: src/commands/Demo.cpp msgid "Demo" msgstr "Demo" @@ -5917,7 +5912,7 @@ msgstr "エンベロープ" msgid "Labels" msgstr "ラベル" -# ja: 正直訳しようがないけど訳さないのも浮くし、まあこんなもんか +# ja: 正直訳しようがないけど訳さないのも浮くし、まあこんなもんか…。 #: src/commands/GetInfoCommand.cpp msgid "Boxes" msgstr "ボックス" @@ -6150,15 +6145,15 @@ msgstr "トラックパネル" #: src/commands/ScreenshotCommand.cpp msgid "First Two Tracks" -msgstr "最初の 2 トラック" +msgstr "最初の 2 本のトラック" #: src/commands/ScreenshotCommand.cpp msgid "First Three Tracks" -msgstr "最初の 3 トラック" +msgstr "最初の 3 本のトラック" #: src/commands/ScreenshotCommand.cpp msgid "First Four Tracks" -msgstr "最初の 4 トラック" +msgstr "最初の 4 本のトラック" #: src/commands/ScreenshotCommand.cpp msgid "Tracks Plus" @@ -6170,11 +6165,11 @@ msgstr "最初のトラックと周辺" #: src/commands/ScreenshotCommand.cpp msgid "All Tracks" -msgstr "全トラック" +msgstr "すべてのトラック" #: src/commands/ScreenshotCommand.cpp msgid "All Tracks Plus" -msgstr "全トラックと周辺" +msgstr "すべてのトラックと周辺" #: src/commands/ScreenshotCommand.cpp msgid "Blue" @@ -7330,7 +7325,7 @@ msgstr "WCAG 2.0 Success Criteria 1.4.7: 不合格" msgid "Data gathered" msgstr "データ収集日時" -# ja: 2番目の "%s" は、Audacityの言語設定が日本語だと「4月」、英語だと「April」のようになる +# ja: 2番目の "%s" は、Audacityの言語設定が日本語だと「4月」、英語だと「April」のようになる。 #. i18n-hint: day of month, month, year, hour, minute, second #: src/effects/Contrast.cpp #, c-format @@ -8953,12 +8948,12 @@ msgstr "処理なし...\n" #: src/effects/Normalize.cpp #, c-format msgid "Analyzing first track of stereo pair: %s" -msgstr "ステレオ対の 1 番目のトラックを解析中: %s" +msgstr "ステレオ対の 1 本目のトラックを解析中: %s" #: src/effects/Normalize.cpp #, c-format msgid "Analyzing second track of stereo pair: %s" -msgstr "ステレオ対の 2 番目のトラックを解析中: %s" +msgstr "ステレオ対の 2 本目のトラックを解析中: %s" #: src/effects/Normalize.cpp #, c-format @@ -8968,12 +8963,12 @@ msgstr "ステレオチャンネルを個別処理中: %s" #: src/effects/Normalize.cpp #, c-format msgid "Processing first track of stereo pair: %s" -msgstr "ステレオ対の 1 番目のトラックを処理中: %s" +msgstr "ステレオ対の 1 本目のトラックを処理中: %s" #: src/effects/Normalize.cpp #, c-format msgid "Processing second track of stereo pair: %s" -msgstr "ステレオ対の 2 番目のトラックを処理中: %s" +msgstr "ステレオ対の 2 本目のトラックを処理中: %s" #: src/effects/Normalize.cpp msgid "&Remove DC offset (center on 0.0 vertically)" @@ -8992,7 +8987,7 @@ msgid "N&ormalize stereo channels independently" msgstr "ステレオチャンネルごとにノーマライズ(&O)" # ja: 独自アクセスキー -# ja: 連続的伸縮は「伸縮」なのに対しこちらは「ストレッチ」なので、特別に同じグループになるようまとめる +# ja: 連続的伸縮は「伸縮」なのに対しこちらは「ストレッチ」なので、特別に同じグループになるようまとめる。 #: src/effects/Paulstretch.cpp msgid "Paulstretch" msgstr "伸縮: Paul ストレッチ(&S)" @@ -9372,23 +9367,29 @@ msgstr "阻止域最小減衰(&T):" msgid "Minimum S&topband Attenuation (dB)" msgstr "阻止域最小減衰 (dB) (&T)" +# ja: ソースの出現は 2010/09/19、前任者による翻訳は 2011/02/06 と結構古いが、結局今まで本格実装に至っていないため、機能の把握や正しい翻訳の検討が困難。 #: src/effects/ScoreAlignDialog.cpp +#, fuzzy msgid "Align MIDI to Audio" msgstr "MIDI を音声に同期" #: src/effects/ScoreAlignDialog.cpp +#, fuzzy msgid "Frame Period:" msgstr "フレーム長:" #: src/effects/ScoreAlignDialog.cpp +#, fuzzy msgid "Frame Period" msgstr "フレーム長" #: src/effects/ScoreAlignDialog.cpp +#, fuzzy msgid "Window Size:" msgstr "ウィンドウサイズ:" #: src/effects/ScoreAlignDialog.cpp +#, fuzzy msgid "Window Size" msgstr "ウィンドウサイズ" @@ -9398,14 +9399,17 @@ msgid "Force Final Alignment" msgstr "強制最終アラインメント" #: src/effects/ScoreAlignDialog.cpp +#, fuzzy msgid "Ignore Silence at Beginnings and Endings" msgstr "最初と最後の無音部分を無視" #: src/effects/ScoreAlignDialog.cpp +#, fuzzy msgid "Silence Threshold:" msgstr "無音のスレッショルド:" #: src/effects/ScoreAlignDialog.cpp +#, fuzzy msgid "Silence Threshold" msgstr "無音のスレッショルド" @@ -9414,6 +9418,7 @@ msgstr "無音のスレッショルド" #. manual we don't have a clear description of what this parameter does. #. It is OK to leave it in English. #: src/effects/ScoreAlignDialog.cpp +#, fuzzy msgid "Presmooth Time:" msgstr "プリスムース時間:" @@ -9422,6 +9427,7 @@ msgstr "プリスムース時間:" #. manual we don't have a clear description of what this parameter does. #. It is OK to leave it in English. #: src/effects/ScoreAlignDialog.cpp +#, fuzzy msgid "Presmooth Time" msgstr "プリスムース時間" @@ -9430,6 +9436,7 @@ msgstr "プリスムース時間" #. manual we don't have a clear description of what this parameter does. #. It is OK to leave it in English. #: src/effects/ScoreAlignDialog.cpp +#, fuzzy msgid "Line Time:" msgstr "ライン時間:" @@ -9438,10 +9445,12 @@ msgstr "ライン時間:" #. manual we don't have a clear description of what this parameter does. #. It is OK to leave it in English. #: src/effects/ScoreAlignDialog.cpp +#, fuzzy msgid "Line Time" msgstr "ライン時間" #: src/effects/ScoreAlignDialog.cpp +#, fuzzy msgid "Smooth Time:" msgstr "スムーズ時間:" @@ -9450,19 +9459,22 @@ msgstr "スムーズ時間:" #. manual we don't have a clear description of what this parameter does. #. It is OK to leave it in English. #: src/effects/ScoreAlignDialog.cpp +#, fuzzy msgid "Smooth Time" msgstr "スムーズ時間" #: src/effects/ScoreAlignDialog.cpp +#, fuzzy msgid "Use Defaults" msgstr "デフォルト" #: src/effects/ScoreAlignDialog.cpp +#, fuzzy msgid "Restore Defaults" msgstr "デフォルトに復旧" #: src/effects/ScoreAlignDialog.cpp -#, c-format +#, fuzzy, c-format msgid "%.3f" msgstr "%.3f" @@ -9498,7 +9510,7 @@ msgid "Mixing down to mono" msgstr "モノラルにミックスダウンしています" # ja: 独自アクセスキー -# ja: Paul ストレッチは「ストレッチ」なのに対しこちらは「伸縮」なので、特別に同じグループになるようまとめる +# ja: Paul ストレッチは「ストレッチ」なのに対しこちらは「伸縮」なので、特別に同じグループになるようまとめる。 #: src/effects/TimeScale.cpp msgid "Sliding Stretch" msgstr "伸縮: 連続的伸縮(&H)" @@ -9623,7 +9635,7 @@ msgstr "音量が設定値より低い場合に自動的に切り詰めます" msgid "When truncating independently, there may only be one selected audio track in each Sync-Locked Track Group." msgstr "別々に切り詰める場合、トラックの同期ロックグループごとに 1 本のトラックしか選択することはできません。" -# ja: [解析] > [無音の検出] との区別のために、「の」を削除 +# ja: [解析] > [無音の検出] との区別のために、「の」を削除。 #: src/effects/TruncSilence.cpp msgid "Detect Silence" msgstr "無音検出" @@ -12353,7 +12365,7 @@ msgstr "GStreamer 取り込み機能" #: src/import/ImportGStreamer.cpp msgid "Unable to set stream state to paused." -msgstr "ストリーム状態を pause に設定できません。" +msgstr "ストリーム状態を paused に設定できません。" #: src/import/ImportGStreamer.cpp #, c-format @@ -13229,7 +13241,7 @@ msgstr "MIDI ファイル" msgid "Allegro files" msgstr "Allegro ファイル" -# ja: 開発者向け。翻訳不要 +# ja: 開発者向け。翻訳不要。 #: src/menus/FileMenus.cpp msgid "&Dangerous Reset..." msgstr "&Dangerous Reset..." @@ -13894,11 +13906,11 @@ msgstr "トラック(&T)" #: src/menus/SelectMenus.cpp msgid "In All &Tracks" -msgstr "全トラック(&T)" +msgstr "すべてのトラック(&T)" #: src/menus/SelectMenus.cpp msgid "In All &Sync-Locked Tracks" -msgstr "同期ロックした全トラック(&S)" +msgstr "同期ロックしたすべてのトラック(&S)" #: src/menus/SelectMenus.cpp msgid "Select Sync-Locked" @@ -14455,11 +14467,11 @@ msgstr "ミュート/非ミュート(&U)" #: src/menus/TrackMenus.cpp msgid "&Mute All Tracks" -msgstr "全トラックをミュート(&M)" +msgstr "すべてのトラックをミュート(&M)" #: src/menus/TrackMenus.cpp msgid "&Unmute All Tracks" -msgstr "全トラックをミュート解除(&U)" +msgstr "すべてのトラックをミュート解除(&U)" #: src/menus/TrackMenus.cpp msgid "Mut&e Tracks" @@ -14598,7 +14610,7 @@ msgstr "フォーカスしたトラックを最下段へ移動(&B)" #. progressive verb form #: src/menus/TransportMenus.cpp src/toolbars/ControlToolBar.cpp msgid "Playing" -msgstr "再生中" +msgstr "再生" #. i18n-hint: These are strings for the status bar, and indicate whether Audacity #. is playing or recording or stopped, and whether it is paused; @@ -14896,11 +14908,11 @@ msgstr "高さに合わせる(&H)" #: src/menus/ViewMenus.cpp msgid "&Collapse All Tracks" -msgstr "全てのトラックを縮小(&C)" +msgstr "すべてのトラックを縮小(&C)" #: src/menus/ViewMenus.cpp msgid "E&xpand Collapsed Tracks" -msgstr "全てのトラックを展開(&X)" +msgstr "すべてのトラックを展開(&X)" #: src/menus/ViewMenus.cpp msgid "Sk&ip to" @@ -14948,13 +14960,13 @@ msgstr "最小化(&M)" #. * windows un-hidden #: src/menus/WindowMenus.cpp msgid "&Bring All to Front" -msgstr "全てを最前面に(&B)" +msgstr "すべてを最前面に(&B)" #. i18n-hint: Shrink all project windows to icons on the Macintosh #. tooldock #: src/menus/WindowMenus.cpp msgid "Minimize All Projects" -msgstr "全てのプロジェクトを最小化" +msgstr "すべてのプロジェクトを最小化" #: src/ondemand/ODComputeSummaryTask.h msgid "Import complete. Calculating waveform" @@ -14970,25 +14982,23 @@ msgid "%s %2.0f%% complete. Click to change task focal point." msgstr "%s %2.0f%% 完了。処理ポイントを変更するにはクリック。" #: src/prefs/ApplicationPrefs.cpp -#, fuzzy msgid "Preferences for Application" -msgstr "品質の環境設定" +msgstr "アプリケーションの環境設定" #. i18n-hint: Title for the update notifications panel in the preferences dialog. #: src/prefs/ApplicationPrefs.cpp msgid "Update notifications" -msgstr "" +msgstr "更新通知" #. i18n-hint: Check-box title that configures periodic updates checking. #: src/prefs/ApplicationPrefs.cpp -#, fuzzy msgctxt "application preferences" msgid "&Check for updates" -msgstr "更新の確認(&C)..." +msgstr "更新を確認する(&C)" #: src/prefs/ApplicationPrefs.cpp msgid "App update checking requires network access. In order to protect your privacy, Audacity does not store any personal information." -msgstr "" +msgstr "アプリケーションの更新の確認には、ネットワーク接続が必要です。プライバシー保護のため、Audacity が個人情報を保管することはありません。" #: src/prefs/BatchPrefs.cpp src/prefs/BatchPrefs.h msgid "Batch" @@ -15041,7 +15051,6 @@ msgstr "デバイス(&D):" #. i18n-hint: modifier as in "Recording preferences", not progressive verb #: src/prefs/DevicePrefs.cpp src/prefs/RecordingPrefs.cpp #: src/prefs/RecordingPrefs.h -#, fuzzy msgctxt "preference" msgid "Recording" msgstr "録音" @@ -16928,7 +16937,7 @@ msgstr "%s 一時停止中。" #: src/toolbars/ControlToolBar.cpp #, c-format msgid "%s." -msgstr "%s。" +msgstr "%s中。" #. i18n-hint: Clicking this menu item shows the toolbar #. with the big buttons on it (play record etc) @@ -18165,31 +18174,30 @@ msgstr "Audacity のダウンロードリンクを開けません。" #. i18n-hint: Title of the app update notice dialog. #: src/update/UpdateNoticeDialog.cpp msgid "App update checking" -msgstr "" +msgstr "アプリケーションの更新確認について" #: src/update/UpdateNoticeDialog.cpp msgid "To stay up to date, you will receive an in-app notification whenever there is a new version of Audacity available to download." -msgstr "" +msgstr "アプリケーションを最新に保つため、新しいバージョンの Audacity がダウンロード可能になるたびに、アプリ内通知を受信することができます。" #: src/update/UpdateNoticeDialog.cpp msgid "In order to protect your privacy, Audacity does not collect any personal information. However, app update checking does require network access." -msgstr "" +msgstr "ご利用者様のプライバシーを守るため、Audacity は個人情報の収集を行いません。とはいえ、更新の確認にはネットワーク接続が必要です。" #: src/update/UpdateNoticeDialog.cpp #, c-format msgid "You can turn off app update checking at any time in %s." -msgstr "" +msgstr "更新確認機能は、%s からいつでも停止することができます。" #. i18n-hint: Title of the app update notice dialog. #: src/update/UpdateNoticeDialog.cpp msgid "App updates" -msgstr "" +msgstr "アプリケーションの更新" #. i18n-hint: a page in the Preferences dialog; use same name #: src/update/UpdateNoticeDialog.cpp -#, fuzzy msgid "Preferences > Application" -msgstr "品質の環境設定" +msgstr "[環境設定] > [アプリケーション]" #: src/update/UpdatePopupDialog.cpp msgctxt "update dialog" @@ -18665,7 +18673,7 @@ msgstr "CDDA フレーム (75fps)" msgid "01000,01000 frames|75" msgstr "0100万010000フレーム|75" -# ja: 元の「010,01000>0100 Hz」では万の位が扱えないので不足すぎると思うが、勝手に桁数を増やすわけにもいかないのでとりあえずこれで +# ja: 元の「010,01000>0100 Hz」では万の位が扱えないので不足すぎると思うが、勝手に桁数を増やすわけにもいかないのでとりあえずこれで。 #. i18n-hint: Format string for displaying frequency in hertz. Change #. * the decimal point for your locale. Don't change the numbers. #. * The decimal separator is specified using '<' if your language uses a ',' or @@ -18802,28 +18810,25 @@ msgstr "閉じる確認" #. i18n-hint: %s is replaced with a directory path. #: src/widgets/UnwritableLocationErrorDialog.cpp -#, fuzzy, c-format +#, c-format msgid "Unable to write files to directory: %s." -msgstr "「%s」からプリセットファイルを読み込めません" +msgstr "ファイルをディレクトリに書き込めません: %s" #. i18n-hint: This message describes the error in the Error dialog. #: src/widgets/UnwritableLocationErrorDialog.cpp msgid "Please check that the directory exists, has the necessary permissions, and the drive isn't full." -msgstr "" +msgstr "ディレクトリが存在すること、必要な権限を有すること、ドライブに空き容量があることを確認してください。" #. i18n-hint: %s is replaced with 'Preferences > Directories'. #: src/widgets/UnwritableLocationErrorDialog.cpp -#, fuzzy, c-format +#, c-format msgid "You can change the directory in %s." -msgstr "" -"ディレクトリを作成できませんでした:\n" -" %s" +msgstr "ディレクトリ設定は、%s から変更することができます。" #. i18n-hint: Hyperlink title that opens Preferences dialog on Directories page. #: src/widgets/UnwritableLocationErrorDialog.cpp -#, fuzzy msgid "Preferences > Directories" -msgstr "ディレクトリの環境設定" +msgstr "[環境設定] > [ディレクトリ]" #: src/widgets/Warning.cpp msgid "Don't show this warning again" diff --git a/locale/ko.po b/locale/ko.po index 0a9740efd..f6fe3ac4b 100644 --- a/locale/ko.po +++ b/locale/ko.po @@ -1,26 +1,26 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Audacity Team # This file is distributed under the same license as the audacity package. +# FIRST AUTHOR , YEAR. # # Translators: -# ajkenny122 , 2020-2021 -# LEE Hwanyong , 2020-2021 -# Potato , 2017-2018 -# Seong-ho Cho , 2012-2014 +# ajkenny122 , 2021 +# LEE Hwanyong , 2021 +# msgid "" msgstr "" "Project-Id-Version: audacity 3.0.3\n" "Report-Msgid-Bugs-To: audacity-translation@lists.sourceforge.net\n" "POT-Creation-Date: 2021-07-15 12:48-0400\n" -"PO-Revision-Date: 2021-06-11 17:19+0900\n" +"PO-Revision-Date: 2021-07-17 12:08+0900\n" "Last-Translator: Hwanyong Lee \n" -"Language-Team: Korean (http://www.transifex.com/klyok/audacity/language/ko/)\n" -"Language: ko\n" +"Language-Team: Korean (https://www.transifex.com/klyok/teams/690/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ko\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Poedit 2.4.1\n" +"X-Generator: Poedit 3.0\n" #. i18n-hint C++ programming assertion #: crashreports/crashreporter/CrashReportApp.cpp @@ -41,36 +41,31 @@ msgstr "알수없는 오류" msgid "Problem Report for Audacity" msgstr "오데시티의 문제점 리포트" -#: crashreports/crashreporter/CrashReportApp.cpp -#: src/widgets/ErrorReportDialog.cpp +#: crashreports/crashreporter/CrashReportApp.cpp src/widgets/ErrorReportDialog.cpp msgid "Click \"Send\" to submit the report to Audacity. This information is collected anonymously." msgstr "문제점 리포트를 보내려면 \"전송\"을 클릭하세요. 이 정보는 익명으로 처리됩니다." -#: crashreports/crashreporter/CrashReportApp.cpp -#: src/widgets/ErrorReportDialog.cpp +#: crashreports/crashreporter/CrashReportApp.cpp src/widgets/ErrorReportDialog.cpp msgid "Problem details" msgstr "문제 상세정보" -#: crashreports/crashreporter/CrashReportApp.cpp src/Tags.cpp -#: src/prefs/MousePrefs.cpp src/widgets/ErrorReportDialog.cpp +#: crashreports/crashreporter/CrashReportApp.cpp src/Tags.cpp src/prefs/MousePrefs.cpp src/widgets/ErrorReportDialog.cpp msgid "Comments" msgstr "코멘트" -#: crashreports/crashreporter/CrashReportApp.cpp -#: src/widgets/ErrorReportDialog.cpp +#: crashreports/crashreporter/CrashReportApp.cpp src/widgets/ErrorReportDialog.cpp msgctxt "crash reporter button" msgid "&Don't send" -msgstr "전송하지 않음(&D)" +msgstr "전송하지 않음 (&D)" -#: crashreports/crashreporter/CrashReportApp.cpp -#: src/widgets/ErrorReportDialog.cpp +#: crashreports/crashreporter/CrashReportApp.cpp src/widgets/ErrorReportDialog.cpp msgctxt "crash reporter button" msgid "&Send" -msgstr "전송(&S)" +msgstr "전송 (&S)" #: crashreports/crashreporter/CrashReportApp.cpp msgid "Failed to send crash report" -msgstr "오류 리포트 전송에 실패하였습니다. " +msgstr "오류 리포트 전송에 실패하였습니다" #: libraries/lib-strings/Internat.cpp msgid "Unable to determine" @@ -97,7 +92,7 @@ msgstr "%s MB" #: libraries/lib-strings/Internat.cpp #, c-format msgid "%s GB" -msgstr " %s GB" +msgstr "%s GB" #: libraries/lib-strings/Languages.cpp msgid "Simplified" @@ -121,7 +116,7 @@ msgstr "나이키스트 워크벤치(&N)..." #: modules/mod-nyq-bench/NyqBench.cpp msgid "&Undo\tCtrl+Z" -msgstr "실행 취소(&U)\tCtrl+Z" +msgstr "취소(&U)\tCtrl+Z" #: modules/mod-nyq-bench/NyqBench.cpp msgid "&Redo\tCtrl+Y" @@ -173,7 +168,7 @@ msgstr "다음 S-표현식(&N)\tF12" #: modules/mod-nyq-bench/NyqBench.cpp msgid "&Go to" -msgstr "이동(&G):" +msgstr "이동(&G)" #: modules/mod-nyq-bench/NyqBench.cpp msgid "Select &Font..." @@ -217,15 +212,14 @@ msgstr "정지(&S)\tF6" #: modules/mod-nyq-bench/NyqBench.cpp msgid "&About" -msgstr "정보(&A)" +msgstr "정보 (&A)" #: modules/mod-nyq-bench/NyqBench.cpp msgid "Script" msgstr "스크립트" #. i18n-hint noun -#: modules/mod-nyq-bench/NyqBench.cpp src/Benchmark.cpp -#: src/effects/BassTreble.cpp +#: modules/mod-nyq-bench/NyqBench.cpp src/Benchmark.cpp src/effects/BassTreble.cpp msgid "Output" msgstr "출력" @@ -241,12 +235,10 @@ msgstr "나이키스트 스크립트 (*.ny)|*.ny|Lisp 스크립트 (*.lsp)|*.lsp msgid "Script was not saved." msgstr "스크립트가 저장되지 않음." -#: modules/mod-nyq-bench/NyqBench.cpp src/AudacityLogger.cpp -#: src/DBConnection.cpp src/Project.cpp src/ProjectFileIO.cpp -#: src/ProjectHistory.cpp src/SqliteSampleBlock.cpp src/WaveClip.cpp -#: src/WaveTrack.cpp src/export/Export.cpp src/export/ExportCL.cpp -#: src/export/ExportMultiple.cpp src/import/RawAudioGuess.cpp -#: src/menus/EditMenus.cpp src/prefs/KeyConfigPrefs.cpp src/widgets/Warning.cpp +#: modules/mod-nyq-bench/NyqBench.cpp src/AudacityLogger.cpp src/DBConnection.cpp src/Project.cpp src/ProjectFileIO.cpp +#: src/ProjectHistory.cpp src/SqliteSampleBlock.cpp src/WaveClip.cpp src/WaveTrack.cpp src/export/Export.cpp src/export/ExportCL.cpp +#: src/export/ExportMultiple.cpp src/import/RawAudioGuess.cpp src/menus/EditMenus.cpp src/prefs/KeyConfigPrefs.cpp +#: src/widgets/Warning.cpp msgid "Warning" msgstr "경고" @@ -298,8 +290,7 @@ msgstr "무제" msgid "Nyquist Effect Workbench - " msgstr "나이키스트 효과 작업벤치 - " -#: modules/mod-nyq-bench/NyqBench.cpp src/PluginManager.cpp -#: src/prefs/ModulePrefs.cpp +#: modules/mod-nyq-bench/NyqBench.cpp src/PluginManager.cpp src/prefs/ModulePrefs.cpp msgid "New" msgstr "새로 만들기" @@ -339,8 +330,7 @@ msgstr "복사" msgid "Copy to clipboard" msgstr "클립보드에 복사" -#: modules/mod-nyq-bench/NyqBench.cpp src/menus/EditMenus.cpp -#: src/toolbars/EditToolBar.cpp +#: modules/mod-nyq-bench/NyqBench.cpp src/menus/EditMenus.cpp src/toolbars/EditToolBar.cpp msgid "Cut" msgstr "잘라내기" @@ -348,8 +338,7 @@ msgstr "잘라내기" msgid "Cut to clipboard" msgstr "클립보드로 잘라내기" -#: modules/mod-nyq-bench/NyqBench.cpp src/menus/EditMenus.cpp -#: src/toolbars/EditToolBar.cpp +#: modules/mod-nyq-bench/NyqBench.cpp src/menus/EditMenus.cpp src/toolbars/EditToolBar.cpp msgid "Paste" msgstr "붙여넣기" @@ -374,8 +363,7 @@ msgstr "전체 선택" msgid "Select all text" msgstr "전체 텍스트 선택" -#: modules/mod-nyq-bench/NyqBench.cpp src/toolbars/EditToolBar.cpp -#: src/widgets/KeyView.cpp +#: modules/mod-nyq-bench/NyqBench.cpp src/toolbars/EditToolBar.cpp src/widgets/KeyView.cpp msgid "Undo" msgstr "실행 취소" @@ -383,8 +371,7 @@ msgstr "실행 취소" msgid "Undo last change" msgstr "마지막 변경사항 실행 취소" -#: modules/mod-nyq-bench/NyqBench.cpp src/toolbars/EditToolBar.cpp -#: src/widgets/KeyView.cpp +#: modules/mod-nyq-bench/NyqBench.cpp src/toolbars/EditToolBar.cpp src/widgets/KeyView.cpp msgid "Redo" msgstr "재실행" @@ -410,7 +397,7 @@ msgstr "일치하는 괄호로 이동" #: modules/mod-nyq-bench/NyqBench.cpp msgid "Top" -msgstr "상단" +msgstr "맨 위" #: modules/mod-nyq-bench/NyqBench.cpp msgid "Go to top S-expr" @@ -441,8 +428,7 @@ msgid "Go to next S-expr" msgstr "다음 S-표현식으로 이동" #. i18n-hint noun -#: modules/mod-nyq-bench/NyqBench.cpp src/effects/Contrast.cpp -#: src/effects/ToneGen.cpp src/toolbars/SelectionBar.cpp +#: modules/mod-nyq-bench/NyqBench.cpp src/effects/Contrast.cpp src/effects/ToneGen.cpp src/toolbars/SelectionBar.cpp msgid "Start" msgstr "시작" @@ -450,8 +436,7 @@ msgstr "시작" msgid "Start script" msgstr "스크립트 시작" -#: modules/mod-nyq-bench/NyqBench.cpp src/effects/EffectUI.cpp -#: src/toolbars/ControlToolBar.cpp src/widgets/ProgressDialog.cpp +#: modules/mod-nyq-bench/NyqBench.cpp src/effects/EffectUI.cpp src/toolbars/ControlToolBar.cpp src/widgets/ProgressDialog.cpp msgid "Stop" msgstr "정지" @@ -461,93 +446,108 @@ msgstr "스크립트 정지" #: src/AboutDialog.cpp msgid "No revision identifier was provided" -msgstr "수정본 ID가 없습니다." +msgstr "수정본 ID가 없습니다" -#. i18n-hint: For "About Audacity..." credits, substituting a person's proper name +#. i18n-hint: For "About Audacity..." credits, substituting a person's proper +#. name #: src/AboutDialog.cpp #, c-format msgid "%s, system administration" -msgstr "%s, 시스템 관리 " +msgstr "%s, 시스템 관리" -#. i18n-hint: For "About Audacity..." credits, substituting a person's proper name +#. i18n-hint: For "About Audacity..." credits, substituting a person's proper +#. name #: src/AboutDialog.cpp #, c-format msgid "%s, co-founder and developer" msgstr "%s, 공동 설립자와 개발자" -#. i18n-hint: For "About Audacity..." credits, substituting a person's proper name +#. i18n-hint: For "About Audacity..." credits, substituting a person's proper +#. name #: src/AboutDialog.cpp #, c-format msgid "%s, developer" msgstr "%s, 개발자" -#. i18n-hint: For "About Audacity..." credits, substituting a person's proper name +#. i18n-hint: For "About Audacity..." credits, substituting a person's proper +#. name #: src/AboutDialog.cpp #, c-format msgid "%s, developer and support" msgstr "%s, 개발자 및 지원" -#. i18n-hint: For "About Audacity..." credits, substituting a person's proper name +#. i18n-hint: For "About Audacity..." credits, substituting a person's proper +#. name #: src/AboutDialog.cpp #, c-format msgid "%s, documentation and support" -msgstr "%s, 문서화 및 지원 " +msgstr "%s, 문서화 및 지원" -#. i18n-hint: For "About Audacity..." credits, substituting a person's proper name +#. i18n-hint: For "About Audacity..." credits, substituting a person's proper +#. name #: src/AboutDialog.cpp #, c-format msgid "%s, QA tester, documentation and support" msgstr "%s, QA 테스팅, 문서화 및 지원" -#. i18n-hint: For "About Audacity..." credits, substituting a person's proper name +#. i18n-hint: For "About Audacity..." credits, substituting a person's proper +#. name #: src/AboutDialog.cpp #, c-format msgid "%s, documentation and support, French" msgstr "%s, 문서화 및 지원, 프랑스어" -#. i18n-hint: For "About Audacity..." credits, substituting a person's proper name +#. i18n-hint: For "About Audacity..." credits, substituting a person's proper +#. name #: src/AboutDialog.cpp #, c-format msgid "%s, quality assurance" msgstr "%s, 품질 보증" -#. i18n-hint: For "About Audacity..." credits, substituting a person's proper name +#. i18n-hint: For "About Audacity..." credits, substituting a person's proper +#. name #: src/AboutDialog.cpp #, c-format msgid "%s, accessibility advisor" msgstr "%s, 접근성 자문" -#. i18n-hint: For "About Audacity..." credits, substituting a person's proper name +#. i18n-hint: For "About Audacity..." credits, substituting a person's proper +#. name #: src/AboutDialog.cpp #, c-format msgid "%s, graphic artist" msgstr "%s, 그래픽 아티스트" -#. i18n-hint: For "About Audacity..." credits, substituting a person's proper name +#. i18n-hint: For "About Audacity..." credits, substituting a person's proper +#. name #: src/AboutDialog.cpp #, c-format msgid "%s, composer" msgstr "%s, 작곡가" -#. i18n-hint: For "About Audacity..." credits, substituting a person's proper name +#. i18n-hint: For "About Audacity..." credits, substituting a person's proper +#. name #: src/AboutDialog.cpp #, c-format msgid "%s, tester" msgstr "%s, 테스터" -#. i18n-hint: For "About Audacity..." credits, substituting a person's proper name +#. i18n-hint: For "About Audacity..." credits, substituting a person's proper +#. name #: src/AboutDialog.cpp #, c-format msgid "%s, Nyquist plug-ins" msgstr "%s, 나이키시트 플러그인" -#. i18n-hint: For "About Audacity..." credits, substituting a person's proper name +#. i18n-hint: For "About Audacity..." credits, substituting a person's proper +#. name #: src/AboutDialog.cpp #, c-format msgid "%s, web developer" msgstr "%s, 웹 개발자" -#. i18n-hint: For "About Audacity..." credits, substituting a person's proper name +#. i18n-hint: For "About Audacity..." credits, substituting a person's proper +#. name #: src/AboutDialog.cpp #, c-format msgid "%s, graphics" @@ -562,11 +562,11 @@ msgstr "%s (%s, %s, %s, %s, 그리고 %s를 통합중)" #: src/AboutDialog.cpp #, c-format msgid "About %s" -msgstr "정보 %s" +msgstr "%s 정보" -#. i18n-hint: In most languages OK is to be translated as OK. It appears on a button. -#: src/AboutDialog.cpp src/Dependencies.cpp src/SplashDialog.cpp -#: src/effects/nyquist/Nyquist.cpp src/widgets/MultiDialog.cpp +#. i18n-hint: In most languages OK is to be translated as OK. It appears on a +#. button. +#: src/AboutDialog.cpp src/Dependencies.cpp src/SplashDialog.cpp src/effects/nyquist/Nyquist.cpp src/widgets/MultiDialog.cpp msgid "OK" msgstr "확인" @@ -574,8 +574,9 @@ msgstr "확인" #. second %s will be "volunteers", fourth "available" #: src/AboutDialog.cpp #, c-format -msgid "%s is a free program written by a worldwide team of %s. %s is %s for Windows, Mac, and GNU/Linux (and other Unix-like systems)." -msgstr "%s는 전세계 %s 팀이 개발한 무료 소프트웨어 입니다. %s는 윈도우, 맥, GNU/Linux(등 Unix 계열 시스템)에서 %s 합니다." +msgid "" +"%s is a free program written by a worldwide team of %s. %s is %s for Windows, Mac, and GNU/Linux (and other Unix-like systems)." +msgstr "%s는 전세계 %s 팀이 개발한 무료 소프트웨어 입니다.%s는 윈도우, 맥, GNU/Linux(등 Unix 계열 시스템)에서 %s 합니다." #. i18n-hint: substitutes into "a worldwide team of %s" #: src/AboutDialog.cpp @@ -590,8 +591,12 @@ msgstr "사용가능" #. i18n-hint first and third %s will be "forum", second "wiki" #: src/AboutDialog.cpp #, c-format -msgid "If you find a bug or have a suggestion for us, please write, in English, to our %s. For help, view the tips and tricks on our %s or visit our %s." -msgstr "만약 버그를 찾거나 제안할 것이 있다면 %s 로 영어로 보내주세요. 도움이 필요하다면 %s 에서 팁과 기술들을 보거나 우리의 %s 를 방문하세요 " +msgid "" +"If you find a bug or have a suggestion for us, please write, in English, to our %s. For help, view the tips and tricks on our %s " +"or visit our %s." +msgstr "" +"만약 버그를 찾거나 제안할 것이 있다면 %s 로 영어로 보내주세요.도움이 필요하다면 %s 에서 팁과 해결책을 찾아 보거나, %s 를 방문하세" +"요." #. i18n-hint substitutes into "write to our %s" #: src/AboutDialog.cpp @@ -617,7 +622,7 @@ msgstr "포럼" #. * For example: "English translation by Dominic Mazzoni." #: src/AboutDialog.cpp msgid "translator_credits" -msgstr "Seong-ho Cho, sheppaul" +msgstr "한국어 번역 : 이환용, 김동윤, 조성호, " #: src/AboutDialog.cpp msgid "

" @@ -627,7 +632,7 @@ msgstr "

" #: src/AboutDialog.cpp #, c-format msgid "%s the free, open source, cross-platform software for recording and editing sounds." -msgstr "%s 는 소리 녹화와 편집을 위한 무료, 오픈소스, 크로스 플랫폼 소프트웨어 입니다." +msgstr "%s 는 소리 녹화와 편집을 위한 무료, 오픈소스,크로스 플랫폼 소프트웨어 입니다." #: src/AboutDialog.cpp msgid "Credits" @@ -635,7 +640,7 @@ msgstr "만든 사람들" #: src/AboutDialog.cpp msgid "DarkAudacity Customisation" -msgstr "검은색 오데시티 사용자 정의" +msgstr "DarkAudacity 커스텀화" #. i18n-hint: The program's name substitutes for %s #: src/AboutDialog.cpp @@ -663,7 +668,7 @@ msgstr "웹사이트와 그래픽스" #: src/AboutDialog.cpp msgid "Translators" -msgstr "번역자" +msgstr "번역" #: src/AboutDialog.cpp src/prefs/LibraryPrefs.cpp msgid "Libraries" @@ -696,7 +701,7 @@ msgstr "%s 소프트웨어의 저작권 %s 1999-2021 %s 팀." #: src/AboutDialog.cpp #, c-format msgid "The name %s is a registered trademark." -msgstr " %s 는 등록 상표입니다." +msgstr "%s 는 등록 상표입니다." #: src/AboutDialog.cpp msgid "Build Information" @@ -706,8 +711,7 @@ msgstr "빌드 정보" msgid "Enabled" msgstr "활성화" -#: src/AboutDialog.cpp src/PluginManager.cpp src/export/ExportFFmpegDialogs.cpp -#: src/prefs/ModulePrefs.cpp +#: src/AboutDialog.cpp src/PluginManager.cpp src/export/ExportFFmpegDialogs.cpp src/prefs/ModulePrefs.cpp msgid "Disabled" msgstr "비활성화" @@ -727,7 +731,7 @@ msgstr "제출 ID:" #: src/AboutDialog.cpp #, c-format msgid "Debug build (debug level %d)" -msgstr "디버그 빌드 (디버그 레벨 %d) " +msgstr "디버그 빌드 (디버그 레벨 %d)" #: src/AboutDialog.cpp #, c-format @@ -841,7 +845,7 @@ msgstr "극한의 피치와 템포 변경 지원" #: src/AboutDialog.cpp msgctxt "about dialog" msgid "Legal" -msgstr "" +msgstr "법률" #: src/AboutDialog.cpp msgid "GPL License" @@ -851,24 +855,23 @@ msgstr "GPL 라이선스" #: src/AboutDialog.cpp msgctxt "about dialog" msgid "PRIVACY POLICY" -msgstr "" +msgstr "개인정보 보호정책" #: src/AboutDialog.cpp msgid "App update checking and error reporting require network access. These features are optional." -msgstr "" +msgstr "앱 업데이트 확인 및 오류 보고에는 네트워크 액세스가 필요합니다. 이 기능은 선택 사항입니다." #. i18n-hint: %s will be replaced with "our Privacy Policy" -#: src/AboutDialog.cpp src/prefs/ApplicationPrefs.cpp -#: src/update/UpdateNoticeDialog.cpp -#, fuzzy, c-format +#: src/AboutDialog.cpp src/prefs/ApplicationPrefs.cpp src/update/UpdateNoticeDialog.cpp +#, c-format msgid "See %s for more info." -msgstr "하나 이상의 파일 선택" +msgstr "상세한 정보는 %s 를 참조하세요." -#. i18n-hint: Title of hyperlink to the privacy policy. This is an object of "See". -#: src/AboutDialog.cpp src/prefs/ApplicationPrefs.cpp -#: src/update/UpdateNoticeDialog.cpp +#. i18n-hint: Title of hyperlink to the privacy policy. This is an object of +#. "See". +#: src/AboutDialog.cpp src/prefs/ApplicationPrefs.cpp src/update/UpdateNoticeDialog.cpp msgid "our Privacy Policy" -msgstr "" +msgstr "우리의 개인정보 보호정책" #: src/AdornedRulerPanel.cpp msgid "Timeline actions disabled during recording" @@ -891,31 +894,27 @@ msgstr "시간표시줄" #. i18n-hint: These commands assist the user in finding a sound by ear. ... #. "Scrubbing" is variable-speed playback, ... #. "Seeking" is normal speed playback but with skips -#. #: src/AdornedRulerPanel.cpp msgid "Click or drag to begin Seek" -msgstr "탐색 시작은 누르거나 드래그하세요" +msgstr "탐색 시작은 클릭 또는 드래그" #. i18n-hint: These commands assist the user in finding a sound by ear. ... #. "Scrubbing" is variable-speed playback, ... #. "Seeking" is normal speed playback but with skips -#. #: src/AdornedRulerPanel.cpp msgid "Click or drag to begin Scrub" -msgstr "스크러빙 시작은 누르거나 드래그하세요" +msgstr "스크러빙 시작은 클릭 또는 드래그" #. i18n-hint: These commands assist the user in finding a sound by ear. ... #. "Scrubbing" is variable-speed playback, ... #. "Seeking" is normal speed playback but with skips -#. #: src/AdornedRulerPanel.cpp msgid "Click & move to Scrub. Click & drag to Seek." -msgstr "스크러빙은 클릭 후 이동, 탐색은 클릭 후 드래그하세요" +msgstr "스크러빙은 클릭한생태로 이동, 탐색은 클릭한 생태로 드래그하세요." #. i18n-hint: These commands assist the user in finding a sound by ear. ... #. "Scrubbing" is variable-speed playback, ... #. "Seeking" is normal speed playback but with skips -#. #: src/AdornedRulerPanel.cpp msgid "Move to Seek" msgstr "탐색하려면 이동하세요" @@ -923,10 +922,9 @@ msgstr "탐색하려면 이동하세요" #. i18n-hint: These commands assist the user in finding a sound by ear. ... #. "Scrubbing" is variable-speed playback, ... #. "Seeking" is normal speed playback but with skips -#. #: src/AdornedRulerPanel.cpp msgid "Move to Scrub" -msgstr "스크러빙하려면 이동하세요" +msgstr "스크러빙으로 이동" #: src/AdornedRulerPanel.cpp msgid "Drag to Seek. Release to stop seeking." @@ -934,11 +932,11 @@ msgstr "찾기는 드래그. 멈추면 해제." #: src/AdornedRulerPanel.cpp msgid "Drag to Seek. Release and move to Scrub." -msgstr "드래그하여 찾고 마우스 놓고 이동하여 스크러빙" +msgstr "드래그하여 찾고 마우스 놓고 이동하여 스크러빙." #: src/AdornedRulerPanel.cpp msgid "Move to Scrub. Drag to Seek." -msgstr "스크러빙으로 이동, 탐색은 드래그" +msgstr "스크러빙으로 이동, 탐색은 드래그." #: src/AdornedRulerPanel.cpp msgid "Quick-Play disabled" @@ -980,17 +978,11 @@ msgstr "" "프로젝트 끝 너머의 영역은\n" "잠글 수 없습니다." -#: src/AdornedRulerPanel.cpp src/AudioIO.cpp src/FileNames.cpp -#: src/ProjectAudioManager.cpp src/TimerRecordDialog.cpp -#: src/effects/Contrast.cpp src/effects/Effect.cpp src/effects/Generator.cpp -#: src/effects/nyquist/Nyquist.cpp src/export/ExportFFmpeg.cpp -#: src/export/ExportMP2.cpp src/menus/TrackMenus.cpp -#: src/menus/TransportMenus.cpp src/prefs/DirectoriesPrefs.cpp -#: src/prefs/KeyConfigPrefs.cpp -#: src/tracks/playabletrack/wavetrack/ui/WaveTrackControls.cpp -#: src/widgets/FileDialog/gtk/FileDialogPrivate.cpp -#: src/widgets/UnwritableLocationErrorDialog.cpp -#: plug-ins/eq-xml-to-txt-converter.ny +#: src/AdornedRulerPanel.cpp src/AudioIO.cpp src/FileNames.cpp src/ProjectAudioManager.cpp src/TimerRecordDialog.cpp +#: src/effects/Contrast.cpp src/effects/Effect.cpp src/effects/Generator.cpp src/effects/nyquist/Nyquist.cpp +#: src/export/ExportFFmpeg.cpp src/export/ExportMP2.cpp src/menus/TrackMenus.cpp src/menus/TransportMenus.cpp +#: src/prefs/DirectoriesPrefs.cpp src/prefs/KeyConfigPrefs.cpp src/tracks/playabletrack/wavetrack/ui/WaveTrackControls.cpp +#: src/widgets/FileDialog/gtk/FileDialogPrivate.cpp src/widgets/UnwritableLocationErrorDialog.cpp plug-ins/eq-xml-to-txt-converter.ny msgid "Error" msgstr "오류" @@ -1009,13 +1001,13 @@ msgid "" "\n" "This is a one-time question, after an 'install' where you asked to have the Preferences reset." msgstr "" -"환경 설정을 초기화할까요?\n" +"환경설정을 초기화할까요?\n" "\n" -"이 질문은 환경 설정을 초기화하도록 하는 '설치' 과정 이후 한 번만 묻습니다." +"이 질문은 환경설정을 초기화 하는 '설치' 과정 이후 한 번만 묻습니다." #: src/AudacityApp.cpp msgid "Reset Audacity Preferences" -msgstr "오데시티 환경 설정 초기화" +msgstr "오데시티 환경설정 초기화" #: src/AudacityApp.cpp #, c-format @@ -1060,7 +1052,7 @@ msgstr "오데시티 정보(&A)..." #: src/AudacityApp.cpp msgid "&Preferences..." -msgstr "환경 설정(&P)..." +msgstr "환경설정(&P)..." #: src/AudacityApp.cpp src/menus/FileMenus.cpp msgid "&File" @@ -1086,7 +1078,7 @@ msgstr "" #: src/AudacityApp.cpp msgid "Audacity is now going to exit. Please launch Audacity again to use the new temporary directory." -msgstr "오데시티를 지금 종료할 것입니다. 새 임시 폴더를 사용하도록 오데시티를 다시 실행하세요." +msgstr "오데시티를 지금 종료할 것입니다.새 임시 폴더를 사용하도록 오데시티를 다시 실행하세요." #: src/AudacityApp.cpp msgid "" @@ -1143,7 +1135,7 @@ msgstr "" #: src/AudacityApp.cpp msgid "Audacity Startup Failure" -msgstr "오데시티 시동 실패" +msgstr "오데시티 시작 실패" #: src/AudacityApp.cpp msgid "" @@ -1191,11 +1183,11 @@ msgstr "" "오데시티 IPC 서버의 초기화에 실패하였습니다.\n" "\n" "자원이 부족하여 발생한 경우일 수 있습니다. \n" -"리부트를 하면 해결될 수 있습니다. " +"리부트를 하면 해결될 수 있습니다." #: src/AudacityApp.cpp msgid "An unrecoverable error has occurred during startup" -msgstr "시동 중 복구할 수 없는 오류가 발생하였습니다." +msgstr "시동 중 복구할 수 없는 오류가 발생하였습니다" #. i18n-hint: This controls the number of bytes that Audacity will #. * use when writing files to the disk @@ -1240,8 +1232,7 @@ msgstr "" msgid "Audacity Project Files" msgstr "오데시티 프로젝트 파일" -#: src/AudacityException.h src/commands/MessageCommand.cpp -#: src/widgets/AudacityMessageBox.cpp +#: src/AudacityException.h src/commands/MessageCommand.cpp src/widgets/AudacityMessageBox.cpp msgid "Message" msgstr "메시지" @@ -1256,7 +1247,8 @@ msgid "" "\n" "\t%s\n" "\n" -"This could be caused by many reasons, but the most likely are that the disk is full or you do not have write permissions to the file. More information can be obtained by clicking the help button below.\n" +"This could be caused by many reasons, but the most likely are that the disk is full or you do not have write permissions to the " +"file. More information can be obtained by clicking the help button below.\n" "\n" "You can attempt to correct the issue and then click \"Retry\" to continue.\n" "\n" @@ -1266,15 +1258,15 @@ msgstr "" "\n" "\t%s\n" "\n" -"다른 원인이 있을 수 있지만, 대부분 디스크가 꽉 차 있는 경우이거나 쓰기 금지되어 있기 때문입니다. 상세 정보는 도움말 버튼을 누르면 볼 수 있습니다. \n" +"다른 원인이 있을 수 있지만, 대부분 디스크가 꽉 차 있는 경우이거나 쓰기 금지되어 있기 때문입니다. 상세 정보는 도움말 버튼을 누르면 " +"볼 수 있습니다. \n" "\n" "문제를 해결하고, \"재시도\" 버튼을 눌러 다시 시도해 보기 바랍니다. \n" "\n" -"만일 \"오데시티 종료\" 버튼을 선택하면, 현재의 프로젝트는 저장되지 않은 상태로 남고, 다시 열때 복구를 시도할 것입니다. " +"만일 \"오데시티 종료\" 버튼을 선택하면, 현재의 프로젝트는 저장되지 않은 상태로 남고, 다시 열때 복구를 시도할 것입니다." -#: src/AudacityFileConfig.cpp src/ShuttleGui.cpp src/commands/HelpCommand.cpp -#: src/effects/Equalization.cpp src/export/Export.cpp src/menus/HelpMenus.cpp -#: src/widgets/ErrorReportDialog.cpp src/widgets/MultiDialog.cpp +#: src/AudacityFileConfig.cpp src/ShuttleGui.cpp src/commands/HelpCommand.cpp src/effects/Equalization.cpp src/export/Export.cpp +#: src/menus/HelpMenus.cpp src/widgets/ErrorReportDialog.cpp src/widgets/MultiDialog.cpp msgid "Help" msgstr "도움말" @@ -1299,8 +1291,7 @@ msgstr "저장(&S)..." msgid "Cl&ear" msgstr "지우기(&E)" -#: src/AudacityLogger.cpp src/ShuttleGui.cpp src/effects/Contrast.cpp -#: src/menus/FileMenus.cpp +#: src/AudacityLogger.cpp src/ShuttleGui.cpp src/effects/Contrast.cpp src/menus/FileMenus.cpp msgid "&Close" msgstr "닫기(&C)" @@ -1373,16 +1364,16 @@ msgstr "메모리가 부족합니다!" #: src/AudioIO.cpp msgid "Automated Recording Level Adjustment stopped. It was not possible to optimize it more. Still too high." -msgstr "자동 녹음 레벨 조정 중단. 더 이상 최적화가 불가능합니다. 여전히 너무 높습니다." +msgstr "자동 녹음 레벨 조정 중단. 더 이상 최적화가 불가능합니다.여전히 너무 높습니다." #: src/AudioIO.cpp #, c-format msgid "Automated Recording Level Adjustment decreased the volume to %f." -msgstr "자동 녹음 레벨 조정: 볼륨을 %.2f로 줄였습니다." +msgstr "자동 녹음 레벨 조정: 볼륨을 %f로 줄였습니다." #: src/AudioIO.cpp msgid "Automated Recording Level Adjustment stopped. It was not possible to optimize it more. Still too low." -msgstr "자동 녹음 레벨 조정 중단. 더 이상 최적화가 불가능합니다. 여전히 너무 낮습니다." +msgstr "자동 녹음 레벨 조정 중단. 더 이상 최적화가 불가능합니다.여전히 너무 낮습니다." #: src/AudioIO.cpp #, c-format @@ -1390,17 +1381,21 @@ msgid "Automated Recording Level Adjustment increased the volume to %.2f." msgstr "자동 녹음 레벨 조정: 볼륨을 %.2f로 올렸습니다." #: src/AudioIO.cpp -msgid "Automated Recording Level Adjustment stopped. The total number of analyses has been exceeded without finding an acceptable volume. Still too high." -msgstr "자동 녹음 레벨 조정 중단됨. 알맞은 볼륨을 찾기위한 최대 분석횟수를 초과했습니다. 여전히 너무 높습니다." +msgid "" +"Automated Recording Level Adjustment stopped. The total number of analyses has been exceeded without finding an acceptable volume. " +"Still too high." +msgstr "자동 녹음 레벨 조정 중단됨. 알맞은 볼륨을 찾기위한 최대 분석횟수를 초과했습니다.여전히 너무 높습니다." #: src/AudioIO.cpp -msgid "Automated Recording Level Adjustment stopped. The total number of analyses has been exceeded without finding an acceptable volume. Still too low." -msgstr "자동 녹음 레벨 조정 중단됨. 알맞은 볼륨을 찾기위한 최대 분석횟수를 초과했습니다. 여전히 너무 낮습니다." +msgid "" +"Automated Recording Level Adjustment stopped. The total number of analyses has been exceeded without finding an acceptable volume. " +"Still too low." +msgstr "자동 녹음 레벨 조정 중단됨. 알맞은 볼륨을 찾기위한 최대 분석횟수를 초과했습니다.여전히 너무 낮습니다." #: src/AudioIO.cpp #, c-format msgid "Automated Recording Level Adjustment stopped. %.2f seems an acceptable volume." -msgstr "자동 녹음 레벨 조정 중단: %.2f은 무난한 볼륨인 듯 싶습니다." +msgstr "자동 녹음 레벨 조정 중단: %.2f은 알맞은볼륨으로 판단됨." #: src/AudioIOBase.cpp msgid "Stream is active ... unable to gather information.\n" @@ -1596,8 +1591,7 @@ msgid "Recoverable &projects" msgstr "복구 가능한 프로젝트 (&P)" #. i18n-hint: (verb). It instruct the user to select items. -#: src/AutoRecoveryDialog.cpp src/TrackInfo.cpp src/commands/SelectCommand.cpp -#: src/prefs/MousePrefs.cpp +#: src/AutoRecoveryDialog.cpp src/TrackInfo.cpp src/commands/SelectCommand.cpp src/prefs/MousePrefs.cpp msgid "Select" msgstr "선택" @@ -1698,7 +1692,8 @@ msgstr "(%s)" msgid "Menu Command (No Parameters)" msgstr "메뉴 명령 (매개 변수 없음)" -#. i18n-hint: %s will be replaced by the name of an action, such as "Remove Tracks". +#. i18n-hint: %s will be replaced by the name of an action, such as "Remove +#. Tracks". #: src/BatchCommands.cpp src/CommonCommandFlags.cpp #, c-format msgid "\"%s\" requires one or more tracks to be selected." @@ -1832,14 +1827,13 @@ msgstr "이름 변경(&R)..." #: src/BatchProcessDialog.cpp msgid "Re&store" -msgstr "복구 및 저장" +msgstr "복원 (&S)" #: src/BatchProcessDialog.cpp src/LabelDialog.cpp src/effects/Equalization.cpp msgid "I&mport..." msgstr "가져오기(&M)..." -#: src/BatchProcessDialog.cpp src/effects/Contrast.cpp -#: src/effects/Equalization.cpp +#: src/BatchProcessDialog.cpp src/effects/Contrast.cpp src/effects/Equalization.cpp msgid "E&xport..." msgstr "내보내기(&X)..." @@ -1854,7 +1848,7 @@ msgstr "번호" #: src/BatchProcessDialog.cpp msgid "Command " -msgstr "명령" +msgstr "명령 " #: src/BatchProcessDialog.cpp src/effects/Contrast.cpp msgid "Parameters" @@ -1880,8 +1874,7 @@ msgstr "위로 이동(&U)" msgid "Move &Down" msgstr "아래로 이동(&D)" -#: src/BatchProcessDialog.cpp src/effects/nyquist/Nyquist.cpp -#: src/menus/HelpMenus.cpp +#: src/BatchProcessDialog.cpp src/effects/nyquist/Nyquist.cpp src/menus/HelpMenus.cpp msgid "&Save" msgstr "저장(&S)" @@ -1916,7 +1909,8 @@ msgstr "새 매크로 이름" msgid "Name must not be blank" msgstr "이름은 비워둘 수 없습니다" -#. i18n-hint: The %c will be replaced with 'forbidden characters', like '/' and '\'. +#. i18n-hint: The %c will be replaced with 'forbidden characters', like '/' +#. and '\'. #: src/BatchProcessDialog.cpp #, c-format msgid "Names may not contain '%c' and '%c'" @@ -1964,8 +1958,7 @@ msgid "Run" msgstr "실행" #. i18n-hint verb -#: src/Benchmark.cpp src/tracks/ui/TrackButtonHandles.cpp -#: src/widgets/HelpSystem.cpp +#: src/Benchmark.cpp src/tracks/ui/TrackButtonHandles.cpp src/widgets/HelpSystem.cpp msgid "Close" msgstr "닫기" @@ -2106,7 +2099,8 @@ msgstr "시험 실패!!!\n" msgid "Benchmark completed successfully.\n" msgstr "벤치마크를 성공적으로 마쳤습니다.\n" -#. i18n-hint: %s will be replaced by the name of an action, such as Normalize, Cut, Fade. +#. i18n-hint: %s will be replaced by the name of an action, such as Normalize, +#. Cut, Fade. #: src/CommonCommandFlags.cpp #, c-format msgid "" @@ -2118,13 +2112,15 @@ msgstr "" "\n" "Ctrl + A는 전체 오디오를 선택합니다." -#. i18n-hint: %s will be replaced by the name of an action, such as Normalize, Cut, Fade. +#. i18n-hint: %s will be replaced by the name of an action, such as Normalize, +#. Cut, Fade. #: src/CommonCommandFlags.cpp #, c-format msgid "Select the audio for %s to use (for example, Cmd + A to Select All) then try again." -msgstr "%s가 사용할 오디오를 선택(예: 전체 선택은 Cmd + A)하고 다시 해보세요." +msgstr "%s가 사용할 오디오를 선택(예: 전체 선택은 Cmd + A)하고다시 해보세요." -#. i18n-hint: %s will be replaced by the name of an action, such as Normalize, Cut, Fade. +#. i18n-hint: %s will be replaced by the name of an action, such as Normalize, +#. Cut, Fade. #: src/CommonCommandFlags.cpp #, c-format msgid "Select the audio for %s to use (for example, Ctrl + A to Select All) then try again." @@ -2134,7 +2130,8 @@ msgstr "%s가 사용할 오디오를 선택(예: 전체 선택은 Ctrl + A)하 msgid "No Audio Selected" msgstr "선택한 오디오가 없습니다" -#. i18n-hint: %s will be replaced by the name of an effect, usually 'Noise Reduction'. +#. i18n-hint: %s will be replaced by the name of an effect, usually 'Noise +#. Reduction'. #: src/CommonCommandFlags.cpp #, c-format msgid "" @@ -2182,7 +2179,7 @@ msgstr "오데시티 지원 데이터" #: src/CrashReport.cpp src/DBConnection.cpp src/ProjectFileIO.cpp msgid "This may take several seconds" -msgstr "몇초가 필요합니다." +msgstr "몇초가 필요합니다" #: src/CrashReport.cpp msgid "Report generated to:" @@ -2196,12 +2193,12 @@ msgstr "(%d): %s" #: src/DBConnection.cpp #, c-format msgid "Failed to set safe mode on primary connection to %s" -msgstr "주 연결 %s 을 안전 모드로 설정하는데 실패했습니다." +msgstr "주 연결 %s 을 안전 모드로 설정하는데 실패했습니다" #: src/DBConnection.cpp #, c-format msgid "Failed to set safe mode on checkpoint connection to %s" -msgstr "점검을 위한 연결 %s 을 안전모드로 설정하는데 실패하였습니다. " +msgstr "점검을 위한 연결 %s 을 안전모드로 설정하는데 실패하였습니다" #: src/DBConnection.cpp msgid "Checkpointing project" @@ -2360,7 +2357,7 @@ msgstr "누락된" #: src/Dependencies.cpp msgid "If you proceed, your project will not be saved to disk. Is this what you want?" -msgstr "계속 진행하면, 프로젝트를 디스크에 저장하지 않을 것입니다. 계속 진행할까요?" +msgstr "계속 진행하면, 프로젝트를 디스크에 저장하지 않을 것입니다.계속 진행할까요?" #: src/Dependencies.cpp msgid "" @@ -2380,10 +2377,8 @@ msgstr "" msgid "Dependency Check" msgstr "의존성 확인" -#: src/Dither.cpp src/commands/ScreenshotCommand.cpp -#: src/effects/EffectManager.cpp src/effects/EffectUI.cpp -#: src/prefs/TracksBehaviorsPrefs.cpp plug-ins/equalabel.ny -#: plug-ins/sample-data-export.ny +#: src/Dither.cpp src/commands/ScreenshotCommand.cpp src/effects/EffectManager.cpp src/effects/EffectUI.cpp +#: src/prefs/TracksBehaviorsPrefs.cpp plug-ins/equalabel.ny plug-ins/sample-data-export.ny msgid "None" msgstr "없음" @@ -2459,10 +2454,10 @@ msgid "" "\n" "You may want to go back to Preferences > Libraries and re-configure it." msgstr "" -"환경 설정에서 FFmpeg를 설정했고 이전에 성공적으로 불러왔지만, \n" +"환경설정에서 FFmpeg를 설정했고 이전에 성공적으로 불러왔지만, \n" "이번에 오데시티 시작시 FFmpeg을 불러오는데 실패했습니다.\n" "\n" -"환경 설정 > 라이브러리 에서 다시 설정해 보세요." +"환경설정 > 라이브러리 에서 다시 설정해 보세요." #: src/FFmpeg.cpp msgid "FFmpeg startup failed" @@ -2491,8 +2486,7 @@ msgstr "'%s' 위치:" msgid "To find '%s', click here -->" msgstr "'%s'을 찾으려면, 여기를 누르세요 -->" -#: src/FFmpeg.cpp src/export/ExportCL.cpp src/export/ExportMP3.cpp -#: plug-ins/nyquist-plug-in-installer.ny +#: src/FFmpeg.cpp src/export/ExportCL.cpp src/export/ExportMP3.cpp plug-ins/nyquist-plug-in-installer.ny msgid "Browse..." msgstr "찾아보기..." @@ -2528,7 +2522,7 @@ msgstr "" "오데시티가 FFmpeg을 사용해 오디오 파일을 가져오려고\n" "했지만, 라이브러리를 찾지 못했습니다.\n" "\n" -"FFmpeg 가져오기를 사용하려면, 환경 설정 > 라이브러리 에서\n" +"FFmpeg 가져오기를 사용하려면, 환경설정 > 라이브러리 에서\n" "FFmpeg 라이브러리를 다운로드하거나 그 위치를 지정하세요." #: src/FFmpeg.cpp @@ -2561,7 +2555,7 @@ msgstr "오데시티는 1%s의 파일에서 읽지 못했습니다." #: src/FileException.cpp #, c-format msgid "Audacity successfully wrote a file in %s but failed to rename it as %s." -msgstr "오데시티에서 %s에 파일을 잘 썼지만 이름을 %s로 바꾸는데 실패했습니다." +msgstr "오데시티에서 %s파일에 기록라는 성공했으나, 이름을 %s로 바꾸는데 실패했습니다." #: src/FileException.cpp #, c-format @@ -2577,7 +2571,8 @@ msgstr "" msgid "File Error" msgstr "파일 오류" -#. i18n-hint: %s will be the error message from the libsndfile software library +#. i18n-hint: %s will be the error message from the libsndfile software +#. library #: src/FileFormats.cpp #, c-format msgid "Error (file may not have been written): %s" @@ -2601,10 +2596,9 @@ msgstr "어떤 오디오도 복사하지 않기(&N)" #: src/FileFormats.cpp msgid "As&k" -msgstr "묻기(&K)" +msgstr "확인하기(&K)" -#: src/FileNames.cpp plug-ins/eq-xml-to-txt-converter.ny -#: plug-ins/nyquist-plug-in-installer.ny plug-ins/sample-data-export.ny +#: src/FileNames.cpp plug-ins/eq-xml-to-txt-converter.ny plug-ins/nyquist-plug-in-installer.ny plug-ins/sample-data-export.ny #: plug-ins/sample-data-import.ny msgid "All files" msgstr "모든 파일" @@ -2651,9 +2645,9 @@ msgid "Specify New Filename:" msgstr "새 파일 이름 지정:" #: src/FileNames.cpp -#, fuzzy, c-format +#, c-format msgid "Directory %s does not have write permissions" -msgstr "%s 폴더가 없습니다. 새로 만들까요?" +msgstr "디렉토리 %s 에 쓰기 권한이 없음" #: src/FreqWindow.cpp msgid "Frequency Analysis" @@ -2700,12 +2694,9 @@ msgstr "로그 주파수" #. i18n-hint: abbreviates decibels #. i18n-hint: short form of 'decibels'. -#: src/FreqWindow.cpp src/commands/SetTrackInfoCommand.cpp -#: src/effects/AutoDuck.cpp src/effects/Compressor.cpp -#: src/effects/Equalization.cpp src/effects/Loudness.cpp -#: src/effects/Normalize.cpp src/effects/ScienFilter.cpp -#: src/effects/TruncSilence.cpp src/prefs/WaveformSettings.cpp -#: src/widgets/Meter.cpp plug-ins/sample-data-export.ny +#: src/FreqWindow.cpp src/commands/SetTrackInfoCommand.cpp src/effects/AutoDuck.cpp src/effects/Compressor.cpp +#: src/effects/Equalization.cpp src/effects/Loudness.cpp src/effects/Normalize.cpp src/effects/ScienFilter.cpp +#: src/effects/TruncSilence.cpp src/prefs/WaveformSettings.cpp src/widgets/Meter.cpp plug-ins/sample-data-export.ny msgid "dB" msgstr "dB" @@ -2720,8 +2711,7 @@ msgstr "확대/축소" #. i18n-hint: This is the abbreviation for "Hertz", or #. cycles per second. #. i18n-hint: Name of display format that shows frequency in hertz -#: src/FreqWindow.cpp src/effects/ChangePitch.cpp src/effects/Equalization.cpp -#: src/effects/ScienFilter.cpp src/import/ImportRaw.cpp +#: src/FreqWindow.cpp src/effects/ChangePitch.cpp src/effects/Equalization.cpp src/effects/ScienFilter.cpp src/import/ImportRaw.cpp #: src/widgets/NumericTextCtrl.cpp msgid "Hz" msgstr "Hz" @@ -2769,7 +2759,7 @@ msgstr "스펙트럼을 그리려면, 선택한 모든 트랙의 샘플링 주 #: src/FreqWindow.cpp #, c-format msgid "Too much audio was selected. Only the first %.1f seconds of audio will be analyzed." -msgstr "너무 많은 오디오를 선택했습니다. 오디오의 처음 %.1f초 분량만 분석됩니다." +msgstr "너무 긴 오디오가 선택됨. 처음 %.1f 초만 분석에 이용됩니다." #: src/FreqWindow.cpp msgid "Not enough data selected." @@ -2780,26 +2770,30 @@ msgstr "충분한 데이터를 선택하지 않았습니다." msgid "s" msgstr "s" -#. i18n-hint: The %d's are replaced by numbers, the %s by musical notes, e.g. A# +#. i18n-hint: The %d's are replaced by numbers, the %s by musical notes, e.g. +#. A# #: src/FreqWindow.cpp #, c-format msgid "%d Hz (%s) = %d dB" msgstr "%d Hz (%s) = %d dB" -#. i18n-hint: The %d's are replaced by numbers, the %s by musical notes, e.g. A# +#. i18n-hint: The %d's are replaced by numbers, the %s by musical notes, e.g. +#. A# #: src/FreqWindow.cpp #, c-format msgid "%d Hz (%s) = %.1f dB" msgstr "%d Hz (%s) = %.1f dB" -#. i18n-hint: The %d's are replaced by numbers, the %s by musical notes, e.g. A# +#. i18n-hint: The %d's are replaced by numbers, the %s by musical notes, e.g. +#. A# #. * the %.4f are numbers, and 'sec' should be an abbreviation for seconds #: src/FreqWindow.cpp #, c-format msgid "%.4f sec (%d Hz) (%s) = %f" msgstr "%.4f 초 (%d Hz) (%s) = %f" -#. i18n-hint: The %d's are replaced by numbers, the %s by musical notes, e.g. A# +#. i18n-hint: The %d's are replaced by numbers, the %s by musical notes, e.g. +#. A# #. * the %.4f are numbers, and 'sec' should be an abbreviation for seconds #: src/FreqWindow.cpp #, c-format @@ -2814,8 +2808,7 @@ msgstr "spectrum.txt" msgid "Export Spectral Data As:" msgstr "다른 이름으로 스펙트럼 데이터 내보내기:" -#: src/FreqWindow.cpp src/LabelDialog.cpp src/effects/Contrast.cpp -#: src/menus/FileMenus.cpp +#: src/FreqWindow.cpp src/LabelDialog.cpp src/effects/Contrast.cpp src/menus/FileMenus.cpp #, c-format msgid "Couldn't write to file: %s" msgstr "파일에 쓸 수 없습니다: %s" @@ -2892,7 +2885,7 @@ msgstr "설치된 도움말이 없습니다" #: src/HelpText.cpp msgid "

The version of Audacity you are using is an Alpha test version." -msgstr "

현재 사용 중인 오데시티는 알파 테스트 버전입니다." +msgstr "

현재 사용 중인 오데시티는알파 테스트 버전입니다." #: src/HelpText.cpp msgid "

The version of Audacity you are using is a Beta test version." @@ -2904,11 +2897,13 @@ msgstr "오데시티 공식 배포 버전 구하기" #: src/HelpText.cpp msgid "We strongly recommend that you use our latest stable released version, which has full documentation and support.

" -msgstr "완전한 설명서와 지원이 있는 최신 배포 버전을 사용하시길 강력히 권장합니다.

" +msgstr "완전한 설명서와 지원이 있는 최신 안정화 버전을 사용하시길강력히 권장합니다.

" #: src/HelpText.cpp -msgid "You can help us get Audacity ready for release by joining our [[https://www.audacityteam.org/community/|community]].


" -msgstr "여러분은 우리의 [[https://www.audacityteam.org/community/|커뮤니티]]에 가입하여 오데시티의 배포를 도와줄 수 있습니다.


" +msgid "" +"You can help us get Audacity ready for release by joining our [[https://www.audacityteam.org/community/|community]].


" +msgstr "" +"여러분은 우리의 [[https://www.audacityteam.org/community/|커뮤니티]]에 가입하여 오데시티의 배포를 도와줄 수 있습니다.


" #: src/HelpText.cpp msgid "How to get help" @@ -2921,7 +2916,7 @@ msgstr "이용 가능한 지원:" #. i18n-hint: Preserve '[[help:Quick_Help|' as it's the name of a link. #: src/HelpText.cpp msgid "[[help:Quick_Help|Quick Help]] - if not installed locally, [[https://manual.audacityteam.org/quick_help.html|view online]]" -msgstr "[[help:Quick_Help|Quick Help]] - 컴퓨터에 설치하지 않은 경우, [[https://manual.audacityteam.org/quick_help.html|view online]]" +msgstr "[[help:Quick_Help|Quick Help]] - 컴퓨터에 설치하지 않은 경우,[[https://manual.audacityteam.org/quick_help.html|view online]]" #. i18n-hint: Preserve '[[help:Main_Page|' as it's the name of a link. #: src/HelpText.cpp @@ -2930,27 +2925,47 @@ msgstr " [[help:Main_Page|Manual]] - 컴퓨터에 설치하지 않은 경우, [[ #: src/HelpText.cpp msgid " [[https://forum.audacityteam.org/|Forum]] - ask your question directly, online." -msgstr " [[https://forum.audacityteam.org/|포럼]] - 질문을 온라인으로 직접 물어보세요." +msgstr " [[https://forum.audacityteam.org/|포럼]]질문을 온라인으로 직접 물어보세요." #: src/HelpText.cpp msgid "More: Visit our [[https://wiki.audacityteam.org/index.php|Wiki]] for tips, tricks, extra tutorials and effects plug-ins." -msgstr "추가: 팁, 트릭, 추가 사용 지침서와 효과 플러그인 정보는 [[https://wiki.audacityteam.org/index.php|위키]]를 방문하세요." +msgstr "추가: 팁, 트릭, 추가 사용 지침서와 효과 플러그인 정보는[[https://wiki.audacityteam.org/index.php|위키]]를 방문하세요." #: src/HelpText.cpp -msgid "Audacity can import unprotected files in many other formats (such as M4A and WMA, compressed WAV files from portable recorders and audio from video files) if you download and install the optional [[https://manual.audacityteam.org/man/faq_opening_and_saving_files.html#foreign| FFmpeg library]] to your computer." -msgstr "오데시티는 비보호된 파일을 다른 여러 형식으로 가져올 수 있습니다 (M4A와 WMA, 휴대용 레코더와 비디오 파일의 오디오에서 압축된 WAV 파일 등). 이를 위해서는 [[https://manual.audacityteam.org/man/faq_opening_and_saving_files.html#foreign|FFmpeg 라이브러리]]를 받아서 설치해야 합니다." +msgid "" +"Audacity can import unprotected files in many other formats (such as M4A and WMA, compressed WAV files from portable recorders and " +"audio from video files) if you download and install the optional [[https://manual.audacityteam.org/man/" +"faq_opening_and_saving_files.html#foreign| FFmpeg library]] to your computer." +msgstr "" +"오데시티는 비보호된 파일을 다른 여러 형식으로 가져올 수 있습니다.(M4A와 WMA, 휴대용 레코더와 비디오 파일의 오디오에서 압축된 WAV 파" +"일 등).이를 위해서는 [[https://manual.audacityteam.org/man/faq_opening_and_saving_files.html#foreign|FFmpeg library]]를 설치해야 합" +"니다." #: src/HelpText.cpp -msgid "You can also read our help on importing [[https://manual.audacityteam.org/man/playing_and_recording.html#midi|MIDI files]] and tracks from [[https://manual.audacityteam.org/man/faq_opening_and_saving_files.html#fromcd| audio CDs]]." -msgstr "가져오기는 [[https://manual.audacityteam.org/man/playing_and_recording.html#midi|MIDI files]] 에서, 트랙은 [[https://manual.audacityteam.org/man/faq_opening_and_saving_files.html#fromcd| audio CDs]] 에서 도움말을 읽을 수 있습니다." +msgid "" +"You can also read our help on importing [[https://manual.audacityteam.org/man/playing_and_recording.html#midi|MIDI files]] and " +"tracks from [[https://manual.audacityteam.org/man/faq_opening_and_saving_files.html#fromcd| audio CDs]]." +msgstr "" +"가져오기는 [[https://manual.audacityteam.org/man/playing_and_recording.html#midi|MIDI files]] 에서, 트랙은 [[https://manual." +"audacityteam.org/man/faq_opening_and_saving_files.html#fromcd| audio CDs]] 에서 도움말을 읽을 수 있습니다." #: src/HelpText.cpp -msgid "The Manual does not appear to be installed. Please [[*URL*|view the Manual online]].

To always view the Manual online, change \"Location of Manual\" in Interface Preferences to \"From Internet\"." -msgstr "매뉴얼이 설치되어 있지 않은 것 같습니다. [[*URL*|온라인으로 매뉴얼 보기]].

매뉴얼을 항상 온라인으로 보려면, 인터페이스 환경 설정에서 \"매뉴얼 위치\"를 \"인터넷에서\"로 바꾸세요." +msgid "" +"The Manual does not appear to be installed. Please [[*URL*|view the Manual online]].

To always view the Manual online, " +"change \"Location of Manual\" in Interface Preferences to \"From Internet\"." +msgstr "" +"매뉴얼이 설치되어 있지 않은 것 같습니다.[[*URL*|온라인으로 매뉴얼 보기]].

매뉴얼을 항상 온라인으로 보려면,인터페이스 환경 설" +"정에서 \"매뉴얼 위치\"를 \"인터넷에서\"로 바꾸세요." #: src/HelpText.cpp -msgid "The Manual does not appear to be installed. Please [[*URL*|view the Manual online]] or [[https://manual.audacityteam.org/man/unzipping_the_manual.html| download the Manual]].

To always view the Manual online, change \"Location of Manual\" in Interface Preferences to \"From Internet\"." -msgstr "매뉴얼이 설치되어 있지 않은 것 같습니다. [[*URL*|매뉴얼을 온라인으로 보거나]] [[https://manual.audacityteam.org/man/unzipping_the_manual.html|매뉴얼을 다운로드]]하세요.

매뉴얼을 항상 온라인으로 보려면, 인터페이스 환경 설정에서 \"매뉴얼 위치\"를 \"인터넷에서\"로 바꾸세요." +msgid "" +"The Manual does not appear to be installed. Please [[*URL*|view the Manual online]] or [[https://manual.audacityteam.org/man/" +"unzipping_the_manual.html| download the Manual]].

To always view the Manual online, change \"Location of Manual\" in " +"Interface Preferences to \"From Internet\"." +msgstr "" +"매뉴얼이 설치되어 있지 않은 것 같습니다. [[https://manual.audacityteam.org/|view the Manual online]][[https://manual.audacityteam." +"org/man/unzipping_the_manual.html|download the Manual]]하세요.

매뉴얼을 항상 온라인으로 보려면,인터페이스 환경 설정에서 \"매" +"뉴얼 위치\"를 \"인터넷에서\"로 바꾸세요." #: src/HelpText.cpp msgid "Check Online" @@ -3004,7 +3019,7 @@ msgstr "압축 (&C)" #: src/HistoryWindow.cpp src/ProjectFileManager.cpp #, c-format msgid "Compacting actually freed %s of disk space." -msgstr "압축을 하면 %s 저장 공간이 확보됨" +msgstr "압축을 하면 %s 저장 공간이 확보됨." #. i18n-hint: Clicking this menu item shows the various editing steps #. that have been taken. @@ -3018,8 +3033,8 @@ msgid "" "Internal error in %s at %s line %d.\n" "Please inform the Audacity team at https://forum.audacityteam.org/." msgstr "" -"내부 오류: %s에서, %s의 %d번째 줄.\n" -"오데시티 팀에게 https://forum.audacityteam.org/로 알려주세요." +"내부 오류 : %s at %s line %d.\n" +"오데시티 개발팀에 알려 주십시오. https://forum.audacityteam.org/." #: src/InconsistencyException.cpp #, c-format @@ -3027,8 +3042,8 @@ msgid "" "Internal error at %s line %d.\n" "Please inform the Audacity team at https://forum.audacityteam.org/." msgstr "" -"내부 오류: %s의 %d번째 줄.\n" -"오데시티 팀에게 https://forum.audacityteam.org/로 알려주세요." +"내부오류 at %s line %d.\n" +"오데시티 개발팀에 알려 주십시오. https://forum.audacityteam.org/." #: src/InconsistencyException.h msgid "Internal Error" @@ -3044,8 +3059,7 @@ msgid "Track" msgstr "트랙" #. i18n-hint: (noun) -#: src/LabelDialog.cpp src/commands/SetLabelCommand.cpp -#: src/menus/LabelMenus.cpp src/toolbars/TranscriptionToolBar.cpp +#: src/LabelDialog.cpp src/commands/SetLabelCommand.cpp src/menus/LabelMenus.cpp src/toolbars/TranscriptionToolBar.cpp #: src/tracks/labeltrack/ui/LabelTrackView.cpp plug-ins/equalabel.ny msgid "Label" msgstr "레이블" @@ -3106,8 +3120,7 @@ msgstr "트랙 이름을 입력하세요" #. i18n-hint: (noun) it's the name of a kind of track. #. i18n-hint: This is for screen reader software and indicates that #. this is a Label track. -#: src/LabelDialog.cpp src/LabelDialog.h src/LabelTrack.cpp -#: src/TrackPanelAx.cpp +#: src/LabelDialog.cpp src/LabelDialog.h src/LabelTrack.cpp src/TrackPanelAx.cpp msgid "Label Track" msgstr "레이블 트랙" @@ -3130,10 +3143,9 @@ msgstr "오데시티에서 사용할 언어 선택:" #: src/LangChoice.cpp #, c-format msgid "The language you have chosen, %s (%s), is not the same as the system language, %s (%s)." -msgstr "선택한 언어 %s (%s)가 시스템 언어 %s (%s)와 같지 않습니다." +msgstr "선택한 언어 %s (%s)가시스템 언어 %s (%s)와 같지 않습니다." -#: src/LangChoice.cpp src/effects/VST/VSTEffect.cpp -#: src/widgets/FileDialog/gtk/FileDialogPrivate.cpp +#: src/LangChoice.cpp src/effects/VST/VSTEffect.cpp src/widgets/FileDialog/gtk/FileDialogPrivate.cpp msgid "Confirm" msgstr "확인" @@ -3213,16 +3225,15 @@ msgstr "오데시티 믹서 보드%s" #. i18n-hint: title of the Gain slider, used to adjust the volume #. i18n-hint: Title of the Gain slider, used to adjust the volume -#: src/MixerBoard.cpp src/menus/TrackMenus.cpp -#: src/tracks/playabletrack/wavetrack/ui/WaveTrackControls.cpp +#: src/MixerBoard.cpp src/menus/TrackMenus.cpp src/tracks/playabletrack/wavetrack/ui/WaveTrackControls.cpp #: src/tracks/playabletrack/wavetrack/ui/WaveTrackSliderHandles.cpp msgid "Gain" msgstr "게인" #. i18n-hint: title of the MIDI Velocity slider -#. i18n-hint: Title of the Velocity slider, used to adjust the volume of note tracks -#: src/MixerBoard.cpp -#: src/tracks/playabletrack/notetrack/ui/NoteTrackControls.cpp +#. i18n-hint: Title of the Velocity slider, used to adjust the volume of note +#. tracks +#: src/MixerBoard.cpp src/tracks/playabletrack/notetrack/ui/NoteTrackControls.cpp #: src/tracks/playabletrack/notetrack/ui/NoteTrackSliderHandles.cpp msgid "Velocity" msgstr "속도" @@ -3232,22 +3243,19 @@ msgid "Musical Instrument" msgstr "악기" #. i18n-hint: Title of the Pan slider, used to move the sound left or right -#: src/MixerBoard.cpp src/menus/TrackMenus.cpp -#: src/tracks/playabletrack/wavetrack/ui/WaveTrackControls.cpp +#: src/MixerBoard.cpp src/menus/TrackMenus.cpp src/tracks/playabletrack/wavetrack/ui/WaveTrackControls.cpp #: src/tracks/playabletrack/wavetrack/ui/WaveTrackSliderHandles.cpp msgid "Pan" msgstr "팬" #. i18n-hint: This is on a button that will silence this track. -#: src/MixerBoard.cpp src/commands/SetTrackInfoCommand.cpp -#: src/tracks/playabletrack/ui/PlayableTrackButtonHandles.cpp +#: src/MixerBoard.cpp src/commands/SetTrackInfoCommand.cpp src/tracks/playabletrack/ui/PlayableTrackButtonHandles.cpp #: src/tracks/playabletrack/ui/PlayableTrackControls.cpp msgid "Mute" msgstr "음소거" #. i18n-hint: This is on a button that will silence all the other tracks. -#: src/MixerBoard.cpp src/commands/SetTrackInfoCommand.cpp -#: src/tracks/playabletrack/ui/PlayableTrackButtonHandles.cpp +#: src/MixerBoard.cpp src/commands/SetTrackInfoCommand.cpp src/tracks/playabletrack/ui/PlayableTrackButtonHandles.cpp #: src/tracks/playabletrack/ui/PlayableTrackControls.cpp msgid "Solo" msgstr "독주" @@ -3256,18 +3264,15 @@ msgstr "독주" msgid "Signal Level Meter" msgstr "신호 레벨 미터" -#: src/MixerBoard.cpp -#: src/tracks/playabletrack/wavetrack/ui/WaveTrackSliderHandles.cpp +#: src/MixerBoard.cpp src/tracks/playabletrack/wavetrack/ui/WaveTrackSliderHandles.cpp msgid "Moved gain slider" msgstr "게인 슬라이더를 이동했습니다" -#: src/MixerBoard.cpp -#: src/tracks/playabletrack/notetrack/ui/NoteTrackSliderHandles.cpp +#: src/MixerBoard.cpp src/tracks/playabletrack/notetrack/ui/NoteTrackSliderHandles.cpp msgid "Moved velocity slider" msgstr "속도 슬라이더를 이동했습니다" -#: src/MixerBoard.cpp -#: src/tracks/playabletrack/wavetrack/ui/WaveTrackSliderHandles.cpp +#: src/MixerBoard.cpp src/tracks/playabletrack/wavetrack/ui/WaveTrackSliderHandles.cpp msgid "Moved pan slider" msgstr "팬 슬라이더를 이동했습니다" @@ -3336,15 +3341,14 @@ msgid "" msgstr "" "\n" "\n" -"신뢰하는 소스의 모듈만 사용합니다" +"믿을 수 있는 모듈만 사용하기 바랍니다" -#: src/ModuleManager.cpp src/TimerRecordDialog.cpp plug-ins/delay.ny -#: plug-ins/equalabel.ny plug-ins/limiter.ny plug-ins/sample-data-export.ny +#: src/ModuleManager.cpp src/TimerRecordDialog.cpp plug-ins/delay.ny plug-ins/equalabel.ny plug-ins/limiter.ny +#: plug-ins/sample-data-export.ny msgid "Yes" msgstr "예" -#: src/ModuleManager.cpp src/TimerRecordDialog.cpp plug-ins/delay.ny -#: plug-ins/equalabel.ny plug-ins/limiter.ny +#: src/ModuleManager.cpp src/TimerRecordDialog.cpp plug-ins/delay.ny plug-ins/equalabel.ny plug-ins/limiter.ny msgid "No" msgstr "아니요" @@ -3458,27 +3462,32 @@ msgstr "A♭" msgid "B♭" msgstr "B♭" -#. i18n-hint: Two, alternate names of a musical note in the 12-tone chromatic scale +#. i18n-hint: Two, alternate names of a musical note in the 12-tone chromatic +#. scale #: src/PitchName.cpp msgid "C♯/D♭" msgstr "C♯/D♭" -#. i18n-hint: Two, alternate names of a musical note in the 12-tone chromatic scale +#. i18n-hint: Two, alternate names of a musical note in the 12-tone chromatic +#. scale #: src/PitchName.cpp msgid "D♯/E♭" msgstr "D♯/E♭" -#. i18n-hint: Two, alternate names of a musical note in the 12-tone chromatic scale +#. i18n-hint: Two, alternate names of a musical note in the 12-tone chromatic +#. scale #: src/PitchName.cpp msgid "F♯/G♭" msgstr "F♯/G♭" -#. i18n-hint: Two, alternate names of a musical note in the 12-tone chromatic scale +#. i18n-hint: Two, alternate names of a musical note in the 12-tone chromatic +#. scale #: src/PitchName.cpp msgid "G♯/A♭" msgstr "G♯/A♭" -#. i18n-hint: Two, alternate names of a musical note in the 12-tone chromatic scale +#. i18n-hint: Two, alternate names of a musical note in the 12-tone chromatic +#. scale #: src/PitchName.cpp msgid "A♯/B♭" msgstr "A♯/B♭" @@ -3619,7 +3628,7 @@ msgstr "" msgctxt "plug-ins" msgid "Enable this plug-in?\n" msgid_plural "Enable these plug-ins?\n" -msgstr[0] "이 플러그인들을 활성화?\n" +msgstr[0] "이 플러그인을 활성화할까요?\n" #: src/PluginManager.cpp msgid "Enable new plug-ins" @@ -3643,7 +3652,10 @@ msgid "" "There is very little free disk space left on %s\n" "Please select a bigger temporary directory location in\n" "Directories Preferences." -msgstr "%s에 사용할 수 있는 공간이 거의 남아 있지 않습니다.좀더 가용 공간이 큰 곳에 임시 저장 공간을 지정하세요.디렉토리 환경설정 매뉴" +msgstr "" +"%s에 사용할 수 있는 공간이 거의 남아 있지 않습니다. \n" +"남은 저장 공간이 큰 곳에 임시 저장 공간을 지정하세요. \n" +"환경설정 > 디렉토리." #: src/ProjectAudioManager.cpp #, c-format @@ -3660,7 +3672,7 @@ msgstr "" #: src/ProjectAudioManager.cpp src/menus/TransportMenus.cpp msgid "The tracks selected for recording must all have the same sampling rate" -msgstr "녹음을 위해 선택된 트랙은 모두 같은 샘플링 비율을 갖고 있어야 합니다." +msgstr "녹음을 위해 선택된 트랙은 모두 같은 샘플링 비율을 갖고 있어야 합니다" #: src/ProjectAudioManager.cpp src/menus/TransportMenus.cpp msgid "Mismatched Sampling Rates" @@ -3682,7 +3694,7 @@ msgstr "선택된 트랙의 수가 너무 적음" #: src/ProjectAudioManager.cpp msgid "Recorded Audio" -msgstr "오디오를 녹음 했습니다" +msgstr "녹음된 오디오" #: src/ProjectAudioManager.cpp src/toolbars/ControlToolBar.cpp msgid "Record" @@ -3729,16 +3741,20 @@ msgid "Close project immediately with no changes" msgstr "내용 변경 없이 프로젝트 즉시 닫기" #: src/ProjectFSCK.cpp -msgid "Continue with repairs noted in log, and check for more errors. This will save the project in its current state, unless you \"Close project immediately\" on further error alerts." -msgstr "로그에 기록된 복구 내용으로 계속하시고, 추가 오류를 확인하세요. 추가 오류 경고시에 \"프로젝트 즉시 닫기\"를 하기 않는 한 현재 상태로 프로젝트를 저장할 것입니다." +msgid "" +"Continue with repairs noted in log, and check for more errors. This will save the project in its current state, unless you \"Close " +"project immediately\" on further error alerts." +msgstr "" +"로그에 기록된 복구 내용으로 계속하시고, 추가 오류를 확인하세요.추가 오류 경고시에 \"프로젝트 즉시 닫기\"를 하기 않는 한현재 상태로 " +"프로젝트를 저장할 것입니다." #: src/ProjectFSCK.cpp msgid "Warning - Problems Reading Sequence Tags" -msgstr "경고 - 시퀀스 태그를 읽는데 문제가 있습니다" +msgstr "경고 - 시퀀스 태그를 읽는 과정에서 문제" #: src/ProjectFSCK.cpp msgid "Inspecting project file data" -msgstr "프로젝트 파일 데이터 검사 중" +msgstr "프로젝트 파일 데이터 검사" #: src/ProjectFSCK.cpp #, c-format @@ -3796,13 +3812,13 @@ msgid "" "from the current audio in the project." msgstr "" "\"%s\" 폴더의 프로젝트 검사에서\n" -"%lld 누락된 별명(.auf) 블럭파일을 감지했습니다.\n" +"%lld 누락된 에일리어스(.auf) 블럭파일을 감지했습니다.\n" "오데시티는 이 파일을 프로젝트의 현재 오디오에서\n" "완전히 되살릴 수 있습니다." #: src/ProjectFSCK.cpp msgid "Regenerate alias summary files (safe and recommended)" -msgstr "별명 요약 파일을 다시 만들기 (안전, 추천함)" +msgstr "에일리어스 요약 파일을 다시 만들기 (안전, 추천함)" #: src/ProjectFSCK.cpp msgid "Fill in silence for missing display data (this session only)" @@ -3814,7 +3830,7 @@ msgstr "추가 변경 사항 없이 프로젝트 즉시 닫기" #: src/ProjectFSCK.cpp msgid "Warning - Missing Alias Summary File(s)" -msgstr "경고 - 별명 요약 파일이 없습니다" +msgstr "경고 - 에일리어스 요약 파일이 없습니다" #: src/ProjectFSCK.cpp #, c-format @@ -3879,10 +3895,9 @@ msgstr "경고 - 부모 없는 블럭 파일입니다" #. i18n-hint: This title appears on a dialog that indicates the progress #. in doing something. -#: src/ProjectFSCK.cpp src/ProjectFileIO.cpp src/UndoManager.cpp -#: src/menus/TransportMenus.cpp +#: src/ProjectFSCK.cpp src/ProjectFileIO.cpp src/UndoManager.cpp src/menus/TransportMenus.cpp msgid "Progress" -msgstr "진행" +msgstr "진행도" #: src/ProjectFSCK.cpp msgid "Cleaning up unused directories in project data" @@ -3896,7 +3911,7 @@ msgid "" msgstr "" "자동 복구 중 프로젝트 점검을 통해 파일 불일치를 발견함.\n" "\n" -"도움말 > 진단 > 로그 보기... 를 선택하세요. " +"도움말 > 진단 > 로그 보기... 를 선택하세요." #: src/ProjectFSCK.cpp msgid "Warning: Problems in Automatic Recovery" @@ -3913,7 +3928,7 @@ msgstr "[프로젝트 %02i] " #: src/ProjectFileIO.cpp msgid "Failed to open the project's database" -msgstr "프로젝트 데이터베이스를 여는데 실패했습니다." +msgstr "프로젝트 데이터베이스를 여는데 실패" #: src/ProjectFileIO.cpp #, c-format @@ -3928,11 +3943,11 @@ msgstr "" #: src/ProjectFileIO.cpp msgid "Failed to discard connection" -msgstr "연결을 끊는데 실패했습니다." +msgstr "연결을 끊는데 실패했습니다" #: src/ProjectFileIO.cpp msgid "Failed to restore connection" -msgstr "연결을 복구하는데 실패했습니다." +msgstr "연결을 복구하는데 실패했습니다" #: src/ProjectFileIO.cpp #, c-format @@ -3990,11 +4005,11 @@ msgid "" msgstr "" "이 프로젝트는 새 버전의 오데시티로 생성되었습니다.\n" "\n" -"이 프로젝트를 열기 위해서는 업그레이드를 해야 합니다. " +"이 프로젝트를 열기 위해서는 업그레이드를 해야 합니다." #: src/ProjectFileIO.cpp msgid "Unable to initialize the project file" -msgstr "프로젝트 파일을 초기화 할 수 없습니다." +msgstr "프로젝트 파일을 초기화 할 수 없습니다" #. i18n-hint: An error message. Don't translate inset or blockids. #: src/ProjectFileIO.cpp @@ -4044,7 +4059,7 @@ msgid "" "(Unable to work with the blockfiles)" msgstr "" "권한에 문제가 있음 \n" -"(블록파일에 대한 작업이 불가) " +"(블록파일에 대한 작업이 불가)" #. i18n-hint: An error message. Don't translate blockfiles. #: src/ProjectFileIO.cpp @@ -4067,7 +4082,7 @@ msgstr "" #. i18n-hint: An error message. Don't translate blockfiles. #: src/ProjectFileIO.cpp msgid "Unable to work with the blockfiles" -msgstr "블록 파일에 대한 작업을 할 수 없습니다. " +msgstr "블록 파일에 대한 작업을 할 수 없습니다" #: src/ProjectFileIO.cpp #, c-format @@ -4076,11 +4091,11 @@ msgstr "부모 없는 블록을 총 %d 지움" #: src/ProjectFileIO.cpp msgid "Failed to rollback transaction during import" -msgstr "가져오는 동안 작업을 되돌리는데 실패하였습니다." +msgstr "가져오는 동안 작업을 되돌리는데 실패" #: src/ProjectFileIO.cpp msgid "Unable to attach destination database" -msgstr "대상 데이터배이스에 연결을 할 수 없습니다." +msgstr "대상 데이터배이스에 연결을 할 수 없음" #: src/ProjectFileIO.cpp msgid "Unable to switch to fast journaling mode" @@ -4088,7 +4103,7 @@ msgstr "고속 저널링 모드로 변경할 수 없습니다" #: src/ProjectFileIO.cpp msgid "Failed to bind SQL parameter" -msgstr "SQL 패러매터에 연결을 실패하였습니다." +msgstr "SQL 패러매터에 연결을 실패" #: src/ProjectFileIO.cpp #, c-format @@ -4105,7 +4120,7 @@ msgstr "" #: src/ProjectFileIO.cpp msgid "Destination project could not be detached" -msgstr "대상 프로젝트는 연결해제 할 수 없습니다." +msgstr "대상 프로젝트는 연결해제 할 수 없습니다" #: src/ProjectFileIO.cpp msgid "Copying Project" @@ -4123,7 +4138,7 @@ msgid "" "For tips on freeing up space, click the help button." msgstr "" "오데시티가 파일을 %s에 저장을 실패하였습니다.\n" -"쓸 수 없거나 디스크가 꽉 찬 것 같습니다.저장공간을 늘리려면, 도움말 버튼을 클릭하세요" +"쓸 수 없거나 디스크가 꽉 찬 것 같습니다.저장공간을 늘리려면, 도움말 버튼을 클릭하세요." #: src/ProjectFileIO.cpp msgid "Compacting project" @@ -4138,7 +4153,7 @@ msgstr "[프로젝트 %02i] 오데시티 \"%s\"" #. i18n-hint: E.g this is recovered audio that had been lost. #: src/ProjectFileIO.cpp msgid "(Recovered)" -msgstr "(복구함)" +msgstr "(복구됨)" #. i18n-hint: %s will be replaced by the version number. #: src/ProjectFileIO.cpp @@ -4152,7 +4167,7 @@ msgstr "" #: src/ProjectFileIO.cpp msgid "Can't open project file" -msgstr "프로젝트 파일을 열 수 없습니다." +msgstr "프로젝트 파일을 열 수 없습니다" #: src/ProjectFileIO.cpp msgid "Failed to remove the autosave information from the project file." @@ -4160,11 +4175,11 @@ msgstr "이 프로젝트 파일에서 자동 저장 정보를 삭제하는데 #: src/ProjectFileIO.cpp msgid "Unable to bind to blob" -msgstr "Blob과 바인딩 할 수 없습니다. " +msgstr "Blob과 바인딩 할 수 없습니다" #: src/ProjectFileIO.cpp msgid "Unable to decode project document" -msgstr "프로젝트 문서를 디코드할 수 없습니다." +msgstr "프로젝트 문서를 디코드할 수 없습니다" #: src/ProjectFileIO.cpp msgid "Unable to parse project information." @@ -4172,7 +4187,7 @@ msgstr "프로젝트 정보를 파싱할 수 없습니다." #: src/ProjectFileIO.cpp msgid "The project's database failed to reopen, possibly because of limited space on the storage device." -msgstr "이 프로젝트의 데이터베이스를 다시 여는데 실패하였습니다. 저장 공간이 부족한 것이 원인일 수 있습니다. " +msgstr "이 프로젝트의 데이터베이스를 다시 여는데 실패하였습니다. 저장 공간이 부족한 것이 원인일 수 있습니다." #: src/ProjectFileIO.cpp msgid "Saving project" @@ -4197,7 +4212,7 @@ msgstr "" "프로젝트를 여는데 실패하였습니다. \n" "저장 장치에 공간이 부족한 것이 원인일 수 있습니다. \n" "\n" -"%s " +"%s" #: src/ProjectFileIO.cpp #, c-format @@ -4272,7 +4287,7 @@ msgstr "경고 - 빈 프로젝트입니다" #: src/ProjectFileManager.cpp msgid "Insufficient Disk Space" -msgstr "디스크 공간이 부족합니다. " +msgstr "디스크 공간이 부족" #: src/ProjectFileManager.cpp msgid "" @@ -4286,12 +4301,12 @@ msgstr "" #: src/ProjectFileManager.cpp msgid "The project exceeds the maximum size of 4GB when writing to a FAT32 formatted filesystem." -msgstr "프로젝트 크기가 FAT32에서 허용하는 4 G보다 큽니다. " +msgstr "프로젝트 크기가 FAT32에서 허용하는 4 G보다 큽니다." #: src/ProjectFileManager.cpp src/commands/ScreenshotCommand.cpp #, c-format msgid "Saved %s" -msgstr "%s을 저장완료" +msgstr "%s 저장완료" #: src/ProjectFileManager.cpp msgid "" @@ -4304,7 +4319,7 @@ msgstr "" #: src/ProjectFileManager.cpp #, c-format msgid "%sSave Project \"%s\" As..." -msgstr "%s프로젝트 \"%s\"를 다른 이름으로 저장..." +msgstr "%s 프로젝트 다른 이름으로 저장 \"%s\"..." #: src/ProjectFileManager.cpp msgid "" @@ -4326,12 +4341,12 @@ msgid "" "\"%s\"\n" " will be irreversibly overwritten." msgstr "" -"이 프로젝트를 덮어쓸까요:\n" +" 이 프로젝트를 덮어쓸까요:\n" "\"%s\"?\n" "\n" -"\"예\" the project\n" -"\"%s\"\n" -"는 완전히 덮어 써지게 됩니다." +" \"예\"를 선택하면 프로젝트\n" +"\"%s\"는\n" +" 완전히 덮어 써지게 됩니다." #. i18n-hint: Heading: A warning that a project is about to be overwritten. #: src/ProjectFileManager.cpp @@ -4370,11 +4385,11 @@ msgstr "하나 이상의 파일 선택" #: src/ProjectFileManager.cpp #, c-format msgid "%s is already open in another window." -msgstr "%s은 다른 창에 이미 열려 있습니다." +msgstr "%s는 이미 다른 창에서 열려 있습니다." #: src/ProjectFileManager.cpp src/import/ImportAUP.cpp msgid "Error Opening Project" -msgstr "프로젝트 여는 중 오류" +msgstr "프로젝트 열기 오류" #: src/ProjectFileManager.cpp msgid "" @@ -4444,11 +4459,11 @@ msgstr "프로젝트 가져오기 실패" #: src/ProjectFileManager.cpp msgid "Error Importing" -msgstr "가져오기 중 오류" +msgstr "가져오기 오류" #: src/ProjectFileManager.cpp msgid "Cannot import AUP3 format. Use File > Open instead" -msgstr "AUP3 포맷을 가져올 수 없습니다. 파일>열기 사용하십시오. " +msgstr "AUP3 포맷을 가져올 수 없습니다. 파일 > 열기 사용하십시오" #: src/ProjectFileManager.cpp msgid "Compact Project" @@ -4461,7 +4476,8 @@ msgid "" "\n" "There is %s of free disk space and this project is currently using %s.\n" "\n" -"If you proceed, the current Undo/Redo History and clipboard contents will be discarded and you will recover approximately %s of disk space.\n" +"If you proceed, the current Undo/Redo History and clipboard contents will be discarded and you will recover approximately %s of " +"disk space.\n" "\n" "Do you want to continue?" msgstr "" @@ -4486,14 +4502,15 @@ msgstr "새 프로젝트를 만들었습니다" #: src/ProjectHistory.cpp msgid "Automatic database backup failed." -msgstr "자동 데이터베이스 백업 실패" +msgstr "자동 데이터베이스 백업 실패." #: src/ProjectManager.cpp #, c-format msgid "Welcome to Audacity version %s" msgstr "오데시티 %s 버전 사용을 환영합니다" -#. i18n-hint: The first %s numbers the project, the second %s is the project name. +#. i18n-hint: The first %s numbers the project, the second %s is the project +#. name. #: src/ProjectManager.cpp #, c-format msgid "%sSave changes to %s?" @@ -4532,13 +4549,13 @@ msgstr "1분 이내" #, c-format msgid "%d hour" msgid_plural "%d hours" -msgstr[0] "%d시간" +msgstr[0] "%d 시간" #: src/ProjectManager.cpp #, c-format msgid "%d minute" msgid_plural "%d minutes" -msgstr[0] "%d분" +msgstr[0] "%d 분" #. i18n-hint: A time in hours and minutes. Only translate the "and". #: src/ProjectManager.cpp @@ -4551,8 +4568,8 @@ msgid "" "This recovery file was saved by Audacity 2.3.0 or before.\n" "You need to run that version of Audacity to recover the project." msgstr "" -"이 복구파일은 오데시티 2.3.0 또는 그 이전 버전에 의해 저장되었습니다.\n" -"이 프로젝트를 열려면 그 버전의 오데시티를 실행시켜야합니다." +"이 복구 파일은 Audacity 2.3.0 또는 이전 파일에서 저장된 것입니다.\n" +"이 프로젝트를 복구하려면 해당 버전을 설치해야 합니다." #. i18n-hint: This is an experimental feature where the main panel in #. Audacity is put on a notebook tab, and this is the name on that tab. @@ -4572,17 +4589,17 @@ msgstr "수직 스크롤바" #: src/Registry.cpp #, c-format msgid "Plug-in group at %s was merged with a previously defined group" -msgstr "%s 에 있는 플러그인 그룹은 이전에 정의된 그룹에 합병 됨. " +msgstr "%s 에 있는 플러그인 그룹은 이전에 정의된 그룹에 병합" #: src/Registry.cpp #, c-format msgid "Plug-in item at %s conflicts with a previously defined item and was discarded" -msgstr "%s 에 있는 플러그인의 아이템이 이전에 정의된 아이템과 중복되어 무시됨 " +msgstr "%s 에 있는 플러그인의 아이템이이전에 정의된 아이템과 중복되어 무시됨" #: src/Registry.cpp #, c-format msgid "Plug-in items at %s specify conflicting placements" -msgstr "%s 에 있는 플러그 항목은 충돌하는 위치를 지정함 " +msgstr "%s 에 있는 플러그 항목은 충돌하는 위치를 지정함" #: src/Resample.cpp msgid "Low Quality (Fastest)" @@ -4685,7 +4702,7 @@ msgstr "프로젝트 창 일부분 캡처" #: src/Screenshot.cpp msgid "All Toolbars" -msgstr "모든 도구모음 " +msgstr "모든 도구모음" #: src/Screenshot.cpp msgid "All Effects" @@ -4697,14 +4714,13 @@ msgstr "전체 스크립터블" #: src/Screenshot.cpp msgid "All Preferences" -msgstr "모든 환경 설정" +msgstr "모든 환경설정" #: src/Screenshot.cpp msgid "SelectionBar" msgstr "선택 막대" -#: src/Screenshot.cpp src/commands/ScreenshotCommand.cpp -#: src/toolbars/SpectralSelectionBar.cpp +#: src/Screenshot.cpp src/commands/ScreenshotCommand.cpp src/toolbars/SpectralSelectionBar.cpp msgid "Spectral Selection" msgstr "스펙트럼 선택" @@ -4712,56 +4728,47 @@ msgstr "스펙트럼 선택" msgid "Timer" msgstr "타이머" -#: src/Screenshot.cpp src/commands/ScreenshotCommand.cpp -#: src/toolbars/ToolsToolBar.cpp +#: src/Screenshot.cpp src/commands/ScreenshotCommand.cpp src/toolbars/ToolsToolBar.cpp msgid "Tools" msgstr "도구" -#: src/Screenshot.cpp src/commands/ScreenshotCommand.cpp -#: src/toolbars/ControlToolBar.cpp +#: src/Screenshot.cpp src/commands/ScreenshotCommand.cpp src/toolbars/ControlToolBar.cpp msgid "Transport" msgstr "전송" -#: src/Screenshot.cpp src/commands/ScreenshotCommand.cpp -#: src/toolbars/MixerToolBar.cpp +#: src/Screenshot.cpp src/commands/ScreenshotCommand.cpp src/toolbars/MixerToolBar.cpp msgid "Mixer" msgstr "믹서" #. i18n-hint: Noun (the meter is used for playback or record level monitoring) -#: src/Screenshot.cpp src/commands/ScreenshotCommand.cpp -#: src/toolbars/MeterToolBar.cpp src/widgets/Meter.cpp +#: src/Screenshot.cpp src/commands/ScreenshotCommand.cpp src/toolbars/MeterToolBar.cpp src/widgets/Meter.cpp msgid "Meter" msgstr "미터" #. i18n-hint: (noun) The meter that shows the loudness of the audio playing. -#: src/Screenshot.cpp src/commands/ScreenshotCommand.cpp -#: src/toolbars/MeterToolBar.cpp +#: src/Screenshot.cpp src/commands/ScreenshotCommand.cpp src/toolbars/MeterToolBar.cpp msgid "Play Meter" msgstr "재생 미터" -#. i18n-hint: (noun) The meter that shows the loudness of the audio being recorded. -#: src/Screenshot.cpp src/commands/ScreenshotCommand.cpp -#: src/toolbars/MeterToolBar.cpp +#. i18n-hint: (noun) The meter that shows the loudness of the audio being +#. recorded. +#: src/Screenshot.cpp src/commands/ScreenshotCommand.cpp src/toolbars/MeterToolBar.cpp msgid "Record Meter" msgstr "녹음 미터" -#: src/Screenshot.cpp src/commands/ScreenshotCommand.cpp -#: src/toolbars/EditToolBar.cpp +#: src/Screenshot.cpp src/commands/ScreenshotCommand.cpp src/toolbars/EditToolBar.cpp msgid "Edit" msgstr "편집" -#: src/Screenshot.cpp src/commands/ScreenshotCommand.cpp -#: src/prefs/DevicePrefs.h src/toolbars/DeviceToolBar.cpp +#: src/Screenshot.cpp src/commands/ScreenshotCommand.cpp src/prefs/DevicePrefs.h src/toolbars/DeviceToolBar.cpp msgid "Device" msgstr "장치" -#: src/Screenshot.cpp src/commands/ScreenshotCommand.cpp -#: src/toolbars/TranscriptionToolBar.cpp +#: src/Screenshot.cpp src/commands/ScreenshotCommand.cpp src/toolbars/TranscriptionToolBar.cpp msgid "Play-at-Speed" msgstr "재생 속도" -#: src/Screenshot.cpp src/commands/ScreenshotCommand.cpp -#: src/toolbars/ScrubbingToolBar.cpp +#: src/Screenshot.cpp src/commands/ScreenshotCommand.cpp src/toolbars/ScrubbingToolBar.cpp msgid "Scrub" msgstr "스크러빙" @@ -4774,12 +4781,11 @@ msgid "Ruler" msgstr "눈금자" #. i18n-hint: "Tracks" include audio recordings but also other collections of -#. * data associated with a time line, such as sequences of labels, and musical +#. * data associated with a time line, such as sequences of labels, and +#. musical #. * notes -#: src/Screenshot.cpp src/commands/GetInfoCommand.cpp -#: src/commands/GetTrackInfoCommand.cpp src/commands/ScreenshotCommand.cpp -#: src/export/ExportMultiple.cpp src/prefs/TracksPrefs.cpp -#: src/prefs/TracksPrefs.h +#: src/Screenshot.cpp src/commands/GetInfoCommand.cpp src/commands/GetTrackInfoCommand.cpp src/commands/ScreenshotCommand.cpp +#: src/export/ExportMultiple.cpp src/prefs/TracksPrefs.cpp src/prefs/TracksPrefs.h msgid "Tracks" msgstr "트랙들" @@ -5018,7 +5024,7 @@ msgid "" "Resetting to default location." msgstr "" "임시 저장 디렉토리가 FAT로 포매팅된 드라이임.\n" -"디폴트 위치로 되돌림" +"디폴트 위치로 되돌림." #: src/TempDirectory.cpp #, c-format @@ -5029,7 +5035,7 @@ msgid "" msgstr "" "%s\n" "\n" -"적당한 드라이브에 대한 정보를 얻으려면 도움말 버튼을 클릭하세요. " +"적당한 드라이브에 대한 정보를 얻으려면 도움말 버튼을 클릭하세요." #: src/Theme.cpp #, c-format @@ -5041,7 +5047,8 @@ msgstr "" " %s." #. i18n-hint: A theme is a consistent visual style across an application's -#. graphical user interface, including choices of colors, and similarity of images +#. graphical user interface, including choices of colors, and similarity of +#. images #. such as those on button controls. Audacity can load and save alternative #. themes. #: src/Theme.cpp @@ -5071,7 +5078,7 @@ msgid "" " %s." msgstr "" "오데시티에서 이미지를 파일에 쓸 수 없습니다:\n" -" %s" +" %s." #. i18n-hint "Cee" means the C computer programming language #: src/Theme.cpp @@ -5123,7 +5130,7 @@ msgid "" msgstr "" "다음에서 기대하던 테마 구성요소 파일을\n" "찾지 못했습니다:\n" -" %s" +" %s." #: src/Theme.cpp #, c-format @@ -5179,18 +5186,20 @@ msgstr "높은 대비" msgid "Custom" msgstr "사용자 정의" -#. i18n-hint: This string is used to configure the controls which shows the recording -#. * duration. As such it is important that only the alphabetic parts of the string +#. i18n-hint: This string is used to configure the controls which shows the +#. recording +#. * duration. As such it is important that only the alphabetic parts of the +#. string #. * are translated, with the numbers left exactly as they are. -#. * The string 'days' indicates that the first number in the control will be the number of days, -#. * then the 'h' indicates the second number displayed is hours, the 'm' indicates the third -#. * number displayed is minutes, and the 's' indicates that the fourth number displayed is +#. * The string 'days' indicates that the first number in the control will be +#. the number of days, +#. * then the 'h' indicates the second number displayed is hours, the 'm' +#. indicates the third +#. * number displayed is minutes, and the 's' indicates that the fourth number +#. displayed is #. * seconds. -#. -#: src/TimeDialog.h src/TimerRecordDialog.cpp src/effects/DtmfGen.cpp -#: src/effects/Noise.cpp src/effects/Silence.cpp src/effects/ToneGen.cpp -#: src/effects/VST/VSTEffect.cpp src/effects/ladspa/LadspaEffect.cpp -#: src/effects/lv2/LV2Effect.cpp +#: src/TimeDialog.h src/TimerRecordDialog.cpp src/effects/DtmfGen.cpp src/effects/Noise.cpp src/effects/Silence.cpp +#: src/effects/ToneGen.cpp src/effects/VST/VSTEffect.cpp src/effects/ladspa/LadspaEffect.cpp src/effects/lv2/LV2Effect.cpp msgid "Duration" msgstr "지속 시간" @@ -5275,8 +5284,7 @@ msgstr "현재 프로젝트" msgid "Recording start:" msgstr "녹음 시작:" -#: src/TimerRecordDialog.cpp src/effects/VST/VSTEffect.cpp -#: src/effects/ladspa/LadspaEffect.cpp +#: src/TimerRecordDialog.cpp src/effects/VST/VSTEffect.cpp src/effects/ladspa/LadspaEffect.cpp msgid "Duration:" msgstr "지속 시간:" @@ -5388,12 +5396,15 @@ msgstr "099시 060분 060초" msgid "099 days 024 h 060 m 060 s" msgstr "099일 024시 060분 060초" -#. i18n-hint: This string is used to configure the controls for times when the recording is -#. * started and stopped. As such it is important that only the alphabetic parts of the string +#. i18n-hint: This string is used to configure the controls for times when the +#. recording is +#. * started and stopped. As such it is important that only the alphabetic +#. parts of the string #. * are translated, with the numbers left exactly as they are. -#. * The 'h' indicates the first number displayed is hours, the 'm' indicates the second number -#. * displayed is minutes, and the 's' indicates that the third number displayed is seconds. -#. +#. * The 'h' indicates the first number displayed is hours, the 'm' indicates +#. the second number +#. * displayed is minutes, and the 's' indicates that the third number +#. displayed is seconds. #: src/TimerRecordDialog.cpp msgid "Start Date and Time" msgstr "시작 날짜 및 시간" @@ -5438,8 +5449,7 @@ msgstr "자동 내보내기를 사용할까요?(&E)" msgid "Export Project As:" msgstr "다른 이름으로 프로젝트 내보내기:" -#: src/TimerRecordDialog.cpp src/prefs/GUIPrefs.cpp src/prefs/PlaybackPrefs.cpp -#: src/prefs/RecordingPrefs.cpp +#: src/TimerRecordDialog.cpp src/prefs/GUIPrefs.cpp src/prefs/PlaybackPrefs.cpp src/prefs/RecordingPrefs.cpp msgid "Options" msgstr "옵션" @@ -5491,7 +5501,7 @@ msgstr "녹음이 시작될 것입니다:" #: src/TimerRecordDialog.cpp #, c-format msgid "%s in:" -msgstr " %s in:" +msgstr "%s in:" #: src/TimerRecordDialog.cpp msgid "Recording Saved:" @@ -5535,13 +5545,13 @@ msgstr " 음소거" #. this track is soloed. (The Solo button is on.) #: src/TrackPanelAx.cpp msgid " Soloed" -msgstr "솔로" +msgstr " 솔로" #. i18n-hint: This is for screen reader software and indicates that #. this track is selected. #: src/TrackPanelAx.cpp msgid " Selected" -msgstr "선택됨" +msgstr " 선택됨" #. i18n-hint: This is for screen reader software and indicates that #. this track is shown with a sync-locked icon. @@ -5549,7 +5559,7 @@ msgstr "선택됨" #. if present, Jaws reads it as "dash". #: src/TrackPanelAx.cpp msgid " Sync Locked" -msgstr "동기화 잠김" +msgstr " 동기화 잠김" #: src/TrackPanelAx.cpp msgid " Mute On" @@ -5565,7 +5575,7 @@ msgstr " 선택 On" #: src/TrackPanelResizeHandle.cpp msgid "Click and drag to adjust relative size of stereo tracks, double-click to make heights equal" -msgstr "스테레오 트랙에 대한 상대적인 위치를 조정하려면 클릭 후 드래그 하고, 높이를 같도록 만드려면 더블 클릭" +msgstr "스테레오 트랙에 대한 상대적인 위치를 조정하려면 클릭 후 드래그 하고,높이를 같도록 만드려면 더블 클릭" #: src/TrackPanelResizeHandle.cpp msgid "Click and drag to resize the track." @@ -5645,7 +5655,8 @@ msgstr "선택이 너무 작아서 음성 키를 사용할 수 없습니다." msgid "Calibration Results\n" msgstr "캘리브레이션 결과\n" -#. i18n-hint: %1.4f is replaced by a number. sd stands for 'Standard Deviations' +#. i18n-hint: %1.4f is replaced by a number. sd stands for 'Standard +#. Deviations' #: src/VoiceKey.cpp #, c-format msgid "Energy -- mean: %1.4f sd: (%1.4f)\n" @@ -5682,8 +5693,7 @@ msgstr "잘라내기 선을 확장하는데 필요한 공간이 부족합니다" msgid "This operation cannot be done until importation of %s completes." msgstr "%s 가져오기가 끝날 때까지 이 동작을 수행할 수 없습니다." -#: src/commands/AudacityCommand.cpp src/effects/Effect.cpp -#: src/effects/nyquist/Nyquist.cpp src/prefs/PrefsPanel.cpp plug-ins/beat.ny +#: src/commands/AudacityCommand.cpp src/effects/Effect.cpp src/effects/nyquist/Nyquist.cpp src/prefs/PrefsPanel.cpp plug-ins/beat.ny msgid "Audacity" msgstr "오데시티" @@ -5701,13 +5711,12 @@ msgstr "" #: src/commands/AudacityCommand.cpp src/effects/Effect.cpp #, c-format msgid "Applying %s..." -msgstr "%s 적용..." +msgstr "적용 중 %s..." -#. i18n-hint: An item name followed by a value, with appropriate separating punctuation -#: src/commands/AudacityCommand.cpp src/effects/Effect.cpp -#: src/effects/vamp/VampEffect.cpp src/menus/PluginMenus.cpp -#: src/tracks/playabletrack/notetrack/ui/NoteTrackSliderHandles.cpp -#: src/tracks/playabletrack/wavetrack/ui/WaveTrackSliderHandles.cpp +#. i18n-hint: An item name followed by a value, with appropriate separating +#. punctuation +#: src/commands/AudacityCommand.cpp src/effects/Effect.cpp src/effects/vamp/VampEffect.cpp src/menus/PluginMenus.cpp +#: src/tracks/playabletrack/notetrack/ui/NoteTrackSliderHandles.cpp src/tracks/playabletrack/wavetrack/ui/WaveTrackSliderHandles.cpp #: src/widgets/ASlider.cpp #, c-format msgid "%s: %s" @@ -5731,15 +5740,13 @@ msgstr "%s 는 %s에서 파라메터로 사용할 수 없음" msgid "Invalid value for parameter '%s': should be %s" msgstr "파라메터 '%s' 에 대해 잘못된 값이 입력됨: %s 이어야 함" -#: src/commands/CommandManager.cpp src/prefs/MousePrefs.cpp -#: src/widgets/KeyView.cpp +#: src/commands/CommandManager.cpp src/prefs/MousePrefs.cpp src/widgets/KeyView.cpp msgid "Command" msgstr "명령" #. i18n-hint: %s will be the name of the effect which will be #. * repeated if this menu item is chosen -#: src/commands/CommandManager.cpp src/effects/EffectUI.cpp -#: src/menus/PluginMenus.cpp +#: src/commands/CommandManager.cpp src/effects/EffectUI.cpp src/menus/PluginMenus.cpp #, c-format msgid "Repeat %s" msgstr "%s 반복하기" @@ -5754,8 +5761,12 @@ msgstr "" "* %s, 왜냐하면 %s 을 단축키 %s 에 이미 지정됨" #: src/commands/CommandManager.cpp -msgid "The following commands have had their shortcuts removed, because their default shortcut is new or changed, and is the same shortcut that you have assigned to another command." -msgstr "다음 명령에 대한 단축키는 삭제되었습니다. 그 이유는 단축키의 기본값이 새롭게 정의되거나 변경되었고, 같은 단축키에 다른 명령을 지정하였기 때문입니다. " +msgid "" +"The following commands have had their shortcuts removed, because their default shortcut is new or changed, and is the same " +"shortcut that you have assigned to another command." +msgstr "" +"다음 명령에 대한 단축키는 삭제되었습니다. 그 이유는 단축키의 기본값새롭게 정의되거나 변경되었고, 같은 단축키에 다른 명령을 지정하였" +"기 때문입니다." #: src/commands/CommandManager.cpp msgid "Shortcuts have been removed" @@ -5797,8 +5808,7 @@ msgstr "드래그" msgid "Panel" msgstr "패널" -#: src/commands/DragCommand.cpp src/prefs/ApplicationPrefs.cpp -#: src/update/UpdateNoticeDialog.cpp +#: src/commands/DragCommand.cpp src/prefs/ApplicationPrefs.cpp src/update/UpdateNoticeDialog.cpp msgid "Application" msgstr "응용" @@ -5821,23 +5831,23 @@ msgstr "윈도우 이름:" #: src/commands/DragCommand.cpp msgid "From X:" -msgstr "X부터:" +msgstr "X 시작값:" #: src/commands/DragCommand.cpp msgid "From Y:" -msgstr "Y부터:" +msgstr "Y 시작값:" #: src/commands/DragCommand.cpp msgid "To X:" -msgstr "X까지:" +msgstr "X 종료값:" #: src/commands/DragCommand.cpp msgid "To Y:" -msgstr "Y까지:" +msgstr "Y 종료값:" #: src/commands/DragCommand.cpp src/commands/SelectCommand.cpp msgid "Relative To:" -msgstr "상대적:" +msgstr "상대위치:" #: src/commands/DragCommand.h msgid "Drags mouse from one place to another." @@ -5857,7 +5867,7 @@ msgstr "메뉴" #: src/commands/GetInfoCommand.cpp src/commands/ScreenshotCommand.cpp msgid "Preferences" -msgstr "환경 설정" +msgstr "환경설정" #: src/commands/GetInfoCommand.cpp src/commands/GetTrackInfoCommand.cpp msgid "Clips" @@ -5867,8 +5877,7 @@ msgstr "클립" msgid "Envelopes" msgstr "포락선" -#: src/commands/GetInfoCommand.cpp src/commands/GetTrackInfoCommand.cpp -#: src/export/ExportMultiple.cpp +#: src/commands/GetInfoCommand.cpp src/commands/GetTrackInfoCommand.cpp src/export/ExportMultiple.cpp msgid "Labels" msgstr "레이블" @@ -5894,8 +5903,7 @@ msgstr "간단히" msgid "Type:" msgstr "형식:" -#: src/commands/GetInfoCommand.cpp src/commands/HelpCommand.cpp -#: src/export/ExportFFmpegDialogs.cpp src/export/ExportMultiple.cpp +#: src/commands/GetInfoCommand.cpp src/commands/HelpCommand.cpp src/export/ExportFFmpegDialogs.cpp src/export/ExportMultiple.cpp msgid "Format:" msgstr "형식:" @@ -5933,7 +5941,7 @@ msgstr "명령의 도움말을 줍니다." #: src/commands/HelpCommand.h msgid "For comments in a macro." -msgstr "매크로 내의 주석을 이용" +msgstr "매크로 내의 주석을 이용." #: src/commands/ImportExportCommands.cpp msgid "Import2" @@ -5963,10 +5971,8 @@ msgstr "파일을 내보냅니다." msgid "Builtin Commands" msgstr "내장 명령" -#: src/commands/LoadCommands.cpp src/effects/LoadEffects.cpp -#: src/effects/VST/VSTEffect.cpp src/effects/audiounits/AudioUnitEffect.cpp -#: src/effects/ladspa/LadspaEffect.cpp src/effects/lv2/LoadLV2.cpp -#: src/effects/nyquist/LoadNyquist.cpp src/effects/vamp/LoadVamp.cpp +#: src/commands/LoadCommands.cpp src/effects/LoadEffects.cpp src/effects/VST/VSTEffect.cpp src/effects/audiounits/AudioUnitEffect.cpp +#: src/effects/ladspa/LadspaEffect.cpp src/effects/lv2/LoadLV2.cpp src/effects/nyquist/LoadNyquist.cpp src/effects/vamp/LoadVamp.cpp msgid "The Audacity Team" msgstr "오데시티 팀" @@ -6016,34 +6022,32 @@ msgstr "프로젝트 열기." #: src/commands/OpenSaveCommands.h msgid "Saves a project." -msgstr "프로젝트를 저장합니다." +msgstr "프로젝트 저장." #: src/commands/OpenSaveCommands.h msgid "Saves a copy of current project." -msgstr "현재 ㅍ로젝트의 사본을 저장" +msgstr "현재 ㅍ로젝트의 사본을 저장." #: src/commands/OpenSaveCommands.h msgid "Saves the log contents." -msgstr "로그 내용을 저장" +msgstr "로그 내용을 저장." #: src/commands/OpenSaveCommands.h msgid "Clears the log contents." -msgstr "로그 내용을 지우기" +msgstr "로그 내용을 지우기." #: src/commands/PreferenceCommands.cpp msgid "Get Preference" -msgstr "환경 설정 가져오기" +msgstr "환경설정 가져오기" -#: src/commands/PreferenceCommands.cpp src/commands/SetProjectCommand.cpp -#: src/commands/SetTrackInfoCommand.cpp -#: src/tracks/labeltrack/ui/LabelTrackView.cpp -#: src/tracks/ui/CommonTrackControls.cpp +#: src/commands/PreferenceCommands.cpp src/commands/SetProjectCommand.cpp src/commands/SetTrackInfoCommand.cpp +#: src/tracks/labeltrack/ui/LabelTrackView.cpp src/tracks/ui/CommonTrackControls.cpp msgid "Name:" msgstr "이름:" #: src/commands/PreferenceCommands.cpp msgid "Set Preference" -msgstr "환경 설정" +msgstr "환경설정" #: src/commands/PreferenceCommands.cpp src/commands/SetEnvelopeCommand.cpp msgid "Value:" @@ -6055,11 +6059,11 @@ msgstr "다시 읽기" #: src/commands/PreferenceCommands.h msgid "Gets the value of a single preference." -msgstr "단일 환경 설정의 값을 가져옵니다." +msgstr "환경설정 값 하나를 가져옵니다." #: src/commands/PreferenceCommands.h msgid "Sets the value of a single preference." -msgstr "단일 환경 설정의 값을 설정합니다." +msgstr "환경설정 값 하나를 설정합니다." #: src/commands/ScreenshotCommand.cpp msgid "Screenshot" @@ -6085,8 +6089,7 @@ msgstr "전체화면" msgid "Toolbars" msgstr "도구모음" -#: src/commands/ScreenshotCommand.cpp src/prefs/EffectsPrefs.cpp -#: src/prefs/EffectsPrefs.h +#: src/commands/ScreenshotCommand.cpp src/prefs/EffectsPrefs.cpp src/prefs/EffectsPrefs.h msgid "Effects" msgstr "효과" @@ -6138,7 +6141,7 @@ msgstr "파랑" #: src/commands/ScreenshotCommand.cpp msgctxt "color" msgid "White" -msgstr "화이트" +msgstr "흰색" #: src/commands/ScreenshotCommand.cpp msgid "Path:" @@ -6226,8 +6229,7 @@ msgstr "설정" msgid "Add" msgstr "추가" -#: src/commands/SelectCommand.cpp src/effects/EffectUI.cpp -#: src/tracks/playabletrack/wavetrack/ui/CutlineHandle.cpp +#: src/commands/SelectCommand.cpp src/effects/EffectUI.cpp src/tracks/playabletrack/wavetrack/ui/CutlineHandle.cpp msgid "Remove" msgstr "제거" @@ -6312,8 +6314,7 @@ msgid "Edited Envelope" msgstr "편집된 포락선" #. i18n-hint: The envelope is a curve that controls the audio loudness. -#: src/commands/SetEnvelopeCommand.cpp src/prefs/MousePrefs.cpp -#: src/tracks/ui/EnvelopeHandle.cpp +#: src/commands/SetEnvelopeCommand.cpp src/prefs/MousePrefs.cpp src/tracks/ui/EnvelopeHandle.cpp msgid "Envelope" msgstr "포락선" @@ -6413,10 +6414,8 @@ msgstr "팬:" msgid "Set Track Visuals" msgstr "트랙 가시화 설정" -#: src/commands/SetTrackInfoCommand.cpp src/effects/ToneGen.cpp -#: src/prefs/SpectrogramSettings.cpp src/prefs/TracksPrefs.cpp -#: src/prefs/WaveformSettings.cpp src/widgets/Meter.cpp -#: plug-ins/sample-data-export.ny +#: src/commands/SetTrackInfoCommand.cpp src/effects/ToneGen.cpp src/prefs/SpectrogramSettings.cpp src/prefs/TracksPrefs.cpp +#: src/prefs/WaveformSettings.cpp src/widgets/Meter.cpp plug-ins/sample-data-export.ny msgid "Linear" msgstr "Linear (선형)" @@ -6464,7 +6463,7 @@ msgstr "스펙트럼 선택" #: src/commands/SetTrackInfoCommand.cpp src/prefs/SpectrumPrefs.cpp msgctxt "spectrum prefs" msgid "Sche&me" -msgstr "스킴(&M)" +msgstr "스킴 (&M)" #: src/commands/SetTrackInfoCommand.cpp msgid "Set Track" @@ -6500,25 +6499,28 @@ msgstr "클리핑 허용" #: src/effects/AutoDuck.cpp msgid "Auto Duck" -msgstr "오토 덕" +msgstr "자동 더킹" #: src/effects/AutoDuck.cpp -msgid "Reduces (ducks) the volume of one or more tracks whenever the volume of a specified \"control\" track reaches a particular level" -msgstr "지정한 \"제어\" 트랙의 볼륨이 특정한 레벨에 도달할 때마다 한 개 이상 트랙의 볼륨을 줄입니다 (ducks)" +msgid "" +"Reduces (ducks) the volume of one or more tracks whenever the volume of a specified \"control\" track reaches a particular level" +msgstr "지정한 \"제어\" 트랙의 볼륨이 특정한 레벨에 도달할 때마다한 개 이상 트랙의 볼륨을 줄입니다 (ducks)" -#. i18n-hint: Auto duck is the name of an effect that 'ducks' (reduces the volume) +#. i18n-hint: Auto duck is the name of an effect that 'ducks' (reduces the +#. volume) #. * of the audio automatically when there is sound on another track. Not as #. * in 'Donald-Duck'! #: src/effects/AutoDuck.cpp msgid "You selected a track which does not contain audio. AutoDuck can only process audio tracks." -msgstr "오디오가 포함되지 않은 트랙을 선택했습니다. 오토 덕은 오디오 트랙만 처리할 수 있습니다." +msgstr "오디오가 포함되지 않은 트랙을 선택했습니다. 자동 더킹은 오디오 트랙만 처리할 수 있습니다." -#. i18n-hint: Auto duck is the name of an effect that 'ducks' (reduces the volume) +#. i18n-hint: Auto duck is the name of an effect that 'ducks' (reduces the +#. volume) #. * of the audio automatically when there is sound on another track. Not as #. * in 'Donald-Duck'! #: src/effects/AutoDuck.cpp msgid "Auto Duck needs a control track which must be placed below the selected track(s)." -msgstr "오토 덕은 반드시 선택된 트랙 아래에 위치하는 제어 트랙이 필요합니다." +msgstr "자동 더킹 반드시 선택된 트랙 아래에 위치하는제어 트랙이 필요합니다." #: src/effects/AutoDuck.cpp src/effects/TruncSilence.cpp msgid "db" @@ -6526,11 +6528,10 @@ msgstr "db" #: src/effects/AutoDuck.cpp msgid "Duck &amount:" -msgstr "부분 소리 줄이기 볼륨" +msgstr "더킹 양 (&A) :" #. i18n-hint: Name of time display format that shows time in seconds -#: src/effects/AutoDuck.cpp src/effects/TruncSilence.cpp -#: src/prefs/PlaybackPrefs.cpp src/prefs/RecordingPrefs.cpp +#: src/effects/AutoDuck.cpp src/effects/TruncSilence.cpp src/prefs/PlaybackPrefs.cpp src/prefs/RecordingPrefs.cpp #: src/widgets/NumericTextCtrl.cpp msgid "seconds" msgstr "초" @@ -6555,8 +6556,7 @@ msgstr "내부 페이드 내림 길이: (&O)" msgid "Inner &fade up length:" msgstr "내부 페이드 올림 길이: (&F)" -#: src/effects/AutoDuck.cpp src/effects/Compressor.cpp -#: src/effects/TruncSilence.cpp +#: src/effects/AutoDuck.cpp src/effects/Compressor.cpp src/effects/TruncSilence.cpp msgid "&Threshold:" msgstr "임계값 (&T)" @@ -6610,7 +6610,7 @@ msgstr "볼륨 조절을 톤 조절에 연결하기(&L)" #: src/effects/ChangePitch.cpp msgid "Change Pitch" -msgstr "변경: 피치 (음정)" +msgstr "변경: 피치" #: src/effects/ChangePitch.cpp msgid "Changes the pitch of a track without changing its tempo" @@ -6618,16 +6618,16 @@ msgstr "템포 변경 없이 피치를 변경" #: src/effects/ChangePitch.cpp msgid "High Quality Pitch Change" -msgstr "고품질 피치(음정) 변경" +msgstr "고품질 피치 변경" #: src/effects/ChangePitch.cpp msgid "Change Pitch without Changing Tempo" -msgstr "템포(빠르기) 변경 없이 피치(음정) 바꾸기" +msgstr "템포 변경 없이 피치 바꾸기" #: src/effects/ChangePitch.cpp #, c-format msgid "Estimated Start Pitch: %s%d (%.3f Hz)" -msgstr "추정 시작 피치(음정): %s %d (%.3f Hz)" +msgstr "추정 시작 피치: %s %d (%.3f Hz)" #. i18n-hint: (noun) Musical pitch. #: src/effects/ChangePitch.cpp @@ -6638,13 +6638,13 @@ msgstr "피치" #: src/effects/ChangePitch.cpp msgctxt "change pitch" msgid "from" -msgstr "From" +msgstr "from" #. i18n-hint: changing musical pitch "from" one value "to" another #: src/effects/ChangePitch.cpp msgctxt "change pitch" msgid "&from" -msgstr "From (&F)" +msgstr "from(&F)" #: src/effects/ChangePitch.cpp msgid "from Octave" @@ -6654,13 +6654,13 @@ msgstr "시작 옥타브" #: src/effects/ChangePitch.cpp msgctxt "change pitch" msgid "to" -msgstr "To" +msgstr "to" #. i18n-hint: changing musical pitch "from" one value "to" another #: src/effects/ChangePitch.cpp msgctxt "change pitch" msgid "&to" -msgstr "To (&T)" +msgstr "to (&T)" #: src/effects/ChangePitch.cpp msgid "to Octave" @@ -6684,23 +6684,21 @@ msgstr "시작 (Hz)" #: src/effects/ChangePitch.cpp msgid "f&rom" -msgstr "From(&R)" +msgstr "from(&R)" #: src/effects/ChangePitch.cpp msgid "to (Hz)" -msgstr "끝 (Hz)" +msgstr "종료값 (Hz)" #: src/effects/ChangePitch.cpp src/effects/Loudness.cpp msgid "t&o" -msgstr "To(&O)" +msgstr "to (&O)" -#: src/effects/ChangePitch.cpp src/effects/ChangeSpeed.cpp -#: src/effects/ChangeTempo.cpp +#: src/effects/ChangePitch.cpp src/effects/ChangeSpeed.cpp src/effects/ChangeTempo.cpp msgid "Percent C&hange:" msgstr "퍼센트 변경(&H)" -#: src/effects/ChangePitch.cpp src/effects/ChangeSpeed.cpp -#: src/effects/ChangeTempo.cpp +#: src/effects/ChangePitch.cpp src/effects/ChangeSpeed.cpp src/effects/ChangeTempo.cpp msgid "Percent Change" msgstr "퍼센트 변경" @@ -6722,9 +6720,8 @@ msgstr "78" #. i18n-hint: n/a is an English abbreviation meaning "not applicable". #. i18n-hint: Can mean "not available," "not applicable," "no answer" -#: src/effects/ChangeSpeed.cpp src/effects/audiounits/AudioUnitEffect.cpp -#: src/effects/ladspa/LadspaEffect.cpp src/effects/lv2/LV2Effect.cpp -#: src/effects/nyquist/Nyquist.cpp +#: src/effects/ChangeSpeed.cpp src/effects/audiounits/AudioUnitEffect.cpp src/effects/ladspa/LadspaEffect.cpp +#: src/effects/lv2/LV2Effect.cpp src/effects/nyquist/Nyquist.cpp msgid "n/a" msgstr "(사용 불가)" @@ -6738,13 +6735,14 @@ msgstr "트랙의 속도를 변경하는 동시에 피치를 변경" #: src/effects/ChangeSpeed.cpp msgid "Change Speed, affecting both Tempo and Pitch" -msgstr "속도 변경은 템포(빠르기)와 피치(음정) 모두에 영향을 줍니다" +msgstr "속도 변경은 템포와 피치 모두에 영향을 줍니다" #: src/effects/ChangeSpeed.cpp msgid "&Speed Multiplier:" msgstr "속도 곱셈기:" -#. i18n-hint: "rpm" is an English abbreviation meaning "revolutions per minute". +#. i18n-hint: "rpm" is an English abbreviation meaning "revolutions per +#. minute". #. "vinyl" refers to old-fashioned phonograph records #: src/effects/ChangeSpeed.cpp msgid "Standard Vinyl rpm:" @@ -6752,7 +6750,6 @@ msgstr "표준 Vinyl rpm:" #. i18n-hint: changing speed of audio "from" one value "to" another #. "rpm" means "revolutions per minute" as on a vinyl record turntable -#. #: src/effects/ChangeSpeed.cpp msgid "From rpm" msgstr "시작 rpm" @@ -6761,20 +6758,19 @@ msgstr "시작 rpm" #: src/effects/ChangeSpeed.cpp msgctxt "change speed" msgid "&from" -msgstr "From (&F)" +msgstr "from (&F)" #. i18n-hint: changing speed of audio "from" one value "to" another #. "rpm" means "revolutions per minute" as on a vinyl record turntable -#. #: src/effects/ChangeSpeed.cpp msgid "To rpm" -msgstr "끝 rpm" +msgstr "종료값 rpm" #. i18n-hint: changing speed of audio "from" one value "to" another #: src/effects/ChangeSpeed.cpp msgctxt "change speed" msgid "&to" -msgstr "To (&T)" +msgstr "to (&T)" #: src/effects/ChangeSpeed.cpp msgid "Selection Length" @@ -6792,7 +6788,7 @@ msgstr "현재 선택 길이." #: src/effects/ChangeSpeed.cpp msgctxt "change speed" msgid "from" -msgstr "From" +msgstr "from" #: src/effects/ChangeSpeed.cpp msgid "&New Length:" @@ -6802,7 +6798,7 @@ msgstr "새로운 길이:" #: src/effects/ChangeSpeed.cpp msgctxt "change speed" msgid "to" -msgstr "To" +msgstr "to" #: src/effects/ChangeTempo.cpp msgid "Change Tempo" @@ -6810,7 +6806,7 @@ msgstr "변경: 템포 (빠르기)" #: src/effects/ChangeTempo.cpp msgid "Changes the tempo of a selection without changing its pitch" -msgstr "피치 변경 없이 선택 부분의 템포(빠르기)를 바꿉니다" +msgstr "피치 변경 없이 선택 부분의 템포를 바꿉니다" #: src/effects/ChangeTempo.cpp msgid "High Quality Tempo Change" @@ -6818,7 +6814,7 @@ msgstr "고품질 템포(빠르기) 변경" #: src/effects/ChangeTempo.cpp msgid "Change Tempo without Changing Pitch" -msgstr "피치(음정) 변경 없이 템포(빠르기) 변경하기" +msgstr "피치 변경 없이 템포 변경하기" #: src/effects/ChangeTempo.cpp msgid "Beats per minute" @@ -6827,13 +6823,13 @@ msgstr "분당 박자" #. i18n-hint: changing tempo "from" one value "to" another #: src/effects/ChangeTempo.cpp msgid "Beats per minute, from" -msgstr "분당 박자, 시작" +msgstr "분당 박자, 시작값" #. i18n-hint: changing tempo "from" one value "to" another #: src/effects/ChangeTempo.cpp msgctxt "change tempo" msgid "&from" -msgstr "From (&F)" +msgstr "from (&F)" #. i18n-hint: changing tempo "from" one value "to" another #: src/effects/ChangeTempo.cpp @@ -6844,7 +6840,7 @@ msgstr "분당 박자, 끝" #: src/effects/ChangeTempo.cpp msgctxt "change tempo" msgid "&to" -msgstr "To (&T)" +msgstr "to (&T)" #: src/effects/ChangeTempo.cpp msgid "Length (seconds)" @@ -6854,18 +6850,18 @@ msgstr "길이 (초)" #: src/effects/ChangeTempo.cpp msgctxt "change tempo" msgid "from" -msgstr "From" +msgstr "from" #. i18n-hint: changing tempo "from" one value "to" another #: src/effects/ChangeTempo.cpp msgctxt "change tempo" msgid "t&o" -msgstr "To(&O)" +msgstr "to (&O)" #: src/effects/ChangeTempo.cpp #, c-format msgid "Length in seconds from %s, to" -msgstr "%s에서 다음까지 길이 (초):" +msgstr "길이(초) : from %s to" #: src/effects/ClickRemoval.cpp msgid "Click Removal" @@ -6979,20 +6975,23 @@ msgid "Attack Time" msgstr "어택 시간" #. i18n-hint: Particularly in percussion, sounds can be regarded as having -#. * an 'attack' phase where the sound builds up and a 'decay' or 'release' where the +#. * an 'attack' phase where the sound builds up and a 'decay' or 'release' +#. where the #. * sound dies away. #: src/effects/Compressor.cpp msgid "R&elease Time:" msgstr "릴리즈 시간:" #. i18n-hint: Particularly in percussion, sounds can be regarded as having -#. * an 'attack' phase where the sound builds up and a 'decay' or 'release' where the +#. * an 'attack' phase where the sound builds up and a 'decay' or 'release' +#. where the #. * sound dies away. #: src/effects/Compressor.cpp msgid "Release Time" msgstr "릴리즈 시간" -#. i18n-hint: Make-up, i.e. correct for any reduction, rather than fabricate it. +#. i18n-hint: Make-up, i.e. correct for any reduction, rather than fabricate +#. it. #: src/effects/Compressor.cpp msgid "Ma&ke-up gain for 0 dB after compressing" msgstr "압축 후 피크 레벨 0 dB까지 메이크업 게인 적용" @@ -7048,17 +7047,16 @@ msgstr "" #. i18n-hint: RMS abbreviates root mean square, a certain averaging method #: src/effects/Contrast.cpp msgid "Contrast Analyzer, for measuring RMS volume differences between two selections of audio." -msgstr "콘트라스트 분석기, 오디오의 두 선택 부분 사이의 RMS 볼륨 차이를 측정." +msgstr "콘트라스트 분석기, 오디오의 두 선택 부분 사이RMS 볼륨 차이를 측정함." #. i18n-hint noun -#: src/effects/Contrast.cpp src/effects/ToneGen.cpp -#: src/toolbars/SelectionBar.cpp +#: src/effects/Contrast.cpp src/effects/ToneGen.cpp src/toolbars/SelectionBar.cpp msgid "End" msgstr "끝" #: src/effects/Contrast.cpp msgid "Volume " -msgstr "볼륨" +msgstr "볼륨 " #: src/effects/Contrast.cpp msgid "&Foreground:" @@ -7173,7 +7171,8 @@ msgstr "배경음 레벨이 너무 높습니다" msgid "Background higher than foreground" msgstr "배경음이 전경음보다 더 높습니다" -#. i18n-hint: WCAG2 is the 'Web Content Accessibility Guidelines (WCAG) 2.0', see http://www.w3.org/TR/WCAG20/ +#. i18n-hint: WCAG2 is the 'Web Content Accessibility Guidelines (WCAG) 2.0', +#. see http://www.w3.org/TR/WCAG20/ #: src/effects/Contrast.cpp msgid "WCAG2 Pass" msgstr "WCAG2 통과" @@ -7239,7 +7238,7 @@ msgstr "전경음" #: src/effects/Contrast.cpp #, c-format msgid "Time started = %2d hour(s), %2d minute(s), %.2f seconds." -msgstr "시작 시간 = %2d 시, %2d 분, %.2f 초." +msgstr "시작 시간 = %2d 시간, %2d분, %.2f초." #: src/effects/Contrast.cpp #, c-format @@ -7270,9 +7269,7 @@ msgstr "수집한 데이터" #: src/effects/Contrast.cpp #, c-format msgid "%d %s %02d %02dh %02dm %02ds" -msgstr "" -"%d %s %02d %02dh %02dm %02ds\n" -" " +msgstr "%d %s %02d %02dh %02dm %02ds" #: src/effects/Contrast.cpp msgid "Contrast Analysis (WCAG 2 compliance)" @@ -7534,7 +7531,7 @@ msgstr "DTMF 톤" #: src/effects/DtmfGen.cpp msgid "Generates dual-tone multi-frequency (DTMF) tones like those produced by the keypad on telephones" -msgstr "전화기의 키패드에서 나는 소리같은 듀얼 톤 멀티 주파수(DTMF) 톤 만들기" +msgstr "전화기의 키패드에서 나는 소리같은듀얼 톤 멀티 주파수(DTMF) 톤 만들기" #: src/effects/DtmfGen.cpp msgid "" @@ -7552,8 +7549,7 @@ msgstr "DTMF 시퀀스(&S):" msgid "&Amplitude (0-1):" msgstr "진폭 (0-1):" -#: src/effects/DtmfGen.cpp src/effects/Noise.cpp src/effects/Silence.cpp -#: src/effects/ToneGen.cpp src/effects/TruncSilence.cpp +#: src/effects/DtmfGen.cpp src/effects/Noise.cpp src/effects/Silence.cpp src/effects/ToneGen.cpp src/effects/TruncSilence.cpp #: src/effects/lv2/LV2Effect.cpp msgid "&Duration:" msgstr "지속 시간(&D):" @@ -7599,8 +7595,7 @@ msgstr "에코 (메아리)" msgid "Repeats the selected audio again and again" msgstr "선택 오디오를 되풀이해서 반복합니다" -#: src/effects/Echo.cpp src/effects/FindClipping.cpp -#: src/effects/Paulstretch.cpp +#: src/effects/Echo.cpp src/effects/FindClipping.cpp src/effects/Paulstretch.cpp msgid "Requested value exceeds memory capacity." msgstr "요구되는 값이 메모리 용량을 초과합니다." @@ -7624,8 +7619,7 @@ msgstr "사전설정" msgid "Export Effect Parameters" msgstr "효과 매개 변수 내보내기" -#: src/effects/Effect.cpp src/effects/VST/VSTEffect.cpp -#: src/xml/XMLFileReader.cpp +#: src/effects/Effect.cpp src/effects/VST/VSTEffect.cpp src/xml/XMLFileReader.cpp #, c-format msgid "Could not open file: \"%s\"" msgstr "파일을 열 수 없습니다: \"%s\"" @@ -7664,7 +7658,8 @@ msgid "Previewing" msgstr "미리보기 처리 중" #. i18n-hint: "Nyquist" is an embedded interpreted programming language in -#. Audacity, named in honor of the Swedish-American Harry Nyquist (or Nyqvist). +#. Audacity, named in honor of the Swedish-American Harry Nyquist (or +#. Nyqvist). #. In the translations of this and other strings, you may transliterate the #. name into another alphabet. #: src/effects/Effect.h @@ -7695,7 +7690,7 @@ msgstr "사용자 사전설정" #: src/effects/EffectManager.cpp src/effects/EffectUI.cpp msgid "Factory Presets" -msgstr "공장도 사전설정" +msgstr "공장 사전설정" #: src/effects/EffectManager.cpp msgid "Current Settings" @@ -7996,7 +7991,7 @@ msgstr "저음 자르기" #: src/effects/Equalization.cpp msgid "Low rolloff for speech" -msgstr "나레이션을 위한 저주파수 보상 " +msgstr "나레이션을 위한 저주파수 보상" #: src/effects/Equalization.cpp msgid "RIAA" @@ -8069,7 +8064,8 @@ msgstr "%d Hz" msgid "%g kHz" msgstr "%g kHz" -#. i18n-hint k is SI abbreviation for x1,000. Usually unchanged in translation. +#. i18n-hint k is SI abbreviation for x1,000. Usually unchanged in +#. translation. #: src/effects/Equalization.cpp #, c-format msgid "%gk" @@ -8141,7 +8137,7 @@ msgstr "격자선 보기(&R)" #: src/effects/Equalization.cpp msgid "&Processing: " -msgstr "처리 중(&P):" +msgstr "처리 중(&P): " #: src/effects/Equalization.cpp msgid "D&efault" @@ -8181,9 +8177,9 @@ msgid "" "Error message says:\n" "%s" msgstr "" -"파일에서 EQ 곡선을 불러오는 중 오류:\n" +"오류 EQ 곡선을 파일로 가져오기 실패 :\n" "%s\n" -"오류 메시지는 다음과 같습니다:\n" +"오류 메시지:\n" "%s" #: src/effects/Equalization.cpp @@ -8485,7 +8481,7 @@ msgstr "핑크" #: src/effects/Noise.cpp msgctxt "noise" msgid "Brownian" -msgstr "브라우니언" +msgstr "브라우니어" #: src/effects/Noise.cpp msgid "Noise" @@ -8573,7 +8569,7 @@ msgstr "모든 잡음 프로파일 데이터는 같은 샘플링 주파수이어 #: src/effects/NoiseReduction.cpp msgid "The sample rate of the noise profile must match that of the sound to be processed." -msgstr "노이즈 프로파일의 샘플링 주파수는 처리될 사운드의 샘플링 주파수와 일치해야 합니다." +msgstr "노이즈 프로파일의 샘플링 주파수는 처리될 사운드샘플링 주파수와 일치해야 합니다." #: src/effects/NoiseReduction.cpp msgid "Selected noise profile is too short." @@ -8668,7 +8664,8 @@ msgstr "감소시키기(&D)" msgid "&Isolate" msgstr "분리(&I)" -#. i18n-hint: Means the difference between effect and original sound. Translate differently from "Reduce" ! +#. i18n-hint: Means the difference between effect and original sound. +#. Translate differently from "Reduce" ! #: src/effects/NoiseReduction.cpp msgid "Resid&ue" msgstr "잔여(&U)" @@ -8737,8 +8734,7 @@ msgstr "16384" msgid "S&teps per window:" msgstr "윈도우당 스텝(&T)" -#: src/effects/NoiseReduction.cpp src/export/ExportFFmpegDialogs.cpp -#: src/export/ExportFLAC.cpp +#: src/effects/NoiseReduction.cpp src/export/ExportFFmpegDialogs.cpp src/export/ExportFLAC.cpp msgid "2" msgstr "2" @@ -8845,7 +8841,7 @@ msgstr "DC 오프셋 제거 (파형을 0.0 진폭 레벨에서 중심에 놓기) #: src/effects/Normalize.cpp msgid "&Normalize peak amplitude to " -msgstr "피크 진폭값으로 정규화하기:" +msgstr "피크 진폭값으로 정규화하기 (&N) : " #: src/effects/Normalize.cpp msgid "Peak amplitude dB" @@ -8866,7 +8862,6 @@ msgstr "극한의 시간-늘이기나 \"stasis (정체)\" 효과에만 폴스트 #. i18n-hint: This is how many times longer the sound will be, e.g. applying #. * the effect to a 1-second sample, with the default Stretch Factor of 10.0 #. * will give an (approximately) 10 second sound -#. #: src/effects/Paulstretch.cpp msgid "&Stretch Factor:" msgstr "스트레치 인수:" @@ -8875,7 +8870,8 @@ msgstr "스트레치 인수:" msgid "&Time Resolution (seconds):" msgstr "시간 해상도 (초):" -#. i18n-hint: 'Time Resolution' is the name of a control in the Paulstretch effect. +#. i18n-hint: 'Time Resolution' is the name of a control in the Paulstretch +#. effect. #: src/effects/Paulstretch.cpp #, c-format msgid "" @@ -8889,7 +8885,8 @@ msgstr "" "오디오 선택을 적어도 %.1f초만큼 증가시키 보거나,\n" "'시간 해상도'를 %.1f초 이내로 감소시켜 보세요." -#. i18n-hint: 'Time Resolution' is the name of a control in the Paulstretch effect. +#. i18n-hint: 'Time Resolution' is the name of a control in the Paulstretch +#. effect. #: src/effects/Paulstretch.cpp #, c-format msgid "" @@ -8903,7 +8900,8 @@ msgstr "" "현재 오디오 선택에 대해, 최대\n" "'시간 해상도'는 %.1f 초입니다." -#. i18n-hint: 'Time Resolution' is the name of a control in the Paulstretch effect. +#. i18n-hint: 'Time Resolution' is the name of a control in the Paulstretch +#. effect. #: src/effects/Paulstretch.cpp #, c-format msgid "" @@ -9146,19 +9144,22 @@ msgstr "선택한 오디오의 앞뒤를 뒤바꿉니다" #: src/effects/SBSMSEffect.h msgid "SBSMS Time / Pitch Stretch" -msgstr "SBSMS 시간 / 음정 늘이기" +msgstr "SBSMS 시간 / 피치 늘리기" -#. i18n-hint: Butterworth is the name of the person after whom the filter type is named. +#. i18n-hint: Butterworth is the name of the person after whom the filter type +#. is named. #: src/effects/ScienFilter.cpp msgid "Butterworth" msgstr "버터워스" -#. i18n-hint: Chebyshev is the name of the person after whom the filter type is named. +#. i18n-hint: Chebyshev is the name of the person after whom the filter type +#. is named. #: src/effects/ScienFilter.cpp msgid "Chebyshev Type I" msgstr "체비셰프 형식 I" -#. i18n-hint: Chebyshev is the name of the person after whom the filter type is named. +#. i18n-hint: Chebyshev is the name of the person after whom the filter type +#. is named. #: src/effects/ScienFilter.cpp msgid "Chebyshev Type II" msgstr "체비셰프 형식 II" @@ -9188,7 +9189,8 @@ msgstr "필터를 적용하려면, 선택한 모든 트랙은 같은 샘플링 msgid "&Filter Type:" msgstr "필터 형식(&F):" -#. i18n-hint: 'Order' means the complexity of the filter, and is a number between 1 and 10. +#. i18n-hint: 'Order' means the complexity of the filter, and is a number +#. between 1 and 10. #: src/effects/ScienFilter.cpp msgid "O&rder:" msgstr "순서(&R):" @@ -9257,32 +9259,40 @@ msgstr "무음 임계값:" msgid "Silence Threshold" msgstr "무음 임계값" -#. i18n-hint: The English would be clearer if it had 'Duration' rather than 'Time' -#. This is a NEW experimental effect, and until we have it documented in the user +#. i18n-hint: The English would be clearer if it had 'Duration' rather than +#. 'Time' +#. This is a NEW experimental effect, and until we have it documented in the +#. user #. manual we don't have a clear description of what this parameter does. #. It is OK to leave it in English. #: src/effects/ScoreAlignDialog.cpp msgid "Presmooth Time:" msgstr "사전 평활화 시간:" -#. i18n-hint: The English would be clearer if it had 'Duration' rather than 'Time' -#. This is a NEW experimental effect, and until we have it documented in the user +#. i18n-hint: The English would be clearer if it had 'Duration' rather than +#. 'Time' +#. This is a NEW experimental effect, and until we have it documented in the +#. user #. manual we don't have a clear description of what this parameter does. #. It is OK to leave it in English. #: src/effects/ScoreAlignDialog.cpp msgid "Presmooth Time" msgstr "이전 평활화 시간" -#. i18n-hint: The English would be clearer if it had 'Duration' rather than 'Time' -#. This is a NEW experimental effect, and until we have it documented in the user +#. i18n-hint: The English would be clearer if it had 'Duration' rather than +#. 'Time' +#. This is a NEW experimental effect, and until we have it documented in the +#. user #. manual we don't have a clear description of what this parameter does. #. It is OK to leave it in English. #: src/effects/ScoreAlignDialog.cpp msgid "Line Time:" msgstr "라인 시간:" -#. i18n-hint: The English would be clearer if it had 'Duration' rather than 'Time' -#. This is a NEW experimental effect, and until we have it documented in the user +#. i18n-hint: The English would be clearer if it had 'Duration' rather than +#. 'Time' +#. This is a NEW experimental effect, and until we have it documented in the +#. user #. manual we don't have a clear description of what this parameter does. #. It is OK to leave it in English. #: src/effects/ScoreAlignDialog.cpp @@ -9293,8 +9303,10 @@ msgstr "라인 시간" msgid "Smooth Time:" msgstr "평활화 시간:" -#. i18n-hint: The English would be clearer if it had 'Duration' rather than 'Time' -#. This is a NEW experimental effect, and until we have it documented in the user +#. i18n-hint: The English would be clearer if it had 'Duration' rather than +#. 'Time' +#. This is a NEW experimental effect, and until we have it documented in the +#. user #. manual we don't have a clear description of what this parameter does. #. It is OK to leave it in English. #: src/effects/ScoreAlignDialog.cpp @@ -9350,7 +9362,7 @@ msgstr "점차 늘이기" #: src/effects/TimeScale.cpp msgid "Allows continuous changes to the tempo and/or pitch" -msgstr "템포(빠르기)/피치(음정)를 계속 바꿀 수 있도록 합니다" +msgstr "템포/피치를 연속적으로 변경할 수 있도록 합니다" #: src/effects/TimeScale.cpp msgid "Initial Tempo Change (%)" @@ -9362,7 +9374,7 @@ msgstr "최종 템포 변경 (%)" #: src/effects/TimeScale.cpp msgid "Initial Pitch Shift" -msgstr "처음 피치(음정) 변경" +msgstr "초기 피치 변경" #: src/effects/TimeScale.cpp msgid "(&semitones) [-12 to 12]:" @@ -9458,11 +9470,11 @@ msgstr "무음 잘라내기" #: src/effects/TruncSilence.cpp msgid "Automatically reduces the length of passages where the volume is below a specified level" -msgstr "볼륨이 지정한 레벨 이하인 패시지의 길이를 자동으로 줄입니다." +msgstr "볼륨이 지정한 레벨 이하인 패시지의길이를 자동으로 줄입니다" #: src/effects/TruncSilence.cpp msgid "When truncating independently, there may only be one selected audio track in each Sync-Locked Track Group." -msgstr "독립적으로 잘라낼 때, 각 동기화-잠긴 트랙 그룹에 한 개의 선택된 오디오 트랙만 있을 수 있습니다." +msgstr "독립적으로 잘라낼 때, 각 동기화-잠긴 트랙 그룹에한 개의 선택된 오디오 트랙만 있을 수 있습니다." #: src/effects/TruncSilence.cpp msgid "Detect Silence" @@ -9501,8 +9513,7 @@ msgstr "쉘 VST 검사 중" msgid "Registering %d of %d: %-64.64s" msgstr "%d / %d 등록 중: %-64.64s" -#: src/effects/VST/VSTEffect.cpp src/effects/ladspa/LadspaEffect.cpp -#: src/effects/lv2/LoadLV2.cpp src/effects/vamp/LoadVamp.cpp +#: src/effects/VST/VSTEffect.cpp src/effects/ladspa/LadspaEffect.cpp src/effects/lv2/LoadLV2.cpp src/effects/vamp/LoadVamp.cpp msgid "Could not load the library" msgstr "라이브러리를 불러올 수 없습니다" @@ -9515,24 +9526,34 @@ msgid "Buffer Size" msgstr "버퍼 크기" #: src/effects/VST/VSTEffect.cpp src/effects/lv2/LV2Effect.cpp -msgid "The buffer size controls the number of samples sent to the effect on each iteration. Smaller values will cause slower processing and some effects require 8192 samples or less to work properly. However most effects can accept large buffers and using them will greatly reduce processing time." -msgstr "버퍼 크기는 각각의 반복 단계에서 효과에 보내질 샘플의 수를 결정한다. 값을 작게 설정할 경우 처리 속도가 늦고, 어떤 효과의 경우 최소 8192 이하를 요구함. 반면, 대부분의 효과는 큰 버퍼 크기를 허용하며, 이 경우 처리 속도가 빠름. " +msgid "" +"The buffer size controls the number of samples sent to the effect on each iteration. Smaller values will cause slower processing " +"and some effects require 8192 samples or less to work properly. However most effects can accept large buffers and using them will " +"greatly reduce processing time." +msgstr "" +"버퍼 크기는 각각의 반복 단계에서 효과에 보내질 샘플의 수를 결정한다.값을 작게 설정할 경우 처리 속도가 늦고, 어떤 효과의 경우 최소" +"8192 이하를 요구한다. 반면, 대부분의 효과는 큰 버퍼 크기를 허용하며이 경우 처리 속도가 빠르다." #: src/effects/VST/VSTEffect.cpp msgid "&Buffer Size (8 to 1048576 samples):" msgstr "버퍼 크기 (8~1048576 샘플)(&B):" -#: src/effects/VST/VSTEffect.cpp src/effects/audiounits/AudioUnitEffect.cpp -#: src/effects/ladspa/LadspaEffect.cpp src/effects/lv2/LV2Effect.cpp +#: src/effects/VST/VSTEffect.cpp src/effects/audiounits/AudioUnitEffect.cpp src/effects/ladspa/LadspaEffect.cpp +#: src/effects/lv2/LV2Effect.cpp msgid "Latency Compensation" -msgstr "레이턴시 보상" +msgstr "지연 보상" #: src/effects/VST/VSTEffect.cpp -msgid "As part of their processing, some VST effects must delay returning audio to Audacity. When not compensating for this delay, you will notice that small silences have been inserted into the audio. Enabling this option will provide that compensation, but it may not work for all VST effects." -msgstr "처리의 일부 과정으로서, 일부 VST 효과는 오데시티에 지연된 반환을 해야만 합니다. 이 지연에 대한 보상을 하지 않으면, 오디오에 짧은 묵음이 들어가게 됩니다. 이 옵션을 활성화하면 보상이 되나, 모든 VST 효과에서 작동하는 것은 아닙니다. " +msgid "" +"As part of their processing, some VST effects must delay returning audio to Audacity. When not compensating for this delay, you " +"will notice that small silences have been inserted into the audio. Enabling this option will provide that compensation, but it may " +"not work for all VST effects." +msgstr "" +"처리의 일부 과정으로서, 어떤 VST 효과는 오데시티에 지연된 반환을 해야만 한다.이 지연에 대한 보상을 하지 않으면, 오디오에 짧은 묵음" +"이 들어가게 된다.이 옵션을 활성화하면 보상이 되나, 모든 VST 효과에서 작동하는 것은 아니다." -#: src/effects/VST/VSTEffect.cpp src/effects/audiounits/AudioUnitEffect.cpp -#: src/effects/ladspa/LadspaEffect.cpp src/effects/lv2/LV2Effect.cpp +#: src/effects/VST/VSTEffect.cpp src/effects/audiounits/AudioUnitEffect.cpp src/effects/ladspa/LadspaEffect.cpp +#: src/effects/lv2/LV2Effect.cpp msgid "Enable &compensation" msgstr "보상을 활성화(&C)" @@ -9541,8 +9562,12 @@ msgid "Graphical Mode" msgstr "그래픽 모드" #: src/effects/VST/VSTEffect.cpp -msgid "Most VST effects have a graphical interface for setting parameter values. A basic text-only method is also available. Reopen the effect for this to take effect." -msgstr "대부분의 VST 효과들은 그래픽 인터페이스로 파라메터 값을 설정할 수 있습니다. 기본적인 텍스트 인터페이스도로 사용할 수 있습니다. 설정을 적용하려면 효과를 다시 열기 바랍니다." +msgid "" +"Most VST effects have a graphical interface for setting parameter values. A basic text-only method is also available. Reopen the " +"effect for this to take effect." +msgstr "" +"대부분의 VST 효과들은 그래픽 인터페이스로 파라메터 값을 설정할 수 있습니다.기본적인 텍스트 인터페이스도로 사용할 수 있습니다.효과" +"를 다시 열면 설정이 작동합니다." #: src/effects/VST/VSTEffect.cpp src/effects/lv2/LV2Effect.cpp msgid "Enable &graphical interface" @@ -9593,8 +9618,7 @@ msgstr "VST 사전설정 불러오는 중 오류" msgid "Unable to load presets file." msgstr "사전설정 파일을 불러올 수 없습니다." -#: src/effects/VST/VSTEffect.cpp src/effects/ladspa/LadspaEffect.cpp -#: src/effects/lv2/LV2Effect.cpp +#: src/effects/VST/VSTEffect.cpp src/effects/ladspa/LadspaEffect.cpp src/effects/lv2/LV2Effect.cpp msgid "Effect Settings" msgstr "효과 설정" @@ -9611,7 +9635,8 @@ msgstr "사전설정 파일을 읽을 수 없습니다." msgid "This parameter file was saved from %s. Continue?" msgstr "이 파라메터 파일은 %s 에서 저장된 것입니다. 계속?" -#. i18n-hint: Abbreviates Virtual Studio Technology, an audio software protocol +#. i18n-hint: Abbreviates Virtual Studio Technology, an audio software +#. protocol #. developed by Steinberg GmbH #: src/effects/VST/VSTEffect.h msgid "VST" @@ -9623,7 +9648,7 @@ msgstr "와와" #: src/effects/Wahwah.cpp msgid "Rapid tone quality variations, like that guitar sound so popular in the 1970's" -msgstr "빠른 톤 품질 변화, 1970년대에 유명했던 기타 소리와 같은" +msgstr "톤 품질 변경 - 1970년대 유행한 기타 소리와 같이 변경" #: src/effects/Wahwah.cpp msgid "Dept&h (%):" @@ -9667,16 +9692,25 @@ msgid "Audio Unit Effect Options" msgstr "오디오 유니트 효과 옵션" #: src/effects/audiounits/AudioUnitEffect.cpp -msgid "As part of their processing, some Audio Unit effects must delay returning audio to Audacity. When not compensating for this delay, you will notice that small silences have been inserted into the audio. Enabling this option will provide that compensation, but it may not work for all Audio Unit effects." -msgstr "처리의 일부 과정으로서, 일부 오디오 유니트 효과는 오데시티에 지연된 반환을 해야만 합니다. 이 지연에 대한 보상을 하지 않으면, 오디오에 짧은 묵음들이 들어가게 됩니다. 이 옵션을 활성화하면 보상이 되나, 모든 오디오 유니트 효과에서 작동하는 것은 아닙니다. " +msgid "" +"As part of their processing, some Audio Unit effects must delay returning audio to Audacity. When not compensating for this delay, " +"you will notice that small silences have been inserted into the audio. Enabling this option will provide that compensation, but it " +"may not work for all Audio Unit effects." +msgstr "" +"처리의 일부 과정으로서, 어떤 오디오 효과는 오데시티에 지연된 반환을 해야만 합니다.이 지연에 대한 보상을 하지 않으면, 오디오에 짧은" +"묵음들이 들어가게 됩니다. 이 옵션을 활성화하면 보상이 되나,모든 오디오 효과에서 작동하는 것은 아닙니다." #: src/effects/audiounits/AudioUnitEffect.cpp msgid "User Interface" msgstr "사용자 인터페이스" #: src/effects/audiounits/AudioUnitEffect.cpp -msgid "Select \"Full\" to use the graphical interface if supplied by the Audio Unit. Select \"Generic\" to use the system supplied generic interface. Select \"Basic\" for a basic text-only interface. Reopen the effect for this to take effect." -msgstr "\"전체\"를 선택하면 오디오 유니트가 지원하는 그래피 인터페이스를 사용할 수 있습니다. \"일반\"을 선택하면 시스템이 지원하는 일반 인터페이스를 사용하며, \"기본\"을 선택하면 텍스트로만 된 인터페이스를 사용합니다. 적용하려면 효과를 다시 열기 바랍니다." +msgid "" +"Select \"Full\" to use the graphical interface if supplied by the Audio Unit. Select \"Generic\" to use the system supplied " +"generic interface. Select \"Basic\" for a basic text-only interface. Reopen the effect for this to take effect." +msgstr "" +"\"전체\"를 선택하면 오디오 유니트가 지원하는 그래피 인터페이스를 사용할 수 있습니다\"일반\"을 선택하면 시스템이 지원하는 \"일반\"인" +"터페이스를 사용하며,\"기본\"을 선택하면 텍스트로만 된 인터페이스를 사용합니다.적용하려면 효과를 다시 열기 바랍니다." #: src/effects/audiounits/AudioUnitEffect.cpp msgid "Select &interface" @@ -9700,7 +9734,7 @@ msgstr "오디오 유니트 사전설정 가져오기" #: src/effects/audiounits/AudioUnitEffect.cpp msgid "Presets (may select multiple)" -msgstr "사전설정 (다중 선택)" +msgstr "사전설정 (다중 선택 가능)" #: src/effects/audiounits/AudioUnitEffect.cpp src/export/ExportMP3.cpp msgid "Preset" @@ -9771,7 +9805,7 @@ msgstr "오디오 유니트 사전 설정을 %s 로 가져오기:" #: src/effects/audiounits/AudioUnitEffect.cpp msgid "Failed to set preset name" -msgstr "사전설정 이름 설정에 실패했습니다." +msgstr "사전설정 이름 설정 실패" #: src/effects/audiounits/AudioUnitEffect.cpp msgid "Failed to retrieve preset content" @@ -9783,7 +9817,7 @@ msgstr "속성 목록을 XML 데이터로 변환하는데 실패했습니다" #: src/effects/audiounits/AudioUnitEffect.cpp msgid "XML data is empty after conversion" -msgstr "XML 데이터는 변환 이후에 비게 됩니다." +msgstr "XML 데이터는 변환 이후에 비게 됩니다" #: src/effects/audiounits/AudioUnitEffect.cpp #, c-format @@ -9811,7 +9845,6 @@ msgstr "오디오 유니트" #. i18n-hint: abbreviates "Linux Audio Developer's Simple Plugin API" #. (Application programming interface) -#. #: src/effects/ladspa/LadspaEffect.cpp msgid "LADSPA Effects" msgstr "LADSPA 효과" @@ -9829,13 +9862,19 @@ msgid "LADSPA Effect Options" msgstr "LADSPA 효과 옵션" #: src/effects/ladspa/LadspaEffect.cpp -msgid "As part of their processing, some LADSPA effects must delay returning audio to Audacity. When not compensating for this delay, you will notice that small silences have been inserted into the audio. Enabling this option will provide that compensation, but it may not work for all LADSPA effects." -msgstr "처리의 일부 과정으로서, 일부 LADSPA 효과는 오데시티에 지연된 반환을 해야만 합니다. 이 지연에 대한 보상을 하지 않으면, 오디오에 짧은 묵음이 들어가게 됩니다. 이 옵션을 활성화하면 보상이 되나, 모든 LADSPA 효과에서 작동하는 것은 아닙니다. " +msgid "" +"As part of their processing, some LADSPA effects must delay returning audio to Audacity. When not compensating for this delay, you " +"will notice that small silences have been inserted into the audio. Enabling this option will provide that compensation, but it may " +"not work for all LADSPA effects." +msgstr "" +"처리의 일부 과정으로서, 일부 LADSPA 효과는 오데시티에 지연된 반환을 해야만 합니다.이 지연에 대한 보상을 하지 않으면, 오디오에 짧은 " +"묵음이 들어가게 됩니다.이 옵션을 활성화하면 보상이 되나, 모든 LADSPA 효과에서 작동하는 것은 아닙니다." -#. i18n-hint: An item name introducing a value, which is not part of the string but -#. appears in a following text box window; translate with appropriate punctuation -#: src/effects/ladspa/LadspaEffect.cpp src/effects/nyquist/Nyquist.cpp -#: src/effects/vamp/VampEffect.cpp +#. i18n-hint: An item name introducing a value, which is not part of the +#. string but +#. appears in a following text box window; translate with appropriate +#. punctuation +#: src/effects/ladspa/LadspaEffect.cpp src/effects/nyquist/Nyquist.cpp src/effects/vamp/VampEffect.cpp #: src/tracks/playabletrack/wavetrack/ui/SpectrumView.cpp #, c-format msgid "%s:" @@ -9847,7 +9886,6 @@ msgstr "효과 출력" #. i18n-hint: abbreviates "Linux Audio Developer's Simple Plugin API" #. (Application programming interface) -#. #: src/effects/ladspa/LadspaEffect.h msgid "LADSPA" msgstr "LADSPA" @@ -9862,12 +9900,21 @@ msgid "&Buffer Size (8 to %d) samples:" msgstr "버퍼 크기 (8에서 %d 샘플)(&B):" #: src/effects/lv2/LV2Effect.cpp -msgid "As part of their processing, some LV2 effects must delay returning audio to Audacity. When not compensating for this delay, you will notice that small silences have been inserted into the audio. Enabling this setting will provide that compensation, but it may not work for all LV2 effects." -msgstr "처리의 일부 과정으로서, 일부 LV2 효과는 오데시티에 지연된 반환을 해야만 합니다. 이 지연에 대한 보상을 하지 않으면, 오디오에 짧은 묵음이 들어가게 됩니다. 이 옵션을 활성화하면 보상이 되나, 모든 LV2 효과에서 작동하는 것은 아닙니다. " +msgid "" +"As part of their processing, some LV2 effects must delay returning audio to Audacity. When not compensating for this delay, you " +"will notice that small silences have been inserted into the audio. Enabling this setting will provide that compensation, but it " +"may not work for all LV2 effects." +msgstr "" +"처리의 일부 과정으로서, 일부 LV2 효과는 오데시티에 지연된 반환을 해야만 합니다.이 지연에 대한 보상을 하지 않으면, 오디오에 짧은 묵" +"음이 들어가게 됩니다.이 옵션을 활성화하면 보상이 되나, 모든 LV2 효과에서 작동하는 것은 아닙니다." #: src/effects/lv2/LV2Effect.cpp -msgid "LV2 effects can have a graphical interface for setting parameter values. A basic text-only method is also available. Reopen the effect for this to take effect." -msgstr "LV2 효과들은 그래픽 인터페이스로 파라메터 값을 설정할 수 있습니다. 기본적인 텍스트 인터페이스도로 사용할 수 있습니다. 설정을 적용하려면 효과를 다시 열기 바랍니다." +msgid "" +"LV2 effects can have a graphical interface for setting parameter values. A basic text-only method is also available. Reopen the " +"effect for this to take effect." +msgstr "" +"LV2 효과들은 그래픽 인터페이스로 파라메터 값을 설정할 수 있습니다.기본적인 텍스트 인터페이스도로 사용할 수 있습니다.설정을 적용하려" +"면 효과를 다시 열기 바랍니다." #: src/effects/lv2/LV2Effect.cpp msgid "Couldn't instantiate effect" @@ -9913,7 +9960,8 @@ msgstr "나이키스트 효과 지원을 오데시티에 제공합니다" msgid "Applying Nyquist Effect..." msgstr "나이키스트 효과 적용 중..." -#. i18n-hint: It is acceptable to translate this the same as for "Nyquist Prompt" +#. i18n-hint: It is acceptable to translate this the same as for "Nyquist +#. Prompt" #: src/effects/nyquist/Nyquist.cpp msgid "Nyquist Worker" msgstr "나이키스트 작업자" @@ -9928,7 +9976,7 @@ msgid "" "applying 'Spectral' effects." msgstr "" "'스펙트럼' 효과를 적용하기 위해서는\n" -"스펙트로그램 보기를 먼저 활성화하세요. " +"스펙트로그램 보기를 먼저 활성화하세요." #: src/effects/nyquist/Nyquist.cpp msgid "" @@ -9970,7 +10018,7 @@ msgstr "" #: src/effects/nyquist/Nyquist.cpp msgid "Debug Output: " -msgstr "디버그 출력:" +msgstr "디버그 출력: " #: src/effects/nyquist/Nyquist.cpp msgid "Processing complete." @@ -9998,12 +10046,12 @@ msgstr "플러그인" #: src/effects/nyquist/Nyquist.cpp msgid "Nyquist returned a list." -msgstr "나이퀴스트가 리스트를 반환함" +msgstr "나이퀴스트가 리스트를 반환함." #: src/effects/nyquist/Nyquist.cpp #, c-format msgid "Nyquist returned the value: %f" -msgstr "나이퀴스트가 값을 반환 : %f " +msgstr "나이퀴스트가 값을 반환 : %f" #: src/effects/nyquist/Nyquist.cpp #, c-format @@ -10134,8 +10182,7 @@ msgstr "파일을 선택하세요" msgid "Save file as" msgstr "다른 이름으로 저장" -#: src/effects/nyquist/Nyquist.cpp src/export/Export.cpp -#: src/export/ExportMultiple.cpp +#: src/effects/nyquist/Nyquist.cpp src/export/Export.cpp src/export/ExportMultiple.cpp msgid "untitled" msgstr "제목 없음" @@ -10149,7 +10196,7 @@ msgstr "뱀프 효과를 오데시티에 제공합니다" #: src/effects/vamp/VampEffect.cpp msgid "Sorry, Vamp Plug-ins cannot be run on stereo tracks where the individual channels of the track do not match." -msgstr "죄송합니다. Vamp 플러그인은 트랙의 개별 채널들이 일치하지 않는 스테레오 트랙에서 실행될 수 없습니다." +msgstr "죄송합니다. Vamp 플러그인은 트랙의 개별 채널들이 일치하지않는 스테레오 트랙에서 실행될 수 없습니다." #: src/effects/vamp/VampEffect.cpp msgid "Sorry, failed to load Vamp Plug-in." @@ -10167,7 +10214,8 @@ msgstr "플러그인 설정" msgid "Program" msgstr "프로그램" -#. i18n-hint: Vamp is the proper name of a software protocol for sound analysis. +#. i18n-hint: Vamp is the proper name of a software protocol for sound +#. analysis. #. It is not an abbreviation for anything. See http://vamp-plugins.org #: src/effects/vamp/VampEffect.h msgid "Vamp" @@ -10224,7 +10272,7 @@ msgstr "죄송합니다. 256자보다 더 긴 경로명은 지원하지 않습 #: src/export/Export.cpp #, c-format msgid "A file named \"%s\" already exists. Replace?" -msgstr "\"%s\" 이름의 파일이 이미 있습니다. 그래도 바꿀까요?" +msgstr "\"%s\" 파일이 이미 있습니다. 그래도 바꿀까요?" #: src/export/Export.cpp msgid "Your tracks will be mixed down and exported as one mono file." @@ -10288,12 +10336,13 @@ msgstr "출력 표시" #. i18n-hint: Some programmer-oriented terminology here: #. "Data" refers to the sound to be exported, "piped" means sent, #. and "standard in" means the default input stream that the external program, -#. named by %f, will read. And yes, it's %f, not %s -- this isn't actually used +#. named by %f, will read. And yes, it's %f, not %s -- this isn't actually +#. used #. in the program as a format string. Keep %f unchanged. #: src/export/ExportCL.cpp #, c-format msgid "Data will be piped to standard in. \"%f\" uses the file name in the export window." -msgstr "데이터는 표준 입력으로 보낼 것입니다. \"%f\"은 내보내기 창의 파일명을 사용합니다." +msgstr "데이터는 표준 입력으로 보낼 것입니다. \"%f\"은내보내기 창의 파일명을 사용합니다." #. i18n-hint files that can be run as programs #: src/export/ExportCL.cpp @@ -10331,7 +10380,7 @@ msgstr "명령 출력" #: src/export/ExportCL.cpp src/update/UpdateNoticeDialog.cpp msgid "&OK" -msgstr "확인(&O)" +msgstr "&OK" #: src/export/ExportCL.cpp msgid "You've specified a file name without an extension. Are you sure?" @@ -10344,7 +10393,7 @@ msgstr "프로그램 이름이 없습니다." #: src/export/ExportCL.cpp #, c-format msgid "\"%s\" couldn't be found." -msgstr "\"%s\" 찾을 수 없음" +msgstr "\"%s\" 찾을 수 없음." #: src/export/ExportCL.cpp #, c-format @@ -10357,7 +10406,7 @@ msgid "" "You can configure it at Preferences > Libraries." msgstr "" "진행하려면 제대로 구성된 FFmpeg가 필요합니다.\n" -"환경 설정 > 라이브러리에서 설정할 수 있습니다." +"환경설정 > 라이브러리에서 설정할 수 있습니다." #: src/export/ExportFFmpeg.cpp #, c-format @@ -10385,7 +10434,7 @@ msgstr "FFmpeg : 오류 - \"%s\" 출력 파일을 쓰기 위해 열 수 없습 #: src/export/ExportFFmpeg.cpp #, c-format msgid "FFmpeg : ERROR - Can't write headers to output file \"%s\". Error code is %d." -msgstr "FFmpeg : 오류 - 출력 파일 \"%s\"에 헤더를 기록할 수 없습니다. 오류 코드는 %d입니다." +msgstr "FFmpeg : 오류 - 출력 파일 \"%s\"에 헤더를 기록할 수 없습니다.오류 코드는 %d입니다." #. i18n-hint: "codec" is short for a "coder-decoder" algorithm #: src/export/ExportFFmpeg.cpp @@ -10415,7 +10464,7 @@ msgid "" msgstr "" "오디오 코덱 \"%s\" (0x%x) 열 수 없음\n" "\n" -"%s " +"%s" #: src/export/ExportFFmpeg.cpp msgid "FFmpeg : ERROR - Can't allocate buffer to read into from audio FIFO." @@ -10443,7 +10492,7 @@ msgstr "FFmpeg : 오류 - 잔여 데이터가 너무 많습니다." #: src/export/ExportFFmpeg.cpp msgid "FFmpeg : ERROR - Couldn't write last audio frame to output file." -msgstr "FFmpeg : 오류 - 출력 파일에 마지막 오디오 프레임을 쓰지 못했습니다" +msgstr "FFmpeg : 오류 - 출력 파일에 마지막 오디오 프레임을 쓰지 못했습니다." #: src/export/ExportFFmpeg.cpp msgid "FFmpeg : ERROR - nAudioFrameSizeOut too large." @@ -10456,7 +10505,7 @@ msgstr "FFmpeg : 오류 - 오디오 프레임을 인코딩할 수 없습니다." #: src/export/ExportFFmpeg.cpp #, c-format msgid "Attempted to export %d channels, but maximum number of channels for selected output format is %d" -msgstr "%d 채널을 내보내려고 시도했지만, 선택한 출력 형식에 대한 채널의 최대 수는 %d입니다" +msgstr "%d 채널을 내보내려고 시도했지만, 선택한 출력 형식에 대한채널의 최대 수는 %d입니다" #: src/export/ExportFFmpeg.cpp #, c-format @@ -10472,8 +10521,7 @@ msgstr "오디오를 %s로 내보내는 중" msgid "Invalid sample rate" msgstr "샘플링 주파수 사용불가" -#: src/export/ExportFFmpeg.cpp src/export/ExportMP3.cpp -#: src/menus/TrackMenus.cpp +#: src/export/ExportFFmpeg.cpp src/export/ExportMP3.cpp src/menus/TrackMenus.cpp msgid "Resample" msgstr "리샘플링" @@ -10493,7 +10541,7 @@ msgid "" "supported by the current output file format. " msgstr "" "프로젝트 샘플링 주파수 (%d) 와 비트 레이트 (%d kbps) 조합을\n" -"현재 출력포맷이 지원하지 않습니다." +"현재 출력포맷이 지원하지 않습니다. " #: src/export/ExportFFmpeg.cpp src/export/ExportMP3.cpp msgid "You may resample to one of the rates below." @@ -10505,8 +10553,7 @@ msgstr "샘플링 주파수" #. i18n-hint kbps abbreviates "thousands of bits per second" #. i18n-hint: kbps is the bitrate of the MP3 file, kilobits per second -#: src/export/ExportFFmpegDialogs.cpp src/export/ExportMP2.cpp -#: src/export/ExportMP3.cpp +#: src/export/ExportFFmpegDialogs.cpp src/export/ExportMP2.cpp src/export/ExportMP3.cpp #, c-format msgid "%d kbps" msgstr "%d kbps" @@ -10631,7 +10678,7 @@ msgstr "컴프레션" #: src/export/ExportFFmpegDialogs.cpp msgid "Frame Duration:" -msgstr "프레임 간격" +msgstr "프레임 간격:" #: src/export/ExportFFmpegDialogs.cpp msgid "Vbr Mode:" @@ -10776,7 +10823,7 @@ msgstr "코덱:" #: src/export/ExportFFmpegDialogs.cpp msgid "Not all formats and codecs are compatible. Nor are all option combinations compatible with all codecs." -msgstr "모든 형식과 코덱이 호환되는 것은 아닙니다. 또한 모든 옵션의 조합이 모든 코덱에 호환되는 것도 아닙니다." +msgstr "모든 형식과 코덱이 호환되는 것은 아닙니다. 또한 모든 옵션의 조합이모든 코덱에 호환되는 것도 아닙니다." #: src/export/ExportFFmpegDialogs.cpp msgid "Show All Formats" @@ -11057,15 +11104,19 @@ msgstr "" "선택 사항\n" "0 - 기본값" -#. i18n-hint: 'mux' is short for multiplexor, a device that selects between several inputs -#. 'Mux Rate' is a parameter that has some bearing on compression ratio for MPEG +#. i18n-hint: 'mux' is short for multiplexor, a device that selects between +#. several inputs +#. 'Mux Rate' is a parameter that has some bearing on compression ratio for +#. MPEG #. it has a hard to predict effect on the degree of compression #: src/export/ExportFFmpegDialogs.cpp msgid "Mux Rate:" msgstr "멀티플렉서 비율:" -#. i18n-hint: 'Packet Size' is a parameter that has some bearing on compression ratio for MPEG -#. compression. It measures how big a chunk of audio is compressed in one piece. +#. i18n-hint: 'Packet Size' is a parameter that has some bearing on +#. compression ratio for MPEG +#. compression. It measures how big a chunk of audio is compressed in one +#. piece. #: src/export/ExportFFmpegDialogs.cpp msgid "" "Packet size\n" @@ -11076,15 +11127,17 @@ msgstr "" "선택 사항\n" "0 - 기본값" -#. i18n-hint: 'Packet Size' is a parameter that has some bearing on compression ratio for MPEG -#. compression. It measures how big a chunk of audio is compressed in one piece. +#. i18n-hint: 'Packet Size' is a parameter that has some bearing on +#. compression ratio for MPEG +#. compression. It measures how big a chunk of audio is compressed in one +#. piece. #: src/export/ExportFFmpegDialogs.cpp msgid "Packet Size:" msgstr "패킷 크기:" #: src/export/ExportFFmpegDialogs.cpp msgid "You can't delete a preset without name" -msgstr "이름 없는 프리셋은 삭제할 수 없습니다." +msgstr "이름 없는 프리셋은 삭제할 수 없습니다" #: src/export/ExportFFmpegDialogs.cpp #, c-format @@ -11111,7 +11164,7 @@ msgstr "프리셋을 내보낼 xml 파일 선택" #: src/export/ExportFFmpegDialogs.cpp #, c-format msgid "Format %s is not compatible with codec %s." -msgstr "%s 포맷은 %s 포맷과 호환되지 않음" +msgstr "%s 포맷은 %s 포맷과 호환되지 않음." #. i18n-hint: "codec" is short for a "coder-decoder" algorithm #: src/export/ExportFFmpegDialogs.cpp @@ -11265,8 +11318,7 @@ msgstr "미친" msgid "Extreme" msgstr "극단적" -#: src/export/ExportMP3.cpp src/prefs/KeyConfigPrefs.cpp -#: plug-ins/sample-data-export.ny +#: src/export/ExportMP3.cpp src/prefs/KeyConfigPrefs.cpp plug-ins/sample-data-export.ny msgid "Standard" msgstr "표준" @@ -11311,7 +11363,8 @@ msgstr "채널 모드:" msgid "Force export to mono" msgstr "모노로 강제 내보내기" -#. i18n-hint: LAME is the name of an MP3 converter and should not be translated +#. i18n-hint: LAME is the name of an MP3 converter and should not be +#. translated #: src/export/ExportMP3.cpp msgid "Locate LAME" msgstr "LAME 찾기" @@ -11352,7 +11405,7 @@ msgid "" "Please download the latest version of 'LAME for Audacity'." msgstr "" "현재 링크하고 있는 파일은 lame_enc.dll v%d.%d임. 이버전은 오데시티 버전 %d.%d.%d 과 호환되지 않음.\n" -"최신 버전의 'LAME for Audacity' 를 다운로드 하기 바랍니다. " +"최신 버전의 'LAME for Audacity' 를 다운로드 하기 바랍니다." #: src/export/ExportMP3.cpp msgid "Only lame_enc.dll" @@ -11440,7 +11493,7 @@ msgid "" "file format. " msgstr "" "프로젝트 샘플링 주파수 (%d) 는 MP3 파일 포맷에서\n" -"지원되지 않습니다." +"지원되지 않습니다. " #: src/export/ExportMP3.cpp #, c-format @@ -11449,7 +11502,7 @@ msgid "" "supported by the MP3 file format. " msgstr "" "프로젝트 샘플링 주파수 (%d) 와 비트 레이트 (%d) 조합을 MP3 파일 포맷에서\n" -"지원되지 않습니다." +"지원되지 않습니다. " #: src/export/ExportMP3.cpp msgid "MP3 export library not found" @@ -11593,11 +11646,12 @@ msgid "" "\n" "Suggested replacement:" msgstr "" -"\"%s\" 레이블/트랙은 올바른 파일명이 아닙니다. 다음 문자는 사용할 수 없습니다: \n" +"\"%s\" 레이블/트랙은 올바른 파일명이 아닙니다.\n" +"다음 문자는 사용할 수 없습니다: \n" "\n" "%s\n" "\n" -"다음을 사용해 보십시오. " +"다음을 사용해 보십시오:" #. i18n-hint: The second %s gives a letter that can't be used. #: src/export/ExportMultiple.cpp @@ -11915,7 +11969,7 @@ msgstr "" #: src/import/Import.cpp #, c-format msgid "File \"%s\" not found." -msgstr "파일 \"%s\" 을 찾을 수 없음" +msgstr "파일 \"%s\" 을 찾을 수 없음." #. i18n-hint: %s will be the filename #: src/import/Import.cpp @@ -11952,9 +12006,9 @@ msgid "" "but none of them understood this file format." msgstr "" "오데시티에서 '%s' 파일의 형식을 인식했습니다.\n" -"가져오기 프로그램에서는 아마 다음 파일을 지원합니다:\n" -"%s,\n" -"하지만 이 파일 형식을 인식하는 프로그램은 없습니다." +"가져오기 프로그램이 지원하는 파일은 \n" +"%s\n" +"이지만, 이 파일 형식을 인식하는 프로그램은 없습니다." #: src/import/ImportAUP.cpp msgid "AUP project files (*.aup)" @@ -11996,40 +12050,40 @@ msgstr "가져오기 내부 오류... 태그가 인식되지 않음" #: src/import/ImportAUP.cpp #, c-format msgid "Invalid project '%s' attribute." -msgstr "프로젝트가 사용 불가능 '%s' 속성" +msgstr "프로젝트가 사용 불가능 '%s' 속성." #: src/import/ImportAUP.cpp msgid "Invalid project 'vpos' attribute." -msgstr "프로젝트가 사용 불가능 'vpos' 속성" +msgstr "프로젝트가 사용 불가능 'vpos' 속성." #: src/import/ImportAUP.cpp msgid "Invalid project 'h' attribute." -msgstr "프로젝트가 사용 불가능 'h' 속성" +msgstr "프로젝트가 사용 불가능 'h' 속성." #: src/import/ImportAUP.cpp msgid "Invalid project 'zoom' attribute." -msgstr "프로젝트가 사용 불가능 'zoom' 속성" +msgstr "프로젝트가 사용 불가능 'zoom' 속성." #: src/import/ImportAUP.cpp msgid "Invalid project 'sel0' attribute." -msgstr "프로젝트가 사용 불가능 'sel0' 속성" +msgstr "프로젝트가 사용 불가능 'sel0' 속성." #: src/import/ImportAUP.cpp msgid "Invalid project 'sel1' attribute." -msgstr "프로젝트가 사용 불가능 'sel1' 속성" +msgstr "프로젝트가 사용 불가능 'sel1' 속성." #: src/import/ImportAUP.cpp msgid "Invalid project 'selLow' attribute." -msgstr "프로젝트가 사용 불가능 'selLow' 속성" +msgstr "프로젝트가 사용 불가능 'selLow' 속성." #: src/import/ImportAUP.cpp msgid "Invalid project 'selHigh' attribute." -msgstr "프로젝트가 사용 불가능 'selHigh' 속성" +msgstr "프로젝트가 사용 불가능 'selHigh' 속성." #: src/import/ImportAUP.cpp #, c-format msgid "Couldn't find the project data folder: \"%s\"" -msgstr "프로젝트 데이터 폴더를 찾을 수 없습니다: \"%s\"" +msgstr "프로젝트 데이터 경로를 찾을 수 없음: \"%s\"" #: src/import/ImportAUP.cpp msgid "MIDI tracks found in project file, but this build of Audacity does not include MIDI support, bypassing track." @@ -12040,24 +12094,25 @@ msgid "Project Import" msgstr "프로젝트 가져오기" #: src/import/ImportAUP.cpp -msgid "The active project already has a time track and one was encountered in the project being imported, bypassing imported time track." -msgstr "활성화된 프로젝트가 이미 시간 트랙을 갖고 있고, 프로젝트가 가져오기 중에 있어, 타임 트랙은 무시됨" +msgid "" +"The active project already has a time track and one was encountered in the project being imported, bypassing imported time track." +msgstr "활성화된 프로젝트가 이미 시간 트랙을 갖고 있고, 프로젝트가 가져오기 중에 있어, 타임 트랙은 무시됨." #: src/import/ImportAUP.cpp msgid "Invalid sequence 'maxsamples' attribute." -msgstr "'maxsamples' 속성의 잘못된 시퀀스" +msgstr "'maxsamples' 속성의 잘못된 시퀀스." #: src/import/ImportAUP.cpp msgid "Invalid sequence 'sampleformat' attribute." -msgstr "'sampleformat' 속성의 잘못된 시퀀스" +msgstr "'sampleformat' 속성의 잘못된 시퀀스." #: src/import/ImportAUP.cpp msgid "Invalid sequence 'numsamples' attribute." -msgstr "'numsamples' 속성의 잘못된 시퀀스" +msgstr "'numsamples' 속성의 잘못된 시퀀스." #: src/import/ImportAUP.cpp msgid "Unable to parse the waveblock 'start' attribute" -msgstr "waveblock 'start'속성을 파싱할 수 없습니다." +msgstr "waveblock 'start'속성을 파싱할 수 없습니다" #: src/import/ImportAUP.cpp #, c-format @@ -12085,7 +12140,7 @@ msgid "" "\n" "Inserting silence instead." msgstr "" -"alias 파일 %s가 없음\n" +"애일리어스 파일 %s가 없음\n" "\n" "무음을 대신 삽입." @@ -12116,12 +12171,12 @@ msgstr "%s 파일을 여는데 실패" #: src/import/ImportAUP.cpp #, c-format msgid "Failed to seek to position %lld in %s" -msgstr "위치 %lld 를 %s 에서 찾을 수 없습니다." +msgstr "위치 %lld 를 %s 에서 찾을 수 없습니다" #: src/import/ImportAUP.cpp #, c-format msgid "Unable to read %lld samples from %s" -msgstr "%lld 샘플을 %s에서 읽을 수 없습니다." +msgstr "%lld 샘플을 %s에서 읽을 수 없음" #: src/import/ImportFFmpeg.cpp msgid "FFmpeg-compatible files" @@ -12480,7 +12535,7 @@ msgstr "스트림 설명을 검색할 수 없습니다" #: src/import/ImportQT.cpp msgid "Unable to get fill buffer" -msgstr "완충 버퍼(fill buffer)를 가져올 수 없습니다." +msgstr "완충 버퍼(fill buffer)를 가져올 수 없습니다" #. i18n-hint: 'Raw' means 'unprocessed' here and should usually be translated. #: src/import/ImportRaw.cpp @@ -12582,12 +12637,11 @@ msgstr "%s 오른쪽" #. last number counts all clips, #. and the last string is the name of the track containing the #. clips. -#. #: src/menus/ClipMenus.cpp #, c-format msgid "%s %d of %d clip %s" msgid_plural "%s %d of %d clips %s" -msgstr[0] "%s %d / %d 클립 %s" +msgstr[0] "%s %d / %d 클립%s" #: src/menus/ClipMenus.cpp msgid "start" @@ -12605,12 +12659,11 @@ msgstr "끝" #. last number counts all clips, #. and the last string is the name of the track containing the #. clips. -#. #: src/menus/ClipMenus.cpp #, c-format msgid "%s %d and %s %d of %d clip %s" msgid_plural "%s %d and %s %d of %d clips %s" -msgstr[0] "%s %d 및 %s %d / %d 클립 %s" +msgstr[0] "%s %d 과 %s %d / %d 클립 %s" #. i18n-hint: #. first number identifies one of a sequence of clips, @@ -12630,8 +12683,7 @@ msgstr "타임 쉬프트한 클립을 오른쪽으로" msgid "Time shifted clips to the left" msgstr "타임 쉬프트한 클립을 왼쪽으로" -#: src/menus/ClipMenus.cpp src/prefs/MousePrefs.cpp -#: src/tracks/ui/TimeShiftHandle.cpp +#: src/menus/ClipMenus.cpp src/prefs/MousePrefs.cpp src/tracks/ui/TimeShiftHandle.cpp msgid "Time-Shift" msgstr "시간 이동" @@ -12714,7 +12766,7 @@ msgstr "클립보드로 잘라내기" #: src/menus/EditMenus.cpp #, c-format msgid "Deleted %.2f seconds at t=%.2f" -msgstr "t=%.2f에서 %.2f초를 삭제했습니다" +msgstr "%.2f초를 삭제 (t=%.2f)" #: src/menus/EditMenus.cpp msgid "Pasting one type of track into another is not allowed." @@ -12743,7 +12795,7 @@ msgstr "분할 잘라내기" #: src/menus/EditMenus.cpp #, c-format msgid "Split-deleted %.2f seconds at t=%.2f" -msgstr "t-=%.2f에서 %.2f초를 분할 삭제했습니다" +msgstr "%.2f초를 분할 삭제 (t=%.2f)" #: src/menus/EditMenus.cpp msgid "Split Delete" @@ -12769,8 +12821,7 @@ msgstr "%.2f초부터 %.2f초까지 선택한 오디오 트랙을 도려 냅니 msgid "Trim Audio" msgstr "오디오 트리밍" -#: src/menus/EditMenus.cpp -#: src/tracks/playabletrack/wavetrack/ui/WaveTrackControls.cpp +#: src/menus/EditMenus.cpp src/tracks/playabletrack/wavetrack/ui/WaveTrackControls.cpp msgid "Split" msgstr "분할하기" @@ -12785,7 +12836,7 @@ msgstr "새로 분할하기" #: src/menus/EditMenus.cpp #, c-format msgid "Joined %.2f seconds at t=%.2f" -msgstr "t=%.2f에서 %.2f초를 연결했습니다" +msgstr "%.2f초를 합침 (t=%.2f)" #: src/menus/EditMenus.cpp msgid "Join" @@ -12794,7 +12845,7 @@ msgstr "연결하기" #: src/menus/EditMenus.cpp #, c-format msgid "Detached %.2f seconds at t=%.2f" -msgstr "t=%.2f에서 %.2f초를 분리했습니다" +msgstr "%.2f초를 분리 (t=%.2f)" #: src/menus/EditMenus.cpp msgid "Detach" @@ -12952,8 +13003,8 @@ msgid "" "Cannot create directory '%s'. \n" "File already exists that is not a directory" msgstr "" -"'%s' 폴더를 만들 수 없습니다.\n" -"폴더가 아닌 파일이 이미 있습니다" +"디엑토리를 생성할 수 없음 '%s'. \n" +"디렉토리가 아닌 파일이 이미 존재함" #: src/menus/FileMenus.cpp msgid "Export Selected Audio" @@ -13123,7 +13174,7 @@ msgstr "숨겨진 파일 메뉴" #: src/menus/FileMenus.cpp msgid "Export as FLAC" -msgstr "FLAC로 내보내기" +msgstr "FLAC으로 내보내기" #: src/menus/HelpMenus.cpp #, c-format @@ -13223,8 +13274,7 @@ msgstr "지원 요청 자료 만들기(&G)..." msgid "&Check for Updates..." msgstr "업데이트 확인(&C)..." -#: src/menus/LabelMenus.cpp src/toolbars/TranscriptionToolBar.cpp -#: src/tracks/labeltrack/ui/LabelTrackView.cpp +#: src/menus/LabelMenus.cpp src/toolbars/TranscriptionToolBar.cpp src/tracks/labeltrack/ui/LabelTrackView.cpp msgid "Added label" msgstr "추가된 레이블" @@ -13537,7 +13587,7 @@ msgstr "매크로 적용(&A)" #: src/menus/PluginMenus.cpp msgid "Palette..." -msgstr "팔레트" +msgstr "팔레트..." #: src/menus/PluginMenus.cpp msgid "Reset &Configuration" @@ -13590,11 +13640,11 @@ msgstr "트랙 보기 설정..." #: src/menus/PluginMenus.cpp msgid "Get Preference..." -msgstr "환경 설정 가져오기..." +msgstr "환경설정 가져오기..." #: src/menus/PluginMenus.cpp msgid "Set Preference..." -msgstr "환경 설정..." +msgstr "환경설정..." #: src/menus/PluginMenus.cpp msgid "Set Clip..." @@ -13615,7 +13665,7 @@ msgstr "프로젝트 설정..." #. i18n-hint: Scriptables are commands normally used from Python, Perl etc. #: src/menus/PluginMenus.cpp msgid "Scripta&bles II" -msgstr "스크립터블 II...(&B)" +msgstr "스크립터블 II(&B)" #: src/menus/PluginMenus.cpp msgid "Set Track..." @@ -13914,7 +13964,6 @@ msgstr "커서 길게 오른쪽으로(&M)" #. i18n-hint: These commands assist the user in finding a sound by ear. ... #. "Scrubbing" is variable-speed playback, ... #. "Seeking" is normal speed playback but with skips, ... -#. #: src/menus/SelectMenus.cpp src/tracks/ui/Scrubbing.cpp msgid "See&k" msgstr "탐색(&K)" @@ -14129,13 +14178,11 @@ msgstr "이 버전의 오데시티에서는 각 프로젝트 창에 한 개의 msgid "Created new time track" msgstr "새로운 시간 트랙을 만들었습니다" -#: src/menus/TrackMenus.cpp -#: src/tracks/playabletrack/wavetrack/ui/WaveTrackControls.cpp +#: src/menus/TrackMenus.cpp src/tracks/playabletrack/wavetrack/ui/WaveTrackControls.cpp msgid "New sample rate (Hz):" msgstr "새 샘플링 주파수(Hz):" -#: src/menus/TrackMenus.cpp -#: src/tracks/playabletrack/wavetrack/ui/WaveTrackControls.cpp +#: src/menus/TrackMenus.cpp src/tracks/playabletrack/wavetrack/ui/WaveTrackControls.cpp msgid "The entered value is invalid" msgstr "입력한 값이 무효합니다" @@ -14154,12 +14201,12 @@ msgstr "트랙 리샘플링" #: src/menus/TrackMenus.cpp msgid "Please select at least one audio track and one MIDI track." -msgstr "최소한 하나 이상의 오디오 트랙과 하나의 MIDI 트랙을 선택하세요" +msgstr "최소한 하나 이상의 오디오 트랙과 하나의 MIDI 트랙을 선택하세요." #: src/menus/TrackMenus.cpp #, c-format msgid "Alignment completed: MIDI from %.2f to %.2f secs, Audio from %.2f to %.2f secs." -msgstr "정렬 완료: %.2f초부터 %.2f초까지의 미디, %.2f초부터 %.2f초까지의 오디오." +msgstr "정렬 완료: %.2f초부터 %.2f초까지의 미디,%.2f초부터 %.2f초까지의 오디오." #: src/menus/TrackMenus.cpp msgid "Sync MIDI with Audio" @@ -14168,7 +14215,7 @@ msgstr "미디와 오디오 동기화" #: src/menus/TrackMenus.cpp #, c-format msgid "Alignment error: input too short: MIDI from %.2f to %.2f secs, Audio from %.2f to %.2f secs." -msgstr "정렬 오류: 입력값이 너무 짧음: %.2f초부터 %.2f초까지의 미디, %.2f초부터 %.2f초까지의 오디오." +msgstr "정렬 오류: 입력값이 너무 짧음: %.2f초부터 %.2f초까지의 미디,%.2f초부터 %.2f초까지의 오디오." #: src/menus/TrackMenus.cpp msgid "Internal error reported by alignment process." @@ -14382,18 +14429,19 @@ msgstr "포커스된 트랙: 맨 위로 이동(&O)" msgid "Move Focused Track to &Bottom" msgstr "포커스된 트랙: 맨 아래로 이동(&B)" -#. i18n-hint: These are strings for the status bar, and indicate whether Audacity +#. i18n-hint: These are strings for the status bar, and indicate whether +#. Audacity #. is playing or recording or stopped, and whether it is paused; #. progressive verb form #: src/menus/TransportMenus.cpp src/toolbars/ControlToolBar.cpp msgid "Playing" -msgstr "재생 중" +msgstr "재생" -#. i18n-hint: These are strings for the status bar, and indicate whether Audacity +#. i18n-hint: These are strings for the status bar, and indicate whether +#. Audacity #. is playing or recording or stopped, and whether it is paused; #. progressive verb form -#: src/menus/TransportMenus.cpp src/prefs/MidiIOPrefs.cpp -#: src/toolbars/ControlToolBar.cpp +#: src/menus/TransportMenus.cpp src/prefs/MidiIOPrefs.cpp src/toolbars/ControlToolBar.cpp msgid "Recording" msgstr "녹음" @@ -14436,7 +14484,7 @@ msgstr "" #: src/menus/TransportMenus.cpp msgid "Please select in a mono track." -msgstr "모노 트랙을 선택하세요" +msgstr "모노 트랙을 선택하세요." #: src/menus/TransportMenus.cpp msgid "Please select in a stereo track or two mono tracks." @@ -14521,7 +14569,7 @@ msgstr "오디오 장치 다시 검색(&E)" #: src/menus/TransportMenus.cpp msgid "Transport &Options" -msgstr "전송 옵션(&O)" +msgstr "전송 옵션 (&O)" #: src/menus/TransportMenus.cpp msgid "Sound Activation Le&vel..." @@ -14549,7 +14597,7 @@ msgstr "자동 녹음 레벨 조정 (켬/끔)(&U)" #: src/menus/TransportMenus.cpp msgid "T&ransport" -msgstr "전송(&R)" +msgstr "전송 (&R)" #. i18n-hint: (verb) Start playing audio #: src/menus/TransportMenus.cpp @@ -14662,7 +14710,7 @@ msgstr "선택 영역 확대(&Z)" #: src/menus/ViewMenus.cpp msgid "Zoom &Toggle" -msgstr " 줌 토글(&T)" +msgstr "줌 토글(&T)" #: src/menus/ViewMenus.cpp msgid "Advanced &Vertical Zooming" @@ -14753,28 +14801,30 @@ msgstr "파형 디코딩" #: src/ondemand/ODWaveTrackTaskQueue.cpp #, c-format msgid "%s %2.0f%% complete. Click to change task focal point." -msgstr "%s %2.0f%% 완료됨. 작업 포컬 포인트를 변경하려면 클릭하기 바랍니다. " +msgstr "%s %2.0f%% 완료됨. 작업 포컬 포인트를 변경하려면 클릭하기 바랍니다." #: src/prefs/ApplicationPrefs.cpp -#, fuzzy msgid "Preferences for Application" -msgstr "품질 환경설정" +msgstr "응용프로그램 환경설정" -#. i18n-hint: Title for the update notifications panel in the preferences dialog. +#. i18n-hint: Title for the update notifications panel in the preferences +#. dialog. #: src/prefs/ApplicationPrefs.cpp msgid "Update notifications" -msgstr "" +msgstr "업데이트 알림" #. i18n-hint: Check-box title that configures periodic updates checking. #: src/prefs/ApplicationPrefs.cpp -#, fuzzy msgctxt "application preferences" msgid "&Check for updates" -msgstr "업데이트 확인(&C)..." +msgstr "업데이트 확인" #: src/prefs/ApplicationPrefs.cpp -msgid "App update checking requires network access. In order to protect your privacy, Audacity does not store any personal information." +msgid "" +"App update checking requires network access. In order to protect your privacy, Audacity does not store any personal information." msgstr "" +"앱 업데이트를 확인하기 위해서는 네트워크에 접속해 있어야 합니다. 개인정보 보호를 위해서 오데시티는 어떠한 개인정보도 저장하지 않습" +"니다." #: src/prefs/BatchPrefs.cpp src/prefs/BatchPrefs.h msgid "Batch" @@ -14782,7 +14832,7 @@ msgstr "일괄처리" #: src/prefs/BatchPrefs.cpp msgid "Preferences for Batch" -msgstr "배치 환경 설정" +msgstr "배치 환경설정" #: src/prefs/BatchPrefs.cpp src/prefs/TracksBehaviorsPrefs.cpp msgid "Behaviors" @@ -14815,19 +14865,16 @@ msgstr "호스트(&H):" msgid "Using:" msgstr "사용 중:" -#: src/prefs/DevicePrefs.cpp src/prefs/MidiIOPrefs.cpp -#: src/prefs/PlaybackPrefs.cpp src/prefs/PlaybackPrefs.h +#: src/prefs/DevicePrefs.cpp src/prefs/MidiIOPrefs.cpp src/prefs/PlaybackPrefs.cpp src/prefs/PlaybackPrefs.h msgid "Playback" msgstr "재생" #: src/prefs/DevicePrefs.cpp src/prefs/MidiIOPrefs.cpp msgid "&Device:" -msgstr "장치(&D):" +msgstr "장치 (&D)" #. i18n-hint: modifier as in "Recording preferences", not progressive verb -#: src/prefs/DevicePrefs.cpp src/prefs/RecordingPrefs.cpp -#: src/prefs/RecordingPrefs.h -#, fuzzy +#: src/prefs/DevicePrefs.cpp src/prefs/RecordingPrefs.cpp src/prefs/RecordingPrefs.h msgctxt "preference" msgid "Recording" msgstr "녹음" @@ -14844,8 +14891,7 @@ msgstr "채널(&N):" msgid "Latency" msgstr "지연 시간" -#: src/prefs/DevicePrefs.cpp src/prefs/RecordingPrefs.cpp -#: src/widgets/NumericTextCtrl.cpp +#: src/prefs/DevicePrefs.cpp src/prefs/RecordingPrefs.cpp src/widgets/NumericTextCtrl.cpp msgid "milliseconds" msgstr "밀리초" @@ -14874,8 +14920,7 @@ msgid "2 (Stereo)" msgstr "2 (스테레오)" #. i18n-hint: Directories, also called directories, in computer file systems -#: src/prefs/DirectoriesPrefs.cpp src/prefs/DirectoriesPrefs.h -#: src/widgets/UnwritableLocationErrorDialog.cpp +#: src/prefs/DirectoriesPrefs.cpp src/prefs/DirectoriesPrefs.h src/widgets/UnwritableLocationErrorDialog.cpp msgid "Directories" msgstr "폴더" @@ -14893,7 +14938,7 @@ msgid "" "Fill in a field to always go to that directory for that operation." msgstr "" "이전 작업에 사용되었던 디렉토리를 사용하려면 필드를 비워두십시오. \n" -"필드를 채우면 작업에 항상 그 디렉토리가 사용됩니다. " +"필드를 채우면 작업에 항상 그 디렉토리가 사용됩니다." #: src/prefs/DirectoriesPrefs.cpp msgid "O&pen:" @@ -14933,11 +14978,11 @@ msgstr "매크로 출력 (&M)" #: src/prefs/DirectoriesPrefs.cpp msgid "Temporary files directory" -msgstr "임시 파일 폴더" +msgstr "임시 파일 디렉토리" #: src/prefs/DirectoriesPrefs.cpp msgid "&Location:" -msgstr "위치(&L):" +msgstr "위치 (&L)" #: src/prefs/DirectoriesPrefs.cpp msgid "Temporary files directory cannot be on a FAT drive." @@ -14957,7 +15002,7 @@ msgstr "임시 폴더로 사용할 위치를 선택하세요" #: src/prefs/DirectoriesPrefs.cpp msgid "unavailable - above location doesn't exist" -msgstr "사용할 수 없음 - 위의 위치가 존재하지 않음" +msgstr "사용불가 - 상위 위치가 존재하지 않음" #: src/prefs/DirectoriesPrefs.cpp msgid "Choose a location" @@ -14984,7 +15029,7 @@ msgstr "%s 폴더는 쓸 수 없습니다" #: src/prefs/DirectoriesPrefs.cpp msgid "Changes to temporary directory will not take effect until Audacity is restarted" -msgstr "임시 폴더 변경은 오데시티를 재시작해야 적용됩니다." +msgstr "임시 폴더 변경은 오데시티를 재시작해야 적용됩니다" #: src/prefs/DirectoriesPrefs.cpp msgid "Temp Directory Update" @@ -15016,7 +15061,6 @@ msgstr "형식순으로 묶음" #. i18n-hint: abbreviates "Linux Audio Developer's Simple Plugin API" #. (Application programming interface) -#. #: src/prefs/EffectsPrefs.cpp msgid "&LADSPA" msgstr "&LADSPA" @@ -15028,20 +15072,23 @@ msgid "LV&2" msgstr "LV&2" #. i18n-hint: "Nyquist" is an embedded interpreted programming language in -#. Audacity, named in honor of the Swedish-American Harry Nyquist (or Nyqvist). +#. Audacity, named in honor of the Swedish-American Harry Nyquist (or +#. Nyqvist). #. In the translations of this and other strings, you may transliterate the #. name into another alphabet. #: src/prefs/EffectsPrefs.cpp msgid "N&yquist" msgstr "나이퀴스트(&Y)" -#. i18n-hint: Vamp is the proper name of a software protocol for sound analysis. +#. i18n-hint: Vamp is the proper name of a software protocol for sound +#. analysis. #. It is not an abbreviation for anything. See http://vamp-plugins.org #: src/prefs/EffectsPrefs.cpp msgid "&Vamp" msgstr "&Vamp" -#. i18n-hint: Abbreviates Virtual Studio Technology, an audio software protocol +#. i18n-hint: Abbreviates Virtual Studio Technology, an audio software +#. protocol #. developed by Steinberg GmbH #: src/prefs/EffectsPrefs.cpp msgid "V&ST" @@ -15142,8 +15189,12 @@ msgid "Unused filters:" msgstr "미사용 필터:" #: src/prefs/ExtImportPrefs.cpp -msgid "There are space characters (spaces, newlines, tabs or linefeeds) in one of the items. They are likely to break the pattern matching. Unless you know what you are doing, it is recommended to trim spaces. Do you want Audacity to trim spaces for you?" -msgstr "항목 중 하나에 공백 문자(공백, 개행, 탭, 라인피드)들이 있습니다. 패턴 매칭을 깰 것 같습니다. 무엇을 하는 것인지 잘 모르겠으면, 공백 문자 잘라내기를 추천합니다. 오데시티에서 공백 문자를 잘라내도록 할까요?" +msgid "" +"There are space characters (spaces, newlines, tabs or linefeeds) in one of the items. They are likely to break the pattern " +"matching. Unless you know what you are doing, it is recommended to trim spaces. Do you want Audacity to trim spaces for you?" +msgstr "" +"항목 중 하나에 공백 문자(공백, 개행, 탭, 라인피드)들이 있습니다. 패턴 매칭을 깰 것 같습니다.무엇을 하는 것인지 잘 모르겠으면, 공백 " +"문자 잘라내기를 추천합니다.오데시티에서 공백 문자를 잘라내도록 할까요?" #: src/prefs/ExtImportPrefs.cpp msgid "Spaces detected" @@ -15349,7 +15400,7 @@ msgstr "KeyConfig 환경설정" #: src/prefs/KeyConfigPrefs.cpp msgid "Keyboard preferences currently unavailable." -msgstr "키보드 환경 설정은 현재 사용할 수 없습니다." +msgstr "키보드 환경설정은 현재 사용할 수 없습니다." #: src/prefs/KeyConfigPrefs.cpp msgid "Open a new project to modify keyboard shortcuts." @@ -15454,7 +15505,8 @@ msgstr "%d개의 키보드 단축키를 불러왔습니다\n" #: src/prefs/KeyConfigPrefs.cpp msgid "" "\n" -"The following commands are not mentioned in the imported file, but have their shortcuts removed because of the conflict with other new shortcuts:\n" +"The following commands are not mentioned in the imported file, but have their shortcuts removed because of the conflict with other " +"new shortcuts:\n" msgstr "" "\n" "다음 명령은 가져온 파일에 지정되지 않았으나, 새로운 단축키와 충돌로 인해 삭제됨\n" @@ -15524,7 +15576,7 @@ msgstr "키 설정" #: src/prefs/LibraryPrefs.cpp msgid "Preferences for Library" -msgstr "라이브러리 환경 설정" +msgstr "라이브러리 환경설정" #: src/prefs/LibraryPrefs.cpp msgid "LAME MP3 Export Library" @@ -15585,7 +15637,7 @@ msgstr "미디 장치" #: src/prefs/MidiIOPrefs.cpp msgid "Preferences for MidiIO" -msgstr "midiIO 환경 설정" +msgstr "midiIO 환경설정" #: src/prefs/MidiIOPrefs.cpp msgid "No MIDI interfaces" @@ -15613,14 +15665,15 @@ msgstr "미디 신디사이저 레이턴시는 정수여야 합니다" msgid "Midi IO" msgstr "Midi IO" -#. i18n-hint: Modules are optional extensions to Audacity that add NEW features. +#. i18n-hint: Modules are optional extensions to Audacity that add NEW +#. features. #: src/prefs/ModulePrefs.cpp msgid "Modules" msgstr "모듈" #: src/prefs/ModulePrefs.cpp msgid "Preferences for Module" -msgstr "Module 환경 설정" +msgstr "Module 환경설정" #: src/prefs/ModulePrefs.cpp msgid "" @@ -15633,17 +15686,17 @@ msgstr "" #. i18n-hint preserve the leading spaces #: src/prefs/ModulePrefs.cpp msgid " 'Ask' means Audacity will ask if you want to load the module each time it starts." -msgstr "'확인하기'를 선택하면 오데시티가 시작할 때마다 모듈을 로딩할 것인지를 묻습니다. " +msgstr " '확인하기'를 선택하면 오데시티가 시작할 때마다 모듈을 로딩할 것인지를 묻습니다." #. i18n-hint preserve the leading spaces #: src/prefs/ModulePrefs.cpp msgid " 'Failed' means Audacity thinks the module is broken and won't run it." -msgstr "'실패'를 선택하면, 오데시티는 모듈이 작동하지 않는 것으로 간주하고 실행하지 않습니다." +msgstr " '실패'를 선택하면, 오데시티는 모듈이 작동하지 않는 것으로 간주하고 실행하지 않습니다." #. i18n-hint preserve the leading spaces #: src/prefs/ModulePrefs.cpp msgid " 'New' means no choice has been made yet." -msgstr "'신규'를 선택하면 아무 선택도 하지 않았음을 의미" +msgstr " '신규'는 아직 아무 선택도 하지 않았음을 의미." #: src/prefs/ModulePrefs.cpp msgid "Changes to these settings only take effect when Audacity starts up." @@ -15709,10 +15762,8 @@ msgstr "왼쪽 드래그" msgid "Set Selection Range" msgstr "선택 범위 설정" -#: src/prefs/MousePrefs.cpp -#: src/tracks/playabletrack/notetrack/ui/NoteTrackVZoomHandle.cpp -#: src/tracks/playabletrack/wavetrack/ui/SpectrumVZoomHandle.cpp -#: src/tracks/playabletrack/wavetrack/ui/WaveformVZoomHandle.cpp +#: src/prefs/MousePrefs.cpp src/tracks/playabletrack/notetrack/ui/NoteTrackVZoomHandle.cpp +#: src/tracks/playabletrack/wavetrack/ui/SpectrumVZoomHandle.cpp src/tracks/playabletrack/wavetrack/ui/WaveformVZoomHandle.cpp msgid "Shift-Left-Click" msgstr "Shift-왼쪽 클릭" @@ -15859,7 +15910,7 @@ msgstr "파형 스크롤" #: src/prefs/MousePrefs.cpp msgid "-Wheel-Rotate" -msgstr "-휠 회전" +msgstr "-마우스 휠" #: src/prefs/MousePrefs.cpp msgid "Zoom waveform in or out" @@ -15867,7 +15918,7 @@ msgstr "파형 확대/축소" #: src/prefs/MousePrefs.cpp msgid "-Shift-Wheel-Rotate" -msgstr "-Shift-휠 회전" +msgstr "-Shift-마우스 휠" #: src/prefs/MousePrefs.cpp msgid "Vertical Scale Waveform (dB) range" @@ -15875,7 +15926,7 @@ msgstr "수직 눈금 파형 (dB) 범위" #: src/prefs/PlaybackPrefs.cpp msgid "Preferences for Playback" -msgstr "재생 환경 설정" +msgstr "재생 환경설정" #: src/prefs/PlaybackPrefs.cpp msgid "Effects Preview" @@ -15920,11 +15971,11 @@ msgstr "마이크로 페이드 (&M)" #: src/prefs/PlaybackPrefs.cpp msgid "Always scrub un&pinned" -msgstr "스크러빙 표시 고정 (&P)" +msgstr "스크러빙 표시 고정하지 않ㅇ (&P)" #: src/prefs/PrefsDialog.cpp msgid "Audacity Preferences" -msgstr "오데시티 환경 설정" +msgstr "오데시티 환경설정" #: src/prefs/PrefsDialog.cpp msgid "Category" @@ -15967,7 +16018,8 @@ msgstr "실시간 변환" msgid "Sample Rate Con&verter:" msgstr "샘플링 주파수 변환(&V):" -#. i18n-hint: technical term for randomization to reduce undesirable resampling artifacts +#. i18n-hint: technical term for randomization to reduce undesirable +#. resampling artifacts #: src/prefs/QualityPrefs.cpp msgid "&Dither:" msgstr "디더(&D):" @@ -15980,7 +16032,8 @@ msgstr "고품질 변환" msgid "Sample Rate Conver&ter:" msgstr "샘플링 주파수 변환(&T):" -#. i18n-hint: technical term for randomization to reduce undesirable resampling artifacts +#. i18n-hint: technical term for randomization to reduce undesirable +#. resampling artifacts #: src/prefs/QualityPrefs.cpp msgid "Dit&her:" msgstr "디더(&H):" @@ -15995,7 +16048,7 @@ msgstr "24-비트" #: src/prefs/RecordingPrefs.cpp msgid "Preferences for Recording" -msgstr "레코딩 환경 설정" +msgstr "레코딩 환경설정" #: src/prefs/RecordingPrefs.cpp msgid "Play &other tracks while recording (overdub)" @@ -16013,7 +16066,8 @@ msgstr "소프트웨어 입력신호 플레이 쓰루 (&S)" msgid "Record on a new track" msgstr "새 트랙에 녹음" -#. i18n-hint: Dropout is a loss of a short sequence audio sample data from the recording +#. i18n-hint: Dropout is a loss of a short sequence audio sample data from the +#. recording #: src/prefs/RecordingPrefs.cpp msgid "Detect dropouts" msgstr "드롭아웃 감지" @@ -16099,7 +16153,7 @@ msgstr "펀치 엔 롤 녹음" #: src/prefs/RecordingPrefs.cpp msgid "Pre-ro&ll:" -msgstr "프리롤 (&L) : " +msgstr "프리롤 (&L) :" #: src/prefs/RecordingPrefs.cpp msgid "Cross&fade:" @@ -16110,12 +16164,14 @@ msgstr "크로스 페이드 (&F) :" msgid "Mel" msgstr "Mel" -#. i18n-hint: The name of a frequency scale in psychoacoustics, named for Heinrich Barkhausen +#. i18n-hint: The name of a frequency scale in psychoacoustics, named for +#. Heinrich Barkhausen #: src/prefs/SpectrogramSettings.cpp msgid "Bark" msgstr "Bark" -#. i18n-hint: The name of a frequency scale in psychoacoustics, abbreviates Equivalent Rectangular Bandwidth +#. i18n-hint: The name of a frequency scale in psychoacoustics, abbreviates +#. Equivalent Rectangular Bandwidth #: src/prefs/SpectrogramSettings.cpp msgid "ERB" msgstr "ERB" @@ -16197,16 +16253,16 @@ msgstr "스펙트로그램" #: src/prefs/SpectrumPrefs.cpp msgid "Preferences for Spectrum" -msgstr "스펙트럼 환경 설정" +msgstr "스펙트럼 환경설정" #. i18n-hint: use is a verb #: src/prefs/SpectrumPrefs.cpp src/prefs/WaveformPrefs.cpp msgid "&Use Preferences" -msgstr "환경 설정 적용(&U)" +msgstr "환경설정 사용(&U)" #: src/prefs/SpectrumPrefs.cpp src/prefs/WaveformPrefs.cpp msgid "S&cale:" -msgstr "스케일 (&C) : " +msgstr "스케일 (&C):" #: src/prefs/SpectrumPrefs.cpp msgid "Mi&n Frequency (Hz):" @@ -16230,7 +16286,7 @@ msgstr "범위 (dB)(&R):" #: src/prefs/SpectrumPrefs.cpp msgid "High &boost (dB/dec):" -msgstr "고음 부스트 (&B) (dB/dec) : " +msgstr "고음 부스트 (dB/dec) (&B):" #: src/prefs/SpectrumPrefs.cpp msgid "Algorithm" @@ -16266,7 +16322,7 @@ msgstr "윈도우 형식(&T):" #: src/prefs/SpectrumPrefs.cpp msgid "&Zero padding factor:" -msgstr "0 채우기 팩터 (&Z) : " +msgstr "0 채우기 팩터 (&Z) :" #: src/prefs/SpectrumPrefs.cpp msgid "Ena&ble Spectral Selection" @@ -16276,7 +16332,8 @@ msgstr "스펙트럼 선택 사용하기(&B)" msgid "Show a grid along the &Y-axis" msgstr "Y-축을 따라 격자 보이기(&Y)" -#. i18n-hint: FFT stands for Fast Fourier Transform and probably shouldn't be translated +#. i18n-hint: FFT stands for Fast Fourier Transform and probably shouldn't be +#. translated #: src/prefs/SpectrumPrefs.cpp msgid "FFT Find Notes" msgstr "FFT 노트 찾기" @@ -16338,7 +16395,8 @@ msgid "The maximum number of notes must be in the range 1..128" msgstr "최대 노트 개수는 1부터 128사이의 범위 내에 있어야 합니다" #. i18n-hint: A theme is a consistent visual style across an application's -#. graphical user interface, including choices of colors, and similarity of images +#. graphical user interface, including choices of colors, and similarity of +#. images #. such as those on button controls. Audacity can load and save alternative #. themes. #: src/prefs/ThemePrefs.cpp src/prefs/ThemePrefs.h @@ -16347,7 +16405,7 @@ msgstr "테마" #: src/prefs/ThemePrefs.cpp msgid "Preferences for Theme" -msgstr "테마 환경 설정" +msgstr "테마 환경설정" #: src/prefs/ThemePrefs.cpp msgid "Info" @@ -16416,7 +16474,7 @@ msgstr "트랙 동작" #: src/prefs/TracksBehaviorsPrefs.cpp msgid "Preferences for TracksBehaviors" -msgstr "트랙 작동 환경 설정" +msgstr "트랙 작동 환경설정" #: src/prefs/TracksBehaviorsPrefs.cpp msgid "Simple" @@ -16428,7 +16486,7 @@ msgstr "멀티 트랙" #: src/prefs/TracksBehaviorsPrefs.cpp msgid "&Select all audio, if selection required" -msgstr "선택이 필요한 경우, 모든 오디오 선택 (&S) " +msgstr "선택이 필요한 경우, 모든 오디오 선택 (&S)" #. i18n-hint: Cut-lines are lines that can expand to show the cut audio. #: src/prefs/TracksBehaviorsPrefs.cpp @@ -16543,14 +16601,13 @@ msgstr "샘플" msgid "4 Pixels per Sample" msgstr "샘플당 4픽셀" -#: src/prefs/TracksPrefs.cpp -#: src/tracks/playabletrack/notetrack/ui/NoteTrackVZoomHandle.cpp +#: src/prefs/TracksPrefs.cpp src/tracks/playabletrack/notetrack/ui/NoteTrackVZoomHandle.cpp msgid "Max Zoom" msgstr "최대 배율" #: src/prefs/TracksPrefs.cpp msgid "Preferences for Tracks" -msgstr "트랙 환경 설정" +msgstr "트랙 환경설정" #: src/prefs/TracksPrefs.cpp msgid "Auto-&fit track height" @@ -16582,7 +16639,7 @@ msgstr "기본 보기 모드(&V):" #: src/prefs/TracksPrefs.cpp msgid "Default Waveform scale:" -msgstr "기본 파형 크기 : " +msgstr "기본 파형 크기:" #: src/prefs/TracksPrefs.cpp msgid "Display &samples:" @@ -16615,7 +16672,7 @@ msgstr "경고" #: src/prefs/WarningsPrefs.cpp msgid "Preferences for Warnings" -msgstr "경고 환경 설정" +msgstr "경고 환경설정" #: src/prefs/WarningsPrefs.cpp msgid "Show Warnings/Prompts for" @@ -16652,13 +16709,14 @@ msgstr "파형" #: src/prefs/WaveformPrefs.cpp msgid "Preferences for Waveforms" -msgstr "파형 환경 설정" +msgstr "파형 환경설정" #: src/prefs/WaveformPrefs.cpp msgid "Waveform dB &range:" msgstr "파형 dB 범위 (&R)" -#. i18n-hint: These are strings for the status bar, and indicate whether Audacity +#. i18n-hint: These are strings for the status bar, and indicate whether +#. Audacity #. is playing or recording or stopped, and whether it is paused; #. progressive verb form #: src/toolbars/ControlToolBar.cpp @@ -16697,7 +16755,8 @@ msgstr "끝까지 선택" msgid "Select to Start" msgstr "시작까지 선택" -#. i18n-hint: These are strings for the status bar, and indicate whether Audacity +#. i18n-hint: These are strings for the status bar, and indicate whether +#. Audacity #. is playing or recording or stopped, and whether it is paused. #: src/toolbars/ControlToolBar.cpp src/tracks/ui/Scrubbing.cpp #, c-format @@ -16713,7 +16772,7 @@ msgstr "%s." #. with the big buttons on it (play record etc) #: src/toolbars/ControlToolBar.cpp msgid "&Transport Toolbar" -msgstr "전송 도구모음(&T)" +msgstr "전송 도구모음 (&T)" #. i18n-hint: (noun) It's the device used for playback. #: src/toolbars/DeviceToolBar.cpp @@ -16787,17 +16846,13 @@ msgstr "선택 오디오 무음 처리" msgid "Sync-Lock Tracks" msgstr "트랙 동기화-잠금" -#: src/toolbars/EditToolBar.cpp -#: src/tracks/playabletrack/notetrack/ui/NoteTrackVZoomHandle.cpp -#: src/tracks/playabletrack/wavetrack/ui/SpectrumVZoomHandle.cpp -#: src/tracks/playabletrack/wavetrack/ui/WaveformVZoomHandle.cpp +#: src/toolbars/EditToolBar.cpp src/tracks/playabletrack/notetrack/ui/NoteTrackVZoomHandle.cpp +#: src/tracks/playabletrack/wavetrack/ui/SpectrumVZoomHandle.cpp src/tracks/playabletrack/wavetrack/ui/WaveformVZoomHandle.cpp msgid "Zoom In" msgstr "확대" -#: src/toolbars/EditToolBar.cpp -#: src/tracks/playabletrack/notetrack/ui/NoteTrackVZoomHandle.cpp -#: src/tracks/playabletrack/wavetrack/ui/SpectrumVZoomHandle.cpp -#: src/tracks/playabletrack/wavetrack/ui/WaveformVZoomHandle.cpp +#: src/toolbars/EditToolBar.cpp src/tracks/playabletrack/notetrack/ui/NoteTrackVZoomHandle.cpp +#: src/tracks/playabletrack/wavetrack/ui/SpectrumVZoomHandle.cpp src/tracks/playabletrack/wavetrack/ui/WaveformVZoomHandle.cpp msgid "Zoom Out" msgstr "축소" @@ -16830,7 +16885,8 @@ msgstr "녹음 레벨 미터" msgid "Playback Meter" msgstr "재생 레벨 미터" -#. i18n-hint: (noun) The meter that shows the loudness of the audio being recorded. +#. i18n-hint: (noun) The meter that shows the loudness of the audio being +#. recorded. #. This is the name used in screen reader software, where having 'Meter' first #. apparently is helpful to partially sighted people. #: src/toolbars/MeterToolBar.cpp @@ -16907,7 +16963,7 @@ msgstr "탐색" #: src/toolbars/ScrubbingToolBar.cpp msgid "Scrub Ruler" -msgstr "문지르기 눈금자" +msgstr "스크러빙 눈금자" #: src/toolbars/ScrubbingToolBar.cpp src/tracks/ui/Scrubbing.cpp msgid "Scrubbing" @@ -16916,7 +16972,6 @@ msgstr "스크러빙" #. i18n-hint: These commands assist the user in finding a sound by ear. ... #. "Scrubbing" is variable-speed playback, ... #. "Seeking" is normal speed playback but with skips -#. #: src/toolbars/ScrubbingToolBar.cpp msgid "Stop Scrubbing" msgstr "스크러빙 정지" @@ -16924,7 +16979,6 @@ msgstr "스크러빙 정지" #. i18n-hint: These commands assist the user in finding a sound by ear. ... #. "Scrubbing" is variable-speed playback, ... #. "Seeking" is normal speed playback but with skips -#. #: src/toolbars/ScrubbingToolBar.cpp msgid "Start Scrubbing" msgstr "스크러빙 시작" @@ -16932,7 +16986,6 @@ msgstr "스크러빙 시작" #. i18n-hint: These commands assist the user in finding a sound by ear. ... #. "Scrubbing" is variable-speed playback, ... #. "Seeking" is normal speed playback but with skips -#. #: src/toolbars/ScrubbingToolBar.cpp msgid "Stop Seeking" msgstr "탐색 정지" @@ -16940,7 +16993,6 @@ msgstr "탐색 정지" #. i18n-hint: These commands assist the user in finding a sound by ear. ... #. "Scrubbing" is variable-speed playback, ... #. "Seeking" is normal speed playback but with skips -#. #: src/toolbars/ScrubbingToolBar.cpp msgid "Start Seeking" msgstr "탐색 시작" @@ -16953,7 +17005,7 @@ msgstr "스크러빙 눈금자 감추기" #. that enables Scrub or Seek playback and Scrub Ruler #: src/toolbars/ScrubbingToolBar.cpp msgid "Scru&b Toolbar" -msgstr "문지르기 도구모음(&B)" +msgstr "스크러빙 도구모음(&B)" #: src/toolbars/SelectionBar.cpp msgid "Project Rate (Hz)" @@ -16995,9 +17047,7 @@ msgstr "스냅" msgid "Length" msgstr "길이" -#: src/toolbars/SelectionBar.cpp -#: src/tracks/playabletrack/wavetrack/ui/WaveTrackSliderHandles.cpp -#: src/widgets/ASlider.cpp +#: src/toolbars/SelectionBar.cpp src/tracks/playabletrack/wavetrack/ui/WaveTrackSliderHandles.cpp src/widgets/ASlider.cpp msgid "Center" msgstr "가운데" @@ -17019,7 +17069,7 @@ msgstr "%s - 구동" #: src/toolbars/SelectionBar.cpp #, c-format msgid "Selection %s. %s won't change." -msgstr "선택 %s. %s 변화 없음" +msgstr "선택 %s. %s 변화 없음." #. i18n-hint: Clicking this menu item shows the toolbar #. for selecting a time range of audio @@ -17089,8 +17139,7 @@ msgstr "시간 이동 도구" msgid "Zoom Tool" msgstr "확대/축소 도구" -#: src/toolbars/ToolsToolBar.cpp -#: src/tracks/playabletrack/wavetrack/ui/SampleHandle.cpp +#: src/toolbars/ToolsToolBar.cpp src/tracks/playabletrack/wavetrack/ui/SampleHandle.cpp msgid "Draw Tool" msgstr "그리기 도구" @@ -17166,13 +17215,11 @@ msgstr "한 개 이상의 레이블 경계를 드래그하세요." msgid "Drag label boundary." msgstr "레이블 경계를 드래그하세요." -#: src/tracks/labeltrack/ui/LabelGlyphHandle.cpp -#: src/tracks/labeltrack/ui/LabelTrackView.cpp +#: src/tracks/labeltrack/ui/LabelGlyphHandle.cpp src/tracks/labeltrack/ui/LabelTrackView.cpp msgid "Modified Label" msgstr "수정된 레이블" -#: src/tracks/labeltrack/ui/LabelGlyphHandle.cpp -#: src/tracks/labeltrack/ui/LabelTrackView.cpp +#: src/tracks/labeltrack/ui/LabelGlyphHandle.cpp src/tracks/labeltrack/ui/LabelTrackView.cpp msgid "Label Edit" msgstr "레이블 편집" @@ -17227,41 +17274,34 @@ msgstr "레이블을 편집했습니다" msgid "New label" msgstr "새 레이블" -#: src/tracks/playabletrack/notetrack/ui/NoteTrackControls.cpp -#: src/tracks/playabletrack/notetrack/ui/NoteTrackVZoomHandle.cpp +#: src/tracks/playabletrack/notetrack/ui/NoteTrackControls.cpp src/tracks/playabletrack/notetrack/ui/NoteTrackVZoomHandle.cpp msgid "Up &Octave" msgstr "옥타브 올리기(&O)" -#: src/tracks/playabletrack/notetrack/ui/NoteTrackControls.cpp -#: src/tracks/playabletrack/notetrack/ui/NoteTrackVZoomHandle.cpp +#: src/tracks/playabletrack/notetrack/ui/NoteTrackControls.cpp src/tracks/playabletrack/notetrack/ui/NoteTrackVZoomHandle.cpp msgid "Down Octa&ve" msgstr "옥타브 내리기(&V)" -#: src/tracks/playabletrack/notetrack/ui/NoteTrackVZoomHandle.cpp -#: src/tracks/playabletrack/wavetrack/ui/WaveTrackVZoomHandle.cpp +#: src/tracks/playabletrack/notetrack/ui/NoteTrackVZoomHandle.cpp src/tracks/playabletrack/wavetrack/ui/WaveTrackVZoomHandle.cpp msgid "Click to vertically zoom in. Shift-click to zoom out. Drag to specify a zoom region." msgstr "수직 확대는 클릭, 축소는 Shift-클릭, 확대/축소 영역 지정은 드래그하세요." -#: src/tracks/playabletrack/notetrack/ui/NoteTrackVZoomHandle.cpp -#: src/tracks/playabletrack/wavetrack/ui/WaveTrackVZoomHandle.cpp +#: src/tracks/playabletrack/notetrack/ui/NoteTrackVZoomHandle.cpp src/tracks/playabletrack/wavetrack/ui/WaveTrackVZoomHandle.cpp #: src/tracks/timetrack/ui/TimeTrackVZoomHandle.cpp msgid "Right-click for menu." -msgstr "메뉴는 우클릭." +msgstr "메뉴를 보려면 오른쪽 클릭." -#: src/tracks/playabletrack/notetrack/ui/NoteTrackVZoomHandle.cpp -#: src/tracks/playabletrack/wavetrack/ui/SpectrumVZoomHandle.cpp +#: src/tracks/playabletrack/notetrack/ui/NoteTrackVZoomHandle.cpp src/tracks/playabletrack/wavetrack/ui/SpectrumVZoomHandle.cpp #: src/tracks/playabletrack/wavetrack/ui/WaveformVZoomHandle.cpp msgid "Zoom Reset" msgstr "배율 초기화" -#: src/tracks/playabletrack/notetrack/ui/NoteTrackVZoomHandle.cpp -#: src/tracks/playabletrack/wavetrack/ui/SpectrumVZoomHandle.cpp +#: src/tracks/playabletrack/notetrack/ui/NoteTrackVZoomHandle.cpp src/tracks/playabletrack/wavetrack/ui/SpectrumVZoomHandle.cpp #: src/tracks/playabletrack/wavetrack/ui/WaveformVZoomHandle.cpp msgid "Shift-Right-Click" msgstr "Shift-오른쪽 버튼 클릭" -#: src/tracks/playabletrack/notetrack/ui/NoteTrackVZoomHandle.cpp -#: src/tracks/playabletrack/wavetrack/ui/SpectrumVZoomHandle.cpp +#: src/tracks/playabletrack/notetrack/ui/NoteTrackVZoomHandle.cpp src/tracks/playabletrack/wavetrack/ui/SpectrumVZoomHandle.cpp #: src/tracks/playabletrack/wavetrack/ui/WaveformVZoomHandle.cpp msgid "Left-Click/Left-Drag" msgstr "왼쪽 클릭/왼쪽 드래그" @@ -17304,8 +17344,7 @@ msgstr "합치기" msgid "Expanded Cut Line" msgstr "잘라내기 선을 확장했습니다" -#: src/tracks/playabletrack/wavetrack/ui/CutlineHandle.cpp -#: src/tracks/ui/TrackButtonHandles.cpp +#: src/tracks/playabletrack/wavetrack/ui/CutlineHandle.cpp src/tracks/ui/TrackButtonHandles.cpp msgid "Expand" msgstr "확장" @@ -17347,7 +17386,7 @@ msgid "" "To change Spectrogram Settings, stop any\n" " playing or recording first." msgstr "" -"스펙토그램 설정을 변겨하려면, 먼저\n" +"스펙트로그램 설정을 변겨하려면, 먼저\n" "재생이나 녹음을 중단하세요." #: src/tracks/playabletrack/wavetrack/ui/SpectrumView.cpp @@ -17377,9 +17416,9 @@ msgid "Processing... %i%%" msgstr "처리중...\t%i%%" #. i18n-hint: The strings name a track and a format -#. i18n-hint: The strings name a track and a channel choice (mono, left, or right) -#: src/tracks/playabletrack/wavetrack/ui/WaveTrackControls.cpp -#: src/tracks/playabletrack/wavetrack/ui/WaveformView.cpp +#. i18n-hint: The strings name a track and a channel choice (mono, left, or +#. right) +#: src/tracks/playabletrack/wavetrack/ui/WaveTrackControls.cpp src/tracks/playabletrack/wavetrack/ui/WaveformView.cpp #, c-format msgid "Changed '%s' to %s" msgstr "'%s'을 %s로 변경했습니다" @@ -17458,8 +17497,7 @@ msgstr "속도 변경" msgid "Set Rate" msgstr "속도 설정" -#: src/tracks/playabletrack/wavetrack/ui/WaveTrackControls.cpp -#: src/tracks/playabletrack/wavetrack/ui/WaveTrackViewConstants.cpp +#: src/tracks/playabletrack/wavetrack/ui/WaveTrackControls.cpp src/tracks/playabletrack/wavetrack/ui/WaveTrackViewConstants.cpp msgid "&Multi-view" msgstr "멀티 뷰 (&M)" @@ -17552,33 +17590,30 @@ msgid "Right, %dHz" msgstr "오른쪽, %dHz" #. i18n-hint dB abbreviates decibels -#: src/tracks/playabletrack/wavetrack/ui/WaveTrackSliderHandles.cpp -#: src/widgets/ASlider.cpp +#: src/tracks/playabletrack/wavetrack/ui/WaveTrackSliderHandles.cpp src/widgets/ASlider.cpp #, c-format msgid "%+.1f dB" msgstr "%+.1f dB" #. i18n-hint: Stereo pan setting -#: src/tracks/playabletrack/wavetrack/ui/WaveTrackSliderHandles.cpp -#: src/widgets/ASlider.cpp +#: src/tracks/playabletrack/wavetrack/ui/WaveTrackSliderHandles.cpp src/widgets/ASlider.cpp #, c-format msgid "%.0f%% Left" msgstr "%.0f%% 왼쪽" #. i18n-hint: Stereo pan setting -#: src/tracks/playabletrack/wavetrack/ui/WaveTrackSliderHandles.cpp -#: src/widgets/ASlider.cpp +#: src/tracks/playabletrack/wavetrack/ui/WaveTrackSliderHandles.cpp src/widgets/ASlider.cpp #, c-format msgid "%.0f%% Right" msgstr "%.0f%% 오른쪽" #: src/tracks/playabletrack/wavetrack/ui/WaveTrackView.cpp msgid "Click and drag to adjust sizes of sub-views, double-click to split evenly" -msgstr "하위 보기의 크기를 변경하려면, 클릭하고 드래그 하고, 같은 크기로 나누려면 더블 클릭 하세요." +msgstr "하위 보기의 크기를 변경하려면, 클릭하고 드래그 하고, 같은 크기로 나누려면 더블 클릭 하세요" #: src/tracks/playabletrack/wavetrack/ui/WaveTrackView.cpp msgid "Click and drag to rearrange sub-views" -msgstr "하위 보기를 위치를 다시 조정하려면 클릭하여 드래그 하세요." +msgstr "하위 보기를 위치를 다시 조정하려면 클릭하여 드래그 하세요" #: src/tracks/playabletrack/wavetrack/ui/WaveTrackView.cpp msgid "Rearrange sub-views" @@ -17732,7 +17767,6 @@ msgstr "포락선을 조정했습니다." #. i18n-hint: These commands assist the user in finding a sound by ear. ... #. "Scrubbing" is variable-speed playback, ... #. "Seeking" is normal speed playback but with skips, ... -#. #: src/tracks/ui/Scrubbing.cpp msgid "&Scrub" msgstr "스크러빙(&S)" @@ -17744,7 +17778,6 @@ msgstr "탐색하기" #. i18n-hint: These commands assist the user in finding a sound by ear. ... #. "Scrubbing" is variable-speed playback, ... #. "Seeking" is normal speed playback but with skips, ... -#. #: src/tracks/ui/Scrubbing.cpp msgid "Scrub &Ruler" msgstr "스크러빙 눈금자(&R)" @@ -17763,7 +17796,7 @@ msgstr "마우스 포인터를 이동하여 스크러빙" #: src/tracks/ui/Scrubbing.cpp msgid "Scru&bbing" -msgstr "문지르기(&B)" +msgstr "스크러빙 (&B)" #: src/tracks/ui/Scrubbing.cpp msgid "Scrub Bac&kwards" @@ -17804,13 +17837,14 @@ msgstr "주파수 대역폭을 조절하려면 클릭 후 드래그하세요." #. i18n-hint: These are the names of a menu and a command in that menu #: src/tracks/ui/SelectHandle.cpp msgid "Edit, Preferences..." -msgstr "편집, 환경 설정..." +msgstr "편집, 환경설정..." -#. i18n-hint: %s is usually replaced by "Ctrl+P" for Windows/Linux, "Command+," for Mac +#. i18n-hint: %s is usually replaced by "Ctrl+P" for Windows/Linux, +#. "Command+," for Mac #: src/tracks/ui/SelectHandle.cpp #, c-format msgid "Multi-Tool Mode: %s for Mouse and Keyboard Preferences." -msgstr "다중 도구 모드: %s 마우스와 키보드 환경 설정." +msgstr "다중 도구 모드: %s 마우스와 키보드 환경설정." #: src/tracks/ui/SelectHandle.cpp msgid "Click and drag to set frequency bandwidth." @@ -17820,7 +17854,8 @@ msgstr "주파수 대역폭 설정은 클릭 후 드래그하세요." msgid "Click and drag to select audio" msgstr "오디오 선택은 클릭 후 드래그하세요" -#. i18n-hint: "Snapping" means automatic alignment of selection edges to any nearby label or clip boundaries +#. i18n-hint: "Snapping" means automatic alignment of selection edges to any +#. nearby label or clip boundaries #: src/tracks/ui/SelectHandle.cpp msgid "(snapping)" msgstr "(달라붙기)" @@ -17831,7 +17866,7 @@ msgstr "트랙을 제시간으로 이동하려면 클릭 후 드래그하세요" #: src/tracks/ui/TimeShiftHandle.cpp msgid "Could not shift between tracks" -msgstr "트랙간에는 이동할 수 없습니다." +msgstr "트랙간에는 이동할 수 없습니다" #: src/tracks/ui/TimeShiftHandle.cpp msgid "Moved clips to another track" @@ -17877,17 +17912,19 @@ msgstr "Command+클릭" msgid "Ctrl+Click" msgstr "Ctrl+클릭" -#. i18n-hint: %s is replaced by (translation of) 'Ctrl+Click' on windows, 'Command+Click' on Mac +#. i18n-hint: %s is replaced by (translation of) 'Ctrl+Click' on windows, +#. 'Command+Click' on Mac #: src/tracks/ui/TrackSelectHandle.cpp #, c-format msgid "%s to select or deselect track. Drag up or down to change track order." msgstr "트랙 선택/선택 해제는 %s. 트랙 순서 변경은 위아래로 드래그하세요." -#. i18n-hint: %s is replaced by (translation of) 'Ctrl+Click' on windows, 'Command+Click' on Mac +#. i18n-hint: %s is replaced by (translation of) 'Ctrl+Click' on windows, +#. 'Command+Click' on Mac #: src/tracks/ui/TrackSelectHandle.cpp #, c-format msgid "%s to select or deselect track." -msgstr "트랙 선택/선택 해제는 %s" +msgstr "트랙 선택/선택 해제는 %s." #. i18n-hint: will substitute name of track for %s #: src/tracks/ui/TrackSelectHandle.cpp @@ -17924,7 +17961,7 @@ msgstr "업데이트를 위한 오류 점검" #: src/update/UpdateManager.cpp msgctxt "update dialog" msgid "Unable to connect to Audacity update server." -msgstr "오데시티 업데이트 서버에 접속할 수 없습니다. " +msgstr "오데시티 업데이트 서버에 접속할 수 없습니다." #: src/update/UpdateManager.cpp msgctxt "update dialog" @@ -17934,7 +17971,7 @@ msgstr "업데이트 데이터가 손실되었습니다." #: src/update/UpdateManager.cpp msgctxt "update dialog" msgid "Error downloading update." -msgstr "업그레이드를 다운로드하는데 오류" +msgstr "업그레이드를 다운로드하는데 오류." #: src/update/UpdateManager.cpp msgctxt "update dialog" @@ -17944,31 +17981,35 @@ msgstr "오데시티 다운로드 링크를 열 수 없습니다." #. i18n-hint: Title of the app update notice dialog. #: src/update/UpdateNoticeDialog.cpp msgid "App update checking" -msgstr "" +msgstr "앱 업데이트 확인" #: src/update/UpdateNoticeDialog.cpp -msgid "To stay up to date, you will receive an in-app notification whenever there is a new version of Audacity available to download." -msgstr "" +msgid "" +"To stay up to date, you will receive an in-app notification whenever there is a new version of Audacity available to download." +msgstr "앱을 최신상태로 유지하기 위해서, 다운로드 할 수있는 새로운 버전이 있을 경우, 앱으로부터 알림을 받게 됩니다." #: src/update/UpdateNoticeDialog.cpp -msgid "In order to protect your privacy, Audacity does not collect any personal information. However, app update checking does require network access." +msgid "" +"In order to protect your privacy, Audacity does not collect any personal information. However, app update checking does require " +"network access." msgstr "" +"개인정보 보호를 위해서 오데시티는 어떠한 개인정보도 수집하지 않습니다. 하지만 앱 업데이트 확인을 위해서는 네트워크에 접속해 있어야 " +"합니다." #: src/update/UpdateNoticeDialog.cpp #, c-format msgid "You can turn off app update checking at any time in %s." -msgstr "" +msgstr "%s 앱 업데이트 확인기능을 언제든 끌 수 있습니다." #. i18n-hint: Title of the app update notice dialog. #: src/update/UpdateNoticeDialog.cpp msgid "App updates" -msgstr "" +msgstr "앱 업데이트" #. i18n-hint: a page in the Preferences dialog; use same name #: src/update/UpdateNoticeDialog.cpp -#, fuzzy msgid "Preferences > Application" -msgstr "품질 환경설정" +msgstr "환경설정 > 응용" #: src/update/UpdatePopupDialog.cpp msgctxt "update dialog" @@ -17978,7 +18019,7 @@ msgstr "오데시티 업데이트" #: src/update/UpdatePopupDialog.cpp msgctxt "update dialog" msgid "&Skip" -msgstr "건너뛰기(&S)" +msgstr "건너뛰기 (&S)" #: src/update/UpdatePopupDialog.cpp msgctxt "update dialog" @@ -17990,7 +18031,7 @@ msgstr "업데이트 설치 (&I)" #, c-format msgctxt "update dialog" msgid "Audacity %s is available!" -msgstr "오데시티 %s 를 사용할 수 있습니다." +msgstr "오데시티 %s 를 사용할 수 있습니다!" #: src/update/UpdatePopupDialog.cpp msgctxt "update dialog" @@ -18000,7 +18041,7 @@ msgstr "변경 로그" #: src/update/UpdatePopupDialog.cpp msgctxt "update dialog" msgid "Read more on GitHub" -msgstr "GitHub의 상세정보를 참조하세요. " +msgstr "GitHub의 상세정보를 참조" #: src/widgets/AButton.cpp msgid "(disabled)" @@ -18175,7 +18216,7 @@ msgstr " 모니터링 " #: src/widgets/Meter.cpp msgid " Active " -msgstr "활성화" +msgstr " 활성화 " #: src/widgets/Meter.cpp #, c-format @@ -18244,10 +18285,12 @@ msgstr "hh:mm:ss + 100분의 1" #. i18n-hint: Format string for displaying time in hours, minutes, seconds #. * and hundredths of a second. Change the 'h' to the abbreviation for hours, -#. * 'm' to the abbreviation for minutes and 's' to the abbreviation for seconds +#. * 'm' to the abbreviation for minutes and 's' to the abbreviation for +#. seconds #. * (the hundredths are shown as decimal seconds). Don't change the numbers #. * unless there aren't 60 minutes in an hour in your locale. -#. * The decimal separator is specified using '<' if your language uses a ',' or +#. * The decimal separator is specified using '<' if your language uses a ',' +#. or #. * to '>' if your language uses a '.'. #: src/widgets/NumericTextCtrl.cpp msgid "0100 h 060 m 060>0100 s" @@ -18260,11 +18303,13 @@ msgid "hh:mm:ss + milliseconds" msgstr "hh:mm:ss + 1/1000 초" #. i18n-hint: Format string for displaying time in hours, minutes, seconds -#. * and milliseconds. Change the 'h' to the abbreviation for hours, 'm' to the +#. * and milliseconds. Change the 'h' to the abbreviation for hours, 'm' to +#. the #. * abbreviation for minutes and 's' to the abbreviation for seconds (the #. * milliseconds are shown as decimal seconds) . Don't change the numbers #. * unless there aren't 60 minutes in an hour in your locale. -#. * The decimal separator is specified using '<' if your language uses a ',' or +#. * The decimal separator is specified using '<' if your language uses a ',' +#. or #. * to '>' if your language uses a '.'. #: src/widgets/NumericTextCtrl.cpp msgid "0100 h 060 m 060>01000 s" @@ -18281,7 +18326,8 @@ msgstr "hh:mm:ss + 샘플" #. * abbreviation for minutes, 's' to the abbreviation for seconds and #. * translate samples . Don't change the numbers #. * unless there aren't 60 seconds in a minute in your locale. -#. * The decimal separator is specified using '<' if your language uses a ',' or +#. * The decimal separator is specified using '<' if your language uses a ',' +#. or #. * to '>' if your language uses a '.'. #: src/widgets/NumericTextCtrl.cpp msgid "0100 h 060 m 060 s+># samples" @@ -18290,7 +18336,6 @@ msgstr "0100 h 060 m 060 s+># samples" #. i18n-hint: Name of time display format that shows time in samples (at the #. * current project sample rate). For example the number of a sample at 1 #. * second into a recording at 44.1KHz would be 44,100. -#. #: src/widgets/NumericTextCtrl.cpp plug-ins/sample-data-export.ny msgid "samples" msgstr "샘플" @@ -18314,7 +18359,8 @@ msgstr "hh:mm:ss + 필름 프레임 (24 fps)" #. * for hours, 'm' to the abbreviation for minutes, 's' to the abbreviation #. * for seconds and translate 'frames' . Don't change the numbers #. * unless there aren't 60 seconds in a minute in your locale. -#. * The decimal separator is specified using '<' if your language uses a ',' or +#. * The decimal separator is specified using '<' if your language uses a ',' +#. or #. * to '>' if your language uses a '.'. #: src/widgets/NumericTextCtrl.cpp msgid "0100 h 060 m 060 s+>24 frames" @@ -18345,7 +18391,8 @@ msgstr "hh:mm:ss + NTSC 드롭 프레임" #. * and frames with NTSC drop frames. Change the 'h' to the abbreviation #. * for hours, 'm' to the abbreviation for minutes, 's' to the abbreviation #. * for seconds and translate 'frames'. Leave the |N alone, it's important! -#. * The decimal separator is specified using '<' if your language uses a ',' or +#. * The decimal separator is specified using '<' if your language uses a ',' +#. or #. * to '>' if your language uses a '.'. #: src/widgets/NumericTextCtrl.cpp msgid "0100 h 060 m 060 s+>30 frames|N" @@ -18363,7 +18410,8 @@ msgstr "hh:mm:ss + NTSC 비드롭 프레임" #. * for hours, 'm' to the abbreviation for minutes, 's' to the abbreviation #. * for seconds and translate 'frames'. Leave the | .999000999 alone, #. * the whole things really is slightly off-speed! -#. * The decimal separator is specified using '<' if your language uses a ',' or +#. * The decimal separator is specified using '<' if your language uses a ',' +#. or #. * to '>' if your language uses a '.'. #: src/widgets/NumericTextCtrl.cpp msgid "0100 h 060 m 060 s+>030 frames| .999000999" @@ -18394,7 +18442,8 @@ msgstr "hh:mm:ss + PAL 프레임 (25 fps)" #. * and frames with PAL TV frames. Change the 'h' to the abbreviation #. * for hours, 'm' to the abbreviation for minutes, 's' to the abbreviation #. * for seconds and translate 'frames'. Nice simple time code! -#. * The decimal separator is specified using '<' if your language uses a ',' or +#. * The decimal separator is specified using '<' if your language uses a ',' +#. or #. * to '>' if your language uses a '.'. #: src/widgets/NumericTextCtrl.cpp msgid "0100 h 060 m 060 s+>25 frames" @@ -18424,7 +18473,8 @@ msgstr "hh:mm:ss + CDDA 프레임(75 fps)" #. * and frames with CD Audio frames. Change the 'h' to the abbreviation #. * for hours, 'm' to the abbreviation for minutes, 's' to the abbreviation #. * for seconds and translate 'frames'. -#. * The decimal separator is specified using '<' if your language uses a ',' or +#. * The decimal separator is specified using '<' if your language uses a ',' +#. or #. * to '>' if your language uses a '.'. #: src/widgets/NumericTextCtrl.cpp msgid "0100 h 060 m 060 s+>75 frames" @@ -18446,7 +18496,8 @@ msgstr "01000,01000 프레임|75" #. i18n-hint: Format string for displaying frequency in hertz. Change #. * the decimal point for your locale. Don't change the numbers. -#. * The decimal separator is specified using '<' if your language uses a ',' or +#. * The decimal separator is specified using '<' if your language uses a ',' +#. or #. * to '>' if your language uses a '.'. #: src/widgets/NumericTextCtrl.cpp msgid "010,01000>0100 Hz" @@ -18463,7 +18514,8 @@ msgstr "kHz" #. i18n-hint: Format string for displaying frequency in kilohertz. Change #. * the decimal point for your locale. Don't change the numbers. -#. * The decimal separator is specified using '<' if your language uses a ',' or +#. * The decimal separator is specified using '<' if your language uses a ',' +#. or #. * to '>' if your language uses a '.'. #: src/widgets/NumericTextCtrl.cpp msgid "01000>01000 kHz|0.001" @@ -18481,7 +18533,8 @@ msgstr "옥타브" #. i18n-hint: Format string for displaying log of frequency in octaves. #. * Change the decimal points for your locale. Don't change the numbers. -#. * The decimal separator is specified using '<' if your language uses a ',' or +#. * The decimal separator is specified using '<' if your language uses a ',' +#. or #. * to '>' if your language uses a '.'. #: src/widgets/NumericTextCtrl.cpp msgid "100>01000 octaves|1.442695041" @@ -18501,7 +18554,8 @@ msgstr "반음 + 센트" #. i18n-hint: Format string for displaying log of frequency in semitones #. * and cents. #. * Change the decimal points for your locale. Don't change the numbers. -#. * The decimal separator is specified using '<' if your language uses a ',' or +#. * The decimal separator is specified using '<' if your language uses a ',' +#. or #. * to '>' if your language uses a '.'. #: src/widgets/NumericTextCtrl.cpp msgid "1000 semitones >0100 cents|17.312340491" @@ -18580,28 +18634,26 @@ msgstr "닫기 확인" #. i18n-hint: %s is replaced with a directory path. #: src/widgets/UnwritableLocationErrorDialog.cpp -#, fuzzy, c-format +#, c-format msgid "Unable to write files to directory: %s." -msgstr "\"%s\"로 부터 사전설정 파일을 읽을 수 없습니다." +msgstr "%s 디렉토리에 파일을 쓸 수 없습니다." #. i18n-hint: This message describes the error in the Error dialog. #: src/widgets/UnwritableLocationErrorDialog.cpp msgid "Please check that the directory exists, has the necessary permissions, and the drive isn't full." -msgstr "" +msgstr "디렉토리가 실제로 있는지, 권한, 혹은 용랼이 충분한지 확인하기 바랍니다." #. i18n-hint: %s is replaced with 'Preferences > Directories'. #: src/widgets/UnwritableLocationErrorDialog.cpp -#, fuzzy, c-format +#, c-format msgid "You can change the directory in %s." -msgstr "" -"폴더를 만들 수 없습니다:\n" -" %s" +msgstr "%s 디렉토리 위치를 변경할 수 있습니다." -#. i18n-hint: Hyperlink title that opens Preferences dialog on Directories page. +#. i18n-hint: Hyperlink title that opens Preferences dialog on Directories +#. page. #: src/widgets/UnwritableLocationErrorDialog.cpp -#, fuzzy msgid "Preferences > Directories" -msgstr "디렉토리 환경설정" +msgstr "환경설정 > 디렉토리" #: src/widgets/Warning.cpp msgid "Don't show this warning again" @@ -18693,32 +18745,24 @@ msgstr "XML 파싱할 수 없음" msgid "Spectral edit multi tool" msgstr "스펙트럼 편집 다중 도구" -#: plug-ins/SpectralEditMulti.ny plug-ins/SpectralEditParametricEQ.ny -#: plug-ins/SpectralEditShelves.ny +#: plug-ins/SpectralEditMulti.ny plug-ins/SpectralEditParametricEQ.ny plug-ins/SpectralEditShelves.ny msgid "Filtering..." msgstr "필터링..." -#: plug-ins/SpectralEditMulti.ny plug-ins/SpectralEditParametricEQ.ny -#: plug-ins/SpectralEditShelves.ny +#: plug-ins/SpectralEditMulti.ny plug-ins/SpectralEditParametricEQ.ny plug-ins/SpectralEditShelves.ny msgid "Paul Licameli" msgstr "Paul Licameli" -#: plug-ins/SpectralEditMulti.ny plug-ins/SpectralEditParametricEQ.ny -#: plug-ins/SpectralEditShelves.ny plug-ins/StudioFadeOut.ny -#: plug-ins/adjustable-fade.ny plug-ins/beat.ny plug-ins/crossfadeclips.ny -#: plug-ins/crossfadetracks.ny plug-ins/delay.ny -#: plug-ins/eq-xml-to-txt-converter.ny plug-ins/equalabel.ny -#: plug-ins/highpass.ny plug-ins/limiter.ny plug-ins/lowpass.ny -#: plug-ins/notch.ny plug-ins/nyquist-plug-in-installer.ny plug-ins/pluck.ny -#: plug-ins/rhythmtrack.ny plug-ins/rissetdrum.ny -#: plug-ins/sample-data-export.ny plug-ins/sample-data-import.ny -#: plug-ins/spectral-delete.ny plug-ins/tremolo.ny plug-ins/vocalrediso.ny -#: plug-ins/vocoder.ny +#: plug-ins/SpectralEditMulti.ny plug-ins/SpectralEditParametricEQ.ny plug-ins/SpectralEditShelves.ny plug-ins/StudioFadeOut.ny +#: plug-ins/adjustable-fade.ny plug-ins/beat.ny plug-ins/crossfadeclips.ny plug-ins/crossfadetracks.ny plug-ins/delay.ny +#: plug-ins/eq-xml-to-txt-converter.ny plug-ins/equalabel.ny plug-ins/highpass.ny plug-ins/limiter.ny plug-ins/lowpass.ny +#: plug-ins/notch.ny plug-ins/nyquist-plug-in-installer.ny plug-ins/pluck.ny plug-ins/rhythmtrack.ny plug-ins/rissetdrum.ny +#: plug-ins/sample-data-export.ny plug-ins/sample-data-import.ny plug-ins/spectral-delete.ny plug-ins/tremolo.ny +#: plug-ins/vocalrediso.ny plug-ins/vocoder.ny msgid "Released under terms of the GNU General Public License version 2" msgstr "GNU 일반 공중 라이선스 버전 2의 규정에 따라 배포됨" -#: plug-ins/SpectralEditMulti.ny plug-ins/SpectralEditParametricEQ.ny -#: plug-ins/SpectralEditShelves.ny +#: plug-ins/SpectralEditMulti.ny plug-ins/SpectralEditParametricEQ.ny plug-ins/SpectralEditShelves.ny #, lisp-format msgid "~aPlease select frequencies." msgstr "~a주파수를 선택하세요." @@ -18745,8 +18789,8 @@ msgstr "" " 낮은 주파수 범위를 높이거나~%~\n" " 필터 '너비'를 줄이세요." -#: plug-ins/SpectralEditMulti.ny plug-ins/SpectralEditParametricEQ.ny -#: plug-ins/SpectralEditShelves.ny plug-ins/nyquist-plug-in-installer.ny +#: plug-ins/SpectralEditMulti.ny plug-ins/SpectralEditParametricEQ.ny plug-ins/SpectralEditShelves.ny +#: plug-ins/nyquist-plug-in-installer.ny #, lisp-format msgid "Error.~%" msgstr "오류.~%" @@ -18783,7 +18827,7 @@ msgid "" msgstr "" "~a주파수 선택이 트랙 샘플링 주파수에 비해 너무 높습니다.~%~\n" " 현재 트랙에 대해, 높은 주파수 설정은~%~\n" -" ~a Hz보다 클 수 없습니다." +" ~a Hz보다 클 수 없습니다" #: plug-ins/SpectralEditParametricEQ.ny plug-ins/SpectralEditShelves.ny #, lisp-format @@ -18808,12 +18852,9 @@ msgstr "스튜디오 페이드 아웃" msgid "Applying Fade..." msgstr "페이드 적용 중..." -#: plug-ins/StudioFadeOut.ny plug-ins/adjustable-fade.ny -#: plug-ins/crossfadeclips.ny plug-ins/crossfadetracks.ny plug-ins/delay.ny -#: plug-ins/eq-xml-to-txt-converter.ny plug-ins/equalabel.ny -#: plug-ins/label-sounds.ny plug-ins/limiter.ny plug-ins/noisegate.ny -#: plug-ins/sample-data-export.ny plug-ins/sample-data-import.ny -#: plug-ins/spectral-delete.ny plug-ins/tremolo.ny +#: plug-ins/StudioFadeOut.ny plug-ins/adjustable-fade.ny plug-ins/crossfadeclips.ny plug-ins/crossfadetracks.ny plug-ins/delay.ny +#: plug-ins/eq-xml-to-txt-converter.ny plug-ins/equalabel.ny plug-ins/label-sounds.ny plug-ins/limiter.ny plug-ins/noisegate.ny +#: plug-ins/sample-data-export.ny plug-ins/sample-data-import.ny plug-ins/spectral-delete.ny plug-ins/tremolo.ny msgid "Steve Daulton" msgstr "Steve Daulton" @@ -18836,7 +18877,7 @@ msgstr "페이드 업 (등장 효과)" #: plug-ins/adjustable-fade.ny msgid "Fade Down" -msgstr "페이드 다운 (퇴장 효과)" +msgstr "페이드 다운" #: plug-ins/adjustable-fade.ny msgid "S-Curve Up" @@ -18844,7 +18885,7 @@ msgstr "S-커브 업 (S형 등장 효과)" #: plug-ins/adjustable-fade.ny msgid "S-Curve Down" -msgstr "S-커브 다운 (S형 퇴장 효과)" +msgstr "S-커브 다운" #: plug-ins/adjustable-fade.ny msgid "Mid-fade Adjust (%)" @@ -19090,7 +19131,7 @@ msgstr "지연 시간 (초)" #: plug-ins/delay.ny msgid "Pitch change effect" -msgstr "피치(음정) 변경 효과" +msgstr "피치 변경 효과" #: plug-ins/delay.ny msgid "Pitch/Tempo" @@ -19208,7 +19249,7 @@ msgstr "레이블의 최소 단위수" #: plug-ins/equalabel.ny msgid "None - Text Only" -msgstr "없음 - 텍스트 만 " +msgstr "없음 - 텍스트 만" #: plug-ins/equalabel.ny msgid "1 (Before Label)" @@ -19287,8 +19328,7 @@ msgstr "하이패스 필터 실행..." msgid "Dominic Mazzoni" msgstr "Dominic Mazzoni" -#: plug-ins/highpass.ny plug-ins/lowpass.ny plug-ins/notch.ny -#: plug-ins/rissetdrum.ny plug-ins/tremolo.ny +#: plug-ins/highpass.ny plug-ins/lowpass.ny plug-ins/notch.ny plug-ins/rissetdrum.ny plug-ins/tremolo.ny msgid "Frequency (Hz)" msgstr "주파수(Hz)" @@ -19327,9 +19367,9 @@ msgid "" " Track sample rate is ~a Hz~%~\n" " Frequency must be less than ~a Hz." msgstr "" -"오류:~%~% 주파수 (~a Hz) 는 트랙 샘플링 주파수로 너무 높음 ~%~%~\n" -" 트랙 샘플링 주파수 ~a Hz~%~\n" -" 주파수는 ~a Hz 보다 낮아야 함." +"오류:~%~%F 주파수 (~a Hz) 는 트랙 샘플링 주파수로 너무 높음 ~%~%~\n" +"트랙 샘플링 주파수 ~a Hz~%~\n" +"주파수는 ~a Hz 보다 낮아야 함." #. i18n-hint: Name of effect that labels sounds #: plug-ins/label-sounds.ny @@ -19338,7 +19378,7 @@ msgstr "사운드 레이블" #: plug-ins/label-sounds.ny plug-ins/noisegate.ny msgid "Released under terms of the GNU General Public License version 2 or later." -msgstr "GNU General Public License Version 2 또는 이후 버전의 라이센스로 배포됨" +msgstr "GNU General Public License Version 2 또는 이후 버전의 라이센스로 배포됨." #: plug-ins/label-sounds.ny msgid "Threshold level (dB)" @@ -19362,7 +19402,7 @@ msgstr "RMS 레벨" #: plug-ins/label-sounds.ny msgid "Minimum silence duration" -msgstr "최소 묵음 지속 시간:" +msgstr "최소 묵음 지속 시간" #: plug-ins/label-sounds.ny msgid "Minimum label interval" @@ -19409,7 +19449,7 @@ msgstr "~ah ~am ~as" #: plug-ins/label-sounds.ny #, lisp-format msgid "Too many silences detected.~%Only the first 10000 labels added." -msgstr "너무 많은 묵음이 검출되었습니다. ~%처음 10000개 레이블만 추가됩니다. " +msgstr "너무 많은 묵음이 검출되었습니다. ~%처음 10000개 레이블만 추가됩니다." #. i18n-hint: '~a' will be replaced by a time duration #: plug-ins/label-sounds.ny @@ -19425,7 +19465,7 @@ msgstr "소리를 찾을 수 없음.~%'임계값'과 '최소 소리 지속시간 #: plug-ins/label-sounds.ny #, lisp-format msgid "Labelling regions between sounds requires~%at least two sounds.~%Only one sound detected." -msgstr "영역을 레이블링 하려면 최소 두개의 소리가 필요 ~%a 합니다. 현재 하나의 소리만 검출되었습니다. " +msgstr "영역을 레이블링 하려면 최소 두개의 소리가 필요 ~%a 합니다. 현재 하나의 소리만 검출되었습니다." #: plug-ins/limiter.ny msgid "Limiter" @@ -19447,7 +19487,8 @@ msgstr "소프트 리미트" msgid "Hard Limit" msgstr "하드 리미트" -#. i18n-hint: clipping of wave peaks and troughs, not division of a track into clips +#. i18n-hint: clipping of wave peaks and troughs, not division of a track into +#. clips #: plug-ins/limiter.ny msgid "Soft Clip" msgstr "소프트 클립" @@ -19638,8 +19679,7 @@ msgstr "LISP 파일" msgid "HTML file" msgstr "HTML 파일" -#: plug-ins/nyquist-plug-in-installer.ny plug-ins/sample-data-export.ny -#: plug-ins/sample-data-import.ny +#: plug-ins/nyquist-plug-in-installer.ny plug-ins/sample-data-export.ny plug-ins/sample-data-import.ny msgid "Text file" msgstr "텍스트 파일" @@ -19696,7 +19736,7 @@ msgstr "파일이 이미 설치되어 있음 ('덮어 쓰기 허용' 이 비활 #: plug-ins/nyquist-plug-in-installer.ny msgid "Cannot be written to plug-ins folder:" -msgstr "플러그인 폴더에 쓸 수 없습니다." +msgstr "플러그인 폴더에 쓸 수 없습니다:" #: plug-ins/nyquist-plug-in-installer.ny #, lisp-format @@ -19897,7 +19937,7 @@ msgstr "분석중..." #: plug-ins/sample-data-export.ny msgid "Limit output to first" -msgstr "첫번째로 출력 리미트 " +msgstr "첫번째로 출력 제하" #: plug-ins/sample-data-export.ny msgid "Measurement scale" @@ -20054,13 +20094,15 @@ msgstr "샘플링 주파수:   ~a Hz." msgid "Peak Amplitude:   ~a (linear)   ~a dB." msgstr "최고 진폭:   ~a (선혀)   ~a dB." -#. i18n-hint: RMS abbreviates root-mean-square, a method of averaging a signal; there also "weighted" versions of it but this isn't that +#. i18n-hint: RMS abbreviates root-mean-square, a method of averaging a +#. signal; there also "weighted" versions of it but this isn't that #: plug-ins/sample-data-export.ny #, lisp-format msgid "RMS (unweighted):   ~a dB." msgstr "RMS (가중치 없ㅇ):   ~a dB." -#. i18n-hint: DC derives from "direct current" in electronics, really means the zero frequency component of a signal +#. i18n-hint: DC derives from "direct current" in electronics, really means +#. the zero frequency component of a signal #: plug-ins/sample-data-export.ny #, lisp-format msgid "DC Offset:   ~a" @@ -20246,7 +20288,7 @@ msgstr "트레몰로" #: plug-ins/tremolo.ny msgid "Applying Tremolo..." -msgstr "트레몰로 적용" +msgstr "트레몰로 적용..." #: plug-ins/tremolo.ny msgid "Waveform type" @@ -20254,7 +20296,7 @@ msgstr "파형 타입" #: plug-ins/tremolo.ny msgid "Inverse Sawtooth" -msgstr "반대방향 톱니파" +msgstr "역 톱니파" #: plug-ins/tremolo.ny msgid "Starting phase (degrees)" @@ -20270,7 +20312,7 @@ msgstr "보컬 줄이기 및 분리" #: plug-ins/vocalrediso.ny msgid "Applying Action..." -msgstr "액션 적용중" +msgstr "액션 적용중..." #: plug-ins/vocalrediso.ny msgid "Robert Haenggi" @@ -20278,7 +20320,7 @@ msgstr "로버트 행기" #: plug-ins/vocalrediso.ny msgid "Remove Vocals: to mono" -msgstr "보컬 제거: 모노로" +msgstr "보컬 제거: 모노로 변경" #: plug-ins/vocalrediso.ny msgid "Remove Vocals" @@ -20294,7 +20336,7 @@ msgstr "보컬 분리 후 뒤집기" #: plug-ins/vocalrediso.ny msgid "Remove Center: to mono" -msgstr "가운데 제거: 모노로" +msgstr "가운데 제거: 모노로 변경" #: plug-ins/vocalrediso.ny msgid "Remove Center" @@ -20348,7 +20390,7 @@ msgstr "" #: plug-ins/vocalrediso.ny #, lisp-format msgid "Pan position: ~a~%The left and right channels are correlated by about ~a %. This means:~%~a~%" -msgstr "팬 위치: ~a~%왼쪽과 오른쪽 채널이 다음에 대해 연관됨 ~a %. 이는 :~%~a~% 의미함" +msgstr "팬 위치: ~a~%왼쪽과 오른쪽 채널이 다음에 대해 연관됨 ~a %.이는 :~%~a~% 의미함" #: plug-ins/vocalrediso.ny msgid "" @@ -20370,7 +20412,7 @@ msgstr "" #: plug-ins/vocalrediso.ny msgid " - A fairly good value, at least stereo in average and not too wide spread." -msgstr " - 상당히 좋은 값, 평균적으로 최소 스테레오를 만들고, 너무 넓게 퍼지지 않음" +msgstr " - 상당히 좋은 값, 평균적으로 최소 스테레오를 만들고, 너무 넓게 퍼지지 않음." #: plug-ins/vocalrediso.ny msgid "" @@ -20468,24 +20510,3 @@ msgstr "레이더 니들의 주파수 (Hz)" #, lisp-format msgid "Error.~%Stereo track required." msgstr "오류.~%스테레오 트랙이 필요합니다." - -#~ msgid "Unknown assertion" -#~ msgstr "알수없는 실패" - -#~ msgid "Can't open new empty project" -#~ msgstr "빈 신규 프로젝트를 열 수 없습니다. " - -#~ msgid "Error opening a new empty project" -#~ msgstr "빈 신규프로젝트 열기 오류" - -#~ msgid "Gray Scale" -#~ msgstr "회색조" - -#~ msgid "Menu Tree" -#~ msgstr "메뉴 트리" - -#~ msgid "Menu Tree..." -#~ msgstr "메뉴 트리..." - -#~ msgid "Gra&yscale" -#~ msgstr "그레이스케일(&Y)" diff --git a/locale/pl.po b/locale/pl.po index 218f56d1c..75941851e 100644 --- a/locale/pl.po +++ b/locale/pl.po @@ -21,7 +21,7 @@ msgstr "" "Project-Id-Version: audacity 3.0.3\n" "Report-Msgid-Bugs-To: audacity-translation@lists.sourceforge.net\n" "POT-Creation-Date: 2021-07-15 12:48-0400\n" -"PO-Revision-Date: 2021-07-16 00:00+0000\n" +"PO-Revision-Date: 2021-07-19 00:00+0000\n" "Last-Translator: Grzegorz Pruchniakowski \n" "Language-Team: Polish (http://www.transifex.com/klyok/audacity/language/pl/)\n" "Language: pl\n" @@ -626,8 +626,7 @@ msgstr "forum" #: src/AboutDialog.cpp msgid "translator_credits" msgstr "" -"Polskie tłumaczenie Audacity: Grzegorz \"Gootector\" Pruchniakowski.\n" -"Pozostali tłumacze (nieaktywni): Michał Trzebiatowski, Patryk Małachowski, Aron Płotnikowski i Łukasz Wojniłowicz." +"Polskie tłumaczenie Audacity: Grzegorz \"Gootector\" Pruchniakowski." #: src/AboutDialog.cpp msgid "

" @@ -878,7 +877,7 @@ msgstr "Zobacz %s, aby uzyskać więcej informacji." #: src/AboutDialog.cpp src/prefs/ApplicationPrefs.cpp #: src/update/UpdateNoticeDialog.cpp msgid "our Privacy Policy" -msgstr "naszą Politykę Prywatności" +msgstr "naszą Politykę prywatności" #: src/AdornedRulerPanel.cpp msgid "Timeline actions disabled during recording" @@ -4555,7 +4554,7 @@ msgid_plural "%d hours" msgstr[0] "%d godzina" msgstr[1] "%d godziny" msgstr[2] "%d godzin" -msgstr[3] "%d godzin" +msgstr[3] "%d godziny" #: src/ProjectManager.cpp #, c-format @@ -4564,7 +4563,7 @@ msgid_plural "%d minutes" msgstr[0] "%d minuta" msgstr[1] "%d minuty" msgstr[2] "%d minut" -msgstr[3] "%d minut" +msgstr[3] "%d minuty" #. i18n-hint: A time in hours and minutes. Only translate the "and". #: src/ProjectManager.cpp @@ -12619,9 +12618,9 @@ msgstr "%s prawo" msgid "%s %d of %d clip %s" msgid_plural "%s %d of %d clips %s" msgstr[0] "%s %d z %d klip %s" -msgstr[1] "%s %d z %d klip %s" -msgstr[2] "%s %d z %d klip %s" -msgstr[3] "%s %d z %d klipów %s" +msgstr[1] "%s %d z %d klipy %s" +msgstr[2] "%s %d z %d klipów %s" +msgstr[3] "%s %d z %d klipy %s" #: src/menus/ClipMenus.cpp msgid "start" @@ -12645,9 +12644,9 @@ msgstr "koniec" msgid "%s %d and %s %d of %d clip %s" msgid_plural "%s %d and %s %d of %d clips %s" msgstr[0] "%s %d i %s %d z %d klip %s" -msgstr[1] "%s %d i %s %d z %d klip %s" -msgstr[2] "%s %d i %s %d z %d klip %s" -msgstr[3] "%s %d i %s %d z %d klipów %s" +msgstr[1] "%s %d i %s %d z %d klipy %s" +msgstr[2] "%s %d i %s %d z %d klipów %s" +msgstr[3] "%s %d i %s %d z %d klipy %s" #. i18n-hint: #. first number identifies one of a sequence of clips, @@ -12658,9 +12657,9 @@ msgstr[3] "%s %d i %s %d z %d klipów %s" msgid "%d of %d clip %s" msgid_plural "%d of %d clips %s" msgstr[0] "%d z %d klip %s" -msgstr[1] "%d z %d klip %s" -msgstr[2] "%d z %d klip %s" -msgstr[3] "%d z %d klipów %s" +msgstr[1] "%d z %d klipy %s" +msgstr[2] "%d z %d klipów %s" +msgstr[3] "%d z %d klipy %s" #: src/menus/ClipMenus.cpp msgid "Time shifted clips to the right" @@ -14167,7 +14166,7 @@ msgstr "Ta wersja Audacity pozwala tylko na jedną ścieżkę czasową dla każd #: src/menus/TrackMenus.cpp msgid "Created new time track" -msgstr "Utworzono nową ścieżkę" +msgstr "Utworzono nową ścieżkę czasową" #: src/menus/TrackMenus.cpp #: src/tracks/playabletrack/wavetrack/ui/WaveTrackControls.cpp @@ -15131,7 +15130,7 @@ msgstr "Rozszerzony import" #: src/prefs/ExtImportPrefs.cpp msgid "Preferences for ExtImport" -msgstr "Ustawienia eksport/import" +msgstr "Ustawienia rozsz. importu" #: src/prefs/ExtImportPrefs.cpp msgid "A&ttempt to use filter in OpenFile dialog first" @@ -15199,7 +15198,7 @@ msgstr "Zasada potwierdzania przy usuwaniu" #: src/prefs/ExtImportPrefs.h msgid "Ext Import" -msgstr "Eksport Import" +msgstr "Rozsz. import" #. i18n-hint: refers to Audacity's user interface settings #: src/prefs/GUIPrefs.cpp @@ -17685,7 +17684,7 @@ msgstr "Ustaw zakres" #: src/tracks/timetrack/ui/TimeTrackControls.cpp msgid "Set time track display to linear" -msgstr "Ustaw wyświetlanie ścieżki czasu na liniową" +msgstr "Ustaw wyświetlanie ścieżki czasowej na liniową" #: src/tracks/timetrack/ui/TimeTrackControls.cpp msgid "Set Display" @@ -17693,11 +17692,11 @@ msgstr "Ustaw wyświetlanie" #: src/tracks/timetrack/ui/TimeTrackControls.cpp msgid "Set time track display to logarithmic" -msgstr "Ustaw wyświetlanie ścieżki czasu na logarytmiczną" +msgstr "Ustaw wyświetlanie ścieżki czasowej na logarytmiczną" #: src/tracks/timetrack/ui/TimeTrackControls.cpp msgid "Set time track interpolation to linear" -msgstr "Ustaw interpolację ścieżki czasu na liniową" +msgstr "Ustaw interpolację ścieżki czasowej na liniową" #: src/tracks/timetrack/ui/TimeTrackControls.cpp msgid "Set Interpolation" @@ -17705,7 +17704,7 @@ msgstr "Ustaw interpolację" #: src/tracks/timetrack/ui/TimeTrackControls.cpp msgid "Set time track interpolation to logarithmic" -msgstr "Ustaw interpolację ścieżki czasu na logarytmiczną" +msgstr "Ustaw interpolację ścieżki czasowej na logarytmiczną" #: src/tracks/timetrack/ui/TimeTrackControls.cpp msgid "&Linear scale" @@ -18622,26 +18621,24 @@ msgstr "Potwierdź zamknięcie" #: src/widgets/UnwritableLocationErrorDialog.cpp #, fuzzy, c-format msgid "Unable to write files to directory: %s." -msgstr "Nie można wczytać pliku preseta z \"%s\"" +msgstr "Nie można zapisać plików do katalogu: %s." #. i18n-hint: This message describes the error in the Error dialog. #: src/widgets/UnwritableLocationErrorDialog.cpp msgid "Please check that the directory exists, has the necessary permissions, and the drive isn't full." -msgstr "" +msgstr "Sprawdź, czy katalog istnieje, ma niezbędne uprawnienia, a dysk nie jest pełny." #. i18n-hint: %s is replaced with 'Preferences > Directories'. #: src/widgets/UnwritableLocationErrorDialog.cpp #, fuzzy, c-format msgid "You can change the directory in %s." -msgstr "" -"Nie udało się utworzyć katalogu:\n" -"%s" +msgstr "Możesz zmienić katalog w %s." #. i18n-hint: Hyperlink title that opens Preferences dialog on Directories page. #: src/widgets/UnwritableLocationErrorDialog.cpp #, fuzzy msgid "Preferences > Directories" -msgstr "Ustawienia katalogów" +msgstr "Ustawienia > Katalogi" #: src/widgets/Warning.cpp msgid "Don't show this warning again" diff --git a/locale/pt_PT.po b/locale/pt_PT.po index c5e75bc40..95f76e918 100644 --- a/locale/pt_PT.po +++ b/locale/pt_PT.po @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: audacity 3.0.3\n" "Report-Msgid-Bugs-To: audacity-translation@lists.sourceforge.net\n" "POT-Creation-Date: 2021-07-15 12:48-0400\n" -"PO-Revision-Date: 2021-06-12 20:50+0100\n" +"PO-Revision-Date: 2021-07-17 03:10+0100\n" "Last-Translator: Bruno Ramalhete \n" "Language-Team: Bruno Ramalhete \n" "Language: pt_PT\n" @@ -37,8 +37,12 @@ msgstr "Relatório de Problemas para o Audacity" #: crashreports/crashreporter/CrashReportApp.cpp #: src/widgets/ErrorReportDialog.cpp -msgid "Click \"Send\" to submit the report to Audacity. This information is collected anonymously." -msgstr "Clique em \"Enviar\" para submeter o relatório ao Audacity. Esta informação é recolhida anonimamente." +msgid "" +"Click \"Send\" to submit the report to Audacity. This information is " +"collected anonymously." +msgstr "" +"Clique em \"Enviar\" para submeter o relatório ao Audacity. Esta informação " +"é recolhida anonimamente." #: crashreports/crashreporter/CrashReportApp.cpp #: src/widgets/ErrorReportDialog.cpp @@ -269,8 +273,10 @@ msgid "(C) 2009 by Leland Lucius" msgstr "(C) 2009 by Leland Lucius" #: modules/mod-nyq-bench/NyqBench.cpp -msgid "External Audacity module which provides a simple IDE for writing effects." -msgstr "Audacity módulo externo que disponibliza um IDE simples para fazer efeitos." +msgid "" +"External Audacity module which provides a simple IDE for writing effects." +msgstr "" +"Audacity módulo externo que disponibliza um IDE simples para fazer efeitos." #: modules/mod-nyq-bench/NyqBench.cpp msgid "Nyquist Effect Workbench" @@ -568,8 +574,12 @@ msgstr "OK" #. second %s will be "volunteers", fourth "available" #: src/AboutDialog.cpp #, c-format -msgid "%s is a free program written by a worldwide team of %s. %s is %s for Windows, Mac, and GNU/Linux (and other Unix-like systems)." -msgstr "%s é um programa gratuito escrito por uma equipa mundial de %s. %s é %s para Windows, Mac, e GNU/Linux (e outros sistemas semelhantes ao Unix)." +msgid "" +"%s is a free program written by a worldwide team of %s. %s is %s for " +"Windows, Mac, and GNU/Linux (and other Unix-like systems)." +msgstr "" +"%s é um programa gratuito escrito por uma equipa mundial de %s. %s é %s para " +"Windows, Mac, e GNU/Linux (e outros sistemas semelhantes ao Unix)." #. i18n-hint: substitutes into "a worldwide team of %s" #: src/AboutDialog.cpp @@ -584,8 +594,13 @@ msgstr "disponível" #. i18n-hint first and third %s will be "forum", second "wiki" #: src/AboutDialog.cpp #, c-format -msgid "If you find a bug or have a suggestion for us, please write, in English, to our %s. For help, view the tips and tricks on our %s or visit our %s." -msgstr "Se você encontrar um bug ou tiver uma sugestão para nós, por favor escreva, em inglês, para o nosso %s. Para obter ajuda, veja os truques e dicas nos nossos %s ou visite os nossos %s." +msgid "" +"If you find a bug or have a suggestion for us, please write, in English, to " +"our %s. For help, view the tips and tricks on our %s or visit our %s." +msgstr "" +"Se você encontrar um bug ou tiver uma sugestão para nós, por favor escreva, " +"em Inglês, para o nosso %s. Para obter ajuda, veja os truques e dicas no " +"nosso %s ou visite o nosso %s." #. i18n-hint substitutes into "write to our %s" #: src/AboutDialog.cpp @@ -612,7 +627,8 @@ msgstr "forum" #: src/AboutDialog.cpp msgid "translator_credits" msgstr "" -"Tradução para Português por Bruno Ramalhete, Bruno Gravato, Inácio Barroso e Cleber Tavano.\n" +"Tradução para Português por Bruno Ramalhete, Bruno Gravato, Inácio Barroso e " +"Cleber Tavano.\n" "\n" "Comentários e sugestões são sempre bem-vindos." @@ -623,8 +639,12 @@ msgstr "

" #. i18n-hint: The program's name substitutes for %s #: src/AboutDialog.cpp #, c-format -msgid "%s the free, open source, cross-platform software for recording and editing sounds." -msgstr "%s o programa multiplataforma, livre e de código aberto, para gravar e editar sons." +msgid "" +"%s the free, open source, cross-platform software for recording and editing " +"sounds." +msgstr "" +"%s o programa multiplataforma, livre e de código aberto, para gravar e " +"editar sons." #: src/AboutDialog.cpp msgid "Credits" @@ -838,7 +858,7 @@ msgstr "Suporte a Mudança Extrema de Tom e Ritmo" #: src/AboutDialog.cpp msgctxt "about dialog" msgid "Legal" -msgstr "" +msgstr "Legal" #: src/AboutDialog.cpp msgid "GPL License" @@ -848,24 +868,28 @@ msgstr "Licença GPL" #: src/AboutDialog.cpp msgctxt "about dialog" msgid "PRIVACY POLICY" -msgstr "" +msgstr "POLÍTICA DE PRIVACIDADE" #: src/AboutDialog.cpp -msgid "App update checking and error reporting require network access. These features are optional." +msgid "" +"App update checking and error reporting require network access. These " +"features are optional." msgstr "" +"A verificação de atualização de aplicações e o relato de erros requerem " +"acesso à rede. Estas características são opcionais." #. i18n-hint: %s will be replaced with "our Privacy Policy" #: src/AboutDialog.cpp src/prefs/ApplicationPrefs.cpp #: src/update/UpdateNoticeDialog.cpp -#, fuzzy, c-format +#, c-format msgid "See %s for more info." -msgstr "Selecione um ou mais ficheiros" +msgstr "Verifique %s para mais informação." #. i18n-hint: Title of hyperlink to the privacy policy. This is an object of "See". #: src/AboutDialog.cpp src/prefs/ApplicationPrefs.cpp #: src/update/UpdateNoticeDialog.cpp msgid "our Privacy Policy" -msgstr "" +msgstr "nossa Política de Privacidade" #: src/AdornedRulerPanel.cpp msgid "Timeline actions disabled during recording" @@ -1004,11 +1028,13 @@ msgstr "Falhou!" msgid "" "Reset Preferences?\n" "\n" -"This is a one-time question, after an 'install' where you asked to have the Preferences reset." +"This is a one-time question, after an 'install' where you asked to have the " +"Preferences reset." msgstr "" "Reconfigurar as Preferências? \n" "\n" -"Esta é pergunta é feita apenas uma vez, após uma instalação onde pede para reverter as Preferências." +"Esta é pergunta é feita apenas uma vez, após uma instalação onde pede para " +"reverter as Preferências." #: src/AudacityApp.cpp msgid "Reset Audacity Preferences" @@ -1027,7 +1053,8 @@ msgstr "" #: src/AudacityApp.cpp msgid "SQLite library failed to initialize. Audacity cannot continue." -msgstr "A biblioteca SQLite falhou ao iniciar. O Audacity não consegue continuar." +msgstr "" +"A biblioteca SQLite falhou ao iniciar. O Audacity não consegue continuar." #: src/AudacityApp.cpp msgid "Block size must be within 256 to 100000000\n" @@ -1066,11 +1093,14 @@ msgstr "&Ficheiro" #: src/AudacityApp.cpp msgid "" "Audacity could not find a safe place to store temporary files.\n" -"Audacity needs a place where automatic cleanup programs won't delete the temporary files.\n" +"Audacity needs a place where automatic cleanup programs won't delete the " +"temporary files.\n" "Please enter an appropriate directory in the preferences dialog." msgstr "" -"O Audacity não conseguiu encontrar um lugar seguro para guardar os ficheiros temporários. \n" -"O Audacity precisa de um sítio onde programas de limpeza não eliminem os ficheiros temporários.\n" +"O Audacity não conseguiu encontrar um lugar seguro para guardar os ficheiros " +"temporários. \n" +"O Audacity precisa de um sítio onde programas de limpeza não eliminem os " +"ficheiros temporários.\n" "Por favor, indique um diretório apropriado na caixa de diálogos Preferências." #: src/AudacityApp.cpp @@ -1078,12 +1108,17 @@ msgid "" "Audacity could not find a place to store temporary files.\n" "Please enter an appropriate directory in the preferences dialog." msgstr "" -"O Audacity não conseguiu encontrar um sítio para guardar os ficheiros temporários. \n" +"O Audacity não conseguiu encontrar um sítio para guardar os ficheiros " +"temporários. \n" "Por favor, indique um diretório apropriado na caixa de diálogos Preferências." #: src/AudacityApp.cpp -msgid "Audacity is now going to exit. Please launch Audacity again to use the new temporary directory." -msgstr "O Audacity irá encerrar agora. Abra o programa novamente para utilizar a nova pasta temporária." +msgid "" +"Audacity is now going to exit. Please launch Audacity again to use the new " +"temporary directory." +msgstr "" +"O Audacity irá encerrar agora. Abra o programa novamente para utilizar a " +"nova pasta temporária." #: src/AudacityApp.cpp msgid "" @@ -1254,21 +1289,28 @@ msgid "" "\n" "\t%s\n" "\n" -"This could be caused by many reasons, but the most likely are that the disk is full or you do not have write permissions to the file. More information can be obtained by clicking the help button below.\n" +"This could be caused by many reasons, but the most likely are that the disk " +"is full or you do not have write permissions to the file. More information " +"can be obtained by clicking the help button below.\n" "\n" "You can attempt to correct the issue and then click \"Retry\" to continue.\n" "\n" -"If you choose to \"Quit Audacity\", your project may be left in an unsaved state which will be recovered the next time you open it." +"If you choose to \"Quit Audacity\", your project may be left in an unsaved " +"state which will be recovered the next time you open it." msgstr "" "O ficheiro de configuração seguinte não pode ser acedido:\n" "\n" "\t%s\n" "\n" -"Isto pode ser causado por várias razões, mas o mais provável é que o disco está cheio ou não tem permissões de escrita para o ficheiro. Mais informação pode ser obtida clicando no botão de ajuda abaixo.\n" +"Isto pode ser causado por várias razões, mas o mais provável é que o disco " +"está cheio ou não tem permissões de escrita para o ficheiro. Mais informação " +"pode ser obtida clicando no botão de ajuda abaixo.\n" "\n" -"Pode tentar corrigir o problema e depois clicar em \"Repetir\" para continuar.\n" +"Pode tentar corrigir o problema e depois clicar em \"Repetir\" para " +"continuar.\n" "\n" -"Se escolher em \"Sair do Audacity\", o seu projeto pode ser deixado num estado não guardado que poerá ser recuperado da próxima vez que o abrir." +"Se escolher em \"Sair do Audacity\", o seu projeto pode ser deixado num " +"estado não guardado que poerá ser recuperado da próxima vez que o abrir." #: src/AudacityFileConfig.cpp src/ShuttleGui.cpp src/commands/HelpCommand.cpp #: src/effects/Equalization.cpp src/export/Export.cpp src/menus/HelpMenus.cpp @@ -1370,8 +1412,12 @@ msgid "Out of memory!" msgstr "Memória cheia!" #: src/AudioIO.cpp -msgid "Automated Recording Level Adjustment stopped. It was not possible to optimize it more. Still too high." -msgstr "O Ajuste Automático do Nível de Gravação foi parado. Não foi possível otimizar mais. Ainda está muito elevado." +msgid "" +"Automated Recording Level Adjustment stopped. It was not possible to " +"optimize it more. Still too high." +msgstr "" +"O Ajuste Automático do Nível de Gravação foi parado. Não foi possível " +"otimizar mais. Ainda está muito elevado." #: src/AudioIO.cpp #, c-format @@ -1379,8 +1425,12 @@ msgid "Automated Recording Level Adjustment decreased the volume to %f." msgstr "O Ajuste Automático do Nível de Gravação diminuiu o volume para %f." #: src/AudioIO.cpp -msgid "Automated Recording Level Adjustment stopped. It was not possible to optimize it more. Still too low." -msgstr "O Ajuste Automático do Nível de Gravação foi parado. Não foi possível otimizar mais. Ainda está muito baixo." +msgid "" +"Automated Recording Level Adjustment stopped. It was not possible to " +"optimize it more. Still too low." +msgstr "" +"O Ajuste Automático do Nível de Gravação foi parado. Não foi possível " +"otimizar mais. Ainda está muito baixo." #: src/AudioIO.cpp #, c-format @@ -1388,17 +1438,31 @@ msgid "Automated Recording Level Adjustment increased the volume to %.2f." msgstr "O Ajuste Automático do Nível de Gravação aumentou o volume para %.2f." #: src/AudioIO.cpp -msgid "Automated Recording Level Adjustment stopped. The total number of analyses has been exceeded without finding an acceptable volume. Still too high." -msgstr "O Ajuste Automático do Nível de Gravação foi parado. O número total de análises foi excedido sem encontrar um volume aceitável. Ainda está muito alto." +msgid "" +"Automated Recording Level Adjustment stopped. The total number of analyses " +"has been exceeded without finding an acceptable volume. Still too high." +msgstr "" +"O Ajuste Automático do Nível de Gravação foi parado. O número total de " +"análises foi excedido sem encontrar um volume aceitável. Ainda está muito " +"alto." #: src/AudioIO.cpp -msgid "Automated Recording Level Adjustment stopped. The total number of analyses has been exceeded without finding an acceptable volume. Still too low." -msgstr "O Ajuste Automático do Nível de Gravação foi parado. O número total de análises foi excedido sem encontrar um volume aceitável. Ainda está muito baixo." +msgid "" +"Automated Recording Level Adjustment stopped. The total number of analyses " +"has been exceeded without finding an acceptable volume. Still too low." +msgstr "" +"O Ajuste Automático do Nível de Gravação foi parado. O número total de " +"análises foi excedido sem encontrar um volume aceitável. Ainda está muito " +"baixo." #: src/AudioIO.cpp #, c-format -msgid "Automated Recording Level Adjustment stopped. %.2f seems an acceptable volume." -msgstr "O Ajuste Automático do Nível de Gravação foi parado. %.2f parece ser um volume aceitável." +msgid "" +"Automated Recording Level Adjustment stopped. %.2f seems an acceptable " +"volume." +msgstr "" +"O Ajuste Automático do Nível de Gravação foi parado. %.2f parece ser um " +"volume aceitável." #: src/AudioIOBase.cpp msgid "Stream is active ... unable to gather information.\n" @@ -1495,7 +1559,8 @@ msgstr "Nenhum dispositivo de reprodução encontrado para '%s'.\n" #: src/AudioIOBase.cpp msgid "Cannot check mutual sample rates without both devices.\n" -msgstr "Não é possível verificar taxas de sample mútuas sem ambos os dispositivos.\n" +msgstr "" +"Não é possível verificar taxas de sample mútuas sem ambos os dispositivos.\n" #: src/AudioIOBase.cpp #, c-format @@ -1582,13 +1647,16 @@ msgstr "Recuperação Automática de Falhas" #: src/AutoRecoveryDialog.cpp msgid "" -"The following projects were not saved properly the last time Audacity was run and can be automatically recovered.\n" +"The following projects were not saved properly the last time Audacity was " +"run and can be automatically recovered.\n" "\n" "After recovery, save the projects to ensure changes are written to disk." msgstr "" -"Os projetos seguintes não foram guardados corretamente da última vez que correu o Audacity e podem ser automaticamente recuperados.\n" +"Os projetos seguintes não foram guardados corretamente da última vez que " +"correu o Audacity e podem ser automaticamente recuperados.\n" "\n" -"Após a recuperação, guarde os projetos para garantir que as alterações sejam gravadas no disco." +"Após a recuperação, guarde os projetos para garantir que as alterações sejam " +"gravadas no disco." #: src/AutoRecoveryDialog.cpp msgid "Recoverable &projects" @@ -1629,7 +1697,8 @@ msgid "" msgstr "" "De certeza que quer descartar os projetos selecionados?\n" "\n" -"Escolher \"Sim\" elimina permanentemente os projetos selecionados imediatamente." +"Escolher \"Sim\" elimina permanentemente os projetos selecionados " +"imediatamente." #: src/BatchCommandDialog.cpp msgid "Select Command" @@ -1706,7 +1775,7 @@ msgstr "\"%s\" requer uma ou mais faixas a serem selecionadas." #: src/BatchCommands.cpp #, c-format msgid "Your batch command of %s was not recognized." -msgstr "O seu comando para processar em lote de %s não foi reconhecido." +msgstr "O seu comando de lote de %s não foi reconhecido." #. i18n-hint: active verb in past tense #: src/BatchCommands.cpp @@ -1993,7 +2062,8 @@ msgstr "Tamaho de Dados teste devem ser com o alcance de 1 - 2000 MB." #: src/Benchmark.cpp #, c-format msgid "Using %lld chunks of %lld samples each, for a total of %.1f MB.\n" -msgstr "Utilizando %lld pedaços de %lld samples cada, para um total de %.1f MB.\n" +msgstr "" +"Utilizando %lld pedaços de %lld samples cada, para um total de %.1f MB.\n" #: src/Benchmark.cpp msgid "Preparing...\n" @@ -2120,14 +2190,22 @@ msgstr "" #. i18n-hint: %s will be replaced by the name of an action, such as Normalize, Cut, Fade. #: src/CommonCommandFlags.cpp #, c-format -msgid "Select the audio for %s to use (for example, Cmd + A to Select All) then try again." -msgstr "Selecione o áudio para o %s para usar (por exemplo, Cmd + A para Selecionar Tudo) e tente de novo." +msgid "" +"Select the audio for %s to use (for example, Cmd + A to Select All) then try " +"again." +msgstr "" +"Selecione o áudio para o %s para usar (por exemplo, Cmd + A para Selecionar " +"Tudo) e tente de novo." #. i18n-hint: %s will be replaced by the name of an action, such as Normalize, Cut, Fade. #: src/CommonCommandFlags.cpp #, c-format -msgid "Select the audio for %s to use (for example, Ctrl + A to Select All) then try again." -msgstr "Selecione o áudio para o %s para usar (por exemplo, Ctrl + A para Selecionar Tudo) e tente de novo." +msgid "" +"Select the audio for %s to use (for example, Ctrl + A to Select All) then " +"try again." +msgstr "" +"Selecione o áudio para o %s para usar (por exemplo, Ctrl + A para Selecionar " +"Tudo) e tente de novo." #: src/CommonCommandFlags.cpp msgid "No Audio Selected" @@ -2139,16 +2217,20 @@ msgstr "Nenhum Áudio selecionado" msgid "" "Select the audio for %s to use.\n" "\n" -"1. Select audio that represents noise and use %s to get your 'noise profile'.\n" +"1. Select audio that represents noise and use %s to get your 'noise " +"profile'.\n" "\n" -"2. When you have got your noise profile, select the audio you want to change\n" +"2. When you have got your noise profile, select the audio you want to " +"change\n" "and use %s to change that audio." msgstr "" "Selecione o áudio para %s a utilizar.\n" "\n" -"1. Selecione o áudio que representa o ruído e utilize %s para obter o seu 'perfil de ruído'.\n" +"1. Selecione o áudio que representa o ruído e utilize %s para obter o seu " +"'perfil de ruído'.\n" "\n" -"2. quando tiver o seu perfil de ruído, selecione o áudio que pretende alterar\n" +"2. quando tiver o seu perfil de ruído, selecione o áudio que pretende " +"alterar\n" "e utilize %s para alterar esse áudio." #: src/CommonCommandFlags.cpp @@ -2200,11 +2282,12 @@ msgstr "Falhou na definição do modo de segurança na ligação primária à %s #: src/DBConnection.cpp #, c-format msgid "Failed to set safe mode on checkpoint connection to %s" -msgstr "Não conseguiu definir o modo de segurança na ligação de controlo para %s" +msgstr "" +"Não conseguiu definir o modo de segurança na ligação de controlo para %s" #: src/DBConnection.cpp msgid "Checkpointing project" -msgstr "Checkpointing projeto" +msgstr "Projeto de checkpoint" #: src/DBConnection.cpp #, c-format @@ -2282,8 +2365,10 @@ msgid "" msgstr "" "\n" "\n" -"Ficheiros marcados como EM FALTA foram movidos ou apagados e não podem ser copiados.\n" -"Recoloque os ficheiros na sua localização original para poder copiá-los para o projeto." +"Ficheiros marcados como EM FALTA foram movidos ou apagados e não podem ser " +"copiados.\n" +"Recoloque os ficheiros na sua localização original para poder copiá-los para " +"o projeto." #: src/Dependencies.cpp msgid "Project Dependencies" @@ -2358,20 +2443,27 @@ msgid "Missing" msgstr "Em Falta" #: src/Dependencies.cpp -msgid "If you proceed, your project will not be saved to disk. Is this what you want?" -msgstr "Se continuar, o projeto não será guardado em disco. Tem a certeza de que deseja continuar?" +msgid "" +"If you proceed, your project will not be saved to disk. Is this what you " +"want?" +msgstr "" +"Se continuar, o projeto não será guardado em disco. Tem a certeza de que " +"deseja continuar?" #: src/Dependencies.cpp msgid "" -"Your project is self-contained; it does not depend on any external audio files. \n" +"Your project is self-contained; it does not depend on any external audio " +"files. \n" "\n" "Some older Audacity projects may not be self-contained, and care \n" "is needed to keep their external dependencies in the right place.\n" "New projects will be self-contained and are less risky." msgstr "" -"O seu projeto é independente; Ele não depende de quaisquer ficheiros de áudio externos. \n" +"O seu projeto é independente; Ele não depende de quaisquer ficheiros de " +"áudio externos. \n" "\n" -"Alguns projetos mais antigos do Audacity podem não ser independentes, e o cuidado \n" +"Alguns projetos mais antigos do Audacity podem não ser independentes, e o " +"cuidado \n" "é necessário para manter suas dependências externas no lugar certo.\n" "Novos projetos serão independentes e são menos arriscados." @@ -2460,7 +2552,8 @@ msgid "" "\n" "You may want to go back to Preferences > Libraries and re-configure it." msgstr "" -"O FFmpeg foi configurado nas Preferências e carregado com sucesso anteriormente, \n" +"O FFmpeg foi configurado nas Preferências e carregado com sucesso " +"anteriormente, \n" "mas o Audacity desta vez não conseguiu carregá-lo no arranque. \n" "\n" "Poderá querer voltar a Preferências > Bibliotecas e reconfigurá-lo." @@ -2480,7 +2573,8 @@ msgstr "Localizar o FFmpeg" #: src/FFmpeg.cpp #, c-format msgid "Audacity needs the file '%s' to import and export audio via FFmpeg." -msgstr "O Audacity precisa do ficheiro %s para importar e exportar áudio via FFmpeg." +msgstr "" +"O Audacity precisa do ficheiro %s para importar e exportar áudio via FFmpeg." #: src/FFmpeg.cpp #, c-format @@ -2566,7 +2660,9 @@ msgstr "" #: src/FileException.cpp #, c-format msgid "Audacity successfully wrote a file in %s but failed to rename it as %s." -msgstr "Audacity escreveu com sucesso um ficheiro em %s mas falhou ao renomear como %s." +msgstr "" +"Audacity escreveu com sucesso um ficheiro em %s mas falhou ao renomear como " +"%s." #: src/FileException.cpp #, c-format @@ -2649,17 +2745,20 @@ msgid "%s files" msgstr "Ficheiros %s" #: src/FileNames.cpp -msgid "The specified filename could not be converted due to Unicode character use." -msgstr "O nome do ficheiro especificado não pôde ser convertido devido ao esquema de Unicode." +msgid "" +"The specified filename could not be converted due to Unicode character use." +msgstr "" +"O nome do ficheiro especificado não pôde ser convertido devido ao esquema de " +"Unicode." #: src/FileNames.cpp msgid "Specify New Filename:" msgstr "Indique um novo nome para o ficheiro:" #: src/FileNames.cpp -#, fuzzy, c-format +#, c-format msgid "Directory %s does not have write permissions" -msgstr "A pasta %s não existe. Deseja criá-la?" +msgstr "O diretório %s não tem permissões de escrita" #: src/FreqWindow.cpp msgid "Frequency Analysis" @@ -2770,12 +2869,18 @@ msgstr "&Redesenhar..." #: src/FreqWindow.cpp msgid "To plot the spectrum, all selected tracks must be the same sample rate." -msgstr "Para desenhar o espectro, todas as faixas selecionadas devem ter a mesma taxa de sample." +msgstr "" +"Para desenhar o espectro, todas as faixas selecionadas devem ter a mesma " +"taxa de sample." #: src/FreqWindow.cpp #, c-format -msgid "Too much audio was selected. Only the first %.1f seconds of audio will be analyzed." -msgstr "Demasiado áudio selecionado. Só os primeiros %.1f segundos de áudio serão analisados." +msgid "" +"Too much audio was selected. Only the first %.1f seconds of audio will be " +"analyzed." +msgstr "" +"Demasiado áudio selecionado. Só os primeiros %.1f segundos de áudio serão " +"analisados." #: src/FreqWindow.cpp msgid "Not enough data selected." @@ -2897,24 +3002,39 @@ msgid "No Local Help" msgstr "Sem Ajuda Local" #: src/HelpText.cpp -msgid "

The version of Audacity you are using is an Alpha test version." -msgstr "

A versão do Audacity que está a utilizar é uma Versão Alfa Teste." +msgid "" +"

The version of Audacity you are using is an Alpha test version." +msgstr "" +"

A versão do Audacity que está a utilizar é uma Versão Alfa Teste." #: src/HelpText.cpp -msgid "

The version of Audacity you are using is a Beta test version." -msgstr "

A versão do Audacity que está a utilizar é uma Versão de teste Beta." +msgid "" +"

The version of Audacity you are using is a Beta test version." +msgstr "" +"

A versão do Audacity que está a utilizar é uma Versão de teste " +"Beta." #: src/HelpText.cpp msgid "Get the Official Released Version of Audacity" msgstr "Obtenha a Versão de Lançamento Oficial do Audacity" #: src/HelpText.cpp -msgid "We strongly recommend that you use our latest stable released version, which has full documentation and support.

" -msgstr "Nós recomendamos que utilize a nossa versão final estável, que contém toda a documentação e suporte.

" +msgid "" +"We strongly recommend that you use our latest stable released version, which " +"has full documentation and support.

" +msgstr "" +"Nós recomendamos que utilize a nossa versão final estável, que contém toda a " +"documentação e suporte.

" #: src/HelpText.cpp -msgid "You can help us get Audacity ready for release by joining our [[https://www.audacityteam.org/community/|community]].


" -msgstr "Você pode ajudar-nos a ter o Audacity pronto para lançamento juntando-se a [[https://www.audacityteam.org/community/|community]].


" +msgid "" +"You can help us get Audacity ready for release by joining our [[https://www." +"audacityteam.org/community/|community]].


" +msgstr "" +"Você pode ajudar-nos a ter o Audacity pronto para lançamento juntando-se a " +"[[https://www.audacityteam.org/community/|community]].


" #: src/HelpText.cpp msgid "How to get help" @@ -2922,41 +3042,89 @@ msgstr "Como obter ajuda" #: src/HelpText.cpp msgid "These are our support methods:" -msgstr "Estas são as nossas opções de suporte:" +msgstr "Estes são os nossos métodos de apoio:" #. i18n-hint: Preserve '[[help:Quick_Help|' as it's the name of a link. #: src/HelpText.cpp -msgid "[[help:Quick_Help|Quick Help]] - if not installed locally, [[https://manual.audacityteam.org/quick_help.html|view online]]" -msgstr "[[help:Quick_Help|Quick Help]] - se não estiver instalado localmente, [[https://manual.audacityteam.org/quick_help.html|view online]]" +msgid "" +"[[help:Quick_Help|Quick Help]] - if not installed locally, [[https://manual." +"audacityteam.org/quick_help.html|view online]]" +msgstr "" +"[[help:Quick_Help|Quick Help]] - se não estiver instalado localmente, " +"[[https://manual.audacityteam.org/quick_help.html|view online]]" #. i18n-hint: Preserve '[[help:Main_Page|' as it's the name of a link. #: src/HelpText.cpp -msgid " [[help:Main_Page|Manual]] - if not installed locally, [[https://manual.audacityteam.org/|view online]]" -msgstr " [[help:Main_Page|Manual]] - se não estiver instalado localmente, [[https://manual.audacityteam.org/|view online]]" +msgid "" +" [[help:Main_Page|Manual]] - if not installed locally, [[https://manual." +"audacityteam.org/|view online]]" +msgstr "" +" [[help:Main_Page|Manual]] - se não estiver instalado localmente, [[https://" +"manual.audacityteam.org/|view online]]" #: src/HelpText.cpp -msgid " [[https://forum.audacityteam.org/|Forum]] - ask your question directly, online." -msgstr " [[https://forum.audacityteam.org/|Forum]] - faça a sua pergunta diretamente, online." +msgid "" +" [[https://forum.audacityteam.org/|Forum]] - ask your question directly, " +"online." +msgstr "" +" [[https://forum.audacityteam.org/|Forum]] - faça a sua pergunta " +"diretamente, online." #: src/HelpText.cpp -msgid "More:
Visit our [[https://wiki.audacityteam.org/index.php|Wiki]] for tips, tricks, extra tutorials and effects plug-ins." -msgstr "Mais:
Visite o nosso wiki [[https://wiki.audacityteam.org/index.php|Wiki]] para dicas, truques, tutoriais extra e plug-ins de efeitos." +msgid "" +"More: Visit our [[https://wiki.audacityteam.org/index.php|Wiki]] for " +"tips, tricks, extra tutorials and effects plug-ins." +msgstr "" +"Mais: Visite o nosso wiki [[https://wiki.audacityteam.org/index.php|" +"Wiki]] para dicas, truques, tutoriais extra e plug-ins de efeitos." #: src/HelpText.cpp -msgid "Audacity can import unprotected files in many other formats (such as M4A and WMA, compressed WAV files from portable recorders and audio from video files) if you download and install the optional [[https://manual.audacityteam.org/man/faq_opening_and_saving_files.html#foreign| FFmpeg library]] to your computer." -msgstr "O Audacity pode importar ficheiros desprotegidos em muitos outros formatos (como M4A e WMA, ficheiros WAV comprimidos de gravadores portáteis e áudio de ficheiros de vídeo) se você descarregar e instalar [[https://manual.audacityteam.org/man/faq_opening_and_saving_files.html#foreign| FFmpeg library]] opcional para o seu computador." +msgid "" +"Audacity can import unprotected files in many other formats (such as M4A and " +"WMA, compressed WAV files from portable recorders and audio from video " +"files) if you download and install the optional [[https://manual." +"audacityteam.org/man/faq_opening_and_saving_files.html#foreign| FFmpeg " +"library]] to your computer." +msgstr "" +"O Audacity pode importar ficheiros desprotegidos em muitos outros formatos " +"(como M4A e WMA, ficheiros WAV comprimidos de gravadores portáteis e áudio " +"de ficheiros de vídeo) se você descarregar e instalar [[https://manual." +"audacityteam.org/man/faq_opening_and_saving_files.html#foreign| FFmpeg " +"library]] opcional para o seu computador." #: src/HelpText.cpp -msgid "You can also read our help on importing [[https://manual.audacityteam.org/man/playing_and_recording.html#midi|MIDI files]] and tracks from [[https://manual.audacityteam.org/man/faq_opening_and_saving_files.html#fromcd| audio CDs]]." -msgstr "Pode também ler a nossa ajuda ao importar [[https://manual.audacityteam.org/man/playing_and_recording.html#midi|MIDI files]] e faixas de [[https://manual.audacityteam.org/man/faq_opening_and_saving_files.html#fromcd| audio CDs]]." +msgid "" +"You can also read our help on importing [[https://manual.audacityteam.org/" +"man/playing_and_recording.html#midi|MIDI files]] and tracks from [[https://" +"manual.audacityteam.org/man/faq_opening_and_saving_files.html#fromcd| audio " +"CDs]]." +msgstr "" +"Pode também ler a nossa ajuda ao importar [[https://manual.audacityteam.org/" +"man/playing_and_recording.html#midi|MIDI files]] e faixas de [[https://" +"manual.audacityteam.org/man/faq_opening_and_saving_files.html#fromcd| audio " +"CDs]]." #: src/HelpText.cpp -msgid "The Manual does not appear to be installed. Please [[*URL*|view the Manual online]].

To always view the Manual online, change \"Location of Manual\" in Interface Preferences to \"From Internet\"." -msgstr "Parece que a pasta 'help' não está instalada.
Por favor, [[*URL*|view the Manual online]].

Para ver sempre o Manual online, altere \"Localização do Manual\" Nas Definições e em \"Da Internet\"." +msgid "" +"The Manual does not appear to be installed. Please [[*URL*|view the Manual " +"online]].

To always view the Manual online, change \"Location of " +"Manual\" in Interface Preferences to \"From Internet\"." +msgstr "" +"Parece que a pasta 'help' não está instalada.
Por favor, [[*URL*|view " +"the Manual online]].

Para ver sempre o Manual online, altere " +"\"Localização do Manual\" Nas Definições e em \"Da Internet\"." #: src/HelpText.cpp -msgid "The Manual does not appear to be installed. Please [[*URL*|view the Manual online]] or [[https://manual.audacityteam.org/man/unzipping_the_manual.html| download the Manual]].

To always view the Manual online, change \"Location of Manual\" in Interface Preferences to \"From Internet\"." -msgstr "O Manual não parece estar instalado. Por favor [[*URL*|view the Manual online]] ou [[https://manual.audacityteam.org/man/unzipping_the_manual.html| descarregue o Manual]].

Para poder sempre ver o Manual online, mude \"Localização do Manual\" em Interface Preferências para \"Da Internet\"." +msgid "" +"The Manual does not appear to be installed. Please [[*URL*|view the Manual " +"online]] or [[https://manual.audacityteam.org/man/unzipping_the_manual.html| " +"download the Manual]].

To always view the Manual online, change " +"\"Location of Manual\" in Interface Preferences to \"From Internet\"." +msgstr "" +"O Manual não parece estar instalado. Por favor [[*URL*|view the Manual " +"online]] ou [[https://manual.audacityteam.org/man/unzipping_the_manual.html| " +"descarregue o Manual]].

Para poder sempre ver o Manual online, mude " +"\"Localização do Manual\" em Interface Preferências para \"Da Internet\"." #: src/HelpText.cpp msgid "Check Online" @@ -3082,7 +3250,9 @@ msgstr "Novo…" #: src/LabelDialog.cpp msgid "Press F2 or double click to edit cell contents." -msgstr "Prima duas vezes o Botão do Rato ou pressione F2 para editar o conteúdo das células." +msgstr "" +"Prima duas vezes o Botão do Rato ou pressione F2 para editar o conteúdo das " +"células." #: src/LabelDialog.cpp src/menus/FileMenus.cpp msgid "Select a text file containing labels" @@ -3135,8 +3305,11 @@ msgstr "Escolha o idioma que o Audacity deverá usar:" #. * versions of language names. #: src/LangChoice.cpp #, c-format -msgid "The language you have chosen, %s (%s), is not the same as the system language, %s (%s)." -msgstr "O idioma escolhido, %s (%s), não é o mesmo do idioma do sistema, %s (%s)." +msgid "" +"The language you have chosen, %s (%s), is not the same as the system " +"language, %s (%s)." +msgstr "" +"O idioma escolhido, %s (%s), não é o mesmo do idioma do sistema, %s (%s)." #: src/LangChoice.cpp src/effects/VST/VSTEffect.cpp #: src/widgets/FileDialog/gtk/FileDialogPrivate.cpp @@ -3499,7 +3672,8 @@ msgstr "Gerir Plug-ins" #: src/PluginManager.cpp msgid "Select effects, click the Enable or Disable button, then click OK." -msgstr "Selecionar efeitos, clique o botão Ativar ou Desativar, e depois clique OK." +msgstr "" +"Selecionar efeitos, clique o botão Ativar ou Desativar, e depois clique OK." #. i18n-hint: This is before radio buttons selecting which effects to show #: src/PluginManager.cpp @@ -3670,7 +3844,8 @@ msgid "" "Try changing the audio host, playback device and the project sample rate." msgstr "" "Erro ao abrir dispositivo de som.\n" -"Tente alterar o anfitrião de áudio, dispositivo de reprodução e a taxa de sample do projeto." +"Tente alterar o anfitrião de áudio, dispositivo de reprodução e a taxa de " +"sample do projeto." #: src/ProjectAudioManager.cpp src/menus/TransportMenus.cpp msgid "The tracks selected for recording must all have the same sampling rate" @@ -3744,8 +3919,14 @@ msgstr "Fechar o projeto imediatamente sem alterações" # Fechar projeto sem alterações #: src/ProjectFSCK.cpp -msgid "Continue with repairs noted in log, and check for more errors. This will save the project in its current state, unless you \"Close project immediately\" on further error alerts." -msgstr "Continuar as correções anotadas no relatório, e procurar mais erros. Isto guardará o projeto no estado atual, exceto se \"Fechar Projeto Imediatamente\" nos próximos alertas." +msgid "" +"Continue with repairs noted in log, and check for more errors. This will " +"save the project in its current state, unless you \"Close project immediately" +"\" on further error alerts." +msgstr "" +"Continuar as correções anotadas no relatório, e procurar mais erros. Isto " +"guardará o projeto no estado atual, exceto se \"Fechar Projeto Imediatamente" +"\" nos próximos alertas." #: src/ProjectFSCK.cpp msgid "Warning - Problems Reading Sequence Tags" @@ -3914,7 +4095,8 @@ msgid "" "\n" "Select 'Help > Diagnostics > Show Log...' to see details." msgstr "" -"A verificação do projeto encontrou inconsistências durante a recuperação automática.\n" +"A verificação do projeto encontrou inconsistências durante a recuperação " +"automática.\n" "\n" "Selecione 'Ajuda > Diagnóstico > Verificar Relatório…' para ver detalhes." @@ -4166,10 +4348,12 @@ msgstr "(Recuperado)" #, c-format msgid "" "This file was saved using Audacity %s.\n" -"You are using Audacity %s. You may need to upgrade to a newer version to open this file." +"You are using Audacity %s. You may need to upgrade to a newer version to " +"open this file." msgstr "" "Este ficheiro foi guardado no Audacity %s.\n" -"Está a utilizar a versão %s. Poderá ter que atualizar o Audacity para conseguir abrir este ficheiro." +"Está a utilizar a versão %s. Poderá ter que atualizar o Audacity para " +"conseguir abrir este ficheiro." #: src/ProjectFileIO.cpp msgid "Can't open project file" @@ -4177,7 +4361,8 @@ msgstr "Não foi possível abrir o ficheiro do projeto" #: src/ProjectFileIO.cpp msgid "Failed to remove the autosave information from the project file." -msgstr "Falha ao remover as informações de guardar automático do ficheiro do projeto." +msgstr "" +"Falha ao remover as informações de guardar automático do ficheiro do projeto." #: src/ProjectFileIO.cpp msgid "Unable to bind to blob" @@ -4192,8 +4377,12 @@ msgid "Unable to parse project information." msgstr "Não foi possível analisar as informações do projeto." #: src/ProjectFileIO.cpp -msgid "The project's database failed to reopen, possibly because of limited space on the storage device." -msgstr "A base de dados do projeto falhou ao reabrir, possivelmente por espaço limitado no dispositivo de armazenamento." +msgid "" +"The project's database failed to reopen, possibly because of limited space " +"on the storage device." +msgstr "" +"A base de dados do projeto falhou ao reabrir, possivelmente por espaço " +"limitado no dispositivo de armazenamento." #: src/ProjectFileIO.cpp msgid "Saving project" @@ -4228,7 +4417,8 @@ msgid "" "\n" "%s" msgstr "" -"Incapaz de remover informação de guardar automático, possivelmente devido ao espaço limitado\n" +"Incapaz de remover informação de guardar automático, possivelmente devido ao " +"espaço limitado\n" "no dispositivo de armazenamento.\n" "\n" "%s" @@ -4243,7 +4433,8 @@ msgid "" "\n" "It has been recovered to the last snapshot." msgstr "" -"Este projeto não foi guardado corretamente da última vez que correu o Audacity.\n" +"Este projeto não foi guardado corretamente da última vez que correu o " +"Audacity.\n" "\n" "Foi recuperado pelo último snapshot." @@ -4254,7 +4445,8 @@ msgid "" "It has been recovered to the last snapshot, but you must save it\n" "to preserve its contents." msgstr "" -"Este projeto não foi corretamente guardado da última vez que abriu o Audacity.\n" +"Este projeto não foi corretamente guardado da última vez que abriu o " +"Audacity.\n" "\n" "Foi recuperado devido ao último snapshot, mas precisa de o guardar\n" "para manter os conteúdos." @@ -4307,8 +4499,12 @@ msgstr "" "Por favor selecione um disco diferente com mais espaço livre." #: src/ProjectFileManager.cpp -msgid "The project exceeds the maximum size of 4GB when writing to a FAT32 formatted filesystem." -msgstr "O projeto excede o tamanho máximo de 4GB quando escrito num sistema de ficheiro formatado em FAT32." +msgid "" +"The project exceeds the maximum size of 4GB when writing to a FAT32 " +"formatted filesystem." +msgstr "" +"O projeto excede o tamanho máximo de 4GB quando escrito num sistema de " +"ficheiro formatado em FAT32." #: src/ProjectFileManager.cpp src/commands/ScreenshotCommand.cpp #, c-format @@ -4317,10 +4513,12 @@ msgstr "Guardado Como %s" #: src/ProjectFileManager.cpp msgid "" -"The project was not saved because the file name provided would overwrite another project.\n" +"The project was not saved because the file name provided would overwrite " +"another project.\n" "Please try again and select an original name." msgstr "" -"O projeto não foi guardado pois o nome do ficheiro indicado iria sobrepor um projeto existente.\n" +"O projeto não foi guardado pois o nome do ficheiro indicado iria sobrepor um " +"projeto existente.\n" "Por favor, tente novamente com outro nome." #: src/ProjectFileManager.cpp @@ -4333,8 +4531,10 @@ msgid "" "'Save Project' is for an Audacity project, not an audio file.\n" "For an audio file that will open in other apps, use 'Export'.\n" msgstr "" -"'Guardar Projeto' aplica-se a projetos do Audacity, não a ficheiros de áudio. \n" -"Para um ficheiro de áudio a ser aberto noutras aplicações, utilize 'Exportar'. \n" +"'Guardar Projeto' aplica-se a projetos do Audacity, não a ficheiros de " +"áudio. \n" +"Para um ficheiro de áudio a ser aberto noutras aplicações, utilize " +"'Exportar'. \n" #. i18n-hint: In each case, %s is the name #. of the file being overwritten. @@ -4362,10 +4562,12 @@ msgstr "Atenção ao Sobrescerver Projeto" #: src/ProjectFileManager.cpp msgid "" -"The project was not saved because the selected project is open in another window.\n" +"The project was not saved because the selected project is open in another " +"window.\n" "Please try again and select an original name." msgstr "" -"O projeto não foi guardado porque o projeto selecionado está aberto noutra janela.\n" +"O projeto não foi guardado porque o projeto selecionado está aberto noutra " +"janela.\n" "Por favor tente novamente e selecione um nome original." #: src/ProjectFileManager.cpp @@ -4479,19 +4681,23 @@ msgstr "Compactar Projeto" #: src/ProjectFileManager.cpp #, c-format msgid "" -"Compacting this project will free up disk space by removing unused bytes within the file.\n" +"Compacting this project will free up disk space by removing unused bytes " +"within the file.\n" "\n" "There is %s of free disk space and this project is currently using %s.\n" "\n" -"If you proceed, the current Undo/Redo History and clipboard contents will be discarded and you will recover approximately %s of disk space.\n" +"If you proceed, the current Undo/Redo History and clipboard contents will be " +"discarded and you will recover approximately %s of disk space.\n" "\n" "Do you want to continue?" msgstr "" -"Compactar este projeto irá libertar espaço em disco removendo bytes inutilizados dentro do ficheiro.\n" +"Compactar este projeto irá libertar espaço em disco removendo bytes " +"inutilizados dentro do ficheiro.\n" "\n" "Aqui há %s de espaço livre e este projeto está atualmente a usar %s.\n" "\n" -"Se proceder, o atual histórico de Anular/Refazer e os conteúdos do clipboard irão ser descartados e irá recuperar aproximadamente %s de espaço livre.\n" +"Se proceder, o atual histórico de Anular/Refazer e os conteúdos do clipboard " +"irão ser descartados e irá recuperar aproximadamente %s de espaço livre.\n" "\n" "Deseja continuar?" @@ -4602,8 +4808,11 @@ msgstr "Grupo de plug-in em %s foi fundido com um grupo anteriormente definido" #: src/Registry.cpp #, c-format -msgid "Plug-in item at %s conflicts with a previously defined item and was discarded" -msgstr "Item de plug-in em %s conflitua com um item anteriormente definido e foi descartado" +msgid "" +"Plug-in item at %s conflicts with a previously defined item and was discarded" +msgstr "" +"Item de plug-in em %s conflitua com um item anteriormente definido e foi " +"descartado" #: src/Registry.cpp #, c-format @@ -5012,7 +5221,9 @@ msgstr "Redefenir Géneros" #: src/Tags.cpp msgid "Are you sure you want to reset the genre list to defaults?" -msgstr "Tem certeza que deseja redefinir a lista de géneros para os valores predefinidos?" +msgstr "" +"Tem certeza que deseja redefinir a lista de géneros para os valores " +"predefinidos?" #: src/Tags.cpp msgid "Unable to open genre file." @@ -5241,7 +5452,8 @@ msgid "" "for Timer Recording because it would overwrite another project.\n" "Please try again and select an original name." msgstr "" -"O projeto não foi guardado pois o nome do ficheiro indicado iria sobrepor um projeto existente.\n" +"O projeto não foi guardado pois o nome do ficheiro indicado iria sobrepor um " +"projeto existente.\n" "Por favor, tente novamente com outro nome." #: src/TimerRecordDialog.cpp @@ -5275,14 +5487,16 @@ msgstr "Erro no Exportar Automático" #: src/TimerRecordDialog.cpp #, c-format msgid "" -"You may not have enough free disk space to complete this Timer Recording, based on your current settings.\n" +"You may not have enough free disk space to complete this Timer Recording, " +"based on your current settings.\n" "\n" "Do you wish to continue?\n" "\n" "Planned recording duration: %s\n" "Recording time remaining on disk: %s" msgstr "" -"Você pode não ter espaço suficiente no disco para completar este Temporizador de Recorde, baseado nas suas opções.\n" +"Você pode não ter espaço suficiente no disco para completar este " +"Temporizador de Recorde, baseado nas suas opções.\n" "\n" "Quer continuar?\n" "\n" @@ -5591,8 +5805,12 @@ msgid " Select On" msgstr " Em Seleção" #: src/TrackPanelResizeHandle.cpp -msgid "Click and drag to adjust relative size of stereo tracks, double-click to make heights equal" -msgstr "Clique e arraste para ajustar o tamanho relativo das faixas estéreo, clique duas vezes para tornar as alturas iguais" +msgid "" +"Click and drag to adjust relative size of stereo tracks, double-click to " +"make heights equal" +msgstr "" +"Clique e arraste para ajustar o tamanho relativo das faixas estéreo, clique " +"duas vezes para tornar as alturas iguais" #: src/TrackPanelResizeHandle.cpp msgid "Click and drag to resize the track." @@ -5722,7 +5940,8 @@ msgid "" "\n" "%s" msgstr "" -"%s: Não foi possível carregar configurações abaixo. Configurações predefinidas serão utilizadas.\n" +"%s: Não foi possível carregar configurações abaixo. Configurações " +"predefinidas serão utilizadas.\n" "\n" "%s" @@ -5782,8 +6001,13 @@ msgstr "" "* %s, porque deve ter atribuído o atalho %s para %s" #: src/commands/CommandManager.cpp -msgid "The following commands have had their shortcuts removed, because their default shortcut is new or changed, and is the same shortcut that you have assigned to another command." -msgstr "Os seguintes comandos tiveram os seus atalhos removidos, porque o seu atalho padrão é novo ou alterado, e é o mesmo atalho que atribuiu a outro comando." +msgid "" +"The following commands have had their shortcuts removed, because their " +"default shortcut is new or changed, and is the same shortcut that you have " +"assigned to another command." +msgstr "" +"Os seguintes comandos tiveram os seus atalhos removidos, porque o seu atalho " +"padrão é novo ou alterado, e é o mesmo atalho que atribuiu a outro comando." #: src/commands/CommandManager.cpp msgid "Shortcuts have been removed" @@ -6532,22 +6756,34 @@ msgid "Auto Duck" msgstr "Auto Duck" #: src/effects/AutoDuck.cpp -msgid "Reduces (ducks) the volume of one or more tracks whenever the volume of a specified \"control\" track reaches a particular level" -msgstr "Reduz (ducks) o volume de um ou mais faixas sempre que o volume de uma faixa \"controlo\" específica chegar a um nível particular" +msgid "" +"Reduces (ducks) the volume of one or more tracks whenever the volume of a " +"specified \"control\" track reaches a particular level" +msgstr "" +"Reduz (ducks) o volume de um ou mais faixas sempre que o volume de uma faixa " +"\"controlo\" específica chegar a um nível particular" #. i18n-hint: Auto duck is the name of an effect that 'ducks' (reduces the volume) #. * of the audio automatically when there is sound on another track. Not as #. * in 'Donald-Duck'! #: src/effects/AutoDuck.cpp -msgid "You selected a track which does not contain audio. AutoDuck can only process audio tracks." -msgstr "Selecionou uma faixa que não contém áudio. O AutoDuck só pode processar faixas de áudio." +msgid "" +"You selected a track which does not contain audio. AutoDuck can only process " +"audio tracks." +msgstr "" +"Selecionou uma faixa que não contém áudio. O AutoDuck só pode processar " +"faixas de áudio." #. i18n-hint: Auto duck is the name of an effect that 'ducks' (reduces the volume) #. * of the audio automatically when there is sound on another track. Not as #. * in 'Donald-Duck'! #: src/effects/AutoDuck.cpp -msgid "Auto Duck needs a control track which must be placed below the selected track(s)." -msgstr "O Auto Duck requer uma faixa de controlo que deve ser colocada abaixo da(s) faixa(s) selecionada(s)." +msgid "" +"Auto Duck needs a control track which must be placed below the selected " +"track(s)." +msgstr "" +"O Auto Duck requer uma faixa de controlo que deve ser colocada abaixo da(s) " +"faixa(s) selecionada(s)." #: src/effects/AutoDuck.cpp src/effects/TruncSilence.cpp msgid "db" @@ -7078,8 +7314,12 @@ msgstr "" #. i18n-hint: RMS abbreviates root mean square, a certain averaging method #: src/effects/Contrast.cpp -msgid "Contrast Analyzer, for measuring RMS volume differences between two selections of audio." -msgstr "Analista de Contraste, para medir diferenças de volume RMS entre duas seleções de áudio." +msgid "" +"Contrast Analyzer, for measuring RMS volume differences between two " +"selections of audio." +msgstr "" +"Analista de Contraste, para medir diferenças de volume RMS entre duas " +"seleções de áudio." #. i18n-hint noun #: src/effects/Contrast.cpp src/effects/ToneGen.cpp @@ -7566,8 +7806,12 @@ msgid "DTMF Tones" msgstr "Tons DTMF" #: src/effects/DtmfGen.cpp -msgid "Generates dual-tone multi-frequency (DTMF) tones like those produced by the keypad on telephones" -msgstr "Gera um tom duplo de multi frequência (DTMF) de tons como aqueles produzidos por teclas nos telefones" +msgid "" +"Generates dual-tone multi-frequency (DTMF) tones like those produced by the " +"keypad on telephones" +msgstr "" +"Gera um tom duplo de multi frequência (DTMF) de tons como aqueles produzidos " +"por teclas nos telefones" #: src/effects/DtmfGen.cpp msgid "" @@ -8054,18 +8298,23 @@ msgstr "Corte de Agudos" #: src/effects/Equalization.cpp msgid "" "To use this filter curve in a macro, please choose a new name for it.\n" -"Choose the 'Save/Manage Curves...' button and rename the 'unnamed' curve, then use that one." +"Choose the 'Save/Manage Curves...' button and rename the 'unnamed' curve, " +"then use that one." msgstr "" "Para usar essa curva de filtro numa macro, por favor, escolha um novo nome.\n" -"Escolha o 'Guardar/Gerir Curvas…' e renomeie a curva ' sem nome ' e, em seguida, use essa." +"Escolha o 'Guardar/Gerir Curvas…' e renomeie a curva ' sem nome ' e, em " +"seguida, use essa." #: src/effects/Equalization.cpp msgid "Filter Curve EQ needs a different name" msgstr "Curva de Filtro EQ precisa de um nome diferente" #: src/effects/Equalization.cpp -msgid "To apply Equalization, all selected tracks must have the same sample rate." -msgstr "Para aplicar a Equalização, todas as faixas selecionadas devem ter a mesma taxa de sample." +msgid "" +"To apply Equalization, all selected tracks must have the same sample rate." +msgstr "" +"Para aplicar a Equalização, todas as faixas selecionadas devem ter a mesma " +"taxa de sample." #: src/effects/Equalization.cpp msgid "Track sample rate is too low for this effect." @@ -8583,7 +8832,8 @@ msgstr "Redução do ruído" #: src/effects/NoiseReduction.cpp msgid "Removes background noise such as fans, tape noise, or hums" -msgstr "Remove o ruído do plano de fundo como ventoinhas, ruído de fita ou sussurros" +msgstr "" +"Remove o ruído do plano de fundo como ventoinhas, ruído de fita ou sussurros" #: src/effects/NoiseReduction.cpp msgid "Steps per block are too few for the window types." @@ -8595,7 +8845,8 @@ msgstr "Passos por bloco não podem exceder o tamanho da janela." #: src/effects/NoiseReduction.cpp msgid "Median method is not implemented for more than four steps per window." -msgstr "Método mediano não está implementado por mais de quatro passos por janela." +msgstr "" +"Método mediano não está implementado por mais de quatro passos por janela." #: src/effects/NoiseReduction.cpp msgid "You must specify the same window size for steps 1 and 2." @@ -8610,8 +8861,12 @@ msgid "All noise profile data must have the same sample rate." msgstr "Todos os dados de perfil de ruído devem ter a mesma taxa de sample." #: src/effects/NoiseReduction.cpp -msgid "The sample rate of the noise profile must match that of the sound to be processed." -msgstr "A taxa de sample do perfil de ruído deve coincidir com a do o som para ser processado." +msgid "" +"The sample rate of the noise profile must match that of the sound to be " +"processed." +msgstr "" +"A taxa de sample do perfil de ruído deve coincidir com a do o som para ser " +"processado." # voice key? usei timbre.. vai saber o q é #: src/effects/NoiseReduction.cpp @@ -8675,7 +8930,8 @@ msgid "" "Select a few seconds of just noise so Audacity knows what to filter out,\n" "then click Get Noise Profile:" msgstr "" -"Selecione alguns segundos apenas de ruído para que o Audacity saiba o que filtrar,\n" +"Selecione alguns segundos apenas de ruído para que o Audacity saiba o que " +"filtrar,\n" "depois prima Obter Perfil de Ruído:" #: src/effects/NoiseReduction.cpp src/effects/NoiseRemoval.cpp @@ -8795,7 +9051,9 @@ msgstr "Remoção de Ruído" #: src/effects/NoiseRemoval.cpp msgid "Removes constant background noise such as fans, tape noise, or hums" -msgstr "Remove o ruído de fundo constante tal como ventoinhas, ruído de cassete ou sussurros" +msgstr "" +"Remove o ruído de fundo constante tal como ventoinhas, ruído de cassete ou " +"sussurros" #: src/effects/NoiseRemoval.cpp msgid "" @@ -8900,7 +9158,9 @@ msgstr "Paulstretch" #: src/effects/Paulstretch.cpp msgid "Paulstretch is only for an extreme time-stretch or \"stasis\" effect" -msgstr "Utilizar Paulstretch é apenas por um efeito \"stasis\" ou tempo-esticado extremo" +msgstr "" +"Utilizar Paulstretch é apenas por um efeito \"stasis\" ou tempo-esticado " +"extremo" # decay=decaimento #. i18n-hint: This is how many times longer the sound will be, e.g. applying @@ -9031,11 +9291,13 @@ msgstr "Coloca o pico de amplitude de uma ou mais faixas" #: src/effects/Repair.cpp msgid "" -"The Repair effect is intended to be used on very short sections of damaged audio (up to 128 samples).\n" +"The Repair effect is intended to be used on very short sections of damaged " +"audio (up to 128 samples).\n" "\n" "Zoom in and select a tiny fraction of a second to repair." msgstr "" -"O efeito Reparar foi desenvolvido para ser usado apenas em secções muito pequenas de áudio danificado (acima de 128 samples).\n" +"O efeito Reparar foi desenvolvido para ser usado apenas em secções muito " +"pequenas de áudio danificado (acima de 128 samples).\n" "\n" "Amplie e selecione apenas uma pequena fração de segundo para reparar." @@ -9222,7 +9484,9 @@ msgstr "Realiza o filtro IIR que emula filtros analógicos" #: src/effects/ScienFilter.cpp msgid "To apply a filter, all selected tracks must have the same sample rate." -msgstr "Para aplicar um filtro, todas as faixas selecionadas devem ter a mesma taxa de sample." +msgstr "" +"Para aplicar um filtro, todas as faixas selecionadas devem ter a mesma taxa " +"de sample." #: src/effects/ScienFilter.cpp msgid "&Filter Type:" @@ -9497,12 +9761,20 @@ msgid "Truncate Silence" msgstr "Truncar Silêncio" #: src/effects/TruncSilence.cpp -msgid "Automatically reduces the length of passages where the volume is below a specified level" -msgstr "Automaticamente reduz o comprimento de passagens onde o volume é abaixo do nível específico" +msgid "" +"Automatically reduces the length of passages where the volume is below a " +"specified level" +msgstr "" +"Automaticamente reduz o comprimento de passagens onde o volume é abaixo do " +"nível específico" #: src/effects/TruncSilence.cpp -msgid "When truncating independently, there may only be one selected audio track in each Sync-Locked Track Group." -msgstr "Quando truncar independentemente, poderá haver uma faixa de áudio selecionada em cada Grupo de Faixa Sinc-Trancado." +msgid "" +"When truncating independently, there may only be one selected audio track in " +"each Sync-Locked Track Group." +msgstr "" +"Quando truncar independentemente, poderá haver uma faixa de áudio " +"selecionada em cada Grupo de Faixa Sinc-Trancado." #: src/effects/TruncSilence.cpp msgid "Detect Silence" @@ -9555,8 +9827,17 @@ msgid "Buffer Size" msgstr "Tamanho da Memória" #: src/effects/VST/VSTEffect.cpp src/effects/lv2/LV2Effect.cpp -msgid "The buffer size controls the number of samples sent to the effect on each iteration. Smaller values will cause slower processing and some effects require 8192 samples or less to work properly. However most effects can accept large buffers and using them will greatly reduce processing time." -msgstr "O tamanho do buffer controla o número de samples enviadas para o efeito em cada iteração. Valores menores causarão um processamento mais lento e alguns efeitos requerem 8192 samples ou menos para funcionar corretamente. No entanto, a maioria dos efeitos pode aceitar grandes buffers e usá-los reduzirá muito o tempo de processamento." +msgid "" +"The buffer size controls the number of samples sent to the effect on each " +"iteration. Smaller values will cause slower processing and some effects " +"require 8192 samples or less to work properly. However most effects can " +"accept large buffers and using them will greatly reduce processing time." +msgstr "" +"O tamanho do buffer controla o número de samples enviadas para o efeito em " +"cada iteração. Valores menores causarão um processamento mais lento e alguns " +"efeitos requerem 8192 samples ou menos para funcionar corretamente. No " +"entanto, a maioria dos efeitos pode aceitar grandes buffers e usá-los " +"reduzirá muito o tempo de processamento." #: src/effects/VST/VSTEffect.cpp msgid "&Buffer Size (8 to 1048576 samples):" @@ -9568,8 +9849,16 @@ msgid "Latency Compensation" msgstr "Latência de Compensação" #: src/effects/VST/VSTEffect.cpp -msgid "As part of their processing, some VST effects must delay returning audio to Audacity. When not compensating for this delay, you will notice that small silences have been inserted into the audio. Enabling this option will provide that compensation, but it may not work for all VST effects." -msgstr "Como parte do seu processamento, alguns efeitos VST devem atrasar o retorno do áudio ao Audacity. Ao não compensar esse atraso, você notará que pequenos silêncios foram inseridos no áudio. Habilitar esta opção proporcionará essa compensação, mas pode não funcionar para todos os efeitos VST." +msgid "" +"As part of their processing, some VST effects must delay returning audio to " +"Audacity. When not compensating for this delay, you will notice that small " +"silences have been inserted into the audio. Enabling this option will " +"provide that compensation, but it may not work for all VST effects." +msgstr "" +"Como parte do seu processamento, alguns efeitos VST devem atrasar o retorno " +"do áudio ao Audacity. Ao não compensar esse atraso, você notará que pequenos " +"silêncios foram inseridos no áudio. Habilitar esta opção proporcionará essa " +"compensação, mas pode não funcionar para todos os efeitos VST." #: src/effects/VST/VSTEffect.cpp src/effects/audiounits/AudioUnitEffect.cpp #: src/effects/ladspa/LadspaEffect.cpp src/effects/lv2/LV2Effect.cpp @@ -9581,8 +9870,14 @@ msgid "Graphical Mode" msgstr "Modo Gráfico" #: src/effects/VST/VSTEffect.cpp -msgid "Most VST effects have a graphical interface for setting parameter values. A basic text-only method is also available. Reopen the effect for this to take effect." -msgstr "A maioria dos efeitos VST possui uma interface gráfica para definir os valores dos parâmetros. Um método básico apenas texto também está disponível. Reabra o efeito para que isso entre em vigor." +msgid "" +"Most VST effects have a graphical interface for setting parameter values. A " +"basic text-only method is also available. Reopen the effect for this to " +"take effect." +msgstr "" +"A maioria dos efeitos VST possui uma interface gráfica para definir os " +"valores dos parâmetros. Um método básico apenas texto também está " +"disponível. Reabra o efeito para que isso entre em vigor." #: src/effects/VST/VSTEffect.cpp src/effects/lv2/LV2Effect.cpp msgid "Enable &graphical interface" @@ -9662,8 +9957,12 @@ msgid "Wahwah" msgstr "WahWah" #: src/effects/Wahwah.cpp -msgid "Rapid tone quality variations, like that guitar sound so popular in the 1970's" -msgstr "Variações de qualidade de tons rápidos, tal como o som de guitarra popular nos anos 1970" +msgid "" +"Rapid tone quality variations, like that guitar sound so popular in the " +"1970's" +msgstr "" +"Variações de qualidade de tons rápidos, tal como o som de guitarra popular " +"nos anos 1970" #: src/effects/Wahwah.cpp msgid "Dept&h (%):" @@ -9709,16 +10008,34 @@ msgid "Audio Unit Effect Options" msgstr "Opções de Efeitos Audio Unit" #: src/effects/audiounits/AudioUnitEffect.cpp -msgid "As part of their processing, some Audio Unit effects must delay returning audio to Audacity. When not compensating for this delay, you will notice that small silences have been inserted into the audio. Enabling this option will provide that compensation, but it may not work for all Audio Unit effects." -msgstr "Como parte do seu processamento, alguns efeitos de Audio Unit devem atrasar o retorno do áudio ao Audacity. Ao não compensar esse atraso, você notará que pequenos silêncios foram inseridos no áudio. Habilitar essa opção fornecerá essa compensação, mas pode não funcionar para todos os efeitos de Audio Unit." +msgid "" +"As part of their processing, some Audio Unit effects must delay returning " +"audio to Audacity. When not compensating for this delay, you will notice " +"that small silences have been inserted into the audio. Enabling this option " +"will provide that compensation, but it may not work for all Audio Unit " +"effects." +msgstr "" +"Como parte do seu processamento, alguns efeitos de Audio Unit devem atrasar " +"o retorno do áudio ao Audacity. Ao não compensar esse atraso, você notará " +"que pequenos silêncios foram inseridos no áudio. Habilitar essa opção " +"fornecerá essa compensação, mas pode não funcionar para todos os efeitos de " +"Audio Unit." #: src/effects/audiounits/AudioUnitEffect.cpp msgid "User Interface" msgstr "Interface de Utilizador" #: src/effects/audiounits/AudioUnitEffect.cpp -msgid "Select \"Full\" to use the graphical interface if supplied by the Audio Unit. Select \"Generic\" to use the system supplied generic interface. Select \"Basic\" for a basic text-only interface. Reopen the effect for this to take effect." -msgstr "Selecione \"Completo\" para utilizar a interface gráfica se fornecida pelo Audio Unit. Selecione \"Genérico\" para utilizar a interface genérica fornecida pelo sistema. Selecione \"Básico\" para uma interface básica de apenas texto. Reabra o efeito para isto para obter o efeito." +msgid "" +"Select \"Full\" to use the graphical interface if supplied by the Audio " +"Unit. Select \"Generic\" to use the system supplied generic interface. " +"Select \"Basic\" for a basic text-only interface. Reopen the effect for this " +"to take effect." +msgstr "" +"Selecione \"Completo\" para utilizar a interface gráfica se fornecida pelo " +"Audio Unit. Selecione \"Genérico\" para utilizar a interface genérica " +"fornecida pelo sistema. Selecione \"Básico\" para uma interface básica de " +"apenas texto. Reabra o efeito para isto para obter o efeito." #: src/effects/audiounits/AudioUnitEffect.cpp msgid "Select &interface" @@ -9872,8 +10189,17 @@ msgid "LADSPA Effect Options" msgstr "Opções de Efeitos LADSPA" #: src/effects/ladspa/LadspaEffect.cpp -msgid "As part of their processing, some LADSPA effects must delay returning audio to Audacity. When not compensating for this delay, you will notice that small silences have been inserted into the audio. Enabling this option will provide that compensation, but it may not work for all LADSPA effects." -msgstr "Como parte do seu processamento, alguns efeitos LADSPA devem atrasar o retorno do áudio ao Audacity. Ao não compensar esse atraso, você notará que pequenos silêncios foram inseridos no áudio. Habilitar essa opção proporcionará essa compensação, mas pode não funcionar para todos os efeitos LADSPA." +msgid "" +"As part of their processing, some LADSPA effects must delay returning audio " +"to Audacity. When not compensating for this delay, you will notice that " +"small silences have been inserted into the audio. Enabling this option will " +"provide that compensation, but it may not work for all LADSPA effects." +msgstr "" +"Como parte do seu processamento, alguns efeitos LADSPA devem atrasar o " +"retorno do áudio ao Audacity. Ao não compensar esse atraso, você notará que " +"pequenos silêncios foram inseridos no áudio. Habilitar essa opção " +"proporcionará essa compensação, mas pode não funcionar para todos os efeitos " +"LADSPA." #. i18n-hint: An item name introducing a value, which is not part of the string but #. appears in a following text box window; translate with appropriate punctuation @@ -9905,12 +10231,27 @@ msgid "&Buffer Size (8 to %d) samples:" msgstr "Tamanho do &Buffer (8 a %d) samples:" #: src/effects/lv2/LV2Effect.cpp -msgid "As part of their processing, some LV2 effects must delay returning audio to Audacity. When not compensating for this delay, you will notice that small silences have been inserted into the audio. Enabling this setting will provide that compensation, but it may not work for all LV2 effects." -msgstr "Como parte do seu processamento, alguns efeitos LV2 devem atrasar o retorno do áudio ao Audacity. Ao não compensar esse atraso, você notará que pequenos silêncios foram inseridos no áudio. Habilitar esta configuração proporcionará essa compensação, mas pode não funcionar para todos os efeitos de LV2." +msgid "" +"As part of their processing, some LV2 effects must delay returning audio to " +"Audacity. When not compensating for this delay, you will notice that small " +"silences have been inserted into the audio. Enabling this setting will " +"provide that compensation, but it may not work for all LV2 effects." +msgstr "" +"Como parte do seu processamento, alguns efeitos LV2 devem atrasar o retorno " +"do áudio ao Audacity. Ao não compensar esse atraso, você notará que pequenos " +"silêncios foram inseridos no áudio. Habilitar esta configuração " +"proporcionará essa compensação, mas pode não funcionar para todos os efeitos " +"de LV2." #: src/effects/lv2/LV2Effect.cpp -msgid "LV2 effects can have a graphical interface for setting parameter values. A basic text-only method is also available. Reopen the effect for this to take effect." -msgstr "Os efeitos do LV2 podem ter uma interface gráfica para definir os valores dos parâmetros. Um método básico apenas texto também está disponível. Reabra o efeito para que isso entre em vigor." +msgid "" +"LV2 effects can have a graphical interface for setting parameter values. A " +"basic text-only method is also available. Reopen the effect for this to " +"take effect." +msgstr "" +"Os efeitos do LV2 podem ter uma interface gráfica para definir os valores " +"dos parâmetros. Um método básico apenas texto também está disponível. Reabra " +"o efeito para que isso entre em vigor." #: src/effects/lv2/LV2Effect.cpp msgid "Couldn't instantiate effect" @@ -9986,7 +10327,9 @@ msgstr "" #: src/effects/nyquist/Nyquist.cpp #, c-format msgid "error: File \"%s\" specified in header but not found in plug-in path.\n" -msgstr "erro: Ficheiro especificado \"%s\" no cabeçalho mas não encontrado no caminho no plug-in.\n" +msgstr "" +"erro: Ficheiro especificado \"%s\" no cabeçalho mas não encontrado no " +"caminho no plug-in.\n" #: src/effects/nyquist/Nyquist.cpp msgid "Audio selection required." @@ -9997,8 +10340,11 @@ msgid "Nyquist Error" msgstr "Erro Nyquist" #: src/effects/nyquist/Nyquist.cpp -msgid "Sorry, cannot apply effect on stereo tracks where the tracks don't match." -msgstr "Desculpe, o efeito não pode ser aplicado em faixas estéreo cujas características dos canais diferem." +msgid "" +"Sorry, cannot apply effect on stereo tracks where the tracks don't match." +msgstr "" +"Desculpe, o efeito não pode ser aplicado em faixas estéreo cujas " +"características dos canais diferem." #: src/effects/nyquist/Nyquist.cpp #, c-format @@ -10070,8 +10416,11 @@ msgid "Nyquist returned nil audio.\n" msgstr "O Nyquist retornou nil áudio.\n" #: src/effects/nyquist/Nyquist.cpp -msgid "[Warning: Nyquist returned invalid UTF-8 string, converted here as Latin-1]" -msgstr "[Aviso: O Nyquist retornou uma mensagem inválida em formato UTF-8, aqui convertida para Latin-1]" +msgid "" +"[Warning: Nyquist returned invalid UTF-8 string, converted here as Latin-1]" +msgstr "" +"[Aviso: O Nyquist retornou uma mensagem inválida em formato UTF-8, aqui " +"convertida para Latin-1]" #: src/effects/nyquist/Nyquist.cpp #, c-format @@ -10091,7 +10440,8 @@ msgid "" "\t(mult *track* 0.1)\n" " ." msgstr "" -"O seu código parece usar sintaxe SAL, mas não existe uma declaração de retorno. Use uma declaração de retorno tal como \n" +"O seu código parece usar sintaxe SAL, mas não existe uma declaração de " +"retorno. Use uma declaração de retorno tal como \n" "\treturn s * 0.1\n" "para SAL, ou comece com um parêntesis aberto tal como \n" "\t(mult s 0.1)\n" @@ -10190,8 +10540,12 @@ msgid "Provides Vamp Effects support to Audacity" msgstr "Oferece suporte de Vamp Effects para o Audacity" #: src/effects/vamp/VampEffect.cpp -msgid "Sorry, Vamp Plug-ins cannot be run on stereo tracks where the individual channels of the track do not match." -msgstr "Desculpe, plugins Vamp não podem ser aplicados em faixas estéreo cujas características dos canais diferem." +msgid "" +"Sorry, Vamp Plug-ins cannot be run on stereo tracks where the individual " +"channels of the track do not match." +msgstr "" +"Desculpe, plugins Vamp não podem ser aplicados em faixas estéreo cujas " +"características dos canais diferem." #: src/effects/vamp/VampEffect.cpp msgid "Sorry, failed to load Vamp Plug-in." @@ -10249,13 +10603,15 @@ msgstr "Tem a certeza que quer exportar o ficheiro como \"%s\"?\n" msgid "" "You are about to export a %s file with the name \"%s\".\n" "\n" -"Normally these files end in \".%s\", and some programs will not open files with nonstandard extensions.\n" +"Normally these files end in \".%s\", and some programs will not open files " +"with nonstandard extensions.\n" "\n" "Are you sure you want to export the file under this name?" msgstr "" "Está prestes a exportar um ficheiro %s com o nome \"%s\". \n" "\n" -"Normalmente estes ficheiros terminam em \".%s\" e alguns programas podem não abrir ficheiros com uma extensão diferente. \n" +"Normalmente estes ficheiros terminam em \".%s\" e alguns programas podem não " +"abrir ficheiros com uma extensão diferente. \n" "\n" "Tem a certeza que quer guardar o ficheiro com este nome?" @@ -10277,8 +10633,12 @@ msgid "Your tracks will be mixed down and exported as one stereo file." msgstr "As suas faixas serão misturadas e exportadas como um ficheiro estéreo." #: src/export/Export.cpp -msgid "Your tracks will be mixed down to one exported file according to the encoder settings." -msgstr "As suas faixas serão misturadas a um ficheiro exportado de acordo com as opções de codificação." +msgid "" +"Your tracks will be mixed down to one exported file according to the encoder " +"settings." +msgstr "" +"As suas faixas serão misturadas a um ficheiro exportado de acordo com as " +"opções de codificação." #: src/export/Export.cpp msgid "Advanced Mixing Options" @@ -10334,8 +10694,12 @@ msgstr "Mostrar saída" #. in the program as a format string. Keep %f unchanged. #: src/export/ExportCL.cpp #, c-format -msgid "Data will be piped to standard in. \"%f\" uses the file name in the export window." -msgstr "Os dados serão redirecionados para a entrada standard. \"%f\" usa o nome do ficheiro na janela de exportação." +msgid "" +"Data will be piped to standard in. \"%f\" uses the file name in the export " +"window." +msgstr "" +"Os dados serão redirecionados para a entrada standard. \"%f\" usa o nome do " +"ficheiro na janela de exportação." #. i18n-hint files that can be run as programs #: src/export/ExportCL.cpp @@ -10404,7 +10768,9 @@ msgstr "" #: src/export/ExportFFmpeg.cpp #, c-format msgid "FFmpeg : ERROR - Can't determine format description for file \"%s\"." -msgstr "FFmpeg : ERRO - Não pôde determinar descrição de formato para o ficheiro \"%s\"." +msgstr "" +"FFmpeg : ERRO - Não pôde determinar descrição de formato para o ficheiro \"%s" +"\"." #: src/export/ExportFFmpeg.cpp msgid "FFmpeg Error" @@ -10417,17 +10783,25 @@ msgstr "FFmpeg : ERRO - Não pôde alocar saída do formato de contexto." #: src/export/ExportFFmpeg.cpp #, c-format msgid "FFmpeg : ERROR - Can't add audio stream to output file \"%s\"." -msgstr "FFmpeg : ERRO - Não pôde adicionar stream de áudio para o ficheiro de saída \"%s\"." +msgstr "" +"FFmpeg : ERRO - Não pôde adicionar stream de áudio para o ficheiro de saída " +"\"%s\"." #: src/export/ExportFFmpeg.cpp #, c-format -msgid "FFmpeg : ERROR - Can't open output file \"%s\" to write. Error code is %d." -msgstr "FFmpeg : ERRO - Não pôde abrir ficheiro de saída \"%s\" para escrever. Código de erro é %d." +msgid "" +"FFmpeg : ERROR - Can't open output file \"%s\" to write. Error code is %d." +msgstr "" +"FFmpeg : ERRO - Não pôde abrir ficheiro de saída \"%s\" para escrever. " +"Código de erro é %d." #: src/export/ExportFFmpeg.cpp #, c-format -msgid "FFmpeg : ERROR - Can't write headers to output file \"%s\". Error code is %d." -msgstr "FFmpeg : ERRO - Não escreveu cabeçalhos para o ficheiro de saída \"%s\". Código de erro é %d." +msgid "" +"FFmpeg : ERROR - Can't write headers to output file \"%s\". Error code is %d." +msgstr "" +"FFmpeg : ERRO - Não escreveu cabeçalhos para o ficheiro de saída \"%s\". " +"Código de erro é %d." #. i18n-hint: "codec" is short for a "coder-decoder" algorithm #: src/export/ExportFFmpeg.cpp @@ -10485,7 +10859,8 @@ msgstr "FFmpeg : ERRO - Muitos dados remanescentes." #: src/export/ExportFFmpeg.cpp msgid "FFmpeg : ERROR - Couldn't write last audio frame to output file." -msgstr "FFmpeg - ERRO - Não escreveu último frame de áudio para o ficheiro de saída." +msgstr "" +"FFmpeg - ERRO - Não escreveu último frame de áudio para o ficheiro de saída." #: src/export/ExportFFmpeg.cpp msgid "FFmpeg : ERROR - nAudioFrameSizeOut too large." @@ -10497,8 +10872,12 @@ msgstr "FFmpeg : ERRO - Não codificou frame de áudio." #: src/export/ExportFFmpeg.cpp #, c-format -msgid "Attempted to export %d channels, but maximum number of channels for selected output format is %d" -msgstr "Tentou exportar %d canais, mas o número máximo de canais para o formato de saída selecionado é %d" +msgid "" +"Attempted to export %d channels, but maximum number of channels for selected " +"output format is %d" +msgstr "" +"Tentou exportar %d canais, mas o número máximo de canais para o formato de " +"saída selecionado é %d" #: src/export/ExportFFmpeg.cpp #, c-format @@ -10817,8 +11196,12 @@ msgid "Codec:" msgstr "Codec:" #: src/export/ExportFFmpegDialogs.cpp -msgid "Not all formats and codecs are compatible. Nor are all option combinations compatible with all codecs." -msgstr "Nem todos os formatos e codecs são compatíveis. Nem todas as combinações são compatíveis com todos os codecs." +msgid "" +"Not all formats and codecs are compatible. Nor are all option combinations " +"compatible with all codecs." +msgstr "" +"Nem todos os formatos e codecs são compatíveis. Nem todas as combinações são " +"compatíveis com todos os codecs." #: src/export/ExportFFmpegDialogs.cpp msgid "Show All Formats" @@ -10876,8 +11259,10 @@ msgid "" "0 - automatic\n" "Recommended - 192000" msgstr "" -"Taxa de Bits (bits/segundo) - influencia o tamanho e qualidade do ficheiro \n" -"Alguns codecs podem aceitar apenas valores específicos (128k, 192k, 256k, etc) \n" +"Taxa de Bits (bits/segundo) - influencia o tamanho e qualidade do " +"ficheiro \n" +"Alguns codecs podem aceitar apenas valores específicos (128k, 192k, 256k, " +"etc) \n" "0 - automático \n" "Recomendado - 192000" @@ -11390,10 +11775,12 @@ msgstr "Onde está %s ?" #: src/export/ExportMP3.cpp #, c-format msgid "" -"You are linking to lame_enc.dll v%d.%d. This version is not compatible with Audacity %d.%d.%d.\n" +"You are linking to lame_enc.dll v%d.%d. This version is not compatible with " +"Audacity %d.%d.%d.\n" "Please download the latest version of 'LAME for Audacity'." msgstr "" -"Você está a vincular a lame_enc.dll v%d.%d. Esta versão não é compatível com o Audacity %d.%d.%d.\n" +"Você está a vincular a lame_enc.dll v%d.%d. Esta versão não é compatível com " +"o Audacity %d.%d.%d.\n" "Por favor descarregue a versão mais recente do 'LAME for Audacity'." #: src/export/ExportMP3.cpp @@ -11609,7 +11996,8 @@ msgstr "Exportação parou após exportar os seguintes %lld ficheiro(s)." #: src/export/ExportMultiple.cpp #, c-format msgid "Something went really wrong after exporting the following %lld file(s)." -msgstr "Algo correu mesmo mal depois de exportar os seguintes %lld ficheiro(s)." +msgstr "" +"Algo correu mesmo mal depois de exportar os seguintes %lld ficheiro(s)." #: src/export/ExportMultiple.cpp #, c-format @@ -11652,7 +12040,8 @@ msgid "" "\n" "Suggested replacement:" msgstr "" -"O rótulo ou faixa \"%s\" não é um nome de ficheiro legível. Não pode usar \"%s\".\n" +"O rótulo ou faixa \"%s\" não é um nome de ficheiro legível. Não pode usar " +"\"%s\".\n" "\n" "Substituição sugerida:" @@ -11718,7 +12107,8 @@ msgstr "Outros ficheiros sem compressão" #: src/export/ExportPCM.cpp msgid "" -"You have attempted to Export a WAV or AIFF file which would be greater than 4GB.\n" +"You have attempted to Export a WAV or AIFF file which would be greater than " +"4GB.\n" "Audacity cannot do this, the Export was abandoned." msgstr "" "Tentou exportar um ficheiro WAV ou AIFF que pode ser maior do que 4GB.\n" @@ -11733,7 +12123,8 @@ msgid "" "Your exported WAV file has been truncated as Audacity cannot export WAV\n" "files bigger than 4GB." msgstr "" -"O seu ficheiro WAV exportado foi truncado como o Audacity não pode exportar ficheiros WAV\n" +"O seu ficheiro WAV exportado foi truncado como o Audacity não pode exportar " +"ficheiros WAV\n" "maiores que 4GB." #: src/export/ExportPCM.cpp @@ -11821,12 +12212,15 @@ msgstr "" #, c-format msgid "" "\"%s\" is a playlist file. \n" -"Audacity cannot open this file because it only contains links to other files. \n" -"You may be able to open it in a text editor and download the actual audio files." +"Audacity cannot open this file because it only contains links to other " +"files. \n" +"You may be able to open it in a text editor and download the actual audio " +"files." msgstr "" "\"%s\" é uma lista de reprodução. \n" "O Audacity não a abre porque apenas contém ligações para outros ficheiros. \n" -"Pode abrir este ficheiro num editor de texto e transferir os ficheiros de áudio atuais." +"Pode abrir este ficheiro num editor de texto e transferir os ficheiros de " +"áudio atuais." #. i18n-hint: %s will be the filename #: src/import/Import.cpp @@ -11845,12 +12239,16 @@ msgstr "" #, c-format msgid "" "\"%s\" is an Advanced Audio Coding file.\n" -"Without the optional FFmpeg library, Audacity cannot open this type of file.\n" -"Otherwise, you need to convert it to a supported audio format, such as WAV or AIFF." +"Without the optional FFmpeg library, Audacity cannot open this type of " +"file.\n" +"Otherwise, you need to convert it to a supported audio format, such as WAV " +"or AIFF." msgstr "" "\"%s\" é um ficheiro Codificar de Áudo Avançado.\n" -"Sem a biblioteca FFmpeg opcional, O Audacity não pode abrir este tipo de ficheiro.\n" -"Caso contrário, você precisará convertê-lo num formato de áudio suportado, como WAV ou AIFF." +"Sem a biblioteca FFmpeg opcional, O Audacity não pode abrir este tipo de " +"ficheiro.\n" +"Caso contrário, você precisará convertê-lo num formato de áudio suportado, " +"como WAV ou AIFF." #. i18n-hint: %s will be the filename #: src/import/Import.cpp @@ -11901,7 +12299,8 @@ msgid "" "\"%s\" is a Musepack audio file. \n" "Audacity cannot open this type of file. \n" "If you think it might be an mp3 file, rename it to end with \".mp3\" \n" -"and try importing it again. Otherwise you need to convert it to a supported audio \n" +"and try importing it again. Otherwise you need to convert it to a supported " +"audio \n" "format, such as WAV or AIFF." msgstr "" "\"%s\" é um ficheiro Musepack. \n" @@ -11973,7 +12372,8 @@ msgid "" msgstr "" "O Audacity não reconhece o tipo de ficheiro '%s'.\n" "\n" -"%sPara ficheiros descomprimidos, também tente Ficheiro > Importar > Dados Raw." +"%sPara ficheiros descomprimidos, também tente Ficheiro > Importar > Dados " +"Raw." #: src/import/Import.cpp msgid "" @@ -12029,10 +12429,12 @@ msgid "" "Use a version of Audacity prior to v3.0.0 to upgrade the project and then\n" "you may import it with this version of Audacity." msgstr "" -"Este projeto foi guardado pela versão 1.0 do Audacity ou posterior. O formato\n" +"Este projeto foi guardado pela versão 1.0 do Audacity ou posterior. O " +"formato\n" "mudou e esta versão do Audacity não consegue importar o projeto.\n" "\n" -"Utilize uma versão do Audacity anterior ao v3.0.0 para atualizar o projeto e depois\n" +"Utilize uma versão do Audacity anterior ao v3.0.0 para atualizar o projeto e " +"depois\n" "poderá importá-lo com esta versão do Audacity." #: src/import/ImportAUP.cpp @@ -12078,16 +12480,24 @@ msgid "Couldn't find the project data folder: \"%s\"" msgstr "Não foi possível encontrar a pasta de dados do projeto: \"%s\"" #: src/import/ImportAUP.cpp -msgid "MIDI tracks found in project file, but this build of Audacity does not include MIDI support, bypassing track." -msgstr "Faixas MIDI encontradas no ficheiro do projeto, mas esta compilação do Audacity não inclui suporte MIDI, a ignorar faixa." +msgid "" +"MIDI tracks found in project file, but this build of Audacity does not " +"include MIDI support, bypassing track." +msgstr "" +"Faixas MIDI encontradas no ficheiro do projeto, mas esta compilação do " +"Audacity não inclui suporte MIDI, a ignorar faixa." #: src/import/ImportAUP.cpp msgid "Project Import" msgstr "Importação de Projeto" #: src/import/ImportAUP.cpp -msgid "The active project already has a time track and one was encountered in the project being imported, bypassing imported time track." -msgstr "O projeto ativo já tem um controlo de tempo e um foi encontrado no projeto que está sendo importado, a ignorar o controlo de tempo importado." +msgid "" +"The active project already has a time track and one was encountered in the " +"project being imported, bypassing imported time track." +msgstr "" +"O projeto ativo já tem um controlo de tempo e um foi encontrado no projeto " +"que está sendo importado, a ignorar o controlo de tempo importado." #: src/import/ImportAUP.cpp msgid "Invalid sequence 'maxsamples' attribute." @@ -12176,8 +12586,10 @@ msgstr "Ficheiros compatíveis FFmpeg" #. i18n-hint: "codec" is short for a "coder-decoder" algorithm #: src/import/ImportFFmpeg.cpp #, c-format -msgid "Index[%02x] Codec[%s], Language[%s], Bitrate[%s], Channels[%d], Duration[%d]" -msgstr "Índice[%02x] Codec[%s], Idioma[%s], Taxa de Bits[%s], Canais[%d], Duração[%d]" +msgid "" +"Index[%02x] Codec[%s], Language[%s], Bitrate[%s], Channels[%d], Duration[%d]" +msgstr "" +"Índice[%02x] Codec[%s], Idioma[%s], Taxa de Bits[%s], Canais[%d], Duração[%d]" #: src/import/ImportFLAC.cpp msgid "FLAC files" @@ -12238,7 +12650,9 @@ msgstr "Duração inválida no ficheiro LOF." #: src/import/ImportLOF.cpp msgid "MIDI tracks cannot be offset individually, only audio files can be." -msgstr "As faixas MIDI não podem ser compensadas individualmente, apenas ficheiros de áudio o podem ser." +msgstr "" +"As faixas MIDI não podem ser compensadas individualmente, apenas ficheiros " +"de áudio o podem ser." #. i18n-hint: You do not need to translate "LOF" #: src/import/ImportLOF.cpp @@ -12514,11 +12928,13 @@ msgstr "Não foi possível definir a qualidade de renderização QuickTime" #: src/import/ImportQT.cpp msgid "Unable to set QuickTime discrete channels property" -msgstr "Não foi possível definir a propriedade dos canais discretos do QuickTime" +msgstr "" +"Não foi possível definir a propriedade dos canais discretos do QuickTime" #: src/import/ImportQT.cpp msgid "Unable to get QuickTime sample size property" -msgstr "Não foi possível obter as propriedades do tamanho do sample do QuickTime" +msgstr "" +"Não foi possível obter as propriedades do tamanho do sample do QuickTime" #: src/import/ImportQT.cpp msgid "Unable to retrieve stream description" @@ -13308,7 +13724,8 @@ msgstr "Apagar Áudio Rotulado" #. regions #: src/menus/LabelMenus.cpp msgid "Split Cut labeled audio regions to clipboard" -msgstr "Separar e Cortar as áreas de áudio rotulado para a área de transferência" +msgstr "" +"Separar e Cortar as áreas de áudio rotulado para a área de transferência" #. i18n-hint: (verb) Do a special kind of cut on the labels #: src/menus/LabelMenus.cpp @@ -14173,8 +14590,11 @@ msgid "Created new label track" msgstr "Criada nova faixa de rótulos" #: src/menus/TrackMenus.cpp -msgid "This version of Audacity only allows one time track for each project window." -msgstr "Esta versão do Audacity permite apenas uma faixa de tempo por cada janela de projeto." +msgid "" +"This version of Audacity only allows one time track for each project window." +msgstr "" +"Esta versão do Audacity permite apenas uma faixa de tempo por cada janela de " +"projeto." #: src/menus/TrackMenus.cpp msgid "Created new time track" @@ -14209,8 +14629,11 @@ msgstr "Por favor selecione pelo menos uma faixa de áudio e uma faixa MIDI." #: src/menus/TrackMenus.cpp #, c-format -msgid "Alignment completed: MIDI from %.2f to %.2f secs, Audio from %.2f to %.2f secs." -msgstr "Alinhamento completo: MIDI de %.2f a %.2f segs, Áudio de %.2f a %.2f segs." +msgid "" +"Alignment completed: MIDI from %.2f to %.2f secs, Audio from %.2f to %.2f " +"secs." +msgstr "" +"Alinhamento completo: MIDI de %.2f a %.2f segs, Áudio de %.2f a %.2f segs." #: src/menus/TrackMenus.cpp msgid "Sync MIDI with Audio" @@ -14218,8 +14641,12 @@ msgstr "Sincronizar MIDI com Áudio" #: src/menus/TrackMenus.cpp #, c-format -msgid "Alignment error: input too short: MIDI from %.2f to %.2f secs, Audio from %.2f to %.2f secs." -msgstr "Erro de alinhamento: entrada muito curta: MIDI de %.2f a %.2f segs, Áudio de %.2f a %.2f segs." +msgid "" +"Alignment error: input too short: MIDI from %.2f to %.2f secs, Audio from " +"%.2f to %.2f secs." +msgstr "" +"Erro de alinhamento: entrada muito curta: MIDI de %.2f a %.2f segs, Áudio de " +"%.2f a %.2f segs." #: src/menus/TrackMenus.cpp msgid "Internal error reported by alignment process." @@ -14472,7 +14899,8 @@ msgid "" "\n" "Please close any additional projects and try again." msgstr "" -"Temporizador de Gravação não pode ser utilizado com mais de um projeto aberto.\n" +"Temporizador de Gravação não pode ser utilizado com mais de um projeto " +"aberto.\n" "\n" "Por favor feche todos os outros projetos e tente de novo." @@ -14482,7 +14910,8 @@ msgid "" "\n" "Please save or close this project and try again." msgstr "" -"Temporizador de Gravação não pode ser utilizado com alterações não guardadas.\n" +"Temporizador de Gravação não pode ser utilizado com alterações não " +"guardadas.\n" "\n" "Por favor guarde ou feche este projeto e tente de novo." @@ -14810,25 +15239,28 @@ msgid "%s %2.0f%% complete. Click to change task focal point." msgstr "%s %2.0f%% completo. Clique para mudar o ponto do foco da tarefa." #: src/prefs/ApplicationPrefs.cpp -#, fuzzy msgid "Preferences for Application" -msgstr "Preferências para Qualidade" +msgstr "Preferências para Aplicação" #. i18n-hint: Title for the update notifications panel in the preferences dialog. #: src/prefs/ApplicationPrefs.cpp msgid "Update notifications" -msgstr "" +msgstr "Notificações de atualização" #. i18n-hint: Check-box title that configures periodic updates checking. #: src/prefs/ApplicationPrefs.cpp -#, fuzzy msgctxt "application preferences" msgid "&Check for updates" -msgstr "Verificar &Atualizações..." +msgstr "Verifi&car atualizações" #: src/prefs/ApplicationPrefs.cpp -msgid "App update checking requires network access. In order to protect your privacy, Audacity does not store any personal information." +msgid "" +"App update checking requires network access. In order to protect your " +"privacy, Audacity does not store any personal information." msgstr "" +"A verificação de atualização da aplicação requer acesso à rede. Para " +"proteger a sua privacidade, o Audacity não armazena nenhuma informação " +"pessoal." #: src/prefs/BatchPrefs.cpp src/prefs/BatchPrefs.h msgid "Batch" @@ -14881,10 +15313,9 @@ msgstr "&Dispositivo:" #. i18n-hint: modifier as in "Recording preferences", not progressive verb #: src/prefs/DevicePrefs.cpp src/prefs/RecordingPrefs.cpp #: src/prefs/RecordingPrefs.h -#, fuzzy msgctxt "preference" msgid "Recording" -msgstr "Gravação" +msgstr "Gravando" #: src/prefs/DevicePrefs.cpp src/prefs/MidiIOPrefs.cpp msgid "De&vice:" @@ -14946,7 +15377,8 @@ msgid "" "Leave a field empty to go to the last directory used for that operation.\n" "Fill in a field to always go to that directory for that operation." msgstr "" -"Deixe um campo vazio para ir para o último diretório usado para essa operação.\n" +"Deixe um campo vazio para ir para o último diretório usado para essa " +"operação.\n" "Preencha um campo para ir sempre a esse diretório para aquela operação." #: src/prefs/DirectoriesPrefs.cpp @@ -14995,7 +15427,8 @@ msgstr "&Localização:" #: src/prefs/DirectoriesPrefs.cpp msgid "Temporary files directory cannot be on a FAT drive." -msgstr "O diretório dos ficheiros temporários não pode estar numa drive em FAT." +msgstr "" +"O diretório dos ficheiros temporários não pode estar numa drive em FAT." #: src/prefs/DirectoriesPrefs.cpp msgid "Brow&se..." @@ -15037,8 +15470,11 @@ msgid "Directory %s is not writable" msgstr "A pasta %s não tem permissão de escrita" #: src/prefs/DirectoriesPrefs.cpp -msgid "Changes to temporary directory will not take effect until Audacity is restarted" -msgstr "Alterações na pasta temporária só terão efeito quando reiniciar o Audacity" +msgid "" +"Changes to temporary directory will not take effect until Audacity is " +"restarted" +msgstr "" +"Alterações na pasta temporária só terão efeito quando reiniciar o Audacity" #: src/prefs/DirectoriesPrefs.cpp msgid "Temp Directory Update" @@ -15196,8 +15632,16 @@ msgid "Unused filters:" msgstr "Filtros não utilizados:" #: src/prefs/ExtImportPrefs.cpp -msgid "There are space characters (spaces, newlines, tabs or linefeeds) in one of the items. They are likely to break the pattern matching. Unless you know what you are doing, it is recommended to trim spaces. Do you want Audacity to trim spaces for you?" -msgstr "Há caracteres de espaçamento (espaços, quebras de linha ou tabulações) num dos itens. Estes podem quebrar a pesquisa de padrões. A não ser que seja intencional, é recomendado aparar estes caracteres. Pretende que o Audacity os apare?" +msgid "" +"There are space characters (spaces, newlines, tabs or linefeeds) in one of " +"the items. They are likely to break the pattern matching. Unless you know " +"what you are doing, it is recommended to trim spaces. Do you want Audacity " +"to trim spaces for you?" +msgstr "" +"Há caracteres de espaçamento (espaços, quebras de linha ou tabulações) num " +"dos itens. Estes podem quebrar a pesquisa de padrões. A não ser que seja " +"intencional, é recomendado aparar estes caracteres. Pretende que o Audacity " +"os apare?" #: src/prefs/ExtImportPrefs.cpp msgid "Spaces detected" @@ -15485,7 +15929,8 @@ msgstr "" #: src/prefs/KeyConfigPrefs.cpp msgid "Select an XML file containing Audacity keyboard shortcuts..." -msgstr "Selecionar um ficheiro XML que contenha atalhos do teclado para o Audacity…" +msgstr "" +"Selecionar um ficheiro XML que contenha atalhos do teclado para o Audacity…" #: src/prefs/KeyConfigPrefs.cpp msgid "Error Importing Keyboard Shortcuts" @@ -15494,10 +15939,12 @@ msgstr "Erro ao Importar os Atalhos do Teclado" #: src/prefs/KeyConfigPrefs.cpp #, c-format msgid "" -"The file with the shortcuts contains illegal shortcut duplicates for \"%s\" and \"%s\".\n" +"The file with the shortcuts contains illegal shortcut duplicates for \"%s\" " +"and \"%s\".\n" "Nothing is imported." msgstr "" -"O ficheiro com os atalhos contém atalhos duplicados ilegais por \"%s\" e \"%s\".\n" +"O ficheiro com os atalhos contém atalhos duplicados ilegais por \"%s\" e \"%s" +"\".\n" "Nada é importado." #: src/prefs/KeyConfigPrefs.cpp @@ -15508,10 +15955,12 @@ msgstr "Carregados %d atalhos do teclado \n" #: src/prefs/KeyConfigPrefs.cpp msgid "" "\n" -"The following commands are not mentioned in the imported file, but have their shortcuts removed because of the conflict with other new shortcuts:\n" +"The following commands are not mentioned in the imported file, but have " +"their shortcuts removed because of the conflict with other new shortcuts:\n" msgstr "" "\n" -"Os seguintes comandos não são mencionados no ficheiro importado, mas os seus atalhos foram removidos devido ao conflito com outros novos atalhos:\n" +"Os seguintes comandos não são mencionados no ficheiro importado, mas os seus " +"atalhos foram removidos devido ao conflito com outros novos atalhos:\n" #: src/prefs/KeyConfigPrefs.cpp msgid "Loading Keyboard Shortcuts" @@ -15677,7 +16126,8 @@ msgstr "Preferências para Modulo" #: src/prefs/ModulePrefs.cpp msgid "" -"These are experimental modules. Enable them only if you've read the Audacity Manual\n" +"These are experimental modules. Enable them only if you've read the Audacity " +"Manual\n" "and know what you are doing." msgstr "" "Isto são Módulos experimentais. Ative apenas se tiver lido o manual \n" @@ -15685,13 +16135,19 @@ msgstr "" #. i18n-hint preserve the leading spaces #: src/prefs/ModulePrefs.cpp -msgid " 'Ask' means Audacity will ask if you want to load the module each time it starts." -msgstr " 'Perguntar' significa que o Audacity perguntará sempre se quer carregar o módulo sempre que o iniciar." +msgid "" +" 'Ask' means Audacity will ask if you want to load the module each time it " +"starts." +msgstr "" +" 'Perguntar' significa que o Audacity perguntará sempre se quer carregar o " +"módulo sempre que o iniciar." #. i18n-hint preserve the leading spaces #: src/prefs/ModulePrefs.cpp msgid " 'Failed' means Audacity thinks the module is broken and won't run it." -msgstr " 'Falhou' significa que o Audacity pensa que o módulo está corrompido e não o vai correr." +msgstr "" +" 'Falhou' significa que o Audacity pensa que o módulo está corrompido e não " +"o vai correr." #. i18n-hint preserve the leading spaces #: src/prefs/ModulePrefs.cpp @@ -15700,7 +16156,8 @@ msgstr " 'Novo' significa sem escolha ainda feita." #: src/prefs/ModulePrefs.cpp msgid "Changes to these settings only take effect when Audacity starts up." -msgstr "Alterações na pasta temporária só terão efeito quando reiniciar o Audacity." +msgstr "" +"Alterações na pasta temporária só terão efeito quando reiniciar o Audacity." #: src/prefs/ModulePrefs.cpp msgid "Ask" @@ -16413,30 +16870,38 @@ msgstr "Info" msgid "" "Themability is an experimental feature.\n" "\n" -"To try it out, click \"Save Theme Cache\" then find and modify the images and colors in\n" +"To try it out, click \"Save Theme Cache\" then find and modify the images " +"and colors in\n" "ImageCacheVxx.png using an image editor such as the Gimp.\n" "\n" -"Click \"Load Theme Cache\" to load the changed images and colors back into Audacity.\n" +"Click \"Load Theme Cache\" to load the changed images and colors back into " +"Audacity.\n" "\n" -"(Only the Transport Toolbar and the colors on the wavetrack are currently affected, even\n" +"(Only the Transport Toolbar and the colors on the wavetrack are currently " +"affected, even\n" "though the image file shows other icons too.)" msgstr "" "O uso de temas é uma funcionalidade experimental. \n" "\n" -"Para experimentar, prima em \"Guardar Caixa de Temas\" e depois encontre e modifique as \n" +"Para experimentar, prima em \"Guardar Caixa de Temas\" e depois encontre e " +"modifique as \n" "imagens e cores em ImageCacheVxx.png com um editor de imagens como o Gimp. \n" "\n" -"Prima em \"Carregar Caixa de Temas\" para carregar as imagens e cores alteradas para o Audacity. \n" +"Prima em \"Carregar Caixa de Temas\" para carregar as imagens e cores " +"alteradas para o Audacity. \n" "\n" -"(De momento, apenas a barra dos controlos e as cores das faixas de formas da onda serão alteradas, \n" +"(De momento, apenas a barra dos controlos e as cores das faixas de formas da " +"onda serão alteradas, \n" "mesmo que o ficheiro apresente outros ícones.)" #: src/prefs/ThemePrefs.cpp msgid "" -"Saving and loading individual theme files uses a separate file for each image, but is\n" +"Saving and loading individual theme files uses a separate file for each " +"image, but is\n" "otherwise the same idea." msgstr "" -"Guardar e carregar ficheiros individuais do tema usa um ficheiro diferente para cada imagem, \n" +"Guardar e carregar ficheiros individuais do tema usa um ficheiro diferente " +"para cada imagem, \n" "mas de resto a ideia é a mesma." #. i18n-hint: && in here is an escape character to get a single & on screen, @@ -16695,7 +17160,8 @@ msgstr "Misturar e fundir as faixas para e&stéreo ao exportar" #: src/prefs/WarningsPrefs.cpp msgid "Mixing down on export (&Custom FFmpeg or external program)" -msgstr "Misturar abaixo na exportação (FFmpeg &personalizado ou programa externo)" +msgstr "" +"Misturar abaixo na exportação (FFmpeg &personalizado ou programa externo)" #: src/prefs/WarningsPrefs.cpp msgid "Missing file &name extension during export" @@ -17296,8 +17762,12 @@ msgstr "Descer Oita&va" #: src/tracks/playabletrack/notetrack/ui/NoteTrackVZoomHandle.cpp #: src/tracks/playabletrack/wavetrack/ui/WaveTrackVZoomHandle.cpp -msgid "Click to vertically zoom in. Shift-click to zoom out. Drag to specify a zoom region." -msgstr "Prima o Botão do Rato para ampliar na vertical. Shift-clique para diminuir. Arraste para indicar uma área a ampliar." +msgid "" +"Click to vertically zoom in. Shift-click to zoom out. Drag to specify a zoom " +"region." +msgstr "" +"Prima o Botão do Rato para ampliar na vertical. Shift-clique para diminuir. " +"Arraste para indicar uma área a ampliar." #: src/tracks/playabletrack/notetrack/ui/NoteTrackVZoomHandle.cpp #: src/tracks/playabletrack/wavetrack/ui/WaveTrackVZoomHandle.cpp @@ -17630,8 +18100,11 @@ msgid "%.0f%% Right" msgstr "%.0f%% Direito" #: src/tracks/playabletrack/wavetrack/ui/WaveTrackView.cpp -msgid "Click and drag to adjust sizes of sub-views, double-click to split evenly" -msgstr "Clique e arraste para ajustar os tamanhos das subvistas, clique duas vezes para dividir uniformemente" +msgid "" +"Click and drag to adjust sizes of sub-views, double-click to split evenly" +msgstr "" +"Clique e arraste para ajustar os tamanhos das subvistas, clique duas vezes " +"para dividir uniformemente" #: src/tracks/playabletrack/wavetrack/ui/WaveTrackView.cpp msgid "Click and drag to rearrange sub-views" @@ -17848,7 +18321,8 @@ msgstr "Prima e arraste para mover o limite topo da seleção." #: src/tracks/ui/SelectHandle.cpp msgid "Click and drag to move center selection frequency to a spectral peak." -msgstr "Prima e arraste para mover o centro da seleção para um pico de frequência." +msgstr "" +"Prima e arraste para mover o centro da seleção para um pico de frequência." #: src/tracks/ui/SelectHandle.cpp msgid "Click and drag to move center selection frequency." @@ -17938,7 +18412,9 @@ msgstr "Ctrl+Click" #: src/tracks/ui/TrackSelectHandle.cpp #, c-format msgid "%s to select or deselect track. Drag up or down to change track order." -msgstr "%s para selecionar ou desmarcar faixa. Arrastar cima ou baixo para mudar a ordem da faixa." +msgstr "" +"%s para selecionar ou desmarcar faixa. Arrastar cima ou baixo para mudar a " +"ordem da faixa." #. i18n-hint: %s is replaced by (translation of) 'Ctrl+Click' on windows, 'Command+Click' on Mac #: src/tracks/ui/TrackSelectHandle.cpp @@ -18001,31 +18477,41 @@ msgstr "Não pode abrir o link de atualização do Audacity." #. i18n-hint: Title of the app update notice dialog. #: src/update/UpdateNoticeDialog.cpp msgid "App update checking" -msgstr "" +msgstr "Verificação de atualização da aplicação" #: src/update/UpdateNoticeDialog.cpp -msgid "To stay up to date, you will receive an in-app notification whenever there is a new version of Audacity available to download." +msgid "" +"To stay up to date, you will receive an in-app notification whenever there " +"is a new version of Audacity available to download." msgstr "" +"Para se manter atualizado, receberá uma notificação in-app sempre que houver " +"uma nova versão do Audacity disponível para download." #: src/update/UpdateNoticeDialog.cpp -msgid "In order to protect your privacy, Audacity does not collect any personal information. However, app update checking does require network access." +msgid "" +"In order to protect your privacy, Audacity does not collect any personal " +"information. However, app update checking does require network access." msgstr "" +"Para proteger a sua privacidade, o Audacity não recolhe nenhuma informação " +"pessoal. No entanto, a verificação de atualização da aplicação requer acesso " +"à rede." #: src/update/UpdateNoticeDialog.cpp #, c-format msgid "You can turn off app update checking at any time in %s." msgstr "" +"Pode desativar a verificação de atualização da aplicação a qualquer momento " +"em %s." #. i18n-hint: Title of the app update notice dialog. #: src/update/UpdateNoticeDialog.cpp msgid "App updates" -msgstr "" +msgstr "Atualizações da aplicação" #. i18n-hint: a page in the Preferences dialog; use same name #: src/update/UpdateNoticeDialog.cpp -#, fuzzy msgid "Preferences > Application" -msgstr "Preferências para Qualidade" +msgstr "Preferências > Aplicação" #: src/update/UpdatePopupDialog.cpp msgctxt "update dialog" @@ -18639,28 +19125,29 @@ msgstr "Confirmar Fecho" #. i18n-hint: %s is replaced with a directory path. #: src/widgets/UnwritableLocationErrorDialog.cpp -#, fuzzy, c-format +#, c-format msgid "Unable to write files to directory: %s." -msgstr "Não foi possível ler a predefinição de \"%s\"" +msgstr "Impossível escrever ficheiros para o diretório: %s." #. i18n-hint: This message describes the error in the Error dialog. #: src/widgets/UnwritableLocationErrorDialog.cpp -msgid "Please check that the directory exists, has the necessary permissions, and the drive isn't full." +msgid "" +"Please check that the directory exists, has the necessary permissions, and " +"the drive isn't full." msgstr "" +"Por favor, verifique se o diretório existe, tem as permissões necessárias, e " +"se a unidade não está cheia." #. i18n-hint: %s is replaced with 'Preferences > Directories'. #: src/widgets/UnwritableLocationErrorDialog.cpp -#, fuzzy, c-format +#, c-format msgid "You can change the directory in %s." -msgstr "" -"Não foi possível criar a pasta:\n" -" %s" +msgstr "Pode mudar o diretório em %s." #. i18n-hint: Hyperlink title that opens Preferences dialog on Directories page. #: src/widgets/UnwritableLocationErrorDialog.cpp -#, fuzzy msgid "Preferences > Directories" -msgstr "Preferências para Directórios" +msgstr "Preferências > Diretórios" #: src/widgets/Warning.cpp msgid "Don't show this warning again" @@ -18837,7 +19324,8 @@ msgstr "~aFrequência central deve ser acima de 0 Hz." #, lisp-format msgid "" "~aFrequency selection is too high for track sample rate.~%~\n" -" For the current track, the high frequency setting cannot~%~\n" +" For the current track, the high frequency setting " +"cannot~%~\n" " be greater than ~a Hz" msgstr "" "~aA seleção de frequência é muito alta para a taxa de sample da faixa.~%~\n" @@ -19036,8 +19524,11 @@ msgid "Benjamin Schwartz and Steve Daulton" msgstr "Benjamin Schwartz and Steve Daulton" #: plug-ins/clipfix.ny -msgid "Licensing confirmed under terms of the GNU General Public License version 2" -msgstr "Licenciamento confirmado sob os termos do GNU General Public License version 2" +msgid "" +"Licensing confirmed under terms of the GNU General Public License version 2" +msgstr "" +"Licenciamento confirmado sob os termos do GNU General Public License version " +"2" #: plug-ins/clipfix.ny msgid "Threshold of Clipping (%)" @@ -19058,7 +19549,8 @@ msgstr "Crossfading…" #: plug-ins/crossfadeclips.ny #, lisp-format msgid "Error.~%Invalid selection.~%More than 2 audio clips selected." -msgstr "Erro.~%Seleção inválida.~%Mais do que dois clipes de áudio selecionados." +msgstr "" +"Erro.~%Seleção inválida.~%Mais do que dois clipes de áudio selecionados." #: plug-ins/crossfadeclips.ny #, lisp-format @@ -19387,7 +19879,8 @@ msgid "" " Track sample rate is ~a Hz~%~\n" " Frequency must be less than ~a Hz." msgstr "" -"Erro:~%~%A frequência (~a Hz) é muito alta para a taxa de sample da faixa.~%~%~\n" +"Erro:~%~%A frequência (~a Hz) é muito alta para a taxa de sample da faixa." +"~%~%~\n" " A taxa de sample da faixa é ~a Hz~%~\n" " A frequência deve ser menor do que ~a Hz." @@ -19397,8 +19890,11 @@ msgid "Label Sounds" msgstr "Sons de Rótulo" #: plug-ins/label-sounds.ny plug-ins/noisegate.ny -msgid "Released under terms of the GNU General Public License version 2 or later." -msgstr "Distribuído sob os termos da GNU General Public License versão 2 ou posterior." +msgid "" +"Released under terms of the GNU General Public License version 2 or later." +msgstr "" +"Distribuído sob os termos da GNU General Public License versão 2 ou " +"posterior." #: plug-ins/label-sounds.ny msgid "Threshold level (dB)" @@ -19469,7 +19965,9 @@ msgstr "~ah ~am ~as" #: plug-ins/label-sounds.ny #, lisp-format msgid "Too many silences detected.~%Only the first 10000 labels added." -msgstr "Demasiados silêncios detetados.~%Apenas os primeiros 10000 rótulos adicionados." +msgstr "" +"Demasiados silêncios detetados.~%Apenas os primeiros 10000 rótulos " +"adicionados." #. i18n-hint: '~a' will be replaced by a time duration #: plug-ins/label-sounds.ny @@ -19479,13 +19977,21 @@ msgstr "Erro.~%Seleção deve ser menor do que ~a." #: plug-ins/label-sounds.ny #, lisp-format -msgid "No sounds found.~%Try lowering the 'Threshold' or reduce 'Minimum sound duration'." -msgstr "Nenhum som encontrado.~%Tente baixar o 'Limite' ou reduzir a 'Duração mínima do som'." +msgid "" +"No sounds found.~%Try lowering the 'Threshold' or reduce 'Minimum sound " +"duration'." +msgstr "" +"Nenhum som encontrado.~%Tente baixar o 'Limite' ou reduzir a 'Duração mínima " +"do som'." #: plug-ins/label-sounds.ny #, lisp-format -msgid "Labelling regions between sounds requires~%at least two sounds.~%Only one sound detected." -msgstr "Opções de rótulo entre sons requer~%pelo menos dois sons.~%Apenas um som detetado." +msgid "" +"Labelling regions between sounds requires~%at least two sounds.~%Only one " +"sound detected." +msgstr "" +"Opções de rótulo entre sons requer~%pelo menos dois sons.~%Apenas um som " +"detetado." #: plug-ins/limiter.ny msgid "Limiter" @@ -19673,7 +20179,8 @@ msgid "" " Track sample rate is ~a Hz.~%~\n" " Frequency must be less than ~a Hz." msgstr "" -"Erro:~%~%Frequência (~a Hz) é muito alta para a taxa de sample da faixa.~%~%~\n" +"Erro:~%~%Frequência (~a Hz) é muito alta para a taxa de sample da faixa." +"~%~%~\n" " Taxa de sample da faixa é ~a Hz.~%~\n" " Frequência deve ser menos do que ~a Hz." @@ -19732,7 +20239,8 @@ msgstr "Aviso.~%Falhou ao copiar alguns ficheiros:~%" #: plug-ins/nyquist-plug-in-installer.ny #, lisp-format msgid "Plug-ins installed.~%(Use the Plug-in Manager to enable effects):" -msgstr "Plug-ins instalados.~%(Utilize o Gestor plug-in para ativar os efeitos):" +msgstr "" +"Plug-ins instalados.~%(Utilize o Gestor plug-in para ativar os efeitos):" #: plug-ins/nyquist-plug-in-installer.ny msgid "Plug-ins updated:" @@ -19833,7 +20341,9 @@ msgstr "+/- 1" #: plug-ins/rhythmtrack.ny msgid "Set 'Number of bars' to zero to enable the 'Rhythm track duration'." -msgstr "Definir 'Número de barras' para zero para ativar a 'Duração da faixa de ritmo'." +msgstr "" +"Definir 'Número de barras' para zero para ativar a 'Duração da faixa de " +"ritmo'." #: plug-ins/rhythmtrack.ny msgid "Number of bars" @@ -20056,8 +20566,11 @@ msgstr "Taxa de sample: ~a Hz. Valores de sample em ~a escala.~%~a~%~a" #: plug-ins/sample-data-export.ny #, lisp-format -msgid "~a ~a~%~aSample Rate: ~a Hz.~%Length processed: ~a samples ~a seconds.~a" -msgstr "~a ~a~%~aTaxa de Sample: ~a Hz.~%Comprimento processado: ~a samples ~a segundos.~a" +msgid "" +"~a ~a~%~aSample Rate: ~a Hz.~%Length processed: ~a samples ~a seconds.~a" +msgstr "" +"~a ~a~%~aTaxa de Sample: ~a Hz.~%Comprimento processado: ~a samples ~a " +"segundos.~a" #: plug-ins/sample-data-export.ny #, lisp-format @@ -20071,12 +20584,16 @@ msgstr "" #: plug-ins/sample-data-export.ny #, lisp-format msgid "" -"~a~%Sample Rate: ~a Hz. Sample values on ~a scale. ~a.~%~aLength processed: ~a ~\n" -" samples, ~a seconds.~%Peak amplitude: ~a (linear) ~a dB. Unweighted RMS: ~a dB.~%~\n" +"~a~%Sample Rate: ~a Hz. Sample values on ~a scale. ~a.~%~aLength processed: " +"~a ~\n" +" samples, ~a seconds.~%Peak amplitude: ~a (linear) ~a dB. " +"Unweighted RMS: ~a dB.~%~\n" " DC offset: ~a~a" msgstr "" -"~a~%Taxa de Sample: ~a Hz. Valores de sample em ~a escala. ~a.~%~aComprimento processado: ~a ~\n" -" samples, ~a segundos.~%Amplitude de pico: ~a (linear) ~a dB. RMS sem peso: ~a dB.~%~\n" +"~a~%Taxa de Sample: ~a Hz. Valores de sample em ~a escala. ~a." +"~%~aComprimento processado: ~a ~\n" +" samples, ~a segundos.~%Amplitude de pico: ~a (linear) ~a " +"dB. RMS sem peso: ~a dB.~%~\n" " DC offset: ~a~a" #: plug-ins/sample-data-export.ny @@ -20407,8 +20924,12 @@ msgstr "" #: plug-ins/vocalrediso.ny #, lisp-format -msgid "Pan position: ~a~%The left and right channels are correlated by about ~a %. This means:~%~a~%" -msgstr "Posição de balanço: ~a~%Os canais esquerdo e direito são correlacionados em acerca ~a %. Isto significa:~%~a~%" +msgid "" +"Pan position: ~a~%The left and right channels are correlated by about ~a %. " +"This means:~%~a~%" +msgstr "" +"Posição de balanço: ~a~%Os canais esquerdo e direito são correlacionados em " +"acerca ~a %. Isto significa:~%~a~%" #: plug-ins/vocalrediso.ny msgid "" @@ -20418,36 +20939,44 @@ msgid "" msgstr "" " - Os dois canais são idênticos, p.e. dual mono.\n" " O centro não pode ser removido.\n" -" Qualquer diferença restante pode ser causada por perda de codificação." +" Qualquer diferença restante pode ser causada por perda de " +"codificação." #: plug-ins/vocalrediso.ny msgid "" -" - The two Channels are strongly related, i.e. nearly mono or extremely panned.\n" +" - The two Channels are strongly related, i.e. nearly mono or extremely " +"panned.\n" " Most likely, the center extraction will be poor." msgstr "" -" - Os dois Canais são fortemente relacionados, p.e. perto de mono ou extremo balanço.\n" +" - Os dois Canais são fortemente relacionados, p.e. perto de mono ou extremo " +"balanço.\n" " Mais propriamente, a extração central será pobre." #: plug-ins/vocalrediso.ny -msgid " - A fairly good value, at least stereo in average and not too wide spread." +msgid "" +" - A fairly good value, at least stereo in average and not too wide spread." msgstr " - Um valor razoável, ao menos estéreo em média e não muito espalhado." #: plug-ins/vocalrediso.ny msgid "" " - An ideal value for Stereo.\n" -" However, the center extraction depends also on the used reverb." +" However, the center extraction depends also on the used " +"reverb." msgstr "" " - Um valor ideal para Estéreo.\n" -" Contudo, a extração do centro depende também do reverb utilizado." +" Contudo, a extração do centro depende também do reverb " +"utilizado." #: plug-ins/vocalrediso.ny msgid "" " - The two channels are almost not related.\n" -" Either you have only noise or the piece is mastered in a unbalanced manner.\n" +" Either you have only noise or the piece is mastered in a " +"unbalanced manner.\n" " The center extraction can still be good though." msgstr "" " - Os dois canais estão quase não relacionados.\n" -" Ou você só tem ruído ou a peça é dominada de maneira desequilibrada.\n" +" Ou você só tem ruído ou a peça é dominada de maneira " +"desequilibrada.\n" " A extração do centro ainda pode ser boa." #: plug-ins/vocalrediso.ny @@ -20464,12 +20993,14 @@ msgstr "" msgid "" " - The two channels are nearly identical.\n" " Obviously, a pseudo stereo effect has been used\n" -" to spread the signal over the physical distance between the speakers.\n" +" to spread the signal over the physical distance between " +"the speakers.\n" " Don't expect good results from a center removal." msgstr "" " - Os dois canais são quase idênticos.\n" " Obviamente, um efeito pseudo estéreo foi usado\n" -" para espalhar o sinal sobre a distância física entre os altifalantes.\n" +" para espalhar o sinal sobre a distância física entre os " +"altifalantes.\n" " Não espere bons resultados de uma remoção do centro." #: plug-ins/vocalrediso.ny @@ -20585,20 +21116,24 @@ msgstr "Erro.~%Requer faixa estéreo." #~ msgid "" #~ "One or more external audio files could not be found.\n" -#~ "It is possible they were moved, deleted, or the drive they were on was unmounted.\n" +#~ "It is possible they were moved, deleted, or the drive they were on was " +#~ "unmounted.\n" #~ "Silence is being substituted for the affected audio.\n" #~ "The first detected missing file is:\n" #~ "%s\n" #~ "There may be additional missing files.\n" -#~ "Choose Help > Diagnostics > Check Dependencies to view a list of locations of the missing files." +#~ "Choose Help > Diagnostics > Check Dependencies to view a list of " +#~ "locations of the missing files." #~ msgstr "" #~ "Um ou mais ficheiros de áudio externos não puderam ser encontrados.\n" -#~ "É possível que foram movidos, apagados, ou o dispositivo onde estavam foi desmontado.\n" +#~ "É possível que foram movidos, apagados, ou o dispositivo onde estavam foi " +#~ "desmontado.\n" #~ "Silêncio será substituído para o áudio afetado.\n" #~ "O primeiro ficheiro em falta detetado é:\n" #~ "%s\n" #~ "Poderá haver mais ficheiros em falta.\n" -#~ "Escolha Ajuda > Diagnóstico > Verificar Dependências para ver uma lista de localizações dos ficheiros em falta." +#~ "Escolha Ajuda > Diagnóstico > Verificar Dependências para ver uma lista " +#~ "de localizações dos ficheiros em falta." #~ msgid "Files Missing" #~ msgstr "Ficheiros em Falta" @@ -20613,7 +21148,9 @@ msgstr "Erro.~%Requer faixa estéreo." #~ msgstr "Erro ao descodificar ficheiro" #~ msgid "After recovery, save the project to save the changes to disk." -#~ msgstr "Depois da recuperação, guarde o projeto para guardar as alterações para o disco." +#~ msgstr "" +#~ "Depois da recuperação, guarde o projeto para guardar as alterações para o " +#~ "disco." #~ msgid "Discard Projects" #~ msgstr "Eliminar Projetos" @@ -20625,7 +21162,8 @@ msgstr "Erro.~%Requer faixa estéreo." #~ msgstr "Confirme o Eliminar de Projetos" #~ msgid "Could not enumerate files in auto save directory." -#~ msgstr "Não foi possível enumerar ficheiros na pasta de gravação automática." +#~ msgstr "" +#~ "Não foi possível enumerar ficheiros na pasta de gravação automática." #~ msgid "No Action" #~ msgstr "Sem Ação" @@ -20668,13 +21206,17 @@ msgstr "Erro.~%Requer faixa estéreo." #~ msgstr "Comando %s ainda não implementado" #~ msgid "" -#~ "Your project is currently self-contained; it does not depend on any external audio files. \n" +#~ "Your project is currently self-contained; it does not depend on any " +#~ "external audio files. \n" #~ "\n" -#~ "If you change the project to a state that has external dependencies on imported files, it will no longer be self-contained. If you then Save without copying those files in, you may lose data." +#~ "If you change the project to a state that has external dependencies on " +#~ "imported files, it will no longer be self-contained. If you then Save " +#~ "without copying those files in, you may lose data." #~ msgstr "" #~ "O projeto é independente de qualquer ficheiro de áudio externo.\n" #~ "\n" -#~ "Se alterar o estado do projeto irá torná-lo dependente de ficheiros externos. Ao Guardar sem copiar estes ficheiros, pode perder dados." +#~ "Se alterar o estado do projeto irá torná-lo dependente de ficheiros " +#~ "externos. Ao Guardar sem copiar estes ficheiros, pode perder dados." #~ msgid "Cleaning project temporary files" #~ msgstr "A apagar ficheiros temporários" @@ -20719,8 +21261,11 @@ msgstr "Erro.~%Requer faixa estéreo." #~ msgid "Reclaimable Space" #~ msgstr "Espaço Reclamável" -#~ msgid "Audacity cannot start because the settings file at %s is not writable." -#~ msgstr "O Audacity não pode iniciar porque o ficheiro de configurações em %s não é gravável." +#~ msgid "" +#~ "Audacity cannot start because the settings file at %s is not writable." +#~ msgstr "" +#~ "O Audacity não pode iniciar porque o ficheiro de configurações em %s não " +#~ "é gravável." #~ msgid "" #~ "This file was saved by Audacity version %s. The format has changed. \n" @@ -20728,7 +21273,8 @@ msgstr "Erro.~%Requer faixa estéreo." #~ "Audacity can try to open and save this file, but saving it in this \n" #~ "version will then prevent any 1.2 or earlier version opening it. \n" #~ "\n" -#~ "Audacity might corrupt the file in opening it, so you should back it up first. \n" +#~ "Audacity might corrupt the file in opening it, so you should back it up " +#~ "first. \n" #~ "\n" #~ "Open this file now?" #~ msgstr "" @@ -20736,9 +21282,11 @@ msgstr "Erro.~%Requer faixa estéreo." #~ "O formato entretanto mudou. \n" #~ "\n" #~ "O Audacity pode tentar abrir e guardar este ficheiro, mas ao guardá-lo \n" -#~ "nesta versão impossibilitará que seja aberto nas versões 1.2 ou anteriores. \n" +#~ "nesta versão impossibilitará que seja aberto nas versões 1.2 ou " +#~ "anteriores. \n" #~ "\n" -#~ "O Audacity poderá corromper o ficheiro ao abri-lo, deverá fazer uma cópia \n" +#~ "O Audacity poderá corromper o ficheiro ao abri-lo, deverá fazer uma " +#~ "cópia \n" #~ "de segurança primeiro. \n" #~ "\n" #~ "Abrir este ficheiro agora?" @@ -20750,7 +21298,8 @@ msgstr "Erro.~%Requer faixa estéreo." #~ msgstr "Aviso - A Abrir Projeto Antigo" #~ msgid "" -#~ msgstr "" +#~ msgstr "" +#~ "" #~ msgid "Could not create autosave file: %s" #~ msgstr "Não pode criar ficheiro autosave: %s" @@ -20774,16 +21323,20 @@ msgstr "Erro.~%Requer faixa estéreo." #~ "Tente criar a pasta \"%s\" antes de guardar o projeto com este nome." #~ msgid "" -#~ "'Save Lossless Copy of Project' is for an Audacity project, not an audio file.\n" +#~ "'Save Lossless Copy of Project' is for an Audacity project, not an audio " +#~ "file.\n" #~ "For an audio file that will open in other apps, use 'Export'.\n" #~ "\n" #~ "Lossless copies of project are a good way to backup your project, \n" #~ "with no loss of quality, but the projects are large.\n" #~ msgstr "" -#~ "'Guardar Cópia Sem Perdas do Projeto' é para um projeto do Audacity, não um ficheiro de áudio.\n" -#~ "Para um ficheiro de áudio que irá abrir noutas aplicações, utilize 'Exportar'.\n" +#~ "'Guardar Cópia Sem Perdas do Projeto' é para um projeto do Audacity, não " +#~ "um ficheiro de áudio.\n" +#~ "Para um ficheiro de áudio que irá abrir noutas aplicações, utilize " +#~ "'Exportar'.\n" #~ "\n" -#~ "Copias sem Perdas de um projeto são uma boa maneira de fazer um backup ao seu projeto, \n" +#~ "Copias sem Perdas de um projeto são uma boa maneira de fazer um backup ao " +#~ "seu projeto, \n" #~ "sem nenhuma perda de qualidade, mas os projetos são compridos.\n" #~ "\n" @@ -20791,21 +21344,30 @@ msgstr "Erro.~%Requer faixa estéreo." #~ msgstr "%sGuardar Cópia Comprimida do Projeto \"%s\" Como..." #~ msgid "" -#~ "'Save Compressed Copy of Project' is for an Audacity project, not an audio file.\n" +#~ "'Save Compressed Copy of Project' is for an Audacity project, not an " +#~ "audio file.\n" #~ "For an audio file that will open in other apps, use 'Export'.\n" #~ "\n" -#~ "Compressed project files are a good way to transmit your project online, \n" +#~ "Compressed project files are a good way to transmit your project " +#~ "online, \n" #~ "but they have some loss of fidelity.\n" #~ msgstr "" -#~ "'Guardar Cópia Comprimida do Projeto' +e oara um projeto do Audacity, não um ficheiro de áudio.\n" -#~ "Para um ficheiro de áudio que irá abrir noutas aplicações, utilize 'Exportar'.\n" +#~ "'Guardar Cópia Comprimida do Projeto' +e oara um projeto do Audacity, não " +#~ "um ficheiro de áudio.\n" +#~ "Para um ficheiro de áudio que irá abrir noutas aplicações, utilize " +#~ "'Exportar'.\n" #~ "\n" -#~ "Ficheiros de Projetos Comprimidos são uma boa maneira de transmitir o seu projeto online, \n" +#~ "Ficheiros de Projetos Comprimidos são uma boa maneira de transmitir o seu " +#~ "projeto online, \n" #~ "mas irá ter alguma perda de fidelidade.\n" #~ "\n" -#~ msgid "Audacity was unable to convert an Audacity 1.0 project to the new project format." -#~ msgstr "O Audacity não conseguiu converter um projeto do Audacity 1.0 para o novo formato de projeto." +#~ msgid "" +#~ "Audacity was unable to convert an Audacity 1.0 project to the new project " +#~ "format." +#~ msgstr "" +#~ "O Audacity não conseguiu converter um projeto do Audacity 1.0 para o novo " +#~ "formato de projeto." #~ msgid "Could not remove old auto save file" #~ msgstr "Não foi possível apagar ficheiro de recuperação antigo" @@ -20813,11 +21375,19 @@ msgstr "Erro.~%Requer faixa estéreo." #~ msgid "On-demand import and waveform calculation complete." #~ msgstr "Importação e cálculo da forma da onda, a pedido, completos." -#~ msgid "Import(s) complete. Running %d on-demand waveform calculations. Overall %2.0f%% complete." -#~ msgstr "Importação completa. A executar %d cálculos a pedido, da forma da onda. Total de %2.0f%% completo." +#~ msgid "" +#~ "Import(s) complete. Running %d on-demand waveform calculations. Overall " +#~ "%2.0f%% complete." +#~ msgstr "" +#~ "Importação completa. A executar %d cálculos a pedido, da forma da onda. " +#~ "Total de %2.0f%% completo." -#~ msgid "Import complete. Running an on-demand waveform calculation. %2.0f%% complete." -#~ msgstr "Importação completa. A executar cálculo a pedido, da forma da onda. %2.0f%% completo." +#~ msgid "" +#~ "Import complete. Running an on-demand waveform calculation. %2.0f%% " +#~ "complete." +#~ msgstr "" +#~ "Importação completa. A executar cálculo a pedido, da forma da onda. %2.0f%" +#~ "% completo." #~ msgid "Compress" #~ msgstr "Comprimir" @@ -20830,14 +21400,19 @@ msgstr "Erro.~%Requer faixa estéreo." #~ msgid "" #~ "You are attempting to overwrite an aliased file that is missing.\n" -#~ "The file cannot be written because the path is needed to restore the original audio to the project.\n" -#~ "Choose Help > Diagnostics > Check Dependencies to view the locations of all missing files.\n" +#~ "The file cannot be written because the path is needed to restore the " +#~ "original audio to the project.\n" +#~ "Choose Help > Diagnostics > Check Dependencies to view the locations of " +#~ "all missing files.\n" #~ "If you still wish to export, please choose a different filename or folder." #~ msgstr "" #~ "Está a tentar sobrescrever um ficheiro com alias em falta.\n" -#~ "O ficheiro não pode ser escrito porque o caminho é necessário para restaurar o áudio original para o projeto.\n" -#~ "Escolha Ajuda > Diagnóstico > Verificar Dependências para ver as localizações de todos os ficheiros em falta.\n" -#~ "Se ainda quer exportar, por favor escolha um nome de ficheiro diferente ou pasta." +#~ "O ficheiro não pode ser escrito porque o caminho é necessário para " +#~ "restaurar o áudio original para o projeto.\n" +#~ "Escolha Ajuda > Diagnóstico > Verificar Dependências para ver as " +#~ "localizações de todos os ficheiros em falta.\n" +#~ "Se ainda quer exportar, por favor escolha um nome de ficheiro diferente " +#~ "ou pasta." #~ msgid "FFmpeg : ERROR - Failed to write audio frame to file." #~ msgstr "FFmpeg : ERRO - Falhou ao escrever frame de áudio para o ficheiro." @@ -20859,10 +21434,14 @@ msgstr "Erro.~%Requer faixa estéreo." #~ "%s" #~ msgid "" -#~ "When importing uncompressed audio files you can either copy them into the project, or read them directly from their current location (without copying).\n" +#~ "When importing uncompressed audio files you can either copy them into the " +#~ "project, or read them directly from their current location (without " +#~ "copying).\n" #~ "\n" #~ msgstr "" -#~ "Quando ao importar ficheiros de áudio descomprimidos você pode entre copiá-los para dentro do projeto, ou lê-los diretamente da localização deles (sem copiar).\n" +#~ "Quando ao importar ficheiros de áudio descomprimidos você pode entre " +#~ "copiá-los para dentro do projeto, ou lê-los diretamente da localização " +#~ "deles (sem copiar).\n" #~ "\n" #~ msgid "" @@ -20880,13 +21459,20 @@ msgstr "Erro.~%Requer faixa estéreo." #~ "\n" #~ msgid "" -#~ "Reading the files directly allows you to play or edit them almost immediately. This is less safe than copying in, because you must retain the files with their original names in their original locations.\n" -#~ "Help > Diagnostics > Check Dependencies will show the original names and locations of any files that you are reading directly.\n" +#~ "Reading the files directly allows you to play or edit them almost " +#~ "immediately. This is less safe than copying in, because you must retain " +#~ "the files with their original names in their original locations.\n" +#~ "Help > Diagnostics > Check Dependencies will show the original names and " +#~ "locations of any files that you are reading directly.\n" #~ "\n" #~ "How do you want to import the current file(s)?" #~ msgstr "" -#~ "Ao ler os ficheiros diretamente permite lhe reproduzir ou editá-los quase imediatamente. Isto é menos seguro do que copiar, porque deve reter os ficheiros com os seus nomes originais nas suas localizações originais.\n" -#~ "Ajuda > Diagnóstico > Verificar Dependências irá mostrar os nomes originais e localizações de quaisquer ficheiros que você está a ler diretamente.\n" +#~ "Ao ler os ficheiros diretamente permite lhe reproduzir ou editá-los quase " +#~ "imediatamente. Isto é menos seguro do que copiar, porque deve reter os " +#~ "ficheiros com os seus nomes originais nas suas localizações originais.\n" +#~ "Ajuda > Diagnóstico > Verificar Dependências irá mostrar os nomes " +#~ "originais e localizações de quaisquer ficheiros que você está a ler " +#~ "diretamente.\n" #~ "\n" #~ "Como quer importar o(s) ficheiro(s) atual(atuais)?" @@ -20927,13 +21513,16 @@ msgstr "Erro.~%Requer faixa estéreo." #~ msgstr "Cache de Áudio" #~ msgid "Play and/or record using &RAM (useful for slow drives)" -#~ msgstr "Reproduzir e/ou gravar com utilização da memória &RAM (útil em discos lentos)" +#~ msgstr "" +#~ "Reproduzir e/ou gravar com utilização da memória &RAM (útil em discos " +#~ "lentos)" #~ msgid "Mi&nimum Free Memory (MB):" #~ msgstr "&Memória Livre Mínima (MB):" #~ msgid "" -#~ "If the available system memory falls below this value, audio will no longer\n" +#~ "If the available system memory falls below this value, audio will no " +#~ "longer\n" #~ "be cached in memory and will be written to disk." #~ msgstr "" #~ "Se a memória disponível no sistema cair abaixo deste valor,\n" @@ -21035,18 +21624,24 @@ msgstr "Erro.~%Requer faixa estéreo." #~ msgid "Audacity Team Members" #~ msgstr "Equipa de Desenvolvimento do Audacity" -#~ msgid "


    Audacity® software is copyright © 1999-2018 Audacity Team.
" -#~ msgstr "


    Audacity® software é copyright © 1999-2018 Equipa Audacity.
" +#~ msgid "" +#~ "


    Audacity® software is " +#~ "copyright © 1999-2018 Audacity Team.
" +#~ msgstr "" +#~ "


    Audacity® software é copyright " +#~ "© 1999-2018 Equipa Audacity.
" #~ msgid "mkdir in DirManager::MakeBlockFilePath failed." #~ msgstr "mkdir no DirManager::MakeBlockFilePath falhou." #~ msgid "" #~ "Audacity found an orphan block file: %s. \n" -#~ "Please consider saving and reloading the project to perform a complete project check." +#~ "Please consider saving and reloading the project to perform a complete " +#~ "project check." #~ msgstr "" #~ "O Audacity encontrou um ficheiro do bloco orfão %s! \n" -#~ "Por favor, considere guardar, fechar e abrir novamente o projeto para uma verificação completa." +#~ "Por favor, considere guardar, fechar e abrir novamente o projeto para uma " +#~ "verificação completa." #~ msgid "Unable to open/create test file." #~ msgstr "Não foi possível criar ou abrir o ficheiro de teste." @@ -21078,11 +21673,18 @@ msgstr "Erro.~%Requer faixa estéreo." #~ msgid "Unable to load the module \"%s\". Error: %s" #~ msgstr "Incapaz de carregar o módulo \"%s\". Erro: %s" -#~ msgid "The module \"%s\" does not provide a version string. It will not be loaded." -#~ msgstr "O módulo \"%s\" não fornece uma chave da versão. Ele não será carregado." +#~ msgid "" +#~ "The module \"%s\" does not provide a version string. It will not be " +#~ "loaded." +#~ msgstr "" +#~ "O módulo \"%s\" não fornece uma chave da versão. Ele não será carregado." -#~ msgid "The module \"%s\" is matched with Audacity version \"%s\". It will not be loaded." -#~ msgstr "O módulo \"%s\" é compatível com a versão \"%s\" do Audacity. Ele não será carregado." +#~ msgid "" +#~ "The module \"%s\" is matched with Audacity version \"%s\". It will not be " +#~ "loaded." +#~ msgstr "" +#~ "O módulo \"%s\" é compatível com a versão \"%s\" do Audacity. Ele não " +#~ "será carregado." #~ msgid "" #~ "The module \"%s\" failed to initialize.\n" @@ -21091,23 +21693,42 @@ msgstr "Erro.~%Requer faixa estéreo." #~ "O módulo \"%s\" falhou ao inicializar. \n" #~ "Ele não será carregado." -#~ msgid "The module \"%s\" does not provide any of the required functions. It will not be loaded." -#~ msgstr "O módulo \"%s\" não dispõe nenhuma das funções requeridas. Ele não será carregado." +#~ msgid "" +#~ "The module \"%s\" does not provide any of the required functions. It will " +#~ "not be loaded." +#~ msgstr "" +#~ "O módulo \"%s\" não dispõe nenhuma das funções requeridas. Ele não será " +#~ "carregado." #~ msgid " Project check replaced missing aliased file(s) with silence." -#~ msgstr " A Verificação do Projeto substituiu ficheiros externos em falta por silêncio." +#~ msgstr "" +#~ " A Verificação do Projeto substituiu ficheiros externos em falta por " +#~ "silêncio." #~ msgid " Project check regenerated missing alias summary file(s)." -#~ msgstr " A Verificação do Projeto recriou o sumário dos ficheiros de áudio externos em falta." +#~ msgstr "" +#~ " A Verificação do Projeto recriou o sumário dos ficheiros de áudio " +#~ "externos em falta." -#~ msgid " Project check replaced missing audio data block file(s) with silence." -#~ msgstr " A Verificação do Projeto substituiu os ficheiros do bloco de áudio em falta por silêncio." +#~ msgid "" +#~ " Project check replaced missing audio data block file(s) with silence." +#~ msgstr "" +#~ " A Verificação do Projeto substituiu os ficheiros do bloco de áudio em " +#~ "falta por silêncio." -#~ msgid " Project check ignored orphan block file(s). They will be deleted when project is saved." -#~ msgstr " A Verificação do Projeto ignorou ficheiros do bloco orfãos. Eles serão apagados ao guardar o projeto." +#~ msgid "" +#~ " Project check ignored orphan block file(s). They will be deleted when " +#~ "project is saved." +#~ msgstr "" +#~ " A Verificação do Projeto ignorou ficheiros do bloco orfãos. Eles serão " +#~ "apagados ao guardar o projeto." -#~ msgid "Project check found file inconsistencies inspecting the loaded project data." -#~ msgstr "A Verificação do Projeto encontrou inconsistências ao inspecionar os dados no projeto atual." +#~ msgid "" +#~ "Project check found file inconsistencies inspecting the loaded project " +#~ "data." +#~ msgstr "" +#~ "A Verificação do Projeto encontrou inconsistências ao inspecionar os " +#~ "dados no projeto atual." #~ msgid "Presets (*.txt)|*.txt|All files|*" #~ msgstr "Presets (*.txt)|*.txt|Todos os ficheiros|*" @@ -21141,7 +21762,8 @@ msgstr "Erro.~%Requer faixa estéreo." #~ "Bad Nyquist 'control' type specification: '%s' in plug-in file '%s'.\n" #~ "Control not created." #~ msgstr "" -#~ "Especificação do tipo de 'Controlo' Nyquist errado: '%s' no ficheiro de plugin '%s'.\n" +#~ "Especificação do tipo de 'Controlo' Nyquist errado: '%s' no ficheiro de " +#~ "plugin '%s'.\n" #~ "O controlo não foi criado." #~ msgid "" @@ -21228,14 +21850,22 @@ msgstr "Erro.~%Requer faixa estéreo." #~ msgid "Enable Scrub Ruler" #~ msgstr "Ativar Barra de Percorrer" -#~ msgid "Only avformat.dll|*avformat*.dll|Dynamically Linked Libraries (*.dll)|*.dll|All Files|*" -#~ msgstr "Apenas avformat.dll|*avformat*.dll|Bibliotecas dinâmicas do sistema (*.dll)|*.dll|Todos os ficheiros (*.*)|*" +#~ msgid "" +#~ "Only avformat.dll|*avformat*.dll|Dynamically Linked Libraries (*.dll)|*." +#~ "dll|All Files|*" +#~ msgstr "" +#~ "Apenas avformat.dll|*avformat*.dll|Bibliotecas dinâmicas do sistema (*." +#~ "dll)|*.dll|Todos os ficheiros (*.*)|*" #~ msgid "Dynamic Libraries (*.dylib)|*.dylib|All Files (*)|*" #~ msgstr "Bibliotecas dinâmicas (*.dylib)|*.dylib|Todos os ficheiros (*)|*" -#~ msgid "Only libavformat.so|libavformat*.so*|Dynamically Linked Libraries (*.so*)|*.so*|All Files (*)|*" -#~ msgstr "Apenas libavformat.so|libavformat*.so*|Bibliotecas dinâmicas do sistema (*.so*)|*.so*|Todos os ficheiros (*)|*" +#~ msgid "" +#~ "Only libavformat.so|libavformat*.so*|Dynamically Linked Libraries (*.so*)|" +#~ "*.so*|All Files (*)|*" +#~ msgstr "" +#~ "Apenas libavformat.so|libavformat*.so*|Bibliotecas dinâmicas do sistema " +#~ "(*.so*)|*.so*|Todos os ficheiros (*)|*" #~ msgid "Add to History:" #~ msgstr "Adicionar ao Histórico:" @@ -21259,22 +21889,31 @@ msgstr "Erro.~%Requer faixa estéreo." #~ msgstr "Utilizar sonoridade ao invés de amplitude de pico" #~ msgid "The buffer size controls the number of samples sent to the effect " -#~ msgstr "O tamanho da memória controla o número de amostras enviado para o efeito " +#~ msgstr "" +#~ "O tamanho da memória controla o número de amostras enviado para o efeito " #~ msgid "on each iteration. Smaller values will cause slower processing and " -#~ msgstr "a cada interacção. Valores mais pequenos causará um processamento mais lento e " +#~ msgstr "" +#~ "a cada interacção. Valores mais pequenos causará um processamento mais " +#~ "lento e " #~ msgid "some effects require 8192 samples or less to work properly. However " -#~ msgstr "alguns efeitos requerem 8192 amostras ou menos para funcionarem devidamente. Contudo " +#~ msgstr "" +#~ "alguns efeitos requerem 8192 amostras ou menos para funcionarem " +#~ "devidamente. Contudo " #~ msgid "most effects can accept large buffers and using them will greatly " -#~ msgstr "a maior parte dos efeitos podem aceitar valores maiores e usá-los pode, em muito, " +#~ msgstr "" +#~ "a maior parte dos efeitos podem aceitar valores maiores e usá-los pode, " +#~ "em muito, " #~ msgid "reduce processing time." #~ msgstr "reduzir o tempo de processamento." #~ msgid "As part of their processing, some VST effects must delay returning " -#~ msgstr "Como parte do seu processamento, alguns efeitos VST têm de atrasar o retorno " +#~ msgstr "" +#~ "Como parte do seu processamento, alguns efeitos VST têm de atrasar o " +#~ "retorno " #~ msgid "audio to Audacity. When not compensating for this delay, you will " #~ msgstr "do áudio para o Audacity. Quando não compensar este atraso, " @@ -21283,7 +21922,8 @@ msgstr "Erro.~%Requer faixa estéreo." #~ msgstr "notará que pequenos silêncios têm sido adicionados ao áudio. " #~ msgid "Enabling this option will provide that compensation, but it may " -#~ msgstr "Activar esta definição proporcionará essa compensação, mas isso poderá " +#~ msgstr "" +#~ "Activar esta definição proporcionará essa compensação, mas isso poderá " #~ msgid "not work for all VST effects." #~ msgstr "não funciona com todos os efeitos VST." @@ -21294,38 +21934,57 @@ msgstr "Erro.~%Requer faixa estéreo." #~ msgid " Reopen the effect for this to take effect." #~ msgstr " Volte a abrir o efeito para que isto tenha efeito." -#~ msgid "As part of their processing, some Audio Unit effects must delay returning " -#~ msgstr "Como parte do seu processamento, alguns efeitos Audio Unit têm de atrasar o retorno " +#~ msgid "" +#~ "As part of their processing, some Audio Unit effects must delay returning " +#~ msgstr "" +#~ "Como parte do seu processamento, alguns efeitos Audio Unit têm de atrasar " +#~ "o retorno " #~ msgid "not work for all Audio Unit effects." #~ msgstr "não funciona com todos os efeitos de Audio Unit." -#~ msgid "Select \"Full\" to use the graphical interface if supplied by the Audio Unit." -#~ msgstr "Selecione \"Cheio\" para utilizar a interface gráfica se fornecida pela Audio Unit." +#~ msgid "" +#~ "Select \"Full\" to use the graphical interface if supplied by the Audio " +#~ "Unit." +#~ msgstr "" +#~ "Selecione \"Cheio\" para utilizar a interface gráfica se fornecida pela " +#~ "Audio Unit." #~ msgid " Select \"Generic\" to use the system supplied generic interface." -#~ msgstr " Selecione \"Generico\" para utilizar o sistema fornecido para interface genérica." +#~ msgstr "" +#~ " Selecione \"Generico\" para utilizar o sistema fornecido para interface " +#~ "genérica." #~ msgid " Select \"Basic\" for a basic text-only interface." #~ msgstr " Selecione \"Básico\" para uma interface de apenas texto.." -#~ msgid "As part of their processing, some LADSPA effects must delay returning " -#~ msgstr "Como parte do seu processamento, alguns efeitos LADSPA têm de atrasar o retorno " +#~ msgid "" +#~ "As part of their processing, some LADSPA effects must delay returning " +#~ msgstr "" +#~ "Como parte do seu processamento, alguns efeitos LADSPA têm de atrasar o " +#~ "retorno " #~ msgid "not work for all LADSPA effects." #~ msgstr "não funciona para todos os efeitos LADSPA." #~ msgid "As part of their processing, some LV2 effects must delay returning " -#~ msgstr "Como parte do seu processamento, alguns efeitos LV2 têm de atrasar o retorno " +#~ msgstr "" +#~ "Como parte do seu processamento, alguns efeitos LV2 têm de atrasar o " +#~ "retorno " #~ msgid "Enabling this setting will provide that compensation, but it may " -#~ msgstr "Activar esta definição proporcionará essa compensação, mas isso poderá " +#~ msgstr "" +#~ "Activar esta definição proporcionará essa compensação, mas isso poderá " #~ msgid "not work for all LV2 effects." #~ msgstr "não funciona com todos os efeitos LV2." -#~ msgid "Nyquist scripts (*.ny)|*.ny|Lisp scripts (*.lsp)|*.lsp|Text files (*.txt)|*.txt|All files|*" -#~ msgstr "Nyquist scripts (*.ny)|*.ny|Lisp scripts (*.lsp)|*.lsp|Ficheiros de texto(*.txt)|*.txt|Todos os ficheiros|*" +#~ msgid "" +#~ "Nyquist scripts (*.ny)|*.ny|Lisp scripts (*.lsp)|*.lsp|Text files (*.txt)|" +#~ "*.txt|All files|*" +#~ msgstr "" +#~ "Nyquist scripts (*.ny)|*.ny|Lisp scripts (*.lsp)|*.lsp|Ficheiros de " +#~ "texto(*.txt)|*.txt|Todos os ficheiros|*" #~ msgid "%i kbps" #~ msgstr "%i kbps" @@ -21336,17 +21995,33 @@ msgstr "Erro.~%Requer faixa estéreo." #~ msgid "%s kbps" #~ msgstr "%s kbps" -#~ msgid "Only lame_enc.dll|lame_enc.dll|Dynamically Linked Libraries (*.dll)|*.dll|All Files|*" -#~ msgstr "Apenas lame_enc.dll|lame_enc.dll|Dynamically Linked Libraries (*.dll)|*.dll|Todos os ficheiros|*" +#~ msgid "" +#~ "Only lame_enc.dll|lame_enc.dll|Dynamically Linked Libraries (*.dll)|*.dll|" +#~ "All Files|*" +#~ msgstr "" +#~ "Apenas lame_enc.dll|lame_enc.dll|Dynamically Linked Libraries (*.dll)|*." +#~ "dll|Todos os ficheiros|*" -#~ msgid "Only libmp3lame64bit.dylib|libmp3lame64bit.dylib|Dynamic Libraries (*.dylib)|*.dylib|All Files (*)|*" -#~ msgstr "Apenas libmp3lame64bit.dylib|libmp3lame64bit.dylib|Dynamic Libraries (*.dylib)|*.dylib|Todos os Ficheiros (*)|*" +#~ msgid "" +#~ "Only libmp3lame64bit.dylib|libmp3lame64bit.dylib|Dynamic Libraries (*." +#~ "dylib)|*.dylib|All Files (*)|*" +#~ msgstr "" +#~ "Apenas libmp3lame64bit.dylib|libmp3lame64bit.dylib|Dynamic Libraries (*." +#~ "dylib)|*.dylib|Todos os Ficheiros (*)|*" -#~ msgid "Only libmp3lame.dylib|libmp3lame.dylib|Dynamic Libraries (*.dylib)|*.dylib|All Files (*)|*" -#~ msgstr "Apenas libmp3lame.dylib|libmp3lame.dylib|Bibliotecas dinâmicas (*.dylib)|*.dylib|Todos os ficheiros (*)|*" +#~ msgid "" +#~ "Only libmp3lame.dylib|libmp3lame.dylib|Dynamic Libraries (*.dylib)|*." +#~ "dylib|All Files (*)|*" +#~ msgstr "" +#~ "Apenas libmp3lame.dylib|libmp3lame.dylib|Bibliotecas dinâmicas (*.dylib)|" +#~ "*.dylib|Todos os ficheiros (*)|*" -#~ msgid "Only libmp3lame.so.0|libmp3lame.so.0|Primary Shared Object files (*.so)|*.so|Extended Libraries (*.so*)|*.so*|All Files (*)|*" -#~ msgstr "Apenas libmp3lame.so.0|libmp3lame.so.0|Ficheiros Primary Shared Object (*.so)|*.so|Extended Libraries (*.so*)|*.so*|Todos os ficheiros (*)|*" +#~ msgid "" +#~ "Only libmp3lame.so.0|libmp3lame.so.0|Primary Shared Object files (*.so)|*." +#~ "so|Extended Libraries (*.so*)|*.so*|All Files (*)|*" +#~ msgstr "" +#~ "Apenas libmp3lame.so.0|libmp3lame.so.0|Ficheiros Primary Shared Object (*." +#~ "so)|*.so|Extended Libraries (*.so*)|*.so*|Todos os ficheiros (*)|*" #~ msgid "AIFF (Apple) signed 16-bit PCM" #~ msgstr "AIFF (Apple) 16 bit PCM com sinal" @@ -21360,8 +22035,13 @@ msgstr "Erro.~%Requer faixa estéreo." #~ msgid "MIDI file (*.mid)|*.mid|Allegro file (*.gro)|*.gro" #~ msgstr "Ficheiro MIDI (*.mid)|*.mid|Ficheiro Allegro (*.gro)|*.gro" -#~ msgid "MIDI and Allegro files (*.mid;*.midi;*.gro)|*.mid;*.midi;*.gro|MIDI files (*.mid;*.midi)|*.mid;*.midi|Allegro files (*.gro)|*.gro|All files|*" -#~ msgstr "Ficheiros MIDI e Allegro (*.mid;*.midi;*.gro)|*.mid;*.midi;*.gro|Ficheiros MIDI (*.mid;*.midi)|*.mid;*.midi|Ficheiros Allegro (*.gro)|*.gro|Todos os ficheiros (*.*)|*.*" +#~ msgid "" +#~ "MIDI and Allegro files (*.mid;*.midi;*.gro)|*.mid;*.midi;*.gro|MIDI files " +#~ "(*.mid;*.midi)|*.mid;*.midi|Allegro files (*.gro)|*.gro|All files|*" +#~ msgstr "" +#~ "Ficheiros MIDI e Allegro (*.mid;*.midi;*.gro)|*.mid;*.midi;*.gro|" +#~ "Ficheiros MIDI (*.mid;*.midi)|*.mid;*.midi|Ficheiros Allegro (*.gro)|*." +#~ "gro|Todos os ficheiros (*.*)|*.*" #~ msgid "F&ocus" #~ msgstr "F&ocar" @@ -21370,10 +22050,12 @@ msgstr "Erro.~%Requer faixa estéreo." #~ msgstr "%s - %s" #~ msgid "" -#~ "This is a debug version of Audacity, with an extra button, 'Output Sourcery'. This will save a\n" +#~ "This is a debug version of Audacity, with an extra button, 'Output " +#~ "Sourcery'. This will save a\n" #~ "C version of the image cache that can be compiled in as a default." #~ msgstr "" -#~ "Isto é uma versão de depuração do Audacity, com um botão extra, 'Output Sourcery'. Este guarda uma\n" +#~ "Isto é uma versão de depuração do Audacity, com um botão extra, 'Output " +#~ "Sourcery'. Este guarda uma\n" #~ "versão em C da imagem em cache que pode ser compilada como predefinição." #~ msgid "Waveform (dB)" @@ -21412,8 +22094,12 @@ msgstr "Erro.~%Requer faixa estéreo." #~ msgid "&Use custom mix" #~ msgstr "&Usar mistura personalizada" -#~ msgid "To use Draw, choose 'Waveform' or 'Waveform (dB)' in the Track Dropdown Menu." -#~ msgstr "Para Desenhar, vá a 'Forma da Onda' ou 'Forma de Onda (dB) no Menu Dropdown." +#~ msgid "" +#~ "To use Draw, choose 'Waveform' or 'Waveform (dB)' in the Track Dropdown " +#~ "Menu." +#~ msgstr "" +#~ "Para Desenhar, vá a 'Forma da Onda' ou 'Forma de Onda (dB) no Menu " +#~ "Dropdown." #~ msgid "Vocal Remover" #~ msgstr "Remover Vocal" @@ -21476,7 +22162,8 @@ msgstr "Erro.~%Requer faixa estéreo." #~ "ficheiros sem perdas, como WAV ou AIFF, em vez de MP3 ou\n" #~ "outros formatos comprimidos. Apenas remove vocais ou outro\n" #~ "áudio que é movimentado para o centro (soa igualmente alto à esquerda\n" -#~ "e à direita). Os vocais podem ser misturados desta maneira. Invertendo um\n" +#~ "e à direita). Os vocais podem ser misturados desta maneira. Invertendo " +#~ "um\n" #~ "canal depois movimentando ambos ao centro cancela qualquer áudio\n" #~ "que foi originalmente centro-colocado, fazendo o inaudível.\n" #~ "Isto pode remover algumas partes do áudio que você quer\n" @@ -21505,7 +22192,8 @@ msgstr "Erro.~%Requer faixa estéreo." #~ "Drop-Down Menu, then run Vocal Remover again.~%" #~ msgstr "" #~ "~%Vocal Remover requer uma desseparada, faixa áudio.~%~\n" -#~ "Se você tiver uma faixa áudio dividida entre canais esquerdo e direito,~%~\n" +#~ "Se você tiver uma faixa áudio dividida entre canais esquerdo e direito,~" +#~ "%~\n" #~ "utilize 'Fazer Faixa Estereo' na faixa~%~\n" #~ "Menu Drop-Down, depois em Vocal Remover de novo.~%" @@ -21557,10 +22245,12 @@ msgstr "Erro.~%Requer faixa estéreo." #~ msgstr "Número de ecos '~a' fora do intervalo válido de 1 a 50.~%~a" #~ msgid "Pitch change '~a' outside valid range -12 to +12 semitones.~%~a" -#~ msgstr "Mudança de Tom'~a' fora do intervalo válido de -12 to +12 semitons.~%~a" +#~ msgstr "" +#~ "Mudança de Tom'~a' fora do intervalo válido de -12 to +12 semitons.~%~a" #~ msgid "Delay time '~a' outside valid range 0 to 10 seconds.~%~a" -#~ msgstr "Tempo de demora '~a' fora do intervalo válido de 0 a 10 segundos.~%~a" +#~ msgstr "" +#~ "Tempo de demora '~a' fora do intervalo válido de 0 a 10 segundos.~%~a" #~ msgid "Delay level '~a' outside valid range -30 to +6 dB.~%~a" #~ msgstr "Nível de demora '~a' fora do intervalo válido -30 a +6 dB.~%~a" @@ -21578,13 +22268,17 @@ msgstr "Erro.~%Requer faixa estéreo." #~ msgstr "Direito" #~ msgid "" -#~ "Latency Correction setting has caused the recorded audio to be hidden before zero.\n" +#~ "Latency Correction setting has caused the recorded audio to be hidden " +#~ "before zero.\n" #~ "Audacity has brought it back to start at zero.\n" -#~ "You may have to use the Time Shift Tool (<---> or F5) to drag the track to the right place." +#~ "You may have to use the Time Shift Tool (<---> or F5) to drag the track " +#~ "to the right place." #~ msgstr "" -#~ "A correção da latência fez com que o áudio gravado esteja oculto antes do ponto zero. \n" +#~ "A correção da latência fez com que o áudio gravado esteja oculto antes do " +#~ "ponto zero. \n" #~ "O Audacity ajustou o áudio de modo a começar no ponto zero. \n" -#~ "Pode ser necessário usar a Ferramenta Mover (<---> ou F5) para arrastar a faixa para o local certo." +#~ "Pode ser necessário usar a Ferramenta Mover (<---> ou F5) para arrastar a " +#~ "faixa para o local certo." #~ msgid "Latency problem" #~ msgstr "Problemas de latência" @@ -21615,14 +22309,26 @@ msgstr "Erro.~%Requer faixa estéreo." #~ msgid "

DarkAudacity is based on Audacity:" #~ msgstr "

DarkAudacity é baseado no Audacity:" -#~ msgid " [[http://www.darkaudacity.com|www.darkaudacity.com]] - for differences between them." -#~ msgstr " [[http://www.darkaudacity.com|www.darkaudacity.com]] - para diferenças entre eles." +#~ msgid "" +#~ " [[http://www.darkaudacity.com|www.darkaudacity.com]] - for differences " +#~ "between them." +#~ msgstr "" +#~ " [[http://www.darkaudacity.com|www.darkaudacity.com]] - para diferenças " +#~ "entre eles." -#~ msgid " email to [[mailto:james@audacityteam.org|james@audacityteam.org]] - for help using DarkAudacity." -#~ msgstr " email para [[mailto:james@audacityteam.org|james@audacityteam.org]] - para ajuda utilizando o DarkAudacity." +#~ msgid "" +#~ " email to [[mailto:james@audacityteam.org|james@audacityteam.org]] - for " +#~ "help using DarkAudacity." +#~ msgstr "" +#~ " email para [[mailto:james@audacityteam.org|james@audacityteam.org]] - " +#~ "para ajuda utilizando o DarkAudacity." -#~ msgid " [[http://www.darkaudacity.com/video.html|Tutorials]] - for getting started with DarkAudacity." -#~ msgstr " [[http://www.darkaudacity.com/video.html|Tutorials]] - para início rápido com o DarkAudacity." +#~ msgid "" +#~ " [[http://www.darkaudacity.com/video.html|Tutorials]] - for getting " +#~ "started with DarkAudacity." +#~ msgstr "" +#~ " [[http://www.darkaudacity.com/video.html|Tutorials]] - para início " +#~ "rápido com o DarkAudacity." #~ msgid "Insert &After" #~ msgstr "&Inserir Após" @@ -21678,8 +22384,12 @@ msgstr "Erro.~%Requer faixa estéreo." #~ msgid "Time Scale" #~ msgstr "Escala de Tempo" -#~ msgid "Your tracks will be mixed down to a single mono channel in the exported file." -#~ msgstr "As suas faixas serão misturadas e reduzidas a um único canal mono no ficheiro exportado." +#~ msgid "" +#~ "Your tracks will be mixed down to a single mono channel in the exported " +#~ "file." +#~ msgstr "" +#~ "As suas faixas serão misturadas e reduzidas a um único canal mono no " +#~ "ficheiro exportado." #~ msgid "kbps" #~ msgstr "kbps" @@ -21701,7 +22411,8 @@ msgstr "Erro.~%Requer faixa estéreo." #~ "Try changing the audio host, recording device and the project sample rate." #~ msgstr "" #~ "Erro ao aceder ao dispositivo de som.\n" -#~ "Por favor, verifique as configurações do dispositivo de gravação e a taxa de amostragem do projeto." +#~ "Por favor, verifique as configurações do dispositivo de gravação e a taxa " +#~ "de amostragem do projeto." #~ msgid "Slider Recording" #~ msgstr "Controlo de Gravação" @@ -21732,12 +22443,14 @@ msgstr "Erro.~%Requer faixa estéreo." #~ msgid "" #~ "One or more external audio files could not be found.\n" -#~ "It is possible they were moved, deleted, or the drive they were on was unmounted.\n" +#~ "It is possible they were moved, deleted, or the drive they were on was " +#~ "unmounted.\n" #~ "Silence is being substituted for the affected audio.\n" #~ "The first detected missing file is:\n" #~ "%s\n" #~ "There may be additional missing files.\n" -#~ "Choose File > Check Dependencies to view a list of locations of the missing files." +#~ "Choose File > Check Dependencies to view a list of locations of the " +#~ "missing files." #~ msgstr "" #~ "Um ou mais ficheiros de áudio externos não foram encontrados.\n" #~ "É possível que tenham sido movidos, apagados, ou o disco onde estavam \n" @@ -21968,14 +22681,20 @@ msgstr "Erro.~%Requer faixa estéreo." #~ msgid "" #~ "You are attempting to overwrite an aliased file that is missing.\n" -#~ " The file cannot be written because the path is needed to restore the original audio to the project.\n" -#~ " Choose File > Check Dependencies to view the locations of all missing files.\n" -#~ " If you still wish to export, please choose a different filename or folder." +#~ " The file cannot be written because the path is needed to " +#~ "restore the original audio to the project.\n" +#~ " Choose File > Check Dependencies to view the locations of " +#~ "all missing files.\n" +#~ " If you still wish to export, please choose a different " +#~ "filename or folder." #~ msgstr "" #~ "Está a tentar sobrepor um ficheiro externo em falta.\n" -#~ " O ficheiro não pode ser escrito pois o caminho é necessário para restaurar o áudio original do projecto. \n" -#~ " Vá a Ficheiro > Verificar Dependências para ver a localização dos ficheiros em falta. \n" -#~ " Se ainda assim desejar exportar, por favor indique uma nova pasta ou nome de ficheiro." +#~ " O ficheiro não pode ser escrito pois o caminho é necessário " +#~ "para restaurar o áudio original do projecto. \n" +#~ " Vá a Ficheiro > Verificar Dependências para ver a " +#~ "localização dos ficheiros em falta. \n" +#~ " Se ainda assim desejar exportar, por favor indique uma nova " +#~ "pasta ou nome de ficheiro." #~ msgid " - L" #~ msgstr " - E" @@ -22020,21 +22739,31 @@ msgstr "Erro.~%Requer faixa estéreo." #~ msgstr ": Tipo de ficheiro incorreto." #~ msgid "" -#~ "When importing uncompressed audio files you can either copy them into the project, or read them directly from their current location (without copying).\n" +#~ "When importing uncompressed audio files you can either copy them into the " +#~ "project, or read them directly from their current location (without " +#~ "copying).\n" #~ "\n" #~ "Your current preference is set to %s.\n" #~ "\n" -#~ "Reading the files directly allows you to play or edit them almost immediately. This is less safe than copying in, because you must retain the files with their original names in their original location.\n" -#~ "File > Check Dependencies will show the original names and location of any files that you are reading directly.\n" +#~ "Reading the files directly allows you to play or edit them almost " +#~ "immediately. This is less safe than copying in, because you must retain " +#~ "the files with their original names in their original location.\n" +#~ "File > Check Dependencies will show the original names and location of " +#~ "any files that you are reading directly.\n" #~ "\n" #~ "How do you want to import the current file(s)?" #~ msgstr "" -#~ "Ao importar ficheiros de áudio sem compressão tanto pode copiá-los para o projecto. como pode lê-los a partir dos ficheiros originais (sem copiar). \n" +#~ "Ao importar ficheiros de áudio sem compressão tanto pode copiá-los para o " +#~ "projecto. como pode lê-los a partir dos ficheiros originais (sem " +#~ "copiar). \n" #~ "\n" #~ "A sua preferência actual está definida para %s. \n" #~ "\n" -#~ "Ler os ficheiros directamente permite reproduzi-los ou editá-los quase imediatamente. Esta forma não é tão segura como copiar, pois tem de manter os ficheiros com o nome e a localização originais. \n" -#~ "A opção Ficheiro > Verificar Dependências mostra os nomes e a localização dos ficheiros que está a ler directamente.\n" +#~ "Ler os ficheiros directamente permite reproduzi-los ou editá-los quase " +#~ "imediatamente. Esta forma não é tão segura como copiar, pois tem de " +#~ "manter os ficheiros com o nome e a localização originais. \n" +#~ "A opção Ficheiro > Verificar Dependências mostra os nomes e a localização " +#~ "dos ficheiros que está a ler directamente.\n" #~ "\n" #~ "Como deseja importar o(s) ficheiro(s)?" @@ -22103,8 +22832,12 @@ msgstr "Erro.~%Requer faixa estéreo." #~ msgid "Show length and center" #~ msgstr "Mostrar comprimento e centro" -#~ msgid "Click to verticaly zoom in, Shift-click to zoom out, Drag to create a particular zoom region." -#~ msgstr "Prima o Botão do Rato para ampliar na vertical. Shift-clique para diminuir. Arraste para criar uma área a ampliar." +#~ msgid "" +#~ "Click to verticaly zoom in, Shift-click to zoom out, Drag to create a " +#~ "particular zoom region." +#~ msgstr "" +#~ "Prima o Botão do Rato para ampliar na vertical. Shift-clique para " +#~ "diminuir. Arraste para criar uma área a ampliar." #~ msgid "Time shifted tracks/clips %s %.02f seconds" #~ msgstr "Faixas/clips de tempo de corte %s %.02f segundos" @@ -22121,8 +22854,17 @@ msgstr "Erro.~%Requer faixa estéreo." #~ msgid "+" #~ msgstr "+" -#~ msgid "If you find a bug or have a suggestion for us, please write, in English, to our [[mailto:feedback@audacityteam.org|feedback address]]. For help, view the tips and tricks on our [[http://wiki.audacityteam.org/|wiki]] or visit our [[http://forum.audacityteam.org/|forum]]." -#~ msgstr "Se encontrar um erro ou tiver uma sugestão, por favor envie-nos a sua mensagem (em Inglês). Para ajuda, consulte os truques e as dicas na nossa wiki ou visite o nosso fórum." +#~ msgid "" +#~ "If you find a bug or have a suggestion for us, please write, in English, " +#~ "to our [[mailto:feedback@audacityteam.org|feedback address]]. For help, " +#~ "view the tips and tricks on our [[http://wiki.audacityteam.org/|wiki]] or " +#~ "visit our [[http://forum.audacityteam.org/|forum]]." +#~ msgstr "" +#~ "Se encontrar um erro ou tiver uma sugestão, por favor envie-nos a sua mensagem (em Inglês). Para " +#~ "ajuda, consulte os truques e as dicas na nossa wiki ou visite o nosso fórum." #~ msgid "" #~ "Internal error in %s at %s line %d.\n" @@ -22241,8 +22983,12 @@ msgstr "Erro.~%Requer faixa estéreo." #~ msgid "Passes" #~ msgstr "Passa" -#~ msgid "A simple, combined compressor and limiter effect for reducing the dynamic range of audio" -#~ msgstr "Um simples, compressor combinado e efeito limitador para reduzir o ruído dinâmico de audio" +#~ msgid "" +#~ "A simple, combined compressor and limiter effect for reducing the dynamic " +#~ "range of audio" +#~ msgstr "" +#~ "Um simples, compressor combinado e efeito limitador para reduzir o ruído " +#~ "dinâmico de audio" #~ msgid "Degree of Leveling:" #~ msgstr "Grau de Nivelamento:" @@ -22486,10 +23232,13 @@ msgstr "Erro.~%Requer faixa estéreo." #~ msgstr "Mostrar cai&xa de diálogo 'Como Obter Ajuda' ao iniciar o programa" #~ msgid "&Always mix all tracks down to Stereo or Mono channel(s)" -#~ msgstr "Sempre mistur&ar e reduzir todas as faixas para canais Estéreo ou Mono" +#~ msgstr "" +#~ "Sempre mistur&ar e reduzir todas as faixas para canais Estéreo ou Mono" #~ msgid "&Use custom mix (for example to export a 5.1 multichannel file)" -#~ msgstr "&Usar mistura personalizada (por ex. para exportar um ficheiro para 5.1 canais)" +#~ msgstr "" +#~ "&Usar mistura personalizada (por ex. para exportar um ficheiro para 5.1 " +#~ "canais)" #~ msgid "When exporting track to an Allegro (.gro) file" #~ msgstr "Ao exportar faixa para formato Allegro (.gro)" @@ -22509,11 +23258,13 @@ msgstr "Erro.~%Requer faixa estéreo." #, fuzzy #~ msgid "&Hardware Playthrough: Listen to input while recording or monitoring" -#~ msgstr "&Reprodução via Hardware: Ouvir enquanto grava ou monitoriza a nova faixa" +#~ msgstr "" +#~ "&Reprodução via Hardware: Ouvir enquanto grava ou monitoriza a nova faixa" #, fuzzy #~ msgid "&Software Playthrough: Listen to input while recording or monitoring" -#~ msgstr "&Reprodução via Software: Ouvir enquanto grava ou monitoriza a nova faixa" +#~ msgstr "" +#~ "&Reprodução via Software: Ouvir enquanto grava ou monitoriza a nova faixa" #, fuzzy #~ msgid "(uncheck when recording computer playback)" @@ -22545,10 +23296,12 @@ msgstr "Erro.~%Requer faixa estéreo." #~ msgstr "Mostrar espectro em tons cin&za" #~ msgid "" -#~ "If 'Load Theme Cache At Startup' is checked, then the Theme Cache will be loaded\n" +#~ "If 'Load Theme Cache At Startup' is checked, then the Theme Cache will be " +#~ "loaded\n" #~ "when the program starts up." #~ msgstr "" -#~ "Se 'Carregar Caixa de Temas no Arranque' estiver marcado, então a Caixa de Temas \n" +#~ "Se 'Carregar Caixa de Temas no Arranque' estiver marcado, então a Caixa " +#~ "de Temas \n" #~ "será carregada ao iniciar o programa." #~ msgid "Load Theme Cache At Startup" @@ -22622,8 +23375,12 @@ msgstr "Erro.~%Requer faixa estéreo." #~ msgid "Welcome to Audacity " #~ msgstr "Bem-vindo ao Audacity " -#~ msgid " For even quicker answers, all the online resources above are searchable." -#~ msgstr "Para respostas mais rápidas, todos os recursos acima mencionados são pesquisáveis. " +#~ msgid "" +#~ " For even quicker answers, all the online resources above are " +#~ "searchable." +#~ msgstr "" +#~ "Para respostas mais rápidas, todos os recursos acima mencionados são " +#~ "pesquisáveis. " #~ msgid "Edit Metadata" #~ msgstr "Editar Metadados" @@ -22827,8 +23584,12 @@ msgstr "Erro.~%Requer faixa estéreo." #~ msgstr "Linha de Tratamento AVX" #, fuzzy -#~ msgid "Most Audio Unit effects have a graphical interface for setting parameter values." -#~ msgstr "Muitos efeitos VST têm uma interface gráfica para definir os valores dos parâmetros." +#~ msgid "" +#~ "Most Audio Unit effects have a graphical interface for setting parameter " +#~ "values." +#~ msgstr "" +#~ "Muitos efeitos VST têm uma interface gráfica para definir os valores dos " +#~ "parâmetros." #, fuzzy #~ msgid "LV2 Effects Module" @@ -22904,7 +23665,8 @@ msgstr "Erro.~%Requer faixa estéreo." #~ msgstr "Configuração para Exportar Sem Compressão" #~ msgid "(Not all combinations of headers and encodings are possible.)" -#~ msgstr "(Nem todas as combinações de cabeçalhos e codificações são possíveis.)" +#~ msgstr "" +#~ "(Nem todas as combinações de cabeçalhos e codificações são possíveis.)" #~ msgid "There are no options for this format.\n" #~ msgstr "Não há opções disponíveis para este formato. \n" @@ -22914,8 +23676,12 @@ msgstr "Erro.~%Requer faixa estéreo." #~ msgstr "O seu ficheiro será exportado para GSM 6.10 WAV.\n" #, fuzzy -#~ msgid "If you need more control over the export format please use the \"%s\" format." -#~ msgstr "Se necessita ter maior controlo sobre o formato de exportação, use o formato 'Outros ficheiros sem compressão'." +#~ msgid "" +#~ "If you need more control over the export format please use the \"%s\" " +#~ "format." +#~ msgstr "" +#~ "Se necessita ter maior controlo sobre o formato de exportação, use o " +#~ "formato 'Outros ficheiros sem compressão'." #~ msgid "Ctrl-Left-Drag" #~ msgstr "Ctrl-Arrastar à Esquerda" @@ -22940,8 +23706,12 @@ msgstr "Erro.~%Requer faixa estéreo." #~ msgid "Command-line options supported:" #~ msgstr "Opções disponíveis na linha de comando:" -#~ msgid "In addition, specify the name of an audio file or Audacity project to open it." -#~ msgstr "Indique o nome de um ficheiro de áudio ou projecto do Audacity para o abrir." +#~ msgid "" +#~ "In addition, specify the name of an audio file or Audacity project to " +#~ "open it." +#~ msgstr "" +#~ "Indique o nome de um ficheiro de áudio ou projecto do Audacity para o " +#~ "abrir." #~ msgid "Stereo to Mono Effect not found" #~ msgstr "Efeito Estéreo para Mono não encontrado" @@ -22949,8 +23719,10 @@ msgstr "Erro.~%Requer faixa estéreo." #~ msgid "Cursor: %d Hz (%s) = %d dB Peak: %d Hz (%s) = %.1f dB" #~ msgstr "Cursor: %d Hz (%s) = %d dB Pico: %d Hz (%s) = %.1f dB" -#~ msgid "Cursor: %.4f sec (%d Hz) (%s) = %f, Peak: %.4f sec (%d Hz) (%s) = %.3f" -#~ msgstr "Cursor: %.4f seg (%d Hz) (%s) = %f, Pico: %.4f seg (%d Hz) (%s) = %.3f" +#~ msgid "" +#~ "Cursor: %.4f sec (%d Hz) (%s) = %f, Peak: %.4f sec (%d Hz) (%s) = %.3f" +#~ msgstr "" +#~ "Cursor: %.4f seg (%d Hz) (%s) = %f, Pico: %.4f seg (%d Hz) (%s) = %.3f" #~ msgid "Plot Spectrum" #~ msgstr "Desenhar o Espectro" @@ -23152,8 +23924,12 @@ msgstr "Erro.~%Requer faixa estéreo." #~ msgid "Creating Noise Profile" #~ msgstr "A Criar Perfil do Ruído" -#~ msgid "Applied effect: %s remove dc offset = %s, normalize amplitude = %s, stereo independent %s" -#~ msgstr "Efeito aplicado: %s remover compensação dc = %s, normalizar amplitude = %s, estéreo independente %s" +#~ msgid "" +#~ "Applied effect: %s remove dc offset = %s, normalize amplitude = %s, " +#~ "stereo independent %s" +#~ msgstr "" +#~ "Efeito aplicado: %s remover compensação dc = %s, normalizar amplitude = " +#~ "%s, estéreo independente %s" #~ msgid "true" #~ msgstr "verdadeiro" @@ -23164,14 +23940,21 @@ msgstr "Erro.~%Requer faixa estéreo." #~ msgid "Normalize..." #~ msgstr "Normalizar ..." -#~ msgid "Applied effect: %s stretch factor = %f times, time resolution = %f seconds" -#~ msgstr "Efeito aplicado: %s factor de extensão = %f segundos, resolução do tempo = %f" +#~ msgid "" +#~ "Applied effect: %s stretch factor = %f times, time resolution = %f seconds" +#~ msgstr "" +#~ "Efeito aplicado: %s factor de extensão = %f segundos, resolução do tempo " +#~ "= %f" #~ msgid "Stretching with Paulstretch" #~ msgstr "A estender com Paulstretch" -#~ msgid "Applied effect: %s %d stages, %.0f%% wet, frequency = %.1f Hz, start phase = %.0f deg, depth = %d, feedback = %.0f%%" -#~ msgstr "Efeito aplicado: %s %d etapas, %.0f%% molhado, freq. = %.1f Hz, fase inicial = %.0f graus, prof. = %d, retorno = %.0f%%" +#~ msgid "" +#~ "Applied effect: %s %d stages, %.0f%% wet, frequency = %.1f Hz, start " +#~ "phase = %.0f deg, depth = %d, feedback = %.0f%%" +#~ msgstr "" +#~ "Efeito aplicado: %s %d etapas, %.0f%% molhado, freq. = %.1f Hz, fase " +#~ "inicial = %.0f graus, prof. = %d, retorno = %.0f%%" #~ msgid "Phaser..." #~ msgstr "Faseador ..." @@ -23272,8 +24055,12 @@ msgstr "Erro.~%Requer faixa estéreo." #~ msgid "Changing Tempo/Pitch" #~ msgstr "A Alterar Tempo/Tom" -#~ msgid "Applied effect: Generate %s wave %s, frequency = %.2f Hz, amplitude = %.2f, %.6lf seconds" -#~ msgstr "Efeito aplicado: Gerada %s onda %s, frequência = %.2f Hz, amplitude = %.2f, %.6lf segundos" +#~ msgid "" +#~ "Applied effect: Generate %s wave %s, frequency = %.2f Hz, amplitude = " +#~ "%.2f, %.6lf seconds" +#~ msgstr "" +#~ "Efeito aplicado: Gerada %s onda %s, frequência = %.2f Hz, amplitude = " +#~ "%.2f, %.6lf segundos" # chirp=trilo. no audacity ficou 'tons programaveis' # porquê? alterei para trilo @@ -23308,28 +24095,43 @@ msgstr "Erro.~%Requer faixa estéreo." #~ msgstr "Procurar de Novo por Efeitos" #~ msgid "To improve Audacity startup, a search for VST effects is performed " -#~ msgstr "Para melhorar o início do Audacity, é feita uma análise aos efeitos VST " +#~ msgstr "" +#~ "Para melhorar o início do Audacity, é feita uma análise aos efeitos VST " #~ msgid "once and relevant information is recorded. When you add VST effects " #~ msgstr "e é guardada informação relevante. Quando adicionar efeitos VST " #~ msgid "to your system, you need to tell Audacity to rescan so the new " -#~ msgstr "ao seu sistema, precisa de indicar ao Audacity para voltar a analisar para que " +#~ msgstr "" +#~ "ao seu sistema, precisa de indicar ao Audacity para voltar a analisar " +#~ "para que " #~ msgid "&Rescan effects on next launch" #~ msgstr "&Analisar efeitos na próxima abertura" -#~ msgid "This effect does not support a textual interface. At this time, you may not use this effect on Linux." -#~ msgstr "Este efeito não suporta um interface de texto. Neste momento, não pode usar este efeito em Linux." +#~ msgid "" +#~ "This effect does not support a textual interface. At this time, you may " +#~ "not use this effect on Linux." +#~ msgstr "" +#~ "Este efeito não suporta um interface de texto. Neste momento, não pode " +#~ "usar este efeito em Linux." #~ msgid "VST Effect" #~ msgstr "Efeito VST" -#~ msgid "This effect does not support a textual interface. Falling back to graphical display." -#~ msgstr "Este efeito não suporta um interface de texto. A retroceder para um mostrador gráfico." +#~ msgid "" +#~ "This effect does not support a textual interface. Falling back to " +#~ "graphical display." +#~ msgstr "" +#~ "Este efeito não suporta um interface de texto. A retroceder para um " +#~ "mostrador gráfico." -#~ msgid "Applied effect: %s frequency = %.1f Hz, start phase = %.0f deg, depth = %.0f%%, resonance = %.1f, frequency offset = %.0f%%" -#~ msgstr "Efeito aplicado: %s frequência = %.1f Hz, fase inicial = %.0f graus, prof. = %.0f%%, ressonância = %.1f, frequência de offset = %.0f%%" +#~ msgid "" +#~ "Applied effect: %s frequency = %.1f Hz, start phase = %.0f deg, depth = " +#~ "%.0f%%, resonance = %.1f, frequency offset = %.0f%%" +#~ msgstr "" +#~ "Efeito aplicado: %s frequência = %.1f Hz, fase inicial = %.0f graus, " +#~ "prof. = %.0f%%, ressonância = %.1f, frequência de offset = %.0f%%" #~ msgid "Wahwah..." #~ msgstr "WahWah ..." @@ -23343,8 +24145,12 @@ msgstr "Erro.~%Requer faixa estéreo." #~ msgid "Author: " #~ msgstr "Autor: " -#~ msgid "Sorry, Plug-in Effects cannot be performed on stereo tracks where the individual channels of the track do not match." -#~ msgstr "Desculpe, os efeitos de Plug-ins não podem ser aplicados em faixas estéreo cujas características dos canais diferem." +#~ msgid "" +#~ "Sorry, Plug-in Effects cannot be performed on stereo tracks where the " +#~ "individual channels of the track do not match." +#~ msgstr "" +#~ "Desculpe, os efeitos de Plug-ins não podem ser aplicados em faixas " +#~ "estéreo cujas características dos canais diferem." #~ msgid "Unable to load plug-in %s" #~ msgstr "Não foi possível carregar o plugin %s" @@ -23399,7 +24205,8 @@ msgstr "Erro.~%Requer faixa estéreo." #~ msgstr "Iniciar o Ajuste Automático do Nível de Gravação" #~ msgid "Automated Recording Level Adjustment stopped as requested by user." -#~ msgstr "Ajuste Automático do Nível de Gravação parado a pedido do utilizador." +#~ msgstr "" +#~ "Ajuste Automático do Nível de Gravação parado a pedido do utilizador." #~ msgid "Vertical Ruler" #~ msgstr "Régua Vertical" @@ -23411,7 +24218,8 @@ msgstr "Erro.~%Requer faixa estéreo." #~ msgstr "&Manual (no navegador Internet)" #~ msgid "Multi-Tool Mode: Ctrl-P for Mouse and Keyboard Preferences" -#~ msgstr "Modo Multi-Ferramenta: Ctrl-P para as Preferências do Teclado e Rato." +#~ msgstr "" +#~ "Modo Multi-Ferramenta: Ctrl-P para as Preferências do Teclado e Rato." #~ msgid "To RPM" #~ msgstr "Para RPM" @@ -23429,7 +24237,8 @@ msgstr "Erro.~%Requer faixa estéreo." #~ msgstr "A Executar Efeito: " #~ msgid "Both channels of a stereo track must be the same sample rate." -#~ msgstr "Ambos os canais duma faixa estéreo devem ter a mesma taxa de amostragem." +#~ msgstr "" +#~ "Ambos os canais duma faixa estéreo devem ter a mesma taxa de amostragem." #~ msgid "Both channels of a stereo track must be the same length." #~ msgstr "Ambos os canais duma faixa estéreo devem ter o mesmo tamanho." @@ -23439,7 +24248,8 @@ msgstr "Erro.~%Requer faixa estéreo." #~ msgstr "Mostrar Efeitos Áudio Unit no Modo Gráfico" #~ msgid "&Rescan VST effects next time Audacity is started" -#~ msgstr "Procu&rar novamente por efeitos VST da próxima vez que iniciar o Audacity" +#~ msgstr "" +#~ "Procu&rar novamente por efeitos VST da próxima vez que iniciar o Audacity" #~ msgid "'New' is like 'Ask', but asks just once." #~ msgstr "'Novo' é parecido com 'Perguntar', mas só perguntará uma vez." @@ -23450,8 +24260,11 @@ msgstr "Erro.~%Requer faixa estéreo." #~ msgid "Input Meter" #~ msgstr "Mostrador do Sinal de Entrada" -#~ msgid "Recovering a project will not change any files on disk before you save it." -#~ msgstr "A recuperação de um projecto não altera qualquer ficheiro até que este seja guardado." +#~ msgid "" +#~ "Recovering a project will not change any files on disk before you save it." +#~ msgstr "" +#~ "A recuperação de um projecto não altera qualquer ficheiro até que este " +#~ "seja guardado." #~ msgid "Do Not Recover" #~ msgstr "Não recuperar" @@ -23512,12 +24325,17 @@ msgstr "Erro.~%Requer faixa estéreo." #~ msgid "" #~ "GStreamer was configured in preferences and successfully loaded before,\n" -#~ " but this time Audacity failed to load it at startup.\n" -#~ " You may want to go back to Preferences > Libraries and re-configure it." +#~ " but this time Audacity failed to load it at " +#~ "startup.\n" +#~ " You may want to go back to Preferences > Libraries " +#~ "and re-configure it." #~ msgstr "" -#~ "O GStreamer foi configurado nas preferências e carregado, com sucesso, anteriormente,\n" -#~ " mas desta vez o Audacity não conseguiu carregá-lo ao iniciar.\n" -#~ " Talvez queira voltar a Preferências > Bibliotecas e reconfigurá-lo. " +#~ "O GStreamer foi configurado nas preferências e carregado, com sucesso, " +#~ "anteriormente,\n" +#~ " mas desta vez o Audacity não conseguiu carregá-lo " +#~ "ao iniciar.\n" +#~ " Talvez queira voltar a Preferências > Bibliotecas e " +#~ "reconfigurá-lo. " #~ msgid "GStreamer startup failed" #~ msgstr "Falha ao iniciar o GStreamer" @@ -23529,19 +24347,27 @@ msgstr "Erro.~%Requer faixa estéreo." #~ msgstr "A&pagar Áudio ou Rótulos" #~ msgid "" -#~ "Audacity compressed project files (.aup) save your work in a smaller, compressed (.ogg) format. \n" -#~ "Compressed project files are a good way to transmit your project online, because they are much smaller. \n" -#~ "To open a compressed project takes longer than usual, as it imports each compressed track. \n" +#~ "Audacity compressed project files (.aup) save your work in a smaller, " +#~ "compressed (.ogg) format. \n" +#~ "Compressed project files are a good way to transmit your project online, " +#~ "because they are much smaller. \n" +#~ "To open a compressed project takes longer than usual, as it imports each " +#~ "compressed track. \n" #~ "\n" #~ "Most other programs can't open Audacity project files.\n" -#~ "When you want to save a file that can be opened by other programs, select one of the\n" +#~ "When you want to save a file that can be opened by other programs, select " +#~ "one of the\n" #~ "Export commands." #~ msgstr "" -#~ "Os ficheiros de projecto do Audacity (.AUP) comprimidos guardam todo o projecto no formato .ogg. \n" -#~ "É uma boa forma de partilhar o seu projecto na rede, pelo ao seu tamanho reduzido. \n" -#~ "Abrir ficheiros comprimidos demora mais tempo que o normal, pois é necessário descomprimir \n" +#~ "Os ficheiros de projecto do Audacity (.AUP) comprimidos guardam todo o " +#~ "projecto no formato .ogg. \n" +#~ "É uma boa forma de partilhar o seu projecto na rede, pelo ao seu tamanho " +#~ "reduzido. \n" +#~ "Abrir ficheiros comprimidos demora mais tempo que o normal, pois é " +#~ "necessário descomprimir \n" #~ "todas as faixas primeiro.\n" -#~ "A maioria dos outros programas não consegue abrir ficheiros de projecto do Audacity.\n" +#~ "A maioria dos outros programas não consegue abrir ficheiros de projecto " +#~ "do Audacity.\n" #~ "Se quer guardar um ficheiro que seja reconhecido por outros programas \n" #~ "seleccione um dos comandos de Exportar." @@ -23550,11 +24376,13 @@ msgstr "Erro.~%Requer faixa estéreo." #~ "\n" #~ "Saving a project creates a file that only Audacity can open.\n" #~ "\n" -#~ "To save an audio file for other programs, use one of the \"File > Export\" commands.\n" +#~ "To save an audio file for other programs, use one of the \"File > Export" +#~ "\" commands.\n" #~ msgstr "" #~ "Está a guardar um Ficheiro de Projecto do Audacity (.aup) \n" #~ "\n" -#~ "Guardar um projecto cria um ficheiro que apenas o Audacity consegue abrir. \n" +#~ "Guardar um projecto cria um ficheiro que apenas o Audacity consegue " +#~ "abrir. \n" #~ "\n" #~ "Para guardar um ficheiro de áudio para ser usado por outros programas, \n" #~ "utilize um dos comandos disponíveis em \"Ficheiro > Exportar\". \n" @@ -23588,7 +24416,9 @@ msgstr "Erro.~%Requer faixa estéreo." #~ " Taxa de compressão deve ser pelo menos 1:1" #~ msgid "Enable these Modules (if present), next time Audacity is started" -#~ msgstr "Activar estes Módulos (se presentes), da próxima vez que o Audacity iniciar" +#~ msgstr "" +#~ "Activar estes Módulos (se presentes), da próxima vez que o Audacity " +#~ "iniciar" #~ msgid "mod-&script-pipe" #~ msgstr "mod-&script-pipe" @@ -23652,8 +24482,12 @@ msgstr "Erro.~%Requer faixa estéreo." #~ msgid "Plugins 1 to %i" #~ msgstr "Plugins 1 a %i" -#~ msgid "

You do not appear to have 'help' installed on your computer.
Please view or download it online." -#~ msgstr "

A ajuda não está instalada neste computador.
Por favor veja ou transfira a versão online." +#~ msgid "" +#~ "

You do not appear to have 'help' installed on your computer.
" +#~ "Please view or download it online." +#~ msgstr "" +#~ "

A ajuda não está instalada neste computador.
Por favor veja ou transfira a versão online." #~ msgid "Open Me&tadata Editor..." #~ msgstr "Abrir Editor de Me&tadados ..." diff --git a/locale/ru.po b/locale/ru.po index ac92bd685..316e543ee 100644 --- a/locale/ru.po +++ b/locale/ru.po @@ -1587,7 +1587,7 @@ msgstr "Не найдено устройство проигрывания MIDI #: src/AutoRecoveryDialog.cpp msgid "Automatic Crash Recovery" -msgstr "Автовосстановление после сбоя" +msgstr "Восстановление после сбоя" #: src/AutoRecoveryDialog.cpp msgid "" @@ -1616,11 +1616,11 @@ msgstr "Имя" #: src/AutoRecoveryDialog.cpp msgid "&Discard Selected" -msgstr "О&тменить выбор" +msgstr "&Удалить выбранные" #: src/AutoRecoveryDialog.cpp msgid "&Recover Selected" -msgstr "&Восстановить выбор" +msgstr "&Восстановить выбранные" #: src/AutoRecoveryDialog.cpp msgid "&Skip" @@ -17975,11 +17975,11 @@ msgstr "Не удаётся открыть ссылку для загрузки #. i18n-hint: Title of the app update notice dialog. #: src/update/UpdateNoticeDialog.cpp msgid "App update checking" -msgstr "Поиск обновлений приложения" +msgstr "Проверка обновлений приложения" #: src/update/UpdateNoticeDialog.cpp msgid "To stay up to date, you will receive an in-app notification whenever there is a new version of Audacity available to download." -msgstr "Чтобы быть в курсе событий, вы будете получать уведомления в приложении всякий раз, когда будет доступна для загрузки новая версия Audacity." +msgstr "Чтобы всегда использовать самую последнюю версию приложения, вы будете получать уведомления в приложении всякий раз, когда будет доступна новая версия Audacity." #: src/update/UpdateNoticeDialog.cpp msgid "In order to protect your privacy, Audacity does not collect any personal information. However, app update checking does require network access." @@ -17993,17 +17993,17 @@ msgstr "Вы можете отключить проверку обновлени #. i18n-hint: Title of the app update notice dialog. #: src/update/UpdateNoticeDialog.cpp msgid "App updates" -msgstr "П&роверить обновления" +msgstr "Проверка обновлений" #. i18n-hint: a page in the Preferences dialog; use same name #: src/update/UpdateNoticeDialog.cpp msgid "Preferences > Application" -msgstr "Настройни > Приложение" +msgstr "Настройки > Приложение" #: src/update/UpdatePopupDialog.cpp msgctxt "update dialog" msgid "Update Audacity" -msgstr "Обновить Audacity" +msgstr "Обновление Audacity" #: src/update/UpdatePopupDialog.cpp msgctxt "update dialog" diff --git a/locale/tr.po b/locale/tr.po index 2f3ce701c..edfc3fd0f 100644 --- a/locale/tr.po +++ b/locale/tr.po @@ -3,7 +3,7 @@ # This file is distributed under the same license as the audacity package. # # Translators: -# Kaya Zeren , 2020-2021 +# Kaya Zeren , 2011-2021 # Serkan ÖNDER , 2021 # Yaşar Çiv , 2019-2020 msgid "" @@ -20,6 +20,60 @@ msgstr "" "Language: tr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#. i18n-hint C++ programming assertion +#: crashreports/crashreporter/CrashReportApp.cpp +#, c-format +msgid "Exception code 0x%x" +msgstr "Hata kodu 0x%x" + +#. i18n-hint C++ programming assertion +#: crashreports/crashreporter/CrashReportApp.cpp +msgid "Unknown exception" +msgstr "Hata bilinmiyor" + +#: crashreports/crashreporter/CrashReportApp.cpp +msgid "Unknown error" +msgstr "Hata bilinmiyor" + +#: crashreports/crashreporter/CrashReportApp.cpp +msgid "Problem Report for Audacity" +msgstr "Audacity için sorun bildirimi" + +#: crashreports/crashreporter/CrashReportApp.cpp +#: src/widgets/ErrorReportDialog.cpp +msgid "" +"Click \"Send\" to submit the report to Audacity. This information is " +"collected anonymously." +msgstr "" +"Bildirimi Audacity ekibine göndermek için \"Gönder\" üzerine tıklayın. " +"Toplanan bilgiler anonim tutulur." + +#: crashreports/crashreporter/CrashReportApp.cpp +#: src/widgets/ErrorReportDialog.cpp +msgid "Problem details" +msgstr "Sorun ayrıntıları" + +#: crashreports/crashreporter/CrashReportApp.cpp src/Tags.cpp +#: src/prefs/MousePrefs.cpp src/widgets/ErrorReportDialog.cpp +msgid "Comments" +msgstr "Yorumlar" + +#: crashreports/crashreporter/CrashReportApp.cpp +#: src/widgets/ErrorReportDialog.cpp +msgctxt "crash reporter button" +msgid "&Don't send" +msgstr "&Gönderilmesin" + +#: crashreports/crashreporter/CrashReportApp.cpp +#: src/widgets/ErrorReportDialog.cpp +msgctxt "crash reporter button" +msgid "&Send" +msgstr "&Gönderilsin" + +#: crashreports/crashreporter/CrashReportApp.cpp +msgid "Failed to send crash report" +msgstr "Çökme bildirimi gönderilemedi" + #: libraries/lib-strings/Internat.cpp msgid "Unable to determine" msgstr "Belirlenemedi" @@ -55,145 +109,6 @@ msgstr "Sade" msgid "System" msgstr "Sistem" -#: libraries/lib-strings/UnusedStrings.h -msgid "Problem Report for Audacity" -msgstr "Audacity için Sorun Bildirimi" - -#: libraries/lib-strings/UnusedStrings.h -msgid "" -"Click \"Send\" to submit the report to Audacity. This information is " -"collected anonymously." -msgstr "Bildirimi Audacity ekibine göndermek için \"Gönder\" üzerine tıklayın. Toplanan bilgiler anonim tutulur." - -#: libraries/lib-strings/UnusedStrings.h -msgid "Problem details" -msgstr "Sorun ayrıntıları" - -#: libraries/lib-strings/UnusedStrings.h src/Tags.cpp src/prefs/MousePrefs.cpp -msgid "Comments" -msgstr "Yorumlar" - -#: libraries/lib-strings/UnusedStrings.h -msgctxt "crash reporter button" -msgid "&Send" -msgstr "&Gönder" - -#: libraries/lib-strings/UnusedStrings.h -msgctxt "crash reporter button" -msgid "&Don't send" -msgstr "&Gönderme" - -#. i18n-hint C++ programming exception -#: libraries/lib-strings/UnusedStrings.h -#, c-format -msgid "Exception code 0x%x" -msgstr "Hata kodu 0x%x" - -#. i18n-hint C++ programming exception -#: libraries/lib-strings/UnusedStrings.h -msgid "Unknown exception" -msgstr "Hata bilinmiyor" - -#. i18n-hint C++ programming assertion -#: libraries/lib-strings/UnusedStrings.h -msgid "Unknown assertion" -msgstr "İddia bilinmiyor" - -#: libraries/lib-strings/UnusedStrings.h -msgid "Unknown error" -msgstr "Hata bilinmiyor" - -#: libraries/lib-strings/UnusedStrings.h -msgid "Failed to send crash report" -msgstr "Kilitlenme raporu gönderilemedi" - -#. i18n-hint Scheme refers to a color scheme for spectrogram colors -#: libraries/lib-strings/UnusedStrings.h -msgctxt "spectrum prefs" -msgid "Sche&me" -msgstr "Şe&ma" - -#. i18n-hint Choice of spectrogram colors -#: libraries/lib-strings/UnusedStrings.h -msgctxt "spectrum prefs" -msgid "Color (default)" -msgstr "Renk (varsayılan)" - -#. i18n-hint Choice of spectrogram colors -#: libraries/lib-strings/UnusedStrings.h -msgctxt "spectrum prefs" -msgid "Color (classic)" -msgstr "Renk (klasik)" - -#. i18n-hint Choice of spectrogram colors -#: libraries/lib-strings/UnusedStrings.h -msgctxt "spectrum prefs" -msgid "Grayscale" -msgstr "Gri tonlamalı" - -#. i18n-hint Choice of spectrogram colors -#: libraries/lib-strings/UnusedStrings.h -msgctxt "spectrum prefs" -msgid "Inverse grayscale" -msgstr "Ters gri tonlamalı" - -#: libraries/lib-strings/UnusedStrings.h -msgctxt "update dialog" -msgid "Update Audacity" -msgstr "Audacity uygulamasını güncelle" - -#: libraries/lib-strings/UnusedStrings.h -msgctxt "update dialog" -msgid "&Skip" -msgstr "A&tla" - -#: libraries/lib-strings/UnusedStrings.h -msgctxt "update dialog" -msgid "&Install update" -msgstr "&Güncellemeyi kur" - -#: libraries/lib-strings/UnusedStrings.h -msgctxt "update dialog" -msgid "Changelog" -msgstr "Değişim günlüğü" - -#: libraries/lib-strings/UnusedStrings.h -msgctxt "update dialog" -msgid "Read more on GitHub" -msgstr "GitHub üzerinden bilgi alın" - -#: libraries/lib-strings/UnusedStrings.h -msgctxt "update dialog" -msgid "Error checking for update" -msgstr "Güncelleme denetlenirken sorun çıktı" - -#: libraries/lib-strings/UnusedStrings.h -msgctxt "update dialog" -msgid "Unable to connect to Audacity update server." -msgstr "Audacity güncelleme sunucusu ile bağlantı kurulamadı." - -#: libraries/lib-strings/UnusedStrings.h -msgctxt "update dialog" -msgid "Update data was corrupted." -msgstr "Güncelleme verileri bozuk." - -#: libraries/lib-strings/UnusedStrings.h -msgctxt "update dialog" -msgid "Error downloading update." -msgstr "Güncelleme indirilirken sorun çıktı." - -#: libraries/lib-strings/UnusedStrings.h -msgctxt "update dialog" -msgid "Can't open the Audacity download link." -msgstr "Audacity indirme bağlantısı açılamadı." - -#. i18n-hint Substitution of version number for %s. -#: libraries/lib-strings/UnusedStrings.h -#, c-format -msgctxt "update dialog" -msgid "Audacity %s is available!" -msgstr "Audacity %s yayınlanmış!" - #: modules/mod-null/ModNullCallback.cpp msgid "1st Experimental Command..." msgstr "1. deneysel komut..." @@ -381,7 +296,7 @@ msgstr "Kod değiştirildi. Emin misiniz?" #: modules/mod-nyq-bench/NyqBench.cpp msgid "Untitled" -msgstr "Başlıksız" +msgstr "Adsız" #: modules/mod-nyq-bench/NyqBench.cpp msgid "Nyquist Effect Workbench - " @@ -1099,14 +1014,16 @@ msgstr "" "Daha ileri bölge kilitlenemiyor\n" "projenin sonu." -#: src/AdornedRulerPanel.cpp src/AudioIO.cpp src/ProjectAudioManager.cpp -#: src/TimerRecordDialog.cpp src/effects/Contrast.cpp src/effects/Effect.cpp -#: src/effects/Generator.cpp src/effects/nyquist/Nyquist.cpp -#: src/export/ExportFFmpeg.cpp src/export/ExportMP2.cpp -#: src/menus/TrackMenus.cpp src/menus/TransportMenus.cpp -#: src/prefs/DirectoriesPrefs.cpp src/prefs/KeyConfigPrefs.cpp +#: src/AdornedRulerPanel.cpp src/AudioIO.cpp src/FileNames.cpp +#: src/ProjectAudioManager.cpp src/TimerRecordDialog.cpp +#: src/effects/Contrast.cpp src/effects/Effect.cpp src/effects/Generator.cpp +#: src/effects/nyquist/Nyquist.cpp src/export/ExportFFmpeg.cpp +#: src/export/ExportMP2.cpp src/menus/TrackMenus.cpp +#: src/menus/TransportMenus.cpp src/prefs/DirectoriesPrefs.cpp +#: src/prefs/KeyConfigPrefs.cpp #: src/tracks/playabletrack/wavetrack/ui/WaveTrackControls.cpp #: src/widgets/FileDialog/gtk/FileDialogPrivate.cpp +#: src/widgets/UnwritableLocationErrorDialog.cpp #: plug-ins/eq-xml-to-txt-converter.ny msgid "Error" msgstr "Sorun" @@ -1396,7 +1313,7 @@ msgstr "" #: src/AudacityFileConfig.cpp src/ShuttleGui.cpp src/commands/HelpCommand.cpp #: src/effects/Equalization.cpp src/export/Export.cpp src/menus/HelpMenus.cpp -#: src/widgets/MultiDialog.cpp +#: src/widgets/ErrorReportDialog.cpp src/widgets/MultiDialog.cpp msgid "Help" msgstr "Yardım" @@ -4638,14 +4555,6 @@ msgstr "" msgid "Error Saving Copy of Project" msgstr "Projenin kopyası kaydedilirken sorun çıktı" -#: src/ProjectFileManager.cpp -msgid "Can't open new empty project" -msgstr "Yeni ve boş bir proje açılamadı" - -#: src/ProjectFileManager.cpp -msgid "Error opening a new empty project" -msgstr "Yeni ve boş bir proje açılırken sorun çıktı" - #: src/ProjectFileManager.cpp src/effects/nyquist/Nyquist.cpp msgid "Select one or more files" msgstr "Bir ya da daha fazla dosya seçin" @@ -4659,12 +4568,6 @@ msgstr "%s başka bir pencerede zaten açık." msgid "Error Opening Project" msgstr "Proje açılırken sorun çıktı" -#: src/ProjectFileManager.cpp -msgid "" -"Project resides on FAT formatted drive.\n" -"Copy it to another drive to open it." -msgstr "Proje FAT olarak biçimlendirilmiş bir sürücü üzerinde.\nProjeyi açabilmek için başka bir sürücüye kopyalayın." - #: src/ProjectFileManager.cpp msgid "" "You are trying to open an automatically created backup file.\n" @@ -4702,6 +4605,14 @@ msgstr "" msgid "Error Opening File or Project" msgstr "Dosya ya da proje açılırken sorun çıktı" +#: src/ProjectFileManager.cpp +msgid "" +"Project resides on FAT formatted drive.\n" +"Copy it to another drive to open it." +msgstr "" +"Proje FAT olarak biçimlendirilmiş bir sürücü üzerinde.\n" +"Projeyi açabilmek için başka bir sürücüye kopyalayın." + #: src/ProjectFileManager.cpp msgid "Project was recovered" msgstr "Proje kurtarıldı" @@ -5183,7 +5094,7 @@ msgstr "Etkinleşme düzeyi (dB):" msgid "Welcome to Audacity!" msgstr "Audacity uygulamasına hoş geldiniz!" -#: src/SplashDialog.cpp +#: src/SplashDialog.cpp src/update/UpdatePopupDialog.cpp msgid "Don't show this again at start up" msgstr "Bu pencere açılışta bir daha görüntülenmesin" @@ -6111,7 +6022,8 @@ msgstr "Sürükle" msgid "Panel" msgstr "Pano" -#: src/commands/DragCommand.cpp +#: src/commands/DragCommand.cpp src/prefs/ApplicationPrefs.cpp +#: src/update/UpdateNoticeDialog.cpp msgid "Application" msgstr "Uygulama" @@ -6773,9 +6685,11 @@ msgstr "Spektral ayarlar kullanılsın" msgid "Spectral Select" msgstr "Spektral seçim" -#: src/commands/SetTrackInfoCommand.cpp -msgid "Gray Scale" -msgstr "Gri Ölçek" +#. i18n-hint Scheme refers to a color scheme for spectrogram colors +#: src/commands/SetTrackInfoCommand.cpp src/prefs/SpectrumPrefs.cpp +msgctxt "spectrum prefs" +msgid "Sche&me" +msgstr "Şe&ma" #: src/commands/SetTrackInfoCommand.cpp msgid "Set Track" @@ -10800,7 +10714,7 @@ msgstr "Ses komut satırı kodlayıcısı kullanılarak dışa aktarılıyor" msgid "Command Output" msgstr "Komut çıktısı" -#: src/export/ExportCL.cpp +#: src/export/ExportCL.cpp src/update/UpdateNoticeDialog.cpp msgid "&OK" msgstr "&Tamam" @@ -14912,10 +14826,10 @@ msgstr "Oynatılıyor" #. i18n-hint: These are strings for the status bar, and indicate whether #. Audacity -#. is playing or recording or stopped, and whether it is paused. -#: src/menus/TransportMenus.cpp src/prefs/DevicePrefs.cpp -#: src/prefs/MidiIOPrefs.cpp src/prefs/RecordingPrefs.cpp -#: src/prefs/RecordingPrefs.h src/toolbars/ControlToolBar.cpp +#. is playing or recording or stopped, and whether it is paused; +#. progressive verb form +#: src/menus/TransportMenus.cpp src/prefs/MidiIOPrefs.cpp +#: src/toolbars/ControlToolBar.cpp msgid "Recording" msgstr "Kayıt" @@ -15277,6 +15191,30 @@ msgstr "Dalga şekli çözülüyor" msgid "%s %2.0f%% complete. Click to change task focal point." msgstr "%s %2.0f %% tamamlandı. Görev odaklanma noktasını değiştirmek için tıklayın." +#: src/prefs/ApplicationPrefs.cpp +msgid "Preferences for Application" +msgstr "Uygulama ayarları" + +#. i18n-hint: Title for the update notifications panel in the preferences +#. dialog. +#: src/prefs/ApplicationPrefs.cpp +msgid "Update notifications" +msgstr "Güncelleme bildirimleri" + +#. i18n-hint: Check-box title that configures periodic updates checking. +#: src/prefs/ApplicationPrefs.cpp +msgctxt "application preferences" +msgid "&Check for updates" +msgstr "&Güncelleme denetimi" + +#: src/prefs/ApplicationPrefs.cpp +msgid "" +"App update checking requires network access. In order to protect your " +"privacy, Audacity does not store any personal information." +msgstr "" +"Uygulama güncelleme denetimi özelliği için ağ erişimi gereklidir. Audacity, " +"kiisel gizliliğinizi korumak için herhangi bir kişisel bilgiyi kaydetmez." + #: src/prefs/BatchPrefs.cpp src/prefs/BatchPrefs.h msgid "Batch" msgstr "Yığın" @@ -15325,6 +15263,13 @@ msgstr "Oynatma" msgid "&Device:" msgstr "Ay&gıt:" +#. i18n-hint: modifier as in "Recording preferences", not progressive verb +#: src/prefs/DevicePrefs.cpp src/prefs/RecordingPrefs.cpp +#: src/prefs/RecordingPrefs.h +msgctxt "preference" +msgid "Recording" +msgstr "Kayıt" + #: src/prefs/DevicePrefs.cpp src/prefs/MidiIOPrefs.cpp msgid "De&vice:" msgstr "Aygı&t:" @@ -15368,6 +15313,7 @@ msgstr "2 (çift kanallı)" #. i18n-hint: Directories, also called directories, in computer file systems #: src/prefs/DirectoriesPrefs.cpp src/prefs/DirectoriesPrefs.h +#: src/widgets/UnwritableLocationErrorDialog.cpp msgid "Directories" msgstr "Klasörler" @@ -15764,7 +15710,7 @@ msgstr "Sistem ve Audacity teması karıştırı&lsın" #. i18n-hint: RTL stands for 'Right to Left' #: src/prefs/GUIPrefs.cpp msgid "Use mostly Left-to-Right layouts in RTL languages" -msgstr "Sağdan Sola Yazılan dillerde genellikle Soldan Sağa görünümler kullanılsın" +msgstr "Sağdan sola yazılan dillerde genellikle soldan sağa görünümler kullanılsın" #: src/prefs/GUIPrefs.cpp msgid "Never use comma as decimal point" @@ -16647,6 +16593,30 @@ msgstr "ERB (eşdeğer dikdörtgen bant genişliği)" msgid "Period" msgstr "Aralık" +#. i18n-hint: New color scheme for spectrograms +#: src/prefs/SpectrogramSettings.cpp +msgctxt "spectrum prefs" +msgid "Color (default)" +msgstr "Renk (varsayılan)" + +#. i18n-hint: Classic color scheme(from theme) for spectrograms +#: src/prefs/SpectrogramSettings.cpp +msgctxt "spectrum prefs" +msgid "Color (classic)" +msgstr "Renk (klasik)" + +#. i18n-hint: Grayscale color scheme for spectrograms +#: src/prefs/SpectrogramSettings.cpp +msgctxt "spectrum prefs" +msgid "Grayscale" +msgstr "Gri tonlamalı" + +#. i18n-hint: Inverse grayscale color scheme for spectrograms +#: src/prefs/SpectrogramSettings.cpp +msgctxt "spectrum prefs" +msgid "Inverse grayscale" +msgstr "Ters gri tonlamalı" + #: src/prefs/SpectrogramSettings.cpp msgid "Frequencies" msgstr "Frekanslar" @@ -16730,10 +16700,6 @@ msgstr "&Aralık (dB):" msgid "High &boost (dB/dec):" msgstr "&Yüksek güçlendirme (dB/dec):" -#: src/prefs/SpectrumPrefs.cpp -msgid "Gra&yscale" -msgstr "&Gri Tonlamalı" - #: src/prefs/SpectrumPrefs.cpp msgid "Algorithm" msgstr "Algoritma" @@ -17164,7 +17130,8 @@ msgstr "Dalga şekli dB a&ralığı:" #. i18n-hint: These are strings for the status bar, and indicate whether #. Audacity -#. is playing or recording or stopped, and whether it is paused. +#. is playing or recording or stopped, and whether it is paused; +#. progressive verb form #: src/toolbars/ControlToolBar.cpp msgid "Stopped" msgstr "Durduruldu" @@ -18430,6 +18397,100 @@ msgstr "" msgid "Left=Zoom In, Right=Zoom Out, Middle=Normal" msgstr "Sol=Yakınlaştır, Sağ=Uzaklaştır, Orta=Normal" +#: src/update/UpdateManager.cpp +msgctxt "update dialog" +msgid "Error checking for update" +msgstr "Güncelleme denetlenirken sorun çıktı" + +#: src/update/UpdateManager.cpp +msgctxt "update dialog" +msgid "Unable to connect to Audacity update server." +msgstr "Audacity güncelleme sunucusu ile bağlantı kurulamadı." + +#: src/update/UpdateManager.cpp +msgctxt "update dialog" +msgid "Update data was corrupted." +msgstr "Güncelleme verileri bozuk." + +#: src/update/UpdateManager.cpp +msgctxt "update dialog" +msgid "Error downloading update." +msgstr "Güncelleme indirilirken sorun çıktı." + +#: src/update/UpdateManager.cpp +msgctxt "update dialog" +msgid "Can't open the Audacity download link." +msgstr "Audacity indirme bağlantısı açılamadı." + +#. i18n-hint: Title of the app update notice dialog. +#: src/update/UpdateNoticeDialog.cpp +msgid "App update checking" +msgstr "Uygulama güncelleme denetimi" + +#: src/update/UpdateNoticeDialog.cpp +msgid "" +"To stay up to date, you will receive an in-app notification whenever there " +"is a new version of Audacity available to download." +msgstr "" +"Güncel kalmanız amacıyla yeni bir Audacity sürümü yayınlandığında uygulama " +"içinde bir bildirim görüntülenecek." + +#: src/update/UpdateNoticeDialog.cpp +msgid "" +"In order to protect your privacy, Audacity does not collect any personal " +"information. However, app update checking does require network access." +msgstr "" +"Audacity, kişisel gizliliğinizi korumak için herhangi bir kişisel bilgi " +"toplamaz. Bununla birlikte, uygulama güncelleme denetimi özelliği için ağ erişimi " +"gereklidir." + +#: src/update/UpdateNoticeDialog.cpp +#, c-format +msgid "You can turn off app update checking at any time in %s." +msgstr "Uygulama güncelleme denetimini istediğiniz zaman %s kapatabilirsiniz." + +#. i18n-hint: Title of the app update notice dialog. +#: src/update/UpdateNoticeDialog.cpp +msgid "App updates" +msgstr "Uygulama güncellemeleri" + +#. i18n-hint: a page in the Preferences dialog; use same name +#: src/update/UpdateNoticeDialog.cpp +msgid "Preferences > Application" +msgstr "Ayarlar > Uygulama" + +#: src/update/UpdatePopupDialog.cpp +msgctxt "update dialog" +msgid "Update Audacity" +msgstr "Audacity uygulamasını güncelle" + +#: src/update/UpdatePopupDialog.cpp +msgctxt "update dialog" +msgid "&Skip" +msgstr "A&tla" + +#: src/update/UpdatePopupDialog.cpp +msgctxt "update dialog" +msgid "&Install update" +msgstr "&Güncellemeyi kur" + +#. i18n-hint Substitution of version number for %s. +#: src/update/UpdatePopupDialog.cpp +#, c-format +msgctxt "update dialog" +msgid "Audacity %s is available!" +msgstr "Audacity %s yayınlanmış!" + +#: src/update/UpdatePopupDialog.cpp +msgctxt "update dialog" +msgid "Changelog" +msgstr "Değişiklik günlüğü" + +#: src/update/UpdatePopupDialog.cpp +msgctxt "update dialog" +msgid "Read more on GitHub" +msgstr "GitHub üzerinden bilgi alın" + #: src/widgets/AButton.cpp msgid "(disabled)" msgstr "(devre dışı)" @@ -19019,6 +19080,33 @@ msgstr "Kapatmak istediğinize emin misiniz?" msgid "Confirm Close" msgstr "Kapatmayı onayla" +#. i18n-hint: %s is replaced with a directory path. +#: src/widgets/UnwritableLocationErrorDialog.cpp +#, c-format +msgid "Unable to write files to directory: %s." +msgstr "Dosyalar klasöre yazılamadı: %s." + +#. i18n-hint: This message describes the error in the Error dialog. +#: src/widgets/UnwritableLocationErrorDialog.cpp +msgid "" +"Please check that the directory exists, has the necessary permissions, and " +"the drive isn't full." +msgstr "" +"Lütfen klasörün var ve gerekli izinlere sahip olduğunu ve sürücüde boş alan " +"olduğunu denetleyin." + +#. i18n-hint: %s is replaced with 'Preferences > Directories'. +#: src/widgets/UnwritableLocationErrorDialog.cpp +#, c-format +msgid "You can change the directory in %s." +msgstr "%s içindeki klasörü değiştirebilirsiniz." + +#. i18n-hint: Hyperlink title that opens Preferences dialog on Directories +#. page. +#: src/widgets/UnwritableLocationErrorDialog.cpp +msgid "Preferences > Directories" +msgstr "Ayarlar > Klasörler" + #: src/widgets/Warning.cpp msgid "Don't show this warning again" msgstr "Bu uyarı bir daha görüntülenmesin" diff --git a/locale/vi.po b/locale/vi.po index ea95300c3..e1a6bab3f 100644 --- a/locale/vi.po +++ b/locale/vi.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Audacity Team # This file is distributed under the same license as the audacity package. -# +# # Translators: # brad freedom , 2020-2021 # hong cuong , 2021 @@ -10,67 +10,69 @@ # Nguyen Mien , 2020-2021 msgid "" msgstr "" -"Project-Id-Version: audacity 3.0.3\n" +"Project-Id-Version: Audacity\n" "Report-Msgid-Bugs-To: audacity-translation@lists.sourceforge.net\n" "POT-Creation-Date: 2021-07-15 12:48-0400\n" -"PO-Revision-Date: 2021-06-11 23:25+0000\n" -"Last-Translator: Transifex Bot <>\n" +"PO-Revision-Date: 2021-07-17 02:25+0000\n" +"Last-Translator: brad freedom \n" "Language-Team: Vietnamese (http://www.transifex.com/klyok/audacity/language/vi/)\n" -"Language: vi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: vi\n" "Plural-Forms: nplurals=1; plural=0;\n" #. i18n-hint C++ programming assertion #: crashreports/crashreporter/CrashReportApp.cpp #, c-format msgid "Exception code 0x%x" -msgstr "" +msgstr "mã loại trừ 0x %x" #. i18n-hint C++ programming assertion #: crashreports/crashreporter/CrashReportApp.cpp msgid "Unknown exception" -msgstr "" +msgstr "loại trừ không xác định" #: crashreports/crashreporter/CrashReportApp.cpp msgid "Unknown error" -msgstr "" +msgstr "lỗi không xác định" #: crashreports/crashreporter/CrashReportApp.cpp msgid "Problem Report for Audacity" -msgstr "" +msgstr "báo cáo vấn đề cho Audacity" #: crashreports/crashreporter/CrashReportApp.cpp #: src/widgets/ErrorReportDialog.cpp -msgid "Click \"Send\" to submit the report to Audacity. This information is collected anonymously." -msgstr "" +msgid "" +"Click \"Send\" to submit the report to Audacity. This information is " +"collected anonymously." +msgstr "bấm \"gửi\" để gửi báo cáo cho Audacity. thông tin này sẽ được gửi đi dưới dạng ẩn danh." #: crashreports/crashreporter/CrashReportApp.cpp #: src/widgets/ErrorReportDialog.cpp msgid "Problem details" -msgstr "" +msgstr "chi tiết lỗi" #: crashreports/crashreporter/CrashReportApp.cpp src/Tags.cpp #: src/prefs/MousePrefs.cpp src/widgets/ErrorReportDialog.cpp msgid "Comments" -msgstr "Ghi chú" +msgstr "Ghi ch" #: crashreports/crashreporter/CrashReportApp.cpp #: src/widgets/ErrorReportDialog.cpp msgctxt "crash reporter button" msgid "&Don't send" -msgstr "" +msgstr "&không gửi" #: crashreports/crashreporter/CrashReportApp.cpp #: src/widgets/ErrorReportDialog.cpp msgctxt "crash reporter button" msgid "&Send" -msgstr "" +msgstr "&gửi" #: crashreports/crashreporter/CrashReportApp.cpp msgid "Failed to send crash report" -msgstr "" +msgstr "không gửi được báo cáo sự cố" #: libraries/lib-strings/Internat.cpp msgid "Unable to determine" @@ -109,11 +111,11 @@ msgstr "Hệ thống" #: modules/mod-null/ModNullCallback.cpp msgid "1st Experimental Command..." -msgstr "" +msgstr "lệnh thực nghiệm đầu tiên..." #: modules/mod-null/ModNullCallback.cpp msgid "2nd Experimental Command" -msgstr "" +msgstr "lệnh thực nghiệm thứ 2" #: modules/mod-nyq-bench/NyqBench.cpp msgid "&Nyquist Workbench..." @@ -246,7 +248,8 @@ msgstr "Tập lệnh chưa lưu." #: src/ProjectHistory.cpp src/SqliteSampleBlock.cpp src/WaveClip.cpp #: src/WaveTrack.cpp src/export/Export.cpp src/export/ExportCL.cpp #: src/export/ExportMultiple.cpp src/import/RawAudioGuess.cpp -#: src/menus/EditMenus.cpp src/prefs/KeyConfigPrefs.cpp src/widgets/Warning.cpp +#: src/menus/EditMenus.cpp src/prefs/KeyConfigPrefs.cpp +#: src/widgets/Warning.cpp msgid "Warning" msgstr "Cảnh báo" @@ -275,7 +278,8 @@ msgid "(C) 2009 by Leland Lucius" msgstr "(C) 2009 by Leland Lucius" #: modules/mod-nyq-bench/NyqBench.cpp -msgid "External Audacity module which provides a simple IDE for writing effects." +msgid "" +"External Audacity module which provides a simple IDE for writing effects." msgstr "Mô-đun ngoài của Audacity cung cấp bộ IDE đơn giản về hiểu ứng chữ viết." #: modules/mod-nyq-bench/NyqBench.cpp @@ -463,91 +467,106 @@ msgstr "Dừng Tập lệnh" msgid "No revision identifier was provided" msgstr "Không có nhận dạng sửa đổi nào được cung cấp." -#. i18n-hint: For "About Audacity..." credits, substituting a person's proper name +#. i18n-hint: For "About Audacity..." credits, substituting a person's proper +#. name #: src/AboutDialog.cpp #, c-format msgid "%s, system administration" msgstr "%s, điều hành hệ thống" -#. i18n-hint: For "About Audacity..." credits, substituting a person's proper name +#. i18n-hint: For "About Audacity..." credits, substituting a person's proper +#. name #: src/AboutDialog.cpp #, c-format msgid "%s, co-founder and developer" msgstr "%s, đồng sáng lập và phát triển" -#. i18n-hint: For "About Audacity..." credits, substituting a person's proper name +#. i18n-hint: For "About Audacity..." credits, substituting a person's proper +#. name #: src/AboutDialog.cpp #, c-format msgid "%s, developer" msgstr "%s, lập trình phát triển" -#. i18n-hint: For "About Audacity..." credits, substituting a person's proper name +#. i18n-hint: For "About Audacity..." credits, substituting a person's proper +#. name #: src/AboutDialog.cpp #, c-format msgid "%s, developer and support" -msgstr "" +msgstr "%s, nhà phát triển và hỗ trợ" -#. i18n-hint: For "About Audacity..." credits, substituting a person's proper name +#. i18n-hint: For "About Audacity..." credits, substituting a person's proper +#. name #: src/AboutDialog.cpp #, c-format msgid "%s, documentation and support" msgstr "%stài liệu và hỗ trợ" -#. i18n-hint: For "About Audacity..." credits, substituting a person's proper name +#. i18n-hint: For "About Audacity..." credits, substituting a person's proper +#. name #: src/AboutDialog.cpp #, c-format msgid "%s, QA tester, documentation and support" -msgstr "" +msgstr "%s, bộ test QA. tài liệu và hổ trợ" -#. i18n-hint: For "About Audacity..." credits, substituting a person's proper name +#. i18n-hint: For "About Audacity..." credits, substituting a person's proper +#. name #: src/AboutDialog.cpp #, c-format msgid "%s, documentation and support, French" msgstr "%stài liệu và hỗ trợ, tiếng Pháp" -#. i18n-hint: For "About Audacity..." credits, substituting a person's proper name +#. i18n-hint: For "About Audacity..." credits, substituting a person's proper +#. name #: src/AboutDialog.cpp #, c-format msgid "%s, quality assurance" msgstr "%s, giám sát chất lượng" -#. i18n-hint: For "About Audacity..." credits, substituting a person's proper name +#. i18n-hint: For "About Audacity..." credits, substituting a person's proper +#. name #: src/AboutDialog.cpp #, c-format msgid "%s, accessibility advisor" msgstr "%s, cố vấn truy cập" -#. i18n-hint: For "About Audacity..." credits, substituting a person's proper name +#. i18n-hint: For "About Audacity..." credits, substituting a person's proper +#. name #: src/AboutDialog.cpp #, c-format msgid "%s, graphic artist" msgstr "%s, nghệ sỹ đồ họa" -#. i18n-hint: For "About Audacity..." credits, substituting a person's proper name +#. i18n-hint: For "About Audacity..." credits, substituting a person's proper +#. name #: src/AboutDialog.cpp #, c-format msgid "%s, composer" msgstr "%s, soạn nhạc" -#. i18n-hint: For "About Audacity..." credits, substituting a person's proper name +#. i18n-hint: For "About Audacity..." credits, substituting a person's proper +#. name #: src/AboutDialog.cpp #, c-format msgid "%s, tester" msgstr "%s, kiểm tra thử phần mềm" -#. i18n-hint: For "About Audacity..." credits, substituting a person's proper name +#. i18n-hint: For "About Audacity..." credits, substituting a person's proper +#. name #: src/AboutDialog.cpp #, c-format msgid "%s, Nyquist plug-ins" msgstr "%s, Plug-ins - Điện toán Nyquist" -#. i18n-hint: For "About Audacity..." credits, substituting a person's proper name +#. i18n-hint: For "About Audacity..." credits, substituting a person's proper +#. name #: src/AboutDialog.cpp #, c-format msgid "%s, web developer" msgstr "%s, phát triển trang mạng" -#. i18n-hint: For "About Audacity..." credits, substituting a person's proper name +#. i18n-hint: For "About Audacity..." credits, substituting a person's proper +#. name #: src/AboutDialog.cpp #, c-format msgid "%s, graphics" @@ -564,7 +583,8 @@ msgstr "%s (bao gồm %s, %s, %s, %s và %s)" msgid "About %s" msgstr "Về %s" -#. i18n-hint: In most languages OK is to be translated as OK. It appears on a button. +#. i18n-hint: In most languages OK is to be translated as OK. It appears on a +#. button. #: src/AboutDialog.cpp src/Dependencies.cpp src/SplashDialog.cpp #: src/effects/nyquist/Nyquist.cpp src/widgets/MultiDialog.cpp msgid "OK" @@ -574,7 +594,9 @@ msgstr "OK" #. second %s will be "volunteers", fourth "available" #: src/AboutDialog.cpp #, c-format -msgid "%s is a free program written by a worldwide team of %s. %s is %s for Windows, Mac, and GNU/Linux (and other Unix-like systems)." +msgid "" +"%s is a free program written by a worldwide team of %s. %s is %s for " +"Windows, Mac, and GNU/Linux (and other Unix-like systems)." msgstr "%s là phần mềm miễn phí được viết bởi nhóm trên toàn thế giới. %s. %s là %s cho Windows, Mac và GNU / Linux (và các hệ thống giống Unix khác)." #. i18n-hint: substitutes into "a worldwide team of %s" @@ -590,7 +612,9 @@ msgstr "sẵn sàng" #. i18n-hint first and third %s will be "forum", second "wiki" #: src/AboutDialog.cpp #, c-format -msgid "If you find a bug or have a suggestion for us, please write, in English, to our %s. For help, view the tips and tricks on our %s or visit our %s." +msgid "" +"If you find a bug or have a suggestion for us, please write, in English, to " +"our %s. For help, view the tips and tricks on our %s or visit our %s." msgstr "Nếu bạn tìm thấy lỗi hoặc có gợi ý dành cho chúng tôi, hãy viết bằng tiếng anh tới %s. Để nhận sự giúp đỡ, xem gợi ý hoặc thủ thật hãy xem %s, hoặc thăm trang mạng %s." #. i18n-hint substitutes into "write to our %s" @@ -626,7 +650,9 @@ msgstr "

" #. i18n-hint: The program's name substitutes for %s #: src/AboutDialog.cpp #, c-format -msgid "%s the free, open source, cross-platform software for recording and editing sounds." +msgid "" +"%s the free, open source, cross-platform software for recording and editing " +"sounds." msgstr "%sphần mềm miễn phí, mã nguồn mở, đa nền tảng để ghi âm và chỉnh sửa âm thanh." #: src/AboutDialog.cpp @@ -696,7 +722,7 @@ msgstr "%schương trình đã đăng ký bản quyền %s1999-2021 của nhóm #: src/AboutDialog.cpp #, c-format msgid "The name %s is a registered trademark." -msgstr "" +msgstr "Tựa tên %s đã được đăng ký thương hiệu." #: src/AboutDialog.cpp msgid "Build Information" @@ -706,8 +732,8 @@ msgstr "Thông tin biên dịch" msgid "Enabled" msgstr "Đã bật" -#: src/AboutDialog.cpp src/PluginManager.cpp src/export/ExportFFmpegDialogs.cpp -#: src/prefs/ModulePrefs.cpp +#: src/AboutDialog.cpp src/PluginManager.cpp +#: src/export/ExportFFmpegDialogs.cpp src/prefs/ModulePrefs.cpp msgid "Disabled" msgstr "Đã Tắt" @@ -854,17 +880,20 @@ msgid "PRIVACY POLICY" msgstr "" #: src/AboutDialog.cpp -msgid "App update checking and error reporting require network access. These features are optional." +msgid "" +"App update checking and error reporting require network access. These " +"features are optional." msgstr "" #. i18n-hint: %s will be replaced with "our Privacy Policy" #: src/AboutDialog.cpp src/prefs/ApplicationPrefs.cpp #: src/update/UpdateNoticeDialog.cpp -#, fuzzy, c-format +#, c-format msgid "See %s for more info." -msgstr "Chọn một hoặc nhiều tập tin âm thanh" +msgstr "" -#. i18n-hint: Title of hyperlink to the privacy policy. This is an object of "See". +#. i18n-hint: Title of hyperlink to the privacy policy. This is an object of +#. "See". #: src/AboutDialog.cpp src/prefs/ApplicationPrefs.cpp #: src/update/UpdateNoticeDialog.cpp msgid "our Privacy Policy" @@ -891,7 +920,6 @@ msgstr "Thời gian biểu" #. i18n-hint: These commands assist the user in finding a sound by ear. ... #. "Scrubbing" is variable-speed playback, ... #. "Seeking" is normal speed playback but with skips -#. #: src/AdornedRulerPanel.cpp msgid "Click or drag to begin Seek" msgstr "Nhấp chuột và kéo để Seek (tua ngắt quãng)" @@ -899,7 +927,6 @@ msgstr "Nhấp chuột và kéo để Seek (tua ngắt quãng)" #. i18n-hint: These commands assist the user in finding a sound by ear. ... #. "Scrubbing" is variable-speed playback, ... #. "Seeking" is normal speed playback but with skips -#. #: src/AdornedRulerPanel.cpp msgid "Click or drag to begin Scrub" msgstr "Nhấp chuột và kéo để Scrub (tua rê chuột)" @@ -907,7 +934,6 @@ msgstr "Nhấp chuột và kéo để Scrub (tua rê chuột)" #. i18n-hint: These commands assist the user in finding a sound by ear. ... #. "Scrubbing" is variable-speed playback, ... #. "Seeking" is normal speed playback but with skips -#. #: src/AdornedRulerPanel.cpp msgid "Click & move to Scrub. Click & drag to Seek." msgstr "Nhấp chuột & rê chuột để Scrub (tua rê). Nhấp & kéo thả để Seek (tua ngắt quãng)" @@ -915,7 +941,6 @@ msgstr "Nhấp chuột & rê chuột để Scrub (tua rê). Nhấp & kéo thả #. i18n-hint: These commands assist the user in finding a sound by ear. ... #. "Scrubbing" is variable-speed playback, ... #. "Seeking" is normal speed playback but with skips -#. #: src/AdornedRulerPanel.cpp msgid "Move to Seek" msgstr "Rê chuột để Seek (tua rê)" @@ -923,7 +948,6 @@ msgstr "Rê chuột để Seek (tua rê)" #. i18n-hint: These commands assist the user in finding a sound by ear. ... #. "Scrubbing" is variable-speed playback, ... #. "Seeking" is normal speed playback but with skips -#. #: src/AdornedRulerPanel.cpp msgid "Move to Scrub" msgstr "Rê chuột để Scrub (tua ngắt quãng)" @@ -976,9 +1000,7 @@ msgstr "Ghim đầu đánh dấu" msgid "" "Cannot lock region beyond\n" "end of project." -msgstr "" -"Không thể khóa được vùng tua nhạc nằm ngoài \n" -"kết thúc của dự án." +msgstr "Không thể khóa được vùng tua nhạc nằm ngoài \nkết thúc của dự án." #: src/AdornedRulerPanel.cpp src/AudioIO.cpp src/FileNames.cpp #: src/ProjectAudioManager.cpp src/TimerRecordDialog.cpp @@ -1008,10 +1030,7 @@ msgid "" "Reset Preferences?\n" "\n" "This is a one-time question, after an 'install' where you asked to have the Preferences reset." -msgstr "" -"Cài lại Cài đặt Ưu tiên? \n" -"\n" -"Câu hỏi này chỉ được thực hiện một lần sau khi \"cài đặt\" xong, khi bạn được hỏi để cài đặt lại Cài đặt Uu tiên" +msgstr "Cài lại Cài đặt Ưu tiên? \n\nCâu hỏi này chỉ được thực hiện một lần sau khi \"cài đặt\" xong, khi bạn được hỏi để cài đặt lại Cài đặt Uu tiên" #: src/AudacityApp.cpp msgid "Reset Audacity Preferences" @@ -1023,10 +1042,7 @@ msgid "" "%s could not be found.\n" "\n" "It has been removed from the list of recent files." -msgstr "" -"%s không được tìm thấy.\n" -"\n" -"Tệp tin đã bị loại bỏ trong danh sách các tệp gần đây." +msgstr "%s không được tìm thấy.\n\nTệp tin đã bị loại bỏ trong danh sách các tệp gần đây." #: src/AudacityApp.cpp msgid "SQLite library failed to initialize. Audacity cannot continue." @@ -1071,21 +1087,18 @@ msgid "" "Audacity could not find a safe place to store temporary files.\n" "Audacity needs a place where automatic cleanup programs won't delete the temporary files.\n" "Please enter an appropriate directory in the preferences dialog." -msgstr "" -"Audacity đã không tìm thấy nơi an toàn nào để chứa các tệp tin tạm thời.\n" -"Audacity cần tìm vùng đĩa trong máy không bị xóa bỏ bởi phần mềm dọn rác để lưu tệp tin tạm thời.\n" -"Hãy nhập vào một địa chỉ thư mục trong các hộp thoại cài đặt ưu tiên." +msgstr "Audacity đã không tìm thấy nơi an toàn nào để chứa các tệp tin tạm thời.\nAudacity cần tìm vùng đĩa trong máy không bị xóa bỏ bởi phần mềm dọn rác để lưu tệp tin tạm thời.\nHãy nhập vào một địa chỉ thư mục trong các hộp thoại cài đặt ưu tiên." #: src/AudacityApp.cpp msgid "" "Audacity could not find a place to store temporary files.\n" "Please enter an appropriate directory in the preferences dialog." -msgstr "" -"Audacity không tìm được nơi nào để chứa các tập tin tạm thời.\n" -"Xin hãy nhập vào địa chỉ thích hợp và chọn thư mục chứa các tập tin tạm thời." +msgstr "Audacity không tìm được nơi nào để chứa các tập tin tạm thời.\nXin hãy nhập vào địa chỉ thích hợp và chọn thư mục chứa các tập tin tạm thời." #: src/AudacityApp.cpp -msgid "Audacity is now going to exit. Please launch Audacity again to use the new temporary directory." +msgid "" +"Audacity is now going to exit. Please launch Audacity again to use the new " +"temporary directory." msgstr "Đang thoát Audacity. Thư mục tạm thời mới sẽ được dùng trong lần chạy kế tiếp." #: src/AudacityApp.cpp @@ -1093,18 +1106,13 @@ msgid "" "Running two copies of Audacity simultaneously may cause\n" "data loss or cause your system to crash.\n" "\n" -msgstr "" -"Chạy 2 tiến trình Audacity cùng lúc có thể gây ra \n" -"mất dữ liệu hay làm hỏng hệ thống của bạn.\n" -"\n" +msgstr "Chạy 2 tiến trình Audacity cùng lúc có thể gây ra \nmất dữ liệu hay làm hỏng hệ thống của bạn.\n\n" #: src/AudacityApp.cpp msgid "" "Audacity was not able to lock the temporary files directory.\n" "This folder may be in use by another copy of Audacity.\n" -msgstr "" -"Audacity không thể sử dụng thư mục chứa các tệp tạm thời,\n" -"có lẽ thư mục này đang được sử dùng bỡi 1 bản Audacity khác.\n" +msgstr "Audacity không thể sử dụng thư mục chứa các tệp tạm thời,\ncó lẽ thư mục này đang được sử dùng bỡi 1 bản Audacity khác.\n" #: src/AudacityApp.cpp msgid "Do you still want to start Audacity?" @@ -1122,9 +1130,7 @@ msgstr "Hệ thống phát hiện ra một bản Audacity khác đang chạy.\n" msgid "" "Use the New or Open commands in the currently running Audacity\n" "process to open multiple projects simultaneously.\n" -msgstr "" -"Dùng lệnh Mới hoặc Mở trên bản Audacity đang chạy \n" -"để mở nhiều dự án cùng lúc.\n" +msgstr "Dùng lệnh Mới hoặc Mở trên bản Audacity đang chạy \nđể mở nhiều dự án cùng lúc.\n" #: src/AudacityApp.cpp msgid "Audacity is already running" @@ -1136,11 +1142,7 @@ msgid "" "\n" "This is likely due to a resource shortage\n" "and a reboot may be required." -msgstr "" -"Không thể tìm ra tín hiệu.\n" -"\n" -"Điều này có thể vì thiếu tài nguyên.\n" -"Bạn có thể thử khởi động lại chương trình." +msgstr "Không thể tìm ra tín hiệu.\n\nĐiều này có thể vì thiếu tài nguyên.\nBạn có thể thử khởi động lại chương trình." #: src/AudacityApp.cpp msgid "Audacity Startup Failure" @@ -1152,11 +1154,7 @@ msgid "" "\n" "This is likely due to a resource shortage\n" "and a reboot may be required." -msgstr "" -"Không thể tạo ra tín hiệu.\n" -"\n" -"Điều này có thể vì thiếu tài nguyên.\n" -"Bạn có thể thử khởi động lại chương trình." +msgstr "Không thể tạo ra tín hiệu.\n\nĐiều này có thể vì thiếu tài nguyên.\nBạn có thể thử khởi động lại chương trình." #: src/AudacityApp.cpp msgid "" @@ -1164,11 +1162,7 @@ msgid "" "\n" "This is likely due to a resource shortage\n" "and a reboot may be required." -msgstr "" -"Không thể khóa tín hiệu.\n" -"\n" -"Điều này có thể vì thiếu tài nguyên.\n" -"Bạn có thể thử khởi động lại chương trình." +msgstr "Không thể khóa tín hiệu.\n\nĐiều này có thể vì thiếu tài nguyên.\nBạn có thể thử khởi động lại chương trình." #: src/AudacityApp.cpp msgid "" @@ -1176,11 +1170,7 @@ msgid "" "\n" "This is likely due to a resource shortage\n" "and a reboot may be required." -msgstr "" -"Không thể tìm ra tín hiệu máy chủ.\n" -"\n" -"Điều này có thể vì thiếu tài nguyên.\n" -"Bạn có thể thử khởi động lại chương trình." +msgstr "Không thể tìm ra tín hiệu máy chủ.\n\nĐiều này có thể vì thiếu tài nguyên.\nBạn có thể thử khởi động lại chương trình." #: src/AudacityApp.cpp msgid "" @@ -1188,11 +1178,7 @@ msgid "" "\n" "This is likely due to a resource shortage\n" "and a reboot may be required." -msgstr "" -"Máy chủ Audacity IPC bị lỗi khởi động. \n" -"\n" -"Điều này có thể vì thiếu tài nguyên.\n" -"Bạn có thể thử khởi động lại chương trình." +msgstr "Máy chủ Audacity IPC bị lỗi khởi động. \n\nĐiều này có thể vì thiếu tài nguyên.\nBạn có thể thử khởi động lại chương trình." #: src/AudacityApp.cpp msgid "An unrecoverable error has occurred during startup" @@ -1231,10 +1217,7 @@ msgid "" "associated with Audacity. \n" "\n" "Associate them, so they open on double-click?" -msgstr "" -"Các tập tin dự án (.aup3) chưa được liên kết với Audacity\n" -"\n" -"Hãy liên kết chúng lại để mở chúng bằng Audacity chỉ với một lần click đúp?" +msgstr "Các tập tin dự án (.aup3) chưa được liên kết với Audacity\n\nHãy liên kết chúng lại để mở chúng bằng Audacity chỉ với một lần click đúp?" #: src/AudacityApp.cpp msgid "Audacity Project Files" @@ -1261,16 +1244,7 @@ msgid "" "You can attempt to correct the issue and then click \"Retry\" to continue.\n" "\n" "If you choose to \"Quit Audacity\", your project may be left in an unsaved state which will be recovered the next time you open it." -msgstr "" -"Không thể truy cập vào tập tin cấu trúc :\n" -"\n" -"\t%s\n" -"\n" -"Có nhiều nguyên nhân dẫn đến điều này, nhưng có vẻ như là ổ đĩa của bạn đã đầy hoặc bạn không có quyền ghi lên tệp này. bạn có thể click vào nút \"trợ giúp\" để có nhiều thông tin hơn.\n" -"\n" -"Bạn cũng có thể thử điều chỉnh thông tin rồi click vào nút \"thử lại\" để tiếp tục.\n" -"\n" -"Nếu bạn click vào \"thoát Audacity. dự án của bạn sẽ được tạm thời lưu vào hệ thống, nó sẽ được khôi phục ở lần tiếp theo bạn mở Audacity." +msgstr "Không thể truy cập vào tập tin cấu trúc :\n\n\t%s\n\nCó nhiều nguyên nhân dẫn đến điều này, nhưng có vẻ như là ổ đĩa của bạn đã đầy hoặc bạn không có quyền ghi lên tệp này. bạn có thể click vào nút \"trợ giúp\" để có nhiều thông tin hơn.\n\nBạn cũng có thể thử điều chỉnh thông tin rồi click vào nút \"thử lại\" để tiếp tục.\n\nNếu bạn click vào \"thoát Audacity. dự án của bạn sẽ được tạm thời lưu vào hệ thống, nó sẽ được khôi phục ở lần tiếp theo bạn mở Audacity." #: src/AudacityFileConfig.cpp src/ShuttleGui.cpp src/commands/HelpCommand.cpp #: src/effects/Equalization.cpp src/export/Export.cpp src/menus/HelpMenus.cpp @@ -1344,9 +1318,7 @@ msgstr "Phát hiện lỗi khởi động lớp midi i/o.\n" msgid "" "You will not be able to play midi.\n" "\n" -msgstr "" -"Bạn sẽ không thể chạy được midi.\n" -"\n" +msgstr "Bạn sẽ không thể chạy được midi.\n\n" #: src/AudioIO.cpp msgid "Error Initializing Midi" @@ -1361,16 +1333,16 @@ msgstr "Audacity Audio" msgid "" "Error opening recording device.\n" "Error code: %s" -msgstr "" -"Lỗi khi mở thiết bị ghi âm.\n" -"Mã lỗi: %s" +msgstr "Lỗi khi mở thiết bị ghi âm.\nMã lỗi: %s" #: src/AudioIO.cpp msgid "Out of memory!" msgstr "Đã hết dung lượng lưu trữ!" #: src/AudioIO.cpp -msgid "Automated Recording Level Adjustment stopped. It was not possible to optimize it more. Still too high." +msgid "" +"Automated Recording Level Adjustment stopped. It was not possible to " +"optimize it more. Still too high." msgstr "Điều chỉnh Cấp độ Thu âm Tự động đã dừng hoạt động. Không thể tối ưu hóa thêm. Cấp độ còn quá cao." #: src/AudioIO.cpp @@ -1379,7 +1351,9 @@ msgid "Automated Recording Level Adjustment decreased the volume to %f." msgstr "Điều chỉnh Cấp độ Thu âm Tự động đã giảm âm lượng xuống %f." #: src/AudioIO.cpp -msgid "Automated Recording Level Adjustment stopped. It was not possible to optimize it more. Still too low." +msgid "" +"Automated Recording Level Adjustment stopped. It was not possible to " +"optimize it more. Still too low." msgstr "Điều chỉnh Cấp độ Thu âm Tự động đã dừng hoạt động. Không thể tối ưu hóa thêm nữa. Cấp độ còn quá thấp." #: src/AudioIO.cpp @@ -1388,16 +1362,22 @@ msgid "Automated Recording Level Adjustment increased the volume to %.2f." msgstr "Điều chỉnh Cấp độ Thu âm Tự động đã tăng âm lượng lên %.2f." #: src/AudioIO.cpp -msgid "Automated Recording Level Adjustment stopped. The total number of analyses has been exceeded without finding an acceptable volume. Still too high." +msgid "" +"Automated Recording Level Adjustment stopped. The total number of analyses " +"has been exceeded without finding an acceptable volume. Still too high." msgstr "Điều chỉnh Cấp độ Thu âm Tự động đã đừng. Tổng số phân tích đã vượt quá mức và mức âm lượng phù hợp vẫn chưa được tìm thấy. Vẫn còn quá cao." #: src/AudioIO.cpp -msgid "Automated Recording Level Adjustment stopped. The total number of analyses has been exceeded without finding an acceptable volume. Still too low." +msgid "" +"Automated Recording Level Adjustment stopped. The total number of analyses " +"has been exceeded without finding an acceptable volume. Still too low." msgstr "Điều chỉnh Cấp độ Thu âm Tự động đã đừng. Tổng số phân tích đã vượt quá mức và mức âm lượng phù hợp vẫn chưa được tìm thấy. Vẫn còn quá thấp." #: src/AudioIO.cpp #, c-format -msgid "Automated Recording Level Adjustment stopped. %.2f seems an acceptable volume." +msgid "" +"Automated Recording Level Adjustment stopped. %.2f seems an acceptable " +"volume." msgstr "Điều chỉnh Cấp độ Thu âm Tự động đã dừng. %.2f được xem là mức âm lượng vừa phải." #: src/AudioIOBase.cpp @@ -1585,10 +1565,7 @@ msgid "" "The following projects were not saved properly the last time Audacity was run and can be automatically recovered.\n" "\n" "After recovery, save the projects to ensure changes are written to disk." -msgstr "" -"Các dự án sau đây chưa được lưu lại kể từ lần cuối bạn mở Audacity, và chúng sẽ được tự động khôi phục.\n" -"\n" -"Sau khi khôi phục, bạn hãy lưu lại thêm một lần nữa để đảm bảo tất cả thay đổi đã được ghi lại." +msgstr "Các dự án sau đây chưa được lưu lại kể từ lần cuối bạn mở Audacity, và chúng sẽ được tự động khôi phục.\n\nSau khi khôi phục, bạn hãy lưu lại thêm một lần nữa để đảm bảo tất cả thay đổi đã được ghi lại." #: src/AutoRecoveryDialog.cpp msgid "Recoverable &projects" @@ -1626,10 +1603,7 @@ msgid "" "Are you sure you want to discard the selected projects?\n" "\n" "Choosing \"Yes\" permanently deletes the selected projects immediately." -msgstr "" -"Bạn có chắc rằng muốn bỏ chọn dự án?\n" -"\n" -"Nếu bạn chọn \"đồng ý\" dự án đã chọn sẽ bị xóa ngay." +msgstr "Bạn có chắc rằng muốn bỏ chọn dự án?\n\nNếu bạn chọn \"đồng ý\" dự án đã chọn sẽ bị xóa ngay." #: src/BatchCommandDialog.cpp msgid "Select Command" @@ -1697,7 +1671,8 @@ msgstr "(%s)" msgid "Menu Command (No Parameters)" msgstr "Lệnh Menu (Không có Tham số)" -#. i18n-hint: %s will be replaced by the name of an action, such as "Remove Tracks". +#. i18n-hint: %s will be replaced by the name of an action, such as "Remove +#. Tracks". #: src/BatchCommands.cpp src/CommonCommandFlags.cpp #, c-format msgid "\"%s\" requires one or more tracks to be selected." @@ -1734,10 +1709,7 @@ msgid "" "Apply %s with parameter(s)\n" "\n" "%s" -msgstr "" -"Áp dụng %s với (các) tham số \n" -"\n" -"%s" +msgstr "Áp dụng %s với (các) tham số \n\n%s" #: src/BatchCommands.cpp msgid "Test Mode" @@ -1915,7 +1887,8 @@ msgstr "Tên của lệnh Macro mới" msgid "Name must not be blank" msgstr "Không được để trống phần tên" -#. i18n-hint: The %c will be replaced with 'forbidden characters', like '/' and '\'. +#. i18n-hint: The %c will be replaced with 'forbidden characters', like '/' +#. and '\'. #: src/BatchProcessDialog.cpp #, c-format msgid "Names may not contain '%c' and '%c'" @@ -2034,9 +2007,7 @@ msgstr "dán %lld\n" msgid "" "Trial %d\n" "Failed on Paste.\n" -msgstr "" -"Kiểm tra %d\n" -"Dán thất bại.\n" +msgstr "Kiểm tra %d\nDán thất bại.\n" #: src/Benchmark.cpp #, c-format @@ -2103,35 +2074,40 @@ msgstr "THỬ NGHIỆM THẤT BẠI!!!\n" msgid "Benchmark completed successfully.\n" msgstr "Đối chuẩn đã hoàn thiện thành công.\n" -#. i18n-hint: %s will be replaced by the name of an action, such as Normalize, Cut, Fade. +#. i18n-hint: %s will be replaced by the name of an action, such as Normalize, +#. Cut, Fade. #: src/CommonCommandFlags.cpp #, c-format msgid "" "You must first select some audio for '%s' to act on.\n" "\n" "Ctrl + A selects all audio." -msgstr "" -"Bạn cần phải chọn audio để tác vụ '%s' được áp dụng vào.\n" -"\n" -"Ctrl + A để chọn toàn bộ audio." +msgstr "Bạn cần phải chọn audio để tác vụ '%s' được áp dụng vào.\n\nCtrl + A để chọn toàn bộ audio." -#. i18n-hint: %s will be replaced by the name of an action, such as Normalize, Cut, Fade. +#. i18n-hint: %s will be replaced by the name of an action, such as Normalize, +#. Cut, Fade. #: src/CommonCommandFlags.cpp #, c-format -msgid "Select the audio for %s to use (for example, Cmd + A to Select All) then try again." +msgid "" +"Select the audio for %s to use (for example, Cmd + A to Select All) then try" +" again." msgstr "Hãy chọn âm thanh để thao tác %s(ví dụ, Cmd + A để chọn toàn bộ) rồi thử lại." -#. i18n-hint: %s will be replaced by the name of an action, such as Normalize, Cut, Fade. +#. i18n-hint: %s will be replaced by the name of an action, such as Normalize, +#. Cut, Fade. #: src/CommonCommandFlags.cpp #, c-format -msgid "Select the audio for %s to use (for example, Ctrl + A to Select All) then try again." +msgid "" +"Select the audio for %s to use (for example, Ctrl + A to Select All) then " +"try again." msgstr "Hãy Chọn audio cho %s để dùng (ví dụ: Ctrl + A để chọn tất cả) rồi thử lại." #: src/CommonCommandFlags.cpp msgid "No Audio Selected" msgstr "Chưa chọn Audio" -#. i18n-hint: %s will be replaced by the name of an effect, usually 'Noise Reduction'. +#. i18n-hint: %s will be replaced by the name of an effect, usually 'Noise +#. Reduction'. #: src/CommonCommandFlags.cpp #, c-format msgid "" @@ -2141,13 +2117,7 @@ msgid "" "\n" "2. When you have got your noise profile, select the audio you want to change\n" "and use %s to change that audio." -msgstr "" -"Hãy chọn audio để áp dụng hiệu ứng %s.\n" -"\n" -"1. Hãy chọn audio đại diện cho âm thanh và sử dụng %s để tạo 'mẫu âm thanh'.\n" -"\n" -"2. Khi bạn đã có mẫu âm thanh, chọn audio bạn muốn thay đổi\n" -"và sử dụng hiệu ứng %s để thay đổi audio." +msgstr "Hãy chọn audio để áp dụng hiệu ứng %s.\n\n1. Hãy chọn audio đại diện cho âm thanh và sử dụng %s để tạo 'mẫu âm thanh'.\n\n2. Khi bạn đã có mẫu âm thanh, chọn audio bạn muốn thay đổi\nvà sử dụng hiệu ứng %s để thay đổi audio." #: src/CommonCommandFlags.cpp msgid "" @@ -2165,9 +2135,7 @@ msgstr "Bạn cần phải chọn audio stereo để hoàn thành tác vụ này msgid "" "You must first select some audio to perform this action.\n" "(Selecting other kinds of track won't work.)" -msgstr "" -"Bạn cần phải chọn audio để thực hiện tác vụ này.\n" -"(Không lựa chọn đoạn âm dạng khác.)" +msgstr "Bạn cần phải chọn audio để thực hiện tác vụ này.\n(Không lựa chọn đoạn âm dạng khác.)" #: src/CrashReport.cpp msgid "Audacity Support Data" @@ -2189,12 +2157,12 @@ msgstr "" #: src/DBConnection.cpp #, c-format msgid "Failed to set safe mode on primary connection to %s" -msgstr "" +msgstr "không thể cài đặt chế đồ an toàn cho liên kết hiện hành đến %s" #: src/DBConnection.cpp #, c-format msgid "Failed to set safe mode on checkpoint connection to %s" -msgstr "" +msgstr "không thể cài đặt chế đồ an toàn cho liên kết điểm đến %s" #: src/DBConnection.cpp msgid "Checkpointing project" @@ -2216,10 +2184,7 @@ msgid "" "Disk is full.\n" "%s\n" "For tips on freeing up space, click the help button." -msgstr "" -"Ổ đĩa đã đầy.\n" -"%s \n" -"để có nhiều mẹo giải phóng ổ đĩa hơn, hãy click vào nút \"trợ giúp\"." +msgstr "Ổ đĩa đã đầy.\n%s \nđể có nhiều mẹo giải phóng ổ đĩa hơn, hãy click vào nút \"trợ giúp\"." #: src/DBConnection.cpp #, c-format @@ -2227,10 +2192,7 @@ msgid "" "Failed to create savepoint:\n" "\n" "%s" -msgstr "" -"Tạo điểm lưu trử thất bại:\n" -"\n" -"%s" +msgstr "Tạo điểm lưu trử thất bại:\n\n%s" #: src/DBConnection.cpp #, c-format @@ -2238,10 +2200,7 @@ msgid "" "Failed to release savepoint:\n" "\n" "%s" -msgstr "" -"Không thể giải phóng điểm lưu.\n" -"\n" -"%s" +msgstr "Không thể giải phóng điểm lưu.\n\n%s" #: src/DBConnection.cpp msgid "Database error. Sorry, but we don't have more details." @@ -2263,9 +2222,7 @@ msgstr "Dự án Phụ thuộc vào các Tập tin Audio Khác." msgid "" "Copying these files into your project will remove this dependency.\n" "This is safer, but needs more disk space." -msgstr "" -"Sao chép các tập tin này vào dự án của bạn sẽ xóa bỏ đi sự phụ thuộc này. \n" -"Như thế an toàn hơn, những sẽ tốn dung lượng lưu trữ hơn." +msgstr "Sao chép các tập tin này vào dự án của bạn sẽ xóa bỏ đi sự phụ thuộc này. \nNhư thế an toàn hơn, những sẽ tốn dung lượng lưu trữ hơn." #: src/Dependencies.cpp msgid "" @@ -2273,11 +2230,7 @@ msgid "" "\n" "Files shown as MISSING have been moved or deleted and cannot be copied.\n" "Restore them to their original location to be able to copy into project." -msgstr "" -"\n" -"\n" -"Các tập tin được hiển thị THẤT LẠC đã bị dịch chuyển hoặc xóa bỏ và không thể được sao chép.\n" -"Hồi phục chúng trở về địa điểm ban đầu để sao chép vào dự án." +msgstr "\n\nCác tập tin được hiển thị THẤT LẠC đã bị dịch chuyển hoặc xóa bỏ và không thể được sao chép.\nHồi phục chúng trở về địa điểm ban đầu để sao chép vào dự án." #: src/Dependencies.cpp msgid "Project Dependencies" @@ -2352,7 +2305,9 @@ msgid "Missing" msgstr "Mất tích" #: src/Dependencies.cpp -msgid "If you proceed, your project will not be saved to disk. Is this what you want?" +msgid "" +"If you proceed, your project will not be saved to disk. Is this what you " +"want?" msgstr "Dự án của bạn sẽ không được lưu lại vào đĩa. Bạn có muốn thế không?" #: src/Dependencies.cpp @@ -2362,12 +2317,7 @@ msgid "" "Some older Audacity projects may not be self-contained, and care \n" "is needed to keep their external dependencies in the right place.\n" "New projects will be self-contained and are less risky." -msgstr "" -"Dự án của bạn hiện đang hoàn toàn độc lập; và không phụ thuộc vào bất kỳ tập tin audio bên ngoài nào.\n" -"\n" -"Một số dự án Audacity khác có thể không gói gọn độc lập, và cần \n" -"phải được để ý đến và giữ các tập tin phụ thuộc ngoại này ở đúng nơi.\n" -"Các dự án mới sẽ luôn gói gọn độc lập và ít có rủi ro hơn." +msgstr "Dự án của bạn hiện đang hoàn toàn độc lập; và không phụ thuộc vào bất kỳ tập tin audio bên ngoài nào.\n\nMột số dự án Audacity khác có thể không gói gọn độc lập, và cần \nphải được để ý đến và giữ các tập tin phụ thuộc ngoại này ở đúng nơi.\nCác dự án mới sẽ luôn gói gọn độc lập và ít có rủi ro hơn." #: src/Dependencies.cpp msgid "Dependency Check" @@ -2451,11 +2401,7 @@ msgid "" "but this time Audacity failed to load it at startup. \n" "\n" "You may want to go back to Preferences > Libraries and re-configure it." -msgstr "" -"FFmpeg đã được cấu hình trong Tùy chọn Ưu tiên và đã tải thành công trước đõ,\n" -"nhưng lần này Audacity đã thất bại trong việc tải lên lúc khởi động.\n" -"\n" -"Bạn có thể vào mục Tùy chọn Ưu tiên > Thư viện và cấu hình lại nó." +msgstr "FFmpeg đã được cấu hình trong Tùy chọn Ưu tiên và đã tải thành công trước đõ,\nnhưng lần này Audacity đã thất bại trong việc tải lên lúc khởi động.\n\nBạn có thể vào mục Tùy chọn Ưu tiên > Thư viện và cấu hình lại nó." #: src/FFmpeg.cpp msgid "FFmpeg startup failed" @@ -2517,11 +2463,7 @@ msgid "" "\n" "To use FFmpeg import, go to Edit > Preferences > Libraries\n" "to download or locate the FFmpeg libraries." -msgstr "" -"Audacity đã thử sử dụng FFmpeg để thêm vào một tập tin audio,\n" -"nhưng các thư viện đã không được tìm thấy.\n" -"\n" -"Để sử dụng chức năng nhập bằng FFmpeg, hãy vào Chỉnh sửa > Tùy chọn Ưu tiên > Thư viện để tải về hoặc định vị các thư viện FFmpeg." +msgstr "Audacity đã thử sử dụng FFmpeg để thêm vào một tập tin audio,\nnhưng các thư viện đã không được tìm thấy.\n\nĐể sử dụng chức năng nhập bằng FFmpeg, hãy vào Chỉnh sửa > Tùy chọn Ưu tiên > Thư viện để tải về hoặc định vị các thư viện FFmpeg." #: src/FFmpeg.cpp msgid "Do not show this warning again" @@ -2552,7 +2494,8 @@ msgstr "Audacity không đọc được tập tin %s." #: src/FileException.cpp #, c-format -msgid "Audacity successfully wrote a file in %s but failed to rename it as %s." +msgid "" +"Audacity successfully wrote a file in %s but failed to rename it as %s." msgstr "Audacity đã thành công trong việc tạo tập tin tại %s nhưng đã không thành công trong việc đổi tên thành %s." #: src/FileException.cpp @@ -2561,16 +2504,14 @@ msgid "" "Audacity failed to write to a file.\n" "Perhaps %s is not writable or the disk is full.\n" "For tips on freeing up space, click the help button." -msgstr "" -"Audacity không thể ghi được tập tin.\n" -"Có thể %s không ghi được hoặc ổ đĩa đã đầy.\n" -"để có nhiều mẹo giải phóng ổ đĩa hơn, hãy click vào nút \"trợ giúp\"." +msgstr "Audacity không thể ghi được tập tin.\nCó thể %s không ghi được hoặc ổ đĩa đã đầy.\nđể có nhiều mẹo giải phóng ổ đĩa hơn, hãy click vào nút \"trợ giúp\"." #: src/FileException.h msgid "File Error" msgstr "Lỗi tập tin" -#. i18n-hint: %s will be the error message from the libsndfile software library +#. i18n-hint: %s will be the error message from the libsndfile software +#. library #: src/FileFormats.cpp #, c-format msgid "Error (file may not have been written): %s" @@ -2636,7 +2577,8 @@ msgid "%s files" msgstr "Tập tin %s " #: src/FileNames.cpp -msgid "The specified filename could not be converted due to Unicode character use." +msgid "" +"The specified filename could not be converted due to Unicode character use." msgstr "Tên tập tin cụ thể đã không chuyển đổi được do việc sử dụng ký tự Unicode." #: src/FileNames.cpp @@ -2644,9 +2586,9 @@ msgid "Specify New Filename:" msgstr "Đặt tên tập tin mới:" #: src/FileNames.cpp -#, fuzzy, c-format +#, c-format msgid "Directory %s does not have write permissions" -msgstr "Chưa có thư mục %s. Có tạo nó không?" +msgstr "" #: src/FreqWindow.cpp msgid "Frequency Analysis" @@ -2756,12 +2698,15 @@ msgid "&Replot..." msgstr "&Tái tạo tọa độ..." #: src/FreqWindow.cpp -msgid "To plot the spectrum, all selected tracks must be the same sample rate." +msgid "" +"To plot the spectrum, all selected tracks must be the same sample rate." msgstr "Để vẽ phổ, tất cả các đoạn âm được chọn phải có cùng tốc độ lấy mẫu" #: src/FreqWindow.cpp #, c-format -msgid "Too much audio was selected. Only the first %.1f seconds of audio will be analyzed." +msgid "" +"Too much audio was selected. Only the first %.1f seconds of audio will be " +"analyzed." msgstr "Quá nhiều Audio đã được lựa chọn. Chỉ %.1f giây đầu của audio sẽ được phân tích." #: src/FreqWindow.cpp @@ -2773,26 +2718,30 @@ msgstr "Chưa chọn đủ data (dữ liệu)" msgid "s" msgstr "s" -#. i18n-hint: The %d's are replaced by numbers, the %s by musical notes, e.g. A# +#. i18n-hint: The %d's are replaced by numbers, the %s by musical notes, e.g. +#. A# #: src/FreqWindow.cpp #, c-format msgid "%d Hz (%s) = %d dB" msgstr "%d Hz (%s) = %d dB" -#. i18n-hint: The %d's are replaced by numbers, the %s by musical notes, e.g. A# +#. i18n-hint: The %d's are replaced by numbers, the %s by musical notes, e.g. +#. A# #: src/FreqWindow.cpp #, c-format msgid "%d Hz (%s) = %.1f dB" msgstr "%d Hz (%s) = %.1f dB" -#. i18n-hint: The %d's are replaced by numbers, the %s by musical notes, e.g. A# +#. i18n-hint: The %d's are replaced by numbers, the %s by musical notes, e.g. +#. A# #. * the %.4f are numbers, and 'sec' should be an abbreviation for seconds #: src/FreqWindow.cpp #, c-format msgid "%.4f sec (%d Hz) (%s) = %f" msgstr "%.4f sec (%d Hz) (%s) = %f" -#. i18n-hint: The %d's are replaced by numbers, the %s by musical notes, e.g. A# +#. i18n-hint: The %d's are replaced by numbers, the %s by musical notes, e.g. +#. A# #. * the %.4f are numbers, and 'sec' should be an abbreviation for seconds #: src/FreqWindow.cpp #, c-format @@ -2884,11 +2833,14 @@ msgid "No Local Help" msgstr "Không có trợ giúp trong máy" #: src/HelpText.cpp -msgid "

The version of Audacity you are using is an Alpha test version." +msgid "" +"

The version of Audacity you are using is an Alpha test " +"version." msgstr "
Phiên bản Audacity bạn đang sử dụng là một phiên bản thử nghiệm Alpha ." #: src/HelpText.cpp -msgid "

The version of Audacity you are using is a Beta test version." +msgid "" +"

The version of Audacity you are using is a Beta test version." msgstr "
Phiên bản Audacity bạn đang sử dụng là một phiên bản thử nghiệm BETA ." #: src/HelpText.cpp @@ -2896,11 +2848,15 @@ msgid "Get the Official Released Version of Audacity" msgstr "Hãy dùng Phiên bản Phát hành Chính thức của Audacity" #: src/HelpText.cpp -msgid "We strongly recommend that you use our latest stable released version, which has full documentation and support.

" +msgid "" +"We strongly recommend that you use our latest stable released version, which" +" has full documentation and support.

" msgstr "Chúng tôi khuyến cáo bạn dùng phiên bản phát hành ổn định gần đây nhất, phiên bản này có đầy đủ tài liệu và sự hỗ trợ.

" #: src/HelpText.cpp -msgid "You can help us get Audacity ready for release by joining our [[https://www.audacityteam.org/community/|community]].


" +msgid "" +"You can help us get Audacity ready for release by joining our " +"[[https://www.audacityteam.org/community/|community]].


" msgstr "Bạn có thể giúp chúng tối chuẩn bị cho bản phát hành tiếp theo bằng cách tham gia [[https://www.audacityteam.org/community/|community]].


" #: src/HelpText.cpp @@ -2913,40 +2869,61 @@ msgstr "Đây là các phương pháp hỗ trợ của chúng tôi:" #. i18n-hint: Preserve '[[help:Quick_Help|' as it's the name of a link. #: src/HelpText.cpp -msgid "[[help:Quick_Help|Quick Help]] - if not installed locally, [[https://manual.audacityteam.org/quick_help.html|view online]]" +msgid "" +"[[help:Quick_Help|Quick Help]] - if not installed locally, " +"[[https://manual.audacityteam.org/quick_help.html|view online]]" msgstr "[[help:Quick_Help|Quick Help]] - nếu chưa được cài đặt trên máy, [[https://manual.audacityteam.org/quick_help.html|view online]]" #. i18n-hint: Preserve '[[help:Main_Page|' as it's the name of a link. #: src/HelpText.cpp -msgid " [[help:Main_Page|Manual]] - if not installed locally, [[https://manual.audacityteam.org/|view online]]" -msgstr "" -"[[help:Main_Page|Manual]] - nếu chưa được cài đặt trên máy, [[https://manual.audacityteam.org/|view online]]\n" -" " +msgid "" +" [[help:Main_Page|Manual]] - if not installed locally, " +"[[https://manual.audacityteam.org/|view online]]" +msgstr "[[help:Main_Page|Manual]] - nếu chưa được cài đặt trên máy, [[https://manual.audacityteam.org/|view online]]\n " #: src/HelpText.cpp -msgid " [[https://forum.audacityteam.org/|Forum]] - ask your question directly, online." +msgid "" +" [[https://forum.audacityteam.org/|Forum]] - ask your question directly, " +"online." msgstr " [[https://forum.audacityteam.org/|Forum]] - vào forum online nếu bạn có bất cứ câu hỏi nào." #: src/HelpText.cpp -msgid "More: Visit our [[https://wiki.audacityteam.org/index.php|Wiki]] for tips, tricks, extra tutorials and effects plug-ins." -msgstr "" -"Thêm nữa: thăm trang web của chúng tôi để có thêm các thủ thuật, mẹo hay, hướng dẫn và nhiều điều hửu ích khác\n" -"[[https://wiki.audacityteam.org/index.php|Wiki]]" +msgid "" +"More: Visit our [[https://wiki.audacityteam.org/index.php|Wiki]] for " +"tips, tricks, extra tutorials and effects plug-ins." +msgstr "Thêm nữa: thăm trang web của chúng tôi để có thêm các thủ thuật, mẹo hay, hướng dẫn và nhiều điều hửu ích khác\n[[https://wiki.audacityteam.org/index.php|Wiki]]" #: src/HelpText.cpp -msgid "Audacity can import unprotected files in many other formats (such as M4A and WMA, compressed WAV files from portable recorders and audio from video files) if you download and install the optional [[https://manual.audacityteam.org/man/faq_opening_and_saving_files.html#foreign| FFmpeg library]] to your computer." +msgid "" +"Audacity can import unprotected files in many other formats (such as M4A and" +" WMA, compressed WAV files from portable recorders and audio from video " +"files) if you download and install the optional " +"[[https://manual.audacityteam.org/man/faq_opening_and_saving_files.html#foreign|" +" FFmpeg library]] to your computer." msgstr "Audacity có thể thêm vào các tệp không được bảo vệ ở nhiều định dạng (như M4A và WMA, tệp nén WAV từ các thiết bị thu âm và từ các nguồn video khác) nếu bạn tải và cài đặt thêm lựa chọn này [[https://manual.audacityteam.org/man/faq_opening_and_saving_files.html#foreign| FFmpeg library]] về máy." #: src/HelpText.cpp -msgid "You can also read our help on importing [[https://manual.audacityteam.org/man/playing_and_recording.html#midi|MIDI files]] and tracks from [[https://manual.audacityteam.org/man/faq_opening_and_saving_files.html#fromcd| audio CDs]]." +msgid "" +"You can also read our help on importing " +"[[https://manual.audacityteam.org/man/playing_and_recording.html#midi|MIDI " +"files]] and tracks from " +"[[https://manual.audacityteam.org/man/faq_opening_and_saving_files.html#fromcd|" +" audio CDs]]." msgstr "Bạn có thể đọc hướng dẫn trợ giúp về việc thêm tập tin [[https://manual.audacityteam.org/man/playing_and_recording.html#midi|MIDI files]] và đoạn âm thanh từ [[https://manual.audacityteam.org/man/faq_opening_and_saving_files.html#fromcd| audio CDs]]." #: src/HelpText.cpp -msgid "The Manual does not appear to be installed. Please [[*URL*|view the Manual online]].

To always view the Manual online, change \"Location of Manual\" in Interface Preferences to \"From Internet\"." +msgid "" +"The Manual does not appear to be installed. Please [[*URL*|view the Manual " +"online]].

To always view the Manual online, change \"Location of " +"Manual\" in Interface Preferences to \"From Internet\"." msgstr "Không tìm thấy hướng dẫn để cài đặt. Hãy [[*URL*|xem hướng dẫn online]].

Để luôn xem được hướng dẫn online, hay sửa phần \"vị trí hướng dẫn\" trong tùy chọn giao diện thành \"từ internet\"." #: src/HelpText.cpp -msgid "The Manual does not appear to be installed. Please [[*URL*|view the Manual online]] or [[https://manual.audacityteam.org/man/unzipping_the_manual.html| download the Manual]].

To always view the Manual online, change \"Location of Manual\" in Interface Preferences to \"From Internet\"." +msgid "" +"The Manual does not appear to be installed. Please [[*URL*|view the Manual " +"online]] or [[https://manual.audacityteam.org/man/unzipping_the_manual.html|" +" download the Manual]].

To always view the Manual online, change " +"\"Location of Manual\" in Interface Preferences to \"From Internet\"." msgstr "Không tìm thấy hướng dẫn để cài đặt. Hãy [[*URL*|xem hướng dẫn online]] hoặc truy cập [[https://manual.audacityteam.org/man/unzipping_the_manual.html| để tải hướng dẫn về]].

Để luôn xem được hướng dẫn online, hay sửa phần \"vị trí hướng dẫn\" trong tùy chọn giao diện thành \"từ internet\"." #: src/HelpText.cpp @@ -3014,18 +2991,14 @@ msgstr "Đã &làm..." msgid "" "Internal error in %s at %s line %d.\n" "Please inform the Audacity team at https://forum.audacityteam.org/." -msgstr "" -"Lỗi %s ở %s line %d.\n" -"Vui lòng thông báo cho nhóm Audacity: https://forum.audacityteam.org/." +msgstr "Lỗi %s ở %s line %d.\nVui lòng thông báo cho nhóm Audacity: https://forum.audacityteam.org/." #: src/InconsistencyException.cpp #, c-format msgid "" "Internal error at %s line %d.\n" "Please inform the Audacity team at https://forum.audacityteam.org/." -msgstr "" -"Lỗi ở %s line %d.\n" -"Vui lòng thông báo cho nhóm Audacity: https://forum.audacityteam.org/." +msgstr "Lỗi ở %s line %d.\nVui lòng thông báo cho nhóm Audacity: https://forum.audacityteam.org/." #: src/InconsistencyException.h msgid "Internal Error" @@ -3126,7 +3099,9 @@ msgstr "Chọn ngôn ngữ sẽ dùng:" #. * versions of language names. #: src/LangChoice.cpp #, c-format -msgid "The language you have chosen, %s (%s), is not the same as the system language, %s (%s)." +msgid "" +"The language you have chosen, %s (%s), is not the same as the system " +"language, %s (%s)." msgstr "Ngôn ngữ bạn đã chọn, %s (%s), không giống với ngôn ngữ hệ thống, %s (%s)." #: src/LangChoice.cpp src/effects/VST/VSTEffect.cpp @@ -3143,9 +3118,7 @@ msgstr "Lỗi không Chuyển dạng được Tập tin Phiên bản cũ" msgid "" "Converted a 1.0 project file to the new format.\n" "The old file has been saved as '%s'" -msgstr "" -"Đã chuyển tập tin dự án phiên bản 1.0 sang định dạng mới.\n" -"Tập tin cũ đã được lưu thành '%s'" +msgstr "Đã chuyển tập tin dự án phiên bản 1.0 sang định dạng mới.\nTập tin cũ đã được lưu thành '%s'" #: src/Legacy.cpp msgid "Opening Audacity Project" @@ -3182,9 +3155,7 @@ msgstr "&Làm lại" msgid "" "There was a problem with your last action. If you think\n" "this is a bug, please tell us exactly where it occurred." -msgstr "" -"Gặp lỗi với thao tác gần đây nhất. Nếu bạn nghĩ\n" -"đây là lỗi bug, xin hãy cho chúng tôi biết cụ thể khi nào lỗi xảy ra." +msgstr "Gặp lỗi với thao tác gần đây nhất. Nếu bạn nghĩ\nđây là lỗi bug, xin hãy cho chúng tôi biết cụ thể khi nào lỗi xảy ra." #: src/Menus.cpp msgid "Disallowed" @@ -3217,7 +3188,8 @@ msgid "Gain" msgstr "Độ khuếch đại" #. i18n-hint: title of the MIDI Velocity slider -#. i18n-hint: Title of the Velocity slider, used to adjust the volume of note tracks +#. i18n-hint: Title of the Velocity slider, used to adjust the volume of note +#. tracks #: src/MixerBoard.cpp #: src/tracks/playabletrack/notetrack/ui/NoteTrackControls.cpp #: src/tracks/playabletrack/notetrack/ui/NoteTrackSliderHandles.cpp @@ -3278,10 +3250,7 @@ msgid "" "Unable to load the \"%s\" module.\n" "\n" "Error: %s" -msgstr "" -"Không thể tải môđun \"%s\" .\n" -"\n" -"Lỗi: %s" +msgstr "Không thể tải môđun \"%s\" .\n\nLỗi: %s" #: src/ModuleManager.cpp msgid "Module Unsuitable" @@ -3293,10 +3262,7 @@ msgid "" "The module \"%s\" does not provide a version string.\n" "\n" "It will not be loaded." -msgstr "" -"Mô-đun \"%s\" không cung cấp chuỗi mã phiên bản.\n" -"\n" -"Không tải được Mô-đun." +msgstr "Mô-đun \"%s\" không cung cấp chuỗi mã phiên bản.\n\nKhông tải được Mô-đun." #: src/ModuleManager.cpp #, c-format @@ -3304,10 +3270,7 @@ msgid "" "The module \"%s\" is matched with Audacity version \"%s\".\n" "\n" "It will not be loaded." -msgstr "" -"Mô-đun \"%s\" là phiên bản Audacity \"%s\".\n" -"\n" -"Không tải được Mô-đun." +msgstr "Mô-đun \"%s\" là phiên bản Audacity \"%s\".\n\nKhông tải được Mô-đun." #: src/ModuleManager.cpp #, c-format @@ -3315,10 +3278,7 @@ msgid "" "The module \"%s\" failed to initialize.\n" "\n" "It will not be loaded." -msgstr "" -"Mô-đun \"%s\" không khởi động được.\n" -"\n" -"Không tải được Mô-đun." +msgstr "Mô-đun \"%s\" không khởi động được.\n\nKhông tải được Mô-đun." #: src/ModuleManager.cpp #, c-format @@ -3330,10 +3290,7 @@ msgid "" "\n" "\n" "Only use modules from trusted sources" -msgstr "" -"\n" -"\n" -"Chỉ dùng các mô-đun đến từ nguồn có tín" +msgstr "\n\nChỉ dùng các mô-đun đến từ nguồn có tín" #: src/ModuleManager.cpp src/TimerRecordDialog.cpp plug-ins/delay.ny #: plug-ins/equalabel.ny plug-ins/limiter.ny plug-ins/sample-data-export.ny @@ -3359,10 +3316,7 @@ msgid "" "The module \"%s\" does not provide any of the required functions.\n" "\n" "It will not be loaded." -msgstr "" -"Mô-đun \"%s\" không cung cấp các hàm cần thiết.\n" -"\n" -"Không tải được Mô-đun." +msgstr "Mô-đun \"%s\" không cung cấp các hàm cần thiết.\n\nKhông tải được Mô-đun." #. i18n-hint: This is for screen reader software and indicates that #. this is a Note track. @@ -3455,27 +3409,32 @@ msgstr "A♭" msgid "B♭" msgstr "B♭" -#. i18n-hint: Two, alternate names of a musical note in the 12-tone chromatic scale +#. i18n-hint: Two, alternate names of a musical note in the 12-tone chromatic +#. scale #: src/PitchName.cpp msgid "C♯/D♭" msgstr "C♯/D♭" -#. i18n-hint: Two, alternate names of a musical note in the 12-tone chromatic scale +#. i18n-hint: Two, alternate names of a musical note in the 12-tone chromatic +#. scale #: src/PitchName.cpp msgid "D♯/E♭" msgstr "D♯/E♭" -#. i18n-hint: Two, alternate names of a musical note in the 12-tone chromatic scale +#. i18n-hint: Two, alternate names of a musical note in the 12-tone chromatic +#. scale #: src/PitchName.cpp msgid "F♯/G♭" msgstr "F♯/G♭" -#. i18n-hint: Two, alternate names of a musical note in the 12-tone chromatic scale +#. i18n-hint: Two, alternate names of a musical note in the 12-tone chromatic +#. scale #: src/PitchName.cpp msgid "G♯/A♭" msgstr "G♯/A♭" -#. i18n-hint: Two, alternate names of a musical note in the 12-tone chromatic scale +#. i18n-hint: Two, alternate names of a musical note in the 12-tone chromatic +#. scale #: src/PitchName.cpp msgid "A♯/B♭" msgstr "A♯/B♭" @@ -3563,10 +3522,7 @@ msgid "" "Enabling effects or commands:\n" "\n" "%s" -msgstr "" -"Bật tất cả hiệu ứng và lệnh:\n" -"\n" -"%s" +msgstr "Bật tất cả hiệu ứng và lệnh:\n\n%s" #: src/PluginManager.cpp #, c-format @@ -3574,19 +3530,14 @@ msgid "" "Enabling effect or command:\n" "\n" "%s" -msgstr "" -"Bật hiệu ứng hoặc lệnh:\n" -"\n" -"%s" +msgstr "Bật hiệu ứng hoặc lệnh:\n\n%s" #: src/PluginManager.cpp #, c-format msgid "" "Effect or Command at %s failed to register:\n" "%s" -msgstr "" -"Hiệu ứng hoặc lệnh tại %s đã đăng ký không thành công:\n" -"%s" +msgstr "Hiệu ứng hoặc lệnh tại %s đã đăng ký không thành công:\n%s" #: src/PluginManager.cpp #, c-format @@ -3638,10 +3589,7 @@ msgid "" "There is very little free disk space left on %s\n" "Please select a bigger temporary directory location in\n" "Directories Preferences." -msgstr "" -"còn lại rất ít vùng trống trên đĩa %s\n" -"Hãy chọn một phân vùng đĩa khác lớn hơn để lưu trử file tạm của bạn\n" -"Trong Tùy chọn thư mục." +msgstr "còn lại rất ít vùng trống trên đĩa %s\nHãy chọn một phân vùng đĩa khác lớn hơn để lưu trử file tạm của bạn\nTrong Tùy chọn thư mục." #: src/ProjectAudioManager.cpp #, c-format @@ -3667,10 +3615,7 @@ msgid "" "Too few tracks are selected for recording at this sample rate.\n" "(Audacity requires two channels at the same sample rate for\n" "each stereo track)" -msgstr "" -"Quá ít đoạn âm được lựa chọn để ghi tỷ lệ tốc độ mẫu này.\n" -"(Audacity yêu cầu hai kênh sử dụng chung tỷ lệ tốc độ mẫu cho \n" -"mỗi đoạn stereo)" +msgstr "Quá ít đoạn âm được lựa chọn để ghi tỷ lệ tốc độ mẫu này.\n(Audacity yêu cầu hai kênh sử dụng chung tỷ lệ tốc độ mẫu cho \nmỗi đoạn stereo)" #: src/ProjectAudioManager.cpp src/menus/TransportMenus.cpp msgid "Too Few Compatible Tracks Selected" @@ -3700,12 +3645,7 @@ msgid "" "Other applications are competing with Audacity for processor time\n" "\n" "You are saving directly to a slow external storage device\n" -msgstr "" -"Audio thu âm bị mất ở vị trí được đánh dấu. Có thể do:\n" -"\n" -"Một vài ứng dụng khác đang xung đột với Audacity trong quá trình xử lý. \n" -"\n" -"Bạn đã lưu tập tin audio vào một thiết bị bộ nhớ ngoài.\n" +msgstr "Audio thu âm bị mất ở vị trí được đánh dấu. Có thể do:\n\nMột vài ứng dụng khác đang xung đột với Audacity trong quá trình xử lý. \n\nBạn đã lưu tập tin audio vào một thiết bị bộ nhớ ngoài.\n" #: src/ProjectAudioManager.cpp msgid "Turn off dropout detection" @@ -3725,7 +3665,10 @@ msgid "Close project immediately with no changes" msgstr "Không thay đổi và đóng dự án ngay bây giờ" #: src/ProjectFSCK.cpp -msgid "Continue with repairs noted in log, and check for more errors. This will save the project in its current state, unless you \"Close project immediately\" on further error alerts." +msgid "" +"Continue with repairs noted in log, and check for more errors. This will " +"save the project in its current state, unless you \"Close project " +"immediately\" on further error alerts." msgstr "Tiếp tục với các sửa chữa ghi trong tập nhật lý log, và kiểm tra thêm lỗi. Việc này sẽ lưu dự án lại ở trạng thái hẹn tại, trừ khi bạn chọn \"Tắt bỏ dự án ngay lập tức\" trong các hộp thoại cảnh báo lỗi tiếp." #: src/ProjectFSCK.cpp @@ -3754,22 +3697,7 @@ msgid "" "If you choose the third option, this will save the \n" "project in its current state, unless you \"Close \n" "project immediately\" on further error alerts." -msgstr "" -"Kiểm tra thư mục dự án \"%s\"\n" -"phát hienj thấy %lld (một số) tập tin audio ngoài bị thiếu\n" -"('tập tin có biệt danh'). Không có cách nào để Audacity\n" -"có thẻ phục hồi được các tập tin này tự động.\n" -"\n" -"Nếu bạn chọn lựa chọn đầu tiên hoặc thứ hai bên dưới,\n" -"bạn có thể tìm thử và phục hồi các tập tin thiếu này\n" -"trở về các địa chỉ lưu trước đây.\n" -"\n" -"Hãy lưu ý với lụa chọn thứ hai, sóng tín hiệu\n" -"có thể sẽ không hiện các khoảng im lặng.\n" -"\n" -"Nếu bạn chọn lựa chọn thứ ba, việc này sẽ lưu\n" -"dự án ở hiện trạng, trừ khi bạn chọn \"Tắt bỏ\n" -" dự án ngay lập tức\" trong các hộp thoại cảnh báo lỗi tiếp." +msgstr "Kiểm tra thư mục dự án \"%s\"\nphát hienj thấy %lld (một số) tập tin audio ngoài bị thiếu\n('tập tin có biệt danh'). Không có cách nào để Audacity\ncó thẻ phục hồi được các tập tin này tự động.\n\nNếu bạn chọn lựa chọn đầu tiên hoặc thứ hai bên dưới,\nbạn có thể tìm thử và phục hồi các tập tin thiếu này\ntrở về các địa chỉ lưu trước đây.\n\nHãy lưu ý với lụa chọn thứ hai, sóng tín hiệu\ncó thể sẽ không hiện các khoảng im lặng.\n\nNếu bạn chọn lựa chọn thứ ba, việc này sẽ lưu\ndự án ở hiện trạng, trừ khi bạn chọn \"Tắt bỏ\n dự án ngay lập tức\" trong các hộp thoại cảnh báo lỗi tiếp." #: src/ProjectFSCK.cpp msgid "Treat missing audio as silence (this session only)" @@ -3790,11 +3718,7 @@ msgid "" "detected %lld missing alias (.auf) blockfile(s). \n" "Audacity can fully regenerate these files \n" "from the current audio in the project." -msgstr "" -"Kiểm tra thư mục \"%s\"\n" -"và phát hiện %lld thiếu tên bí danh (.auf) của khối tập tin. \n" -"Audacity có thể tạo lại các tập tin này \n" -"từ những audio hiện tại " +msgstr "Kiểm tra thư mục \"%s\"\nvà phát hiện %lld thiếu tên bí danh (.auf) của khối tập tin. \nAudacity có thể tạo lại các tập tin này \ntừ những audio hiện tại " #: src/ProjectFSCK.cpp msgid "Regenerate alias summary files (safe and recommended)" @@ -3827,19 +3751,7 @@ msgid "" "\n" "Note that for the second option, the waveform \n" "may not show silence." -msgstr "" -"Kiểm tra dự án thư mục %s\n" -"phát hiện %lld thiếu audio data của các khối tập tin (.au)\n" -"có thể là do lỗi phần mềm, lỗi hệ thống hoặc vô tình bị xoá\n" -"Audacity không thể khôi phục \n" -"những tập tin này một cách tự động \n" -"\n" -"Nếu bạn chọn tuỳ chọn thứ nhất hoặc thứ hai bên dưới \n" -"bạn có thể tìm và khôi phục các tập tin bị mất\n" -"trở về lại dúng vị trí của nó\n" -"\n" -"Lưu ý với tuỳ chọn thứ hai, dạng sóng \n" -"có thể không hiển thị im lặng " +msgstr "Kiểm tra dự án thư mục %s\nphát hiện %lld thiếu audio data của các khối tập tin (.au)\ncó thể là do lỗi phần mềm, lỗi hệ thống hoặc vô tình bị xoá\nAudacity không thể khôi phục \nnhững tập tin này một cách tự động \n\nNếu bạn chọn tuỳ chọn thứ nhất hoặc thứ hai bên dưới \nbạn có thể tìm và khôi phục các tập tin bị mất\ntrở về lại dúng vị trí của nó\n\nLưu ý với tuỳ chọn thứ hai, dạng sóng \ncó thể không hiển thị im lặng " #: src/ProjectFSCK.cpp msgid "Replace missing audio with silence (permanent immediately)" @@ -3856,11 +3768,7 @@ msgid "" "found %d orphan block file(s). These files are \n" "unused by this project, but might belong to other projects. \n" "They are doing no harm and are small." -msgstr "" -"Kiểm tra dự án thư mục \"%s\" đã tìm thấy %dkhối tập tin mồ côi. \n" -"Các tập tin này không được sử dụng trong dự án này, \n" -"nhưng có thể vẫn thuộc về những dự án khác. \n" -"Chúng không gây hại và có kích thước nhỏ. " +msgstr "Kiểm tra dự án thư mục \"%s\" đã tìm thấy %dkhối tập tin mồ côi. \nCác tập tin này không được sử dụng trong dự án này, \nnhưng có thể vẫn thuộc về những dự án khác. \nChúng không gây hại và có kích thước nhỏ. " #: src/ProjectFSCK.cpp msgid "Continue without deleting; ignore the extra files this session" @@ -3890,10 +3798,7 @@ msgid "" "Project check found file inconsistencies during automatic recovery.\n" "\n" "Select 'Help > Diagnostics > Show Log...' to see details." -msgstr "" -"Kiểm tra dự án tìm thấy tệp không nhất quán trong quá trình khôi phục tự động. \n" -"\n" -"Chọn vào 'trợ giúp> chẩn đoán> Hiển thị log...' để xem chi tiết." +msgstr "Kiểm tra dự án tìm thấy tệp không nhất quán trong quá trình khôi phục tự động. \n\nChọn vào 'trợ giúp> chẩn đoán> Hiển thị log...' để xem chi tiết." #: src/ProjectFSCK.cpp msgid "Warning: Problems in Automatic Recovery" @@ -3918,10 +3823,7 @@ msgid "" "Failed to open database file:\n" "\n" "%s" -msgstr "" -"Lỗi khi mở cơ sở tập tin dữ liệu :\n" -"\n" -"%s" +msgstr "Lỗi khi mở cơ sở tập tin dữ liệu :\n\n%s" #: src/ProjectFileIO.cpp msgid "Failed to discard connection" @@ -3937,10 +3839,7 @@ msgid "" "Failed to execute a project file command:\n" "\n" "%s" -msgstr "" -"Lỗi thi hành lệnh tập tin dự án:\n" -"\n" -"%s" +msgstr "Lỗi thi hành lệnh tập tin dự án:\n\n%s" #: src/ProjectFileIO.cpp #, c-format @@ -3948,10 +3847,7 @@ msgid "" "Unable to prepare project file command:\n" "\n" "%s" -msgstr "" -"Lệnh tập tin dự án không sẵn sàng:\n" -"\n" -"%s" +msgstr "Lệnh tập tin dự án không sẵn sàng:\n\n%s" #: src/ProjectFileIO.cpp #, c-format @@ -3960,20 +3856,14 @@ msgid "" "The following command failed:\n" "\n" "%s" -msgstr "" -"Không thể phục hồi dữ liệu từ tập tin dự án.\n" -"Không thể thực hiện lệnh tiếp theo.\n" -"\n" -"%s" +msgstr "Không thể phục hồi dữ liệu từ tập tin dự án.\nKhông thể thực hiện lệnh tiếp theo.\n\n%s" #. i18n-hint: An error message. #: src/ProjectFileIO.cpp msgid "" "Project is in a read only directory\n" "(Unable to create the required temporary files)" -msgstr "" -"Dự án này đang nằm trong danh mục chỉ đọc.\n" -"(không thể tạo các tập tin tạm được yêu câu)" +msgstr "Dự án này đang nằm trong danh mục chỉ đọc.\n(không thể tạo các tập tin tạm được yêu câu)" #: src/ProjectFileIO.cpp msgid "This is not an Audacity project file" @@ -3984,7 +3874,7 @@ msgid "" "This project was created with a newer version of Audacity.\n" "\n" "You will need to upgrade to open it." -msgstr "" +msgstr "Dự án này được tạo bằng một phiên bản Audacity mới hơn.\n\nBạn cần cập nhật Audacity để mở nó." #: src/ProjectFileIO.cpp msgid "Unable to initialize the project file" @@ -4000,63 +3890,49 @@ msgstr "không thể thêm vào chức năng \"bổ sung\" (không thể xác mi msgid "" "Project is read only\n" "(Unable to work with the blockfiles)" -msgstr "" -"Đây là dự an chỉ đọc\n" -"(không thể làm việc với các blockfiles)" +msgstr "Đây là dự an chỉ đọc\n(không thể làm việc với các blockfiles)" #. i18n-hint: An error message. Don't translate blockfiles. #: src/ProjectFileIO.cpp msgid "" "Project is locked\n" "(Unable to work with the blockfiles)" -msgstr "" -"Dự án bị khóa\n" -"(không thể làm việc với các blockfiles)" +msgstr "Dự án bị khóa\n(không thể làm việc với các blockfiles)" #. i18n-hint: An error message. Don't translate blockfiles. #: src/ProjectFileIO.cpp msgid "" "Project is busy\n" "(Unable to work with the blockfiles)" -msgstr "" -"Dự án đang bận\n" -"(không thể làm việc với các blockfiles)" +msgstr "Dự án đang bận\n(không thể làm việc với các blockfiles)" #. i18n-hint: An error message. Don't translate blockfiles. #: src/ProjectFileIO.cpp msgid "" "Project is corrupt\n" "(Unable to work with the blockfiles)" -msgstr "" -"Dự án đã bị sửa đổi\n" -"(không thể làm việc với các blockfiles)" +msgstr "Dự án đã bị sửa đổi\n(không thể làm việc với các blockfiles)" #. i18n-hint: An error message. Don't translate blockfiles. #: src/ProjectFileIO.cpp msgid "" "Some permissions issue\n" "(Unable to work with the blockfiles)" -msgstr "" -"đang gặp vấn đề cấp quyền\n" -"(không thể làm việc với các blockfiles)" +msgstr "đang gặp vấn đề cấp quyền\n(không thể làm việc với các blockfiles)" #. i18n-hint: An error message. Don't translate blockfiles. #: src/ProjectFileIO.cpp msgid "" "A disk I/O error\n" "(Unable to work with the blockfiles)" -msgstr "" -"Lỗi đĩa I/O\n" -"(không thể làm việc với các blockfiles)" +msgstr "Lỗi đĩa I/O\n(không thể làm việc với các blockfiles)" #. i18n-hint: An error message. Don't translate blockfiles. #: src/ProjectFileIO.cpp msgid "" "Not authorized\n" "(Unable to work with the blockfiles)" -msgstr "" -"Không được cấp phép\n" -"(không thể làm việc với các blockfiles)" +msgstr "Không được cấp phép\n(không thể làm việc với các blockfiles)" #. i18n-hint: An error message. Don't translate blockfiles. #: src/ProjectFileIO.cpp @@ -4091,11 +3967,7 @@ msgid "" "The following command failed:\n" "\n" "%s" -msgstr "" -"Lỗi cập nhật tập tin dự án.\n" -"Không thể thực hiện lệnh tiếp theo\n" -"\n" -"%s" +msgstr "Lỗi cập nhật tập tin dự án.\nKhông thể thực hiện lệnh tiếp theo\n\n%s" #: src/ProjectFileIO.cpp msgid "Destination project could not be detached" @@ -4115,10 +3987,7 @@ msgid "" "Audacity failed to write file %s.\n" "Perhaps disk is full or not writable.\n" "For tips on freeing up space, click the help button." -msgstr "" -"Audacity không thể ghi được tập tin%s\n" -"Có thể không ghi được hoặc ổ đĩa đã đầy\n" -"để có nhiều mẹo giải phóng ổ đĩa hơn, hãy click vào nút \"trợ giúp\"." +msgstr "Audacity không thể ghi được tập tin%s\nCó thể không ghi được hoặc ổ đĩa đã đầy\nđể có nhiều mẹo giải phóng ổ đĩa hơn, hãy click vào nút \"trợ giúp\"." #: src/ProjectFileIO.cpp msgid "Compacting project" @@ -4141,9 +4010,7 @@ msgstr "(Đã phục hồi)" msgid "" "This file was saved using Audacity %s.\n" "You are using Audacity %s. You may need to upgrade to a newer version to open this file." -msgstr "" -"Tập tin này được lưu lại bởi Audicity bản %s.\n" -"Bạn đang dùng Audacity bản %s. Bạn có thể nâng cấp lên phien bản mới hơn để mở tập tin này." +msgstr "Tập tin này được lưu lại bởi Audicity bản %s.\nBạn đang dùng Audacity bản %s. Bạn có thể nâng cấp lên phien bản mới hơn để mở tập tin này." #: src/ProjectFileIO.cpp msgid "Can't open project file" @@ -4155,7 +4022,7 @@ msgstr "Không thể xóa thông tin lưu tự động từ tập tin dự án." #: src/ProjectFileIO.cpp msgid "Unable to bind to blob" -msgstr "" +msgstr "không thể kết nối đến blob" #: src/ProjectFileIO.cpp msgid "Unable to decode project document" @@ -4166,7 +4033,9 @@ msgid "Unable to parse project information." msgstr "Không thể phân tích thông tin dự án." #: src/ProjectFileIO.cpp -msgid "The project's database failed to reopen, possibly because of limited space on the storage device." +msgid "" +"The project's database failed to reopen, possibly because of limited space " +"on the storage device." msgstr "Cơ sở dữ liệu của dự án không thể mở lại. Có thể vì vùng trống trên ổ đĩa của bạn quá ít." #: src/ProjectFileIO.cpp @@ -4188,11 +4057,7 @@ msgid "" "on the storage device.\n" "\n" "%s" -msgstr "" -"Không thể mở dự án, có thể vì vùng trổng\n" -"trên ổ đĩa của bạn quá ít.\n" -"\n" -"%s" +msgstr "Không thể mở dự án, có thể vì vùng trổng\ntrên ổ đĩa của bạn quá ít.\n\n%s" #: src/ProjectFileIO.cpp #, c-format @@ -4201,11 +4066,7 @@ msgid "" "on the storage device.\n" "\n" "%s" -msgstr "" -"Không thể xóa thông tin lưu tự động từ tập tin dự án, có thể vì vùng trống\n" -"trên ổ đĩa của bạn quá ít\n" -"\n" -"%s" +msgstr "Không thể xóa thông tin lưu tự động từ tập tin dự án, có thể vì vùng trống\ntrên ổ đĩa của bạn quá ít\n\n%s" #: src/ProjectFileIO.cpp msgid "Backing up project" @@ -4216,10 +4077,7 @@ msgid "" "This project was not saved properly the last time Audacity ran.\n" "\n" "It has been recovered to the last snapshot." -msgstr "" -"Dự án này đã không được lưu lại đúng cách lần gần đây nhất Audacity được mở\n" -"\n" -"Nó đã được phục hồi ở thao tác cuối cùng được lưu." +msgstr "Dự án này đã không được lưu lại đúng cách lần gần đây nhất Audacity được mở\n\nNó đã được phục hồi ở thao tác cuối cùng được lưu." #: src/ProjectFileManager.cpp msgid "" @@ -4227,11 +4085,7 @@ msgid "" "\n" "It has been recovered to the last snapshot, but you must save it\n" "to preserve its contents." -msgstr "" -"Dự án này đã không được lưu lại đúng cách lần gần đây nhất Audacity được mở\n" -"\n" -"Nó đã được phục hồi ở thao tác cuối cùng được lưu, nhưng bạn phải lưu nó lại lần nữa\n" -"để giữ được tất cả nội dung." +msgstr "Dự án này đã không được lưu lại đúng cách lần gần đây nhất Audacity được mở\n\nNó đã được phục hồi ở thao tác cuối cùng được lưu, nhưng bạn phải lưu nó lại lần nữa\nđể giữ được tất cả nội dung." #: src/ProjectFileManager.cpp msgid "Project Recovered" @@ -4251,14 +4105,7 @@ msgid "" "are open, then File > Save Project.\n" "\n" "Save anyway?" -msgstr "" -"Dự án bạn hiện đang trống.\n" -"Nếu lưu lại, dự án sẽ không có đoạn âm nào.\n" -"\n" -"Để lưu lại các đoạn âm đã mở:\n" -"Nhấn vào 'Không', Chỉnh sửa > Hoàn tác cho đến khi các đoạn âm đều mở, rồi vào Tập tin > Lưu lại Dự án.\n" -"\n" -"Kệ, cứ lưu?" +msgstr "Dự án bạn hiện đang trống.\nNếu lưu lại, dự án sẽ không có đoạn âm nào.\n\nĐể lưu lại các đoạn âm đã mở:\nNhấn vào 'Không', Chỉnh sửa > Hoàn tác cho đến khi các đoạn âm đều mở, rồi vào Tập tin > Lưu lại Dự án.\n\nKệ, cứ lưu?" #: src/ProjectFileManager.cpp msgid "Warning - Empty Project" @@ -4273,13 +4120,12 @@ msgid "" "The project size exceeds the available free space on the target disk.\n" "\n" "Please select a different disk with more free space." -msgstr "" -"Kích thước dự án vượt quá dung lượng trống có sẵn trên ổ đĩa lưu trử.\n" -"\n" -"Vui lòng chọn một ổ đĩa khác còn trống nhiều hơn." +msgstr "Kích thước dự án vượt quá dung lượng trống có sẵn trên ổ đĩa lưu trử.\n\nVui lòng chọn một ổ đĩa khác còn trống nhiều hơn." #: src/ProjectFileManager.cpp -msgid "The project exceeds the maximum size of 4GB when writing to a FAT32 formatted filesystem." +msgid "" +"The project exceeds the maximum size of 4GB when writing to a FAT32 " +"formatted filesystem." msgstr "Kích thước dự án đã vượt quá phạm vi 4GB cho phép khi ghi lên phân vùng đĩa FAT32." #: src/ProjectFileManager.cpp src/commands/ScreenshotCommand.cpp @@ -4291,9 +4137,7 @@ msgstr "Đã lưu %s" msgid "" "The project was not saved because the file name provided would overwrite another project.\n" "Please try again and select an original name." -msgstr "" -"Dự án đã không được lưu lại bởi vì tên tập tin cung cấp đã ghi đè lên dự án khác.\n" -"Xin hãy thử lại và chọn một cái tên không trùng." +msgstr "Dự án đã không được lưu lại bởi vì tên tập tin cung cấp đã ghi đè lên dự án khác.\nXin hãy thử lại và chọn một cái tên không trùng." #: src/ProjectFileManager.cpp #, c-format @@ -4304,9 +4148,7 @@ msgstr "%s Lưu lại Dự án \"%s\" thành..." msgid "" "'Save Project' is for an Audacity project, not an audio file.\n" "For an audio file that will open in other apps, use 'Export'.\n" -msgstr "" -"Lưu lại Dự án' dành cho dự án Audacity, không phải là tập tin audio.\n" -"Nếu dùng cho tập tin audio với các chương trình ứng dụng khác, hãy dùng 'Xuất tập'.\n" +msgstr "Lưu lại Dự án' dành cho dự án Audacity, không phải là tập tin audio.\nNếu dùng cho tập tin audio với các chương trình ứng dụng khác, hãy dùng 'Xuất tập'.\n" #. i18n-hint: In each case, %s is the name #. of the file being overwritten. @@ -4319,13 +4161,7 @@ msgid "" " If you select \"Yes\" the project\n" "\"%s\"\n" " will be irreversibly overwritten." -msgstr "" -"Bạn có muốn ghi đè lên dự án \n" -"\"%s\"?\n" -"\n" -"Nếu bạn chọn \"đồng ý\" dự án\n" -"\"%s\"\n" -"sẽ bị ghi đè vĩnh viễn." +msgstr "Bạn có muốn ghi đè lên dự án \n\"%s\"?\n\nNếu bạn chọn \"đồng ý\" dự án\n\"%s\"\nsẽ bị ghi đè vĩnh viễn." #. i18n-hint: Heading: A warning that a project is about to be overwritten. #: src/ProjectFileManager.cpp @@ -4336,9 +4172,7 @@ msgstr "Cánh báo ghi đè dự án" msgid "" "The project was not saved because the selected project is open in another window.\n" "Please try again and select an original name." -msgstr "" -"Dự án này sẽ không được lưu vì dự án được lựa chọn đang mở ở một cửa sổ khác.\n" -"Hãy thử lại và đặt một cái tên không bị trùng." +msgstr "Dự án này sẽ không được lưu vì dự án được lựa chọn đang mở ở một cửa sổ khác.\nHãy thử lại và đặt một cái tên không bị trùng." #: src/ProjectFileManager.cpp #, c-format @@ -4349,9 +4183,7 @@ msgstr "%s Lưu bản sao dự án \"%s\" dưới tên..." msgid "" "Saving a copy must not overwrite an existing saved project.\n" "Please try again and select an original name." -msgstr "" -"Lưu lại một bản sao chép không bắt buộc ghi đè lên dự án đã lưu.\n" -"Hãy thử lại và lựa chọn một cái tên không bị trùng." +msgstr "Lưu lại một bản sao chép không bắt buộc ghi đè lên dự án đã lưu.\nHãy thử lại và lựa chọn một cái tên không bị trùng." #: src/ProjectFileManager.cpp msgid "Error Saving Copy of Project" @@ -4376,11 +4208,7 @@ msgid "" "Doing this may result in severe data loss.\n" "\n" "Please open the actual Audacity project file instead." -msgstr "" -"Bạn đang mở một tập tin phục hồi được tạo tự động.\n" -"điều này có thể dẫn đến mất dữ liệu gốc.\n" -"\n" -"Hãy mở một tập tin dự án chính thống." +msgstr "Bạn đang mở một tập tin phục hồi được tạo tự động.\nđiều này có thể dẫn đến mất dữ liệu gốc.\n\nHãy mở một tập tin dự án chính thống." #: src/ProjectFileManager.cpp msgid "Warning - Backup File Detected" @@ -4399,9 +4227,7 @@ msgstr "Lỗi khi mở tập tin" msgid "" "File may be invalid or corrupted: \n" "%s" -msgstr "" -"Tập tin không hợp lệ hoặc bị hỏng: \n" -"%s" +msgstr "Tập tin không hợp lệ hoặc bị hỏng: \n%s" #: src/ProjectFileManager.cpp msgid "Error Opening File or Project" @@ -4411,9 +4237,7 @@ msgstr "Lỗi khi mở tập tin hoặc dự án" msgid "" "Project resides on FAT formatted drive.\n" "Copy it to another drive to open it." -msgstr "" -"Dự án đang nằm trên phân vùng đĩa FAT.\n" -"Hãy sao chép nó vào một vùng đĩa khác để chạy." +msgstr "Dự án đang nằm trên phân vùng đĩa FAT.\nHãy sao chép nó vào một vùng đĩa khác để chạy." #: src/ProjectFileManager.cpp msgid "Project was recovered" @@ -4458,12 +4282,7 @@ msgid "" "If you proceed, the current Undo/Redo History and clipboard contents will be discarded and you will recover approximately %s of disk space.\n" "\n" "Do you want to continue?" -msgstr "" -"Nén dự án này sẽ làm trống dung lượng ổ đĩa bằng cách xóa các bytes không dùng nữa trong tập tin.\n" -"\n" -"Dung lượng trống hiện có %svà dự án này sẽ dùng %s\n" -"\n" -"nếu bạn tiếp tục, tất cả lịch sử thao tác của bạn trên bộ nhớ đệm sẽ bị xóa và bạn sẽ có thêm khoảng %s dung lượng đĩa." +msgstr "Nén dự án này sẽ làm trống dung lượng ổ đĩa bằng cách xóa các bytes không dùng nữa trong tập tin.\n\nDung lượng trống hiện có %svà dự án này sẽ dùng %s\n\nnếu bạn tiếp tục, tất cả lịch sử thao tác của bạn trên bộ nhớ đệm sẽ bị xóa và bạn sẽ có thêm khoảng %s dung lượng đĩa." #: src/ProjectFileManager.cpp msgid "Compacted project file" @@ -4486,7 +4305,8 @@ msgstr "Lỗi quá trình phục hồi tự động." msgid "Welcome to Audacity version %s" msgstr "Chào bạn, bạn đang dùng Audacity phiên bản %s" -#. i18n-hint: The first %s numbers the project, the second %s is the project name. +#. i18n-hint: The first %s numbers the project, the second %s is the project +#. name. #: src/ProjectManager.cpp #, c-format msgid "%sSave changes to %s?" @@ -4504,13 +4324,7 @@ msgid "" "To save any previously open tracks:\n" "Cancel, Edit > Undo until all tracks\n" "are open, then File > Save Project." -msgstr "" -"\n" -"Dự án được lưu sẽ được xoá sạch!!\n" -"\n" -"Để lưu lại các dải âm đã được mở trước kia\n" -"nhấn nút Huỷ bỏ, Chỉnh sửa > Huỷ tới khi tất cả các \n" -"dải âm của bạn được mở, rồi chọn Tập tin > Lưu Dự án." +msgstr "\nDự án được lưu sẽ được xoá sạch!!\n\nĐể lưu lại các dải âm đã được mở trước kia\nnhấn nút Huỷ bỏ, Chỉnh sửa > Huỷ tới khi tất cả các \ndải âm của bạn được mở, rồi chọn Tập tin > Lưu Dự án." #: src/ProjectManager.cpp #, c-format @@ -4543,9 +4357,7 @@ msgstr "%s và %s." msgid "" "This recovery file was saved by Audacity 2.3.0 or before.\n" "You need to run that version of Audacity to recover the project." -msgstr "" -"Tập tin hồi phục này được lưu lại bởi Audacity 2.3.0 hoặc các phiên bản trước đo.\n" -"Bạn cần phiên bản Audacity đó để khôi phục dự án." +msgstr "Tập tin hồi phục này được lưu lại bởi Audacity 2.3.0 hoặc các phiên bản trước đo.\nBạn cần phiên bản Audacity đó để khôi phục dự án." #. i18n-hint: This is an experimental feature where the main panel in #. Audacity is put on a notebook tab, and this is the name on that tab. @@ -4569,7 +4381,9 @@ msgstr "Nhóm thêm vào ở %s sẽ được kết hợp với nhóm xác đị #: src/Registry.cpp #, c-format -msgid "Plug-in item at %s conflicts with a previously defined item and was discarded" +msgid "" +"Plug-in item at %s conflicts with a previously defined item and was " +"discarded" msgstr "Mục tin thêm vào ở %s xung đột với item xác định trước đó và đã bị loại bỏ" #: src/Registry.cpp @@ -4732,7 +4546,8 @@ msgstr "Bộ đo" msgid "Play Meter" msgstr "Bộ đo phát" -#. i18n-hint: (noun) The meter that shows the loudness of the audio being recorded. +#. i18n-hint: (noun) The meter that shows the loudness of the audio being +#. recorded. #: src/Screenshot.cpp src/commands/ScreenshotCommand.cpp #: src/toolbars/MeterToolBar.cpp msgid "Record Meter" @@ -4767,7 +4582,8 @@ msgid "Ruler" msgstr "Thước đo" #. i18n-hint: "Tracks" include audio recordings but also other collections of -#. * data associated with a time line, such as sequences of labels, and musical +#. * data associated with a time line, such as sequences of labels, and +#. musical #. * notes #: src/Screenshot.cpp src/commands/GetInfoCommand.cpp #: src/commands/GetTrackInfoCommand.cpp src/commands/ScreenshotCommand.cpp @@ -4837,9 +4653,7 @@ msgstr "Tin nhắn dài" msgid "" "Sequence has block file exceeding maximum %s samples per block.\n" "Truncating to this maximum length." -msgstr "" -"Trình tự có tệp khối vượt quá số %s mẫu tối đa cho mỗi khối.\n" -"Đang cắt ngắn đến độ dài tối đa này." +msgstr "Trình tự có tệp khối vượt quá số %s mẫu tối đa cho mỗi khối.\nĐang cắt ngắn đến độ dài tối đa này." #: src/Sequence.cpp msgid "Warning - Truncating Overlong Block File" @@ -5009,9 +4823,7 @@ msgstr "Không phù hợp" msgid "" "The temporary files directory is on a FAT formatted drive.\n" "Resetting to default location." -msgstr "" -"Thư mục tập tin tạm đang được lưu trên phân vùng đĩa FAT.\n" -"Hãy đặt lại địa chỉ mặc định" +msgstr "Thư mục tập tin tạm đang được lưu trên phân vùng đĩa FAT.\nHãy đặt lại địa chỉ mặc định" #: src/TempDirectory.cpp #, c-format @@ -5019,22 +4831,18 @@ msgid "" "%s\n" "\n" "For tips on suitable drives, click the help button." -msgstr "" -"%s\n" -"\n" -"Để xem các mẹo chọn ổ đĩa, click vào nút trợ giúp." +msgstr "%s\n\nĐể xem các mẹo chọn ổ đĩa, click vào nút trợ giúp." #: src/Theme.cpp #, c-format msgid "" "Audacity could not write file:\n" " %s." -msgstr "" -"Audacity không ghi được tập tin:\n" -" %s." +msgstr "Audacity không ghi được tập tin:\n %s." #. i18n-hint: A theme is a consistent visual style across an application's -#. graphical user interface, including choices of colors, and similarity of images +#. graphical user interface, including choices of colors, and similarity of +#. images #. such as those on button controls. Audacity can load and save alternative #. themes. #: src/Theme.cpp @@ -5042,9 +4850,7 @@ msgstr "" msgid "" "Theme written to:\n" " %s." -msgstr "" -"Chủ đề được viết cho:\n" -"%s." +msgstr "Chủ đề được viết cho:\n%s." #: src/Theme.cpp #, c-format @@ -5052,19 +4858,14 @@ msgid "" "Audacity could not open file:\n" " %s\n" "for writing." -msgstr "" -"Audacity không mở được tập tin:\n" -" %s\n" -"để ghi." +msgstr "Audacity không mở được tập tin:\n %s\nđể ghi." #: src/Theme.cpp #, c-format msgid "" "Audacity could not write images to file:\n" " %s." -msgstr "" -"Audacity không thể ghi ảnh minh hoạ vào tập tin:\n" -" %s." +msgstr "Audacity không thể ghi ảnh minh hoạ vào tập tin:\n %s." #. i18n-hint "Cee" means the C computer programming language #: src/Theme.cpp @@ -5072,9 +4873,7 @@ msgstr "" msgid "" "Theme as Cee code written to:\n" " %s." -msgstr "" -"Chủ đề dưới dạng mã Cee được viết cho:\n" -"%s." +msgstr "Chủ đề dưới dạng mã Cee được viết cho:\n%s." #: src/Theme.cpp #, c-format @@ -5082,10 +4881,7 @@ msgid "" "Audacity could not find file:\n" " %s.\n" "Theme not loaded." -msgstr "" -"Audacity không tìm thấy tập tin:\n" -" %s.\n" -"Chưa nạp sắc thái giao diện." +msgstr "Audacity không tìm thấy tập tin:\n %s.\nChưa nạp sắc thái giao diện." #. i18n-hint: Do not translate png. It is the name of a file format. #: src/Theme.cpp @@ -5094,18 +4890,13 @@ msgid "" "Audacity could not load file:\n" " %s.\n" "Bad png format perhaps?" -msgstr "" -"Audacity không thể nạp tập tin:\n" -" %s.\n" -"Có lẽ do lỗi định dạng png?" +msgstr "Audacity không thể nạp tập tin:\n %s.\nCó lẽ do lỗi định dạng png?" #: src/Theme.cpp msgid "" "Audacity could not read its default theme.\n" "Please report the problem." -msgstr "" -"Audacity không hiển thị được sắc thái giao diện mặc định.\n" -"Xin hãy thông báo lại lỗi này." +msgstr "Audacity không hiển thị được sắc thái giao diện mặc định.\nXin hãy thông báo lại lỗi này." #: src/Theme.cpp #, c-format @@ -5113,19 +4904,14 @@ msgid "" "None of the expected theme component files\n" " were found in:\n" " %s." -msgstr "" -"Không tìm thấy các tập tin cấu thành\n" -"sắc thái giao diện trong:\n" -" %s." +msgstr "Không tìm thấy các tập tin cấu thành\nsắc thái giao diện trong:\n %s." #: src/Theme.cpp #, c-format msgid "" "Could not create directory:\n" " %s" -msgstr "" -"Không tạo được thư muc:\n" -" %s" +msgstr "Không tạo được thư muc:\n %s" #: src/Theme.cpp #, c-format @@ -5133,19 +4919,14 @@ msgid "" "Some required files in:\n" " %s\n" "were already present. Overwrite?" -msgstr "" -"Một số tập tin được yêu cầu trong:\n" -"%s\n" -"Đã sẵn sàng. bạn có muốn ghi đè không?" +msgstr "Một số tập tin được yêu cầu trong:\n%s\nĐã sẵn sàng. bạn có muốn ghi đè không?" #: src/Theme.cpp #, c-format msgid "" "Audacity could not save file:\n" " %s" -msgstr "" -"Không lưu được tập tin: \n" -" %s" +msgstr "Không lưu được tập tin: \n %s" #. i18n-hint: describing the "classic" or traditional #. appearance of older versions of Audacity @@ -5173,14 +4954,18 @@ msgstr "Tương phản cao" msgid "Custom" msgstr "Tùy chỉnh" -#. i18n-hint: This string is used to configure the controls which shows the recording -#. * duration. As such it is important that only the alphabetic parts of the string +#. i18n-hint: This string is used to configure the controls which shows the +#. recording +#. * duration. As such it is important that only the alphabetic parts of the +#. string #. * are translated, with the numbers left exactly as they are. -#. * The string 'days' indicates that the first number in the control will be the number of days, -#. * then the 'h' indicates the second number displayed is hours, the 'm' indicates the third -#. * number displayed is minutes, and the 's' indicates that the fourth number displayed is +#. * The string 'days' indicates that the first number in the control will be +#. the number of days, +#. * then the 'h' indicates the second number displayed is hours, the 'm' +#. indicates the third +#. * number displayed is minutes, and the 's' indicates that the fourth number +#. displayed is #. * seconds. -#. #: src/TimeDialog.h src/TimerRecordDialog.cpp src/effects/DtmfGen.cpp #: src/effects/Noise.cpp src/effects/Silence.cpp src/effects/ToneGen.cpp #: src/effects/VST/VSTEffect.cpp src/effects/ladspa/LadspaEffect.cpp @@ -5207,10 +4992,7 @@ msgid "" "The selected file name could not be used\n" "for Timer Recording because it would overwrite another project.\n" "Please try again and select an original name." -msgstr "" -"Tên tập tin không thể dùng được\n" -"cho Bộ ghi Thời gian vì nó bị trùng tên và sẽ ghi đè lên một dự án khác.\n" -"Xin vui lòng chọn một tên khác và thử lại." +msgstr "Tên tập tin không thể dùng được\ncho Bộ ghi Thời gian vì nó bị trùng tên và sẽ ghi đè lên một dự án khác.\nXin vui lòng chọn một tên khác và thử lại." #: src/TimerRecordDialog.cpp msgid "Error Saving Timer Recording Project" @@ -5249,12 +5031,7 @@ msgid "" "\n" "Planned recording duration: %s\n" "Recording time remaining on disk: %s" -msgstr "" -"Có thể bạn sẽ không có đủ dung lượng ổ đĩa để hoàn thành bộ đếm thời gian này. dựa trên thiết lập của bạn.\n" -"\n" -"Bạn có muốn tiếp tục không?\n" -"Độ dài bản ghi dự kiến: %s\n" -"Thời gian ghi còn lại trên đĩa: %s" +msgstr "Có thể bạn sẽ không có đủ dung lượng ổ đĩa để hoàn thành bộ đếm thời gian này. dựa trên thiết lập của bạn.\n\nBạn có muốn tiếp tục không?\nĐộ dài bản ghi dự kiến: %s\nThời gian ghi còn lại trên đĩa: %s" #: src/TimerRecordDialog.cpp msgid "Timer Recording Disk Space Warning" @@ -5307,10 +5084,7 @@ msgid "" "%s\n" "\n" "Recording saved: %s" -msgstr "" -"%s\n" -"\n" -"Bản ghi âm được lưu lại: %s" +msgstr "%s\n\nBản ghi âm được lưu lại: %s" #: src/TimerRecordDialog.cpp #, c-format @@ -5318,10 +5092,7 @@ msgid "" "%s\n" "\n" "Error saving recording." -msgstr "" -"%s\n" -"\n" -"Lỗi khi lưu ghi âm." +msgstr "%s\n\nLỗi khi lưu ghi âm." #: src/TimerRecordDialog.cpp #, c-format @@ -5329,10 +5100,7 @@ msgid "" "%s\n" "\n" "Recording exported: %s" -msgstr "" -"%s\n" -"\n" -"Tập tin thu âm đã xuất: %s" +msgstr "%s\n\nTập tin thu âm đã xuất: %s" #: src/TimerRecordDialog.cpp #, c-format @@ -5340,10 +5108,7 @@ msgid "" "%s\n" "\n" "Error exporting recording." -msgstr "" -"%s\n" -"\n" -"Lỗi khi xuất ghi âm." +msgstr "%s\n\nLỗi khi xuất ghi âm." #: src/TimerRecordDialog.cpp #, c-format @@ -5351,10 +5116,7 @@ msgid "" "%s\n" "\n" "'%s' has been canceled due to the error(s) noted above." -msgstr "" -"%s\n" -"\n" -"'%s' đã hủy vì (các) lỗi." +msgstr "%s\n\n'%s' đã hủy vì (các) lỗi." #: src/TimerRecordDialog.cpp #, c-format @@ -5362,10 +5124,7 @@ msgid "" "%s\n" "\n" "'%s' has been canceled as the recording was stopped." -msgstr "" -"%s\n" -"\n" -"'%s' đã bị hủy bỏ vì ghi âm đã dừng lại." +msgstr "%s\n\n'%s' đã bị hủy bỏ vì ghi âm đã dừng lại." #: src/TimerRecordDialog.cpp src/menus/TransportMenus.cpp msgid "Timer Recording" @@ -5381,12 +5140,15 @@ msgstr "099 h 060 m 060 s" msgid "099 days 024 h 060 m 060 s" msgstr "099 days 024 h 060 m 060 s" -#. i18n-hint: This string is used to configure the controls for times when the recording is -#. * started and stopped. As such it is important that only the alphabetic parts of the string +#. i18n-hint: This string is used to configure the controls for times when the +#. recording is +#. * started and stopped. As such it is important that only the alphabetic +#. parts of the string #. * are translated, with the numbers left exactly as they are. -#. * The 'h' indicates the first number displayed is hours, the 'm' indicates the second number -#. * displayed is minutes, and the 's' indicates that the third number displayed is seconds. -#. +#. * The 'h' indicates the first number displayed is hours, the 'm' indicates +#. the second number +#. * displayed is minutes, and the 's' indicates that the third number +#. displayed is seconds. #: src/TimerRecordDialog.cpp msgid "Start Date and Time" msgstr "Ngày giờ bắt đầu" @@ -5431,8 +5193,8 @@ msgstr "Bật Xuất thành tập tin Tự động" msgid "Export Project As:" msgstr "Xuất dự án thành:" -#: src/TimerRecordDialog.cpp src/prefs/GUIPrefs.cpp src/prefs/PlaybackPrefs.cpp -#: src/prefs/RecordingPrefs.cpp +#: src/TimerRecordDialog.cpp src/prefs/GUIPrefs.cpp +#: src/prefs/PlaybackPrefs.cpp src/prefs/RecordingPrefs.cpp msgid "Options" msgstr "Tùy chọn" @@ -5557,7 +5319,9 @@ msgid " Select On" msgstr " Bật chọn" #: src/TrackPanelResizeHandle.cpp -msgid "Click and drag to adjust relative size of stereo tracks, double-click to make heights equal" +msgid "" +"Click and drag to adjust relative size of stereo tracks, double-click to " +"make heights equal" msgstr "click và kéo chuột để điều chỉnh kích cỡ tương đối của đoạn âm stereo, nhấp đúp chuột để thiết lập cân bằng" #: src/TrackPanelResizeHandle.cpp @@ -5638,7 +5402,8 @@ msgstr "Vùng chọn không đủ lớn để dùng giọng." msgid "Calibration Results\n" msgstr "Kết quả phân thang đo\n" -#. i18n-hint: %1.4f is replaced by a number. sd stands for 'Standard Deviations' +#. i18n-hint: %1.4f is replaced by a number. sd stands for 'Standard +#. Deviations' #: src/VoiceKey.cpp #, c-format msgid "Energy -- mean: %1.4f sd: (%1.4f)\n" @@ -5686,17 +5451,15 @@ msgid "" "%s: Could not load settings below. Default settings will be used.\n" "\n" "%s" -msgstr "" -"%s: Không thể tải các cài đặt bên dưới. Cài đặt mặc định sẽ được sử dụng.\n" -"\n" -"%s" +msgstr "%s: Không thể tải các cài đặt bên dưới. Cài đặt mặc định sẽ được sử dụng.\n\n%s" #: src/commands/AudacityCommand.cpp src/effects/Effect.cpp #, c-format msgid "Applying %s..." msgstr "Đang áp dụng %s..." -#. i18n-hint: An item name followed by a value, with appropriate separating punctuation +#. i18n-hint: An item name followed by a value, with appropriate separating +#. punctuation #: src/commands/AudacityCommand.cpp src/effects/Effect.cpp #: src/effects/vamp/VampEffect.cpp src/menus/PluginMenus.cpp #: src/tracks/playabletrack/notetrack/ui/NoteTrackSliderHandles.cpp @@ -5742,12 +5505,13 @@ msgstr "Lặp lại %s" msgid "" "\n" "* %s, because you have assigned the shortcut %s to %s" -msgstr "" -"\n" -"* %s, bởi vì bạn đã đặt phím tắt %sđến%s" +msgstr "\n* %s, bởi vì bạn đã đặt phím tắt %sđến%s" #: src/commands/CommandManager.cpp -msgid "The following commands have had their shortcuts removed, because their default shortcut is new or changed, and is the same shortcut that you have assigned to another command." +msgid "" +"The following commands have had their shortcuts removed, because their " +"default shortcut is new or changed, and is the same shortcut that you have " +"assigned to another command." msgstr "phím tắt của các lệnh sau đây đều đã bị xóa, bởi vì phím tắt mặc định của chúng đã bị thay đổi hoặc làm mới, và bạn đã gắn một lệnh mới lên phím tắt này." #: src/commands/CommandManager.cpp @@ -6302,7 +6066,7 @@ msgstr "Xoá" #: src/commands/SetEnvelopeCommand.cpp msgid "Edited Envelope" -msgstr "" +msgstr "đường biên độ đã được chỉnh sửa" #. i18n-hint: The envelope is a curve that controls the audio loudness. #: src/commands/SetEnvelopeCommand.cpp src/prefs/MousePrefs.cpp @@ -6332,7 +6096,7 @@ msgstr "Được chọn" #: src/commands/SetLabelCommand.cpp msgid "Edited Label" -msgstr "" +msgstr "nhãn đã được sửa" #: src/commands/SetLabelCommand.h msgid "Sets various values for a label." @@ -6457,7 +6221,7 @@ msgstr "Chọn quang phổ" #: src/commands/SetTrackInfoCommand.cpp src/prefs/SpectrumPrefs.cpp msgctxt "spectrum prefs" msgid "Sche&me" -msgstr "" +msgstr "kế &hoạch" #: src/commands/SetTrackInfoCommand.cpp msgid "Set Track" @@ -6496,21 +6260,29 @@ msgid "Auto Duck" msgstr "Auto Duck" #: src/effects/AutoDuck.cpp -msgid "Reduces (ducks) the volume of one or more tracks whenever the volume of a specified \"control\" track reaches a particular level" +msgid "" +"Reduces (ducks) the volume of one or more tracks whenever the volume of a " +"specified \"control\" track reaches a particular level" msgstr "giảm (nhỏ) âm lượng của (các) đoạn âm mỗi khi âm lượng đạt đến một mức độ nhất định" -#. i18n-hint: Auto duck is the name of an effect that 'ducks' (reduces the volume) +#. i18n-hint: Auto duck is the name of an effect that 'ducks' (reduces the +#. volume) #. * of the audio automatically when there is sound on another track. Not as #. * in 'Donald-Duck'! #: src/effects/AutoDuck.cpp -msgid "You selected a track which does not contain audio. AutoDuck can only process audio tracks." +msgid "" +"You selected a track which does not contain audio. AutoDuck can only process" +" audio tracks." msgstr "Bạn đã chọn một dải âm toàn khoảng lặng. Hiệu ứng Tự động điều biên chỉ có thể xử lý dải âm có thông tin." -#. i18n-hint: Auto duck is the name of an effect that 'ducks' (reduces the volume) +#. i18n-hint: Auto duck is the name of an effect that 'ducks' (reduces the +#. volume) #. * of the audio automatically when there is sound on another track. Not as #. * in 'Donald-Duck'! #: src/effects/AutoDuck.cpp -msgid "Auto Duck needs a control track which must be placed below the selected track(s)." +msgid "" +"Auto Duck needs a control track which must be placed below the selected " +"track(s)." msgstr "Auto Duck yêu cầu có một dải điều khiển nằm dưới dải được chọn." #: src/effects/AutoDuck.cpp src/effects/TruncSilence.cpp @@ -6737,15 +6509,15 @@ msgstr "Thay đổi tốc độ là thay đổi cả nhịp điệu và độ ca msgid "&Speed Multiplier:" msgstr "&bộ nhân tốc độ" -#. i18n-hint: "rpm" is an English abbreviation meaning "revolutions per minute". +#. i18n-hint: "rpm" is an English abbreviation meaning "revolutions per +#. minute". #. "vinyl" refers to old-fashioned phonograph records #: src/effects/ChangeSpeed.cpp msgid "Standard Vinyl rpm:" -msgstr "" +msgstr "Vinyl rpm tiểu chuẩn:" #. i18n-hint: changing speed of audio "from" one value "to" another #. "rpm" means "revolutions per minute" as on a vinyl record turntable -#. #: src/effects/ChangeSpeed.cpp msgid "From rpm" msgstr "Từ rpm" @@ -6758,7 +6530,6 @@ msgstr "&Từ" #. i18n-hint: changing speed of audio "from" one value "to" another #. "rpm" means "revolutions per minute" as on a vinyl record turntable -#. #: src/effects/ChangeSpeed.cpp msgid "To rpm" msgstr "Đến rpm" @@ -6870,36 +6641,36 @@ msgstr "nút \"click xóa\" được dùng để xóa các tiếng lách cách t #: src/effects/ClickRemoval.cpp msgid "Algorithm not effective on this audio. Nothing changed." -msgstr "" +msgstr "thuật toán vô hiệu đối với Audio này. thay đổi không hiệu lực." #: src/effects/ClickRemoval.cpp #, c-format msgid "Selection must be larger than %d samples." -msgstr "" +msgstr "vùng chọn phải lớn hơn %dmẫu." #: src/effects/ClickRemoval.cpp msgid "&Threshold (lower is more sensitive):" -msgstr "" +msgstr "&ngưỡng (càng bé càng nhạy):" #: src/effects/ClickRemoval.cpp src/effects/Compressor.cpp msgid "Threshold" -msgstr "" +msgstr "Ngưỡng" #: src/effects/ClickRemoval.cpp msgid "Max &Spike Width (higher is more sensitive):" -msgstr "" +msgstr "Độ rộng &tối đa của đinh nhọn (càng lớn càng nhạy)" #: src/effects/ClickRemoval.cpp msgid "Max Spike Width" -msgstr "" +msgstr "độ rộng đĩnh nhọn tối đa" #: src/effects/Compressor.cpp msgid "Compressor" -msgstr "" +msgstr "bộ nén" #: src/effects/Compressor.cpp msgid "Compresses the dynamic range of audio" -msgstr "" +msgstr "Nén dải động của audio" #. i18n-hint: usually leave this as is as dB doesn't get translated #: src/effects/Compressor.cpp @@ -6939,7 +6710,7 @@ msgstr "Tỉ lệ%.0f - 1 " #: src/effects/Compressor.cpp #, c-format msgid "Ratio %.1f to 1" -msgstr "" +msgstr "tỷ lệ %.1fđến 1" #: src/effects/Compressor.cpp msgid "&Noise Floor:" @@ -6962,39 +6733,42 @@ msgstr "Tỉ lệ" #. * sound dies away. So this means 'onset duration'. #: src/effects/Compressor.cpp msgid "&Attack Time:" -msgstr "" +msgstr "thời gian khởi chạy:" #. i18n-hint: Particularly in percussion, sounds can be regarded as having #. * an 'attack' phase where the sound builds up and a 'decay' where the #. * sound dies away. So this means 'onset duration'. #: src/effects/Compressor.cpp msgid "Attack Time" -msgstr "" +msgstr "thời gian khởi chạy" #. i18n-hint: Particularly in percussion, sounds can be regarded as having -#. * an 'attack' phase where the sound builds up and a 'decay' or 'release' where the +#. * an 'attack' phase where the sound builds up and a 'decay' or 'release' +#. where the #. * sound dies away. #: src/effects/Compressor.cpp msgid "R&elease Time:" -msgstr "" +msgstr "thời& gian phát hành:" #. i18n-hint: Particularly in percussion, sounds can be regarded as having -#. * an 'attack' phase where the sound builds up and a 'decay' or 'release' where the +#. * an 'attack' phase where the sound builds up and a 'decay' or 'release' +#. where the #. * sound dies away. #: src/effects/Compressor.cpp msgid "Release Time" -msgstr "" +msgstr "thời gian phát hành" -#. i18n-hint: Make-up, i.e. correct for any reduction, rather than fabricate it. +#. i18n-hint: Make-up, i.e. correct for any reduction, rather than fabricate +#. it. #: src/effects/Compressor.cpp msgid "Ma&ke-up gain for 0 dB after compressing" -msgstr "" +msgstr "điều chỉnh& 0dB sau khi nén" #. i18n-hint: "Compress" here means reduce variations of sound volume, #. NOT related to file-size compression; Peaks means extremes in volume #: src/effects/Compressor.cpp msgid "C&ompress based on Peaks" -msgstr "" +msgstr "nén từ đỉnh" #: src/effects/Compressor.cpp #, c-format @@ -7009,16 +6783,16 @@ msgstr "Nhiễu nhỏ nhất - Noise Floor %d dB" #: src/effects/Compressor.cpp #, c-format msgid "Attack Time %.2f secs" -msgstr "" +msgstr "thời gian khởi chạy%.2fgiây" #: src/effects/Compressor.cpp #, c-format msgid "Release Time %.1f secs" -msgstr "" +msgstr "thời gian phát hành%.1fgiây" #: src/effects/Contrast.cpp msgid "You can only measure one track at a time." -msgstr "" +msgstr "Bạn chỉ có thể đo từ đoạn nhạc tại từng thời điểm." #: src/effects/Contrast.cpp msgid "Please select an audio track." @@ -7028,18 +6802,20 @@ msgstr "Hãy chọn một đoạn âm audio." msgid "" "Invalid audio selection.\n" "Please ensure that audio is selected." -msgstr "" +msgstr "vùng chọn audio không hợp lệ.\nhãy kiểm tra lại các audio đã chọn" #: src/effects/Contrast.cpp msgid "" "Nothing to measure.\n" "Please select a section of a track." -msgstr "" +msgstr "lệnh đo không hiệu lực.\nhãy chọn một phần đoạn âm trước khi đo." #. i18n-hint: RMS abbreviates root mean square, a certain averaging method #: src/effects/Contrast.cpp -msgid "Contrast Analyzer, for measuring RMS volume differences between two selections of audio." -msgstr "" +msgid "" +"Contrast Analyzer, for measuring RMS volume differences between two " +"selections of audio." +msgstr "bộ phân tích tương phản, để đo chênh lệch âm lượng RMS giữa hai audio được chọn." #. i18n-hint noun #: src/effects/Contrast.cpp src/effects/ToneGen.cpp @@ -7053,51 +6829,51 @@ msgstr "Âm lượng" #: src/effects/Contrast.cpp msgid "&Foreground:" -msgstr "" +msgstr "&tiền cảnh:" #: src/effects/Contrast.cpp msgid "Foreground start time" -msgstr "" +msgstr "Thời gian bắt đầu tiền cảnh" #: src/effects/Contrast.cpp msgid "Foreground end time" -msgstr "" +msgstr "Thời gian kết thúc tiền cảnh" #: src/effects/Contrast.cpp msgid "&Measure selection" -msgstr "" +msgstr "&đo vùng chọn" #: src/effects/Contrast.cpp msgid "&Background:" -msgstr "" +msgstr "&nền:" #: src/effects/Contrast.cpp msgid "Background start time" -msgstr "" +msgstr "thời gian bắt đầu của nền" #: src/effects/Contrast.cpp msgid "Background end time" -msgstr "" +msgstr "thời gian kết thúc của nền" #: src/effects/Contrast.cpp msgid "Mea&sure selection" -msgstr "" +msgstr "đo& vùng chọn" #: src/effects/Contrast.cpp msgid "Result" -msgstr "" +msgstr "kết quả" #: src/effects/Contrast.cpp msgid "Co&ntrast Result:" -msgstr "" +msgstr "Kết quả tương& phản:" #: src/effects/Contrast.cpp msgid "R&eset" -msgstr "" +msgstr "thiết& lập lại" #: src/effects/Contrast.cpp msgid "&Difference:" -msgstr "" +msgstr "&chênh lệch:" #: src/effects/Contrast.cpp src/menus/HelpMenus.cpp src/prefs/GUIPrefs.cpp msgid "&Help" @@ -7121,7 +6897,7 @@ msgstr "điểm không" #: src/effects/Contrast.cpp msgid "indeterminate" -msgstr "" +msgstr "vô hạn" #. i18n-hint: dB abbreviates decibels #. * RMS abbreviates root mean square, a certain averaging method @@ -7133,38 +6909,39 @@ msgstr "%.2f dB RMS" #. i18n-hint: dB abbreviates decibels #: src/effects/Contrast.cpp msgid "Infinite dB difference" -msgstr "" +msgstr "giá trị dB vô hạn chênh lệch" #: src/effects/Contrast.cpp msgid "Difference is indeterminate." -msgstr "" +msgstr "chênh lệch vô hạn" #. i18n-hint: dB abbreviates decibels #. RMS abbreviates root mean square, a certain averaging method #: src/effects/Contrast.cpp #, c-format msgid "Difference = %.2f RMS dB." -msgstr "" +msgstr "chênh lệch = %.2fRMS dB." #. i18n-hint: dB abbreviates decibels #. RMS abbreviates root mean square, a certain averaging method #: src/effects/Contrast.cpp msgid "Difference = infinite RMS dB." -msgstr "" +msgstr "chênh lệch = vô hạn RMS dB." #: src/effects/Contrast.cpp msgid "Foreground level too high" -msgstr "" +msgstr "mức độ nổi quá cao" #: src/effects/Contrast.cpp msgid "Background level too high" -msgstr "" +msgstr "mức nền quá cao" #: src/effects/Contrast.cpp msgid "Background higher than foreground" -msgstr "" +msgstr "mức nền cao hơn độ nổi khối" -#. i18n-hint: WCAG2 is the 'Web Content Accessibility Guidelines (WCAG) 2.0', see http://www.w3.org/TR/WCAG20/ +#. i18n-hint: WCAG2 is the 'Web Content Accessibility Guidelines (WCAG) 2.0', +#. see http://www.w3.org/TR/WCAG20/ #: src/effects/Contrast.cpp msgid "WCAG2 Pass" msgstr "" @@ -7177,11 +6954,11 @@ msgstr "" #. i18n-hint: i.e. difference in loudness at the moment. #: src/effects/Contrast.cpp msgid "Current difference" -msgstr "" +msgstr "chênh lệch hiện hành" #: src/effects/Contrast.cpp msgid "Measured foreground level" -msgstr "" +msgstr "mức đo độ tiền cảnh" #. i18n-hint: short form of 'decibels' #: src/effects/Contrast.cpp @@ -7191,27 +6968,27 @@ msgstr "%.2f dB" #: src/effects/Contrast.cpp msgid "No foreground measured" -msgstr "" +msgstr "không có tiền cảnh được đo" #: src/effects/Contrast.cpp msgid "Foreground not yet measured" -msgstr "" +msgstr "tiền cảnh chưa được đo" #: src/effects/Contrast.cpp msgid "Measured background level" -msgstr "" +msgstr "mức đo nền" #: src/effects/Contrast.cpp msgid "No background measured" -msgstr "" +msgstr "không có nền được đo" #: src/effects/Contrast.cpp msgid "Background not yet measured" -msgstr "" +msgstr "nền chưa được đo" #: src/effects/Contrast.cpp msgid "Export Contrast Result As:" -msgstr "" +msgstr "xuất kết quả tương phản thành:" #. i18n-hint: WCAG abbreviates Web Content Accessibility Guidelines #: src/effects/Contrast.cpp @@ -7225,25 +7002,25 @@ msgstr "Filename - Tên Tập Tin = %s." #: src/effects/Contrast.cpp msgid "Foreground" -msgstr "" +msgstr "tiền cảnh" #: src/effects/Contrast.cpp #, c-format msgid "Time started = %2d hour(s), %2d minute(s), %.2f seconds." -msgstr "" +msgstr "thời gian bắt đầu = %2dgiờ, %2dphút, %.2fgiây. " #: src/effects/Contrast.cpp #, c-format msgid "Time ended = %2d hour(s), %2d minute(s), %.2f seconds." -msgstr "" +msgstr "thời gian kết thúc = %2dgiờ, %2dphút, %.2fgiây. " #: src/effects/Contrast.cpp msgid "Background" -msgstr "" +msgstr "nền" #: src/effects/Contrast.cpp msgid "Results" -msgstr "" +msgstr "kết quả" #: src/effects/Contrast.cpp msgid "Success Criteria 1.4.7 of WCAG 2.0: Pass" @@ -7255,7 +7032,7 @@ msgstr "" #: src/effects/Contrast.cpp msgid "Data gathered" -msgstr "" +msgstr "dữ liệu thu thập" #. i18n-hint: day of month, month, year, hour, minute, second #: src/effects/Contrast.cpp @@ -7265,69 +7042,69 @@ msgstr "%d %s %02d %02dh %02dm %02ds" #: src/effects/Contrast.cpp msgid "Contrast Analysis (WCAG 2 compliance)" -msgstr "" +msgstr "phân tích tương phản (WCAG 2 chấp nhận)" #: src/effects/Contrast.cpp msgid "Contrast..." -msgstr "" +msgstr "Tương phản..." #: src/effects/Distortion.cpp msgid "Hard Clipping" -msgstr "" +msgstr "điểm ghim cứng" #: src/effects/Distortion.cpp msgid "Soft Clipping" -msgstr "" +msgstr "điểm ghim mềm" #: src/effects/Distortion.cpp msgid "Soft Overdrive" -msgstr "" +msgstr "tăng tốc nhẹ" #: src/effects/Distortion.cpp msgid "Medium Overdrive" -msgstr "" +msgstr "tăng tốc vừa" #: src/effects/Distortion.cpp msgid "Hard Overdrive" -msgstr "" +msgstr "tăng tốc mạnh" #: src/effects/Distortion.cpp msgid "Cubic Curve (odd harmonics)" -msgstr "" +msgstr "vòng cung lập phương (đơn âm)" #: src/effects/Distortion.cpp msgid "Even Harmonics" -msgstr "" +msgstr "âm ngang" #: src/effects/Distortion.cpp msgid "Expand and Compress" -msgstr "" +msgstr "giải và nén" #: src/effects/Distortion.cpp msgid "Leveller" -msgstr "" +msgstr "Cân bằng âm lượng" #: src/effects/Distortion.cpp msgid "Rectifier Distortion" -msgstr "" +msgstr "biến thể bộ chỉnh lưu" #: src/effects/Distortion.cpp msgid "Hard Limiter 1413" -msgstr "" +msgstr "bộ hạn chế cứng 1413" #: src/effects/Distortion.cpp #, no-c-format msgid "Hard clip -12dB, 80% make-up gain" -msgstr "" +msgstr "ghim chặc -12dB, 80% độ phủ màu" #: src/effects/Distortion.cpp #, no-c-format msgid "Soft clip -12dB, 80% make-up gain" -msgstr "" +msgstr "ghim lỏng -12dB, 80% độ phủ màu" #: src/effects/Distortion.cpp msgid "Fuzz Box" -msgstr "" +msgstr "hộp chuyển tong" #: src/effects/Distortion.cpp src/effects/Equalization.cpp msgid "Walkie-talkie" @@ -7335,31 +7112,31 @@ msgstr "Walkie-talkie" #: src/effects/Distortion.cpp msgid "Blues drive sustain" -msgstr "" +msgstr "vọng âm truyền động " #: src/effects/Distortion.cpp msgid "Light Crunch Overdrive" -msgstr "" +msgstr "bộ tăng tiếng rít nhẹ" #: src/effects/Distortion.cpp msgid "Heavy Overdrive" -msgstr "" +msgstr "tăng tốc cực mạnh" #: src/effects/Distortion.cpp msgid "3rd Harmonic (Perfect Fifth)" -msgstr "" +msgstr "họa ba thứ 3 (chuẩn thứ 5)" #: src/effects/Distortion.cpp msgid "Valve Overdrive" -msgstr "" +msgstr "tăng tốc cần bấm" #: src/effects/Distortion.cpp msgid "2nd Harmonic (Octave)" -msgstr "" +msgstr "họa ba thứ 2 (quãng tám)" #: src/effects/Distortion.cpp msgid "Gated Expansion Distortion" -msgstr "" +msgstr "cổng biến âm mở rộng" #: src/effects/Distortion.cpp msgid "Leveller, Light, -70dB noise floor" @@ -7383,11 +7160,11 @@ msgstr "Leveller, Heaviest (Nặng Nhất), -70dB noise floor (Nhiễu nhỏ nh #: src/effects/Distortion.cpp msgid "Half-wave Rectifier" -msgstr "" +msgstr "Bộ chỉnh lưu nửa sóng" #: src/effects/Distortion.cpp msgid "Full-wave Rectifier" -msgstr "" +msgstr "Bộ chỉnh lưu toàn sóng" #: src/effects/Distortion.cpp msgid "Full-wave Rectifier (DC blocked)" @@ -7395,35 +7172,35 @@ msgstr "Full-wave Rectifier - Bộ chỉnh lưu toàn sóng (DC bị chặn)" #: src/effects/Distortion.cpp msgid "Percussion Limiter" -msgstr "" +msgstr "bộ hạn chế âm gõ" #: src/effects/Distortion.cpp msgid "Upper Threshold" -msgstr "" +msgstr "ngưỡng trên" #: src/effects/Distortion.cpp msgid "Parameter 1" -msgstr "" +msgstr "tham số 1" #: src/effects/Distortion.cpp msgid "Parameter 2" -msgstr "" +msgstr "tham số 2" #: src/effects/Distortion.cpp msgid "Number of repeats" -msgstr "" +msgstr "Số lần lặp lại" #: src/effects/Distortion.cpp msgid "Distortion" -msgstr "" +msgstr "biến thể" #: src/effects/Distortion.cpp msgid "Waveshaping distortion effect" -msgstr "" +msgstr "hiểu ứng định dạng sóng biến đổi" #: src/effects/Distortion.cpp msgid "Distortion type:" -msgstr "" +msgstr "kiểu biến thể:" #: src/effects/Distortion.cpp msgid "DC blocking filter" @@ -7431,19 +7208,19 @@ msgstr "Bộ lọc chặn DC" #: src/effects/Distortion.cpp msgid "Threshold controls" -msgstr "" +msgstr "điều chỉnh ngưỡng" #: src/effects/Distortion.cpp msgid "Parameter controls" -msgstr "" +msgstr "điều chỉnh tham số" #: src/effects/Distortion.cpp msgid "Clipping level" -msgstr "" +msgstr "mức độ ghim" #: src/effects/Distortion.cpp msgid "Drive" -msgstr "" +msgstr "truyền động" #: src/effects/Distortion.cpp msgid "Make-up Gain" @@ -7451,15 +7228,15 @@ msgstr "" #: src/effects/Distortion.cpp msgid "Clipping threshold" -msgstr "" +msgstr "ngưỡng ghim" #: src/effects/Distortion.cpp msgid "Hardness" -msgstr "" +msgstr "độ rắn" #: src/effects/Distortion.cpp msgid "Distortion amount" -msgstr "" +msgstr "giá trị biến thể" #: src/effects/Distortion.cpp msgid "Output level" @@ -7467,19 +7244,19 @@ msgstr "Tín hiệu đầu ra" #: src/effects/Distortion.cpp msgid "Repeat processing" -msgstr "" +msgstr "xử lý lại" #: src/effects/Distortion.cpp msgid "Harmonic brightness" -msgstr "" +msgstr "cân bằng sáng" #: src/effects/Distortion.cpp msgid "Levelling fine adjustment" -msgstr "" +msgstr "cân bằng điều chỉnh" #: src/effects/Distortion.cpp msgid "Degree of Levelling" -msgstr "" +msgstr "Mức độ cân bằng" #: src/effects/Distortion.cpp msgid "dB Limit" @@ -7487,15 +7264,15 @@ msgstr "Giới hạn dB" #: src/effects/Distortion.cpp msgid "Wet level" -msgstr "" +msgstr "độ ẩm ướt" #: src/effects/Distortion.cpp msgid "Residual level" -msgstr "" +msgstr "mức số dư" #: src/effects/Distortion.cpp msgid "(Not Used):" -msgstr "" +msgstr "(không được sử dụng):" #. i18n-hint: Control range. #: src/effects/Distortion.cpp @@ -7522,14 +7299,16 @@ msgid "DTMF Tones" msgstr "Tones DTMF " #: src/effects/DtmfGen.cpp -msgid "Generates dual-tone multi-frequency (DTMF) tones like those produced by the keypad on telephones" -msgstr "" +msgid "" +"Generates dual-tone multi-frequency (DTMF) tones like those produced by the " +"keypad on telephones" +msgstr "phát âm thanh kép đa tân số (DTMF). những âm thanh này được hổ trợ bằng các phím trên điện thoại" #: src/effects/DtmfGen.cpp msgid "" "DTMF sequence empty.\n" "Check ALL settings for this effect." -msgstr "" +msgstr "chuỗi DTMF trống.\nkiểm tra tất cả cài đặt cho hiệu ứng này." #: src/effects/DtmfGen.cpp msgid "DTMF &sequence:" @@ -7543,11 +7322,11 @@ msgstr "Biên độ (0-1):" #: src/effects/ToneGen.cpp src/effects/TruncSilence.cpp #: src/effects/lv2/LV2Effect.cpp msgid "&Duration:" -msgstr "" +msgstr "&Độ dài:" #: src/effects/DtmfGen.cpp msgid "&Tone/silence ratio:" -msgstr "" +msgstr "&Tỉ lệ tone/ khoảng lặng:" #: src/effects/DtmfGen.cpp msgid "Duty cycle:" @@ -7584,12 +7363,12 @@ msgstr "Tiếng vọng" #: src/effects/Echo.cpp msgid "Repeats the selected audio again and again" -msgstr "" +msgstr "Lập lại nhiều lần audio được chọn. " #: src/effects/Echo.cpp src/effects/FindClipping.cpp #: src/effects/Paulstretch.cpp msgid "Requested value exceeds memory capacity." -msgstr "" +msgstr "giá trị yêu cầu vượt quá dung lượng bộ nhớ." #: src/effects/Echo.cpp msgid "&Delay time (seconds):" @@ -7597,11 +7376,11 @@ msgstr "&Thời gian Trễ (giây):" #: src/effects/Echo.cpp msgid "D&ecay factor:" -msgstr "" +msgstr "Hệ& số suy hao:" #: src/effects/Effect.cpp msgid "Built-in" -msgstr "" +msgstr "nối vào" #: src/effects/Effect.cpp msgid "Presets" @@ -7609,7 +7388,7 @@ msgstr "Presets - Thiết lập sẵn" #: src/effects/Effect.cpp msgid "Export Effect Parameters" -msgstr "" +msgstr "xuất thông số hiệu ứng" #: src/effects/Effect.cpp src/effects/VST/VSTEffect.cpp #: src/xml/XMLFileReader.cpp @@ -7640,7 +7419,7 @@ msgstr "%s: không phải là một tập tin thiết lập sẵn hợp lệ.\n" #: src/effects/Effect.cpp #, c-format msgid "%s: is for a different Effect, Generator or Analyzer.\n" -msgstr "" +msgstr "%s: cho một hiệu ứng khác, phát hoặc phân tích.\n" #: src/effects/Effect.cpp msgid "Preparing preview" @@ -7651,7 +7430,8 @@ msgid "Previewing" msgstr "Đang phát thử" #. i18n-hint: "Nyquist" is an embedded interpreted programming language in -#. Audacity, named in honor of the Swedish-American Harry Nyquist (or Nyqvist). +#. Audacity, named in honor of the Swedish-American Harry Nyquist (or +#. Nyqvist). #. In the translations of this and other strings, you may transliterate the #. name into another alphabet. #: src/effects/Effect.h @@ -7700,11 +7480,11 @@ msgid "" "%s\n" "\n" "More information may be available in 'Help > Diagnostics > Show Log'" -msgstr "" +msgstr "chạy thử hiệu ứng không thành công:\n\n%s\n\nvào \"trờ giúp>chẩn đoán>hiển thị bản ghi\" để có thêm thông tin chi tiết" #: src/effects/EffectManager.cpp msgid "Effect failed to initialize" -msgstr "" +msgstr "không thể chạy hiệu ứng" #: src/effects/EffectManager.cpp #, c-format @@ -7714,15 +7494,15 @@ msgid "" "%s\n" "\n" "More information may be available in 'Help > Diagnostics > Show Log'" -msgstr "" +msgstr "chạy thử lệnh không thành công:\n\n%s\n\nvào \"trờ giúp>chẩn đoán>hiển thị bản ghi\" để có thêm thông tin chi tiết" #: src/effects/EffectManager.cpp msgid "Command failed to initialize" -msgstr "" +msgstr "không thể chạy lệnh" #: src/effects/EffectUI.cpp msgid "Effects Rack" -msgstr "" +msgstr "thanh hiệu ứng" #: src/effects/EffectUI.cpp msgid "&Apply" @@ -7734,15 +7514,15 @@ msgstr "Độ trễ: 0" #: src/effects/EffectUI.cpp msgid "&Bypass" -msgstr "" +msgstr "&đường tắt" #: src/effects/EffectUI.cpp msgid "Active State" -msgstr "" +msgstr "kích hoạt trạng thái" #: src/effects/EffectUI.cpp msgid "Set effect active state" -msgstr "" +msgstr "đặt hiệu ứng kích hoạt trạng thái" #: src/effects/EffectUI.cpp msgid "Show/Hide Editor" @@ -7750,7 +7530,7 @@ msgstr "Hiển thị/ Ẩn trình soạn thảo " #: src/effects/EffectUI.cpp msgid "Open/close effect editor" -msgstr "" +msgstr "Đóng/mở điều chỉnh hiệu ứng" #: src/effects/EffectUI.cpp msgid "Move Up" @@ -7758,7 +7538,7 @@ msgstr "Chuyển Lên" #: src/effects/EffectUI.cpp msgid "Move effect up in the rack" -msgstr "" +msgstr "di chuyển hiệu ứng lên trên thanh hiệu ứng" #: src/effects/EffectUI.cpp msgid "Move Down" @@ -7766,7 +7546,7 @@ msgstr "Chuyển xuống" #: src/effects/EffectUI.cpp msgid "Move effect down in the rack" -msgstr "" +msgstr "di chuyển hiệu ứng xuống trên thanh hiệu ứng" #: src/effects/EffectUI.cpp msgid "Favorite" @@ -7774,11 +7554,11 @@ msgstr "Yêu thích" #: src/effects/EffectUI.cpp msgid "Mark effect as a favorite" -msgstr "" +msgstr "đưa hiệu ứng vào mục ưa thích" #: src/effects/EffectUI.cpp msgid "Remove effect from the rack" -msgstr "" +msgstr "xóa hiệu ứng trên thanh hiệu ứng" #: src/effects/EffectUI.cpp msgid "Name of the effect" @@ -7791,7 +7571,7 @@ msgstr "Độ trễ: %4d" #: src/effects/EffectUI.cpp msgid "Some Command" -msgstr "" +msgstr "một số lệnh" #: src/effects/EffectUI.cpp msgid "Manage presets and options" @@ -7803,7 +7583,7 @@ msgstr "&Quản lý" #: src/effects/EffectUI.cpp msgid "Start and stop playback" -msgstr "" +msgstr "bật và tắt phát lại" #. i18n-hint: The access key "&P" should be the same in #. "Stop &Playback" and "Start &Playback" @@ -7914,10 +7694,7 @@ msgid "" "Preset already exists.\n" "\n" "Replace?" -msgstr "" -"Có Thiết lập sẵn rồi\n" -"\n" -"Bạn có muốn thay thế không? " +msgstr "Có Thiết lập sẵn rồi\n\nBạn có muốn thay thế không? " #. i18n-hint: The access key "&P" should be the same in #. "Stop &Playback" and "Start &Playback" @@ -7956,7 +7733,7 @@ msgstr "EQ đồ hoạ" #: src/effects/Equalization.cpp msgid "Adjusts the volume levels of particular frequencies" -msgstr "" +msgstr "Điều chỉnh mức âm lượng của các tần số cụ thể" #: src/effects/Equalization.cpp msgid "100Hz Rumble" @@ -7976,7 +7753,7 @@ msgstr "Bass Cut" #: src/effects/Equalization.cpp msgid "Low rolloff for speech" -msgstr "" +msgstr "Hiệu suất thấp cho âm thanh" #: src/effects/Equalization.cpp msgid "RIAA" @@ -7998,19 +7775,20 @@ msgstr "Treble Cut" msgid "" "To use this filter curve in a macro, please choose a new name for it.\n" "Choose the 'Save/Manage Curves...' button and rename the 'unnamed' curve, then use that one." -msgstr "" +msgstr "Để sử dụng biểu đồ bộ lọc này trong macro, vui lòng đặt tên mới cho nó.\nChọn vào \"lưu/quản lý biểu đồ...\" chọn và đặt lại tên cho \"biểu đồ chưa có tên\"" #: src/effects/Equalization.cpp msgid "Filter Curve EQ needs a different name" -msgstr "" +msgstr "biểu đồ bộ lọc EQ cần một tên khác" #: src/effects/Equalization.cpp -msgid "To apply Equalization, all selected tracks must have the same sample rate." -msgstr "" +msgid "" +"To apply Equalization, all selected tracks must have the same sample rate." +msgstr "để áp dụng cân bằng. tất cả các dải được chọn phải có cùng tốc độ lấy mẫu" #: src/effects/Equalization.cpp msgid "Track sample rate is too low for this effect." -msgstr "" +msgstr "tốc độ lấy mẫu đoạn âm là quá thấp cho hiệu ứng này" #: src/effects/Equalization.cpp msgid "Effect Unavailable" @@ -8047,7 +7825,8 @@ msgstr "%d Hz" msgid "%g kHz" msgstr "%g kHz" -#. i18n-hint k is SI abbreviation for x1,000. Usually unchanged in translation. +#. i18n-hint k is SI abbreviation for x1,000. Usually unchanged in +#. translation. #: src/effects/Equalization.cpp #, c-format msgid "%gk" @@ -8067,27 +7846,27 @@ msgstr "&Vẽ" #: src/effects/Equalization.cpp msgid "&Graphic" -msgstr "" +msgstr "&đồ họa" #: src/effects/Equalization.cpp msgid "Interpolation type" -msgstr "" +msgstr "kiểu nội suy" #: src/effects/Equalization.cpp msgid "Linear Frequency Scale" -msgstr "" +msgstr "gam tần số tuyến tính" #: src/effects/Equalization.cpp msgid "Li&near Frequency Scale" -msgstr "" +msgstr "ga&m tần số tuyến tính" #: src/effects/Equalization.cpp msgid "Length of &Filter:" -msgstr "" +msgstr "chiều dài &bộ lọc" #: src/effects/Equalization.cpp msgid "Length of Filter" -msgstr "" +msgstr "chiều dài bộ lọc" #: src/effects/Equalization.cpp msgid "&Select Curve:" @@ -8103,7 +7882,7 @@ msgstr "Lưu / Quản Lý Cung" #: src/effects/Equalization.cpp msgid "Fla&tten" -msgstr "" +msgstr "cán mỏng" #: src/effects/Equalization.cpp msgid "&Invert" @@ -8158,11 +7937,7 @@ msgid "" "%s\n" "Error message says:\n" "%s" -msgstr "" -"Lỗi khi nhập EQ Curves từ tập tin\n" -"%s\n" -"Thông báo lỗi:\n" -"%s" +msgstr "Lỗi khi nhập EQ Curves từ tập tin\n%s\nThông báo lỗi:\n%s" #: src/effects/Equalization.cpp msgid "Error Loading EQ Curves" @@ -8174,7 +7949,7 @@ msgstr "Lỗi khi lưu EQ Curves" #: src/effects/Equalization.cpp msgid "Requested curve not found, using 'unnamed'" -msgstr "" +msgstr "không tìm thấy biểu đồ, thử dùng \"không tên\"" #: src/effects/Equalization.cpp msgid "Curve not found" @@ -8182,11 +7957,11 @@ msgstr "Không tìm cong được" #: src/effects/Equalization.cpp msgid "Manage Curves List" -msgstr "" +msgstr "danh sách quản lý biểu đồ" #: src/effects/Equalization.cpp msgid "Manage Curves" -msgstr "" +msgstr "quản lý biểu đồ" #: src/effects/Equalization.cpp msgid "&Curves" @@ -8202,7 +7977,7 @@ msgstr "&Xoá" #: src/effects/Equalization.cpp msgid "&Get More..." -msgstr "" +msgstr "&tìm hiểu thêm..." #: src/effects/Equalization.cpp msgid "De&faults" @@ -8212,15 +7987,15 @@ msgstr "Mă&c định" msgid "" "Rename 'unnamed' to save a new entry.\n" "'OK' saves all changes, 'Cancel' doesn't." -msgstr "" +msgstr "Đổi tên 'không tên' để lưu một mục mới.\n\"ok\" để lưu, \"hủy\" để bỏ." #: src/effects/Equalization.cpp msgid "'unnamed' always stays at the bottom of the list" -msgstr "" +msgstr "'không tên' luôn nằm ở cuối danh sách" #: src/effects/Equalization.cpp msgid "'unnamed' is special" -msgstr "" +msgstr "\"không tên\" là riêng biệt" #: src/effects/Equalization.cpp #, c-format @@ -8238,28 +8013,28 @@ msgstr "Đặt lại tên '%s'" #: src/effects/Equalization.cpp msgid "Name is the same as the original one" -msgstr "" +msgstr "tên bị trùng với tên gốc" #: src/effects/Equalization.cpp msgid "Same name" -msgstr "" +msgstr "trùng tên" #: src/effects/Equalization.cpp #, c-format msgid "Overwrite existing curve '%s'?" -msgstr "" +msgstr "thay thế biểu đồ đã có sẵn '%s'?" #: src/effects/Equalization.cpp msgid "Curve exists" -msgstr "" +msgstr "biểu đồ đang có" #: src/effects/Equalization.cpp msgid "You cannot delete the 'unnamed' curve." -msgstr "" +msgstr "bạn không thể xóa biểu đồ không tên." #: src/effects/Equalization.cpp msgid "Can't delete 'unnamed'" -msgstr "" +msgstr "không thể xóa \"những gì chưa đặt tên\"" #: src/effects/Equalization.cpp #, c-format @@ -8277,36 +8052,36 @@ msgstr " Xoá bỏ %d thứ?" #: src/effects/Equalization.cpp msgid "You cannot delete the 'unnamed' curve, it is special." -msgstr "" +msgstr "bạn không thể xóa biểu đồ không tên, nó là trường hợp ngoại lệ." #: src/effects/Equalization.cpp msgid "Choose an EQ curve file" -msgstr "" +msgstr "chọn tệp biểu đồ EQ" #: src/effects/Equalization.cpp msgid "Export EQ curves as..." -msgstr "" +msgstr "xuất biểu đồ EQ thành..." #: src/effects/Equalization.cpp msgid "You cannot export 'unnamed' curve, it is special." -msgstr "" +msgstr "không thể xuất biểu đồ không tên, nó là trường hợp ngoại lệ." #: src/effects/Equalization.cpp msgid "Cannot Export 'unnamed'" -msgstr "" +msgstr "không thể xuất \"những gì chưa đặt tên\"" #: src/effects/Equalization.cpp #, c-format msgid "%d curves exported to %s" -msgstr "" +msgstr "%dbiểu đồ xuất đến%s" #: src/effects/Equalization.cpp msgid "Curves exported" -msgstr "" +msgstr "biểu đồ đã xuất" #: src/effects/Equalization.cpp msgid "No curves exported" -msgstr "" +msgstr "không có biểu đồ đã xuất" #: src/effects/Equalization48x.cpp #, c-format @@ -8317,13 +8092,7 @@ msgid "" "Default Threaded: %s\n" "SSE: %s\n" "SSE Threaded: %s\n" -msgstr "" -"Thời gian điểm chuẩn:\n" -"Bản gốc: %s\n" -"Mặc định Default Segmented: %s\n" -"Mặc định Default Threaded: %s\n" -"SSE: %s\n" -"SSE Threaded: %s\n" +msgstr "Thời gian điểm chuẩn:\nBản gốc: %s\nMặc định Default Segmented: %s\nMặc định Default Threaded: %s\nSSE: %s\nSSE Threaded: %s\n" #: src/effects/Fade.cpp msgid "Fade In" @@ -8335,11 +8104,11 @@ msgstr "Âm lượng giảm dần" #: src/effects/Fade.cpp msgid "Applies a linear fade-in to the selected audio" -msgstr "" +msgstr "Áp dụng độ mờ dần vào trong tuyến tính cho âm thanh đã chọn" #: src/effects/Fade.cpp msgid "Applies a linear fade-out to the selected audio" -msgstr "" +msgstr "Áp dụng độ mờ dần ra ngoài tuyến tính cho âm thanh đã chọn" #: src/effects/FindClipping.cpp msgid "Find Clipping" @@ -8347,7 +8116,7 @@ msgstr "Tìm điểm ghim" #: src/effects/FindClipping.cpp msgid "Creates labels where clipping is detected" -msgstr "" +msgstr "tạo bảng không chứa ghim" #: src/effects/FindClipping.cpp msgid "Clipping" @@ -8355,15 +8124,15 @@ msgstr "Đang Ghim" #: src/effects/FindClipping.cpp msgid "&Start threshold (samples):" -msgstr "" +msgstr "&Ngưỡng bắt đầu (mẫu):" #: src/effects/FindClipping.cpp msgid "St&op threshold (samples):" -msgstr "" +msgstr "Ngưỡng kết& thúc (mẫu):" #: src/effects/Generator.cpp msgid "There is not enough room available to generate the audio" -msgstr "" +msgstr "Không có đủ chỗ chứa để tạo âm thanh" #: src/effects/Invert.cpp msgid "Invert" @@ -8371,19 +8140,19 @@ msgstr "Đảo" #: src/effects/Invert.cpp msgid "Flips the audio samples upside-down, reversing their polarity" -msgstr "" +msgstr "Lật ngược các mẫu âm thanh, đảo ngược cực tính của chúng" #: src/effects/LoadEffects.cpp msgid "Builtin Effects" -msgstr "" +msgstr "Hiệu ứng tích hợp" #: src/effects/LoadEffects.cpp msgid "Provides builtin effects to Audacity" -msgstr "" +msgstr "cung cấp hiệu ứng tích hợp cho Audacity" #: src/effects/LoadEffects.cpp msgid "Unknown built-in effect name" -msgstr "" +msgstr "hiệu ứng tích hợp không xác định" #: src/effects/Loudness.cpp msgid "perceived loudness" @@ -8438,7 +8207,7 @@ msgstr "Chuẩn hoá kênh &stereo riêng biệt" #: src/effects/Loudness.cpp msgid "&Treat mono as dual-mono (recommended)" -msgstr "" +msgstr "xử lý đơn âm như đơn âm kép (nên dùng)" #: src/effects/Loudness.cpp src/effects/Normalize.cpp msgid "(Maximum 0dB)" @@ -8469,7 +8238,7 @@ msgstr "Nhiễu" #: src/effects/Noise.cpp msgid "Generates one of three different types of noise" -msgstr "" +msgstr "phát một trong ba loại âm khác nhau" #: src/effects/Noise.cpp msgid "&Noise type:" @@ -8477,15 +8246,15 @@ msgstr "Loại &Nhiễu" #: src/effects/NoiseReduction.cpp msgid "Median" -msgstr "" +msgstr "trung bình" #: src/effects/NoiseReduction.cpp msgid "Second greatest" -msgstr "" +msgstr "số giây lớn nhất" #: src/effects/NoiseReduction.cpp msgid "Old" -msgstr "" +msgstr "cũ" #: src/effects/NoiseReduction.cpp msgid "none, Hann (2.0.6 behavior)" @@ -8521,7 +8290,7 @@ msgstr "Giảm Nhiễu" #: src/effects/NoiseReduction.cpp msgid "Removes background noise such as fans, tape noise, or hums" -msgstr "" +msgstr "xóa tạp âm như tiếng quạt, tiếng chạy băng, hoặc tiếng vo ve " #: src/effects/NoiseReduction.cpp msgid "Steps per block are too few for the window types." @@ -8533,27 +8302,29 @@ msgstr "Các bước trên mỗi khối quá nhiểu với kích thước cừa #: src/effects/NoiseReduction.cpp msgid "Median method is not implemented for more than four steps per window." -msgstr "" +msgstr "phép tính trung bình không được thực hiện quá bốn lần trên mỗi cửa sổ." #: src/effects/NoiseReduction.cpp msgid "You must specify the same window size for steps 1 and 2." -msgstr "" +msgstr "Bạn phải chỉ định cùng một kích thước cửa sổ cho các bước 1 và 2. " #: src/effects/NoiseReduction.cpp msgid "Warning: window types are not the same as for profiling." -msgstr "" +msgstr "cảnh báo: các kiểu cửa sổ không giống nhau để định dạng." #: src/effects/NoiseReduction.cpp msgid "All noise profile data must have the same sample rate." -msgstr "" +msgstr "Tất cả dữ liệu tiếng ồn phải có cùng tốc độ lấy mẫu." #: src/effects/NoiseReduction.cpp -msgid "The sample rate of the noise profile must match that of the sound to be processed." -msgstr "" +msgid "" +"The sample rate of the noise profile must match that of the sound to be " +"processed." +msgstr "Tốc độ lấy mẫu của dữ liệu tiếng ồn phải phù hợp với tốc độ lấy mẫu của âm thanh để có thể được xử lý." #: src/effects/NoiseReduction.cpp msgid "Selected noise profile is too short." -msgstr "" +msgstr "dữ liệu tiếng ồn được chọn quá ngắn." #: src/effects/NoiseReduction.cpp msgid "&Noise reduction (dB):" @@ -8565,7 +8336,7 @@ msgstr "Giảm Nhiễu" #: src/effects/NoiseReduction.cpp msgid "&Sensitivity:" -msgstr "" +msgstr "&Độ nhạy:" #: src/effects/NoiseReduction.cpp src/effects/NoiseRemoval.cpp msgid "Sensitivity" @@ -8573,35 +8344,35 @@ msgstr "Độ nhạy" #: src/effects/NoiseReduction.cpp msgid "Attac&k time (secs):" -msgstr "" +msgstr "thời gian khởi& chạy (giây):" #: src/effects/NoiseReduction.cpp msgid "Attack time" -msgstr "" +msgstr "thời gian khởi chạy" #: src/effects/NoiseReduction.cpp msgid "R&elease time (secs):" -msgstr "" +msgstr "thời gian phát& hành (giây):" #: src/effects/NoiseReduction.cpp msgid "Release time" -msgstr "" +msgstr "thời gian phát hành" #: src/effects/NoiseReduction.cpp msgid "&Frequency smoothing (bands):" -msgstr "" +msgstr "&làm mượt tần số (dải):" #: src/effects/NoiseReduction.cpp src/effects/NoiseRemoval.cpp msgid "Frequency smoothing" -msgstr "" +msgstr "làm mượt tần số" #: src/effects/NoiseReduction.cpp msgid "Sensiti&vity (dB):" -msgstr "" +msgstr "độ &nhạy (dB):" #: src/effects/NoiseReduction.cpp msgid "Old Sensitivity" -msgstr "" +msgstr "độ nhạy cũ" #: src/effects/NoiseReduction.cpp src/effects/NoiseRemoval.cpp msgid "Step 1" @@ -8611,13 +8382,11 @@ msgstr "Bước 1" msgid "" "Select a few seconds of just noise so Audacity knows what to filter out,\n" "then click Get Noise Profile:" -msgstr "" -"Chọn vùng có nhiễu để phân tích,\n" -"Bấm nút 'Phân tích nhiễu' sau khi chọn:" +msgstr "Chọn vùng có nhiễu để phân tích,\nBấm nút 'Phân tích nhiễu' sau khi chọn:" #: src/effects/NoiseReduction.cpp src/effects/NoiseRemoval.cpp msgid "&Get Noise Profile" -msgstr "" +msgstr "&nhận dữ liệu tiếng ồn" #: src/effects/NoiseReduction.cpp src/effects/NoiseRemoval.cpp msgid "Step 2" @@ -8627,7 +8396,7 @@ msgstr "Bước 2" msgid "" "Select all of the audio you want filtered, choose how much noise you want\n" "filtered out, and then click 'OK' to reduce noise.\n" -msgstr "" +msgstr "Chọn tất cả các vùng bạn cần lọc nhiễu, chọn hệ số lọc nhiễu, \nsau đó nhấn 'OK' để bắt đầu lọc nhiễu.\n" #: src/effects/NoiseReduction.cpp src/effects/NoiseRemoval.cpp msgid "Noise:" @@ -8636,28 +8405,29 @@ msgstr "Nhiễu:" #. i18n-hint: Translate differently from "Residue" ! #: src/effects/NoiseReduction.cpp msgid "Re&duce" -msgstr "" +msgstr "giảm &xuống" #: src/effects/NoiseReduction.cpp src/effects/NoiseRemoval.cpp msgid "&Isolate" -msgstr "" +msgstr "&tách lọc" -#. i18n-hint: Means the difference between effect and original sound. Translate differently from "Reduce" ! +#. i18n-hint: Means the difference between effect and original sound. +#. Translate differently from "Reduce" ! #: src/effects/NoiseReduction.cpp msgid "Resid&ue" -msgstr "" +msgstr "còn &dư" #: src/effects/NoiseReduction.cpp msgid "Advanced Settings" -msgstr "" +msgstr "cài đặt nâng cao" #: src/effects/NoiseReduction.cpp msgid "&Window types:" -msgstr "" +msgstr "&loại cửa sổ:" #: src/effects/NoiseReduction.cpp msgid "Window si&ze:" -msgstr "" +msgstr "&Kích thước cửa sổ:" #: src/effects/NoiseReduction.cpp src/export/ExportFFmpegDialogs.cpp msgid "8" @@ -8693,7 +8463,7 @@ msgstr "" #: src/effects/NoiseReduction.cpp msgid "2048 (default)" -msgstr "" +msgstr "2048 (mặc định)" #: src/effects/NoiseReduction.cpp src/prefs/SpectrumPrefs.cpp msgid "4096" @@ -8709,7 +8479,7 @@ msgstr "" #: src/effects/NoiseReduction.cpp msgid "S&teps per window:" -msgstr "" +msgstr "đi &qua từng cửa sổ:" #: src/effects/NoiseReduction.cpp src/export/ExportFFmpegDialogs.cpp #: src/export/ExportFLAC.cpp @@ -8718,11 +8488,11 @@ msgstr "2" #: src/effects/NoiseReduction.cpp msgid "4 (default)" -msgstr "" +msgstr "4 (mặc định)" #: src/effects/NoiseReduction.cpp msgid "Discrimination &method:" -msgstr "" +msgstr "phương pháp& phân tách:" #: src/effects/NoiseRemoval.cpp msgid "Noise Removal" @@ -8730,15 +8500,13 @@ msgstr "Xoá nhiễu" #: src/effects/NoiseRemoval.cpp msgid "Removes constant background noise such as fans, tape noise, or hums" -msgstr "" +msgstr "xóa tạp âm nền khó chịu như tiếng quạt, tiếng chạy băng, hoặc tiếng vo ve" #: src/effects/NoiseRemoval.cpp msgid "" "Select all of the audio you want filtered, choose how much noise you want\n" "filtered out, and then click 'OK' to remove noise.\n" -msgstr "" -"Chọn tất cả các vùng bạn cần xoá nhiễu, chọn hệ số lọc nhiễu, sau đó\n" -"nhấn 'OK' để bắt đầu xoá nhiễu.\n" +msgstr "Chọn tất cả các vùng bạn cần xoá nhiễu, chọn hệ số lọc nhiễu, sau đó\nnhấn 'OK' để bắt đầu xoá nhiễu.\n" #: src/effects/NoiseRemoval.cpp msgid "Noise re&duction (dB):" @@ -8746,23 +8514,23 @@ msgstr "Giảm biên &độ nhiễu (dB):" #: src/effects/NoiseRemoval.cpp msgid "&Sensitivity (dB):" -msgstr "" +msgstr "&Độ nhạy (dB):" #: src/effects/NoiseRemoval.cpp msgid "Fr&equency smoothing (Hz):" -msgstr "" +msgstr "làm &mượt tần số (Hz):" #: src/effects/NoiseRemoval.cpp msgid "Attac&k/decay time (secs):" -msgstr "" +msgstr "thời gian khởi& chạy/phân hủy (giây):" #: src/effects/NoiseRemoval.cpp msgid "Attack/decay time" -msgstr "" +msgstr "thời gian khởi chạy/phân hủy (giây):" #: src/effects/NoiseRemoval.cpp msgid "Re&move" -msgstr "" +msgstr "x&óa" #: src/effects/Normalize.cpp msgid "Normalize" @@ -8770,7 +8538,7 @@ msgstr "Chuẩn hoá" #: src/effects/Normalize.cpp msgid "Sets the peak amplitude of one or more tracks" -msgstr "" +msgstr "thiết lập biên độ đỉnh cho đoạn âm" #: src/effects/Normalize.cpp msgid "Removing DC offset and Normalizing...\n" @@ -8778,7 +8546,7 @@ msgstr "Loại bỏ độ di DC và chuẩn hóa ...\n" #: src/effects/Normalize.cpp msgid "Removing DC offset...\n" -msgstr "" +msgstr "Loại bỏ độ di DC...\n" #: src/effects/Normalize.cpp msgid "Normalizing without removing DC offset...\n" @@ -8786,36 +8554,36 @@ msgstr "Chuẩn hoá mà không cần loại bỏ độ di DC \n" #: src/effects/Normalize.cpp msgid "Not doing anything...\n" -msgstr "" +msgstr "không làm gì cả...\n" #: src/effects/Normalize.cpp #, c-format msgid "Analyzing first track of stereo pair: %s" -msgstr "" +msgstr "phân tích đoạn nhạc đầu tiền của kết nối stereo: %s" #: src/effects/Normalize.cpp #, c-format msgid "Analyzing second track of stereo pair: %s" -msgstr "" +msgstr "phân tích đoạn nhạc thứ hai của kết nối stereo: %s" #: src/effects/Normalize.cpp #, c-format msgid "Processing stereo channels independently: %s" -msgstr "" +msgstr "xử lý các kênh stereo riêng biệt: %s" #: src/effects/Normalize.cpp #, c-format msgid "Processing first track of stereo pair: %s" -msgstr "" +msgstr "xử lý đoạn nhạc đầu tiền của kết nối stereo: %s" #: src/effects/Normalize.cpp #, c-format msgid "Processing second track of stereo pair: %s" -msgstr "" +msgstr "xử lý đoạn nhạc thứ hai của kết nối stereo: %s" #: src/effects/Normalize.cpp msgid "&Remove DC offset (center on 0.0 vertically)" -msgstr "" +msgstr "&Loại bỏ độ di DC (tâm ở 0.0 theo chiều dọc)" #: src/effects/Normalize.cpp msgid "&Normalize peak amplitude to " @@ -8823,11 +8591,11 @@ msgstr "Chuẩn hoá biên độ đỉnh " #: src/effects/Normalize.cpp msgid "Peak amplitude dB" -msgstr "" +msgstr "biên độ đỉnh dB" #: src/effects/Normalize.cpp msgid "N&ormalize stereo channels independently" -msgstr "" +msgstr "Chuẩn& hoá kênh stereo riêng biệt" #: src/effects/Paulstretch.cpp msgid "Paulstretch" @@ -8835,21 +8603,21 @@ msgstr "" #: src/effects/Paulstretch.cpp msgid "Paulstretch is only for an extreme time-stretch or \"stasis\" effect" -msgstr "" +msgstr "Paulstretch chỉ dùng được cho hiệu ứng vọng thời gian hoặc \"hiệu ứng hiệu ứng đóng băng\"" #. i18n-hint: This is how many times longer the sound will be, e.g. applying #. * the effect to a 1-second sample, with the default Stretch Factor of 10.0 #. * will give an (approximately) 10 second sound -#. #: src/effects/Paulstretch.cpp msgid "&Stretch Factor:" -msgstr "" +msgstr "&hiệu số vọng:" #: src/effects/Paulstretch.cpp msgid "&Time Resolution (seconds):" -msgstr "" +msgstr "&thời gian xử lý (giây):" -#. i18n-hint: 'Time Resolution' is the name of a control in the Paulstretch effect. +#. i18n-hint: 'Time Resolution' is the name of a control in the Paulstretch +#. effect. #: src/effects/Paulstretch.cpp #, c-format msgid "" @@ -8857,9 +8625,10 @@ msgid "" "\n" "Try increasing the audio selection to at least %.1f seconds,\n" "or reducing the 'Time Resolution' to less than %.1f seconds." -msgstr "" +msgstr "Audio được chọn quá ngắn để xem trước.\n\nhãy chọn thêm và mở rộng audio ít nhất là %.1f giây.\nhoặc giảm thời gian phân giải còn ít nhất hơn %.1f giây." -#. i18n-hint: 'Time Resolution' is the name of a control in the Paulstretch effect. +#. i18n-hint: 'Time Resolution' is the name of a control in the Paulstretch +#. effect. #: src/effects/Paulstretch.cpp #, c-format msgid "" @@ -8867,9 +8636,10 @@ msgid "" "\n" "For the current audio selection, the maximum\n" "'Time Resolution' is %.1f seconds." -msgstr "" +msgstr "không xem trước được\n\naudio đang được chọn là cực đại.\n\"thời gian phân giải\" là %.1fgiây." -#. i18n-hint: 'Time Resolution' is the name of a control in the Paulstretch effect. +#. i18n-hint: 'Time Resolution' is the name of a control in the Paulstretch +#. effect. #: src/effects/Paulstretch.cpp #, c-format msgid "" @@ -8877,7 +8647,7 @@ msgid "" "\n" "Try increasing the audio selection to at least %.1f seconds,\n" "or reducing the 'Time Resolution' to less than %.1f seconds." -msgstr "" +msgstr "thời gian phân giải quá dài.\n\nhãy chọn thêm và mở rộng audio ít nhất là %.1f giây.\nhoặc giảm thời gian phân giải còn ít nhất hơn %.1f giây." #: src/effects/Phaser.cpp msgid "Phaser" @@ -8885,7 +8655,7 @@ msgstr "Dịch pha" #: src/effects/Phaser.cpp msgid "Combines phase-shifted signals with the original signal" -msgstr "" +msgstr "Kết hợp các tín hiệu lệch pha với tín hiệu gốc" #: src/effects/Phaser.cpp msgid "&Stages:" @@ -8897,15 +8667,15 @@ msgstr "vùng nội dung" #: src/effects/Phaser.cpp msgid "&Dry/Wet:" -msgstr "" +msgstr "&khô/ướt:" #: src/effects/Phaser.cpp msgid "Dry Wet" -msgstr "" +msgstr "khô ướt" #: src/effects/Phaser.cpp src/effects/Wahwah.cpp msgid "LFO Freq&uency (Hz):" -msgstr "" +msgstr "Bộ dao động tần thấp (Hz):" #: src/effects/Phaser.cpp src/effects/Wahwah.cpp msgid "LFO frequency in hertz" @@ -8913,27 +8683,27 @@ msgstr "LFO Bộ dao động tần thấp (Hz)" #: src/effects/Phaser.cpp src/effects/Wahwah.cpp msgid "LFO Sta&rt Phase (deg.):" -msgstr "" +msgstr "Pha ban& đầu của dao động (độ):" #: src/effects/Phaser.cpp src/effects/Wahwah.cpp msgid "LFO start phase in degrees" -msgstr "" +msgstr "Pha ban đầu dao động trong độ" #: src/effects/Phaser.cpp msgid "Dept&h:" -msgstr "" +msgstr "độ &sâu:" #: src/effects/Phaser.cpp src/effects/Wahwah.cpp msgid "Depth in percent" -msgstr "" +msgstr "phần trăm độ sâu" #: src/effects/Phaser.cpp msgid "Feedbac&k (%):" -msgstr "" +msgstr "phản &hồi (%):" #: src/effects/Phaser.cpp msgid "Feedback in percent" -msgstr "" +msgstr "phần trăm phản hồi" #: src/effects/Phaser.cpp src/effects/Wahwah.cpp msgid "&Output gain (dB):" @@ -8949,17 +8719,14 @@ msgstr "Sửa" #: src/effects/Repair.cpp msgid "Sets the peak amplitude of a one or more tracks" -msgstr "" +msgstr "thiết lập biên độ đỉnh cho đoạn âm" #: src/effects/Repair.cpp msgid "" "The Repair effect is intended to be used on very short sections of damaged audio (up to 128 samples).\n" "\n" "Zoom in and select a tiny fraction of a second to repair." -msgstr "" -"Hiệu ứng Sửa chữa chỉ áp dụng cho một vùng âm thanh bị hỏng rất ngắn (tối đa 128 mẫu).\n" -"\n" -"Phóng to và chọn khung thời gian cần sửa chữa." +msgstr "Hiệu ứng Sửa chữa chỉ áp dụng cho một vùng âm thanh bị hỏng rất ngắn (tối đa 128 mẫu).\n\nPhóng to và chọn khung thời gian cần sửa chữa." #: src/effects/Repair.cpp msgid "" @@ -8968,7 +8735,7 @@ msgid "" "Please select a region that has audio touching at least one side of it.\n" "\n" "The more surrounding audio, the better it performs." -msgstr "" +msgstr "Sửa chữa dự án bằng cách sử dụng dữ liệu âm thanh bên ngoài vùng lựa chọn.\n\nhãy chọn một vùng chứa âm thanh liên quan đến nó.\n\ncàng nhiều âm thanh liên quan, việc sửa chữa sẽ càng tốt hơn." #: src/effects/Repeat.cpp msgid "Repeat" @@ -8976,33 +8743,33 @@ msgstr "Lặp lại" #: src/effects/Repeat.cpp msgid "Repeats the selection the specified number of times" -msgstr "" +msgstr "Lặp lại âm thanh đã chọn với số lần chỉ định" #: src/effects/Repeat.cpp msgid "&Number of repeats to add:" -msgstr "" +msgstr "&nhập số lần lập lại:" #: src/effects/Repeat.cpp msgid "Current selection length: dd:hh:mm:ss" -msgstr "" +msgstr "Độ dài vùng đang chọn:: dd:hh:mm:ss" #: src/effects/Repeat.cpp msgid "New selection length: dd:hh:mm:ss" -msgstr "" +msgstr "Độ dài vùng chọn mới: dd:hh:mm:ss" #: src/effects/Repeat.cpp #, c-format msgid "Current selection length: %s" -msgstr "" +msgstr "Độ dài vùng đang chọn: %s" #: src/effects/Repeat.cpp #, c-format msgid "New selection length: %s" -msgstr "" +msgstr "Độ dài vùng chọn mới: %s" #: src/effects/Repeat.cpp msgid "Warning: No repeats." -msgstr "" +msgstr "Cảnh báo: không được lập lại." #: src/effects/Reverb.cpp msgid "Vocal I" @@ -9014,63 +8781,63 @@ msgstr "" #: src/effects/Reverb.cpp msgid "Bathroom" -msgstr "" +msgstr "phòng tắm" #: src/effects/Reverb.cpp msgid "Small Room Bright" -msgstr "" +msgstr "ánh sáng trong phòng nhỏ" #: src/effects/Reverb.cpp msgid "Small Room Dark" -msgstr "" +msgstr "bóng tối trong phòng nhỏ" #: src/effects/Reverb.cpp msgid "Medium Room" -msgstr "" +msgstr "phòng vừa" #: src/effects/Reverb.cpp msgid "Large Room" -msgstr "" +msgstr "phòng rộng" #: src/effects/Reverb.cpp msgid "Church Hall" -msgstr "" +msgstr "đại sảnh nhà thờ" #: src/effects/Reverb.cpp msgid "Cathedral" -msgstr "" +msgstr "nhà thờ lớn" #: src/effects/Reverb.cpp msgid "Reverb" -msgstr "" +msgstr "tiếng vọng" #: src/effects/Reverb.cpp msgid "Adds ambience or a \"hall effect\"" -msgstr "" +msgstr "nhập biên độ hoặc \"hiệu ứng đại sảnh\"" #: src/effects/Reverb.cpp msgid "&Room Size (%):" -msgstr "" +msgstr "&kích thước phòng (%):" #: src/effects/Reverb.cpp msgid "&Pre-delay (ms):" -msgstr "" +msgstr "trước khi hoãn (ms):" #: src/effects/Reverb.cpp msgid "Rever&berance (%):" -msgstr "" +msgstr "Độ& vang (%):" #: src/effects/Reverb.cpp msgid "Da&mping (%):" -msgstr "" +msgstr "giảm &âm (%):" #: src/effects/Reverb.cpp msgid "Tone &Low (%):" -msgstr "" +msgstr "tong &thấp (%):" #: src/effects/Reverb.cpp msgid "Tone &High (%):" -msgstr "" +msgstr "tong &cao (%):" #: src/effects/Reverb.cpp msgid "Wet &Gain (dB):" @@ -9091,7 +8858,7 @@ msgstr "" #: src/effects/Reverb.cpp #, c-format msgid "Reverb: %s" -msgstr "" +msgstr "tiếng vọng: %s" #: src/effects/Reverse.cpp msgid "Reverse" @@ -9099,172 +8866,186 @@ msgstr "Đảo ngược" #: src/effects/Reverse.cpp msgid "Reverses the selected audio" -msgstr "" +msgstr "Đảo chiều audio đã chọn" #: src/effects/SBSMSEffect.h msgid "SBSMS Time / Pitch Stretch" msgstr "" -#. i18n-hint: Butterworth is the name of the person after whom the filter type is named. +#. i18n-hint: Butterworth is the name of the person after whom the filter type +#. is named. #: src/effects/ScienFilter.cpp msgid "Butterworth" msgstr "" -#. i18n-hint: Chebyshev is the name of the person after whom the filter type is named. +#. i18n-hint: Chebyshev is the name of the person after whom the filter type +#. is named. #: src/effects/ScienFilter.cpp msgid "Chebyshev Type I" msgstr "" -#. i18n-hint: Chebyshev is the name of the person after whom the filter type is named. +#. i18n-hint: Chebyshev is the name of the person after whom the filter type +#. is named. #: src/effects/ScienFilter.cpp msgid "Chebyshev Type II" msgstr "" #: src/effects/ScienFilter.cpp msgid "Lowpass" -msgstr "" +msgstr "lọc thông thấp" #: src/effects/ScienFilter.cpp msgid "Highpass" -msgstr "" +msgstr "lọc thông cao" #: src/effects/ScienFilter.cpp msgid "Classic Filters" -msgstr "" +msgstr "bộ lọc cổ điển" #. i18n-hint: "infinite impulse response" #: src/effects/ScienFilter.cpp msgid "Performs IIR filtering that emulates analog filters" -msgstr "" +msgstr "Thực hiện lọc IIR mô phỏng các bộ lọc tương tự" #: src/effects/ScienFilter.cpp msgid "To apply a filter, all selected tracks must have the same sample rate." -msgstr "" +msgstr "để áp dụng bộ lọc. tất cả các đoạn âm được chọn phải có cùng tốc độ lấy mẫu." #: src/effects/ScienFilter.cpp msgid "&Filter Type:" -msgstr "" +msgstr "&kiểu bộ lọc:" -#. i18n-hint: 'Order' means the complexity of the filter, and is a number between 1 and 10. +#. i18n-hint: 'Order' means the complexity of the filter, and is a number +#. between 1 and 10. #: src/effects/ScienFilter.cpp msgid "O&rder:" -msgstr "" +msgstr "lệ&nh:" #: src/effects/ScienFilter.cpp msgid "&Passband Ripple:" -msgstr "" +msgstr "&dải gợn sóng:" #: src/effects/ScienFilter.cpp msgid "Passband Ripple (dB)" -msgstr "" +msgstr "dải gợn sóng (dB)" #: src/effects/ScienFilter.cpp msgid "&Subtype:" -msgstr "" +msgstr "&kiểu phụ:" #: src/effects/ScienFilter.cpp msgid "Cutoff (Hz)" -msgstr "" +msgstr "cắt (Hz)" #: src/effects/ScienFilter.cpp msgid "C&utoff:" -msgstr "" +msgstr "c&ắt" #: src/effects/ScienFilter.cpp msgid "Minimum S&topband Attenuation:" -msgstr "" +msgstr "Suy yếu dải &dừng tối thiểu:" #: src/effects/ScienFilter.cpp msgid "Minimum S&topband Attenuation (dB)" -msgstr "" +msgstr "Suy yếu dải &dừng tối thiểu (dB)" #: src/effects/ScoreAlignDialog.cpp msgid "Align MIDI to Audio" -msgstr "" +msgstr "xếp chuỗi MIDI đến audio" #: src/effects/ScoreAlignDialog.cpp msgid "Frame Period:" -msgstr "" +msgstr "thời gian khung hình:" #: src/effects/ScoreAlignDialog.cpp msgid "Frame Period" -msgstr "" +msgstr "thời gian khung hình" #: src/effects/ScoreAlignDialog.cpp msgid "Window Size:" -msgstr "" +msgstr "Kích thước cửa sổ:" #: src/effects/ScoreAlignDialog.cpp msgid "Window Size" -msgstr "" +msgstr "Kích thước cửa sổ" #: src/effects/ScoreAlignDialog.cpp msgid "Force Final Alignment" -msgstr "" +msgstr "khởi động căn chỉnh cuối cùng" #: src/effects/ScoreAlignDialog.cpp msgid "Ignore Silence at Beginnings and Endings" -msgstr "" +msgstr "bỏ qua âm trắng ở đoạn đầu và cuối" #: src/effects/ScoreAlignDialog.cpp msgid "Silence Threshold:" -msgstr "" +msgstr "ngưỡng im lặng:" #: src/effects/ScoreAlignDialog.cpp msgid "Silence Threshold" -msgstr "" +msgstr "ngưỡng im lặng" -#. i18n-hint: The English would be clearer if it had 'Duration' rather than 'Time' -#. This is a NEW experimental effect, and until we have it documented in the user +#. i18n-hint: The English would be clearer if it had 'Duration' rather than +#. 'Time' +#. This is a NEW experimental effect, and until we have it documented in the +#. user #. manual we don't have a clear description of what this parameter does. #. It is OK to leave it in English. #: src/effects/ScoreAlignDialog.cpp msgid "Presmooth Time:" -msgstr "" +msgstr "thời gian chuẩn bị làm mượt:" -#. i18n-hint: The English would be clearer if it had 'Duration' rather than 'Time' -#. This is a NEW experimental effect, and until we have it documented in the user +#. i18n-hint: The English would be clearer if it had 'Duration' rather than +#. 'Time' +#. This is a NEW experimental effect, and until we have it documented in the +#. user #. manual we don't have a clear description of what this parameter does. #. It is OK to leave it in English. #: src/effects/ScoreAlignDialog.cpp msgid "Presmooth Time" -msgstr "" +msgstr "thời gian chuẩn bị làm mượt" -#. i18n-hint: The English would be clearer if it had 'Duration' rather than 'Time' -#. This is a NEW experimental effect, and until we have it documented in the user +#. i18n-hint: The English would be clearer if it had 'Duration' rather than +#. 'Time' +#. This is a NEW experimental effect, and until we have it documented in the +#. user #. manual we don't have a clear description of what this parameter does. #. It is OK to leave it in English. #: src/effects/ScoreAlignDialog.cpp msgid "Line Time:" -msgstr "" +msgstr "đường thời gian:" -#. i18n-hint: The English would be clearer if it had 'Duration' rather than 'Time' -#. This is a NEW experimental effect, and until we have it documented in the user +#. i18n-hint: The English would be clearer if it had 'Duration' rather than +#. 'Time' +#. This is a NEW experimental effect, and until we have it documented in the +#. user #. manual we don't have a clear description of what this parameter does. #. It is OK to leave it in English. #: src/effects/ScoreAlignDialog.cpp msgid "Line Time" -msgstr "" +msgstr "đường thời gian" #: src/effects/ScoreAlignDialog.cpp msgid "Smooth Time:" -msgstr "" +msgstr "thời gian làm mượt:" -#. i18n-hint: The English would be clearer if it had 'Duration' rather than 'Time' -#. This is a NEW experimental effect, and until we have it documented in the user +#. i18n-hint: The English would be clearer if it had 'Duration' rather than +#. 'Time' +#. This is a NEW experimental effect, and until we have it documented in the +#. user #. manual we don't have a clear description of what this parameter does. #. It is OK to leave it in English. #: src/effects/ScoreAlignDialog.cpp msgid "Smooth Time" -msgstr "" +msgstr "thời gian làm mượt" #: src/effects/ScoreAlignDialog.cpp msgid "Use Defaults" -msgstr "" +msgstr "dùng chế độ mặc định" #: src/effects/ScoreAlignDialog.cpp msgid "Restore Defaults" -msgstr "" +msgstr "quay về chế độ mặc định" #: src/effects/ScoreAlignDialog.cpp #, c-format @@ -9275,51 +9056,51 @@ msgstr "" #: src/effects/Silence.cpp msgctxt "generator" msgid "Silence" -msgstr "" +msgstr "im lặng" #: src/effects/Silence.cpp msgid "Creates audio of zero amplitude" -msgstr "" +msgstr "tạo audio với biên độ 0" #: src/effects/StereoToMono.cpp msgid "Stereo To Mono" -msgstr "" +msgstr "stereo sang mono" #: src/effects/StereoToMono.cpp msgid "Converts stereo tracks to mono" -msgstr "" +msgstr "chuyển đổi đoạn âm stereo thành mono" #: src/effects/StereoToMono.cpp msgid "Resampling left channel" -msgstr "" +msgstr "tái lấy mẫu kênh bên trái" #: src/effects/StereoToMono.cpp msgid "Resampling right channel" -msgstr "" +msgstr "tái lấy mẫu kênh bên phải" #: src/effects/StereoToMono.cpp msgid "Mixing down to mono" -msgstr "" +msgstr "trộn mono" #: src/effects/TimeScale.cpp msgid "Sliding Stretch" -msgstr "" +msgstr "khoảng trượt" #: src/effects/TimeScale.cpp msgid "Allows continuous changes to the tempo and/or pitch" -msgstr "" +msgstr "Cho phép thay đổi liên tục nhịp độ và / hoặc cao độ" #: src/effects/TimeScale.cpp msgid "Initial Tempo Change (%)" -msgstr "" +msgstr "Thay đổi nhịp độ ban đầu (%)" #: src/effects/TimeScale.cpp msgid "Final Tempo Change (%)" -msgstr "" +msgstr "Thay đổi nhịp độ cuối (%)" #: src/effects/TimeScale.cpp msgid "Initial Pitch Shift" -msgstr "" +msgstr "Thay đổi độ cao ban đầu của âm" #: src/effects/TimeScale.cpp msgid "(&semitones) [-12 to 12]:" @@ -9331,7 +9112,7 @@ msgstr "" #: src/effects/TimeScale.cpp msgid "Final Pitch Shift" -msgstr "" +msgstr "Thay đổi độ cao cuối của âm" #: src/effects/TimeScale.cpp msgid "(s&emitones) [-12 to 12]:" @@ -9359,7 +9140,7 @@ msgstr "Vuông, không có biệt danh" #: src/effects/ToneGen.cpp msgid "Chirp" -msgstr "" +msgstr "Tiếng chip" #: src/effects/ToneGen.cpp msgid "Tone" @@ -9367,15 +9148,15 @@ msgstr "" #: src/effects/ToneGen.cpp msgid "Generates an ascending or descending tone of one of four types" -msgstr "" +msgstr "Tạo ra một giai điệu tăng dần hoặc giảm dần của một trong bốn kiểu" #: src/effects/ToneGen.cpp msgid "Generates a constant frequency tone of one of four types" -msgstr "" +msgstr "Tạo ra âm tần bất biến cho một trong bốn kiểu" #: src/effects/ToneGen.cpp msgid "&Waveform:" -msgstr "" +msgstr "&Dạng sóng:" #: src/effects/ToneGen.cpp msgid "&Frequency (Hz):" @@ -9383,7 +9164,7 @@ msgstr "&Tần số (Hz):" #: src/effects/ToneGen.cpp msgid "Frequency Hertz Start" -msgstr "" +msgstr "Bắt Đầu Tần Số (Hz)" #: src/effects/ToneGen.cpp msgid "Frequency Hertz End" @@ -9391,7 +9172,7 @@ msgstr "Kết Thúc Tần Số (Hz)" #: src/effects/ToneGen.cpp msgid "Amplitude Start" -msgstr "" +msgstr "Bắt Đầu Biên Độ" #: src/effects/ToneGen.cpp msgid "Amplitude End" @@ -9399,7 +9180,7 @@ msgstr "Kết Thúc Biên Độ" #: src/effects/ToneGen.cpp msgid "I&nterpolation:" -msgstr "" +msgstr "N&ội suy:" #: src/effects/TruncSilence.cpp msgid "Truncate Detected Silence" @@ -9407,19 +9188,23 @@ msgstr "Cắt rút bỏ khoảng lặng đã phát hiện" #: src/effects/TruncSilence.cpp msgid "Compress Excess Silence" -msgstr "" +msgstr "nén khoảng lặng thừa" #: src/effects/TruncSilence.cpp msgid "Truncate Silence" msgstr "Cắt bỏ khoảng lặng" #: src/effects/TruncSilence.cpp -msgid "Automatically reduces the length of passages where the volume is below a specified level" -msgstr "" +msgid "" +"Automatically reduces the length of passages where the volume is below a " +"specified level" +msgstr "Tự động giảm độ dài của các đoạn có âm lượng dưới một mức cụ thể" #: src/effects/TruncSilence.cpp -msgid "When truncating independently, there may only be one selected audio track in each Sync-Locked Track Group." -msgstr "" +msgid "" +"When truncating independently, there may only be one selected audio track in" +" each Sync-Locked Track Group." +msgstr "Khi cắt âm độc lập, có thể chỉ có một đoạn âm được chọn trong mỗi Nhóm đoạn âm đã khóa đồng bộ hóa." #: src/effects/TruncSilence.cpp msgid "Detect Silence" @@ -9427,7 +9212,7 @@ msgstr "Phát hiện khoảng im lặng" #: src/effects/TruncSilence.cpp msgid "Tr&uncate to:" -msgstr "" +msgstr "c&ắt đến" #: src/effects/TruncSilence.cpp src/import/ImportRaw.cpp msgid "%" @@ -9435,28 +9220,28 @@ msgstr "" #: src/effects/TruncSilence.cpp msgid "C&ompress to:" -msgstr "" +msgstr "n&én thành" #: src/effects/TruncSilence.cpp msgid "Trunc&ate tracks independently" -msgstr "" +msgstr "cắ&t đoạn âm độc lập" #: src/effects/VST/VSTEffect.cpp msgid "VST Effects" -msgstr "" +msgstr "Hiệu ứng VST" #: src/effects/VST/VSTEffect.cpp msgid "Adds the ability to use VST effects in Audacity." -msgstr "" +msgstr "Thêm khả năng sử dụng các hiệu ứng VST trong Audacity." #: src/effects/VST/VSTEffect.cpp msgid "Scanning Shell VST" -msgstr "" +msgstr "đang quét bề mặt VST" #: src/effects/VST/VSTEffect.cpp #, c-format msgid "Registering %d of %d: %-64.64s" -msgstr "" +msgstr "đăng ký %dvới %d : %-64.64s" #: src/effects/VST/VSTEffect.cpp src/effects/ladspa/LadspaEffect.cpp #: src/effects/lv2/LoadLV2.cpp src/effects/vamp/LoadVamp.cpp @@ -9465,41 +9250,52 @@ msgstr "Không thể tải thư viện" #: src/effects/VST/VSTEffect.cpp msgid "VST Effect Options" -msgstr "" +msgstr "tùy chọn hiệu ứng VST" #: src/effects/VST/VSTEffect.cpp src/effects/lv2/LV2Effect.cpp msgid "Buffer Size" -msgstr "" +msgstr "Kích thước bộ đệm" #: src/effects/VST/VSTEffect.cpp src/effects/lv2/LV2Effect.cpp -msgid "The buffer size controls the number of samples sent to the effect on each iteration. Smaller values will cause slower processing and some effects require 8192 samples or less to work properly. However most effects can accept large buffers and using them will greatly reduce processing time." -msgstr "" +msgid "" +"The buffer size controls the number of samples sent to the effect on each " +"iteration. Smaller values will cause slower processing and some effects " +"require 8192 samples or less to work properly. However most effects can " +"accept large buffers and using them will greatly reduce processing time." +msgstr "Kích thước bộ đệm kiểm soát số lượng mẫu được gửi đến hiệu ứng trên mỗi lần lặp. Giá trị nhỏ hơn sẽ tạo ra quá trình xử lý chậm hơn và một số hiệu ứng yêu cầu 8192 mẫu trở xuống để hoạt động bình thường. Tuy nhiên hầu hết các hiệu ứng có thể chấp nhận bộ đệm lớn và việc sử dụng chúng sẽ làm giảm thời gian xử lý rất nhiều. " #: src/effects/VST/VSTEffect.cpp msgid "&Buffer Size (8 to 1048576 samples):" -msgstr "" +msgstr "&kích thước bộ đệm (từ 8 đến 1048576 mẫu): " #: src/effects/VST/VSTEffect.cpp src/effects/audiounits/AudioUnitEffect.cpp #: src/effects/ladspa/LadspaEffect.cpp src/effects/lv2/LV2Effect.cpp msgid "Latency Compensation" -msgstr "" +msgstr "bù vào độ trễ" #: src/effects/VST/VSTEffect.cpp -msgid "As part of their processing, some VST effects must delay returning audio to Audacity. When not compensating for this delay, you will notice that small silences have been inserted into the audio. Enabling this option will provide that compensation, but it may not work for all VST effects." -msgstr "" +msgid "" +"As part of their processing, some VST effects must delay returning audio to " +"Audacity. When not compensating for this delay, you will notice that small " +"silences have been inserted into the audio. Enabling this option will " +"provide that compensation, but it may not work for all VST effects." +msgstr "Là một phần trong quá trình xử lý, một số hiệu ứng VST phải trì hoãn việc trả audio về Audacity. Khi không đủ thời gian bù đắp cho sự chậm trễ này, bạn sẽ nhận thấy rằng các khoảng trống nhỏ được chèn vào đoạn âm. Bật tùy chọn này sẽ cung cấp thời gian bồi thường đó, nhưng nó có thể không hoạt động với tất cả các hiệu ứng VST. " #: src/effects/VST/VSTEffect.cpp src/effects/audiounits/AudioUnitEffect.cpp #: src/effects/ladspa/LadspaEffect.cpp src/effects/lv2/LV2Effect.cpp msgid "Enable &compensation" -msgstr "" +msgstr "bật &bù độ trễ" #: src/effects/VST/VSTEffect.cpp src/effects/lv2/LV2Effect.cpp msgid "Graphical Mode" -msgstr "" +msgstr "Chế độ đồ họa" #: src/effects/VST/VSTEffect.cpp -msgid "Most VST effects have a graphical interface for setting parameter values. A basic text-only method is also available. Reopen the effect for this to take effect." -msgstr "" +msgid "" +"Most VST effects have a graphical interface for setting parameter values. A " +"basic text-only method is also available. Reopen the effect for this to " +"take effect." +msgstr "Hầu hết các hiệu ứng VST đều có giao diện đồ họa để thiết lập các giá trị tham số. phương pháp văn bản cơ bản có thể được dùng. Mở lại hiệu ứng để điều này có hiệu lực. " #: src/effects/VST/VSTEffect.cpp src/effects/lv2/LV2Effect.cpp msgid "Enable &graphical interface" @@ -9508,7 +9304,7 @@ msgstr "Bật &giao diện đồ họa" #: src/effects/VST/VSTEffect.cpp #, c-format msgid "Audio In: %d, Audio Out: %d" -msgstr "" +msgstr "audio vào:%d. audio ra: %d" #: src/effects/VST/VSTEffect.cpp msgid "Save VST Preset As:" @@ -9516,11 +9312,11 @@ msgstr "Lưu thiết lập sẵn VST tên:" #: src/effects/VST/VSTEffect.cpp msgid "Standard VST bank file" -msgstr "" +msgstr "tệp bàn phím VST chuẩn" #: src/effects/VST/VSTEffect.cpp msgid "Standard VST program file" -msgstr "" +msgstr "tệp chương trình VST chuẩn" #: src/effects/VST/VSTEffect.cpp msgid "Audacity VST preset file" @@ -9528,7 +9324,7 @@ msgstr "Tập tin thiết lập sẵn Audacity VST" #: src/effects/VST/VSTEffect.cpp msgid "Unrecognized file extension." -msgstr "" +msgstr "không nhận ra phần tệp mở rộng." #: src/effects/VST/VSTEffect.cpp msgid "Error Saving VST Presets" @@ -9557,7 +9353,7 @@ msgstr "Thiết lập hiệu ứng" #: src/effects/VST/VSTEffect.cpp msgid "Unable to allocate memory when loading presets file." -msgstr "" +msgstr "không thể lưu tiến trình lịch sử khi đang tải tập tin Thiết lập sẵn" #: src/effects/VST/VSTEffect.cpp msgid "Unable to read presets file." @@ -9566,9 +9362,10 @@ msgstr "Không thể đọc tập tin thiết lập sẵn" #: src/effects/VST/VSTEffect.cpp #, c-format msgid "This parameter file was saved from %s. Continue?" -msgstr "" +msgstr "tập tin tham số này được lưu từ %s. bạn có tiếp tục không?" -#. i18n-hint: Abbreviates Virtual Studio Technology, an audio software protocol +#. i18n-hint: Abbreviates Virtual Studio Technology, an audio software +#. protocol #. developed by Steinberg GmbH #: src/effects/VST/VSTEffect.h msgid "VST" @@ -9579,20 +9376,22 @@ msgid "Wahwah" msgstr "Wahwah" #: src/effects/Wahwah.cpp -msgid "Rapid tone quality variations, like that guitar sound so popular in the 1970's" -msgstr "" +msgid "" +"Rapid tone quality variations, like that guitar sound so popular in the " +"1970's" +msgstr "Các thay đổi chất lượng âm điệu nhanh, tương tự những âm thanh guitar rất phổ biến trong thập niên 70" #: src/effects/Wahwah.cpp msgid "Dept&h (%):" -msgstr "" +msgstr "độ &sâu (%):" #: src/effects/Wahwah.cpp msgid "Reso&nance:" -msgstr "" +msgstr "Cộng &hưởng:" #: src/effects/Wahwah.cpp msgid "Resonance" -msgstr "" +msgstr "Cộng hưởng" #: src/effects/Wahwah.cpp msgid "Wah Frequency Offse&t (%):" @@ -9605,51 +9404,60 @@ msgstr "Độ di tần của Wah (%):" #. i18n-hint: Audio Unit is the name of an Apple audio software protocol #: src/effects/audiounits/AudioUnitEffect.cpp msgid "Audio Unit Effects" -msgstr "" +msgstr "Hiệu ứng đơn âm" #: src/effects/audiounits/AudioUnitEffect.cpp msgid "Provides Audio Unit Effects support to Audacity" -msgstr "" +msgstr "Cung cấp hỗ trợ hiệu ứng đơn âm cho Audacity" #: src/effects/audiounits/AudioUnitEffect.cpp msgid "Could not find component" -msgstr "" +msgstr "không tìm được thành phần" #: src/effects/audiounits/AudioUnitEffect.cpp msgid "Could not initialize component" -msgstr "" +msgstr "không tìm được thành phần khởi chạy" #: src/effects/audiounits/AudioUnitEffect.cpp msgid "Audio Unit Effect Options" -msgstr "" +msgstr "tùy chọn hiệu ứng đơn âm" #: src/effects/audiounits/AudioUnitEffect.cpp -msgid "As part of their processing, some Audio Unit effects must delay returning audio to Audacity. When not compensating for this delay, you will notice that small silences have been inserted into the audio. Enabling this option will provide that compensation, but it may not work for all Audio Unit effects." -msgstr "" +msgid "" +"As part of their processing, some Audio Unit effects must delay returning " +"audio to Audacity. When not compensating for this delay, you will notice " +"that small silences have been inserted into the audio. Enabling this option " +"will provide that compensation, but it may not work for all Audio Unit " +"effects." +msgstr "Là một phần trong quá trình xử lý, một số hiệu ứng đơn âm phải trì hoãn việc trả audio về Audacity. Khi không đủ thời gian bù đắp cho sự chậm trễ này, bạn sẽ nhận thấy rằng các khoảng trống nhỏ được chèn vào đoạn âm. Bật tùy chọn này sẽ cung cấp thời gian bồi thường đó, nhưng nó có thể không hoạt động với tất cả các hiệu ứng đơn âm. " #: src/effects/audiounits/AudioUnitEffect.cpp msgid "User Interface" -msgstr "" +msgstr "giao diện người dùng" #: src/effects/audiounits/AudioUnitEffect.cpp -msgid "Select \"Full\" to use the graphical interface if supplied by the Audio Unit. Select \"Generic\" to use the system supplied generic interface. Select \"Basic\" for a basic text-only interface. Reopen the effect for this to take effect." -msgstr "" +msgid "" +"Select \"Full\" to use the graphical interface if supplied by the Audio " +"Unit. Select \"Generic\" to use the system supplied generic interface. " +"Select \"Basic\" for a basic text-only interface. Reopen the effect for this" +" to take effect." +msgstr "Chọn \"toàn bộ\" để sử dụng giao diện đồ họa nếu nó được hổ trợ bởi Thiết bị âm thanh. Chọn \"Chung\" để sử dụng giao diện chung do hệ thống cung cấp. Chọn \"Cơ bản\" để có giao diện văn bản cơ bản. Mở lại hiệu ứng để lựa chọn có hiệu lực. " #: src/effects/audiounits/AudioUnitEffect.cpp msgid "Select &interface" -msgstr "" +msgstr "chọn &giao diện" #: src/effects/audiounits/AudioUnitEffect.cpp src/prefs/KeyConfigPrefs.cpp msgid "Full" -msgstr "" +msgstr "toàn bộ" #: src/effects/audiounits/AudioUnitEffect.cpp msgid "Generic" -msgstr "" +msgstr "chung" #: src/effects/audiounits/AudioUnitEffect.cpp msgid "Basic" -msgstr "" +msgstr "cơ bản" #: src/effects/audiounits/AudioUnitEffect.cpp msgid "Import Audio Unit Presets" @@ -9665,12 +9473,12 @@ msgstr "Preset - Thiết lập sẵn" #: src/effects/audiounits/AudioUnitEffect.cpp msgid "Location" -msgstr "" +msgstr "vị trí" #: src/effects/audiounits/AudioUnitEffect.cpp #, c-format msgid "Couldn't open \"%s\"" -msgstr "" +msgstr "Không thể mở \"%s\"" #: src/effects/audiounits/AudioUnitEffect.cpp #, c-format @@ -9692,10 +9500,7 @@ msgid "" "Could not import \"%s\" preset\n" "\n" "%s" -msgstr "" -"Không thể nhập thiết lập sẵn \"%s\" \n" -"\n" -"%s" +msgstr "Không thể nhập thiết lập sẵn \"%s\" \n\n%s" #: src/effects/audiounits/AudioUnitEffect.cpp #, c-format @@ -9704,7 +9509,7 @@ msgstr "Xuất thiết lập sẵn audio vời tên %s:" #: src/effects/audiounits/AudioUnitEffect.cpp msgid "Standard Audio Unit preset file" -msgstr "" +msgstr "file đơn âm tiêu chuẩn thiết lập sẵn" #: src/effects/audiounits/AudioUnitEffect.cpp #, c-format @@ -9712,10 +9517,7 @@ msgid "" "Could not export \"%s\" preset\n" "\n" "%s" -msgstr "" -"Không thể xuất thiết lập sẵn \"%s\" \n" -"\n" -"%s" +msgstr "Không thể xuất thiết lập sẵn \"%s\" \n\n%s" #: src/effects/audiounits/AudioUnitEffect.cpp msgid "Export Audio Unit Presets" @@ -9768,7 +9570,6 @@ msgstr "" #. i18n-hint: abbreviates "Linux Audio Developer's Simple Plugin API" #. (Application programming interface) -#. #: src/effects/ladspa/LadspaEffect.cpp msgid "LADSPA Effects" msgstr "" @@ -9786,11 +9587,17 @@ msgid "LADSPA Effect Options" msgstr "" #: src/effects/ladspa/LadspaEffect.cpp -msgid "As part of their processing, some LADSPA effects must delay returning audio to Audacity. When not compensating for this delay, you will notice that small silences have been inserted into the audio. Enabling this option will provide that compensation, but it may not work for all LADSPA effects." +msgid "" +"As part of their processing, some LADSPA effects must delay returning audio " +"to Audacity. When not compensating for this delay, you will notice that " +"small silences have been inserted into the audio. Enabling this option will " +"provide that compensation, but it may not work for all LADSPA effects." msgstr "" -#. i18n-hint: An item name introducing a value, which is not part of the string but -#. appears in a following text box window; translate with appropriate punctuation +#. i18n-hint: An item name introducing a value, which is not part of the +#. string but +#. appears in a following text box window; translate with appropriate +#. punctuation #: src/effects/ladspa/LadspaEffect.cpp src/effects/nyquist/Nyquist.cpp #: src/effects/vamp/VampEffect.cpp #: src/tracks/playabletrack/wavetrack/ui/SpectrumView.cpp @@ -9804,7 +9611,6 @@ msgstr "Đầu ra hiệu ứng" #. i18n-hint: abbreviates "Linux Audio Developer's Simple Plugin API" #. (Application programming interface) -#. #: src/effects/ladspa/LadspaEffect.h msgid "LADSPA" msgstr "" @@ -9819,11 +9625,18 @@ msgid "&Buffer Size (8 to %d) samples:" msgstr "" #: src/effects/lv2/LV2Effect.cpp -msgid "As part of their processing, some LV2 effects must delay returning audio to Audacity. When not compensating for this delay, you will notice that small silences have been inserted into the audio. Enabling this setting will provide that compensation, but it may not work for all LV2 effects." +msgid "" +"As part of their processing, some LV2 effects must delay returning audio to " +"Audacity. When not compensating for this delay, you will notice that small " +"silences have been inserted into the audio. Enabling this setting will " +"provide that compensation, but it may not work for all LV2 effects." msgstr "" #: src/effects/lv2/LV2Effect.cpp -msgid "LV2 effects can have a graphical interface for setting parameter values. A basic text-only method is also available. Reopen the effect for this to take effect." +msgid "" +"LV2 effects can have a graphical interface for setting parameter values. A " +"basic text-only method is also available. Reopen the effect for this to " +"take effect." msgstr "" #: src/effects/lv2/LV2Effect.cpp @@ -9870,7 +9683,8 @@ msgstr "" msgid "Applying Nyquist Effect..." msgstr "Đang áp dụng hiệu ứng Nyquist..." -#. i18n-hint: It is acceptable to translate this the same as for "Nyquist Prompt" +#. i18n-hint: It is acceptable to translate this the same as for "Nyquist +#. Prompt" #: src/effects/nyquist/Nyquist.cpp msgid "Nyquist Worker" msgstr "" @@ -9906,7 +9720,8 @@ msgid "Nyquist Error" msgstr "Lỗi Nyquist" #: src/effects/nyquist/Nyquist.cpp -msgid "Sorry, cannot apply effect on stereo tracks where the tracks don't match." +msgid "" +"Sorry, cannot apply effect on stereo tracks where the tracks don't match." msgstr "Không thể áp dụng hiệu ứng lên dải âm stereo có các kênh khác nhau." #: src/effects/nyquist/Nyquist.cpp @@ -9976,7 +9791,8 @@ msgid "Nyquist returned nil audio.\n" msgstr "" #: src/effects/nyquist/Nyquist.cpp -msgid "[Warning: Nyquist returned invalid UTF-8 string, converted here as Latin-1]" +msgid "" +"[Warning: Nyquist returned invalid UTF-8 string, converted here as Latin-1]" msgstr "" #: src/effects/nyquist/Nyquist.cpp @@ -10085,7 +9901,9 @@ msgid "Provides Vamp Effects support to Audacity" msgstr "" #: src/effects/vamp/VampEffect.cpp -msgid "Sorry, Vamp Plug-ins cannot be run on stereo tracks where the individual channels of the track do not match." +msgid "" +"Sorry, Vamp Plug-ins cannot be run on stereo tracks where the individual " +"channels of the track do not match." msgstr "Phần bổ sung Vamp không áp dụng cho dải âm stereo có các kênh khác nhau." #: src/effects/vamp/VampEffect.cpp @@ -10104,7 +9922,8 @@ msgstr "Thiết lập phần bổ sung" msgid "Program" msgstr "Chương trình" -#. i18n-hint: Vamp is the proper name of a software protocol for sound analysis. +#. i18n-hint: Vamp is the proper name of a software protocol for sound +#. analysis. #. It is not an abbreviation for anything. See http://vamp-plugins.org #: src/effects/vamp/VampEffect.h msgid "Vamp" @@ -10167,7 +9986,9 @@ msgid "Your tracks will be mixed down and exported as one stereo file." msgstr "" #: src/export/Export.cpp -msgid "Your tracks will be mixed down to one exported file according to the encoder settings." +msgid "" +"Your tracks will be mixed down to one exported file according to the encoder" +" settings." msgstr "" #: src/export/Export.cpp @@ -10218,11 +10039,14 @@ msgstr "Hiển thị đầu ra" #. i18n-hint: Some programmer-oriented terminology here: #. "Data" refers to the sound to be exported, "piped" means sent, #. and "standard in" means the default input stream that the external program, -#. named by %f, will read. And yes, it's %f, not %s -- this isn't actually used +#. named by %f, will read. And yes, it's %f, not %s -- this isn't actually +#. used #. in the program as a format string. Keep %f unchanged. #: src/export/ExportCL.cpp #, c-format -msgid "Data will be piped to standard in. \"%f\" uses the file name in the export window." +msgid "" +"Data will be piped to standard in. \"%f\" uses the file name in the export " +"window." msgstr "" #. i18n-hint files that can be run as programs @@ -10312,7 +10136,9 @@ msgstr "Lỗi FFmpeg - Không thể mở tập tin đầu ra \"%s\" Mã lỗi l #: src/export/ExportFFmpeg.cpp #, c-format -msgid "FFmpeg : ERROR - Can't write headers to output file \"%s\". Error code is %d." +msgid "" +"FFmpeg : ERROR - Can't write headers to output file \"%s\". Error code is " +"%d." msgstr "FFmpeg : LỖI - Không thể viết tiêu đề lên tệp đầu ra \"%s\". Lỗi code là %d." #. i18n-hint: "codec" is short for a "coder-decoder" algorithm @@ -10378,7 +10204,9 @@ msgstr "" #: src/export/ExportFFmpeg.cpp #, c-format -msgid "Attempted to export %d channels, but maximum number of channels for selected output format is %d" +msgid "" +"Attempted to export %d channels, but maximum number of channels for selected" +" output format is %d" msgstr "Đã thử xuất %dkênh, nhưng số lượng kênh lớn nhất để chọn định dạng đầu ra chỉ là %d" #: src/export/ExportFFmpeg.cpp @@ -10405,18 +10233,14 @@ msgstr "Đổi tốc độ lấy mẫu" msgid "" "The project sample rate (%d) is not supported by the current output\n" "file format. " -msgstr "" -"định dạng file đầu ra không hổ trợ \n" -"tốc độ lấy mẫu dự án (%d)" +msgstr "định dạng file đầu ra không hổ trợ \ntốc độ lấy mẫu dự án (%d)" #: src/export/ExportFFmpeg.cpp #, c-format msgid "" "The project sample rate (%d) and bit rate (%d kbps) combination is not\n" "supported by the current output file format. " -msgstr "" -"Định dạng file đầu ra không hỗ trợ\n" -"Tốc độ lấy mẫu (%d) và tốc độ bit (%d kbps) của dự án." +msgstr "Định dạng file đầu ra không hỗ trợ\nTốc độ lấy mẫu (%d) và tốc độ bit (%d kbps) của dự án." #: src/export/ExportFFmpeg.cpp src/export/ExportMP3.cpp msgid "You may resample to one of the rates below." @@ -10698,7 +10522,9 @@ msgid "Codec:" msgstr "" #: src/export/ExportFFmpegDialogs.cpp -msgid "Not all formats and codecs are compatible. Nor are all option combinations compatible with all codecs." +msgid "" +"Not all formats and codecs are compatible. Nor are all option combinations " +"compatible with all codecs." msgstr "" #: src/export/ExportFFmpegDialogs.cpp @@ -10803,12 +10629,7 @@ msgid "" "-1 - automatic\n" "min - 0 (fast encoding, large output file)\n" "max - 10 (slow encoding, small output file)" -msgstr "" -"Mức nén dữ liệu\n" -"Cần có FLAC\n" -"-1 - tự động\n" -"Thấp nhất - 0 (mã hoá nhanh, tệp đầu ra lớn)\n" -"Cao nhất - 10 (mã hoá chậm, tệp đầu ra nhỏ)" +msgstr "Mức nén dữ liệu\nCần có FLAC\n-1 - tự động\nThấp nhất - 0 (mã hoá nhanh, tệp đầu ra lớn)\nCao nhất - 10 (mã hoá chậm, tệp đầu ra nhỏ)" #: src/export/ExportFFmpegDialogs.cpp msgid "Compression:" @@ -10821,12 +10642,7 @@ msgid "" "0 - default\n" "min - 16\n" "max - 65535" -msgstr "" -"Kích thước khung\n" -"không bắt buộc\n" -"0 - mặc định\n" -"tối thiểu - 16\n" -"tối đa - 65535" +msgstr "Kích thước khung\nkhông bắt buộc\n0 - mặc định\ntối thiểu - 16\ntối đa - 65535" #: src/export/ExportFFmpegDialogs.cpp msgid "Frame:" @@ -10839,12 +10655,7 @@ msgid "" "0 - default\n" "min - 1\n" "max - 15" -msgstr "" -"độ chính xác LPC \n" -"Không bắt buộc\n" -"0 - mặc định\n" -"tối thiểu- 1\n" -"tối đa - 15" +msgstr "độ chính xác LPC \nKhông bắt buộc\n0 - mặc định\ntối thiểu- 1\ntối đa - 15" #: src/export/ExportFFmpegDialogs.cpp msgid "LPC" @@ -10931,15 +10742,19 @@ msgid "" "0 - default" msgstr "" -#. i18n-hint: 'mux' is short for multiplexor, a device that selects between several inputs -#. 'Mux Rate' is a parameter that has some bearing on compression ratio for MPEG +#. i18n-hint: 'mux' is short for multiplexor, a device that selects between +#. several inputs +#. 'Mux Rate' is a parameter that has some bearing on compression ratio for +#. MPEG #. it has a hard to predict effect on the degree of compression #: src/export/ExportFFmpegDialogs.cpp msgid "Mux Rate:" msgstr "" -#. i18n-hint: 'Packet Size' is a parameter that has some bearing on compression ratio for MPEG -#. compression. It measures how big a chunk of audio is compressed in one piece. +#. i18n-hint: 'Packet Size' is a parameter that has some bearing on +#. compression ratio for MPEG +#. compression. It measures how big a chunk of audio is compressed in one +#. piece. #: src/export/ExportFFmpegDialogs.cpp msgid "" "Packet size\n" @@ -10947,8 +10762,10 @@ msgid "" "0 - default" msgstr "" -#. i18n-hint: 'Packet Size' is a parameter that has some bearing on compression ratio for MPEG -#. compression. It measures how big a chunk of audio is compressed in one piece. +#. i18n-hint: 'Packet Size' is a parameter that has some bearing on +#. compression ratio for MPEG +#. compression. It measures how big a chunk of audio is compressed in one +#. piece. #: src/export/ExportFFmpegDialogs.cpp msgid "Packet Size:" msgstr "" @@ -11168,7 +10985,8 @@ msgid "Bit Rate Mode:" msgstr "Chế độ bit:" #. i18n-hint: meaning accuracy in reproduction of sounds -#: src/export/ExportMP3.cpp src/prefs/QualityPrefs.cpp src/prefs/QualityPrefs.h +#: src/export/ExportMP3.cpp src/prefs/QualityPrefs.cpp +#: src/prefs/QualityPrefs.h msgid "Quality" msgstr "Chất lượng" @@ -11180,7 +10998,8 @@ msgstr "Chế độ kênh:" msgid "Force export to mono" msgstr "" -#. i18n-hint: LAME is the name of an MP3 converter and should not be translated +#. i18n-hint: LAME is the name of an MP3 converter and should not be +#. translated #: src/export/ExportMP3.cpp msgid "Locate LAME" msgstr "" @@ -11305,18 +11124,14 @@ msgstr "Gặp %ld lỗi khi mã hoá MP3" msgid "" "The project sample rate (%d) is not supported by the MP3\n" "file format. " -msgstr "" -"Định dạng MP3 không hỗ trợ\n" -"Tốc độ lấy mẫu của dự án (%d)." +msgstr "Định dạng MP3 không hỗ trợ\nTốc độ lấy mẫu của dự án (%d)." #: src/export/ExportMP3.cpp #, c-format msgid "" "The project sample rate (%d) and bit rate (%d kbps) combination is not\n" "supported by the MP3 file format. " -msgstr "" -"Định dạng MP3 không hỗ trợ\n" -"Tốc độ lấy mẫu (%d) và tốc độ bit (%d kbps) của dự án." +msgstr "Định dạng MP3 không hỗ trợ\nTốc độ lấy mẫu (%d) và tốc độ bit (%d kbps) của dự án." #: src/export/ExportMP3.cpp msgid "MP3 export library not found" @@ -11431,7 +11246,8 @@ msgstr "" #: src/export/ExportMultiple.cpp #, c-format -msgid "Something went really wrong after exporting the following %lld file(s)." +msgid "" +"Something went really wrong after exporting the following %lld file(s)." msgstr "" #: src/export/ExportMultiple.cpp @@ -11440,10 +11256,7 @@ msgid "" "\"%s\" doesn't exist.\n" "\n" "Would you like to create it?" -msgstr "" -"Không tồn tại \"%s\".\n" -"\n" -"Bạn có muốn tạo nó không?" +msgstr "Không tồn tại \"%s\".\n\nBạn có muốn tạo nó không?" #: src/export/ExportMultiple.cpp msgid "Continue to export remaining files?" @@ -11571,9 +11384,7 @@ msgstr "Đang xuất âm thanh đã chọn ra %s" msgid "" "Error while writing %s file (disk full?).\n" "Libsndfile says \"%s\"" -msgstr "" -"Lỗi khi lưu tập tin %s (disk full?).\n" -"Libsndfile nói \"%s\"" +msgstr "Lỗi khi lưu tập tin %s (disk full?).\nLibsndfile nói \"%s\"" #: src/import/Import.cpp msgid "All supported files" @@ -11586,11 +11397,7 @@ msgid "" "is a MIDI file, not an audio file. \n" "Audacity cannot open this type of file for playing, but you can\n" "edit it by clicking File > Import > MIDI." -msgstr "" -"\"%s\"\n" -"đây là một tập tin MIDI, không phải tập tin âm thanh.\n" -"Audacity không thể chạy định dạng tập tin này, nhưng bạn vẫn có thể chạy nó. \n" -"chỉnh sửa tệp này bằng cách click vào Tệp>Nhập>MIDI." +msgstr "\"%s\"\nđây là một tập tin MIDI, không phải tập tin âm thanh.\nAudacity không thể chạy định dạng tập tin này, nhưng bạn vẫn có thể chạy nó. \nchỉnh sửa tệp này bằng cách click vào Tệp>Nhập>MIDI." #: src/import/Import.cpp #, c-format @@ -11617,11 +11424,7 @@ msgid "" "Audacity cannot open audio CDs directly. \n" "Extract (rip) the CD tracks to an audio format that \n" "Audacity can import, such as WAV or AIFF." -msgstr "" -"\"%s\" là một bài hát trong CD âm thanh.\n" -"Audacity không thể trực tiếp mở nó.\n" -"Bạn phải xuất (rip) nó thành một định dạng mà\n" -"Audacity có thể mở, như WAV hay AIFF." +msgstr "\"%s\" là một bài hát trong CD âm thanh.\nAudacity không thể trực tiếp mở nó.\nBạn phải xuất (rip) nó thành một định dạng mà\nAudacity có thể mở, như WAV hay AIFF." #. i18n-hint: %s will be the filename #: src/import/Import.cpp @@ -11630,10 +11433,7 @@ msgid "" "\"%s\" is a playlist file. \n" "Audacity cannot open this file because it only contains links to other files. \n" "You may be able to open it in a text editor and download the actual audio files." -msgstr "" -"\"%s\" là một danh sách bài hát.\n" -"Audacity không thể mở nó vì nó chỉ chứa liên kết tới các tập tin khác.\n" -"Bạn có thể mở nó trong một bộ soạn thảo văn bản và tải các tập tin trong đó về." +msgstr "\"%s\" là một danh sách bài hát.\nAudacity không thể mở nó vì nó chỉ chứa liên kết tới các tập tin khác.\nBạn có thể mở nó trong một bộ soạn thảo văn bản và tải các tập tin trong đó về." #. i18n-hint: %s will be the filename #: src/import/Import.cpp @@ -11642,10 +11442,7 @@ msgid "" "\"%s\" is a Windows Media Audio file. \n" "Audacity cannot open this type of file due to patent restrictions. \n" "You need to convert it to a supported audio format, such as WAV or AIFF." -msgstr "" -"\"%s\" là một tập tin Windows Media Audio.\n" -"Audacity không thể mở định dạng này vì lỗi vi phạm bản quyền.\n" -"Bạn phải tự mình chuyển nó về 1 định dạng Audacity hỗ trợ, như WAV hay AIFF." +msgstr "\"%s\" là một tập tin Windows Media Audio.\nAudacity không thể mở định dạng này vì lỗi vi phạm bản quyền.\nBạn phải tự mình chuyển nó về 1 định dạng Audacity hỗ trợ, như WAV hay AIFF." #. i18n-hint: %s will be the filename #: src/import/Import.cpp @@ -11674,10 +11471,7 @@ msgid "" "\"%s\" is a RealPlayer media file. \n" "Audacity cannot open this proprietary format. \n" "You need to convert it to a supported audio format, such as WAV or AIFF." -msgstr "" -"\"%s\" là một tập tin RealPlayer.\n" -"Audacity không mở được loại tập tin này.\n" -"Bạn phải tự mình chuyển nó về định dạng được Audacity hỗ trợ, như WAV hay AIFF." +msgstr "\"%s\" là một tập tin RealPlayer.\nAudacity không mở được loại tập tin này.\nBạn phải tự mình chuyển nó về định dạng được Audacity hỗ trợ, như WAV hay AIFF." #. i18n-hint: %s will be the filename #: src/import/Import.cpp @@ -11687,11 +11481,7 @@ msgid "" "Audacity cannot open this type of file. \n" "Try converting it to an audio file such as WAV or AIFF and \n" "then import it, or record it into Audacity." -msgstr "" -"\"%s\" là một tập tin giữ liệu gốc, không phải tập tin âm thanh.\n" -"Audacity không thể mở loại tập tin này.\n" -"Bạn phải tự mình chuyển nó về 1 định dạng Audacity hỗ trợ,\n" -"như WAV hay AIFF, hoặc ghi âm nó trực tiếp trên Audacity." +msgstr "\"%s\" là một tập tin giữ liệu gốc, không phải tập tin âm thanh.\nAudacity không thể mở loại tập tin này.\nBạn phải tự mình chuyển nó về 1 định dạng Audacity hỗ trợ,\nnhư WAV hay AIFF, hoặc ghi âm nó trực tiếp trên Audacity." #. i18n-hint: %s will be the filename #: src/import/Import.cpp @@ -11702,12 +11492,7 @@ msgid "" "If you think it might be an mp3 file, rename it to end with \".mp3\" \n" "and try importing it again. Otherwise you need to convert it to a supported audio \n" "format, such as WAV or AIFF." -msgstr "" -"\"%s\" là một tập tin Musepack.\n" -"Audacity không thể mở định dạng này.\n" -"Nếu bạn nghĩ đây là tập tin mp3, hãy đổi đuôi nó thành \".mp3\"\n" -"và thử nhập lại xem sao. Nếu không, bạn phải tự mình chuyển nó về 1 định dạng Audacity hỗ trợ\n" -"như WAV hay AIFF." +msgstr "\"%s\" là một tập tin Musepack.\nAudacity không thể mở định dạng này.\nNếu bạn nghĩ đây là tập tin mp3, hãy đổi đuôi nó thành \".mp3\"\nvà thử nhập lại xem sao. Nếu không, bạn phải tự mình chuyển nó về 1 định dạng Audacity hỗ trợ\nnhư WAV hay AIFF." #. i18n-hint: %s will be the filename #: src/import/Import.cpp @@ -11716,10 +11501,7 @@ msgid "" "\"%s\" is a Wavpack audio file. \n" "Audacity cannot open this type of file. \n" "You need to convert it to a supported audio format, such as WAV or AIFF." -msgstr "" -"\"%s\" là một tập tin Wavpack.\n" -"Audacity không thể mở loại tập tin này.\n" -"Bạn phải tự mình chuyển nó về 1 định dạng Audacity hỗ trợ, như WAV hay AIFF." +msgstr "\"%s\" là một tập tin Wavpack.\nAudacity không thể mở loại tập tin này.\nBạn phải tự mình chuyển nó về 1 định dạng Audacity hỗ trợ, như WAV hay AIFF." #. i18n-hint: %s will be the filename #: src/import/Import.cpp @@ -11728,10 +11510,7 @@ msgid "" "\"%s\" is a Dolby Digital audio file. \n" "Audacity cannot currently open this type of file. \n" "You need to convert it to a supported audio format, such as WAV or AIFF." -msgstr "" -"\"%s\" là một tập tin Dolby Digital.\n" -"Audacity không thể mở loại tập tin này.\n" -"Bạn phải tự mình chuyển nó về 1 định dạng Audacity hỗ trợ, như WAV hay AIFF." +msgstr "\"%s\" là một tập tin Dolby Digital.\nAudacity không thể mở loại tập tin này.\nBạn phải tự mình chuyển nó về 1 định dạng Audacity hỗ trợ, như WAV hay AIFF." #. i18n-hint: %s will be the filename #: src/import/Import.cpp @@ -11740,10 +11519,7 @@ msgid "" "\"%s\" is an Ogg Speex audio file. \n" "Audacity cannot currently open this type of file. \n" "You need to convert it to a supported audio format, such as WAV or AIFF." -msgstr "" -"\"%s\" là một tập tin Ogg Speex.\n" -"Audacity không thể mở loại tập tin này.\n" -"Bạn phải tự mình chuyển nó về 1 định dạng Audacity hỗ trợ, như WAV hay AIFF." +msgstr "\"%s\" là một tập tin Ogg Speex.\nAudacity không thể mở loại tập tin này.\nBạn phải tự mình chuyển nó về 1 định dạng Audacity hỗ trợ, như WAV hay AIFF." #. i18n-hint: %s will be the filename #: src/import/Import.cpp @@ -11766,10 +11542,7 @@ msgid "" "Audacity did not recognize the type of the file '%s'.\n" "\n" "%sFor uncompressed files, also try File > Import > Raw Data." -msgstr "" -"Audacity không thể nhận dạng được đuôi tập tin.%s\n" -"\n" -"%s để tìm các tập tin chưa nén, hãy thử chọn Tệp>Nhập>dữ liệu thô." +msgstr "Audacity không thể nhận dạng được đuôi tập tin.%s\n\n%s để tìm các tập tin chưa nén, hãy thử chọn Tệp>Nhập>dữ liệu thô." #: src/import/Import.cpp msgid "" @@ -11790,11 +11563,7 @@ msgid "" "Importers supposedly supporting such files are:\n" "%s,\n" "but none of them understood this file format." -msgstr "" -"Audacity đã nhận dạng tệp tin '%s'.\n" -"Các trình nhập đã được cho là sẽ hổ trợ những định dạng tệp này:\n" -"%s.\n" -"nhưng không có trình nhập nào hiểu được định dạng tệp này." +msgstr "Audacity đã nhận dạng tệp tin '%s'.\nCác trình nhập đã được cho là sẽ hổ trợ những định dạng tệp này:\n%s.\nnhưng không có trình nhập nào hiểu được định dạng tệp này." #: src/import/ImportAUP.cpp msgid "AUP project files (*.aup)" @@ -11806,10 +11575,7 @@ msgid "" "Couldn't import the project:\n" "\n" "%s" -msgstr "" -"Lỗi khi nhập dự án\n" -"\n" -"%s" +msgstr "Lỗi khi nhập dự án\n\n%s" #: src/import/ImportAUP.cpp msgid "Import Project" @@ -11867,7 +11633,9 @@ msgid "Couldn't find the project data folder: \"%s\"" msgstr "Không tìm thấy thư mục dữ liệu của dự án: \"%s\"" #: src/import/ImportAUP.cpp -msgid "MIDI tracks found in project file, but this build of Audacity does not include MIDI support, bypassing track." +msgid "" +"MIDI tracks found in project file, but this build of Audacity does not " +"include MIDI support, bypassing track." msgstr "Đã tìm thấy đoạn âm MIDI trong các tệp dự án này, tuy nhiên phiên bản Audacity này không hỗ trợ MIDI." #: src/import/ImportAUP.cpp @@ -11875,7 +11643,9 @@ msgid "Project Import" msgstr "Nhập dự án" #: src/import/ImportAUP.cpp -msgid "The active project already has a time track and one was encountered in the project being imported, bypassing imported time track." +msgid "" +"The active project already has a time track and one was encountered in the " +"project being imported, bypassing imported time track." msgstr "Dự án đang hoạt động hiện có một chuỗi âm và một trong số chúng đã gây ra sung đột với dự án đang được chèn vào, bỏ qua chuỗi âm thanh được chèn." #: src/import/ImportAUP.cpp @@ -11956,7 +11726,8 @@ msgstr "" #. i18n-hint: "codec" is short for a "coder-decoder" algorithm #: src/import/ImportFFmpeg.cpp #, c-format -msgid "Index[%02x] Codec[%s], Language[%s], Bitrate[%s], Channels[%d], Duration[%d]" +msgid "" +"Index[%02x] Codec[%s], Language[%s], Bitrate[%s], Channels[%d], Duration[%d]" msgstr "" #: src/import/ImportFLAC.cpp @@ -12404,7 +12175,6 @@ msgstr "" #. last number counts all clips, #. and the last string is the name of the track containing the #. clips. -#. #: src/menus/ClipMenus.cpp #, c-format msgid "%s %d of %d clip %s" @@ -12427,7 +12197,6 @@ msgstr "" #. last number counts all clips, #. and the last string is the name of the track containing the #. clips. -#. #: src/menus/ClipMenus.cpp #, c-format msgid "%s %d and %s %d of %d clip %s" @@ -12580,7 +12349,7 @@ msgstr "Đã tạo khoảng lặng đoạn %.2f giây tại %.2f vào đoạn hi #: src/menus/EditMenus.cpp msgctxt "command" msgid "Silence" -msgstr "" +msgstr "im lặng" #: src/menus/EditMenus.cpp #, c-format @@ -12773,9 +12542,7 @@ msgstr "" msgid "" "Cannot create directory '%s'. \n" "File already exists that is not a directory" -msgstr "" -"Không thể tạo thư mục '%s'. \n" -"Tập tin đã tồn tại. Hãy chọn một tên khác" +msgstr "Không thể tạo thư mục '%s'. \nTập tin đã tồn tại. Hãy chọn một tên khác" #: src/menus/FileMenus.cpp msgid "Export Selected Audio" @@ -13734,7 +13501,6 @@ msgstr "" #. i18n-hint: These commands assist the user in finding a sound by ear. ... #. "Scrubbing" is variable-speed playback, ... #. "Seeking" is normal speed playback but with skips, ... -#. #: src/menus/SelectMenus.cpp src/tracks/ui/Scrubbing.cpp msgid "See&k" msgstr "&Tìm thấy" @@ -13942,7 +13708,8 @@ msgid "Created new label track" msgstr "Tạo nhãn mới cho đoạn âm" #: src/menus/TrackMenus.cpp -msgid "This version of Audacity only allows one time track for each project window." +msgid "" +"This version of Audacity only allows one time track for each project window." msgstr "" #: src/menus/TrackMenus.cpp @@ -13978,7 +13745,9 @@ msgstr "Hãy chọn ít nhất một đoạn âm audio và một đoạn âm M #: src/menus/TrackMenus.cpp #, c-format -msgid "Alignment completed: MIDI from %.2f to %.2f secs, Audio from %.2f to %.2f secs." +msgid "" +"Alignment completed: MIDI from %.2f to %.2f secs, Audio from %.2f to %.2f " +"secs." msgstr "" #: src/menus/TrackMenus.cpp @@ -13987,7 +13756,9 @@ msgstr "" #: src/menus/TrackMenus.cpp #, c-format -msgid "Alignment error: input too short: MIDI from %.2f to %.2f secs, Audio from %.2f to %.2f secs." +msgid "" +"Alignment error: input too short: MIDI from %.2f to %.2f secs, Audio from " +"%.2f to %.2f secs." msgstr "Lỗi hiệu chỉnh: đầu vào quá ngắn: MIDI từ %.2fđến %.2f giây, audio từ %.2f đến %.2f giây." #: src/menus/TrackMenus.cpp @@ -14202,14 +13973,16 @@ msgstr "" msgid "Move Focused Track to &Bottom" msgstr "" -#. i18n-hint: These are strings for the status bar, and indicate whether Audacity +#. i18n-hint: These are strings for the status bar, and indicate whether +#. Audacity #. is playing or recording or stopped, and whether it is paused; #. progressive verb form #: src/menus/TransportMenus.cpp src/toolbars/ControlToolBar.cpp msgid "Playing" msgstr "Đang phát" -#. i18n-hint: These are strings for the status bar, and indicate whether Audacity +#. i18n-hint: These are strings for the status bar, and indicate whether +#. Audacity #. is playing or recording or stopped, and whether it is paused; #. progressive verb form #: src/menus/TransportMenus.cpp src/prefs/MidiIOPrefs.cpp @@ -14570,11 +14343,11 @@ msgid "%s %2.0f%% complete. Click to change task focal point." msgstr "" #: src/prefs/ApplicationPrefs.cpp -#, fuzzy msgid "Preferences for Application" -msgstr "Tuỳ chọn Chất Lượng" +msgstr "" -#. i18n-hint: Title for the update notifications panel in the preferences dialog. +#. i18n-hint: Title for the update notifications panel in the preferences +#. dialog. #: src/prefs/ApplicationPrefs.cpp msgid "Update notifications" msgstr "" @@ -14586,7 +14359,9 @@ msgid "&Check for updates" msgstr "" #: src/prefs/ApplicationPrefs.cpp -msgid "App update checking requires network access. In order to protect your privacy, Audacity does not store any personal information." +msgid "" +"App update checking requires network access. In order to protect your " +"privacy, Audacity does not store any personal information." msgstr "" #: src/prefs/BatchPrefs.cpp src/prefs/BatchPrefs.h @@ -14640,7 +14415,6 @@ msgstr "Thiết bị:" #. i18n-hint: modifier as in "Recording preferences", not progressive verb #: src/prefs/DevicePrefs.cpp src/prefs/RecordingPrefs.cpp #: src/prefs/RecordingPrefs.h -#, fuzzy msgctxt "preference" msgid "Recording" msgstr "Đang ghi âm" @@ -14794,7 +14568,9 @@ msgid "Directory %s is not writable" msgstr "Không thể ghi vào thư mục %s" #: src/prefs/DirectoriesPrefs.cpp -msgid "Changes to temporary directory will not take effect until Audacity is restarted" +msgid "" +"Changes to temporary directory will not take effect until Audacity is " +"restarted" msgstr "Việc chuyển đổi thư mục tạm thời sẽ có hiệu lực từ lần chạy sau của Audacity" #: src/prefs/DirectoriesPrefs.cpp @@ -14827,7 +14603,6 @@ msgstr "" #. i18n-hint: abbreviates "Linux Audio Developer's Simple Plugin API" #. (Application programming interface) -#. #: src/prefs/EffectsPrefs.cpp msgid "&LADSPA" msgstr "" @@ -14839,20 +14614,23 @@ msgid "LV&2" msgstr "LV&2" #. i18n-hint: "Nyquist" is an embedded interpreted programming language in -#. Audacity, named in honor of the Swedish-American Harry Nyquist (or Nyqvist). +#. Audacity, named in honor of the Swedish-American Harry Nyquist (or +#. Nyqvist). #. In the translations of this and other strings, you may transliterate the #. name into another alphabet. #: src/prefs/EffectsPrefs.cpp msgid "N&yquist" msgstr "" -#. i18n-hint: Vamp is the proper name of a software protocol for sound analysis. +#. i18n-hint: Vamp is the proper name of a software protocol for sound +#. analysis. #. It is not an abbreviation for anything. See http://vamp-plugins.org #: src/prefs/EffectsPrefs.cpp msgid "&Vamp" msgstr "&Vamp" -#. i18n-hint: Abbreviates Virtual Studio Technology, an audio software protocol +#. i18n-hint: Abbreviates Virtual Studio Technology, an audio software +#. protocol #. developed by Steinberg GmbH #: src/prefs/EffectsPrefs.cpp msgid "V&ST" @@ -14953,7 +14731,11 @@ msgid "Unused filters:" msgstr "" #: src/prefs/ExtImportPrefs.cpp -msgid "There are space characters (spaces, newlines, tabs or linefeeds) in one of the items. They are likely to break the pattern matching. Unless you know what you are doing, it is recommended to trim spaces. Do you want Audacity to trim spaces for you?" +msgid "" +"There are space characters (spaces, newlines, tabs or linefeeds) in one of " +"the items. They are likely to break the pattern matching. Unless you know " +"what you are doing, it is recommended to trim spaces. Do you want Audacity " +"to trim spaces for you?" msgstr "" #: src/prefs/ExtImportPrefs.cpp @@ -15022,7 +14804,8 @@ msgstr "" msgid "From Internet" msgstr "Từ Internet" -#: src/prefs/GUIPrefs.cpp src/prefs/TracksPrefs.cpp src/prefs/WaveformPrefs.cpp +#: src/prefs/GUIPrefs.cpp src/prefs/TracksPrefs.cpp +#: src/prefs/WaveformPrefs.cpp msgid "Display" msgstr "Hiển thị" @@ -15251,9 +15034,7 @@ msgstr "Lỗi khi nhập phím tắt từ tập tin" msgid "" "The file with the shortcuts contains illegal shortcut duplicates for \"%s\" and \"%s\".\n" "Nothing is imported." -msgstr "" -"tập tin chứa phím tắt có chứa các bản sao phím tắt không hợp lệ cho \"%s\" và \"%s\".\n" -"không có phím tắt được thêm vào." +msgstr "tập tin chứa phím tắt có chứa các bản sao phím tắt không hợp lệ cho \"%s\" và \"%s\".\nkhông có phím tắt được thêm vào." #: src/prefs/KeyConfigPrefs.cpp #, c-format @@ -15264,9 +15045,7 @@ msgstr "Đã nhạp %d phím tắt\n" msgid "" "\n" "The following commands are not mentioned in the imported file, but have their shortcuts removed because of the conflict with other new shortcuts:\n" -msgstr "" -"\n" -"Các lệnh tiếp theo không được đề cập trong tệp được thêm vào, nhưng vẫn có các phím tắt của chúng bị xóa bởi vì xung đột giữa các phím tắc khắc.\n" +msgstr "\nCác lệnh tiếp theo không được đề cập trong tệp được thêm vào, nhưng vẫn có các phím tắt của chúng bị xóa bởi vì xung đột giữa các phím tắc khắc.\n" #: src/prefs/KeyConfigPrefs.cpp msgid "Loading Keyboard Shortcuts" @@ -15405,7 +15184,8 @@ msgstr "" msgid "Midi IO" msgstr "Midi IO (đầu ra/đầu vào)" -#. i18n-hint: Modules are optional extensions to Audacity that add NEW features. +#. i18n-hint: Modules are optional extensions to Audacity that add NEW +#. features. #: src/prefs/ModulePrefs.cpp msgid "Modules" msgstr "" @@ -15422,12 +15202,15 @@ msgstr "Đây là các mô-đun thử nghiemj. Bật lên nếu bạn đã tham #. i18n-hint preserve the leading spaces #: src/prefs/ModulePrefs.cpp -msgid " 'Ask' means Audacity will ask if you want to load the module each time it starts." +msgid "" +" 'Ask' means Audacity will ask if you want to load the module each time it " +"starts." msgstr "" #. i18n-hint preserve the leading spaces #: src/prefs/ModulePrefs.cpp -msgid " 'Failed' means Audacity thinks the module is broken and won't run it." +msgid "" +" 'Failed' means Audacity thinks the module is broken and won't run it." msgstr "" #. i18n-hint preserve the leading spaces @@ -15757,7 +15540,8 @@ msgstr "" msgid "Sample Rate Con&verter:" msgstr "Bộ &chuyển đổi tốc độ lấy mẫu:" -#. i18n-hint: technical term for randomization to reduce undesirable resampling artifacts +#. i18n-hint: technical term for randomization to reduce undesirable +#. resampling artifacts #: src/prefs/QualityPrefs.cpp msgid "&Dither:" msgstr "" @@ -15770,7 +15554,8 @@ msgstr "Chuyển đổi HQ chất lượng cao" msgid "Sample Rate Conver&ter:" msgstr "Bộ &chuyển đổi tốc độ lấy mẫu:" -#. i18n-hint: technical term for randomization to reduce undesirable resampling artifacts +#. i18n-hint: technical term for randomization to reduce undesirable +#. resampling artifacts #: src/prefs/QualityPrefs.cpp msgid "Dit&her:" msgstr "" @@ -15803,7 +15588,8 @@ msgstr "&chương trình đang chạy thông qua đầu vào." msgid "Record on a new track" msgstr "Ghi âm vào dải âm mới" -#. i18n-hint: Dropout is a loss of a short sequence audio sample data from the recording +#. i18n-hint: Dropout is a loss of a short sequence audio sample data from the +#. recording #: src/prefs/RecordingPrefs.cpp msgid "Detect dropouts" msgstr "Phát hiện các khoảng hụt tiếng 'dropout'" @@ -15900,12 +15686,14 @@ msgstr "" msgid "Mel" msgstr "Mel" -#. i18n-hint: The name of a frequency scale in psychoacoustics, named for Heinrich Barkhausen +#. i18n-hint: The name of a frequency scale in psychoacoustics, named for +#. Heinrich Barkhausen #: src/prefs/SpectrogramSettings.cpp msgid "Bark" msgstr "Bark" -#. i18n-hint: The name of a frequency scale in psychoacoustics, abbreviates Equivalent Rectangular Bandwidth +#. i18n-hint: The name of a frequency scale in psychoacoustics, abbreviates +#. Equivalent Rectangular Bandwidth #: src/prefs/SpectrogramSettings.cpp msgid "ERB" msgstr "ERB" @@ -15919,25 +15707,25 @@ msgstr "" #: src/prefs/SpectrogramSettings.cpp msgctxt "spectrum prefs" msgid "Color (default)" -msgstr "" +msgstr "màu (mặc định)" #. i18n-hint: Classic color scheme(from theme) for spectrograms #: src/prefs/SpectrogramSettings.cpp msgctxt "spectrum prefs" msgid "Color (classic)" -msgstr "" +msgstr "màu (cổ điển)" #. i18n-hint: Grayscale color scheme for spectrograms #: src/prefs/SpectrogramSettings.cpp msgctxt "spectrum prefs" msgid "Grayscale" -msgstr "" +msgstr "Thang đo độ xám" #. i18n-hint: Inverse grayscale color scheme for spectrograms #: src/prefs/SpectrogramSettings.cpp msgctxt "spectrum prefs" msgid "Inverse grayscale" -msgstr "" +msgstr "Thang đo độ xám ngược chiều" #: src/prefs/SpectrogramSettings.cpp msgid "Frequencies" @@ -16066,7 +15854,8 @@ msgstr "" msgid "Show a grid along the &Y-axis" msgstr "Hiển thị đường kẻ lưới bằng trục &Y" -#. i18n-hint: FFT stands for Fast Fourier Transform and probably shouldn't be translated +#. i18n-hint: FFT stands for Fast Fourier Transform and probably shouldn't be +#. translated #: src/prefs/SpectrumPrefs.cpp msgid "FFT Find Notes" msgstr "" @@ -16128,7 +15917,8 @@ msgid "The maximum number of notes must be in the range 1..128" msgstr "" #. i18n-hint: A theme is a consistent visual style across an application's -#. graphical user interface, including choices of colors, and similarity of images +#. graphical user interface, including choices of colors, and similarity of +#. images #. such as those on button controls. Audacity can load and save alternative #. themes. #: src/prefs/ThemePrefs.cpp src/prefs/ThemePrefs.h @@ -16437,7 +16227,8 @@ msgstr "" msgid "Waveform dB &range:" msgstr "" -#. i18n-hint: These are strings for the status bar, and indicate whether Audacity +#. i18n-hint: These are strings for the status bar, and indicate whether +#. Audacity #. is playing or recording or stopped, and whether it is paused; #. progressive verb form #: src/toolbars/ControlToolBar.cpp @@ -16476,7 +16267,8 @@ msgstr "Chọn từ đây đến kết thúc" msgid "Select to Start" msgstr "Chọn đến Đầu" -#. i18n-hint: These are strings for the status bar, and indicate whether Audacity +#. i18n-hint: These are strings for the status bar, and indicate whether +#. Audacity #. is playing or recording or stopped, and whether it is paused. #: src/toolbars/ControlToolBar.cpp src/tracks/ui/Scrubbing.cpp #, c-format @@ -16609,7 +16401,8 @@ msgstr "Bộ đo ghi âm" msgid "Playback Meter" msgstr "Bộ đo phát âm thanh" -#. i18n-hint: (noun) The meter that shows the loudness of the audio being recorded. +#. i18n-hint: (noun) The meter that shows the loudness of the audio being +#. recorded. #. This is the name used in screen reader software, where having 'Meter' first #. apparently is helpful to partially sighted people. #: src/toolbars/MeterToolBar.cpp @@ -16695,7 +16488,6 @@ msgstr "" #. i18n-hint: These commands assist the user in finding a sound by ear. ... #. "Scrubbing" is variable-speed playback, ... #. "Seeking" is normal speed playback but with skips -#. #: src/toolbars/ScrubbingToolBar.cpp msgid "Stop Scrubbing" msgstr "" @@ -16703,7 +16495,6 @@ msgstr "" #. i18n-hint: These commands assist the user in finding a sound by ear. ... #. "Scrubbing" is variable-speed playback, ... #. "Seeking" is normal speed playback but with skips -#. #: src/toolbars/ScrubbingToolBar.cpp msgid "Start Scrubbing" msgstr "" @@ -16711,7 +16502,6 @@ msgstr "" #. i18n-hint: These commands assist the user in finding a sound by ear. ... #. "Scrubbing" is variable-speed playback, ... #. "Seeking" is normal speed playback but with skips -#. #: src/toolbars/ScrubbingToolBar.cpp msgid "Stop Seeking" msgstr "" @@ -16719,7 +16509,6 @@ msgstr "" #. i18n-hint: These commands assist the user in finding a sound by ear. ... #. "Scrubbing" is variable-speed playback, ... #. "Seeking" is normal speed playback but with skips -#. #: src/toolbars/ScrubbingToolBar.cpp msgid "Start Seeking" msgstr "" @@ -16798,9 +16587,7 @@ msgstr "" #: src/toolbars/SelectionBar.cpp #, c-format msgid "Selection %s. %s won't change." -msgstr "" -" Vùng chọn %s. \n" -"%s không thay đổi." +msgstr " Vùng chọn %s. \n%s không thay đổi." #. i18n-hint: Clicking this menu item shows the toolbar #. for selecting a time range of audio @@ -17020,7 +16807,9 @@ msgstr "" #: src/tracks/playabletrack/notetrack/ui/NoteTrackVZoomHandle.cpp #: src/tracks/playabletrack/wavetrack/ui/WaveTrackVZoomHandle.cpp -msgid "Click to vertically zoom in. Shift-click to zoom out. Drag to specify a zoom region." +msgid "" +"Click to vertically zoom in. Shift-click to zoom out. Drag to specify a zoom" +" region." msgstr "Nhấn chuột để phóng to theo chiều dọc. Nhấn chuột + Shift để thu nhỏ. Rê chuột để chọn vùng zoom " #: src/tracks/playabletrack/notetrack/ui/NoteTrackVZoomHandle.cpp @@ -17156,7 +16945,8 @@ msgid "Processing... %i%%" msgstr "" #. i18n-hint: The strings name a track and a format -#. i18n-hint: The strings name a track and a channel choice (mono, left, or right) +#. i18n-hint: The strings name a track and a channel choice (mono, left, or +#. right) #: src/tracks/playabletrack/wavetrack/ui/WaveTrackControls.cpp #: src/tracks/playabletrack/wavetrack/ui/WaveformView.cpp #, c-format @@ -17352,7 +17142,8 @@ msgid "%.0f%% Right" msgstr "%.0f%% Phải" #: src/tracks/playabletrack/wavetrack/ui/WaveTrackView.cpp -msgid "Click and drag to adjust sizes of sub-views, double-click to split evenly" +msgid "" +"Click and drag to adjust sizes of sub-views, double-click to split evenly" msgstr "Click và rê chuột để điều chỉnh kích cỡ tương đối" #: src/tracks/playabletrack/wavetrack/ui/WaveTrackView.cpp @@ -17511,7 +17302,6 @@ msgstr "Đã sửa lại đường bao biên độ." #. i18n-hint: These commands assist the user in finding a sound by ear. ... #. "Scrubbing" is variable-speed playback, ... #. "Seeking" is normal speed playback but with skips, ... -#. #: src/tracks/ui/Scrubbing.cpp msgid "&Scrub" msgstr "" @@ -17523,7 +17313,6 @@ msgstr "" #. i18n-hint: These commands assist the user in finding a sound by ear. ... #. "Scrubbing" is variable-speed playback, ... #. "Seeking" is normal speed playback but with skips, ... -#. #: src/tracks/ui/Scrubbing.cpp msgid "Scrub &Ruler" msgstr "" @@ -17585,7 +17374,8 @@ msgstr "" msgid "Edit, Preferences..." msgstr "" -#. i18n-hint: %s is usually replaced by "Ctrl+P" for Windows/Linux, "Command+," for Mac +#. i18n-hint: %s is usually replaced by "Ctrl+P" for Windows/Linux, +#. "Command+," for Mac #: src/tracks/ui/SelectHandle.cpp #, c-format msgid "Multi-Tool Mode: %s for Mouse and Keyboard Preferences." @@ -17599,7 +17389,8 @@ msgstr "" msgid "Click and drag to select audio" msgstr "Nhấn và rê chuột để chọn âm thanh" -#. i18n-hint: "Snapping" means automatic alignment of selection edges to any nearby label or clip boundaries +#. i18n-hint: "Snapping" means automatic alignment of selection edges to any +#. nearby label or clip boundaries #: src/tracks/ui/SelectHandle.cpp msgid "(snapping)" msgstr "" @@ -17656,13 +17447,15 @@ msgstr "Command+Click" msgid "Ctrl+Click" msgstr "Ctrl+Click" -#. i18n-hint: %s is replaced by (translation of) 'Ctrl+Click' on windows, 'Command+Click' on Mac +#. i18n-hint: %s is replaced by (translation of) 'Ctrl+Click' on windows, +#. 'Command+Click' on Mac #: src/tracks/ui/TrackSelectHandle.cpp #, c-format msgid "%s to select or deselect track. Drag up or down to change track order." msgstr "" -#. i18n-hint: %s is replaced by (translation of) 'Ctrl+Click' on windows, 'Command+Click' on Mac +#. i18n-hint: %s is replaced by (translation of) 'Ctrl+Click' on windows, +#. 'Command+Click' on Mac #: src/tracks/ui/TrackSelectHandle.cpp #, c-format msgid "%s to select or deselect track." @@ -17698,27 +17491,27 @@ msgstr "Chuột Trái=Phóng to, Chuột Phải=Thu nhỏ, Chuột Giữa=Chuẩ #: src/update/UpdateManager.cpp msgctxt "update dialog" msgid "Error checking for update" -msgstr "" +msgstr "lỗi tìm kiếm phiên bản cập nhật" #: src/update/UpdateManager.cpp msgctxt "update dialog" msgid "Unable to connect to Audacity update server." -msgstr "" +msgstr "không thể kết nối vào máy chủ cập nhật của Audacity." #: src/update/UpdateManager.cpp msgctxt "update dialog" msgid "Update data was corrupted." -msgstr "" +msgstr "dữ liệu cập nhật bị lỗi." #: src/update/UpdateManager.cpp msgctxt "update dialog" msgid "Error downloading update." -msgstr "" +msgstr "lỗi tải bản cập nhật." #: src/update/UpdateManager.cpp msgctxt "update dialog" msgid "Can't open the Audacity download link." -msgstr "" +msgstr "không mở được đường dẫn để tải Audacity về." #. i18n-hint: Title of the app update notice dialog. #: src/update/UpdateNoticeDialog.cpp @@ -17726,11 +17519,15 @@ msgid "App update checking" msgstr "" #: src/update/UpdateNoticeDialog.cpp -msgid "To stay up to date, you will receive an in-app notification whenever there is a new version of Audacity available to download." +msgid "" +"To stay up to date, you will receive an in-app notification whenever there " +"is a new version of Audacity available to download." msgstr "" #: src/update/UpdateNoticeDialog.cpp -msgid "In order to protect your privacy, Audacity does not collect any personal information. However, app update checking does require network access." +msgid "" +"In order to protect your privacy, Audacity does not collect any personal " +"information. However, app update checking does require network access." msgstr "" #: src/update/UpdateNoticeDialog.cpp @@ -17745,14 +17542,13 @@ msgstr "" #. i18n-hint: a page in the Preferences dialog; use same name #: src/update/UpdateNoticeDialog.cpp -#, fuzzy msgid "Preferences > Application" -msgstr "Tuỳ chọn Chất Lượng" +msgstr "" #: src/update/UpdatePopupDialog.cpp msgctxt "update dialog" msgid "Update Audacity" -msgstr "" +msgstr "Cập nhật Audacity" #: src/update/UpdatePopupDialog.cpp msgctxt "update dialog" @@ -17762,24 +17558,24 @@ msgstr "&bỏ qua" #: src/update/UpdatePopupDialog.cpp msgctxt "update dialog" msgid "&Install update" -msgstr "" +msgstr "&cài bản cập nhật" #. i18n-hint Substitution of version number for %s. #: src/update/UpdatePopupDialog.cpp #, c-format msgctxt "update dialog" msgid "Audacity %s is available!" -msgstr "" +msgstr "Audacity %s đã sẵn sàng!" #: src/update/UpdatePopupDialog.cpp msgctxt "update dialog" msgid "Changelog" -msgstr "" +msgstr "bản ghi thay đổi" #: src/update/UpdatePopupDialog.cpp msgctxt "update dialog" msgid "Read more on GitHub" -msgstr "" +msgstr "đọc thêm tại GitHub" #: src/widgets/AButton.cpp msgid "(disabled)" @@ -18020,10 +17816,12 @@ msgstr "" #. i18n-hint: Format string for displaying time in hours, minutes, seconds #. * and hundredths of a second. Change the 'h' to the abbreviation for hours, -#. * 'm' to the abbreviation for minutes and 's' to the abbreviation for seconds +#. * 'm' to the abbreviation for minutes and 's' to the abbreviation for +#. seconds #. * (the hundredths are shown as decimal seconds). Don't change the numbers #. * unless there aren't 60 minutes in an hour in your locale. -#. * The decimal separator is specified using '<' if your language uses a ',' or +#. * The decimal separator is specified using '<' if your language uses a ',' +#. or #. * to '>' if your language uses a '.'. #: src/widgets/NumericTextCtrl.cpp msgid "0100 h 060 m 060>0100 s" @@ -18036,11 +17834,13 @@ msgid "hh:mm:ss + milliseconds" msgstr "hh:mm:ss + milli giây" #. i18n-hint: Format string for displaying time in hours, minutes, seconds -#. * and milliseconds. Change the 'h' to the abbreviation for hours, 'm' to the +#. * and milliseconds. Change the 'h' to the abbreviation for hours, 'm' to +#. the #. * abbreviation for minutes and 's' to the abbreviation for seconds (the #. * milliseconds are shown as decimal seconds) . Don't change the numbers #. * unless there aren't 60 minutes in an hour in your locale. -#. * The decimal separator is specified using '<' if your language uses a ',' or +#. * The decimal separator is specified using '<' if your language uses a ',' +#. or #. * to '>' if your language uses a '.'. #: src/widgets/NumericTextCtrl.cpp msgid "0100 h 060 m 060>01000 s" @@ -18057,7 +17857,8 @@ msgstr "hh:mm:ss + mẫu" #. * abbreviation for minutes, 's' to the abbreviation for seconds and #. * translate samples . Don't change the numbers #. * unless there aren't 60 seconds in a minute in your locale. -#. * The decimal separator is specified using '<' if your language uses a ',' or +#. * The decimal separator is specified using '<' if your language uses a ',' +#. or #. * to '>' if your language uses a '.'. #: src/widgets/NumericTextCtrl.cpp msgid "0100 h 060 m 060 s+># samples" @@ -18066,7 +17867,6 @@ msgstr "" #. i18n-hint: Name of time display format that shows time in samples (at the #. * current project sample rate). For example the number of a sample at 1 #. * second into a recording at 44.1KHz would be 44,100. -#. #: src/widgets/NumericTextCtrl.cpp plug-ins/sample-data-export.ny msgid "samples" msgstr "mẫu" @@ -18090,7 +17890,8 @@ msgstr "hh:mm:ss + film frame (24 fps)" #. * for hours, 'm' to the abbreviation for minutes, 's' to the abbreviation #. * for seconds and translate 'frames' . Don't change the numbers #. * unless there aren't 60 seconds in a minute in your locale. -#. * The decimal separator is specified using '<' if your language uses a ',' or +#. * The decimal separator is specified using '<' if your language uses a ',' +#. or #. * to '>' if your language uses a '.'. #: src/widgets/NumericTextCtrl.cpp msgid "0100 h 060 m 060 s+>24 frames" @@ -18121,7 +17922,8 @@ msgstr "hh:mm:ss + NTSC drop frame" #. * and frames with NTSC drop frames. Change the 'h' to the abbreviation #. * for hours, 'm' to the abbreviation for minutes, 's' to the abbreviation #. * for seconds and translate 'frames'. Leave the |N alone, it's important! -#. * The decimal separator is specified using '<' if your language uses a ',' or +#. * The decimal separator is specified using '<' if your language uses a ',' +#. or #. * to '>' if your language uses a '.'. #: src/widgets/NumericTextCtrl.cpp msgid "0100 h 060 m 060 s+>30 frames|N" @@ -18139,7 +17941,8 @@ msgstr "hh:mm:ss + NTSC non-drop frame" #. * for hours, 'm' to the abbreviation for minutes, 's' to the abbreviation #. * for seconds and translate 'frames'. Leave the | .999000999 alone, #. * the whole things really is slightly off-speed! -#. * The decimal separator is specified using '<' if your language uses a ',' or +#. * The decimal separator is specified using '<' if your language uses a ',' +#. or #. * to '>' if your language uses a '.'. #: src/widgets/NumericTextCtrl.cpp msgid "0100 h 060 m 060 s+>030 frames| .999000999" @@ -18170,7 +17973,8 @@ msgstr "hh:mm:ss + PAL frame (25 fps)" #. * and frames with PAL TV frames. Change the 'h' to the abbreviation #. * for hours, 'm' to the abbreviation for minutes, 's' to the abbreviation #. * for seconds and translate 'frames'. Nice simple time code! -#. * The decimal separator is specified using '<' if your language uses a ',' or +#. * The decimal separator is specified using '<' if your language uses a ',' +#. or #. * to '>' if your language uses a '.'. #: src/widgets/NumericTextCtrl.cpp msgid "0100 h 060 m 060 s+>25 frames" @@ -18200,7 +18004,8 @@ msgstr "hh:mm:ss + CDDA frame (75 fps)" #. * and frames with CD Audio frames. Change the 'h' to the abbreviation #. * for hours, 'm' to the abbreviation for minutes, 's' to the abbreviation #. * for seconds and translate 'frames'. -#. * The decimal separator is specified using '<' if your language uses a ',' or +#. * The decimal separator is specified using '<' if your language uses a ',' +#. or #. * to '>' if your language uses a '.'. #: src/widgets/NumericTextCtrl.cpp msgid "0100 h 060 m 060 s+>75 frames" @@ -18222,7 +18027,8 @@ msgstr "01000,01000 frame|75" #. i18n-hint: Format string for displaying frequency in hertz. Change #. * the decimal point for your locale. Don't change the numbers. -#. * The decimal separator is specified using '<' if your language uses a ',' or +#. * The decimal separator is specified using '<' if your language uses a ',' +#. or #. * to '>' if your language uses a '.'. #: src/widgets/NumericTextCtrl.cpp msgid "010,01000>0100 Hz" @@ -18239,7 +18045,8 @@ msgstr "kHz" #. i18n-hint: Format string for displaying frequency in kilohertz. Change #. * the decimal point for your locale. Don't change the numbers. -#. * The decimal separator is specified using '<' if your language uses a ',' or +#. * The decimal separator is specified using '<' if your language uses a ',' +#. or #. * to '>' if your language uses a '.'. #: src/widgets/NumericTextCtrl.cpp msgid "01000>01000 kHz|0.001" @@ -18257,7 +18064,8 @@ msgstr "octaves \"bát độ\"" #. i18n-hint: Format string for displaying log of frequency in octaves. #. * Change the decimal points for your locale. Don't change the numbers. -#. * The decimal separator is specified using '<' if your language uses a ',' or +#. * The decimal separator is specified using '<' if your language uses a ',' +#. or #. * to '>' if your language uses a '.'. #: src/widgets/NumericTextCtrl.cpp msgid "100>01000 octaves|1.442695041" @@ -18277,7 +18085,8 @@ msgstr "" #. i18n-hint: Format string for displaying log of frequency in semitones #. * and cents. #. * Change the decimal points for your locale. Don't change the numbers. -#. * The decimal separator is specified using '<' if your language uses a ',' or +#. * The decimal separator is specified using '<' if your language uses a ',' +#. or #. * to '>' if your language uses a '.'. #: src/widgets/NumericTextCtrl.cpp msgid "1000 semitones >0100 cents|17.312340491" @@ -18356,28 +18165,28 @@ msgstr "Xác nhận đóng" #. i18n-hint: %s is replaced with a directory path. #: src/widgets/UnwritableLocationErrorDialog.cpp -#, fuzzy, c-format +#, c-format msgid "Unable to write files to directory: %s." -msgstr "Không thể đọc thiết lập sẵn từ \"%s\"" +msgstr "" #. i18n-hint: This message describes the error in the Error dialog. #: src/widgets/UnwritableLocationErrorDialog.cpp -msgid "Please check that the directory exists, has the necessary permissions, and the drive isn't full." +msgid "" +"Please check that the directory exists, has the necessary permissions, and " +"the drive isn't full." msgstr "" #. i18n-hint: %s is replaced with 'Preferences > Directories'. #: src/widgets/UnwritableLocationErrorDialog.cpp -#, fuzzy, c-format +#, c-format msgid "You can change the directory in %s." msgstr "" -"Không tạo được thư muc:\n" -" %s" -#. i18n-hint: Hyperlink title that opens Preferences dialog on Directories page. +#. i18n-hint: Hyperlink title that opens Preferences dialog on Directories +#. page. #: src/widgets/UnwritableLocationErrorDialog.cpp -#, fuzzy msgid "Preferences > Directories" -msgstr "Tuỳ chọn cho thiết bị" +msgstr "" #: src/widgets/Warning.cpp msgid "Don't show this warning again" @@ -18738,7 +18547,8 @@ msgid "Benjamin Schwartz and Steve Daulton" msgstr "" #: plug-ins/clipfix.ny -msgid "Licensing confirmed under terms of the GNU General Public License version 2" +msgid "" +"Licensing confirmed under terms of the GNU General Public License version 2" msgstr "" #: plug-ins/clipfix.ny @@ -18764,7 +18574,8 @@ msgstr "" #: plug-ins/crossfadeclips.ny #, lisp-format -msgid "Error.~%Invalid selection.~%Empty space at start/ end of the selection." +msgid "" +"Error.~%Invalid selection.~%Empty space at start/ end of the selection." msgstr "" #: plug-ins/crossfadeclips.ny @@ -19095,7 +18906,8 @@ msgid "Label Sounds" msgstr "" #: plug-ins/label-sounds.ny plug-ins/noisegate.ny -msgid "Released under terms of the GNU General Public License version 2 or later." +msgid "" +"Released under terms of the GNU General Public License version 2 or later." msgstr "" #: plug-ins/label-sounds.ny @@ -19177,12 +18989,16 @@ msgstr "" #: plug-ins/label-sounds.ny #, lisp-format -msgid "No sounds found.~%Try lowering the 'Threshold' or reduce 'Minimum sound duration'." +msgid "" +"No sounds found.~%Try lowering the 'Threshold' or reduce 'Minimum sound " +"duration'." msgstr "" #: plug-ins/label-sounds.ny #, lisp-format -msgid "Labelling regions between sounds requires~%at least two sounds.~%Only one sound detected." +msgid "" +"Labelling regions between sounds requires~%at least two sounds.~%Only one " +"sound detected." msgstr "" #: plug-ins/limiter.ny @@ -19205,7 +19021,8 @@ msgstr "" msgid "Hard Limit" msgstr "" -#. i18n-hint: clipping of wave peaks and troughs, not division of a track into clips +#. i18n-hint: clipping of wave peaks and troughs, not division of a track into +#. clips #: plug-ins/limiter.ny msgid "Soft Clip" msgstr "" @@ -19218,17 +19035,13 @@ msgstr "" msgid "" "Input Gain (dB)\n" "mono/Left" -msgstr "" -"Núm Gain điều chỉnh đầu vào (dB) \n" -"Mono/Left-Trái" +msgstr "Núm Gain điều chỉnh đầu vào (dB) \nMono/Left-Trái" #: plug-ins/limiter.ny msgid "" "Input Gain (dB)\n" "Right channel" -msgstr "" -"Núm Gain điều chỉnh đầu vào (dB) \n" -"Right channel / Kênh bên phải" +msgstr "Núm Gain điều chỉnh đầu vào (dB) \nRight channel / Kênh bên phải" #: plug-ins/limiter.ny msgid "Limit to (dB)" @@ -19737,7 +19550,8 @@ msgstr "" #: plug-ins/sample-data-export.ny #, lisp-format -msgid "~a ~a~%~aSample Rate: ~a Hz.~%Length processed: ~a samples ~a seconds.~a" +msgid "" +"~a ~a~%~aSample Rate: ~a Hz.~%Length processed: ~a samples ~a seconds.~a" msgstr "" #: plug-ins/sample-data-export.ny @@ -19790,13 +19604,15 @@ msgstr "" msgid "Peak Amplitude:   ~a (linear)   ~a dB." msgstr "" -#. i18n-hint: RMS abbreviates root-mean-square, a method of averaging a signal; there also "weighted" versions of it but this isn't that +#. i18n-hint: RMS abbreviates root-mean-square, a method of averaging a +#. signal; there also "weighted" versions of it but this isn't that #: plug-ins/sample-data-export.ny #, lisp-format msgid "RMS (unweighted):   ~a dB." msgstr "RMS (unweighted):   ~a dB." -#. i18n-hint: DC derives from "direct current" in electronics, really means the zero frequency component of a signal +#. i18n-hint: DC derives from "direct current" in electronics, really means +#. the zero frequency component of a signal #: plug-ins/sample-data-export.ny #, lisp-format msgid "DC Offset:   ~a" @@ -20063,7 +19879,9 @@ msgstr "" #: plug-ins/vocalrediso.ny #, lisp-format -msgid "Pan position: ~a~%The left and right channels are correlated by about ~a %. This means:~%~a~%" +msgid "" +"Pan position: ~a~%The left and right channels are correlated by about ~a %. " +"This means:~%~a~%" msgstr "" #: plug-ins/vocalrediso.ny @@ -20080,7 +19898,8 @@ msgid "" msgstr "" #: plug-ins/vocalrediso.ny -msgid " - A fairly good value, at least stereo in average and not too wide spread." +msgid "" +" - A fairly good value, at least stereo in average and not too wide spread." msgstr "" #: plug-ins/vocalrediso.ny @@ -20167,6 +19986,3 @@ msgstr "Tần số Radar Needles (Hz)" #, lisp-format msgid "Error.~%Stereo track required." msgstr "Lỗi. Bạn phải có dải âm ~%Stereo" - -#~ msgid "Gray Scale" -#~ msgstr "gam xám" diff --git a/src/tracks/ui/TimeShiftHandle.cpp b/src/tracks/ui/TimeShiftHandle.cpp index 078a1f267..2e78a6538 100644 --- a/src/tracks/ui/TimeShiftHandle.cpp +++ b/src/tracks/ui/TimeShiftHandle.cpp @@ -621,6 +621,10 @@ namespace { TrackList &trackList, Track &capturedTrack, Track &track, ClipMoveState &state) { + if (state.shifters.empty()) + // Shift + Dragging hasn't yet supported vertical movement + return false; + // Accumulate new pairs for the correspondence, and merge them // into the given correspondence only on success Correspondence newPairs; diff --git a/src/ui/AccessibleLinksFormatter.cpp b/src/ui/AccessibleLinksFormatter.cpp index d4e52135f..65ca3b248 100644 --- a/src/ui/AccessibleLinksFormatter.cpp +++ b/src/ui/AccessibleLinksFormatter.cpp @@ -83,62 +83,63 @@ void AccessibleLinksFormatter::Populate(ShuttleGui& S) const const int borderSize = S.GetBorder(); - S.Prop(0).StartInvisiblePanel(); - S.StartWrapLay(); + S.StartHorizontalLay(wxEXPAND); { - size_t currentPosition = 0; - S.SetBorder(0); + S.AddSpace(borderSize); - if (borderSize > 0) - S.AddSpace(borderSize); - - for (const ProcessedArgument& processedArgument : processedArguments) + S.StartWrapLay(wxEXPAND, 1); { - const FormatArgument* argument = processedArgument.Argument; + size_t currentPosition = 0; - // Add everything between currentPosition and PlaceholderPosition - - if (currentPosition != processedArgument.PlaceholderPosition) + for (const ProcessedArgument& processedArgument : processedArguments) { - const size_t substrLength = - processedArgument.PlaceholderPosition - currentPosition; + const FormatArgument* argument = processedArgument.Argument; - S.Prop(0).AddFixedText( - Verbatim(translated.substr(currentPosition, substrLength))); + // Add everything between currentPosition and PlaceholderPosition + + if (currentPosition != processedArgument.PlaceholderPosition) + { + const size_t substrLength = + processedArgument.PlaceholderPosition - currentPosition; + + S.Prop(0).AddFixedText( + Verbatim(translated.substr(currentPosition, substrLength))); + } + + // Add hyperlink + + wxHyperlinkCtrl* hyperlink = safenew wxHyperlinkCtrl( + S.GetParent(), wxID_ANY, argument->Value.Translation(), + argument->TargetURL); + + if (argument->Handler) + { + hyperlink->Bind( + wxEVT_HYPERLINK, [handler = argument->Handler](wxHyperlinkEvent& evt) { + handler(); + }); + } + + S.AddWindow(hyperlink, wxALIGN_TOP | wxALIGN_LEFT); + + // Update the currentPostion to the first symbol after the + // Placeholder + + currentPosition = OffsetPosition( + processedArgument.PlaceholderPosition, + argument->Placeholder.Length()); + + if (currentPosition >= translated.Length()) + break; } - // Add hyperlink - - wxHyperlinkCtrl* hyperlink = safenew wxHyperlinkCtrl( - S.GetParent(), wxID_ANY, argument->Value.Translation(), - argument->TargetURL); - - if (argument->Handler) - { - hyperlink->Bind( - wxEVT_HYPERLINK, [handler = argument->Handler](wxHyperlinkEvent& evt) { - handler(); - }); - } - - S.AddWindow(hyperlink, wxALIGN_TOP | wxALIGN_LEFT); - - // Update the currentPostion to the first symbol after the Placeholder - - currentPosition = OffsetPosition( - processedArgument.PlaceholderPosition, - argument->Placeholder.Length()); - - if (currentPosition >= translated.Length()) - break; + if (currentPosition < translated.Length()) + S.AddFixedText(Verbatim(translated.substr(currentPosition))); } - - if (currentPosition < translated.Length()) - S.AddFixedText(Verbatim(translated.substr(currentPosition))); + S.EndWrapLay(); } - S.EndWrapLay(); - S.EndInvisiblePanel(); + S.EndHorizontalLay(); S.SetBorder(borderSize); } diff --git a/src/update/UpdateNoticeDialog.cpp b/src/update/UpdateNoticeDialog.cpp index fef6d9d11..acfa34669 100644 --- a/src/update/UpdateNoticeDialog.cpp +++ b/src/update/UpdateNoticeDialog.cpp @@ -73,6 +73,8 @@ UpdateNoticeDialog::UpdateNoticeDialog(wxWindow* parent) S.AddFixedText(secondParagraph, false, 500); + S.AddSpace(0, 8); + /* i18n-hint: %s will be replaced with "our Privacy Policy" */ AccessibleLinksFormatter privacyPolicy(XO("See %s for more info.")); @@ -83,8 +85,6 @@ UpdateNoticeDialog::UpdateNoticeDialog(wxWindow* parent) privacyPolicy.Populate(S); - S.AddSpace(0, 8); - AccessibleLinksFormatter preferencesMessage(thirdParagraph); preferencesMessage.FormatLink( diff --git a/src/widgets/ErrorReportDialog.cpp b/src/widgets/ErrorReportDialog.cpp index 319c435cc..c3cfafb91 100644 --- a/src/widgets/ErrorReportDialog.cpp +++ b/src/widgets/ErrorReportDialog.cpp @@ -26,6 +26,7 @@ #include #include +#include "ui/AccessibleLinksFormatter.h" #include "AllThemeResources.h" #include "Theme.h" #include "HelpText.h" @@ -37,6 +38,7 @@ #include "CodeConversions.h" constexpr int MaxUserCommentLength = 2000; +constexpr bool ErrorReportDialogHasUserComment = false; BEGIN_EVENT_TABLE(ErrorReportDialog, wxDialogWrapper) EVT_BUTTON(wxID_YES, ErrorReportDialog::OnSend) @@ -123,18 +125,34 @@ ErrorReportDialog::ErrorReportDialog( S.AddSpace(0, 20); - S.AddVariableText(XO("Comments"))->SetFont(textFont); + if constexpr (ErrorReportDialogHasUserComment) + { + S.AddVariableText(XO("Comments"))->SetFont(textFont); - S.AddSpace(0, 6); + S.AddSpace(0, 6); - mCommentsControl = S.Style(wxTE_MULTILINE) - .MinSize(wxSize(0, 76)) - .Name(XO("Comments")) - .AddTextBox({}, {}, 0); + mCommentsControl = S.Style(wxTE_MULTILINE) + .MinSize(wxSize(0, 76)) + .Name(XO("Comments")) + .AddTextBox({}, {}, 0); - mCommentsControl->SetMaxLength(MaxUserCommentLength); + mCommentsControl->SetMaxLength(MaxUserCommentLength); - S.AddSpace(0, 20); + S.AddSpace(0, 20); + } + + /* i18n-hint: %s will be replaced with "our Privacy Policy" */ + AccessibleLinksFormatter privacyPolicy(XO("See %s for more info.")); + + privacyPolicy.FormatLink( + /* i18n-hint: Title of hyperlink to the privacy policy. This is an + object of "See". */ + wxT("%s"), XO("our Privacy Policy"), + "https://www.audacityteam.org/about/desktop-privacy-notice/"); + + privacyPolicy.Populate(S); + + S.AddSpace(0, 20); S.StartHorizontalLay(wxEXPAND); {