From 679d7b752ba511d2cd0ba90e1b282bd8cf21e9ec Mon Sep 17 00:00:00 2001 From: itsmattkc Date: Mon, 11 Feb 2019 02:29:22 -0800 Subject: [PATCH] preferences dialog update --- dialogs/preferencesdialog.cpp | 124 ++++---- dialogs/preferencesdialog.h | 8 +- io/config.cpp | 11 +- io/config.h | 3 +- main.cpp | 6 +- playback/cacher.cpp | 12 +- ts/olive_ar.ts | 570 ++++++++++++++++++---------------- ts/olive_cs.ts | 567 +++++++++++++++++---------------- ts/olive_de.ts | 566 +++++++++++++++++---------------- ts/olive_es.ts | 558 +++++++++++++++++---------------- ts/olive_fr.ts | 558 +++++++++++++++++---------------- ts/olive_it.ts | 558 +++++++++++++++++---------------- ts/olive_ru.ts | 567 +++++++++++++++++---------------- 13 files changed, 2202 insertions(+), 1906 deletions(-) diff --git a/dialogs/preferencesdialog.cpp b/dialogs/preferencesdialog.cpp index df686be31..aa26047ba 100644 --- a/dialogs/preferencesdialog.cpp +++ b/dialogs/preferencesdialog.cpp @@ -89,7 +89,40 @@ void PreferencesDialog::setup_kbd_shortcut_worker(QMenu* menu, QTreeWidgetItem* key_shortcut_actions.append(a); } } - } + } +} + +void PreferencesDialog::delete_previews(char type) { + if (type != 't' && type != 'w' && type != 1) return; + + QDir preview_path(get_data_path() + "/previews"); + + if (type == 1) { + // indiscriminately delete everything + preview_path.removeRecursively(); + } else { + QStringList preview_file_list = preview_path.entryList(QDir::Files | QDir::NoDotAndDotDot); + for (int i=0;i= 0 + && preview_file_str.at(identifier_char_index) >= 48 + && preview_file_str.at(identifier_char_index) <= 57) { + identifier_char_index--; + } + + // thumbnails will have a 't' towards the end of the filenames, waveforms will have a 'w' + // if they match the type of preview we're deleting, remove them + if (preview_file_str.at(identifier_char_index) == type) { + QFile::remove(preview_path.filePath(preview_file_str)); + } + } + } } void PreferencesDialog::setup_kbd_shortcuts(QMenuBar* menubar) { @@ -131,8 +164,7 @@ void PreferencesDialog::save() { mainWindow->load_css_from_file(config.css_path); config.recording_mode = recordingComboBox->currentIndex() + 1; config.img_seq_formats = imgSeqFormatEdit->text(); - config.fast_seeking = fastSeekButton->isChecked(); - config.disable_multithreading_for_images = disable_img_multithread->isChecked(); + config.fast_seeking = fastSeekButton->isChecked(); config.upcoming_queue_size = upcoming_queue_spinbox->value(); config.upcoming_queue_type = upcoming_queue_type->currentIndex(); config.previous_queue_size = previous_queue_spinbox->value(); @@ -195,36 +227,7 @@ void PreferencesDialog::save() { } } - if (delete_match != 0) { - QDir preview_path(get_data_path() + "/previews"); - - if (delete_match == 1) { - // indiscriminately delete everything - preview_path.removeRecursively(); - } else { - QStringList preview_file_list = preview_path.entryList(QDir::Files | QDir::NoDotAndDotDot); - for (int i=0;i= 0 - && preview_file_str.at(identifier_char_index) >= 48 - && preview_file_str.at(identifier_char_index) <= 57) { - identifier_char_index--; - } - - // thumbnails will have a 't' towards the end of the filenames, waveforms will have a 'w' - // if they match the type of preview we're deleting, remove them - if (preview_file_str.at(identifier_char_index) == delete_match) { - QFile::remove(preview_path.filePath(preview_file_str)); - } - } - } - } + delete_previews(delete_match); } // save keyboard shortcuts @@ -362,7 +365,20 @@ void PreferencesDialog::browse_css_file() { QString fn = QFileDialog::getOpenFileName(this, tr("Browse for CSS file")); if (!fn.isEmpty()) { custom_css_fn->setText(fn); - } + } +} + +void PreferencesDialog::delete_all_previews() { + if (QMessageBox::question(this, + tr("Delete All Previews"), + tr("Are you sure you want to delete all previews?"), + QMessageBox::Yes | QMessageBox::No) == QMessageBox::Yes) { + delete_previews(1); + QMessageBox::information(this, + tr("Previews Deleted"), + tr("All previews deleted succesfully. You may have to re-open your current project for changes to take effect."), + QMessageBox::Ok); + } } void PreferencesDialog::setup_ui() { @@ -377,7 +393,7 @@ void PreferencesDialog::setup_ui() { QGridLayout* general_layout = new QGridLayout(general_tab); // General -> Language - general_layout->addWidget(new QLabel(tr("Language:")), row, 0, 1, 1); + general_layout->addWidget(new QLabel(tr("Language:")), row, 0); language_combobox = new QComboBox(); @@ -409,69 +425,72 @@ void PreferencesDialog::setup_ui() { } } - general_layout->addWidget(language_combobox, row, 1, 1, 3); + general_layout->addWidget(language_combobox, row, 1, 1, 4); row++; // General -> Custom CSS - general_layout->addWidget(new QLabel(tr("Custom CSS:"), this), row, 0, 1, 1); + general_layout->addWidget(new QLabel(tr("Custom CSS:"), this), row, 0); custom_css_fn = new QLineEdit(general_tab); custom_css_fn->setText(config.css_path); - general_layout->addWidget(custom_css_fn, row, 1, 1, 2); + general_layout->addWidget(custom_css_fn, row, 1, 1, 3); QPushButton* custom_css_browse = new QPushButton(tr("Browse"), general_tab); connect(custom_css_browse, SIGNAL(clicked(bool)), this, SLOT(browse_css_file())); - general_layout->addWidget(custom_css_browse, row, 3, 1, 1); + general_layout->addWidget(custom_css_browse, row, 4); row++; // General -> Image Sequence Formats - general_layout->addWidget(new QLabel(tr("Image sequence formats:"), this), row, 0, 1, 1); + general_layout->addWidget(new QLabel(tr("Image sequence formats:"), this), row, 0); imgSeqFormatEdit = new QLineEdit(general_tab); - general_layout->addWidget(imgSeqFormatEdit, row, 1, 1, 3); + general_layout->addWidget(imgSeqFormatEdit, row, 1, 1, 4); row++; // General -> Audio Recording - general_layout->addWidget(new QLabel(tr("Audio Recording:"), this), row, 0, 1, 1); + general_layout->addWidget(new QLabel(tr("Audio Recording:"), this), row, 0); recordingComboBox = new QComboBox(general_tab); recordingComboBox->addItem(tr("Mono")); recordingComboBox->addItem(tr("Stereo")); - general_layout->addWidget(recordingComboBox, row, 1, 1, 3); + general_layout->addWidget(recordingComboBox, row, 1, 1, 4); row++; // General -> Effect Textbox Lines - general_layout->addWidget(new QLabel(tr("Effect Textbox Lines:"), this), row, 0, 1, 1); + general_layout->addWidget(new QLabel(tr("Effect Textbox Lines:"), this), row, 0); effect_textbox_lines_field = new QSpinBox(general_tab); effect_textbox_lines_field->setMinimum(1); effect_textbox_lines_field->setValue(config.effect_textbox_lines); - general_layout->addWidget(effect_textbox_lines_field, row, 1, 1, 3); + general_layout->addWidget(effect_textbox_lines_field, row, 1, 1, 4); row++; // General -> Thumbnail and Waveform Resolution - general_layout->addWidget(new QLabel(tr("Thumbnail Resolution:"), this), row, 0, 1, 1); + general_layout->addWidget(new QLabel(tr("Thumbnail Resolution:"), this), row, 0); thumbnail_res_spinbox = new QSpinBox(this); thumbnail_res_spinbox->setMinimum(0); thumbnail_res_spinbox->setMaximum(INT_MAX); thumbnail_res_spinbox->setValue(config.thumbnail_resolution); - general_layout->addWidget(thumbnail_res_spinbox, row, 1, 1, 1); + general_layout->addWidget(thumbnail_res_spinbox, row, 1); - general_layout->addWidget(new QLabel(tr("Waveform Resolution:"), this), row, 2, 1, 1); + general_layout->addWidget(new QLabel(tr("Waveform Resolution:"), this), row, 2); waveform_res_spinbox = new QSpinBox(this); waveform_res_spinbox->setMinimum(0); waveform_res_spinbox->setMaximum(INT_MAX); waveform_res_spinbox->setValue(config.waveform_resolution); - general_layout->addWidget(waveform_res_spinbox, row, 3, 1, 1); + general_layout->addWidget(waveform_res_spinbox, row, 3); + QPushButton* delete_preview_btn = new QPushButton(tr("Delete Previews")); + general_layout->addWidget(delete_preview_btn, row, 4); + connect(delete_preview_btn, SIGNAL(clicked(bool)), this, SLOT(delete_all_previews())); row++; @@ -489,12 +508,7 @@ void PreferencesDialog::setup_ui() { // Playback QWidget* playback_tab = new QWidget(this); - QVBoxLayout* playback_tab_layout = new QVBoxLayout(playback_tab); - - // Playback -> Disable Multithreading on Images - disable_img_multithread = new QCheckBox(tr("Disable Multithreading on Images"), playback_tab); - disable_img_multithread->setChecked(config.disable_multithreading_for_images); - playback_tab_layout->addWidget(disable_img_multithread); + QVBoxLayout* playback_tab_layout = new QVBoxLayout(playback_tab); // Playback -> Seeking QGroupBox* seeking_group = new QGroupBox(playback_tab); diff --git a/dialogs/preferencesdialog.h b/dialogs/preferencesdialog.h index 2a6fa2cea..2286bc07a 100644 --- a/dialogs/preferencesdialog.h +++ b/dialogs/preferencesdialog.h @@ -44,18 +44,22 @@ private slots: void load_shortcut_file(); void save_shortcut_file(); void browse_css_file(); + void delete_all_previews(); private: void setup_ui(); void setup_kbd_shortcut_worker(QMenu* menu, QTreeWidgetItem* parent); + // used to delete previews + // type can be: 't' for thumbnails, 'w' for waveforms, or 1 for all + void delete_previews(char type); + QLineEdit* custom_css_fn; QLineEdit* imgSeqFormatEdit; QComboBox* recordingComboBox; QRadioButton* accurateSeekButton; QRadioButton* fastSeekButton; - QTreeWidget* keyboard_tree; - QCheckBox* disable_img_multithread; + QTreeWidget* keyboard_tree; QDoubleSpinBox* upcoming_queue_spinbox; QComboBox* upcoming_queue_type; QDoubleSpinBox* previous_queue_spinbox; diff --git a/io/config.cpp b/io/config.cpp index 346abd528..e33a6ea91 100644 --- a/io/config.cpp +++ b/io/config.cpp @@ -39,8 +39,7 @@ Config::Config() hover_focus(false), project_view_type(PROJECT_VIEW_TREE), set_name_with_marker(true), - show_project_toolbar(false), - disable_multithreading_for_images(false), + show_project_toolbar(false), previous_queue_size(3), previous_queue_type(FRAME_QUEUE_TYPE_FRAMES), upcoming_queue_size(0.5), @@ -142,10 +141,7 @@ void Config::load(QString path) { set_name_with_marker = (stream.text() == "1"); } else if (stream.name() == "ShowProjectToolbar") { stream.readNext(); - show_project_toolbar = (stream.text() == "1"); - } else if (stream.name() == "DisableMultithreadedImages") { - stream.readNext(); - disable_multithreading_for_images = (stream.text() == "1"); + show_project_toolbar = (stream.text() == "1"); } else if (stream.name() == "PreviousFrameQueueSize") { stream.readNext(); previous_queue_size = stream.text().toDouble(); @@ -241,8 +237,7 @@ void Config::save(QString path) { stream.writeTextElement("HoverFocus", QString::number(hover_focus)); stream.writeTextElement("ProjectViewType", QString::number(project_view_type)); stream.writeTextElement("SetNameWithMarker", QString::number(set_name_with_marker)); - stream.writeTextElement("ShowProjectToolbar", QString::number(panel_project->toolbar_widget->isVisible())); - stream.writeTextElement("DisableMultithreadedImages", QString::number(disable_multithreading_for_images)); + stream.writeTextElement("ShowProjectToolbar", QString::number(panel_project->toolbar_widget->isVisible())); stream.writeTextElement("PreviousFrameQueueSize", QString::number(previous_queue_size)); stream.writeTextElement("PreviousFrameQueueType", QString::number(previous_queue_type)); stream.writeTextElement("UpcomingFrameQueueSize", QString::number(upcoming_queue_size)); diff --git a/io/config.h b/io/config.h index 9c9bf9b7b..11466c653 100644 --- a/io/config.h +++ b/io/config.h @@ -53,8 +53,7 @@ struct Config { bool hover_focus; int project_view_type; bool set_name_with_marker; - bool show_project_toolbar; - bool disable_multithreading_for_images; + bool show_project_toolbar; double previous_queue_size; int previous_queue_type; double upcoming_queue_size; diff --git a/main.cpp b/main.cpp index fcacb54ac..06b4b7532 100644 --- a/main.cpp +++ b/main.cpp @@ -80,11 +80,7 @@ int main(int argc, char *argv[]) { if (use_internal_logger) { qInstallMessageHandler(debug_message_handler); - } - - // init ffmpeg subsystem - av_register_all(); - avfilter_register_all(); + } QCoreApplication::setAttribute(Qt::AA_ShareOpenGLContexts); diff --git a/playback/cacher.cpp b/playback/cacher.cpp index 0f29b290b..3506ab07e 100644 --- a/playback/cacher.cpp +++ b/playback/cacher.cpp @@ -737,14 +737,10 @@ void open_clip_worker(Clip* clip) { clip->opts = nullptr; - // optimized decoding settings - if ((clip->stream->codecpar->codec_id != AV_CODEC_ID_PNG && - clip->stream->codecpar->codec_id != AV_CODEC_ID_APNG && - clip->stream->codecpar->codec_id != AV_CODEC_ID_TIFF && - clip->stream->codecpar->codec_id != AV_CODEC_ID_PSD) - || !config.disable_multithreading_for_images) { - av_dict_set(&clip->opts, "threads", "auto", 0); - } + // enable multithreading on decoding + av_dict_set(&clip->opts, "threads", "auto", 0); + + // enable extra optimization code on h264 (not even sure if they help) if (clip->stream->codecpar->codec_id == AV_CODEC_ID_H264) { av_dict_set(&clip->opts, "tune", "fastdecode", 0); av_dict_set(&clip->opts, "tune", "zerolatency", 0); diff --git a/ts/olive_ar.ts b/ts/olive_ar.ts index 25b34796c..29559ccad 100644 --- a/ts/olive_ar.ts +++ b/ts/olive_ar.ts @@ -717,14 +717,14 @@ LabelSlider - - + + Set Value حدد القيمة - - + + New value: قيمة جديدة: @@ -760,42 +760,42 @@ هذا المشروع كان محفوظاً بنسخة مختلفة من زيتون وقد لا تكون متوافقة بشكل كامل مع هذه النسخة. هل تريد محاولة تحميله على إي حال؟ - + Invalid Clip Link رابط مقطع غير صالح - + This project contains an invalid clip link. It may be corrupt. Would you like to continue loading it? هذا المشروع يحوي رابط مقطع غير صالح. قد يكون معطوباً. هل تريد اﻷستمرار بتحميله؟ - + %1 - Line: %2 Col: %3 %1 - سطر: %2 عمود: %3 - + User aborted loading المسخدم أجهض التحميل - + XML Parsing Error خطأ تحليل XML - + Couldn't load '%1'. %2 تعثر تحميل '%1'. %2 - + Project Load Error خطأ تحميل المشروع - + Error loading project: %1 خطأ تحميل المشروع: %1 @@ -858,626 +858,626 @@ محو نقطة الدخل/الخرج - + No active sequence لا مقاطع نشطة - + Please open the sequence you wish to export. رجاءً أفتح المقطع المراد تصديره. - + Save Project As... أحفظ المشروع ك... - + Unsaved Project مشروع غير محفوظ - + This project has changed since it was last saved. Would you like to save it before closing? هذا المشروع غُيِرَ منذ أخر مرة. أتريد حفظه قبل اﻹغلاق؟ - + &File &ملف - + &New &جديد - + &Open Project &أفتح مشروع - + Clear Recent List أفرغ قائمة مؤخراً - + Open Recent أفتح مؤخراً - + &Save Project &أحفظ المشروع - + Save Project &As أحفظ المشروع &ك - + &Import... &أستيراد - + &Export... &تصدير - + E&xit خ&روج - + &Edit &تعديل - + &Undo &تراجع - + Redo أعد - + Cu&t قط&ع - + Cop&y &نسخ - + &Paste &لصق - + Paste Insert ألصق أدرج - + Duplicate أستنساخ - + Delete حذف - + Ripple Delete حذف موجة - + Split أنقسام - + Select &All تحديد &الكل - + Deselect All إلغاء تحديد الكل - + Add Default Transition أضف اﻷنتقال الأفتراضي - + Link/Unlink ربط/فصل - + Enable/Disable تفعيل/تعطيل - + Nest للمراجعة تداخل - + Ripple to In Point موجة لنقطة إدخال - + Ripple to Out Point موجة لنقطة إخراج - + Edit to In Point عدّل لنقطة إدخال - + Edit to Out Point عدّل لنقطة إخراج - + Delete In/Out Point محو نقطة الدخل/الخرج - + Ripple Delete In/Out Point موجة حذف نقطة الإدخال/الإخراج - + Set/Edit Marker حدد/عدّل اﻹشارات - + &View &أظهر - + Zoom In تقريب - + Zoom Out أبتعاد - + Increase Track Height زدّ طول المسار - + Decrease Track Height قلل طول المسار - + Toggle Show All فعل إظهار الكل - + Track Lines تعقب السطور - + Rectified Waveforms أشكال موجية متناوبة - + Frames اﻹطارات - + Drop Frame أفلت إطار - + Non-Drop Frame إطار غير مُفلت - + Milliseconds جزء من الثانية - + Title/Action Safe Area عنوان/إجراء المنطقة الآمنة - + Off مطفئ - + Default إفتراضي - + 4:3 4:3 - + 16:9 16:9 - + Custom مخصوص - + Full Screen ملء الشاشة - + Full Screen Viewer عارض ملء الشاشة - + &Playback &الترديد - + Go to Start أذهب للبداية - + Previous Frame الإطار السابق - + Play/Pause تشغيل/أستئناف - + Play In to Out شغل من الإدخال إلى الإخراج - + Next Frame اﻹطار التالي - + Go to End أذهب للنهاية - + Go to Previous Cut أذهب للقطعة السابقة - + Go to Next Cut أذهب للقطعة التالية - + Go to In Point أذهب لنقطة إدخال - + Go to Out Point أذهب لنقطة إخراج - + Shuttle Left توشع اليسار - + Shuttle Stop إيقاف التوشع - + Shuttle Right توشع اليمين - + Loop حلقة - + &Window &نافذة - + Project المشروع - + Effect Controls تحكمات المؤثر - + Timeline الخط الزمني - + Graph Editor محرر المخطط - + Media Viewer عارض الوسائط - + Sequence Viewer عارض المقطع - + Maximize Panel ضخّم اللائحة - + Reset to Default Layout صفّر للتخطيط المبدئي - + &Tools &اﻷدوات - + Pointer Tool أداة المؤشر - + Edit Tool أداة التحرير - + Ripple Tool أداة الموجة - + Razor Tool أداة القطع - + Slip Tool أداة المنزلقة - + Slide Tool أداة الشريحة - + Hand Tool أداة اليد - + Transition Tool أداة اﻷنتقال - + Enable Snapping فعّل السحب - + Selecting Also Seeks للمراجعة تحديد العروضات إيضاً - + Edit Tool Also Seeks أداة التحرير تعرض إيضاً - + Edit Tool Selects Links أداة التحرير تحدد الروابط - + Seek Also Selects للمراجعة العرض يحدد إيضاً - + Seek to the End of Pastes أعرض لنهاية الملصوقات - + Scroll Wheel Zooms العجلة الدوراة تُقرّب - + Enable Drag Files to Timeline أسمح بسحب الملفات للخط الزمني - + Auto-Scale By Default التحجيم-التلقائي إفتراضياً - + Enable Seek to Import للمراجعة أسمح للعرض بالإستيراد - + Audio Scrubbing حكّ شريط الصوت - + Enable Drop on Media to Replace أسمح برمي الوسائط للأستبدال - + Enable Hover Focus فعّل التركيز الحائم - + Ask For Name When Setting Marker أسال عن اﻷسم حين وضع المؤشر - + No Auto-Scroll لا أنزلاق التلقائي - + Page Auto-Scroll أنزلاق الصفحة التلقائي - + Smooth Auto-Scroll الأنزلاق التلقائي الناعم - + Preferences التفضيلات - + Clear Undo أمسح التراجُعات - + &Help &مساعدة - + A&ction Search ب&حث إجراء - + Debug Log سجل التنقيح - + &About... &حول... - + <untitled> <غير معنون> - + Open Project... أفتح مشروع... - + Missing recent project مشروع ماضي ضائع - + The project '%1' no longer exists. Would you like to remove it from the recent projects list? المشروع '%1' غير بعد اﻷن. هل ترغب بحذفه من من قائمة مشاريع مؤخراً؟ - + Invalid aspect ratio معدل نسبة غير صالح - + The aspect ratio '%1' is invalid. Please try again. معدل النسبة '%1' غير صالح. حاول مجدداً. - + Enter custom aspect ratio أدخل نسبة معدل مخصصة - + Enter the aspect ratio to use for the title/action safe area (e.g. 16:9): أدخل معدل النسبة لأستعماله في العنوان/الإجراء المنطقة الآمنة (كــ. 16:9): - + Nested Sequence مقطع متشعب @@ -1528,27 +1528,31 @@ معدل اﻹطارات: - %1 fields (%2 frames) - %1 الحقل (%2 إطارات) + %1 الحقل (%2 إطارات) - + + %1 field(s) (%2 frame(s)) + + + + Interlacing: المشابكة: - + Audio Frequency: تردد الصوت: - + Audio Channels: قنوات الصوت: - + Name: %1 Video Dimensions: %2x%3 Frame Rate: %4 @@ -1561,17 +1565,17 @@ Audio Layout: %6 تخطيط الصوت: %6 - + Name اﻷسم - + Duration المدة - + Rate النسبة @@ -1594,9 +1598,25 @@ Audio Layout: %6 فيديو %1: %2x%3 %4إطار/ث - Audio %1: %2Hz %3 channels - الصوت %1: %2هرتز %3 قنوات + الصوت %1: %2هرتز %3 قنوات + + + + Audio %1: %2Hz %3 + + + + + %n channel(s) + + + + + + + + @@ -1773,160 +1793,184 @@ Audio Layout: %6 PreferencesDialog - + Preferences التفضيلات - + Invalid CSS File ملف CSS غير صالح - + CSS file '%1' does not exist. ملف CSS '%1' غير موجود. - + Warning تحذير - + Some changed settings will require restarting Olive to take effect بعض اﻹعدادات المعدلة تتطلب من زيتون إعادة التشغيل لتأخذ تأثيرها - + Confirm Reset All Shortcuts أكّد تصفير كل اﻹختصارات - + Are you sure you wish to reset all keyboard shortcuts to their defaults? هل أنت متأكد أنك ترغب بتصفير جميع أختصارات لوحة المفاتيح لقيمهم اﻹفتراضية؟ - + Import Keyboard Shortcuts أستيراد أخصارات لوحة المفاتيح - - + + Error saving shortcuts خطأ حفظ اﻹختصارات - + Failed to open file for reading فشل في فتح الملف للقراءة - + Export Keyboard Shortcuts تصدير أختصارات لوحة المفاتيح - + Export Shortcuts تصدير اﻹختصارات - + Shortcuts exported successfully صُدرت اﻷختصارات بنجاح - + Failed to open file for writing فشل في فتح الملف للكتابة - + Browse for CSS file أبحث عن ملف CSS + + + Delete All Previews + + + + + Are you sure you want to delete all previews? + + + + + Previews Deleted + + + All previews deleted succesfully. You may have to re-open your current project for changes to take effect. + + + + Language: اللغة: - + Custom CSS: CSS مخصوص: - + Browse تصفّح - + Image sequence formats: صيغ صور المقاطع: - + Audio Recording: تسجيل الصوت: - + Mono اُحادي - + Stereo مُجسم - + Effect Textbox Lines: للمراجعة أثر بسطور صندوق النص: - + Thumbnail Resolution: دقّة الصورة المصغرة: - + Waveform Resolution: دقّة الشكل الموجي: - + + Delete Previews + + + + Use Software Fallbacks When Possible أستعمل معالجة البرمجيات حين اﻹمكان - + General عام - + Behavior السلوك - Disable Multithreading on Images - عطل تعدد المعالجات بالصور + عطل تعدد المعالجات بالصور - + Seeking للمراجعة التنزيل - + Accurate Seeking Always show the correct frame (visual may pause briefly as correct frame is retrieved) للمراجعة @@ -1934,7 +1978,7 @@ Always show the correct frame (visual may pause briefly as correct frame is retr دوماً أظهر اﻹطار الصحيح (البصريات قد تتوقف بإيجاز كلما تستجلب اﻹطارات بدقة) - + Fast Seeking Seek quickly (may briefly show inaccurate frames when seeking - doesn't affect playback/export) للمراجعة الشديدة @@ -1942,101 +1986,101 @@ Seek quickly (may briefly show inaccurate frames when seeking - doesn't aff أنقل بسرعة (قد يعمق روئية اﻹطارات غير الصحيحة - لا يؤثر الترديد/تصدير) - + Memory Usage أستعمال الذاكرة - + Upcoming Frame Queue: إطار الصف القادم: - - + + frames اﻹطارات - - + + seconds الثوان - + Previous Frame Queue: إطار الصف السابق: - + Playback للمراجعة الترديد - + Output Device: جهاز اﻹخراج: - - + + Default إفتراضي - + Input Device: جهاز اﻹدخال: - + Sample Rate: معدل الإعتيان: - + Audio الصوت - + Search for action or shortcut ابحث عن إجراء أو أختصار - + Action إجراء - + Shortcut أختصار - + Import أستيراد - + Export تصدير - + Reset Selected صفّر المحدد - + Reset All صفّر الجميع - + Keyboard لوحة المفاتيح @@ -2044,12 +2088,12 @@ Seek quickly (may briefly show inaccurate frames when seeking - doesn't aff PreviewGenerator - + Could not open file - %1 لا يمكن فتح الملف - %1 - + Could not find stream information - %1 لم يتم العثور على ملومات التدفق - %1 @@ -2078,13 +2122,13 @@ Seek quickly (may briefly show inaccurate frames when seeking - doesn't aff - + All Files كل الملفات - + No active sequence لا مقاطع نشطة @@ -2139,12 +2183,12 @@ Seek quickly (may briefly show inaccurate frames when seeking - doesn't aff الملف '%1' يبدو كأنه جزء من سلسلة صور. هل تريد أستيراده هكذا؟ - + Import media... أستيراد وسائط... - + No sequence is active, please open the sequence you want to delete clips from. لا مقطع نشط, رجاءً أفتح المقطع المراد حذف جزء منه. @@ -2733,140 +2777,140 @@ Seek quickly (may briefly show inaccurate frames when seeking - doesn't aff <لا شيء> - + Effect already exists المؤثر موجود مسبقاً - + Clip '%1' already contains a '%2' effect. Would you like to replace it with the pasted one or add it as a separate effect? المقطع '%1' يحتوي على المؤثر '%2'. هل تفضل أستبداله مع الملصوق أو إضافته كمؤثر منفصل؟ - + Add أضف - + Replace أستبدل - + Skip تخطى - + Do this for all conflicts found أفعل هذا مع كل التعارضات الموجودة - + Title... العنوان... - + Solid Color... بحاجة لمتابعة لون صلب... - + Bars... ألواح... - + Tone... نغّم... - + Noise... ضجيج... - + Unsaved Project مشروع غير محفوظ - + You must save this project before you can record audio in it. يجب عليك حفظ المشروع قبل تسجيل الصوت فيه. - + Click on the timeline where you want to start recording (drag to limit the recording to a certain timeframe) أنقر على الخط الزمني حيث تريد بدء التسجيل (أسحب لوضع حد للتسجيل في إطار وقت معين) - + Pointer Tool أداة المؤشر - + Edit Tool أداة التحرير - + Ripple Tool أداة الموجة - + Razor Tool أداة القطع - + Slip Tool بحاجة لمتابعة أداة المنزلقة - + Slide Tool أداة الشريحة - + Hand Tool أداة اليد - + Transition Tool أداة اﻷنتقال - + Snapping بحاجة لمتابعة الساحبة - + Zoom In تقريب - + Zoom Out أبتعاد - + Record audio سجّل الصوت - + Add title, solid, bars, etc. أضف عنوان, صلب, ألواح, إلخ. @@ -3213,58 +3257,64 @@ Duration: %4 VSTHost - - + + + Error loading VST plugin خطأ تحميل إضافة VST - + Failed to create VST reference فشل إنشاء مرجع VST - + Failed to load VST plugin "%1": %2 فشب تحميل إضافة VST "%1": %2 - + NOTE: You can't load 32-bit VST plugins into a 64-bit build of Olive. Please find a 64-bit version of this plugin or switch to a 32-bit build of Olive. ملحوظة: لا يمكنك تحميل إضافة VST 32-بت لنسخة زيتون مبنية ل64-بت. رجاءً جد نسخة 64-بت من هذه الإضافة أو أنتقل لنسخة زيتون مبنية على 32-بت. - + NOTE: You can't load 64-bit VST plugins into a 32-bit build of Olive. Please find a 32-bit version of this plugin or switch to a 64-bit build of Olive. ملحوظة: لا يمكنك تحميل إضافة VST 64-بت لنسخة زيتون مبنية ل32-بت. رجاءً جد نسخة 32-بت من هذه الإضافة أو أنتقل لنسخة زيتون مبنية على 64-بت. - + + Failed to locate entry point for dynamic library. + + + + VST Error خطأ VST - + Plugin's magic number is invalid رقم اﻹضافة السحري غير صالح - + Plugin إضافة - + Interface واجهة - + Show أظهر - + VST Plugin إضافة VST @@ -3282,7 +3332,7 @@ Duration: %4 عارض الوسائط - + (none) (لا شيء) @@ -3290,57 +3340,57 @@ Duration: %4 ViewerWidget - + Save Frame as Image... احفظ اﻹطار كصورة... - + Show Fullscreen أظهر ملء الشاشة - + Disable تعطيل - + Screen %1: %2x%3 الشاشة %1: %2x%3 - + Zoom قرّب - + Fit وائم - + Custom مخصوص - + Close Media أغلق الوسائط - + Save Frame أحفظ اﻹطار - + Viewer Zoom تقريب الرؤية - + Set Custom Zoom Value: حدد قيمة تقريب مخصصة: @@ -3348,7 +3398,7 @@ Duration: %4 ViewerWindow - + Exit Fullscreen الخروج من ملء الشاشة diff --git a/ts/olive_cs.ts b/ts/olive_cs.ts index e7807dc66..eedba77d9 100644 --- a/ts/olive_cs.ts +++ b/ts/olive_cs.ts @@ -717,14 +717,14 @@ LabelSlider - - + + Set Value Nastavit hodnotu - - + + New value: Nová hodnota: @@ -760,42 +760,42 @@ Tento projekt byl uložen v jiné verzi Olive a nemusí být plně slučitelný s touto verzí. Přesto se jej chcete pokusit nahrát? - + Invalid Clip Link Neplatný odkaz na záběr - + This project contains an invalid clip link. It may be corrupt. Would you like to continue loading it? Tento projekt obsahuje neplatný odkaz na záběr. Tento může být poškozen. Chcete pokračovat v jeho nahrávání? - + %1 - Line: %2 Col: %3 %1 - Řádek: %2 Sloupec: %3 - + User aborted loading Uživatelem přerušené nahrávání - + XML Parsing Error Chyba při zpracování XML - + Couldn't load '%1'. %2 Nepodařilo se nahrát '%1'. %2 - + Project Load Error Chyba při nahrávání projektu - + Error loading project: %1 Chyba při nahrávání projektu: %1 @@ -862,367 +862,367 @@ Vymazat bod začátku/konce - + No active sequence Žádná činná sekvence - + Please open the sequence you wish to export. Otevřete, prosím, sekvence, již chcete vyvést. - + Save Project As... Uložit projekt jako... - + Unsaved Project Neuložený projekt - + This project has changed since it was last saved. Would you like to save it before closing? Tento projekt se od doby, kdy byl naposledy uložen, změnil. Chcete jej před zavřením uložit? - + &File &Soubor - + &New &Nový - + &Open Project &Otevřít projekt - + Clear Recent List Vyprázdnit seznam naposledy otevřených souborů - + Open Recent Otevřít nedávné - + &Save Project &Uložit projekt - + Save Project &As Uložit projekt j&ako - + &Import... &Zavést... - + &Export... &Vyvést... - + E&xit &Ukončit - + &Edit Úp&ravy - + &Undo &Zpět - + Redo Znovu - + Cu&t Vyjmou&t - + Cop&y &Kopírovat - + &Paste &Vložit - + Paste Insert Vložit vložku - + Duplicate Zdvojit - + Delete Smazat - + Ripple Delete Vytáhnout - + Split Rozdělit - + Select &All Vybrat &vše - + Deselect All Zrušit výběr všeho - + Add Default Transition Přidat výchozí přechod - + Link/Unlink Spojit/Oddělit - + Enable/Disable Povolit/Zakázat - + Nest Vnořovat - + Ripple to In Point Vložit a posunout k bodu začátku - + Ripple to Out Point Vložit a posunout k bodu konce - + Edit to In Point Upravit po bod začátku - + Edit to Out Point Upravit po bod konce - + Delete In/Out Point Smazat bod začátku/konce - + Ripple Delete In/Out Point Vytáhnout bod začátku/konce - + Set/Edit Marker Nastavit/Upravit značku - + &View &Pohled - + Zoom In Přiblížit - + Zoom Out Oddálit - + Increase Track Height Zvětšit výšku stopy - + Decrease Track Height Zmenšit výšku stopy - + Toggle Show All Přepnout ukázání všeho - + Track Lines Řádky stop - + Rectified Waveforms Vlnový tvar odspodu - + Frames Snímky - + Drop Frame Zahodit snímek - + Non-Drop Frame Nezahodit snímek - + Milliseconds Milisekundy - + Title/Action Safe Area Bezpečná oblast - + Off Vypnuto - + Default Výchozí - + 4:3 4:3 - + 16:9 16:9 - + Custom Vlastní - + Full Screen Celá obrazovka - + Full Screen Viewer Prohlížeč na celou obrazovku - + &Playback &Přehrávání - + Go to Start Jít na začátek - + Previous Frame Předchozí snímek - + Play/Pause Přehrát/Pozastavit - + Play In to Out Přehrát od začátku po konec - + Next Frame Další snímek - + Go to End Jít na konec - + Go to Previous Cut Jít na předchozí záběr - + Go to Next Cut Jít na další záběr - + Go to In Point Jít na bod začátku - + Go to Out Point Jít na bod konce - + Shuttle Left - + Shuttle Stop - + Shuttle Right @@ -1239,258 +1239,258 @@ Zvýšit rychlost - + Loop Smyčka - + &Window &Okno - + Project Projekt - + Effect Controls Ovládání efektů - + Timeline Časová osa - + Graph Editor Editor grafu - + Media Viewer Prohlížeč záznamu - + Sequence Viewer Prohlížeč řady - + Maximize Panel Zvětšit panel - + Reset to Default Layout Obnovit výchozí rozvržení - + &Tools &Nástroje - + Pointer Tool Ukazovátko - + Edit Tool Nástroj pro úpravy - + Ripple Tool Vložení a posunutí - + Razor Tool Nástroj břitvy - + Slip Tool Roztočení se ztotožněním - + Slide Tool Roztočení - + Hand Tool Ručička - + Transition Tool Přechod - + Enable Snapping Povolit přichytávání - + Selecting Also Seeks Výběr také vyhledává - + Edit Tool Also Seeks Nástroj pro úpravy také vyhledává - + Edit Tool Selects Links Nástroj pro úpravy vybírá odkazy - + Seek Also Selects Vyhledávání také vybírá - + Seek to the End of Pastes Vyhledávat po konec vložení - + Scroll Wheel Zooms Kolečko myši přibližuje - + Enable Drag Files to Timeline Povolit tažení souborů na časovou osu - + Auto-Scale By Default Automaticky měnit velikost - + Enable Seek to Import Povolit vyhledávání k zavedení - + Audio Scrubbing Přehrávání zvuku při tažení ukazatele - + Enable Drop on Media to Replace Povolit upuštění na záznam pro nahrazení - + Enable Hover Focus Povolit zaměření při přejetí - + Ask For Name When Setting Marker Požádat o název při nastavení značky - + No Auto-Scroll Žádné automatické projíždění - + Page Auto-Scroll Stránkové automatické projíždění - + Smooth Auto-Scroll Jemné automatické projíždění - + Preferences Nastavení - + Clear Undo Vyprázdnit minulost kroků zpět - + &Help Nápo&věda - + A&ction Search Hledání č&inností - + Debug Log Zápis ladění - + &About... &O programu... - + <untitled> <bez názvu> - + Open Project... Otevřít projekt... - + Missing recent project Chybí nedávný projekt - + The project '%1' no longer exists. Would you like to remove it from the recent projects list? Projekt '%1' už neexistuje. Chcete jej odstranit ze seznamu nedávných projektů? - + Invalid aspect ratio Neplatný poměr stran - + The aspect ratio '%1' is invalid. Please try again. Poměr stran '%1' je neplatný. Zkuste to, prosím, znovu. - + Enter custom aspect ratio Zadat vlastní poměr stran - + Enter the aspect ratio to use for the title/action safe area (e.g. 16:9): Zadejte poměr stran k použití pro bezpečnou oblast (např. 16:9): - + Nested Sequence Vnořená řada @@ -1541,27 +1541,31 @@ Snímkování: - %1 fields (%2 frames) - %1 polí (%2 snímků) + %1 polí (%2 snímků) - + + %1 field(s) (%2 frame(s)) + + + + Interlacing: Prokládání: - + Audio Frequency: Kmitočet zvuku: - + Audio Channels: Zvukové kanály: - + Name: %1 Video Dimensions: %2x%3 Frame Rate: %4 @@ -1574,17 +1578,17 @@ Kmitočet zvuku: %5 Rozložení zvuku: %6 - + Name Název - + Duration Doba trvání - + Rate Rychlost @@ -1607,9 +1611,22 @@ Rozložení zvuku: %6 Obraz %1: %2x%3 %4 FPS - Audio %1: %2Hz %3 channels - Zvuk %1: %2Hz %3 kanálů + Zvuk %1: %2Hz %3 kanálů + + + + Audio %1: %2Hz %3 + + + + + %n channel(s) + + + + + @@ -1784,265 +1801,289 @@ Rozložení zvuku: %6 PreferencesDialog - + Preferences Nastavení - + Invalid CSS File Neplatný soubor CSS - + CSS file '%1' does not exist. Soubor CSS '%1' neexistuje. - + Warning Varování - + Some changed settings will require restarting Olive to take effect Některá změněná nastavení budou, aby se projevila, vyžadovat opětovné spuštění Olive - + Confirm Reset All Shortcuts Potvrdit obnovení výchozího nastavení všech klávesových zkratek - + Are you sure you wish to reset all keyboard shortcuts to their defaults? Jste si jistý, že chcete vrátit nastavení všech klávesových zkratek do jejich výchozího stavu? - + Import Keyboard Shortcuts Zavést klávesové zkratky - - + + Error saving shortcuts Chyba při ukládání klávesových zkratek - + Failed to open file for reading Soubor se nepodařilo otevřít pro čtení - + Export Keyboard Shortcuts Vyvést klávesové zkratky - + Export Shortcuts Vyvést zkratky - + Shortcuts exported successfully Zkratky úspěšně vyvedeny - + Failed to open file for writing Soubor se nepodařilo otevřít pro zápis - + Browse for CSS file Hledat soubor CSS + + + Delete All Previews + + + + + Are you sure you want to delete all previews? + + + + + Previews Deleted + + + All previews deleted succesfully. You may have to re-open your current project for changes to take effect. + + + + Language: Jazyk: - + Custom CSS: Vlastní CSS: - + Browse Procházet - + Image sequence formats: Formáty obrázkové řady: - + Audio Recording: Nahrávání zvuku: - + Mono Mono - + Stereo Stereo - + Effect Textbox Lines: Řádky textového pole efektu: - + Thumbnail Resolution: Rozlišení náhledu: - + Waveform Resolution: Rozlišení tvaru vlny: - + + Delete Previews + + + + Use Software Fallbacks When Possible Zajištění skrze softwarovou zálohu - + General Obecné - + Behavior Chování - Disable Multithreading on Images - Zakázat vytvoření více vláken v jednom procesu na obrázky + Zakázat vytvoření více vláken v jednom procesu na obrázky - + Seeking Vyhledávání - + Accurate Seeking Always show the correct frame (visual may pause briefly as correct frame is retrieved) Přesné vyhledávání Vždy ukazovat správný snímek (obraz se při získávání správného snímku může na krátkou dobu pozastavit) - + Fast Seeking Seek quickly (may briefly show inaccurate frames when seeking - doesn't affect playback/export) Rychlé vyhledávání Vyhledávat rychle (při hledání se mohou krátce ukázat nepřesné snímky - neovlivňuje přehrávání/vyvádění) - + Memory Usage Využití paměti - + Upcoming Frame Queue: Nadcházející řada snímků: - - + + frames snímků - - + + seconds sekund - + Previous Frame Queue: Předchozí řada snímků: - + Playback Přehrávání - + Output Device: Výstupní zařízení: - - + + Default Výchozí - + Input Device: Vstupní zařízení: - + Sample Rate: Vzorkovací kmitočet: - + Audio Zvuk - + Search for action or shortcut Hledat činnosti nebo klávesové zkratky - + Action Činnost - + Shortcut Zkratka - + Import Zavést - + Export Vyvést - + Reset Selected Obnovit výchozí hodnotu u vybraného - + Reset All Obnovit výchozí hodnotu u všeho - + Keyboard Klávesnice @@ -2050,12 +2091,12 @@ Vyhledávat rychle (při hledání se mohou krátce ukázat nepřesné snímky - PreviewGenerator - + Could not open file - %1 Nepodařilo se otevřít soubor - %1 - + Could not find stream information - %1 Nepodařilo se najít údaje o proudu - %1 @@ -2084,13 +2125,13 @@ Vyhledávat rychle (při hledání se mohou krátce ukázat nepřesné snímky - - + All Files Všechny soubory - + No active sequence Žádná činná řada @@ -2145,12 +2186,12 @@ Vyhledávat rychle (při hledání se mohou krátce ukázat nepřesné snímky - Soubor '%1' se zdá být součástí obrázkové řady. Chcete ji zavést jako takovou? - + Import media... Zavést záznam... - + No sequence is active, please open the sequence you want to delete clips from. Žádná řada není činná. Otevřete, prosím, řadu, ve které chcete smazat záběry. @@ -2748,32 +2789,32 @@ Vyhledávat rychle (při hledání se mohou krátce ukázat nepřesné snímky - <žádná> - + Effect already exists Efekt již existuje - + Clip '%1' already contains a '%2' effect. Would you like to replace it with the pasted one or add it as a separate effect? Záběr '%1' již obsahuje '%2' efekt. Chcete jej nahradit vloženým nebo jej přidat jako samostatný efekt? - + Add Přidat - + Replace Nahradit - + Skip Přeskočit - + Do this for all conflicts found Použít na všechny nalezené střety @@ -2786,107 +2827,107 @@ Vyhledávat rychle (při hledání se mohou krátce ukázat nepřesné snímky - Nastavit název značky: - + Title... Název... - + Solid Color... Plná barva... - + Bars... Zkušební tabulka... - + Tone... Tón... - + Noise... Šum... - + Unsaved Project Neuložený projekt - + You must save this project before you can record audio in it. Musíte tento projekt uložit, předtím než do něj můžete nahrát zvuk. - + Click on the timeline where you want to start recording (drag to limit the recording to a certain timeframe) Klepněte na časovou osu, kde chcete začít s nahráváním (táhněte pro omezení nahrávky na určitý časový snímek) - + Pointer Tool Nástroj ukazovátka - + Edit Tool Nástroj pro úpravy - + Ripple Tool Nástroj pro vložení a posunutí - + Razor Tool Nástroj břitvy - + Slip Tool Roztočení se ztotožněním - + Slide Tool Roztočení - + Hand Tool Nástroj ručičky - + Transition Tool Nástroj pro přechod - + Snapping Přichytávání - + Zoom In Přiblížit - + Zoom Out Oddálit - + Record audio Nahrát zvuk - + Add title, solid, bars, etc. Přidat název, plný, zkušební tabulky atd. @@ -3229,58 +3270,64 @@ Doba trvání: %4 VSTHost - - + + + Error loading VST plugin Chyba při nahrávání přídavného modulu VST - + Failed to create VST reference Nepodařilo se vytvořit odkaz na VST - + Failed to load VST plugin "%1": %2 Nepodařilo se nahrát přídavný modul "%1": %2 - + NOTE: You can't load 32-bit VST plugins into a 64-bit build of Olive. Please find a 64-bit version of this plugin or switch to a 32-bit build of Olive. Poznámka: Nemůžete nahrát 32 bitové přídavné moduly VST do 64 bitového sestavení Olive. Najděte, prosím, 64 bitovou verzi tohoto přídavného modulu nebo přepněte na 32 bitové sestavení Olive. - + NOTE: You can't load 64-bit VST plugins into a 32-bit build of Olive. Please find a 32-bit version of this plugin or switch to a 64-bit build of Olive. Poznámka: Nemůžete nahrát 64 bitové přídavné moduly VST do 32 bitového sestavení Olive. Najděte, prosím, 32 bitovou verzi tohoto přídavného modulu nebo přepněte na 64 bitové sestavení Olive. - + + Failed to locate entry point for dynamic library. + + + + VST Error Chyba VST - + Plugin's magic number is invalid Kouzelné číslo přídavného modulu je neplatné - + Plugin Přídavný modul - + Interface Rozhraní - + Show Ukázat - + VST Plugin Přídavný modul VST @@ -3298,7 +3345,7 @@ Doba trvání: %4 Prohlížeč záznamu - + (none) (žádný) @@ -3306,57 +3353,57 @@ Doba trvání: %4 ViewerWidget - + Save Frame as Image... Uložit snímek jako obrázek... - + Show Fullscreen Ukázat na celou obrazovku - + Disable Zakázat - + Screen %1: %2x%3 Obrazovka %1: %2x%3 - + Zoom Zvětšení - + Fit Vejít se - + Custom Vlastní - + Close Media Zavřít záznam - + Save Frame Uložit snímek - + Viewer Zoom Zvětšení prohlížeče - + Set Custom Zoom Value: Nastavit vlastní hodnotu zvětšení: @@ -3364,7 +3411,7 @@ Doba trvání: %4 ViewerWindow - + Exit Fullscreen Opustit celou obrazovku diff --git a/ts/olive_de.ts b/ts/olive_de.ts index 0da998680..b534abfb4 100644 --- a/ts/olive_de.ts +++ b/ts/olive_de.ts @@ -734,14 +734,14 @@ LabelSlider - - + + Set Value Wert ändern - - + + New value: Neuer Wert: @@ -777,44 +777,44 @@ Dieses Projekt wurde mit einer anderen Version von Olive gespeichert und ist möglicherweise nicht vollständig kompatibel. Wollen Sie trotzdem versuchen, es zu laden? - + Invalid Clip Link Ungültiger Clip Link - + This project contains an invalid clip link. It may be corrupt. Would you like to continue loading it? Sounds better in German but has same sense Dieses Projekt enthält eine ungültige Verlinkung zu einem Clip. Das Projekt ist möglicherweise beschädigt. Wollen Sie es dennoch versuchen? - + %1 - Line: %2 Col: %3 %1 - Zeile: %2 Spalte: %3 - + User aborted loading Ladevorgang durch Nutzer abgebrochen - + XML Parsing Error Does not make sense to translate this XML Parsing Error - + Couldn't load '%1'. %2 '%1' konnte nicht geladen werden. (%2) - + Project Load Error Projektladefehler - + Error loading project: %1 Fehler beim Laden des Projektes: %1 @@ -882,373 +882,373 @@ Anfangs-/Endpunkt löschen - + No active sequence Keine aktive Sequenz - + Please open the sequence you wish to export. Bitte öffnen Sie die Sequenz, die Sie exportieren möchten. - + Save Project As... Projekt speichern als... - + Unsaved Project Ungespeichertes Projekt - + This project has changed since it was last saved. Would you like to save it before closing? Das Projekt enthält ungespeicherte Änderungen. Wollen Sie diese jetzt speichern? - + &File &Datei - + &New &Neu - + &Open Project Projekt &öffnen - + Clear Recent List 'Zuletzt geöffnet' leeren - + Open Recent Zuletzt Verwendete öffnen - + &Save Project &Projekt speichern - + Save Project &As Projekt speichern &als... - + &Import... &Importieren... - + &Export... &Exportieren - + E&xit B&eenden - + &Edit &Bearbeiten - + &Undo &Rückgängig - + Redo Wiederholen - + Cu&t &Ausschneiden - + Cop&y &Kopieren - + &Paste &Einfügen - + Paste Insert - + Duplicate Duplizieren - + Delete Löschen - + Ripple Delete In Premiere's translations its also called "Ripple Delete" Ripple Delete - + Split Teilen - + Select &All Alles &auswählen - + Deselect All Auswahl aufheben - + Add Default Transition Standardübergang einfügen - + Link/Unlink Verbinden/Trennen - + Enable/Disable Einblenden/Ausblenden - + Nest Schachteln - + Ripple to In Point - + Ripple to Out Point - + Edit to In Point - + Edit to Out Point - + Delete In/Out Point - + Ripple Delete In/Out Point - + Set/Edit Marker Marker setzen/bearbeiten - + &View &Ansicht - + Zoom In Hereinzoomen - + Zoom Out Herauszoomen - + Increase Track Height Spurhöhe erhöhen - + Decrease Track Height Spurhöhe verringern - + Toggle Show All - + Track Lines Spurlinien - + Rectified Waveforms Nachgebesserte Waveforms - + Frames Bilder/Frames - + Drop Frame Same word used in German Drop Frame - + Non-Drop Frame Same word used in German Non-Drop Frame - + Milliseconds Millisekunden - + Title/Action Safe Area Sicherer Titelbereich - + Off Aus - + Default Standard - + 4:3 4:3 - + 16:9 16:9 - + Custom Benutzerdefiniert - + Full Screen Vollbild - + Full Screen Viewer Does this make sense? Vollbild-Viewer - + &Playback Should we translate this? Playback is also known &Wiedergabe - + Go to Start Zum Start gehen - + Previous Frame Vorheriger Frame - + Play/Pause Does not make sense to translate Play/Pause - + Play In to Out Von Anfang bis Ende wiedergeben - + Next Frame Nächster Frame - + Go to End Zum Ende springen - + Go to Previous Cut Zum vorherigen Schnitt springen - + Go to Next Cut Zum nächsten Schnitt springen - + Go to In Point Zum Anfangspunkt springen - + Go to Out Point Zum Endpunkt springen - + Shuttle Left - + Shuttle Stop - + Shuttle Right @@ -1266,265 +1266,265 @@ Geschwindigkeit erhöhen - + Loop Schleife - + &Window &Fenster - + Project Projekt - + Effect Controls Effektsteuerung - + Timeline Same as in english Timeline - + Graph Editor Grafischer Editor - + Media Viewer Does this make sense to translate? Media Viewer - + Sequence Viewer Does this make sense to translate? Sequence Viewer - + Maximize Panel Panel maximieren - + Reset to Default Layout Zum Standard-Layout zurücksetzen - + &Tools &Werkzeuge - + Pointer Tool Does this make sense? Zeiger - + Edit Tool Bearbeitungs-Werkzeug - + Ripple Tool Same as 'Ripple Delete' Ripple-Werkzeug - + Razor Tool Schneide-Werkzeug - + Slip Tool - + Slide Tool - + Hand Tool Hand-Werkzeug - + Transition Tool Übergangs-Werkzeug - + Enable Snapping Snapping aktivieren - + Selecting Also Seeks - + Edit Tool Also Seeks - + Edit Tool Selects Links - + Seek Also Selects - + Seek to the End of Pastes - + Scroll Wheel Zooms Could be better Scrollrad zoomt - + Enable Drag Files to Timeline Dateien auf Timeline ziehen aktivieren - + Auto-Scale By Default Skaliere automatisch - + Enable Seek to Import - + Audio Scrubbing Same as in english Audio Scrubbing - + Enable Drop on Media to Replace Auf Medien zum Ersetzen ziehen aktivieren - + Enable Hover Focus - + Ask For Name When Setting Marker Nach Namen fragen, wenn Marker gesetzt wird - + No Auto-Scroll Kein Auto-Scroll - + Page Auto-Scroll Seiten Auto-Scroll - + Smooth Auto-Scroll Weiches Auto-Scroll - + Preferences Einstellungen - + Clear Undo Rückgängig-Historie leeren - + &Help &Hilfe - + A&ction Search &Aktionensuche - + Debug Log Same as in english Debug-Log - + &About... &Über... - + <untitled> <unbenannt> - + Open Project... Projekt öffnen... - + Missing recent project Zuletzt geöffnetes Projekt existiert nicht - + The project '%1' no longer exists. Would you like to remove it from the recent projects list? Das Projekt '%1' existiert nicht mehr oder wurde verschoben. Möchten Sie es aus der Liste entfernen? - + Invalid aspect ratio Ungültiges Seitenverhältnis - + The aspect ratio '%1' is invalid. Please try again. Das Seitenverhältnis '%1' ist ungültig. Bitte versuchen Sie es erneut. - + Enter custom aspect ratio Benutzerdefiniertes Seitenverhältnis eingeben - + Enter the aspect ratio to use for the title/action safe area (e.g. 16:9): Geben Sie das Seitenverhältnis für den sicheren Bereich ein (z.B. 16:9): - + Nested Sequence Geschachtelte Sequenz @@ -1575,28 +1575,32 @@ Bildrate: - %1 fields (%2 frames) - %1 Felder (%2 frames) + %1 Felder (%2 frames) - + + %1 field(s) (%2 frame(s)) + + + + Interlacing: Same as in english Interlacing: - + Audio Frequency: Audiofrequenz: - + Audio Channels: Audiokanäle: - + Name: %1 Video Dimensions: %2x%3 Frame Rate: %4 @@ -1609,17 +1613,17 @@ Audiofrequenz: %5 Audio Layout: %6 - + Name Name - + Duration Dauer - + Rate Same as in english, differently spoken, but same meaning Rate @@ -1644,9 +1648,21 @@ Audio Layout: %6 Video %1: %2x%3 %4FPS - Audio %1: %2Hz %3 channels - Audio %1: %2Hz %3 Kanäle + Audio %1: %2Hz %3 Kanäle + + + + Audio %1: %2Hz %3 + + + + + %n channel(s) + + + + @@ -1828,268 +1844,292 @@ Audio Layout: %6 PreferencesDialog - + Preferences Einstellungen - + Invalid CSS File Ungültige CSS Datei - + CSS file '%1' does not exist. CSS Datei '%1' existiert nicht. - + Warning Achtung - + Some changed settings will require restarting Olive to take effect Einige Änderungen erfordern einen Neustart von Olive, um angwendet zu werden - + Confirm Reset All Shortcuts Bestätige das Zurücksetzen aller Shortcuts - + Are you sure you wish to reset all keyboard shortcuts to their defaults? Sind Sie sicher, dass Sie alle Tastatur-Shortcuts zurücksetzen wollen? - + Import Keyboard Shortcuts Tastatur-Shortcuts importieren - - + + Error saving shortcuts Fehler beim Speichern der Shortcuts - + Failed to open file for reading Fehler beim öffnen der Datei - + Export Keyboard Shortcuts Tastatur-Shortcuts exportieren - + Export Shortcuts Shortcuts exportieren - + Shortcuts exported successfully Shortcuts wurden erfolgreich exportiert - + Failed to open file for writing Fehler beim Schreiben der Datei - + Browse for CSS file Nach CSS Datei suchen + + + Delete All Previews + + + + + Are you sure you want to delete all previews? + + + + + Previews Deleted + + + All previews deleted succesfully. You may have to re-open your current project for changes to take effect. + + + + Language: Sprache: - + Custom CSS: Benutzerdefiniertes CSS: - + Browse Durchsuchen - + Image sequence formats: Bilddateiformate: - + Audio Recording: Audioaufnahmen: - + Mono Same as in english Mono - + Stereo Same as in english Stereo - + Effect Textbox Lines: Effekt Textbox-Linien: - + Thumbnail Resolution: Thumbnail-Auflösung: - + Waveform Resolution: - + + Delete Previews + + + + Use Software Fallbacks When Possible Absicherung durch Software-Defaults - + General Allgemein - + Behavior Verhalten - Disable Multithreading on Images - Multithreading auf Bildern deaktiviern + Multithreading auf Bildern deaktiviern - + Seeking Suche - + Accurate Seeking Always show the correct frame (visual may pause briefly as correct frame is retrieved) Genaue Suche Zeigt immer den richtigen Frame (kann optisch kurzzeitig anhalten, wenn Frame abgefragt wird) - + Fast Seeking Seek quickly (may briefly show inaccurate frames when seeking - doesn't affect playback/export) Schnelle Suche Sucht schneller (kann kurzzeitig ungenaue Frame anzeigen - wirkt sich nicht auf Plaback aus) - + Memory Usage Speicherauslastung - + Upcoming Frame Queue: Anstehende Frame-Warteschlange: - - + + frames Could also use 'Bilder' Frames - - + + seconds Sekunden - + Previous Frame Queue: Vorherige Frame-Warteschlange: - + Playback Wiedergabe - + Output Device: Ausgabegerät: - - + + Default Standard - + Input Device: Eingabegerät: - + Sample Rate: - + Audio Audio - + Search for action or shortcut Nach Eintrag oder Shortcut suchen - + Action Eintrag - + Shortcut Shortcut - + Import Importieren - + Export Exportieren - + Reset Selected Ausgewählte zurücksetzen - + Reset All Alle zurücksetzen - + Keyboard Tastatur @@ -2097,12 +2137,12 @@ Sucht schneller (kann kurzzeitig ungenaue Frame anzeigen - wirkt sich nicht auf PreviewGenerator - + Could not open file - %1 Konnte Datei nicht öffnen - %1 - + Could not find stream information - %1 Konnte Stream-Informationen nicht finden - %1 @@ -2131,13 +2171,13 @@ Sucht schneller (kann kurzzeitig ungenaue Frame anzeigen - wirkt sich nicht auf - + All Files Alle Dateien - + No active sequence Keine aktive Sequenz @@ -2192,12 +2232,12 @@ Sucht schneller (kann kurzzeitig ungenaue Frame anzeigen - wirkt sich nicht auf Die Datei '%1' scheint eine Bildsequenz zu enthalten. Möchten Sie sie als solche importieren? - + Import media... Medien importieren... - + No sequence is active, please open the sequence you want to delete clips from. Keine Sequenz ist aktiv. Bitten öffnen Sie die Sequenz, bei der Sie Clips löschen möchten. @@ -2786,32 +2826,32 @@ Sucht schneller (kann kurzzeitig ungenaue Frame anzeigen - wirkt sich nicht auf <keine> - + Effect already exists Effekt existiert bereits - + Clip '%1' already contains a '%2' effect. Would you like to replace it with the pasted one or add it as a separate effect? Der Clip '%1' enthält bereits den Effekt '%2'. Möchten Sie diesen ersetzen oder ihn als separaten Effekt hinzufügen? - + Add Hinzufügen - + Replace Ersetzen - + Skip Überspringen - + Do this for all conflicts found Auf alle gefundenen Konflikte anwenden @@ -2824,108 +2864,108 @@ Sucht schneller (kann kurzzeitig ungenaue Frame anzeigen - wirkt sich nicht auf Marker-Name setzen: - + Title... Titel... - + Solid Color... Solid... - + Bars... Balken... - + Tone... Ton... - + Noise... Rauschen... - + Unsaved Project Ungespeichertes Projekt - + You must save this project before you can record audio in it. Sie müssen das Projekt speichern, bevor Sie Audio aufnehmen können. - + Click on the timeline where you want to start recording (drag to limit the recording to a certain timeframe) Klicken Sie auf die Timeline, an welcher Stelle Sie mit der Aufnahme beginnen möchten (Ziehen, um das Limit der Aufnahme auf einen bestimmten Timeframe zu setzen) - + Pointer Tool Pointer-Werkzeug - + Edit Tool Bearbeitungs-Werkzeug - + Ripple Tool Ripple-Werkzeug - + Razor Tool Schneide-Werkzeug - + Slip Tool - + Slide Tool - + Hand Tool Hand-Werkzeug - + Transition Tool Übergangs-Werkzeug - + Snapping Same as in english Snapping - + Zoom In Hereinzommen - + Zoom Out Herauszoomen - + Record audio Audio aufnehmen - + Add title, solid, bars, etc. Titel, Solid, Balken, etc. Hinzufügen @@ -3277,59 +3317,65 @@ Dauer: %4 VSTHost - - + + + Error loading VST plugin Fehler beim Laden des VST Plugins - + Failed to create VST reference Fehler beim Herstellen einer VST Referenz - + Failed to load VST plugin "%1": %2 Fehler beim Laden des VST Plugins "%1":%2 - + NOTE: You can't load 32-bit VST plugins into a 64-bit build of Olive. Please find a 64-bit version of this plugin or switch to a 32-bit build of Olive. HINWEIS: Sie können keine 32-bit VST Plugins in einer 64-bit Version von Olive laden. Sie benötigen entweder eine 64-bit Version des Plugins oder eine 32-bit Version von Olive. - + NOTE: You can't load 64-bit VST plugins into a 32-bit build of Olive. Please find a 32-bit version of this plugin or switch to a 64-bit build of Olive. HINWEIS: Sie können keine 64-bit VST Plugins in einer 32-bit Version von Olive laden. Sie benötigen entweder eine 32-bit Version des Plugins oder eine 64-bit Version von Olive. - + + Failed to locate entry point for dynamic library. + + + + VST Error VST Fehler - + Plugin's magic number is invalid Die Magic Number des Plugins ist ungültig - + Plugin Same as in english Plugin - + Interface Benutzeroberfläche - + Show Anzeigen - + VST Plugin Same as in english VST Plugin @@ -3348,7 +3394,7 @@ Dauer: %4 Medien-Viewer - + (none) (keine) @@ -3356,59 +3402,59 @@ Dauer: %4 ViewerWidget - + Save Frame as Image... Frame als Bild speichern... - + Show Fullscreen Vollbildschirm - + Disable Ausblenden - + Screen %1: %2x%3 Screen %1:%2x%3 - + Zoom Same as in english Zoom - + Fit Einpassen - + Custom Benutzerdefiniert - + Close Media Medien schließen - + Save Frame Frame speichern - + Viewer Zoom Makes no sense to translate Viewer Zoom - + Set Custom Zoom Value: Benutzerdefinierten Zoomwert angeben @@ -3416,7 +3462,7 @@ Dauer: %4 ViewerWindow - + Exit Fullscreen Vollbild verlassen diff --git a/ts/olive_es.ts b/ts/olive_es.ts index 031edc457..94382c716 100644 --- a/ts/olive_es.ts +++ b/ts/olive_es.ts @@ -711,14 +711,14 @@ LabelSlider - - + + Set Value - - + + New value: @@ -754,42 +754,42 @@ - + Invalid Clip Link - + This project contains an invalid clip link. It may be corrupt. Would you like to continue loading it? - + %1 - Line: %2 Col: %3 - + User aborted loading - + XML Parsing Error - + Couldn't load '%1'. %2 - + Project Load Error - + Error loading project: %1 @@ -852,622 +852,622 @@ - + No active sequence - + Please open the sequence you wish to export. - + Save Project As... - + Unsaved Project - + This project has changed since it was last saved. Would you like to save it before closing? - + &File - + &New - + &Open Project - + Clear Recent List - + Open Recent - + &Save Project - + Save Project &As - + &Import... - + &Export... - + E&xit - + &Edit - + &Undo - + Redo - + Cu&t - + Cop&y - + &Paste - + Paste Insert - + Duplicate - + Delete - + Ripple Delete - + Split - + Select &All - + Deselect All - + Add Default Transition - + Link/Unlink - + Enable/Disable - + Nest - + Ripple to In Point - + Ripple to Out Point - + Edit to In Point - + Edit to Out Point - + Delete In/Out Point - + Ripple Delete In/Out Point - + Set/Edit Marker - + &View - + Zoom In - + Zoom Out - + Increase Track Height - + Decrease Track Height - + Toggle Show All - + Track Lines - + Rectified Waveforms - + Frames - + Drop Frame - + Non-Drop Frame - + Milliseconds - + Title/Action Safe Area - + Off - + Default - + 4:3 - + 16:9 - + Custom - + Full Screen - + Full Screen Viewer - + &Playback - + Go to Start - + Previous Frame - + Play/Pause - + Play In to Out - + Next Frame - + Go to End - + Go to Previous Cut - + Go to Next Cut - + Go to In Point - + Go to Out Point - + Shuttle Left - + Shuttle Stop - + Shuttle Right - + Loop - + &Window - + Project - + Effect Controls - + Timeline - + Graph Editor - + Media Viewer - + Sequence Viewer - + Maximize Panel - + Reset to Default Layout - + &Tools - + Pointer Tool - + Edit Tool - + Ripple Tool - + Razor Tool - + Slip Tool - + Slide Tool - + Hand Tool - + Transition Tool - + Enable Snapping - + Selecting Also Seeks - + Edit Tool Also Seeks - + Edit Tool Selects Links - + Seek Also Selects - + Seek to the End of Pastes - + Scroll Wheel Zooms - + Enable Drag Files to Timeline - + Auto-Scale By Default - + Enable Seek to Import - + Audio Scrubbing - + Enable Drop on Media to Replace - + Enable Hover Focus - + Ask For Name When Setting Marker - + No Auto-Scroll - + Page Auto-Scroll - + Smooth Auto-Scroll - + Preferences - + Clear Undo - + &Help - + A&ction Search - + Debug Log - + &About... - + <untitled> - + Open Project... - + Missing recent project - + The project '%1' no longer exists. Would you like to remove it from the recent projects list? - + Invalid aspect ratio - + The aspect ratio '%1' is invalid. Please try again. - + Enter custom aspect ratio - + Enter the aspect ratio to use for the title/action safe area (e.g. 16:9): - + Nested Sequence @@ -1518,27 +1518,27 @@ - - %1 fields (%2 frames) + + %1 field(s) (%2 frame(s)) - + Interlacing: - + Audio Frequency: - + Audio Channels: - + Name: %1 Video Dimensions: %2x%3 Frame Rate: %4 @@ -1547,17 +1547,17 @@ Audio Layout: %6 - + Name - + Duration - + Rate @@ -1581,9 +1581,17 @@ Audio Layout: %6 - Audio %1: %2Hz %3 channels + Audio %1: %2Hz %3 + + + %n channel(s) + + + + + Conform to Frame Rate: @@ -1757,263 +1765,283 @@ Audio Layout: %6 PreferencesDialog - + Preferences - + Invalid CSS File - + CSS file '%1' does not exist. - + Warning - + Some changed settings will require restarting Olive to take effect - + Confirm Reset All Shortcuts - + Are you sure you wish to reset all keyboard shortcuts to their defaults? - + Import Keyboard Shortcuts - - + + Error saving shortcuts - + Failed to open file for reading - + Export Keyboard Shortcuts - + Export Shortcuts - + Shortcuts exported successfully - + Failed to open file for writing - + Browse for CSS file + + + Delete All Previews + + + + + Are you sure you want to delete all previews? + + + + + Previews Deleted + + + All previews deleted succesfully. You may have to re-open your current project for changes to take effect. + + + + Language: - + Custom CSS: - + Browse - + Image sequence formats: - + Audio Recording: - + Mono - + Stereo - + Effect Textbox Lines: - + Thumbnail Resolution: - + Waveform Resolution: - + + Delete Previews + + + + Use Software Fallbacks When Possible - + General - + Behavior - - Disable Multithreading on Images - - - - + Seeking - + Accurate Seeking Always show the correct frame (visual may pause briefly as correct frame is retrieved) - + Fast Seeking Seek quickly (may briefly show inaccurate frames when seeking - doesn't affect playback/export) - + Memory Usage - + Upcoming Frame Queue: - - + + frames - - + + seconds - + Previous Frame Queue: - + Playback - + Output Device: - - + + Default - + Input Device: - + Sample Rate: - + Audio - + Search for action or shortcut - + Action - + Shortcut - + Import - + Export - + Reset Selected - + Reset All - + Keyboard @@ -2021,12 +2049,12 @@ Seek quickly (may briefly show inaccurate frames when seeking - doesn't aff PreviewGenerator - + Could not open file - %1 - + Could not find stream information - %1 @@ -2055,13 +2083,13 @@ Seek quickly (may briefly show inaccurate frames when seeking - doesn't aff - + All Files - + No active sequence @@ -2116,12 +2144,12 @@ Seek quickly (may briefly show inaccurate frames when seeking - doesn't aff - + Import media... - + No sequence is active, please open the sequence you want to delete clips from. @@ -2703,137 +2731,137 @@ Seek quickly (may briefly show inaccurate frames when seeking - doesn't aff - + Effect already exists - + Clip '%1' already contains a '%2' effect. Would you like to replace it with the pasted one or add it as a separate effect? - + Add - + Replace - + Skip - + Do this for all conflicts found - + Title... - + Solid Color... - + Bars... - + Tone... - + Noise... - + Unsaved Project - + You must save this project before you can record audio in it. - + Click on the timeline where you want to start recording (drag to limit the recording to a certain timeframe) - + Pointer Tool - + Edit Tool - + Ripple Tool - + Razor Tool - + Slip Tool - + Slide Tool - + Hand Tool - + Transition Tool - + Snapping - + Zoom In - + Zoom Out - + Record audio - + Add title, solid, bars, etc. @@ -3169,58 +3197,64 @@ Duration: %4 VSTHost - - + + + Error loading VST plugin - + Failed to create VST reference - + Failed to load VST plugin "%1": %2 - + NOTE: You can't load 32-bit VST plugins into a 64-bit build of Olive. Please find a 64-bit version of this plugin or switch to a 32-bit build of Olive. - + NOTE: You can't load 64-bit VST plugins into a 32-bit build of Olive. Please find a 32-bit version of this plugin or switch to a 64-bit build of Olive. - + + Failed to locate entry point for dynamic library. + + + + VST Error - + Plugin's magic number is invalid - + Plugin - + Interface - + Show - + VST Plugin @@ -3238,7 +3272,7 @@ Duration: %4 - + (none) @@ -3246,57 +3280,57 @@ Duration: %4 ViewerWidget - + Save Frame as Image... - + Show Fullscreen - + Disable - + Screen %1: %2x%3 - + Zoom - + Fit - + Custom - + Close Media - + Save Frame - + Viewer Zoom - + Set Custom Zoom Value: @@ -3304,7 +3338,7 @@ Duration: %4 ViewerWindow - + Exit Fullscreen diff --git a/ts/olive_fr.ts b/ts/olive_fr.ts index d16ab6ea6..f9e8615e5 100644 --- a/ts/olive_fr.ts +++ b/ts/olive_fr.ts @@ -711,14 +711,14 @@ LabelSlider - - + + Set Value - - + + New value: @@ -754,42 +754,42 @@ - + Invalid Clip Link - + This project contains an invalid clip link. It may be corrupt. Would you like to continue loading it? - + %1 - Line: %2 Col: %3 - + User aborted loading - + XML Parsing Error - + Couldn't load '%1'. %2 - + Project Load Error - + Error loading project: %1 @@ -852,622 +852,622 @@ - + No active sequence - + Please open the sequence you wish to export. - + Save Project As... - + Unsaved Project - + This project has changed since it was last saved. Would you like to save it before closing? - + &File - + &New - + &Open Project - + Clear Recent List - + Open Recent - + &Save Project - + Save Project &As - + &Import... - + &Export... - + E&xit - + &Edit - + &Undo - + Redo - + Cu&t - + Cop&y - + &Paste - + Paste Insert - + Duplicate - + Delete - + Ripple Delete - + Split - + Select &All - + Deselect All - + Add Default Transition - + Link/Unlink - + Enable/Disable - + Nest - + Ripple to In Point - + Ripple to Out Point - + Edit to In Point - + Edit to Out Point - + Delete In/Out Point - + Ripple Delete In/Out Point - + Set/Edit Marker - + &View - + Zoom In - + Zoom Out - + Increase Track Height - + Decrease Track Height - + Toggle Show All - + Track Lines - + Rectified Waveforms - + Frames - + Drop Frame - + Non-Drop Frame - + Milliseconds - + Title/Action Safe Area - + Off - + Default - + 4:3 - + 16:9 - + Custom - + Full Screen - + Full Screen Viewer - + &Playback - + Go to Start - + Previous Frame - + Play/Pause - + Play In to Out - + Next Frame - + Go to End - + Go to Previous Cut - + Go to Next Cut - + Go to In Point - + Go to Out Point - + Shuttle Left - + Shuttle Stop - + Shuttle Right - + Loop - + &Window - + Project - + Effect Controls - + Timeline - + Graph Editor - + Media Viewer - + Sequence Viewer - + Maximize Panel - + Reset to Default Layout - + &Tools - + Pointer Tool - + Edit Tool - + Ripple Tool - + Razor Tool - + Slip Tool - + Slide Tool - + Hand Tool - + Transition Tool - + Enable Snapping - + Selecting Also Seeks - + Edit Tool Also Seeks - + Edit Tool Selects Links - + Seek Also Selects - + Seek to the End of Pastes - + Scroll Wheel Zooms - + Enable Drag Files to Timeline - + Auto-Scale By Default - + Enable Seek to Import - + Audio Scrubbing - + Enable Drop on Media to Replace - + Enable Hover Focus - + Ask For Name When Setting Marker - + No Auto-Scroll - + Page Auto-Scroll - + Smooth Auto-Scroll - + Preferences - + Clear Undo - + &Help - + A&ction Search - + Debug Log - + &About... - + <untitled> - + Open Project... - + Missing recent project - + The project '%1' no longer exists. Would you like to remove it from the recent projects list? - + Invalid aspect ratio - + The aspect ratio '%1' is invalid. Please try again. - + Enter custom aspect ratio - + Enter the aspect ratio to use for the title/action safe area (e.g. 16:9): - + Nested Sequence @@ -1518,27 +1518,27 @@ - - %1 fields (%2 frames) + + %1 field(s) (%2 frame(s)) - + Interlacing: - + Audio Frequency: - + Audio Channels: - + Name: %1 Video Dimensions: %2x%3 Frame Rate: %4 @@ -1547,17 +1547,17 @@ Audio Layout: %6 - + Name - + Duration - + Rate @@ -1581,9 +1581,17 @@ Audio Layout: %6 - Audio %1: %2Hz %3 channels + Audio %1: %2Hz %3 + + + %n channel(s) + + + + + Conform to Frame Rate: @@ -1757,263 +1765,283 @@ Audio Layout: %6 PreferencesDialog - + Preferences - + Invalid CSS File - + CSS file '%1' does not exist. - + Warning - + Some changed settings will require restarting Olive to take effect - + Confirm Reset All Shortcuts - + Are you sure you wish to reset all keyboard shortcuts to their defaults? - + Import Keyboard Shortcuts - - + + Error saving shortcuts - + Failed to open file for reading - + Export Keyboard Shortcuts - + Export Shortcuts - + Shortcuts exported successfully - + Failed to open file for writing - + Browse for CSS file + + + Delete All Previews + + + + + Are you sure you want to delete all previews? + + + + + Previews Deleted + + + All previews deleted succesfully. You may have to re-open your current project for changes to take effect. + + + + Language: - + Custom CSS: - + Browse - + Image sequence formats: - + Audio Recording: - + Mono - + Stereo - + Effect Textbox Lines: - + Thumbnail Resolution: - + Waveform Resolution: - + + Delete Previews + + + + Use Software Fallbacks When Possible - + General - + Behavior - - Disable Multithreading on Images - - - - + Seeking - + Accurate Seeking Always show the correct frame (visual may pause briefly as correct frame is retrieved) - + Fast Seeking Seek quickly (may briefly show inaccurate frames when seeking - doesn't affect playback/export) - + Memory Usage - + Upcoming Frame Queue: - - + + frames - - + + seconds - + Previous Frame Queue: - + Playback - + Output Device: - - + + Default - + Input Device: - + Sample Rate: - + Audio - + Search for action or shortcut - + Action - + Shortcut - + Import - + Export - + Reset Selected - + Reset All - + Keyboard @@ -2021,12 +2049,12 @@ Seek quickly (may briefly show inaccurate frames when seeking - doesn't aff PreviewGenerator - + Could not open file - %1 - + Could not find stream information - %1 @@ -2055,13 +2083,13 @@ Seek quickly (may briefly show inaccurate frames when seeking - doesn't aff - + All Files - + No active sequence @@ -2116,12 +2144,12 @@ Seek quickly (may briefly show inaccurate frames when seeking - doesn't aff - + Import media... - + No sequence is active, please open the sequence you want to delete clips from. @@ -2703,137 +2731,137 @@ Seek quickly (may briefly show inaccurate frames when seeking - doesn't aff - + Effect already exists - + Clip '%1' already contains a '%2' effect. Would you like to replace it with the pasted one or add it as a separate effect? - + Add - + Replace - + Skip - + Do this for all conflicts found - + Title... - + Solid Color... - + Bars... - + Tone... - + Noise... - + Unsaved Project - + You must save this project before you can record audio in it. - + Click on the timeline where you want to start recording (drag to limit the recording to a certain timeframe) - + Pointer Tool - + Edit Tool - + Ripple Tool - + Razor Tool - + Slip Tool - + Slide Tool - + Hand Tool - + Transition Tool - + Snapping - + Zoom In - + Zoom Out - + Record audio - + Add title, solid, bars, etc. @@ -3169,58 +3197,64 @@ Duration: %4 VSTHost - - + + + Error loading VST plugin - + Failed to create VST reference - + Failed to load VST plugin "%1": %2 - + NOTE: You can't load 32-bit VST plugins into a 64-bit build of Olive. Please find a 64-bit version of this plugin or switch to a 32-bit build of Olive. - + NOTE: You can't load 64-bit VST plugins into a 32-bit build of Olive. Please find a 32-bit version of this plugin or switch to a 64-bit build of Olive. - + + Failed to locate entry point for dynamic library. + + + + VST Error - + Plugin's magic number is invalid - + Plugin - + Interface - + Show - + VST Plugin @@ -3238,7 +3272,7 @@ Duration: %4 - + (none) @@ -3246,57 +3280,57 @@ Duration: %4 ViewerWidget - + Save Frame as Image... - + Show Fullscreen - + Disable - + Screen %1: %2x%3 - + Zoom - + Fit - + Custom - + Close Media - + Save Frame - + Viewer Zoom - + Set Custom Zoom Value: @@ -3304,7 +3338,7 @@ Duration: %4 ViewerWindow - + Exit Fullscreen diff --git a/ts/olive_it.ts b/ts/olive_it.ts index 214618149..7729daca6 100644 --- a/ts/olive_it.ts +++ b/ts/olive_it.ts @@ -711,14 +711,14 @@ LabelSlider - - + + Set Value - - + + New value: @@ -754,42 +754,42 @@ - + Invalid Clip Link - + This project contains an invalid clip link. It may be corrupt. Would you like to continue loading it? - + %1 - Line: %2 Col: %3 - + User aborted loading - + XML Parsing Error - + Couldn't load '%1'. %2 - + Project Load Error - + Error loading project: %1 @@ -852,622 +852,622 @@ - + No active sequence - + Please open the sequence you wish to export. - + Save Project As... - + Unsaved Project - + This project has changed since it was last saved. Would you like to save it before closing? - + &File - + &New - + &Open Project - + Clear Recent List - + Open Recent - + &Save Project - + Save Project &As - + &Import... - + &Export... - + E&xit - + &Edit - + &Undo - + Redo - + Cu&t - + Cop&y - + &Paste - + Paste Insert - + Duplicate - + Delete - + Ripple Delete - + Split - + Select &All - + Deselect All - + Add Default Transition - + Link/Unlink - + Enable/Disable - + Nest - + Ripple to In Point - + Ripple to Out Point - + Edit to In Point - + Edit to Out Point - + Delete In/Out Point - + Ripple Delete In/Out Point - + Set/Edit Marker - + &View - + Zoom In - + Zoom Out - + Increase Track Height - + Decrease Track Height - + Toggle Show All - + Track Lines - + Rectified Waveforms - + Frames - + Drop Frame - + Non-Drop Frame - + Milliseconds - + Title/Action Safe Area - + Off - + Default - + 4:3 - + 16:9 - + Custom - + Full Screen - + Full Screen Viewer - + &Playback - + Go to Start - + Previous Frame - + Play/Pause - + Play In to Out - + Next Frame - + Go to End - + Go to Previous Cut - + Go to Next Cut - + Go to In Point - + Go to Out Point - + Shuttle Left - + Shuttle Stop - + Shuttle Right - + Loop - + &Window - + Project - + Effect Controls - + Timeline - + Graph Editor - + Media Viewer - + Sequence Viewer - + Maximize Panel - + Reset to Default Layout - + &Tools - + Pointer Tool - + Edit Tool - + Ripple Tool - + Razor Tool - + Slip Tool - + Slide Tool - + Hand Tool - + Transition Tool - + Enable Snapping - + Selecting Also Seeks - + Edit Tool Also Seeks - + Edit Tool Selects Links - + Seek Also Selects - + Seek to the End of Pastes - + Scroll Wheel Zooms - + Enable Drag Files to Timeline - + Auto-Scale By Default - + Enable Seek to Import - + Audio Scrubbing - + Enable Drop on Media to Replace - + Enable Hover Focus - + Ask For Name When Setting Marker - + No Auto-Scroll - + Page Auto-Scroll - + Smooth Auto-Scroll - + Preferences - + Clear Undo - + &Help - + A&ction Search - + Debug Log - + &About... - + <untitled> - + Open Project... - + Missing recent project - + The project '%1' no longer exists. Would you like to remove it from the recent projects list? - + Invalid aspect ratio - + The aspect ratio '%1' is invalid. Please try again. - + Enter custom aspect ratio - + Enter the aspect ratio to use for the title/action safe area (e.g. 16:9): - + Nested Sequence @@ -1518,27 +1518,27 @@ - - %1 fields (%2 frames) + + %1 field(s) (%2 frame(s)) - + Interlacing: - + Audio Frequency: - + Audio Channels: - + Name: %1 Video Dimensions: %2x%3 Frame Rate: %4 @@ -1547,17 +1547,17 @@ Audio Layout: %6 - + Name - + Duration - + Rate @@ -1581,9 +1581,17 @@ Audio Layout: %6 - Audio %1: %2Hz %3 channels + Audio %1: %2Hz %3 + + + %n channel(s) + + + + + Conform to Frame Rate: @@ -1757,263 +1765,283 @@ Audio Layout: %6 PreferencesDialog - + Preferences - + Invalid CSS File - + CSS file '%1' does not exist. - + Warning - + Some changed settings will require restarting Olive to take effect - + Confirm Reset All Shortcuts - + Are you sure you wish to reset all keyboard shortcuts to their defaults? - + Import Keyboard Shortcuts - - + + Error saving shortcuts - + Failed to open file for reading - + Export Keyboard Shortcuts - + Export Shortcuts - + Shortcuts exported successfully - + Failed to open file for writing - + Browse for CSS file + + + Delete All Previews + + + + + Are you sure you want to delete all previews? + + + + + Previews Deleted + + + All previews deleted succesfully. You may have to re-open your current project for changes to take effect. + + + + Language: - + Custom CSS: - + Browse - + Image sequence formats: - + Audio Recording: - + Mono - + Stereo - + Effect Textbox Lines: - + Thumbnail Resolution: - + Waveform Resolution: - + + Delete Previews + + + + Use Software Fallbacks When Possible - + General - + Behavior - - Disable Multithreading on Images - - - - + Seeking - + Accurate Seeking Always show the correct frame (visual may pause briefly as correct frame is retrieved) - + Fast Seeking Seek quickly (may briefly show inaccurate frames when seeking - doesn't affect playback/export) - + Memory Usage - + Upcoming Frame Queue: - - + + frames - - + + seconds - + Previous Frame Queue: - + Playback - + Output Device: - - + + Default - + Input Device: - + Sample Rate: - + Audio - + Search for action or shortcut - + Action - + Shortcut - + Import - + Export - + Reset Selected - + Reset All - + Keyboard @@ -2021,12 +2049,12 @@ Seek quickly (may briefly show inaccurate frames when seeking - doesn't aff PreviewGenerator - + Could not open file - %1 - + Could not find stream information - %1 @@ -2055,13 +2083,13 @@ Seek quickly (may briefly show inaccurate frames when seeking - doesn't aff - + All Files - + No active sequence @@ -2116,12 +2144,12 @@ Seek quickly (may briefly show inaccurate frames when seeking - doesn't aff - + Import media... - + No sequence is active, please open the sequence you want to delete clips from. @@ -2703,137 +2731,137 @@ Seek quickly (may briefly show inaccurate frames when seeking - doesn't aff - + Effect already exists - + Clip '%1' already contains a '%2' effect. Would you like to replace it with the pasted one or add it as a separate effect? - + Add - + Replace - + Skip - + Do this for all conflicts found - + Title... - + Solid Color... - + Bars... - + Tone... - + Noise... - + Unsaved Project - + You must save this project before you can record audio in it. - + Click on the timeline where you want to start recording (drag to limit the recording to a certain timeframe) - + Pointer Tool - + Edit Tool - + Ripple Tool - + Razor Tool - + Slip Tool - + Slide Tool - + Hand Tool - + Transition Tool - + Snapping - + Zoom In - + Zoom Out - + Record audio - + Add title, solid, bars, etc. @@ -3169,58 +3197,64 @@ Duration: %4 VSTHost - - + + + Error loading VST plugin - + Failed to create VST reference - + Failed to load VST plugin "%1": %2 - + NOTE: You can't load 32-bit VST plugins into a 64-bit build of Olive. Please find a 64-bit version of this plugin or switch to a 32-bit build of Olive. - + NOTE: You can't load 64-bit VST plugins into a 32-bit build of Olive. Please find a 32-bit version of this plugin or switch to a 64-bit build of Olive. - + + Failed to locate entry point for dynamic library. + + + + VST Error - + Plugin's magic number is invalid - + Plugin - + Interface - + Show - + VST Plugin @@ -3238,7 +3272,7 @@ Duration: %4 - + (none) @@ -3246,57 +3280,57 @@ Duration: %4 ViewerWidget - + Save Frame as Image... - + Show Fullscreen - + Disable - + Screen %1: %2x%3 - + Zoom - + Fit - + Custom - + Close Media - + Save Frame - + Viewer Zoom - + Set Custom Zoom Value: @@ -3304,7 +3338,7 @@ Duration: %4 ViewerWindow - + Exit Fullscreen diff --git a/ts/olive_ru.ts b/ts/olive_ru.ts index 891e992d7..f09293692 100644 --- a/ts/olive_ru.ts +++ b/ts/olive_ru.ts @@ -716,14 +716,14 @@ LabelSlider - - + + Set Value Установить значение - - + + New value: Новое значение: @@ -759,42 +759,42 @@ Этот проект был сохранён в другой версии Olive, которая неполностью совместима с установленной у вас. Всё-таки попробовать загрузить? - + Invalid Clip Link Некорректная связь клипов - + This project contains an invalid clip link. It may be corrupt. Would you like to continue loading it? В проекте обнаружена некорректная связь клипов. Всё-таки попробовать загрузить её? - + %1 - Line: %2 Col: %3 - + User aborted loading Пользователь прервал загрузку - + XML Parsing Error Ошибка разбора XML - + Couldn't load '%1'. %2 Не удалось загрузить '%1'. %2 - + Project Load Error Ошибка при загрузке проекта - + Error loading project: %1 Ошибка при загрузке проекта: %1 @@ -861,367 +861,367 @@ Очистить точку входа/выхода - + No active sequence Нет активных последовательностей - + Please open the sequence you wish to export. Откройте последовательность, которую хотите экспортировать - + Save Project As... Сохранить проект как… - + Unsaved Project Несохранённый проект - + This project has changed since it was last saved. Would you like to save it before closing? Проект был изменён с момента последнего сохранения. Хотите сохранить его перед закрытием? - + &File &Файл - + &New &Создать - + &Open Project &Открыть проект - + Clear Recent List Очистить список - + Open Recent Открыть недавний - + &Save Project Со&хранить проект - + Save Project &As Сохранить проект &как - + &Import... &Импортировать… - + &Export... &Экспортировать…. - + E&xit В&ыход - + &Edit &Правка - + &Undo &Отменить - + Redo Вернуть - + Cu&t В&ырезать - + Cop&y С&копировать - + &Paste &Вставить - + Paste Insert - + Duplicate Сделать копию - + Delete Удалить - + Ripple Delete Удалить со сдвигом - + Split Разделить - + Select &All Выд&елить всё - + Deselect All Снять выделение - + Add Default Transition Добавить переход по умолчанию - + Link/Unlink Связать/Убрать связь - + Enable/Disable Включить/Отключить - + Nest Вложить - + Ripple to In Point Сдвиг до точки входа - + Ripple to Out Point Сдвиг до точки выхода - + Edit to In Point Правка до точки входа - + Edit to Out Point Правка до точки выхода - + Delete In/Out Point Удалить точку входа/выхода - + Ripple Delete In/Out Point Удалить со сдвигом точку входа/выхода - + Set/Edit Marker Установить/Изменить маркер - + &View &Вид - + Zoom In Приблизить - + Zoom Out Отдалить - + Increase Track Height Увеличить высоту дорожки - + Decrease Track Height Уменьшить высоту дорожки - + Toggle Show All Показывать весь проект - + Track Lines Линии дорожек - + Rectified Waveforms Волновая форма от низа - + Frames Кадры - + Drop Frame С пропуском кадров - + Non-Drop Frame Без пропуска кадров - + Milliseconds Миллисекунды - + Title/Action Safe Area Безопасная область - + Off Выкл. - + Default По умолчанию - + 4:3 4:3 - + 16:9 16:9 - + Custom Другая - + Full Screen Полноэкранный режим - + Full Screen Viewer Монитор в полноэкранном режиме - + &Playback Вос&произведение - + Go to Start К началу - + Previous Frame К предыдущему кадру - + Play/Pause Воспроизведение/Пауза - + Play In to Out Проиграть от входа до выхода - + Next Frame К следующему кадру - + Go to End В конец - + Go to Previous Cut - + Go to Next Cut - + Go to In Point К точке входа - + Go to Out Point К точке выхода - + Shuttle Left - + Shuttle Stop - + Shuttle Right @@ -1238,257 +1238,257 @@ Увеличить скорость - + Loop Петля - + &Window &Окно - + Project Проект - + Effect Controls Управление эффектами - + Timeline Таймлайн - + Graph Editor Редактор графов - + Media Viewer Монитор проекта - + Sequence Viewer Монитор последовательностей - + Maximize Panel Развернуть панель - + Reset to Default Layout Вернуть исходный вид панелей - + &Tools &Инструменты - + Pointer Tool Указатель - + Edit Tool Выделение - + Ripple Tool Монтаж со сдвигом - + Razor Tool Подрезка - + Slip Tool Прокрутка с совмещением - + Slide Tool Прокрутка - + Hand Tool Навигация - + Transition Tool Переход - + Enable Snapping Включить прилипание - + Selecting Also Seeks - + Edit Tool Also Seeks - + Edit Tool Selects Links - + Seek Also Selects - + Seek to the End of Pastes - + Scroll Wheel Zooms Колесо мыши масштабирует таймлайн - + Enable Drag Files to Timeline Разрешить перетаскивание файлов на таймлайн извне - + Auto-Scale By Default Автоматически масштабировать по умолчанию - + Enable Seek to Import - + Audio Scrubbing Воспроизводить звук при прокрутке - + Enable Drop on Media to Replace - + Enable Hover Focus Включить фокус наводкой - + Ask For Name When Setting Marker Спрашивать имя маркера при добавлении - + No Auto-Scroll Без автопрокрутки - + Page Auto-Scroll Прокручивать перелистыванием - + Smooth Auto-Scroll Прокручивать плавно - + Preferences Параметры - + Clear Undo Очистить историю изменений - + &Help &Справка - + A&ction Search &Найти команду - + Debug Log Журнал отладки - + &About... &О программе… - + <untitled> <без названия> - + Open Project... Открыть проект… - + Missing recent project - + The project '%1' no longer exists. Would you like to remove it from the recent projects list? - + Invalid aspect ratio - + The aspect ratio '%1' is invalid. Please try again. - + Enter custom aspect ratio - + Enter the aspect ratio to use for the title/action safe area (e.g. 16:9): - + Nested Sequence Вложенная последовательность @@ -1539,27 +1539,31 @@ Частота кадров: - %1 fields (%2 frames) - полей: %1 (кадров: %2) + полей: %1 (кадров: %2) - + + %1 field(s) (%2 frame(s)) + + + + Interlacing: Чересстрочность: - + Audio Frequency: Частота звука: - + Audio Channels: Звуковых каналов: - + Name: %1 Video Dimensions: %2x%3 Frame Rate: %4 @@ -1572,17 +1576,17 @@ Audio Layout: %6 Звуковые каналы: %6 - + Name Название - + Duration Длительность - + Rate Частота @@ -1605,9 +1609,22 @@ Audio Layout: %6 Видео %1: %2x%3 %4к/с - Audio %1: %2Hz %3 channels - Звук %1: %2Гц %3 каналов + Звук %1: %2Гц %3 каналов + + + + Audio %1: %2Hz %3 + + + + + %n channel(s) + + + + + @@ -1782,265 +1799,289 @@ Audio Layout: %6 PreferencesDialog - + Preferences Параметры - + Invalid CSS File Некорректный файл CSS - + CSS file '%1' does not exist. Файл CSS '%1' не существует. - + Warning Предупреждение - + Some changed settings will require restarting Olive to take effect Некоторые изменения параметров вступят в силу только при следующем запуске Olive - + Confirm Reset All Shortcuts Подтвердите действие - + Are you sure you wish to reset all keyboard shortcuts to their defaults? Вы действительно хотите сбросить все клавиатурные комбинации к исходным значениям? - + Import Keyboard Shortcuts Импортировать клавиатурные комбинации - - + + Error saving shortcuts Ошибка при сохранении клавиатурных комбинаций - + Failed to open file for reading Не удалось открыть файл для чтения - + Export Keyboard Shortcuts Экспортировать клавиатурные комбинации - + Export Shortcuts Экспортировать клавиатурные комбинации - + Shortcuts exported successfully Комбинации успешно экспортированы - + Failed to open file for writing Не удалось открыть файл для записи - + Browse for CSS file Указать файл CSS + + + Delete All Previews + + + + + Are you sure you want to delete all previews? + + + + + Previews Deleted + + + All previews deleted succesfully. You may have to re-open your current project for changes to take effect. + + + + Language: Язык: - + Custom CSS: Свой CSS: - + Browse Просмотр - + Image sequence formats: Форматы изображений: - + Audio Recording: Запись звука: - + Mono Моно - + Stereo Стерео - + Effect Textbox Lines: Строк в редакторе титров: - + Thumbnail Resolution: Разрешение миниатюр: - + Waveform Resolution: Разрешение волновой формы: - + + Delete Previews + + + + Use Software Fallbacks When Possible - + General Общие - + Behavior Поведение - Disable Multithreading on Images - Отключить многопоточность для изображений + Отключить многопоточность для изображений - + Seeking Позиционирование - + Accurate Seeking Always show the correct frame (visual may pause briefly as correct frame is retrieved) Точное позиционирование Всегда показывать правильный кадр; на его получение может уходить немного времени - + Fast Seeking Seek quickly (may briefly show inaccurate frames when seeking - doesn't affect playback/export) Быстрое позиционирование Переходы без пауз, возможен кратковременный показ неправильного кадра в мониторе - + Memory Usage Использование памяти - + Upcoming Frame Queue: Очередь последующих кадров: - - + + frames кадров - - + + seconds секунд - + Previous Frame Queue: Очередь предыдущих кадров: - + Playback Воспроизведение - + Output Device: Устройство выхода: - - + + Default По умолчанию - + Input Device: Устройство входа: - + Sample Rate: Частота дискретизации: - + Audio Звук - + Search for action or shortcut Искать действие или комбинацию клавиш - + Action Действие - + Shortcut Комбинация - + Import Импортировать - + Export Экспортировать - + Reset Selected Сбросить выбранное - + Reset All Сбросить все - + Keyboard Клавиатурные комбинации @@ -2048,12 +2089,12 @@ Seek quickly (may briefly show inaccurate frames when seeking - doesn't aff PreviewGenerator - + Could not open file - %1 Не удалось открыть файл — %1 - + Could not find stream information - %1 Не удалось найти информацию потока — %1 @@ -2082,13 +2123,13 @@ Seek quickly (may briefly show inaccurate frames when seeking - doesn't aff - + All Files Все файлы - + No active sequence Нет активных последовательностей @@ -2143,12 +2184,12 @@ Seek quickly (may briefly show inaccurate frames when seeking - doesn't aff Похоже, что файл '%1' яавляется частью последовательности изображений. Загрузить его как таковой? - + Import media... Импортировать медиафайлы… - + No sequence is active, please open the sequence you want to delete clips from. Нет активных последовательностей. Откройте последовательность, из которой хотите удалить клипы. @@ -2730,32 +2771,32 @@ Seek quickly (may briefly show inaccurate frames when seeking - doesn't aff <нет> - + Effect already exists Эффект уже добавлен - + Clip '%1' already contains a '%2' effect. Would you like to replace it with the pasted one or add it as a separate effect? Клип '%1' уже содержит эффект '%2'. Хотите заменить его на вставляемый эффект или добавить вставляемый эффект как отдельный? - + Add Добавить - + Replace Заменить - + Skip Пропустить - + Do this for all conflicts found Применить для всех конфликтов @@ -2772,107 +2813,107 @@ Seek quickly (may briefly show inaccurate frames when seeking - doesn't aff Установить название маркера последовательности: - + Title... Титры… - + Solid Color... Цветная заливка… - + Bars... Испытательная таблица… - + Tone... Звуковой сигнал… - + Noise... Шум… - + Unsaved Project Несохранённый проект - + You must save this project before you can record audio in it. Перед записью звука необходимо сохранить проект. - + Click on the timeline where you want to start recording (drag to limit the recording to a certain timeframe) Щелкните на таймлайне в точке, от которой хотите начать запись звука. Перетащите курсор после щелчка, чтобы сразу задать длительность записи. - + Pointer Tool Указатель - + Edit Tool Выделение - + Ripple Tool Монтаж со сдвигом - + Razor Tool Подрезка - + Slip Tool Прокрутка с совмещением - + Slide Tool Прокрутка - + Hand Tool Навигация - + Transition Tool Переход - + Snapping Прилипание - + Zoom In Приблизить - + Zoom Out Отдалить - + Record audio Записать звук - + Add title, solid, bars, etc. Добавить титры, заливку цветом, испытательную таблицу и т.д. @@ -3215,58 +3256,64 @@ Duration: %4 VSTHost - - + + + Error loading VST plugin Ошибка при загрузке плагина VST - + Failed to create VST reference - + Failed to load VST plugin "%1": %2 - + NOTE: You can't load 32-bit VST plugins into a 64-bit build of Olive. Please find a 64-bit version of this plugin or switch to a 32-bit build of Olive. - + NOTE: You can't load 64-bit VST plugins into a 32-bit build of Olive. Please find a 32-bit version of this plugin or switch to a 64-bit build of Olive. - + + Failed to locate entry point for dynamic library. + + + + VST Error - + Plugin's magic number is invalid - + Plugin Плагин - + Interface Интерфейс - + Show Показать - + VST Plugin Плагин VST @@ -3284,7 +3331,7 @@ Duration: %4 Монитор проекта - + (none) (нет) @@ -3292,57 +3339,57 @@ Duration: %4 ViewerWidget - + Save Frame as Image... Сохранить кадр как изображение… - + Show Fullscreen Полноэкранный режим - + Disable Отключить - + Screen %1: %2x%3 Экран %1: %2×%3 - + Zoom Масштаб - + Fit Уместить - + Custom Другой - + Close Media Закрыть файл - + Save Frame Сохранить кадр - + Viewer Zoom Масштаб просмотра - + Set Custom Zoom Value: Другое значение масштаба: @@ -3350,7 +3397,7 @@ Duration: %4 ViewerWindow - + Exit Fullscreen Выйти из полноэкранного режима