diff --git a/debug.cpp b/debug.cpp
index 9589ee5e4..768e1ebe1 100644
--- a/debug.cpp
+++ b/debug.cpp
@@ -34,68 +34,76 @@ QFile debug_file;
QTextStream debug_stream;
void open_debug_file() {
- QDir debug_dir = QStandardPaths::writableLocation(QStandardPaths::CacheLocation);
- debug_dir.mkpath(".");
- if (debug_dir.exists()) {
- debug_file.setFileName(debug_dir.path() + "/debug_log");
- if (debug_file.open(QFile::WriteOnly)) {
- debug_stream.setDevice(&debug_file);
- } else {
- qWarning() << "Couldn't open debug log file, debug log will not be saved";
- }
- }
+ QDir debug_dir = QStandardPaths::writableLocation(QStandardPaths::CacheLocation);
+ debug_dir.mkpath(".");
+ if (debug_dir.exists()) {
+ debug_file.setFileName(debug_dir.path() + "/debug_log");
+ if (debug_file.open(QFile::WriteOnly)) {
+ debug_stream.setDevice(&debug_file);
+ } else {
+ qWarning() << "Couldn't open debug log file, debug log will not be saved";
+ }
+ }
}
-void close_debug_file() {
- if (debug_file.isOpen()) debug_file.close();
+void close_debug_file()
+{
+ if (debug_file.isOpen()) {
+ debug_file.close();
+ }
}
-void debug_message_handler(QtMsgType type, const QMessageLogContext &context, const QString &msg) {
- debug_mutex.lock();
- QByteArray localMsg = msg.toLocal8Bit();
- switch (type) {
- case QtDebugMsg:
-// fprintf(stderr, "[DEBUG] %s (%s:%u, %s)\n", localMsg.constData(), context.file, context.line, context.function);
- fprintf(stderr, "[DEBUG] %s\n", localMsg.constData());
- if (debug_file.isOpen()) debug_stream << QString("[DEBUG] %1 (%2:%3, %4)\n").arg(localMsg.constData(), context.file, QString::number(context.line), context.function);
- debug_info.append(QString("[DEBUG] %1 (%2:%3, %4) ").arg(localMsg.constData(), context.file, QString::number(context.line), context.function));
- fflush(stderr);
- break;
- case QtInfoMsg:
-// fprintf(stderr, "[INFO] %s (%s:%u, %s)\n", localMsg.constData(), context.file, context.line, context.function);
- fprintf(stderr, "[INFO] %s\n", localMsg.constData());
- if (debug_file.isOpen()) debug_stream << QString("[INFO] %1 (%2:%3, %4)\n").arg(localMsg.constData(), context.file, QString::number(context.line), context.function);
- debug_info.append(QString("[INFO] %1 (%2:%3, %4) ").arg(localMsg.constData(), context.file, QString::number(context.line), context.function));
- fflush(stderr);
- break;
- case QtWarningMsg:
-// fprintf(stderr, "[WARNING] %s (%s:%u, %s)\n", localMsg.constData(), context.file, context.line, context.function);
- fprintf(stderr, "[WARNING] %s\n", localMsg.constData());
- if (debug_file.isOpen()) debug_stream << QString("[WARNING] %1 (%2:%3, %4)\n").arg(localMsg.constData(), context.file, QString::number(context.line), context.function);
- debug_info.append(QString("[WARNING] %1 (%2:%3, %4) ").arg(localMsg.constData(), context.file, QString::number(context.line), context.function));
- fflush(stderr);
- break;
- case QtCriticalMsg:
-// fprintf(stderr, "[ERROR] %s (%s:%u, %s)\n", localMsg.constData(), context.file, context.line, context.function);
- fprintf(stderr, "[ERROR] %s\n", localMsg.constData());
- if (debug_file.isOpen()) debug_stream << QString("[ERROR] %1 (%2:%3, %4)\n").arg(localMsg.constData(), context.file, QString::number(context.line), context.function);
- debug_info.append(QString("[ERROR] %1 (%2:%3, %4) ").arg(localMsg.constData(), context.file, QString::number(context.line), context.function));
- fflush(stderr);
- break;
- case QtFatalMsg:
-// fprintf(stderr, "[FATAL] %s (%s:%u, %s)\n", localMsg.constData(), context.file, context.line, context.function);
- fprintf(stderr, "[FATAL] %s\n", localMsg.constData());
- if (debug_file.isOpen()) debug_stream << QString("[FATAL] %1 (%2:%3, %4)\n").arg(localMsg.constData(), context.file, QString::number(context.line), context.function);
- debug_info.append(QString("[FATAL] %1 (%2:%3, %4) ").arg(localMsg.constData(), context.file, QString::number(context.line), context.function));
- fflush(stderr);
-// abort();
- }
+void debug_message_handler(QtMsgType type, const QMessageLogContext &context, const QString &msg)
+{
+ debug_mutex.lock();
+ const QByteArray localMsg = msg.toLocal8Bit();
+ const QDateTime now = QDateTime::currentDateTime();
+ const QByteArray timeRepr(now.toString(Qt::ISODate).toLocal8Bit());
+ QString msgTag;
+ QString fontColor;
+ switch (type) {
+ case QtDebugMsg:
+ msgTag = "DEBUG";
+ fontColor = "grey";
+ break;
+ case QtInfoMsg:
+ msgTag = "INFO";
+ fontColor = "blue";
+ break;
+ case QtWarningMsg:
+ msgTag = "WARNING";
+ fontColor = "yellow";
+ break;
+ case QtCriticalMsg:
+ msgTag = "ERROR";
+ fontColor = "red";
+ break;
+ case QtFatalMsg:
+ msgTag = "FATAL";
+ fontColor = "red";
+ break;
+ default:
+ fprintf(stderr, "Unknown debug msg type");
+ fflush(stderr);
+ break;
+ }//switch
+
+ fprintf(stderr, "%s [%s] %s (%s:%u, %s)\n", timeRepr.data(), msgTag.toLocal8Bit().constData(), localMsg.data(),
+ context.file, context.line, context.function);
+ if (debug_file.isOpen()) {
+ debug_stream << QString("[%1] %2 (%3:%4, %5)\n")
+ .arg(msgTag, localMsg, context.file, QString::number(context.line), context.function);
+ }
+ debug_info.prepend(QString("[%2] %3 (%4:%5, %6) ")
+ .arg(fontColor, msgTag, localMsg, context.file, QString::number(context.line), context.function));
+ fflush(stderr);
if (olive::DebugDialog != nullptr && olive::DebugDialog->isVisible()) {
QMetaObject::invokeMethod(olive::DebugDialog, "update_log", Qt::QueuedConnection);
- }
- debug_mutex.unlock();
+ }
+ debug_mutex.unlock();
}
-const QString &get_debug_str() {
- return debug_info;
+const QString &get_debug_str()
+{
+ return debug_info;
}
diff --git a/dialogs/exportdialog.cpp b/dialogs/exportdialog.cpp
index ee1d5d1e3..28ac87e90 100644
--- a/dialogs/exportdialog.cpp
+++ b/dialogs/exportdialog.cpp
@@ -694,7 +694,7 @@ void ExportDialog::setup_ui() {
verticalLayout->addWidget(videoGroupbox);
audioGroupbox = new QGroupBox(this);
- audioGroupbox->setTitle("Audio");
+ audioGroupbox->setTitle(tr("Audio"));
audioGroupbox->setCheckable(true);
QGridLayout* audioGridLayout = new QGridLayout(audioGroupbox);
diff --git a/io/previewgenerator.cpp b/io/previewgenerator.cpp
index 1d4aab8bc..125f9996a 100644
--- a/io/previewgenerator.cpp
+++ b/io/previewgenerator.cpp
@@ -1,4 +1,4 @@
-/***
+/***
Olive - Non-Linear Video Editor
Copyright (C) 2019 Olive Team
diff --git a/ts/olive_bs.ts b/ts/olive_bs.ts
index 07591fb53..9c5ebe12c 100644
--- a/ts/olive_bs.ts
+++ b/ts/olive_bs.ts
@@ -4,13 +4,13 @@
AboutDialog
-
+ Olive is a non-linear video editor. This software is free and protected by the GNU GPL.To the best of my knowledge, there is no translation for free as in libre that sounds quite as nicely as slobodan.Olive je nelinearni video uređivač. Ovaj software je slobodan i zaštićen GNU GPL-om.
-
+ Olive Team is obliged to inform users that Olive source code is available for download from its website.Olive tim je pod obavezom da obavijesti svoje korisnike da je Olive-ov izvorni kod dostupan za preuzimanje sa njegove web stranice
@@ -18,7 +18,7 @@
ActionSearch
-
+ Search for action...Potražite radnju...
@@ -26,12 +26,12 @@
AdvancedVideoDialog
-
+ Advanced Video SettingsNapredne video postavke
-
+ Pixel Format:Pixel format:
@@ -39,25 +39,33 @@
Audio
- Audio
- Audio
+ Audio
- Recording
- Snimanje
+ Snimanje
+
+
+
+ %1 Audio
+ %1 Audio
+
+
+
+ Recording %1
+ Snimanje %1AudioNoiseEffect
-
+ AmountKoličina
-
+ MixMiks
@@ -65,17 +73,17 @@
ChannelLayoutName
-
+ InvalidNevažeće
-
+ MonoMono
-
+ StereoStereo
@@ -83,7 +91,7 @@
CollapsibleWidget
-
+ <untitled><neimenovano>
@@ -91,7 +99,7 @@
ColorButton
-
+ Set ColorPostavi boju
@@ -99,27 +107,27 @@
CornerPinEffect
-
+ Top LeftGornje lijevo
-
+ Top RightGornje desno
-
+ Bottom LeftDonje lijevo
-
+ Bottom RightDonje desno
-
+ PerspectivePerspektiva
@@ -127,7 +135,7 @@
DebugDialog
-
+ Debug LogZapis za debugiranje
@@ -135,23 +143,23 @@
DemoNotice
-
-
+
+ Welcome to Olive!Dobrodošli u Olive!
-
+ Olive is a free open-source video editor released under the GNU GPL. If you have paid for this software, you have been scammed.Olive je slobodan video uređivač sa otvorenim izvornim kodom izdan pod GNU GPL-om. Ako ste platili za ovaj software, vi ste bili prevareni.
-
+ This software is currently in ALPHA which means it is unstable and very likely to crash, have bugs, and have missing features. We offer no warranty so use at your own risk. Please report any bugs or feature requests at %1Ovaj software je trenutno u ALFA stanju, što znači da je nestabilan i veoma je vjerovatno da će se srušiti, imati greške i da ne dostaje nekih mogućnosti. Mi ne dajemo nikakvu garanciju, tako da koristite na svoj sopstveni rizik. Molimo da prijavite sve greške i željene funkcije na %1
-
+ Thank you for trying Olive and we hope you enjoy it!Hvala što isprobavate Olive i nadamo se da ćete uživati u njemu!
@@ -159,90 +167,90 @@
Effect
-
+ Invalid effectNevažeći efekat
-
+ No candidate for effect '%1'. This effect may be corrupt. Try reinstalling it or Olive.Nema kandidata za efekat '%1'. Moguće je da je ovaj efekat koruptiran. Pokušajte ponovno instalirati njega ili Olive.
-
+ Cu&tI'll have to check back on this later to see how it works with the keyboard in practice&Reži
-
+ &Copy&Kopiraj
-
+ Move &UpPomjeri &gore
-
+ Move &DownPomjeri &dolje
-
+ D&elete&Obriši
-
+ Load Settings From FileUčitaj postavke iz datoteke
-
+ Save Settings to FileSpasi postavke u datoteku
-
+ Save Effect SettingsSpasi postavke efekata
-
-
+
+ Effect XML Settings %1XML postavke-efekta %1
-
+ Save Settings FailedSpašavanje postavki neuspješno
-
+ Failed to open "%1" for writing.Neuspješno otvaranje "%1" za uređivanje.
-
+ Load Effect SettingsUčitaj postavke efekta
-
-
+
+ Load Settings FailedUčitavanje postavki neuspješno
-
+ Failed to open "%1" for reading.Neuspješno otvaranje "%1" za čitanje.
-
+ This settings file doesn't match this effect.Ova datoteka postavki nije prikladna za ovaj efekat.
@@ -250,47 +258,47 @@
EffectControls
-
+ Effects: Efekti:
-
+ &Paste&Zalijepi
-
+ Add Video EffectDodaj video efekat
-
+ VIDEO EFFECTSVIDEO EFEKTI
-
+ Add Video TransitionDodaj video prelaz
-
+ Add Audio EffectDodaj audio efekat
-
+ AUDIO EFFECTSAUDIO EFEKTI
-
+ Add Audio TransitionDodaj audio prelaz
-
+ (Multiple clips selected)(Vše snimki je odabrano)
@@ -298,12 +306,12 @@
EffectRow
-
+ Disable KeyframesOnemogući ključne kadrove
-
+ Disabling keyframes will delete all current keyframes. Are you sure you want to do this?Onemogućavanje ključnih kadrova će obrisati sve trenutne ključne kadrove. Da li ste sigurni da želite ovo uraditi?
@@ -311,7 +319,7 @@
EmbeddedFileChooser
-
+ File:Datoteka:
@@ -319,98 +327,98 @@
ExportDialog
-
+ Export "%1"Izvoz "%1"
-
+ Unknown codec name %1Nepoznato ime kodeka %1
-
+ Export FailedIzvoz neuspješan
-
+ Export failed - %1Izvoz neuspješan - %1
-
+ Invalid dimensionsNevažeće dimenzije
-
+ Export width and height must both be even numbers/divisible by 2.Visina i širina izvoza obje moraju biti parni brojevi/djeljive sa dva.
-
+ Invalid codecNevažeći kodek
-
+ Couldn't determine output parameters for the selected codec. This is a bug, please contact the developers.Parametri odabranog kodeka se nisu mogli odrediti. Ovo je greška, molimo da kontaktirate developere.
-
+ Invalid formatNevažeći format
-
+ Couldn't determine output format. This is a bug, please contact the developers.Izlazni format se nije mogao odrediti. Ovo je greška, molimo da kontaktirate developere.
-
+ Export MediaIzvoz medija
-
+ Quality-based (Constant Rate Factor)Bazirano na kvaliteti (Faktor stalne stope/Constant Rate Factor)
-
+ Constant BitrateStalna stopa bitova
-
-
+
+ Invalid CodecNevažeći kodek
-
+ Failed to find a suitable encoder for this codec. Export will likely fail.Traganje za prikladnim koderom za ovaj kodek nije uspjelo. Izvoz najvjerovatnije neće uspjeti.
-
+ Failed to find pixel format for this encoder. Export will likely fail.Traganje za prikladnim formatom piksela za ovaj kodek nije uspjelo. Izvoz najvjerovatnije neće uspjeti.
-
+ Bitrate (Mbps):Stopa bitova (Mbps):
-
+ Quality (CRF):Kvaliteta (CRF):
-
+ Quality Factor:
0 = lossless
@@ -425,74 +433,74 @@
51 = najniža kvaliteta moguća
-
+ Target File Size (MB):Željena veličina datoteke (MB):
-
+ Format:Format:
-
+ Range:Raspon:
-
+ Entire SequenceČitava sekvenca
-
+ In to OutI have no clue what to call this really, it only plays sound, but that's not in the name, so I can't mention sound, so I assume that "in" and "out" reference the in and out points respectively.Od početka do kraja
-
+ VideoVideo
-
-
+
+ Codec:Kodek:
-
+ Width:Širina:
-
+ Height:Visina:
-
+ Frame Rate:Okvirna stopa:
-
+ Compression Type:Tip komprimacije:
-
+ AdvancedNapredno
-
+ Sampling Rate:Stopa uzoraka:
-
+ Bitrate (Kbps/CBR):Stopa bitova (Kbps/CBR):
@@ -500,88 +508,88 @@
ExportThread
-
+ failed to send frame to encoder (%1)Slanje okvira koderu nije uspjelo (%1)
-
+ failed to receive packet from encoder (%1)Primanje paketa od kodera nije uspjelo (%1)
-
+ could not video encoder for %1Nije mogao video koder za %1
-
+ could not allocate video streamVideo tok se nije mogao zauzeti
-
+ could not allocate video encoding contextKontekst video kodiranja se nije moago zauzeti
-
+ could not open output video encoder (%1)Izlazni video koder se nije moago otvoriti (%1)
-
+ could not copy video encoder parameters to output stream (%1)Parametri video kodera se nisu mogli kopirati u izlazni tok (%1)
-
+ could not audio encoder for %1Not sure if there should be anything in between "not" and "audio"Nije mogao audio koder za %1
-
+ could not allocate audio streamAudio tok se nije mogao zauzeti
-
+ could not allocate audio encoding contextKontekst audio kodiranja se nije mogao zauzeti
-
+ could not open output audio encoder (%1)Izlaz audio kodera se nije mogao otvoriti (%1)
-
+ could not copy audio encoder parameters to output stream (%1)Parametri audio kodera se nisu mogli kopirati u izlazni tok (%1)
-
+ could not allocate audio buffer (%1)Audio međuspremnik se nije mogao zauzeti (%1)
-
+ could not create output format contextKontekst izlaznog formata se nije mogao stvoriti
-
+ could not open output file (%1)Izlazna datoteka se nije mogla otvoriti (%1)
-
+ could not write output file header (%1)Zaglavlje izlazne datoteke se nije moglo ispisati (%1)
-
+ could not write output file trailer (%1)Zaglavlje izlazne datoteke se nije moglo ispisati (%1)
@@ -589,912 +597,754 @@
FillLeftRightEffect
-
+ Type
-
+ Tip
-
+ Fill Left with Right
-
+ Popuni lijevo sa desnim
-
+ Fill Right with Left
-
+ Popuni desno sa lijevimFrei0rEffect
-
+ Failed to load Frei0r plugin "%1": %2
-
+ Not sure if that's completely accurate, as I have not seen this dialog and the text itself is somewhat ambiguous regarding the placeholders' functions
+ Učitavanje Frei0r dodatka nije uspjelo "%1": %2
-
+ NOTE: You can't load 32-bit Frei0r 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.
-
+ PAŽNJA: Vi ne možete učitavati 32-bitne Frei0r dodatke u 64-bitno izdanje Olive-a. Molimo nađite 64-bitno izdanje ovih dodataka, ili pređite na 32-bitno izdanje Olive-a.
-
+ NOTE: You can't load 64-bit Frei0r 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.
-
+ PAŽNJA: Vi ne možete učitavati 64-bitne Frei0r dodatke u 32-bitno izdanje Olive-a. Molimo nađite 32-bitno izdanje ovih dodataka, ili pređite na 64-bitno izdanje Olive-a.
-
+ Error loading Frei0r plugin
-
+ Greška pri učitavanju Frei0r dodatakaGraphEditor
-
+ Graph Editor
-
+ Uređivač grafikona
-
+ Linear
-
+ Linearno
-
+ Bezier
-
+ Bezier
-
+ Hold
-
+ DržiGraphView
-
+ Zoom to Selection
-
+ Povećaj ka odabiru
-
+ Zoom to Show All
-
+ Povećaj ka svemu
-
+ Reset View
-
+ Vrati prvobitni prikazInterlacingName
-
+ None (Progressive)
-
+ Nema (progresivno)
-
+ Top Field First
-
+ Gornje polje prvo
-
+ Bottom Field First
-
+ Donje polje prvo
-
+ Invalid
- Nevažeće
+ NevažećeKeyframeNavigator
-
+ Enable Keyframes
-
+ Omogući ključne kadroveKeyframeView
-
+ Linear
-
+ Linearno
-
+ Bezier
-
+ Bezier
-
+ Hold
-
+ DržiLabelSlider
-
-
+
+ Set Value
-
+ Odredi vrijednost
-
-
+
+ New value:
-
+ Nova vrijednost:LoadDialog
-
+ Loading...
-
+ Učitavanje...
-
+ Loading '%1'...
-
+ Učitavanje "%1"...
-
+ Cancel
-
+ PrekiniLoadThread
-
+ Version Mismatch
-
+ Verzije se ne poklapaju
-
+ This project was saved in a different version of Olive and may not be fully compatible with this version. Would you like to attempt loading it anyway?
-
+ Ovaj projekat je bio spašen u drugačijoj verziji Olive-a i moguće je da nije u potpunosti kompatibilan sa ovom verzijom. Da li još uvijek želite probati učitati projekat?
-
+ Invalid Clip Link
-
+ Nevažeća veza snimke
-
+ This project contains an invalid clip link. It may be corrupt. Would you like to continue loading it?
-
+ Ovaj projekat sadrži nevažeću vezu snimke. Moguće je da je koruptiran. Da li biste htjeli da ga nastavite učitavati?
-
+ %1 - Line: %2 Col: %3
-
+ %1 - Red: %2 Kolona: %3
-
+ User aborted loading
-
+ Korisnik je prekinuo učitavanje
-
+ XML Parsing Error
-
+ Greška u parsiranju XML-a
-
+ Couldn't load '%1'. %2
-
+ "%1": %2 se nije moglo učitati
-
+ Project Load Error
-
+ Greška pri učitavanju projekta
-
+ Error loading project: %1
-
+ Greška pri učitavanju projekta: %1MainWindow
-
+ Welcome to %1Dobrodišli u %1
- Auto-recovery
- Automatski oporavak
+ Automatski oporavak
- Olive didn't close properly and an autorecovery file was detected. Would you like to open it?
- Olive se nije pravilno zatvorio i datoteka za automatsko obnavljanje je primjećena. Da li želite da ju otvorite?
+ Olive se nije pravilno zatvorio i datoteka za automatsko obnavljanje je primjećena. Da li želite da ju otvorite?
-
- &Project
-
-
-
-
- &Sequence
-
-
-
-
- &Folder
-
-
-
-
- Set In Point
-
-
-
-
- Set Out Point
-
-
-
-
- Reset In Point
-
-
-
-
- Reset Out Point
-
-
-
-
- Clear In/Out Point
-
-
-
-
- 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
- &Reži
+ &Reži
-
- Cop&y
-
-
-
- &Paste
- &Zalijepi
+ &Zalijepi
-
- 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
-
+ Uređivač grafikona
-
+ 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
- Zapis za debugiranje
+ Zapis za debugiranje
-
+ &About...
-
+ <untitled>
- <neimenovano>
-
-
-
- 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
-
+ <neimenovano>Marker
-
+ Set Marker
-
+ Set clip marker name:
-
+ Set sequence marker name:
@@ -1502,52 +1352,52 @@
Media
-
+ New Folder
-
+ Name:
-
+ Filename:
-
+ Video Dimensions:
-
+ Frame Rate:
- Okvirna stopa:
+ Okvirna stopa:
-
+ %1 field(s) (%2 frame(s))
-
+ Interlacing:
-
+ Audio Frequency:
-
+ Audio Channels:
-
+ Name: %1
Video Dimensions: %2x%3
Frame Rate: %4
@@ -1556,17 +1406,17 @@ Audio Layout: %6
-
+ Name
-
+ Duration
-
+ Rate
@@ -1574,27 +1424,27 @@ Audio Layout: %6
MediaPropertiesDialog
-
+ "%1" Properties
-
+ Tracks:
-
+ Video %1: %2x%3 %4FPS
-
+ Audio %1: %2Hz %3
-
+ %n channel(s)
@@ -1603,163 +1453,354 @@ Audio Layout: %6
-
+ Conform to Frame Rate:
-
+ Alpha is Premultiplied
-
+ Auto (%1)
-
+ Interlacing:
-
+ Name:
+
+ MenuHelper
+
+
+ &Project
+
+
+
+
+ &Sequence
+
+
+
+
+ &Folder
+
+
+
+
+ Set In Point
+
+
+
+
+ Set Out Point
+
+
+
+
+ Reset In Point
+
+
+
+
+ Reset Out Point
+
+
+
+
+ Clear In/Out Point
+
+
+
+
+ Add Default Transition
+
+
+
+
+ Link/Unlink
+
+
+
+
+ Enable/Disable
+
+
+
+
+ Nest
+
+
+
+
+ Cu&t
+ &Reži
+
+
+
+ Cop&y
+
+
+
+
+ &Paste
+ &Zalijepi
+
+
+
+ Paste Insert
+
+
+
+
+ Duplicate
+
+
+
+
+ Delete
+
+
+
+
+ Ripple Delete
+
+
+
+
+ Split
+
+
+
+
+ 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):
+
+
+NewSequenceDialog
-
+ Editing "%1"
-
+ New Sequence
-
+ Preset:
-
+ Film 4K
-
+ TV 4K (Ultra HD/2160p)
-
+ 1080p
-
+ 720p
-
+ 480p
-
+ 360p
-
+ 240p
-
+ 144p
-
+ NTSC (480i)
-
+ PAL (576i)
-
+ Custom
-
+ Video
- Video
+ Video
-
+ Width:
- Širina:
+ Širina:
-
+ Height:
- Visina:
+ Visina:
-
+ Frame Rate:
- Okvirna stopa:
+ Okvirna stopa:
-
+ Pixel Aspect Ratio:
-
+ Square Pixels (1.0)
-
+ Interlacing:
-
+ None (Progressive)
-
+ Nema (progresivno)
-
+ Audio
- Audio
+ Audio
-
+ Sample Rate:
-
+ Name:
+
+ OliveGlobal
+
+
+ Olive Project %1
+
+
+
+
+ Auto-recovery
+ Automatski oporavak
+
+
+
+ Olive didn't close properly and an autorecovery file was detected. Would you like to open it?
+ Olive se nije pravilno zatvorio i datoteka za automatsko obnavljanje je primjećena. Da li želite da ju otvorite?
+
+
+
+ Open Project...
+
+
+
+
+ Missing recent project
+
+
+
+
+ The project '%1' no longer exists. Would you like to remove it from the recent projects list?
+
+
+
+
+ Save Project As...
+
+
+
+
+ Unsaved Project
+
+
+
+
+ This project has changed since it was last saved. Would you like to save it before closing?
+
+
+
+
+ No active sequence
+
+
+
+
+ Please open the sequence you wish to export.
+
+
+
+
+ Missing Project File
+
+
+
+
+ Specified project '%1' does not exist.
+
+
+PanEffect
-
+ Pan
@@ -1767,7 +1808,7 @@ Audio Layout: %6
Playback
-
+ Generating Proxy: %1%
@@ -1775,283 +1816,273 @@ 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
- Mono
+ Mono
-
+ Stereo
- Stereo
+ Stereo
-
+ Effect Textbox Lines:
-
+ Thumbnail Resolution:
-
+ Waveform Resolution:
-
+ Delete Previews
-
+ Use Software Fallbacks When Possible
-
+ General
-
+ Behavior
-
+ 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
- Audio
+ Audio
-
+ Search for action or shortcut
-
+ Action
-
+ Shortcut
-
+ Import
-
+ Export
-
+ Reset Selected
-
+ Reset All
-
+ Keyboard
@@ -2059,12 +2090,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
@@ -2072,94 +2103,94 @@ Seek quickly (may briefly show inaccurate frames when seeking - doesn't aff
Project
-
+ Search media, markers, etc.
-
+ Project
-
+ Sequence
-
+ Replace '%1'
-
-
+
+ All Files
-
-
+
+ No active sequence
-
+ No sequence is active, please open the sequence you want to replace clips from.
-
+ Active sequence selected
-
+ You cannot insert a sequence into itself, so no clips of this media would be in this sequence.
-
+ Rename '%1'
-
+ Enter new name:
-
+ Delete media in use?
-
+ The media '%1' is currently used in '%2'. Deleting it will remove all instances in the sequence. Are you sure you want to do this?
-
+ Skip
-
+ Image sequence detected
-
+ The file '%1' appears to be part of an image sequence. Would you like to import it as such?
-
+ Import media...
-
+ No sequence is active, please open the sequence you want to delete clips from.
@@ -2167,77 +2198,77 @@ Seek quickly (may briefly show inaccurate frames when seeking - doesn't aff
ProxyDialog
-
+ Create Proxy
-
+ Proxy
-
+ Dimensions:
-
+ Same Size as Source
-
+ Half Resolution (1/2)
-
+ Quarter Resolution (1/4)
-
+ Eighth Resolution (1/8)
-
+ Sixteenth Resolution (1/16)
-
+ Format:
- Format:
+ Format:
-
+ ProRes HQ
-
+ Location:
-
+ Same as Source (in "%1" folder)
-
+ Proxy file exists
-
+ The file "%1" already exists. Do you wish to replace it?
-
+ Custom Location
@@ -2245,7 +2276,7 @@ Seek quickly (may briefly show inaccurate frames when seeking - doesn't aff
ProxyGenerator
-
+ Finished generating proxy for "%1"
@@ -2253,67 +2284,67 @@ Seek quickly (may briefly show inaccurate frames when seeking - doesn't aff
ReplaceClipMediaDialog
-
+ Replace clips using "%1"
-
+ Select which media you want to replace this media's clips with:
-
+ Keep the same media in-points
-
+ Replace
-
+ Cancel
-
+ Prekini
-
+ No media selected
-
+ Please select a media to replace with or click 'Cancel'.
-
+ Same media selected
-
+ You selected the same media that you're replacing. Please select a different one or click 'Cancel'.
-
+ Folder selected
-
+ You cannot replace footage with a folder.
-
+ Active sequence selected
-
+ You cannot insert a sequence into itself.
@@ -2321,7 +2352,7 @@ Seek quickly (may briefly show inaccurate frames when seeking - doesn't aff
Sequence
-
+ %1 (copy)
@@ -2329,17 +2360,17 @@ Seek quickly (may briefly show inaccurate frames when seeking - doesn't aff
ShakeEffect
-
+ Intensity
-
+ Rotation
-
+ Frequency
@@ -2347,37 +2378,37 @@ Seek quickly (may briefly show inaccurate frames when seeking - doesn't aff
SolidEffect
-
+ Type
-
+ Tip
-
+ Solid Color
-
+ SMPTE Bars
-
+ Checkerboard
-
+ Opacity
-
+ Color
-
+ Checkerboard Size
@@ -2385,137 +2416,137 @@ Seek quickly (may briefly show inaccurate frames when seeking - doesn't aff
SourcesCommon
-
+ Import...
-
+ New
-
+ View
-
+ Tree View
-
+ Icon View
-
+ Show Toolbar
-
+ Show Sequences
-
+ Replace/Relink Media
-
+ Reveal in Explorer
-
+ Reveal in Finder
-
+ Reveal in File Manager
-
+ Replace Clips Using This Media
-
+ Create Sequence With This Media
-
+ Duplicate
-
+ Delete All Clips Using This Media
-
+ Proxy
-
+ Generating proxy: %1% complete
-
+ Create/Modify Proxy
-
+ Create Proxy
-
+ Modify Proxy
-
+ Restore Original
-
+ Delete
-
+ Properties...
-
+ Replace Media
-
+ You dropped a file onto '%1'. Would you like to replace it with the dropped file?
-
+ Delete proxy
-
+ Would you like to delete the proxy file "%1" as well?
@@ -2523,37 +2554,37 @@ Seek quickly (may briefly show inaccurate frames when seeking - doesn't aff
SpeedDialog
-
+ Speed/Duration
-
+ Speed:
-
+ Frame Rate:
- Okvirna stopa:
+ Okvirna stopa:
-
+ Duration:
-
+ Reverse
-
+ Maintain Audio Pitch
-
+ Ripple Changes
@@ -2561,7 +2592,7 @@ Seek quickly (may briefly show inaccurate frames when seeking - doesn't aff
TextEditDialog
-
+ Edit Text
@@ -2569,113 +2600,113 @@ Seek quickly (may briefly show inaccurate frames when seeking - doesn't aff
TextEffect
-
+ Text
-
+ Font
-
+ Size
-
+ Color
-
+ Alignment
-
+ Left
-
-
+
+ Center
-
+ Right
-
+ Justify
-
+ Top
-
+ Bottom
-
+ Word Wrap
-
+ Outline
-
+ Outline Color
-
+ Outline Width
-
+ Shadow
-
+ Shadow Color
-
+ Shadow Distance
-
+ Shadow Softness
-
+ Shadow Opacity
-
+ Sample Text
-
+ &Edit Text
@@ -2683,47 +2714,47 @@ Seek quickly (may briefly show inaccurate frames when seeking - doesn't aff
TimecodeEffect
-
+ Timecode
-
+ Sequence
-
+ Media
-
+ Scale
-
+ Color
-
+ Background Color
-
+ Background Opacity
-
+ Offset
-
+ Prepend
@@ -2731,147 +2762,152 @@ Seek quickly (may briefly show inaccurate frames when seeking - doesn't aff
Timeline
-
+
+ Nested Sequence
+
+
+
+ Timeline:
-
+ <none>
-
+ 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.
@@ -2879,7 +2915,7 @@ Seek quickly (may briefly show inaccurate frames when seeking - doesn't aff
TimelineHeader
-
+ Center Timecodes
@@ -2887,77 +2923,62 @@ Seek quickly (may briefly show inaccurate frames when seeking - doesn't aff
TimelineWidget
-
+ &Undo
-
+ &Redo
-
+ C&ut
-
+ Cop&y
-
+ &Paste
- &Zalijepi
+ &Zalijepi
-
+ R&ipple Delete
-
+ Sequence Settings
-
+ &Speed/Duration
-
+ Auto-s&cale
-
- Enable/Disable
-
-
-
-
- Link/Unlink
-
-
-
-
- &Nest
-
-
-
-
+ &Reveal in Project
-
+ R&ename
-
+ %1
Start: %2
End: %3
@@ -2965,57 +2986,57 @@ Duration: %4
-
+ Rename '%1'
-
+ Rename multiple clips
-
+ Enter a new name for this clip:
-
+ Error
-
+ Couldn't locate media wrapper for sequence.
-
+ Title
-
+ Solid Color
-
+ Bars
-
+ Tone
-
+ Noise
-
+ Duration:
@@ -3023,180 +3044,180 @@ Duration: %4
ToneEffect
-
+ Type
-
+ Tip
-
+ Frequency
-
+ Amount
- Količina
+ Količina
-
+ Mix
- Miks
+ MiksTransformEffect
-
+ Position
-
+ Scale
-
+ Uniform Scale
-
+ Rotation
-
+ Anchor Point
-
+ Opacity
-
+ Blend Mode
-
+ Normal
-
+ Darken
-
+ Multiply
-
+ Color Burn
-
+ Linear Burn
-
+ Lighten
-
+ Screen
-
+ Color Dodge
-
+ Linear Dodge (Add)
-
+ Overlay
-
+ Soft Light
-
+ Hard Light
-
+ Vivid Light
-
+ Linear Light
-
+ Pin Light
-
+ Hard Mix
-
+ Difference
-
+ Exclusion
-
+ Reflect
-
+ Substract
-
+ Average
-
+ Glow
-
+ Negation
-
+ Phoenix
@@ -3204,7 +3225,7 @@ Duration: %4
Transition
-
+ Length
@@ -3212,64 +3233,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
@@ -3277,17 +3298,17 @@ Duration: %4
Viewer
-
+ Sequence Viewer
-
+ Media Viewer
-
+ (none)
@@ -3295,57 +3316,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:
@@ -3353,7 +3374,7 @@ Duration: %4
ViewerWindow
-
+ Exit Fullscreen
@@ -3361,12 +3382,12 @@ Duration: %4
VoidEffect
-
+ (unknown)
-
+ Missing Effect
@@ -3374,7 +3395,7 @@ Duration: %4
VolumeEffect
-
+ Volume
@@ -3382,12 +3403,12 @@ Duration: %4
transition
-
+ Invalid transition
-
+ No candidate for transition '%1'. This transition may be corrupt. Try reinstalling it or Olive.
diff --git a/ts/olive_fr.ts b/ts/olive_fr.ts
index 699ac8de4..0e61d9c5a 100644
--- a/ts/olive_fr.ts
+++ b/ts/olive_fr.ts
@@ -6,12 +6,12 @@
Olive is a non-linear video editor. This software is free and protected by the GNU GPL.
-
+ Olive est un logiciel de montage non-linéaire. Ce logiciel est libre et protégé par la licence GNU GPL.Olive Team is obliged to inform users that Olive source code is available for download from its website.
-
+ L'équipe d'Olive vous informe que le code source d'Olive est disponible au téléchargement sur son site Web.
@@ -19,7 +19,7 @@
Search for action...
-
+ Rechercher une action…
@@ -27,12 +27,12 @@
Advanced Video Settings
-
+ Paramètres vidéo avancésPixel Format:
-
+ Format de pixel :
@@ -40,12 +40,12 @@
Audio
-
+ AudioRecording
-
+ Enregistrement audio
@@ -53,12 +53,12 @@
Amount
-
+ QuantitéMix
-
+ Mélanger
@@ -66,17 +66,17 @@
Invalid
-
+ InvalideMono
-
+ MonoStereo
-
+ Stéréo
@@ -84,7 +84,7 @@
<untitled>
-
+ <Sans titre>
@@ -92,7 +92,7 @@
Set Color
-
+ Définir la couleur
@@ -100,27 +100,27 @@
Top Left
-
+ En haut à gaucheTop Right
-
+ En haut à droiteBottom Left
-
+ En bas à gaucheBottom Right
-
+ En bas à droitePerspective
-
+ Perspective
@@ -128,7 +128,7 @@
Debug Log
-
+ Journal de débogage
@@ -137,22 +137,22 @@
Welcome to Olive!
-
+ Bienvenue dans Olive !Olive is a free open-source video editor released under the GNU GPL. If you have paid for this software, you have been scammed.
-
+ Olive est un logiciel libre et open-source distribué sous la licence GNU GPL. Si vous avez payé pour ce logiciel, vous avez été victime d'un scam.This software is currently in ALPHA which means it is unstable and very likely to crash, have bugs, and have missing features. We offer no warranty so use at your own risk. Please report any bugs or feature requests at %1
-
+ Ce logiciel est actuellement en ALPHA, ce qui signifie qu'il a de grandes chances de planter, d'avoir des bugs ou de manquer de certaines fonctions. Nous n'offrons aucune garantie, utilisez-le à vos propres risques. Merci de nous rapporter tout bug ou demande d'ajout d'une fonctionnalité à %1Thank you for trying Olive and we hope you enjoy it!
-
+ Merci d'utiliser Olive, nous espérons que vous l'apprécierez !
@@ -160,89 +160,89 @@
Invalid effect
-
+ Effet invalideNo candidate for effect '%1'. This effect may be corrupt. Try reinstalling it or Olive.
-
+ Aucun candidat pour l'effet '%1'. C'est effet est peut-être corrompu. Essayez de le réinstaller, ou de réinstaller Olive.Cu&t
-
+ &Couper&Copy
-
+ Cop&ierMove &Up
-
+ Déplacer vers le &hautMove &Down
-
+ Déplacer vers le &basD&elete
-
+ &SupprimerLoad Settings From File
-
+ Charger les paramètresSave Settings to File
-
+ Enregistrer les paramètresSave Effect Settings
-
+ Enregistrer les paramètres d'effetEffect XML Settings %1
-
+ Paramètres d'effet XML %1Save Settings Failed
-
+ L'enregistrement des paramètres a échouéFailed to open "%1" for writing.
-
+ Impossible d'écrire dans "%1".Load Effect Settings
-
+ Charger les paramètres d'effetLoad Settings Failed
-
+ Le chargement des paramètres a échouéFailed to open "%1" for reading.
-
+ Impossible de lire "%1".This settings file doesn't match this effect.
-
+ Ce fichier de paramètre ne correspond pas à cet effet.
@@ -250,47 +250,47 @@
Effects:
-
+ Effets : &Paste
-
+ C&ollerAdd Video Effect
-
+ Ajouter un effet vidéoVIDEO EFFECTS
-
+ EFFETS VIDÉOAdd Video Transition
-
+ Ajouter une transition vidéoAdd Audio Effect
-
+ Ajouter un effet audioAUDIO EFFECTS
-
+ EFFETS AUDIOAdd Audio Transition
-
+ Ajouter une transition audio(Multiple clips selected)
-
+ (Clips multiples sélectionnés)
@@ -298,12 +298,12 @@
Disable Keyframes
-
+ Désactiver les images-clésDisabling keyframes will delete all current keyframes. Are you sure you want to do this?
-
+ Désactiver les images-clés supprimera toutes les images-clés courantes. Êtes-vous sûr⋅e de vouloir cela ?
@@ -311,7 +311,7 @@
File:
-
+ Fichier :
@@ -319,93 +319,93 @@
Export "%1"
-
+ Exporter "%1"Unknown codec name %1
-
+ Nom de codec inconnu %1Export Failed
-
+ L'export a échouéExport failed - %1
-
+ Export échoué - %1Invalid dimensions
-
+ Dimensions invalidesExport width and height must both be even numbers/divisible by 2.
-
+ La largeur et la hauteur d'export doivent être des nombres pairs/divisibles par 2.Invalid codec
-
+ Codec invalideCouldn't determine output parameters for the selected codec. This is a bug, please contact the developers.
-
+ Impossible de déterminer les paramètres de sortie pour le codec sélectionné. Ceci est un bug, merci de contacter les développeurs.Invalid format
-
+ Format invalideCouldn't determine output format. This is a bug, please contact the developers.
-
+ Impossible de déterminer le format de sortie. Ceci est un bug, merci de contacter les développeurs.Export Media
-
+ Exporter le médiaQuality-based (Constant Rate Factor)
-
+ Qualitatif (Constant Rate Factor)Constant Bitrate
-
+ Débit binaire constantInvalid Codec
-
+ Codec invalideFailed to find a suitable encoder for this codec. Export will likely fail.
-
+ Impossible de trouver un encodeur approprié pour ce codec. L'export risque de planter.Failed to find pixel format for this encoder. Export will likely fail.
-
+ Impossible de trouver un format de pixel pour cet encodeur. L'export risque de planter.Bitrate (Mbps):
-
+ Débit binaire (Mbps) :Quality (CRF):
-
+ Qualité (CRF) :
@@ -415,78 +415,83 @@
17-18 = visually lossless (compressed, but unnoticeable)
23 = high quality
51 = lowest quality possible
-
+ Facteur de qualité :
+
+0 = sans perte
+17-18 = visuellement sans perte (compressé, mais imperceptible)
+23 = haute qualité
+51 = qualité la plus basseTarget File Size (MB):
-
+ Taille du fichier cible (Mo) :Format:
-
+ Format :Range:
-
+ Plage :Entire Sequence
-
+ Séquence entièreIn to Out
-
+ Du point d'entrée au point de sortieVideo
-
+ VidéoCodec:
-
+ Codec :Width:
-
+ Largeur :Height:
-
+ Hauteur :Frame Rate:
-
+ Images par seconde :Compression Type:
-
+ Type de compression :Advanced
-
+ AvancéSampling Rate:
-
+ Taux d'échantillonnage :Bitrate (Kbps/CBR):
-
+ Débit binaire (Kbps/CBR) :
@@ -494,87 +499,87 @@
failed to send frame to encoder (%1)
-
+ Échec de l'envoi d'une image vers l'encodeur (%1)failed to receive packet from encoder (%1)
-
+ Échec de la réception d'un paquet depuis l'encodeur (%1)could not video encoder for %1
-
+ Impossible d'encoder la vidéo pour %1could not allocate video stream
-
+ impossible d'allouer le flux vidéocould not allocate video encoding context
-
+ impossible d'allouer le contexte d'encodage vidéocould not open output video encoder (%1)
-
+ impossible d'ouvrir l'encodeur vidéo de sortie (%1)could not copy video encoder parameters to output stream (%1)
-
+ impossible de copier les paramètres d'encodage vidéo vers le flux de sortie (%1)could not audio encoder for %1
-
+ impossible d'encoder l'audio pour %1could not allocate audio stream
-
+ impossible d'allouer le flux audiocould not allocate audio encoding context
-
+ impossible d'allouer le contexte d'encodage audiocould not open output audio encoder (%1)
-
+ impossible d'ouvrir l'encodeur audio de sortie (%1)could not copy audio encoder parameters to output stream (%1)
-
+ impossible de copier les paramètres d'encodage audio vers le flux de sortie (%1)could not allocate audio buffer (%1)
-
+ impossible d'allouer le buffer audio (%1)could not create output format context
-
+ impossible de créer le contexte du format de sortiecould not open output file (%1)
-
+ impossible d'ouvrir le fichier de sortie (%1)could not write output file header (%1)
-
+ impossible d'écrire l'en-tête du fichier de sortie (%1)could not write output file trailer (%1)
-
+ impossible d'écrire le trailer du fichier (%1)
@@ -582,17 +587,17 @@
Type
-
+ TypeFill Left with Right
-
+ Remplir la gauche avec la droiteFill Right with Left
-
+ Remplir la droite avec la gauche
@@ -600,22 +605,22 @@
Failed to load Frei0r plugin "%1": %2
-
+ Impossible de charger le plugin Frei0r "%1": %2NOTE: You can't load 32-bit Frei0r 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 : Vous ne pouvez pas charger de plugin Frei0r 32-bit dans la version 64-bit d'Olive. Essayez de trouver une version 64-bit de ce plugin ou basculez vers Olive 32-bit.NOTE: You can't load 64-bit Frei0r 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.
-
+ NOTE : Vous ne pouvez pas charger de plugin Frei0r 64-bit dans la version 32-bit d'Olive. Essayez de trouver une version 32-bit de ce plugin ou basculez vers Olive 64-bit.Error loading Frei0r plugin
-
+ Erreur durant le chargement du plugin Frei0r
@@ -623,22 +628,22 @@
Graph Editor
-
+ Éditeur de graphesLinear
-
+ LinéaireBezier
-
+ BézierHold
-
+ Maintenir
@@ -646,17 +651,17 @@
Zoom to Selection
-
+ Zoomer sur la sélectionZoom to Show All
-
+ Zoomer pour tout montrerReset View
-
+ Réinitialiser la vue
@@ -664,22 +669,22 @@
None (Progressive)
-
+ Aucun (Progressif)Top Field First
-
+ Trame supérieure en premierBottom Field First
-
+ Trame inférieure en premierInvalid
-
+ Invalide
@@ -687,7 +692,7 @@
Enable Keyframes
-
+ Activer les images-clés
@@ -695,17 +700,17 @@
Linear
-
+ LinéaireBezier
-
+ BézierHold
-
+ Maintenir
@@ -714,13 +719,13 @@
Set Value
-
+ Définir la valeurNew value:
-
+ Nouvelle valeur :
@@ -728,17 +733,17 @@
Loading...
-
+ Cargement…Loading '%1'...
-
+ Chargement '%1'…Cancel
-
+ Annuler
@@ -746,52 +751,52 @@
Version Mismatch
-
+ Incompatibilité de versionThis project was saved in a different version of Olive and may not be fully compatible with this version. Would you like to attempt loading it anyway?
-
+ Ce projet a été enregistré avec une version différente d'Olive et peut ne pas être totalement compatible avec celle-ci. Voulez-vous essayer de l'ouvrir malgré tout ?Invalid Clip Link
-
+ Lien du clip invalideThis project contains an invalid clip link. It may be corrupt. Would you like to continue loading it?
-
+ Ce projet contient un lien de clip invalide. Il peut être corrompu. Voulez-vous l'ouvrir malgré tout ?%1 - Line: %2 Col: %3
-
+ %1 - Ligne : %2 Col. : %3User aborted loading
-
+ L'utilisateur a abandonné le chargementXML Parsing Error
-
+ Erreur de parsage XMLCouldn't load '%1'. %2
-
+ Impossible de charger '%1'. %2Project Load Error
-
+ Erreur dans le chargement du projetError loading project: %1
-
+ Erreur lors du chargement du projet : %1
@@ -799,677 +804,679 @@
Auto-recovery
-
+ Récupération automatiqueOlive didn't close properly and an autorecovery file was detected. Would you like to open it?
-
+ Olive ne s'est pas fermé convenablement et un fichier de récupépration a été détecté. Souhaitez-vous l'ouvrir ?&Project
-
+ &Projet&Sequence
-
+ &Séquence&Folder
-
+ &DossierSet In Point
-
+ Définir le point d'entréeSet Out Point
-
+ Définir le point de sortieWelcome to %1
-
+ Bienvenue à %1Reset In Point
-
+ Réinitialiser le point d'entréeReset Out Point
-
+ Réinitialiser le point de sortieClear In/Out Point
-
+ Effacer le point d'entrée/de sortieNo active sequence
-
+ Pas de séquence activePlease open the sequence you wish to export.
-
+ Veuillez ouvrir la séquence que vous souhaitez exporter.Save Project As...
-
+ Enregistrer sous…Unsaved Project
-
+ Projet non-sauvegardéThis project has changed since it was last saved. Would you like to save it before closing?
-
+ Ce projet a été modifié depuis la dernière sauvegarde. Souhaitez-vous l'enregistrer avant de fermer ?&File
-
+ &Fichier&New
-
+ &Nouveau&Open Project
-
+ &Ouvrir un projetClear Recent List
-
+ Nettoyer la liste des projets récentsOpen Recent
-
+ Ouvrir un projet récent&Save Project
-
+ &Enregistrer le projetSave Project &As
-
+ Enregistrer le projet &sous&Import...
-
+ &Importer…&Export...
-
+ &Exporter…E&xit
-
+ &Quitter&Edit
-
+ &Édition&Undo
-
+ &AnnulerRedo
-
+ RétablirCu&t
-
+ &CouperCop&y
-
+ Cop&ier&Paste
-
+ C&ollerPaste Insert
-
+ Coller et InsérerDuplicate
-
+ DupliquerDelete
-
+ SupprimerRipple Delete
-
+ Supprimer et raccorderSplit
-
+ SéparerSelect &All
-
+ Sélectionner &toutDeselect All
-
+ Tout désélectionnerAdd Default Transition
-
+ Ajouter la transition par défautLink/Unlink
-
+ Lier/DélierEnable/Disable
-
+ Activer/DésactiverNest
-
+ ImbriquerRipple to In Point
-
+ Not literal, but it says what it is
+ Propager au point d'entréeRipple to Out Point
-
+ Not literal, but it says what it is
+ Propager au point de sortieEdit to In Point
-
+ Éditer comme point d'entréeEdit to Out Point
-
+ Éditer comme point de sortieDelete In/Out Point
-
+ Supprimer les points d'entrée/de sortieRipple Delete In/Out Point
-
+ Supprimer et raccorder au point d'entrée/de sortieSet/Edit Marker
-
+ Définir/Éditer un marqueur&View
-
+ &AffichageZoom In
-
+ ZommerZoom Out
-
+ DézoomerIncrease Track Height
-
+ Augmenter la hauteur de pisteDecrease Track Height
-
+ Diminuer la hauteur de pisteToggle Show All
-
+ Vue d'ensembleTrack Lines
-
+ Contours des pistesRectified Waveforms
-
+ Formes d'onde ajustéesFrames
-
+ ImagesDrop Frame
-
+ Drop FrameNon-Drop Frame
-
+ Non-Drop FrameMilliseconds
-
+ MillisecondesTitle/Action Safe Area
-
+ Zone sûre de titre/d'actionOff
-
+ DésactivéeDefault
-
+ Par défaut4:3
-
+ 4:316:9
-
+ 16:9Custom
-
+ PersonnaliséeFull Screen
-
+ Plein-écranFull Screen Viewer
-
+ Lecteur en plein écran&Playback
-
+ &LectureGo to Start
-
+ Aller au débutPrevious Frame
-
+ Image précédentePlay/Pause
-
+ Lire/PausePlay In to Out
-
+ Lire entre les points d'entrée et de sortieNext Frame
-
+ Image suivanteGo to End
-
+ Aller à la finGo to Previous Cut
-
+ Aller au point d'édition précédentGo to Next Cut
-
+ Aller au point d'édition suivantGo to In Point
-
+ Aller au point d'entréeGo to Out Point
-
+ Aller au point de sortieShuttle Left
-
+ Jouer vers la gaucheShuttle Stop
-
+ ArrêterShuttle Right
-
+ Jouer vers la droiteLoop
-
+ Boucle&Window
-
+ &FenêtreProject
-
+ ProjetEffect Controls
-
+ Propriétés des effetsTimeline
-
+ Ligne du tempsGraph Editor
-
+ Éditeur de graphesMedia Viewer
-
+ Lecteur de médiaSequence Viewer
-
+ Lecteur de séquenceMaximize Panel
-
+ Agrandir le panneauReset to Default Layout
-
+ Restaurer la disposition par défaut&Tools
-
+ &OutilsPointer Tool
-
+ CurseurEdit Tool
-
+ ÉditerRipple Tool
-
+ PropagationRazor Tool
-
+ CutterSlip Tool
-
+ Déplacer dessousSlide Tool
-
+ Déplacer dessusHand Tool
-
+ MainTransition Tool
-
+ TransitionEnable Snapping
-
+ Autoriser le magnétismeSelecting Also Seeks
-
+ Sélectionner déplace la tête de lectureEdit Tool Also Seeks
-
+ Éditer déplace la tête de lectureEdit Tool Selects Links
-
+ Éditer sélectionne les liensSeek Also Selects
-
+ Sélectionner avec la tête de lectureSeek to the End of Pastes
-
+ Placer la tête de lecture après le collageScroll Wheel Zooms
-
+ Zoomer avec la moletteEnable Drag Files to Timeline
-
+ Autoriser le dépôt de fichier sur la ligne de tempsAuto-Scale By Default
-
+ Échelle automatique par défautEnable Seek to Import
-
+ Déplacer la tête de lecture à l'importAudio Scrubbing
-
+ Lire l'audio au déplacement de la tête de lectureEnable Drop on Media to Replace
-
+ Déposer sur un média pour le remplacerEnable Hover Focus
-
+ Activer le focus au survolAsk For Name When Setting Marker
-
+ Demander un nom à la création d'un marqueurNo Auto-Scroll
-
+ Pas de défilement automatiquePage Auto-Scroll
-
+ Défilement paginéSmooth Auto-Scroll
-
+ Défilement douxPreferences
-
+ PréférencesClear Undo
-
+ Nettoyer la pile d'annulation&Help
-
+ &AideA&ction Search
-
+ Chercher une a&ctionDebug Log
-
+ Journal de débogage&About...
-
+ &À propos…<untitled>
-
+ <Sans titre>Open Project...
-
+ Ouvrir un projet…Missing recent project
-
+ Projet récent manquantThe project '%1' no longer exists. Would you like to remove it from the recent projects list?
-
+ Le projet '%1' n'existe plus. Voulez-vous le retirer de la liste des projets récents ?Invalid aspect ratio
-
+ Ratio d'image invalideThe aspect ratio '%1' is invalid. Please try again.
-
+ Le ratio d'image '%1' est invalide. Merci de réessayer à nouveau.Enter custom aspect ratio
-
+ Entrez un ratio d'image personnaliséEnter the aspect ratio to use for the title/action safe area (e.g. 16:9):
-
+ Entrez le ratio de la zone sûre de titre/d'action (ex: 16:9) :Nested Sequence
-
+ Séquence imbriquée
@@ -1477,17 +1484,17 @@
Set Marker
-
+ Définir un marqueurSet clip marker name:
-
+ Définir le nom du marqueur de clip :Set sequence marker name:
-
+ Définir le nom du marqueur de séquence :
@@ -1495,47 +1502,47 @@
New Folder
-
+ Nouveau dossierName:
-
+ Nom :Filename:
-
+ Nom de fichier :Video Dimensions:
-
+ Dimensions de la vidéo :Frame Rate:
-
+ Images par seconde :%1 field(s) (%2 frame(s))
-
+ %1 trame(s) (%2 image(s))Interlacing:
-
+ Entrelacement :Audio Frequency:
-
+ Fréquence audio :Audio Channels:
-
+ Canaux audio :
@@ -1544,22 +1551,26 @@ Video Dimensions: %2x%3
Frame Rate: %4
Audio Frequency: %5
Audio Layout: %6
-
+ Nom : %1
+Dimensions vidéo : %2x%3
+Images par seconde : %4
+Fréquence audio: %5
+Canaux audio : %6Name
-
+ NomDuration
-
+ DuréeRate
-
+ Images par seconde
@@ -1567,55 +1578,55 @@ Audio Layout: %6
"%1" Properties
-
+ "%1" PropriétésTracks:
-
+ Pistes :Video %1: %2x%3 %4FPS
-
+ Vidéo %1 : %2×%3 %4 i/sAudio %1: %2Hz %3
-
+ Audio %1 : %2 Hz %3%n channel(s)
-
-
-
+
+ %n canal
+ %n canauxConform to Frame Rate:
-
+ Conformer aux images par seconde :Alpha is Premultiplied
-
+ Le canal alpha est prémultipliéAuto (%1)
-
+ Auto (%1)Interlacing:
-
+ Entrelacement :Name:
-
+ Nom :
@@ -1623,127 +1634,127 @@ Audio Layout: %6
Editing "%1"
-
+ Édition "%1"New Sequence
-
+ Nouvelle séquencePreset:
-
+ Préréglage :Film 4K
-
+ Film 4KTV 4K (Ultra HD/2160p)
-
+ TV 4K (Ultra HD/2160p)1080p
-
+ 1080p720p
-
+ 720p480p
-
+ 480p360p
-
+ 360p240p
-
+ 240p144p
-
+ 144pNTSC (480i)
-
+ NTSC (480i)PAL (576i)
-
+ PAL (576i)Custom
-
+ PersonnaliséVideo
-
+ VidéoWidth:
-
+ Largeur :Height:
-
+ Hauteur :Frame Rate:
-
+ Images par seconde :Pixel Aspect Ratio:
-
+ Ratio des pixels :Square Pixels (1.0)
-
+ Pixels carré (1,0)Interlacing:
-
+ Entrelacement :None (Progressive)
-
+ Aucun (Progressif)Audio
-
+ AudioSample Rate:
-
+ Taux d'échantillonnage : Name:
-
+ Nom :
@@ -1751,7 +1762,7 @@ Audio Layout: %6
Pan
-
+ Panoramique
@@ -1759,7 +1770,7 @@ Audio Layout: %6
Generating Proxy: %1%
-
+ Génération du proxy : %1%
@@ -1767,283 +1778,285 @@ Audio Layout: %6
Preferences
-
+ PréférencesInvalid CSS File
-
+ Fichier CSS invalideCSS file '%1' does not exist.
-
+ Le fichier CSS '%1' n'existe pas.Warning
-
+ AvertissementSome changed settings will require restarting Olive to take effect
-
+ Certains paramètres modifiés nécessitent le redémarrage d'Olive pour prendre effetConfirm Reset All Shortcuts
-
+ Confirmez la réinitialisation de tous les raccourcis clavierAre you sure you wish to reset all keyboard shortcuts to their defaults?
-
+ Êtes-vous sûr⋅e de vouloir réinitialiser tous les raccourcis clavier à leur valeur par défaut ?Import Keyboard Shortcuts
-
+ Importer les raccourcis clavierError saving shortcuts
-
+ Erreur dans l'enregistrement des raccourcisFailed to open file for reading
-
+ Échec de l'ouverture du fichierExport Keyboard Shortcuts
-
+ Exporter les raccourcis clavierExport Shortcuts
-
+ Exporter les raccourcisShortcuts exported successfully
-
+ Les raccourcis ont été exporté avec succèsFailed to open file for writing
-
+ Échec de l'ouverture du fichierBrowse for CSS file
-
+ Choisir un fichier CSSDelete All Previews
-
+ Supprimer toutes les prévisualisationsAre you sure you want to delete all previews?
-
+ Êtes-vous sûr⋅e de vouloir supprimer toutes les prévisualisations ?Previews Deleted
-
+ Prévisualisations suppriméesAll previews deleted succesfully. You may have to re-open your current project for changes to take effect.
-
+ Toutes les prévisualisations ont été supprimées avec succès. Il est possible que vous deviez ré-ouvrir le projet actuel pour que les changements prennent effet.Language:
-
+ Langue :Custom CSS:
-
+ CSS personnalisé :Browse
-
+ ParcourirImage sequence formats:
-
+ Formats de séquence d'image :Audio Recording:
-
+ Enregistrement audio :Mono
-
+ MonoStereo
-
+ StéréoEffect Textbox Lines:
-
+ Lignes des boîtes de texte d'effet :Thumbnail Resolution:
-
+ Résolution des miniatures :Waveform Resolution:
-
+ Résolution des formes d'onde :Delete Previews
-
+ Supprimer les prévisualisationsUse Software Fallbacks When Possible
-
+ Utiliser les solutions de repli logicielles quand cela est possibleGeneral
-
+ GénéralBehavior
-
+ ComportementSeeking
-
+ Tête de lectureAccurate Seeking
Always show the correct frame (visual may pause briefly as correct frame is retrieved)
-
+ Recherche fidèle
+Tojours montrer l'image exacte (la prévisualisation peut se mettre en pause brièvement quand la bonne image est en cours de récupération)Fast Seeking
Seek quickly (may briefly show inaccurate frames when seeking - doesn't affect playback/export)
-
+ Recherhe rapide
+Montrer rapidement (la prévisualition peut montrer brièvement des images imprécises lors du déplacement de la tête de lecture − cela n'affecte pas la lecture et l'export)Memory Usage
-
+ Utilisation de la mémoireUpcoming Frame Queue:
-
+ File d'image à venir :frames
-
+ imagesseconds
-
+ secondesPrevious Frame Queue:
-
+ File d'image précédentes :Playback
-
+ LectureOutput Device:
-
+ Système de sortie :Default
-
+ DéfautInput Device:
-
+ Système d'entrée :Sample Rate:
-
+ Taux d'échantillonnage :Audio
-
+ AudioSearch for action or shortcut
-
+ Rechercher une action ou un raccourciAction
-
+ ActionShortcut
-
+ RaccourciImport
-
+ ImporterExport
-
+ ExporterReset Selected
-
+ Réinitialiser la sélectionReset All
-
+ Tout réinitialiserKeyboard
-
+ Clavier
@@ -2051,12 +2064,12 @@ Seek quickly (may briefly show inaccurate frames when seeking - doesn't aff
Could not open file - %1
-
+ Impossible d'ouvrir le fichier - %1Could not find stream information - %1
-
+ Impossible de trouver les informations de flux - %1
@@ -2064,94 +2077,94 @@ Seek quickly (may briefly show inaccurate frames when seeking - doesn't aff
Search media, markers, etc.
-
+ Rechercher des médias, marqueurs, etc.Project
-
+ ProjetSequence
-
+ SéquenceReplace '%1'
-
+ Remplacer '%1'All Files
-
+ Tous les fichiersNo active sequence
-
+ Pas de séquence activeNo sequence is active, please open the sequence you want to replace clips from.
-
+ Pas de séquence active, veuillez ouvrir la séquence dont vous souhaitez modifier les clips.Active sequence selected
-
+ Séquence active sélectionnéeYou cannot insert a sequence into itself, so no clips of this media would be in this sequence.
-
+ Vous ne pouvez pas insérer une séquence à l'intérieur d'elle-même, donc aucun clip de ce média ne peut être dans cette séquence.Rename '%1'
-
+ Renommer '%1'Enter new name:
-
+ Entrez le nouveau nom :Delete media in use?
-
+ Supprimer un média en cours d'utilisation ?The media '%1' is currently used in '%2'. Deleting it will remove all instances in the sequence. Are you sure you want to do this?
-
+ Le média '%1' est actuellement utilisé dans '%2', le supprimer effacera toutes les instances dans la séquence. Êtes-vous sûr⋅e de vouloir cela ?Skip
-
+ PasserImage sequence detected
-
+ Séquence d'image détectéeThe file '%1' appears to be part of an image sequence. Would you like to import it as such?
-
+ Le fichier '%1' semble faire partie d'une séquence d'image. Voulez-vous l'importer comme tel ?Import media...
-
+ Importer un média…No sequence is active, please open the sequence you want to delete clips from.
-
+ Aucune séquence n'est active, veuillez sélectionner la séquence dont vous souhaitez supprimer les clips.
@@ -2159,77 +2172,77 @@ Seek quickly (may briefly show inaccurate frames when seeking - doesn't aff
Create Proxy
-
+ Créer un proxyProxy
-
+ ProxyDimensions:
-
+ Dimensions :Same Size as Source
-
+ Même taille que la sourceHalf Resolution (1/2)
-
+ Moitié de la résolution (1/2)Quarter Resolution (1/4)
-
+ Quart de la résolution (1/4)Eighth Resolution (1/8)
-
+ Huitième de la résolution (1/8)Sixteenth Resolution (1/16)
-
+ Seizième de la résolution (1/16)Format:
-
+ Format :ProRes HQ
-
+ ProRes HQLocation:
-
+ Chemin :Same as Source (in "%1" folder)
-
+ Comme la source (dans le dossier "%1")Proxy file exists
-
+ Un fichier de proxy existeThe file "%1" already exists. Do you wish to replace it?
-
+ Le fichier "%1" existe déjà. Voulez-vous le remplacer ?Custom Location
-
+ Chemin personnalisé
@@ -2237,7 +2250,7 @@ Seek quickly (may briefly show inaccurate frames when seeking - doesn't aff
Finished generating proxy for "%1"
-
+ Génération du proxy pour "%1" terminée
@@ -2245,67 +2258,67 @@ Seek quickly (may briefly show inaccurate frames when seeking - doesn't aff
Replace clips using "%1"
-
+ Remplacer les clips par "%1"Select which media you want to replace this media's clips with:
-
+ Sélectionnez quel média vous souhaitez utiliser pour remplacer les clips de ce média :Keep the same media in-points
-
+ Garder les mêmes points d'entrée du médiaReplace
-
+ RemplacerCancel
-
+ AnnulerNo media selected
-
+ Aucun média sélectionnéPlease select a media to replace with or click 'Cancel'.
-
+ Veuillez sélectionner un média avec lequel remplacer ou choisir 'Annuler'.Same media selected
-
+ Même média sélectionnéYou selected the same media that you're replacing. Please select a different one or click 'Cancel'.
-
+ Vous avez sélectionné le même média que celui que vous souhaitez remplacer. Veuillez sélectionner un autre média ou cliquer sur 'Annuler'.Folder selected
-
+ Dossier sélectionnéYou cannot replace footage with a folder.
-
+ Vous ne pouvez pas remplacer un média par un dossier.Active sequence selected
-
+ Séquence active sélectionnéeYou cannot insert a sequence into itself.
-
+ Vous ne pouvez pas insérer une séquence dans elle-même.
@@ -2313,7 +2326,7 @@ Seek quickly (may briefly show inaccurate frames when seeking - doesn't aff
%1 (copy)
-
+ %1 (copy)
@@ -2321,17 +2334,17 @@ Seek quickly (may briefly show inaccurate frames when seeking - doesn't aff
Intensity
-
+ IntensitéRotation
-
+ RotationFrequency
-
+ Fréquence
@@ -2339,37 +2352,37 @@ Seek quickly (may briefly show inaccurate frames when seeking - doesn't aff
Type
-
+ TypeSolid Color
-
+ Couleur unieSMPTE Bars
-
+ Barres SMPTECheckerboard
-
+ DamierOpacity
-
+ OpacitéColor
-
+ CouleurCheckerboard Size
-
+ Taille du damier
@@ -2377,137 +2390,137 @@ Seek quickly (may briefly show inaccurate frames when seeking - doesn't aff
Import...
-
+ Importer…New
-
+ NouveauView
-
+ AffichageTree View
-
+ Vue arborescenteIcon View
-
+ Vue par icônesShow Toolbar
-
+ Afficher la barre d'outilsShow Sequences
-
+ Afficher les séquencesReplace/Relink Media
-
+ Remplacer/Relier le médiaReveal in Explorer
-
+ Montrer dans l'explorateurReveal in Finder
-
+ Montrer dans le FinderReveal in File Manager
-
+ Montrer dans le gestionnaire de fichiersReplace Clips Using This Media
-
+ Remplacer les clips utilisant ce médiaCreate Sequence With This Media
-
+ Créer une séquence à partir de ce médiaDuplicate
-
+ DupliquerDelete All Clips Using This Media
-
+ Supprimer tous les clips utilisant ce médiaProxy
-
+ ProxyGenerating proxy: %1% complete
-
+ Génération du proxy: %1% achevéeCreate/Modify Proxy
-
+ Créer/Modifier le proxyCreate Proxy
-
+ Créer le proxyModify Proxy
-
+ Modifier le proxyRestore Original
-
+ Restaurer l'originalDelete
-
+ SupprimerProperties...
-
+ Propriétés…Replace Media
-
+ Remplacer le médiaYou dropped a file onto '%1'. Would you like to replace it with the dropped file?
-
+ Vous avez déposé un fichier sur '%1'. Souhaitez-vous le remplacer par le fichier déposé ?Delete proxy
-
+ Supprimer le proxyWould you like to delete the proxy file "%1" as well?
-
+ Souhaitez-vous aussi supprimer le fichier de proxy "%1" ?
@@ -2515,37 +2528,37 @@ Seek quickly (may briefly show inaccurate frames when seeking - doesn't aff
Speed/Duration
-
+ Vitesse/DuréeSpeed:
-
+ Vitesse :Frame Rate:
-
+ Images par seconde :Duration:
-
+ Durée :Reverse
-
+ InverserMaintain Audio Pitch
-
+ Maintenir la hauteur audioRipple Changes
-
+ Propager les changements
@@ -2553,7 +2566,7 @@ Seek quickly (may briefly show inaccurate frames when seeking - doesn't aff
Edit Text
-
+ Éditer le texte
@@ -2561,113 +2574,113 @@ Seek quickly (may briefly show inaccurate frames when seeking - doesn't aff
Text
-
+ TexteFont
-
+ PoliceSize
-
+ TailleColor
-
+ CouleurAlignment
-
+ AllignementLeft
-
+ À gaucheCenter
-
+ CentrerRight
-
+ À droiteJustify
-
+ JustifiéTop
-
+ En hautBottom
-
+ En basWord Wrap
-
+ Retour automatiqueOutline
-
+ ContourOutline Color
-
+ Couleur du contourOutline Width
-
+ Épaisseur du contourShadow
-
+ OmbreShadow Color
-
+ Couleur de l'ombreShadow Distance
-
+ Distance de l'ombreShadow Softness
-
+ Douceur de l'ombreShadow Opacity
-
+ Opacité de l'ombreSample Text
-
+ Texte d'exemple&Edit Text
-
+ &Modifier le texte
@@ -2675,47 +2688,47 @@ Seek quickly (may briefly show inaccurate frames when seeking - doesn't aff
Timecode
-
+ Code temporelSequence
-
+ SéquenceMedia
-
+ MédiaScale
-
+ ÉchelleColor
-
+ CouleurBackground Color
-
+ Couleur d'arrière-planBackground Opacity
-
+ Opacité de l'arrière-planOffset
-
+ ÉcartPrepend
-
+ Préfixe
@@ -2723,147 +2736,147 @@ Seek quickly (may briefly show inaccurate frames when seeking - doesn't aff
Timeline:
-
+ Ligne du temps : <none>
-
+ <aucun>Effect already exists
-
+ L'effet existe déjàClip '%1' already contains a '%2' effect. Would you like to replace it with the pasted one or add it as a separate effect?
-
+ Le clip '%1' contient déjà un effet '%2'. SOuhaitez-vous le remplacer par l'effet du presse-papier ou ajouter celui comme un effet distinct ?Add
-
+ AjouterReplace
-
+ RemplacerSkip
-
+ PasserDo this for all conflicts found
-
+ Faire ceci pour tous les conflitsTitle...
-
+ Titre…Solid Color...
-
+ Couleur unie…Bars...
-
+ Barres…Tone...
-
+ Ton…Noise...
-
+ Bruit…Unsaved Project
-
+ Projet non-sauvegardéYou must save this project before you can record audio in it.
-
+ Vous devez sauvegarder ce projet avant d'effectuer un enregistrement audio à l'intérieur.Click on the timeline where you want to start recording (drag to limit the recording to a certain timeframe)
-
+ Cliquez sur la ligne du temps là où vous souhaitez commencer l'enregistrement (tirez pour limiter l'enregistrement jusqu'à une certaine image)Pointer Tool
-
+ CurseurEdit Tool
-
+ ÉditerRipple Tool
-
+ PropagationRazor Tool
-
+ CutterSlip Tool
-
+ Déplacer dessousSlide Tool
-
+ Déplacer dessusHand Tool
-
+ MainTransition Tool
-
+ TransitionSnapping
-
+ MagnétismeZoom In
-
+ ZoomerZoom Out
-
+ DézoomerRecord audio
-
+ Enregistrement audioAdd title, solid, bars, etc.
-
+ Ajouter un titre, une couleur unie, des barres, etc.
@@ -2871,7 +2884,7 @@ Seek quickly (may briefly show inaccurate frames when seeking - doesn't aff
Center Timecodes
-
+ Centrer les codes temporels
@@ -2879,72 +2892,72 @@ Seek quickly (may briefly show inaccurate frames when seeking - doesn't aff
&Undo
-
+ Ann&uler&Redo
-
+ &RétablirC&ut
-
+ &CouperCop&y
-
+ Cop&ier&Paste
-
+ C&ollerR&ipple Delete
-
+ Supprimer et r&accorderSequence Settings
-
+ Paramètres de la séquence&Speed/Duration
-
+ &Vitesse/DuréeAuto-s&cale
-
+ Échelle automati&queEnable/Disable
-
+ Activer/DésactiverLink/Unlink
-
+ Lier/Délier&Nest
-
+ Im&briquer&Reveal in Project
-
+ &Révéler dans le projetR&ename
-
+ R&enommer
@@ -2952,62 +2965,65 @@ Seek quickly (may briefly show inaccurate frames when seeking - doesn't aff
Start: %2
End: %3
Duration: %4
-
+ %1
+Début : %2
+Fin : %3
+Durée : %4Rename '%1'
-
+ Renommer '%1'Rename multiple clips
-
+ Renommer plusieurs clipsEnter a new name for this clip:
-
+ Entrez un nouveau nom pour ce clip :Error
-
+ ErreurCouldn't locate media wrapper for sequence.
-
+ Impossible de localiser le conteneurdu média de cette séquence.Title
-
+ TitreSolid Color
-
+ Couleur unieBars
-
+ BarresTone
-
+ TonNoise
-
+ BruitDuration:
-
+ Durée :
@@ -3015,22 +3031,22 @@ Duration: %4
Type
-
+ TypeFrequency
-
+ FréquenceAmount
-
+ QuantitéMix
-
+ Mélange
@@ -3038,157 +3054,164 @@ Duration: %4
Position
-
+ PositionScale
-
+ ÉchelleUniform Scale
-
+ Échelle uniformeRotation
-
+ RotationAnchor Point
-
+ Point d'ancrageOpacity
-
+ OpacitéBlend Mode
-
+ Mode de fusionNormal
-
+ NormalDarken
-
+ AssombrirMultiply
-
+ MultiplierColor Burn
-
+ Not literal but same translation as Adobe
+ Densité couleur +Linear Burn
-
+ Not literal but same translation as Adobe
+ Densité linéaire +Lighten
-
+ ÉclaircirScreen
-
+ Not literal but same translation as Adobe
+ SuperpositionColor Dodge
-
+ Not literal but same translation as Adobe
+ Densité couleur -Linear Dodge (Add)
-
+ Not literal but same translation as Adobe
+ Densité linéaire -Overlay
-
+ IncrustationSoft Light
-
+ Not literal but same translation as Adobe
+ Lumière tamiséeHard Light
-
+ Lumière crueVivid Light
-
+ Lumière viveLinear Light
-
+ Lumière linéairePin Light
-
+ Not literal but same translation as Adobe
+ Lumière ponctuelleHard Mix
-
+ Mélange maximalDifference
-
+ DifférenceExclusion
-
+ ExclusionReflect
-
+ RéflexionSubstract
-
+ SoustractionAverage
-
+ MoyenneGlow
-
+ LueurNegation
-
+ NégationPhoenix
-
+ Phénix
@@ -3196,7 +3219,7 @@ Duration: %4
Length
-
+ Longueur
@@ -3206,62 +3229,62 @@ Duration: %4
Error loading VST plugin
-
+ Erreur lors du chargement du plugin VSTFailed to create VST reference
-
+ Impossible de créer la référence VSTFailed to load VST plugin "%1": %2
-
+ Impossible de charger le plugin VST "%1": %2NOTE: 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 : Vous ne pouvez pas charger de plugin VST 32-bit avec la version 64-bit d'Olive. Essayez de trouver une version 64-bit de ce plugin ou basculez sur la version 32-bit d'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.
-
+ NOTE : Vous ne pouvez pas charger de plugin VST 64-bit avec la version 32-bit d'Olive. Essayez de trouver une version 32-bit de ce plugin ou basculez sur la version 64-bit d'Olive.Failed to locate entry point for dynamic library.
-
+ Impossible de localiser le point d'entrée de la bibliothèque dynamique.VST Error
-
+ Erreur VSTPlugin's magic number is invalid
-
+ Le nombre magique du plugin est invalidePlugin
-
+ PluginInterface
-
+ InterfaceShow
-
+ MontrerVST Plugin
-
+ Plugin VST
@@ -3269,17 +3292,17 @@ Duration: %4
Sequence Viewer
-
+ Lecteur de séquenceMedia Viewer
-
+ Lecteur de média(none)
-
+ (aucun)
@@ -3287,57 +3310,57 @@ Duration: %4
Save Frame as Image...
-
+ Enregistrer l'image…Show Fullscreen
-
+ Montrer en plein écranDisable
-
+ DésactiverScreen %1: %2x%3
-
+ Écran %1: %2x%3Zoom
-
+ ZoomFit
-
+ AjusterCustom
-
+ PersonnaliséClose Media
-
+ Fermer le médiaSave Frame
-
+ Enregistrer l'imageViewer Zoom
-
+ Zoom du lecteurSet Custom Zoom Value:
-
+ Définir une valeur de zoom personnalisée :
@@ -3345,7 +3368,7 @@ Duration: %4
Exit Fullscreen
-
+ Quitter le mode plein-écran
@@ -3353,12 +3376,12 @@ Duration: %4
(unknown)
-
+ (inconnu)Missing Effect
-
+ Effet manquant
@@ -3366,7 +3389,7 @@ Duration: %4
Volume
-
+ Volume
@@ -3374,12 +3397,12 @@ Duration: %4
Invalid transition
-
+ Transition invalideNo candidate for transition '%1'. This transition may be corrupt. Try reinstalling it or Olive.
-
+ Aucun candidat pour la transition '%1'. Cette transition est peut-être corrompue. Essayez de la réinstaller, ou de réinstaller Olive.
diff --git a/ts/olive_ru.ts b/ts/olive_ru.ts
index e3b8ad0be..24144e6a7 100644
--- a/ts/olive_ru.ts
+++ b/ts/olive_ru.ts
@@ -4,12 +4,12 @@
AboutDialog
-
+ Olive is a non-linear video editor. This software is free and protected by the GNU GPL.Olive — нелинейный видеоредактор. Эта программа является свободной и защищена GNU GPL.
-
+ Olive Team is obliged to inform users that Olive source code is available for download from its website.Исходный код Olive доступен для скачивания на сайте программы.
@@ -17,7 +17,7 @@
ActionSearch
-
+ Search for action...Найти действие…
@@ -25,12 +25,12 @@
AdvancedVideoDialog
-
+ Advanced Video SettingsДополнительные параметры видео
-
+ Pixel Format:Формат пикселей:
@@ -38,25 +38,25 @@
Audio
-
- Audio
- Звук
+
+ %1 Audio
+
-
- Recording
- Запись
+
+ Recording %1
+ Запись %1AudioNoiseEffect
-
+ AmountКоличество
-
+ MixСмешивание
@@ -64,17 +64,17 @@
ChannelLayoutName
-
+ InvalidНекорректный
-
+ MonoМоно
-
+ StereoСтерео
@@ -82,7 +82,7 @@
CollapsibleWidget
-
+ <untitled><без названия>
@@ -90,7 +90,7 @@
ColorButton
-
+ Set ColorУстановить цвет
@@ -98,27 +98,27 @@
CornerPinEffect
-
+ Top LeftВверху слева
-
+ Top RightВверху справа
-
+ Bottom LeftВнизу слева
-
+ Bottom RightВнизу справа
-
+ PerspectiveПерспектива
@@ -126,7 +126,7 @@
DebugDialog
-
+ Debug LogЖурнал отладки
@@ -134,23 +134,23 @@
DemoNotice
-
-
+
+ Welcome to Olive!Приветствуем в Olive!
-
+ Olive is a free open-source video editor released under the GNU GPL. If you have paid for this software, you have been scammed.Это свободный нелинейный видеоредактор с открытым исходным кодом под лицензией GNU GPL. Если вы заплатили за эту программу, скорее всего вас обманули.
-
+ This software is currently in ALPHA which means it is unstable and very likely to crash, have bugs, and have missing features. We offer no warranty so use at your own risk. Please report any bugs or feature requests at %1На текущий момент программа находится на стадии альфы, т.е. она нестабильна, может часто падать и не иметь нужных вам функций. Мы не даём никаких гарантий, используйте на свой страх и риск. Сообщения об ошибках и запросы на новые функции мы принимаем здесь: %1
-
+ Thank you for trying Olive and we hope you enjoy it!Спасибо за интерес к Olive. Надеемся, что программа вам понравится!
@@ -158,89 +158,89 @@
Effect
-
+ Invalid effectНекорректный эффект
-
+ No candidate for effect '%1'. This effect may be corrupt. Try reinstalling it or Olive.
-
+ Cu&tВ&ырезать
-
+ &Copy&Скопировать
-
+ Move &Up&Поднять
-
+ Move &Down&Опустить
-
+ D&elete&Удалить
-
+ Load Settings From FileЗагрузить параметры из файла
-
+ Save Settings to FileСохранить параметры в файл
-
+ Save Effect SettingsСохранить параметры эффекта
-
-
+
+ Effect XML Settings %1Файлы с параметрами эффектов %1
-
+ Save Settings FailedНе удалось сохранить параметры
-
+ Failed to open "%1" for writing.Не удалось открыть "%1" для записи.
-
+ Load Effect SettingsЗагрузить параметры эффекта
-
-
+
+ Load Settings FailedНе удалось загрузить параметры
-
+ Failed to open "%1" for reading.Не удалось открыть "%1" для чтения.
-
+ This settings file doesn't match this effect.Это файлс параметрами совсем другого эффекта.
@@ -248,47 +248,47 @@
EffectControls
-
+ Effects: Эффекты:
-
+ &Paste&Вставить
-
+ Add Video EffectДобавить видеоэффект
-
+ VIDEO EFFECTSВИДЕОЭФФЕКТЫ
-
+ Add Video TransitionДобавить видеопереход
-
+ Add Audio EffectДобавить аудиоэффект
-
+ AUDIO EFFECTSАУДИОЭФФЕКТЫ
-
+ Add Audio TransitionДобавить аудиопереход
-
+ (Multiple clips selected)(Выделено больше одного клипа)
@@ -296,12 +296,12 @@
EffectRow
-
+ Disable KeyframesОтключить ключевые кадры
-
+ Disabling keyframes will delete all current keyframes. Are you sure you want to do this?Отключение приведёт к удалению всех текущих ключевых кадров. Вы уверены?
@@ -309,7 +309,7 @@
EmbeddedFileChooser
-
+ File:Файл:
@@ -317,98 +317,98 @@
ExportDialog
-
+ Export "%1"Экспортировать "%1"
-
+ Unknown codec name %1
-
+ Export FailedНе удалось экспортировать
-
+ Export failed - %1Не удалось экспортировать — %1
-
+ Invalid dimensionsНекорректный размер кадра
-
+ Export width and height must both be even numbers/divisible by 2.Ширина и высота кадра при экспорте должны делиться на 2 без остатка.
-
+ Invalid codecНекорректный кодек
-
+ Couldn't determine output parameters for the selected codec. This is a bug, please contact the developers.
-
+ Invalid formatНекорректный формат
-
+ Couldn't determine output format. This is a bug, please contact the developers.
-
+ Export MediaЭкспортировать проект
-
+ Quality-based (Constant Rate Factor)Качество (Constant Rate Factor)
-
+ Constant BitrateПостоянная скорость потока
-
-
+
+ Invalid CodecНекорректный кодек
-
+ Failed to find a suitable encoder for this codec. Export will likely fail.Не удалось найти подходящий кодировщик для этого кодека. Экспорт не гарантирован.
-
+ Failed to find pixel format for this encoder. Export will likely fail.
-
+ Bitrate (Mbps):Скорость потока (Мбит/с):
-
+ Quality (CRF):Качество (CRF):
-
+ Quality Factor:
0 = lossless
@@ -423,73 +423,78 @@
51 = самое низкое качество
-
+ Target File Size (MB):Конечный размер файла (Мб):
-
+ Format:Формат:
-
+ Range:Диапазон:
-
+ Entire SequenceВся последовательность
-
+ In to OutОт входа от выхода
-
+ VideoВидео
-
-
+
+ Codec:Кодек:
-
+ Width:Ширина:
-
+ Height:Высота:
-
+ Frame Rate:Частота кадров:
-
+ Compression Type:Тип сжатия:
-
+ AdvancedДополнительно
-
+
+ Audio
+ Звук
+
+
+ Sampling Rate:Частота дискретизации:
-
+ Bitrate (Kbps/CBR):Скорость потока (Кбит/с / CBR):
@@ -497,87 +502,87 @@
ExportThread
-
+ failed to send frame to encoder (%1)
-
+ failed to receive packet from encoder (%1)
-
+ could not video encoder for %1
-
+ could not allocate video stream
-
+ could not allocate video encoding context
-
+ could not open output video encoder (%1)
-
+ could not copy video encoder parameters to output stream (%1)
-
+ could not audio encoder for %1
-
+ could not allocate audio stream
-
+ could not allocate audio encoding context
-
+ could not open output audio encoder (%1)
-
+ could not copy audio encoder parameters to output stream (%1)
-
+ could not allocate audio buffer (%1)
-
+ could not create output format context
-
+ could not open output file (%1)
-
+ could not write output file header (%1)
-
+ could not write output file trailer (%1)
@@ -585,40 +590,40 @@
FillLeftRightEffect
-
+ TypeТип
-
+ Fill Left with Right
-
+ Заполнить левый канал правым
-
+ Fill Right with Left
-
+ Заполнить правый канал левымFrei0rEffect
-
+ Failed to load Frei0r plugin "%1": %2Не удалось загрузить плагшин Frei0r "%1": %2
-
+ NOTE: You can't load 32-bit Frei0r 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.Вы не можете загружать 32-разрядные плагины Frei0r в 64-разрядный Olive. Найдите 64-разрядную версию этого плагина или установите 32-разрядную сборку Olive.
-
+ NOTE: You can't load 64-bit Frei0r 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.Вы не можете загружать 64-разрядные плагины Frei0r в 32-разрядный Olive. Найдите 32-разрядную версию этого плагина или установите 64-разрядную сборку Olive.
-
+ Error loading Frei0r pluginОшибка при загрузке плагина Frei0r
@@ -626,22 +631,22 @@
GraphEditor
-
+ Graph EditorРедактор графов
-
+ LinearЛинейный
-
+ BezierБезье
-
+ HoldКонстанта
@@ -649,17 +654,17 @@
GraphView
-
+ Zoom to SelectionМасштабировать в выделение
-
+ Zoom to Show AllМасштабировать и показать всё
-
+ Reset ViewСбросить масштаб
@@ -667,30 +672,30 @@
InterlacingName
-
+ None (Progressive)
- Нет (прогрессивно)
+ Нет (прогрессивно)
-
+ Top Field First
-
+ Bottom Field First
-
+ Invalid
- Некорректный
+ НекорректноKeyframeNavigator
-
+ Enable KeyframesВключить ключевые кадры
@@ -698,17 +703,17 @@
KeyframeView
-
+ LinearЛинейный
-
+ BezierБезье
-
+ HoldКонстанта
@@ -716,14 +721,14 @@
LabelSlider
-
-
+
+ Set ValueУстановить значение
-
-
+
+ New value:Новое значение:
@@ -731,17 +736,17 @@
LoadDialog
-
+ Loading...Загрузка…
-
+ Loading '%1'...Загружается '%1'...
-
+ CancelОтмена
@@ -749,52 +754,52 @@
LoadThread
-
+ Version MismatchНесовпадение версий
-
+ This project was saved in a different version of Olive and may not be fully compatible with this version. Would you like to attempt loading it anyway?Этот проект был сохранён в другой версии 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
@@ -802,711 +807,520 @@
MainWindow
-
+ Welcome to %1Приветствуем в %1
-
- Auto-recovery
- Автовосстановление
-
-
-
- Olive didn't close properly and an autorecovery file was detected. Would you like to open it?
- Olive аварийно завершил работу, обнаружен файл автовосстановления. Открыть его?
-
-
-
- &Project
- &Проект
-
-
-
- &Sequence
- П&оследовательность
-
-
-
- &Folder
- П&апка
-
-
-
- Set In Point
- Установить точку входа
-
-
-
- Set Out Point
- Установить точку выхода
-
-
- Enable/Disable In/Out Point
- Переключить точку входа/выхода
-
-
-
- Reset In Point
- Сбросить точку входа
-
-
-
- Reset Out Point
- Сбросить точку выхода
-
-
-
- Clear In/Out Point
- Очистить точку входа/выхода
-
-
-
- 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:34:3
-
+ 16:916: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Увеличить скорость
- Decrease Speed
- Уменьшить скорость
-
-
- Pause
- Пауза
-
-
- Increase Speed
- Увеличить скорость
-
-
-
+ 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.
-
-
-
-
- Enter custom aspect ratio
- Введите другое соотношение сторон
-
-
-
- Enter the aspect ratio to use for the title/action safe area (e.g. 16:9):
-
-
-
-
- Nested Sequence
- Вложенная последовательность
- Marker
-
+ Set MarkerУстановить маркер
-
+ Set clip marker name:Название маркера клипа:
-
+ Set sequence marker name:Название маркера последовательности:
@@ -1514,56 +1328,52 @@
Media
-
+ New FolderНовая папка
-
+ Name:Название:
-
+ Filename:Имя файла:
-
+ Video Dimensions:Размер кадров:
-
+ Frame Rate:Частота кадров:
- %1 fields (%2 frames)
- полей: %1 (кадров: %2)
-
-
-
+ %1 field(s) (%2 frame(s))полей: %1 (кадров: %2)
-
+ Interlacing:Чересстрочность:
-
+ Audio Frequency:Частота звука:
-
+ Audio Channels:Звуковых каналов:
-
+ Name: %1
Video Dimensions: %2x%3
Frame Rate: %4
@@ -1576,17 +1386,17 @@ Audio Layout: %6
Звуковые каналы: %6
-
+ NameНазвание
-
+ DurationДлительность
-
+ RateЧастота
@@ -1594,31 +1404,27 @@ Audio Layout: %6
MediaPropertiesDialog
-
+ "%1" PropertiesСвойства "%1"
-
+ Tracks:Дорожек:
-
+ Video %1: %2x%3 %4FPSВидео %1: %2x%3 %4к/с
- Audio %1: %2Hz %3 channels
- Звук %1: %2Гц %3 каналов
-
-
-
+ Audio %1: %2Hz %3
-
+ %n channel(s)%n канал
@@ -1627,163 +1433,354 @@ Audio Layout: %6
-
+ Conform to Frame Rate:
-
+ Alpha is Premultiplied
-
+ Auto (%1)Авто (%1)
-
+ Interlacing:Чересстрочность:
-
+ Name:Название:
+
+ MenuHelper
+
+
+ &Project
+ &Проект
+
+
+
+ &Sequence
+ П&оследовательность
+
+
+
+ &Folder
+ П&апка
+
+
+
+ Set In Point
+ Установить точку входа
+
+
+
+ Set Out Point
+ Установить точку выхода
+
+
+
+ Reset In Point
+ Сбросить точку входа
+
+
+
+ Reset Out Point
+ Сбросить точку выхода
+
+
+
+ Clear In/Out Point
+ Очистить точку входа/выхода
+
+
+
+ Add Default Transition
+ Добавить переход по умолчанию
+
+
+
+ Link/Unlink
+ Связать/Убрать связь
+
+
+
+ Enable/Disable
+ Включить/Отключить
+
+
+
+ Nest
+ Вложить
+
+
+
+ Cu&t
+ В&ырезать
+
+
+
+ Cop&y
+ С&копировать
+
+
+
+ &Paste
+ &Вставить
+
+
+
+ Paste Insert
+
+
+
+
+ Duplicate
+ Сделать копию
+
+
+
+ Delete
+ Удалить
+
+
+
+ Ripple Delete
+ Удалить со сдвигом
+
+
+
+ Split
+ Разделить
+
+
+
+ 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):
+
+
+NewSequenceDialog
-
+ Editing "%1"Правка "%1"
-
+ New SequenceНовая последовательность
-
+ Preset:Предстановка:
-
+ Film 4KКино 4К
-
+ TV 4K (Ultra HD/2160p)TV 4K (Ultra HD/2160p)
-
+ 1080p1080p
-
+ 720p720p
-
+ 480p480p
-
+ 360p360p
-
+ 240p240p
-
+ 144p144p
-
+ NTSC (480i)NTSC (480i)
-
+ PAL (576i)PAL (576i)
-
+ CustomДругое
-
+ VideoВидео
-
+ Width:Ширина:
-
+ Height:Высота:
-
+ Frame Rate:Частота кадров:
-
+ Pixel Aspect Ratio:Соотношение сторон пикселя:
-
+ Square Pixels (1.0)Квадратные пиксели (1.0)
-
+ Interlacing:Чересстрочность:
-
+ None (Progressive)Нет (прогрессивно)
-
+ AudioЗвук
-
+ Sample Rate: Частота дискретизации:
-
+ Name:Название:
+
+ OliveGlobal
+
+
+ Olive Project %1
+ Проект Olive %1
+
+
+
+ Auto-recovery
+ Автовосстановление
+
+
+
+ Olive didn't close properly and an autorecovery file was detected. Would you like to open it?
+ Olive аварийно завершил работу, обнаружен файл автовосстановления. Открыть его?
+
+
+
+ Open Project...
+ Открыть проект…
+
+
+
+ Missing recent project
+ Отсутствует недавний проект
+
+
+
+ The project '%1' no longer exists. Would you like to remove it from the recent projects list?
+ Проект '%1' больше не существует. Удалить его из списка недавних?
+
+
+
+ Save Project As...
+ Сохранить проект как…
+
+
+
+ Unsaved Project
+ Несохранённый проект
+
+
+
+ This project has changed since it was last saved. Would you like to save it before closing?
+ Проект был изменён с момента последнего сохранения. Хотите сохранить его перед закрытием?
+
+
+
+ No active sequence
+ Нет активных последовательностей
+
+
+
+ Please open the sequence you wish to export.
+ Откройте последовательность, которую хотите экспортировать
+
+
+
+ Missing Project File
+ Отсутствует проектный файл
+
+
+
+ Specified project '%1' does not exist.
+ Указанный проект '%1' не существует.
+
+PanEffect
-
+ PanПанорама
@@ -1791,7 +1788,7 @@ Audio Layout: %6
Playback
-
+ Generating Proxy: %1%Создаётся прокси: %1%
@@ -1799,289 +1796,275 @@ 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Клавиатурные комбинации
@@ -2089,12 +2072,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
@@ -2102,94 +2085,94 @@ Seek quickly (may briefly show inaccurate frames when seeking - doesn't aff
Project
-
+ Search media, markers, etc.Искать файлы, маркеры и т.д.
-
+ ProjectПроект
-
+ SequenceПоследовательность
-
+ Replace '%1'Заменить '%1'
-
-
+
+ All FilesВсе файлы
-
-
+
+ No active sequenceНет активных последовательностей
-
+ No sequence is active, please open the sequence you want to replace clips from.Нет активных последовательностей. Откройте последовательность, в которой хотите заменить клипы.
-
+ Active sequence selectedВыбрана активная последовательность
-
+ You cannot insert a sequence into itself, so no clips of this media would be in this sequence.Вы не можете вставить последовательность в саму себя, так что клипы из этих файлов не могут попасть в эту последовательность.
-
+ Rename '%1'Переименовать '%1'
-
+ Enter new name:Введите новое название:
-
+ Delete media in use?Удалить используемые в проекте файлы?
-
+ The media '%1' is currently used in '%2'. Deleting it will remove all instances in the sequence. Are you sure you want to do this?Файл '%1' уже используется в '%2'. Его удаление приведет к удалению всех его копий в выбранной последовательности. Вы точно этого хотите?
-
+ SkipПропустить
-
+ Image sequence detectedОбнаружена последовательность изображений
-
+ The file '%1' appears to be part of an image sequence. Would you like to import it as such?Похоже, что файл '%1' яавляется частью последовательности изображений. Загрузить его как таковой?
-
+ Import media...Импортировать медиафайлы…
-
+ No sequence is active, please open the sequence you want to delete clips from.Нет активных последовательностей. Откройте последовательность, из которой хотите удалить клипы.
@@ -2197,77 +2180,77 @@ Seek quickly (may briefly show inaccurate frames when seeking - doesn't aff
ProxyDialog
-
+ Create ProxyСоздать прокси
-
+ ProxyПрокси
-
+ Dimensions:Размер:
-
+ Same Size as SourceВ размере оригинала
-
+ Half Resolution (1/2)Половина оригинала (1/2)
-
+ Quarter Resolution (1/4)Четверть оригинала (1/4)
-
+ Eighth Resolution (1/8)Восьмая оригинала (1/8)
-
+ Sixteenth Resolution (1/16)Шестнадцатая оригинала (1/16)
-
+ Format:Формат:
-
+ ProRes HQProRes HQ
-
+ Location:Размещение:
-
+ Same as Source (in "%1" folder)Как в исходнике (в папке «%1»)
-
+ Proxy file existsПрокси-файл уже существует
-
+ The file "%1" already exists. Do you wish to replace it?Файл «%1» уже существует. Заменить его?
-
+ Custom LocationДругое размещение
@@ -2275,7 +2258,7 @@ Seek quickly (may briefly show inaccurate frames when seeking - doesn't aff
ProxyGenerator
-
+ Finished generating proxy for "%1"Завершено создание прокси для "%1"
@@ -2283,67 +2266,67 @@ Seek quickly (may briefly show inaccurate frames when seeking - doesn't aff
ReplaceClipMediaDialog
-
+ Replace clips using "%1"Заменить клипы данными "%1"
-
+ Select which media you want to replace this media's clips with:Выберите файлы, которые хотите заменить клипы с этими файлами:
-
+ Keep the same media in-pointsСохранить существующие точки входа
-
+ ReplaceЗаменить
-
+ CancelОтмена
-
+ No media selectedФайлы не выбраны
-
+ Please select a media to replace with or click 'Cancel'.
- Выборите файлы для замены или нажмите кнопку «Отмена».
+ Выберите файлы для замены или нажмите кнопку «Отмена».
-
+ Same media selectedВыбраны те же самые файлы
-
+ You selected the same media that you're replacing. Please select a different one or click 'Cancel'.Вы выбрали те же файлы, которые хотите заменить. Выберите что-то другое или нажмите кнопку «Отмена».
-
+ Folder selectedПапка выбрана
-
+ You cannot replace footage with a folder.Вы не можете заменить видеосъёмку папкой.
-
+ Active sequence selectedВыбрана активная последовательность
-
+ You cannot insert a sequence into itself.Вы не можете вставить последовательность в саму себя.
@@ -2351,7 +2334,7 @@ Seek quickly (may briefly show inaccurate frames when seeking - doesn't aff
Sequence
-
+ %1 (copy)%1 (копия)
@@ -2359,17 +2342,17 @@ Seek quickly (may briefly show inaccurate frames when seeking - doesn't aff
ShakeEffect
-
+ IntensityИнтенсивность
-
+ RotationВращение
-
+ FrequencyЧастота
@@ -2377,37 +2360,37 @@ Seek quickly (may briefly show inaccurate frames when seeking - doesn't aff
SolidEffect
-
+ TypeТип
-
+ Solid ColorСплошная заливка
-
+ SMPTE BarsТаблица SMPTE
-
+ CheckerboardШахматная доска
-
+ OpacityНепрозрачность
-
+ ColorЦвет
-
+ Checkerboard SizeРазмер клеток
@@ -2415,137 +2398,137 @@ Seek quickly (may briefly show inaccurate frames when seeking - doesn't aff
SourcesCommon
-
+ Import...Импортировать…
-
+ NewСоздать
-
+ ViewВид
-
+ Tree ViewВ виде таблицы
-
+ Icon ViewВ виде миниатюр
-
+ Show ToolbarПоказывать панель
-
+ Show SequencesПоказывать последовательности
-
+ Replace/Relink MediaЗаменить/пересвязать файлы
-
+ Reveal in ExplorerОткрыть в Проводнике
-
+ Reveal in FinderОткрыть в Finder
-
+ Reveal in File ManagerОткрыть в файловом менеджере
-
+ Replace Clips Using This MediaЗаменить клипы с этими файлами
-
+ Create Sequence With This MediaСоздать последовательность с этими файлами
-
+ DuplicateСоздать копию
-
+ Delete All Clips Using This MediaУдалить все клипы с этим файлом
-
+ ProxyПрокси
-
+ Generating proxy: %1% completeСоздание прокси: завершено на %1%
-
+ Create/Modify ProxyСоздать/Изменить прокси
-
+ Create ProxyСоздать прокси
-
+ Modify ProxyИзменить прокси
-
+ Restore OriginalВосстановить оригинал
-
+ DeleteУдалить
-
+ Properties...Свойства…
-
+ Replace MediaЗаменить файлы
-
+ You dropped a file onto '%1'. Would you like to replace it with the dropped file?
-
+ Delete proxyУдалить прокси
-
+ Would you like to delete the proxy file "%1" as well?Заодно удалить прокси-файл "%1"?
@@ -2553,37 +2536,37 @@ Seek quickly (may briefly show inaccurate frames when seeking - doesn't aff
SpeedDialog
-
+ Speed/DurationСкорость/длительность
-
+ Speed:Скорость:
-
+ Frame Rate:Частота кадров:
-
+ Duration:Длительность:
-
+ ReverseРеверс
-
+ Maintain Audio PitchСохранять высоту тона
-
+ Ripple ChangesИзменять со сдвигом
@@ -2591,7 +2574,7 @@ Seek quickly (may briefly show inaccurate frames when seeking - doesn't aff
TextEditDialog
-
+ Edit TextИзменить текст
@@ -2599,113 +2582,113 @@ Seek quickly (may briefly show inaccurate frames when seeking - doesn't aff
TextEffect
-
+ TextТекст
-
+ FontШрифт
-
+ SizeКегль
-
+ ColorЦвет
-
+ AlignmentВыравнивание
-
+ LeftСлева
-
-
+
+ CenterПо центру
-
+ RightСправа
-
+ JustifyПо ширине
-
+ TopСверху
-
+ BottomСнизу
-
+ Word WrapПеренос строки
-
+ OutlineОбводка
-
+ Outline ColorЦвет обводки
-
+ Outline WidthТолщина обводки
-
+ ShadowТень
-
+ Shadow ColorЦвет тени
-
+ Shadow DistanceДлина тени
-
+ Shadow SoftnessМягкость тени
-
+ Shadow OpacityНепрозрачность тени
-
+ Sample TextОбразец текста
-
+ &Edit Text&Изменить текст
@@ -2713,47 +2696,47 @@ Seek quickly (may briefly show inaccurate frames when seeking - doesn't aff
TimecodeEffect
-
+ TimecodeТайм-код
-
+ SequenceПоследовательность
-
+ MediaФайл
-
+ ScaleМасштаб
-
+ ColorЦвет
-
+ Background ColorЦвет фона
-
+ Background OpacityНепрозрачность фона
-
+ OffsetСмещение
-
+ PrependПрефикс
@@ -2761,159 +2744,152 @@ Seek quickly (may briefly show inaccurate frames when seeking - doesn't aff
Timeline
-
+ Timeline:
- Таймлайн:
+ Монтажный стол:
-
+ <none><нет>
-
+ 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Применить для всех конфликтов
- Set Marker
- Установить маркер
+
+ Nested Sequence
+ Вложенная последовательность
- Set clip marker name:
- Установить название маркера клипа:
-
-
- Set sequence marker name:
- Установить название маркера последовательности:
-
-
-
+ 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.Добавить титры, заливку цветом, испытательную таблицу и т.д.
@@ -2921,7 +2897,7 @@ Seek quickly (may briefly show inaccurate frames when seeking - doesn't aff
TimelineHeader
-
+ Center TimecodesЦентрировать тайм-код
@@ -2929,77 +2905,62 @@ Seek quickly (may briefly show inaccurate frames when seeking - doesn't aff
TimelineWidget
-
+ &Undo&Отменить
-
+ &RedoВ&ернуть
-
+ C&utВ&ырезать
-
+ Cop&yС&копировать
-
+ &Paste&Вставить
-
+ R&ipple DeleteУда&лить со сдвигом
-
+ Sequence SettingsПараметры последовательности
-
+ &Speed/DurationС&корость/Длительность
-
+ Auto-s&caleАвто&масштабирование
-
- Enable/Disable
- Включить/Отключить
-
-
-
- Link/Unlink
- Связать/Убрать связь
-
-
-
- &Nest
- Вло&жить
-
-
-
+ &Reveal in Project&Показать в проекте
-
+ R&enameПере&именовать
-
+ %1
Start: %2
End: %3
@@ -3010,57 +2971,57 @@ Duration: %4
Длительность: %4
-
+ Rename '%1'Переименовать '%1'
-
+ Rename multiple clipsПереименовать клипы
-
+ Enter a new name for this clip:Новое название этого клипа:
-
+ ErrorОшибка
-
+ Couldn't locate media wrapper for sequence.
-
+ TitleТитры
-
+ Solid ColorЦветная заливка
-
+ BarsИспытательная таблица
-
+ ToneЗвуковой сигнал
-
+ NoiseШум
-
+ Duration:Длительность:
@@ -3068,22 +3029,22 @@ Duration: %4
ToneEffect
-
+ TypeТип
-
+ FrequencyЧастота
-
+ AmountКоличество
-
+ MixСмешать
@@ -3091,157 +3052,157 @@ Duration: %4
TransformEffect
-
+ PositionПозиция
-
+ ScaleМасштаб
-
+ Uniform ScaleСохранять пропорции
-
+ RotationВращение
-
+ Anchor PointТочка привязки
-
+ OpacityНепрозрачность
-
+ Blend ModeРежим смешивания
-
+ NormalОбычный
-
+ DarkenЗамена темным
-
+ MultiplyУмножение
-
+ Color BurnЗатемнение основы
-
+ Linear BurnЛинейное затемнение
-
+ LightenЗамена светлым
-
+ ScreenЭкран
-
+ Color DodgeОсветление основы
-
+ Linear Dodge (Add)Линейное осветление (+)
-
+ OverlayПерекрытие
-
+ Soft LightРассеянный свет
-
+ Hard LightНаправленный свет
-
+ Vivid LightЯркий свет
-
+ Linear LightЛинейный свет
-
+ Pin LightТочечный свет
-
+ Hard MixЖесткое смешение
-
+ DifferenceРазница
-
+ ExclusionИсключение
-
+ ReflectОтражение
-
+ SubstractВычитание
-
+ AverageСреднее
-
+ GlowСвечение
-
+ NegationОтрицание
-
+ PhoenixФеникс
@@ -3249,11 +3210,7 @@ Duration: %4
Transition
- Length:
- Длительность:
-
-
-
+ LengthДлительность
@@ -3261,64 +3218,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
-
+ Ошибка VST
-
+ Plugin's magic number is invalid
-
+ PluginПлагин
-
+ InterfaceИнтерфейс
-
+ ShowПоказать
-
+ VST PluginПлагин VST
@@ -3326,17 +3283,17 @@ Duration: %4
Viewer
-
+ Sequence Viewer
- Монитор последовательностей
+ Просмотр последовательностей
-
+ Media Viewer
- Монитор проекта
+ Просмотр проекта
-
+ (none)(нет)
@@ -3344,57 +3301,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:Другое значение масштаба:
@@ -3402,7 +3359,7 @@ Duration: %4
ViewerWindow
-
+ Exit FullscreenВыйти из полноэкранного режима
@@ -3410,12 +3367,12 @@ Duration: %4
VoidEffect
-
+ (unknown)(неизвестно)
-
+ Missing EffectОтсутствующий эффект
@@ -3423,7 +3380,7 @@ Duration: %4
VolumeEffect
-
+ VolumeГромкость
@@ -3431,12 +3388,12 @@ Duration: %4
transition
-
+ Invalid transitionНекорректный переход
-
+ No candidate for transition '%1'. This transition may be corrupt. Try reinstalling it or Olive.
diff --git a/ts/olive_sr.ts b/ts/olive_sr.ts
index 4b5302fd3..97897dfbe 100644
--- a/ts/olive_sr.ts
+++ b/ts/olive_sr.ts
@@ -4,12 +4,12 @@
AboutDialog
-
+ Olive is a non-linear video editor. This software is free and protected by the GNU GPL.Olive је нелинеарни видео уређивач. Овај софтвер је слободан и заштићен GNU GPL-ом.
-
+ Olive Team is obliged to inform users that Olive source code is available for download from its website.Olive тим је под обавезом да обавести своје кориснике да је Olive-ов изворни код доступан за преузимање са његове веб странице.
@@ -17,7 +17,7 @@
ActionSearch
-
+ Search for action...Потражите радњу...
@@ -25,12 +25,12 @@
AdvancedVideoDialog
-
+ Advanced Video SettingsНапредне видео поставке
-
+ Pixel Format:Пиксел формат:
@@ -38,25 +38,33 @@
Audio
- Audio
- Аудио
+ Аудио
- Recording
- Снимање
+ Снимање
+
+
+
+ %1 Audio
+ %1 Аудио
+
+
+
+ Recording %1
+ Снимање %1AudioNoiseEffect
-
+ AmountКоличина
-
+ MixМикс
@@ -64,17 +72,17 @@
ChannelLayoutName
-
+ InvalidНеважеће
-
+ MonoМоно
-
+ StereoСтерео
@@ -82,7 +90,7 @@
CollapsibleWidget
-
+ <untitled><неименовано>
@@ -90,7 +98,7 @@
ColorButton
-
+ Set ColorПостави боју
@@ -98,27 +106,27 @@
CornerPinEffect
-
+ Top LeftГорње лево
-
+ Top RightГорње десно
-
+ Bottom LeftДоње лево
-
+ Bottom RightДоње десно
-
+ PerspectiveПерспектива
@@ -126,7 +134,7 @@
DebugDialog
-
+ Debug LogЗапис за дебугирање
@@ -134,23 +142,23 @@
DemoNotice
-
-
+
+ Welcome to Olive!Добродошли у Olive!
-
+ Olive is a free open-source video editor released under the GNU GPL. If you have paid for this software, you have been scammed.Olive је слободан видео уређивач са отвореним изворним кодом издан под GNU GPL-ом. Ако сте платили за овај софтвер, ви сте били преварени.
-
+ This software is currently in ALPHA which means it is unstable and very likely to crash, have bugs, and have missing features. We offer no warranty so use at your own risk. Please report any bugs or feature requests at %1Овај софтвер је тренутно у АЛФА стању, што значи да је нестабилан и веома је вероватно да ће се срушити, имати грешака и да не достаје неких могућности. Ми не даје никакву гаранцију, тако да користите на свој сопствени ризик. Молимо да пријавите све грешке и жељене функције на %1
-
+ Thank you for trying Olive and we hope you enjoy it!Хвала што испробавате Olive и надамо се да ћете уживати у њему!
@@ -158,89 +166,89 @@
Effect
-
+ Invalid effectНеважећи ефекат
-
+ No candidate for effect '%1'. This effect may be corrupt. Try reinstalling it or Olive.Нема кандидата за ефекат '%1'. Могуће је да је овај ефекат коруптиран. Покушајте поновно инсталирати њега или Olive.
-
+ Cu&t&Режи
-
+ &Copy&Копирај
-
+ Move &UpПомери &горе
-
+ Move &DownПомери &доле
-
+ D&elete&Обриши
-
+ Load Settings From FileУчитај поставке из датотеке
-
+ Save Settings to FileСпаси поставке у датотеку
-
+ Save Effect SettingsСпаси пиставке ефекта
-
-
+
+ Effect XML Settings %1XML поставке ефекта %1
-
+ Save Settings FailedСпашавање поставки неуспешно
-
+ Failed to open "%1" for writing.Неуспешно отварање "%1" за уређивање.
-
+ Load Effect SettingsУчитај поставке ефекта
-
-
+
+ Load Settings FailedУчитавање поставки неуспешно
-
+ Failed to open "%1" for reading.Неуспешно отварање "%1" за читање.
-
+ This settings file doesn't match this effect.Ова датотека поставки није прикладна за овај ефекат.
@@ -248,47 +256,47 @@
EffectControls
-
+ Effects: Ефекти:
-
+ &Paste&Залепи
-
+ Add Video EffectДодај видео ефекат
-
+ VIDEO EFFECTSВидео ефекти
-
+ Add Video TransitionДодај видео прелаз
-
+ Add Audio EffectДодај аудио ефекат
-
+ AUDIO EFFECTSАудио ефекти
-
+ Add Audio TransitionДодај аудио прелаз
-
+ (Multiple clips selected)(Више снимки је одабрано)
@@ -296,12 +304,12 @@
EffectRow
-
+ Disable KeyframesОнемогући кључне кадрове
-
+ Disabling keyframes will delete all current keyframes. Are you sure you want to do this?Онемогућавање кључних кадрова ће обрисати све тренутне кључне кадрове. Да ли сте сигурни да желите ово урадити?
@@ -309,7 +317,7 @@
EmbeddedFileChooser
-
+ File:Датотека:
@@ -317,98 +325,98 @@
ExportDialog
-
+ Export "%1"Извоз "%1"
-
+ Unknown codec name %1Непознато име кодека %1
-
+ Export FailedИзвоз неуспешан
-
+ Export failed - %1Извоз неуспешан - %1
-
+ Invalid dimensionsНеважеће димензије
-
+ Export width and height must both be even numbers/divisible by 2.Висина и ширина извоза обе морају бити парни бројеви/дељиве са два.
-
+ Invalid codecНеважећи кодек
-
+ Couldn't determine output parameters for the selected codec. This is a bug, please contact the developers.Параметри одабраног кодека се нису могли одредити. Ово је грешка, молимо да контактирате девелопере.
-
+ Invalid formatНеважећи формат
-
+ Couldn't determine output format. This is a bug, please contact the developers.Излазни формат се није могао одредити. Ово је грешка, молимо да контактирате девелопере.
-
+ Export MediaИзвоз медија
-
+ Quality-based (Constant Rate Factor)Базирано на квалитети (Фактор сталне стопе/Constant Rate Factor)
-
+ Constant BitrateСтална стопа битова
-
-
+
+ Invalid CodecНеважећи кодек
-
+ Failed to find a suitable encoder for this codec. Export will likely fail.Трагање за пркладним кодером за овај кодек није успело. Извоз највероватније неће успети.
-
+ Failed to find pixel format for this encoder. Export will likely fail.Трагање за прикладним форматом пиксела за овај кодек није успело. Извоз највероватније неће успети.
-
+ Bitrate (Mbps):Стопа битова (Mbps):
-
+ Quality (CRF):Квалитета (CRF):
-
+ Quality Factor:
0 = lossless
@@ -423,73 +431,73 @@
51 = најнижа квалитета могућа
-
+ Target File Size (MB):Жељена величина датотеке (MB):
-
+ Format:Формат:
-
+ Range:Распон:
-
+ Entire SequenceЧитава секвенца
-
+ In to OutОд почетка до краја
-
+ VideoВидео
-
-
+
+ Codec:Кодек:
-
+ Width:Ширина:
-
+ Height:Висина:
-
+ Frame Rate:Оквирна стопа:
-
+ Compression Type:Тип компримације:
-
+ AdvancedНапредно
-
+ Sampling Rate:Стопа узорака:
-
+ Bitrate (Kbps/CBR):Стопа битова (Kbps/CBR):
@@ -497,87 +505,87 @@
ExportThread
-
+ failed to send frame to encoder (%1)Слање оквира кодеру није успело (%1)
-
+ failed to receive packet from encoder (%1)Примање пакета од кодера није успело (%1)
-
+ could not video encoder for %1Није могао видео кодер за %1
-
+ could not allocate video streamВидео ток се није могао заузети
-
+ could not allocate video encoding contextКонтекст видео кодирања се није могао заузети
-
+ could not open output video encoder (%1)Излазни видео кодер се није могао отворити (%1)
-
+ could not copy video encoder parameters to output stream (%1)Параметри видео кодера се нису могли копирати у излазни ток (%1)
-
+ could not audio encoder for %1Није могао аудио кодер за %1
-
+ could not allocate audio streamАудио ток се није могао заузети
-
+ could not allocate audio encoding contextКонтекст аудио кодирања се није могао заузети
-
+ could not open output audio encoder (%1)Излаз аудио кодера се није могао отворити (%1)
-
+ could not copy audio encoder parameters to output stream (%1)Параметри аудио кодера се нису могли копирати у излазни ток (%1)
-
+ could not allocate audio buffer (%1)Аудио међуспремник се није могао заузети (%1)
-
+ could not create output format contextКонтекст излазног формата се није могао створити
-
+ could not open output file (%1)Излазна датотека се није могла отворити (%1)
-
+ could not write output file header (%1)Заглавље излазне датотеке се није могло исписати (%1)
-
+ could not write output file trailer (%1)Подножје излазне датотеке се није могло исписати (%1)
@@ -585,912 +593,745 @@
FillLeftRightEffect
-
+ Type
-
+ Тип
-
+ Fill Left with Right
-
+ Попуни лево са десним
-
+ Fill Right with Left
-
+ Попуни десно са левимFrei0rEffect
-
+ Failed to load Frei0r plugin "%1": %2
-
+ Учитавање Frei0r додатка није успело "%1": %2
-
+ NOTE: You can't load 32-bit Frei0r 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.
-
+ ПАЖЊА: Ви не можете учитавати 32-битне Frei0r додатке у 64-битно издање Olive-a. Молимо нађите 64-битно издање ових додатака, или пређите на 32-битно издање Olive-а.
-
+ NOTE: You can't load 64-bit Frei0r 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.
-
+ ПАЖЊА: Ви не можете учитавати 64-битне Frei0r додатке у 32-битно издање Olive-a. Молимо нађите 32-битно издање ових додатака, или пређите на 64-битно издање Olive-а.
-
+ Error loading Frei0r plugin
-
+ Грешка при учитавању Frei0r додатакаGraphEditor
-
+ Graph Editor
-
+ Уређивач графикона
-
+ Linear
-
+ Линеарно
-
+ Bezier
-
+ Bezier
-
+ Hold
-
+ ДржиGraphView
-
+ Zoom to Selection
-
+ Повећај ка одабиру
-
+ Zoom to Show All
-
+ Повећај ка свему
-
+ Reset View
-
+ Врати првобитни приказInterlacingName
-
+ None (Progressive)
-
+ Нема (прогресивно)
-
+ Top Field First
-
+ Горње поље прво
-
+ Bottom Field First
-
+ Доње поље прво
-
+ Invalid
- Неважеће
+ НеважећеKeyframeNavigator
-
+ Enable Keyframes
-
+ Омогући кључне кадровеKeyframeView
-
+ Linear
-
+ Линеарно
-
+ Bezier
-
+ Bezier
-
+ Hold
-
+ ДржиLabelSlider
-
-
+
+ Set Value
-
+ Одреди вредност
-
-
+
+ New value:
-
+ Нова вредност:LoadDialog
-
+ Loading...
-
+ Учитавање...
-
+ Loading '%1'...
-
+ Учитавање "%1"...
-
+ Cancel
-
+ ПрекиниLoadThread
-
+ Version Mismatch
-
+ Верзије се не поклапају
-
+ This project was saved in a different version of Olive and may not be fully compatible with this version. Would you like to attempt loading it anyway?
-
+ Овај проекат је био спашен у другачијој верзији 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
-
+ %1 - Ред: %2 Колона: %3
-
+ User aborted loading
-
+ Корисник је прекинуо учитавање
-
+ XML Parsing Error
-
+ Грешка у парсирању XML-а
-
+ Couldn't load '%1'. %2
-
+ "%1": %2 се није могло учитати
-
+ Project Load Error
-
+ Грешка при учитавању проекта
-
+ Error loading project: %1
-
+ Грешка при учитавању проекта: %1MainWindow
-
+ Welcome to %1
-
- Auto-recovery
-
-
-
-
- Olive didn't close properly and an autorecovery file was detected. Would you like to open it?
-
-
-
-
- &Project
-
-
-
-
- &Sequence
-
-
-
-
- &Folder
-
-
-
-
- Set In Point
-
-
-
-
- Set Out Point
-
-
-
-
- Reset In Point
-
-
-
-
- Reset Out Point
-
-
-
-
- Clear In/Out Point
-
-
-
-
- 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
-
+ <неименовано>Marker
-
+ Set Marker
-
+ Set clip marker name:
-
+ Set sequence marker name:
@@ -1498,52 +1339,52 @@
Media
-
+ New Folder
-
+ Name:
-
+ Filename:
-
+ Video Dimensions:
-
+ Frame Rate:
- Оквирна стопа:
+ Оквирна стопа:
-
+ %1 field(s) (%2 frame(s))
-
+ Interlacing:
-
+ Audio Frequency:
-
+ Audio Channels:
-
+ Name: %1
Video Dimensions: %2x%3
Frame Rate: %4
@@ -1552,17 +1393,17 @@ Audio Layout: %6
-
+ Name
-
+ Duration
-
+ Rate
@@ -1570,27 +1411,27 @@ Audio Layout: %6
MediaPropertiesDialog
-
+ "%1" Properties
-
+ Tracks:
-
+ Video %1: %2x%3 %4FPS
-
+ Audio %1: %2Hz %3
-
+ %n channel(s)
@@ -1599,163 +1440,354 @@ Audio Layout: %6
-
+ Conform to Frame Rate:
-
+ Alpha is Premultiplied
-
+ Auto (%1)
-
+ Interlacing:
-
+ Name:
+
+ MenuHelper
+
+
+ &Project
+
+
+
+
+ &Sequence
+
+
+
+
+ &Folder
+
+
+
+
+ Set In Point
+
+
+
+
+ Set Out Point
+
+
+
+
+ Reset In Point
+
+
+
+
+ Reset Out Point
+
+
+
+
+ Clear In/Out Point
+
+
+
+
+ Add Default Transition
+
+
+
+
+ Link/Unlink
+
+
+
+
+ Enable/Disable
+
+
+
+
+ Nest
+
+
+
+
+ Cu&t
+ &Режи
+
+
+
+ Cop&y
+
+
+
+
+ &Paste
+ &Залепи
+
+
+
+ Paste Insert
+
+
+
+
+ Duplicate
+
+
+
+
+ Delete
+
+
+
+
+ Ripple Delete
+
+
+
+
+ Split
+
+
+
+
+ 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):
+
+
+NewSequenceDialog
-
+ Editing "%1"
-
+ New Sequence
-
+ Preset:
-
+ Film 4K
-
+ TV 4K (Ultra HD/2160p)
-
+ 1080p
-
+ 720p
-
+ 480p
-
+ 360p
-
+ 240p
-
+ 144p
-
+ NTSC (480i)
-
+ PAL (576i)
-
+ Custom
-
+ Video
- Видео
+ Видео
-
+ Width:
- Ширина:
+ Ширина:
-
+ Height:
- Висина:
+ Висина:
-
+ Frame Rate:
- Оквирна стопа:
+ Оквирна стопа:
-
+ Pixel Aspect Ratio:
-
+ Square Pixels (1.0)
-
+ Interlacing:
-
+ None (Progressive)
-
+ Нема (прогресивно)
-
+ Audio
- Аудио
+ Аудио
-
+ Sample Rate:
-
+ Name:
+
+ OliveGlobal
+
+
+ Olive Project %1
+
+
+
+
+ Auto-recovery
+
+
+
+
+ Olive didn't close properly and an autorecovery file was detected. Would you like to open it?
+
+
+
+
+ Open Project...
+
+
+
+
+ Missing recent project
+
+
+
+
+ The project '%1' no longer exists. Would you like to remove it from the recent projects list?
+
+
+
+
+ Save Project As...
+
+
+
+
+ Unsaved Project
+
+
+
+
+ This project has changed since it was last saved. Would you like to save it before closing?
+
+
+
+
+ No active sequence
+
+
+
+
+ Please open the sequence you wish to export.
+
+
+
+
+ Missing Project File
+
+
+
+
+ Specified project '%1' does not exist.
+
+
+PanEffect
-
+ Pan
@@ -1763,7 +1795,7 @@ Audio Layout: %6
Playback
-
+ Generating Proxy: %1%
@@ -1771,283 +1803,273 @@ 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
-
+ 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
@@ -2055,12 +2077,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
@@ -2068,94 +2090,94 @@ Seek quickly (may briefly show inaccurate frames when seeking - doesn't aff
Project
-
+ Search media, markers, etc.
-
+ Project
-
+ Sequence
-
+ Replace '%1'
-
-
+
+ All Files
-
-
+
+ No active sequence
-
+ No sequence is active, please open the sequence you want to replace clips from.
-
+ Active sequence selected
-
+ You cannot insert a sequence into itself, so no clips of this media would be in this sequence.
-
+ Rename '%1'
-
+ Enter new name:
-
+ Delete media in use?
-
+ The media '%1' is currently used in '%2'. Deleting it will remove all instances in the sequence. Are you sure you want to do this?
-
+ Skip
-
+ Image sequence detected
-
+ The file '%1' appears to be part of an image sequence. Would you like to import it as such?
-
+ Import media...
-
+ No sequence is active, please open the sequence you want to delete clips from.
@@ -2163,77 +2185,77 @@ Seek quickly (may briefly show inaccurate frames when seeking - doesn't aff
ProxyDialog
-
+ Create Proxy
-
+ Proxy
-
+ Dimensions:
-
+ Same Size as Source
-
+ Half Resolution (1/2)
-
+ Quarter Resolution (1/4)
-
+ Eighth Resolution (1/8)
-
+ Sixteenth Resolution (1/16)
-
+ Format:
- Формат:
+ Формат:
-
+ ProRes HQ
-
+ Location:
-
+ Same as Source (in "%1" folder)
-
+ Proxy file exists
-
+ The file "%1" already exists. Do you wish to replace it?
-
+ Custom Location
@@ -2241,7 +2263,7 @@ Seek quickly (may briefly show inaccurate frames when seeking - doesn't aff
ProxyGenerator
-
+ Finished generating proxy for "%1"
@@ -2249,67 +2271,67 @@ Seek quickly (may briefly show inaccurate frames when seeking - doesn't aff
ReplaceClipMediaDialog
-
+ Replace clips using "%1"
-
+ Select which media you want to replace this media's clips with:
-
+ Keep the same media in-points
-
+ Replace
-
+ Cancel
-
+ Прекини
-
+ No media selected
-
+ Please select a media to replace with or click 'Cancel'.
-
+ Same media selected
-
+ You selected the same media that you're replacing. Please select a different one or click 'Cancel'.
-
+ Folder selected
-
+ You cannot replace footage with a folder.
-
+ Active sequence selected
-
+ You cannot insert a sequence into itself.
@@ -2317,7 +2339,7 @@ Seek quickly (may briefly show inaccurate frames when seeking - doesn't aff
Sequence
-
+ %1 (copy)
@@ -2325,17 +2347,17 @@ Seek quickly (may briefly show inaccurate frames when seeking - doesn't aff
ShakeEffect
-
+ Intensity
-
+ Rotation
-
+ Frequency
@@ -2343,37 +2365,37 @@ Seek quickly (may briefly show inaccurate frames when seeking - doesn't aff
SolidEffect
-
+ Type
-
+ Тип
-
+ Solid Color
-
+ SMPTE Bars
-
+ Checkerboard
-
+ Opacity
-
+ Color
-
+ Checkerboard Size
@@ -2381,137 +2403,137 @@ Seek quickly (may briefly show inaccurate frames when seeking - doesn't aff
SourcesCommon
-
+ Import...
-
+ New
-
+ View
-
+ Tree View
-
+ Icon View
-
+ Show Toolbar
-
+ Show Sequences
-
+ Replace/Relink Media
-
+ Reveal in Explorer
-
+ Reveal in Finder
-
+ Reveal in File Manager
-
+ Replace Clips Using This Media
-
+ Create Sequence With This Media
-
+ Duplicate
-
+ Delete All Clips Using This Media
-
+ Proxy
-
+ Generating proxy: %1% complete
-
+ Create/Modify Proxy
-
+ Create Proxy
-
+ Modify Proxy
-
+ Restore Original
-
+ Delete
-
+ Properties...
-
+ Replace Media
-
+ You dropped a file onto '%1'. Would you like to replace it with the dropped file?
-
+ Delete proxy
-
+ Would you like to delete the proxy file "%1" as well?
@@ -2519,37 +2541,37 @@ Seek quickly (may briefly show inaccurate frames when seeking - doesn't aff
SpeedDialog
-
+ Speed/Duration
-
+ Speed:
-
+ Frame Rate:
- Оквирна стопа:
+ Оквирна стопа:
-
+ Duration:
-
+ Reverse
-
+ Maintain Audio Pitch
-
+ Ripple Changes
@@ -2557,7 +2579,7 @@ Seek quickly (may briefly show inaccurate frames when seeking - doesn't aff
TextEditDialog
-
+ Edit Text
@@ -2565,113 +2587,113 @@ Seek quickly (may briefly show inaccurate frames when seeking - doesn't aff
TextEffect
-
+ Text
-
+ Font
-
+ Size
-
+ Color
-
+ Alignment
-
+ Left
-
-
+
+ Center
-
+ Right
-
+ Justify
-
+ Top
-
+ Bottom
-
+ Word Wrap
-
+ Outline
-
+ Outline Color
-
+ Outline Width
-
+ Shadow
-
+ Shadow Color
-
+ Shadow Distance
-
+ Shadow Softness
-
+ Shadow Opacity
-
+ Sample Text
-
+ &Edit Text
@@ -2679,47 +2701,47 @@ Seek quickly (may briefly show inaccurate frames when seeking - doesn't aff
TimecodeEffect
-
+ Timecode
-
+ Sequence
-
+ Media
-
+ Scale
-
+ Color
-
+ Background Color
-
+ Background Opacity
-
+ Offset
-
+ Prepend
@@ -2727,147 +2749,152 @@ Seek quickly (may briefly show inaccurate frames when seeking - doesn't aff
Timeline
-
+
+ Nested Sequence
+
+
+
+ Timeline:
-
+ <none>
-
+ 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.
@@ -2875,7 +2902,7 @@ Seek quickly (may briefly show inaccurate frames when seeking - doesn't aff
TimelineHeader
-
+ Center Timecodes
@@ -2883,77 +2910,62 @@ Seek quickly (may briefly show inaccurate frames when seeking - doesn't aff
TimelineWidget
-
+ &Undo
-
+ &Redo
-
+ C&ut
-
+ Cop&y
-
+ &Paste
- &Залепи
+ &Залепи
-
+ R&ipple Delete
-
+ Sequence Settings
-
+ &Speed/Duration
-
+ Auto-s&cale
-
- Enable/Disable
-
-
-
-
- Link/Unlink
-
-
-
-
- &Nest
-
-
-
-
+ &Reveal in Project
-
+ R&ename
-
+ %1
Start: %2
End: %3
@@ -2961,57 +2973,57 @@ Duration: %4
-
+ Rename '%1'
-
+ Rename multiple clips
-
+ Enter a new name for this clip:
-
+ Error
-
+ Couldn't locate media wrapper for sequence.
-
+ Title
-
+ Solid Color
-
+ Bars
-
+ Tone
-
+ Noise
-
+ Duration:
@@ -3019,180 +3031,180 @@ Duration: %4
ToneEffect
-
+ Type
-
+ Тип
-
+ Frequency
-
+ Amount
- Количина
+ Количина
-
+ Mix
- Микс
+ МиксTransformEffect
-
+ Position
-
+ Scale
-
+ Uniform Scale
-
+ Rotation
-
+ Anchor Point
-
+ Opacity
-
+ Blend Mode
-
+ Normal
-
+ Darken
-
+ Multiply
-
+ Color Burn
-
+ Linear Burn
-
+ Lighten
-
+ Screen
-
+ Color Dodge
-
+ Linear Dodge (Add)
-
+ Overlay
-
+ Soft Light
-
+ Hard Light
-
+ Vivid Light
-
+ Linear Light
-
+ Pin Light
-
+ Hard Mix
-
+ Difference
-
+ Exclusion
-
+ Reflect
-
+ Substract
-
+ Average
-
+ Glow
-
+ Negation
-
+ Phoenix
@@ -3200,7 +3212,7 @@ Duration: %4
Transition
-
+ Length
@@ -3208,64 +3220,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
@@ -3273,17 +3285,17 @@ Duration: %4
Viewer
-
+ Sequence Viewer
-
+ Media Viewer
-
+ (none)
@@ -3291,57 +3303,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:
@@ -3349,7 +3361,7 @@ Duration: %4
ViewerWindow
-
+ Exit Fullscreen
@@ -3357,12 +3369,12 @@ Duration: %4
VoidEffect
-
+ (unknown)
-
+ Missing Effect
@@ -3370,7 +3382,7 @@ Duration: %4
VolumeEffect
-
+ Volume
@@ -3378,12 +3390,12 @@ Duration: %4
transition
-
+ Invalid transition
-
+ No candidate for transition '%1'. This transition may be corrupt. Try reinstalling it or Olive.