From c869c1911bb6bd849af26b314816ef8632bfcf3f Mon Sep 17 00:00:00 2001 From: Denvi Date: Sat, 3 Oct 2015 21:59:08 +0500 Subject: [PATCH] Prepare version 0.6 --- frmmain.cpp | 38 +- frmsettings.cpp | 2 + frmsettings.ui | 47 +- main.cpp | 22 +- translations/grblControl_es.qm | Bin 0 -> 15334 bytes translations/grblControl_es.ts | 4 +- translations/grblControl_ru.qm | Bin 15263 -> 15221 bytes translations/qt_es.qm | Bin 0 -> 82411 bytes translations/qt_es.ts | 8082 ++++++++++++++++++++++++ translations/qt_ru.ts | 10278 +++++++++++++++++++++++++++++++ 10 files changed, 18432 insertions(+), 41 deletions(-) create mode 100644 translations/grblControl_es.qm create mode 100644 translations/qt_es.qm create mode 100644 translations/qt_es.ts create mode 100644 translations/qt_ru.ts diff --git a/frmmain.cpp b/frmmain.cpp index a274f76c..56e1b172 100644 --- a/frmmain.cpp +++ b/frmmain.cpp @@ -31,8 +31,10 @@ frmMain::frmMain(QWidget *parent) : ui->setupUi(this); #ifdef WINDOWS - m_taskBarButton = NULL; - m_taskBarProgress = NULL; + if (QSysInfo::windowsVersion() >= QSysInfo::WV_WINDOWS7) { + m_taskBarButton = NULL; + m_taskBarProgress = NULL; + } #endif #ifndef UNIX @@ -431,7 +433,9 @@ void frmMain::updateControlsState() { if (!m_transferringFile) ui->chkKeyboardControl->setChecked(m_storedKeyboardControl); #ifdef WINDOWS - if (!m_transferringFile && m_taskBarProgress) m_taskBarProgress->hide(); + if (QSysInfo::windowsVersion() >= QSysInfo::WV_WINDOWS7) { + if (!m_transferringFile && m_taskBarProgress) m_taskBarProgress->hide(); + } #endif style()->unpolish(ui->cmdFileOpen); @@ -617,7 +621,9 @@ void frmMain::onSerialPortReadyRead() ui->chkTestMode->setChecked(statusIndex == 6); ui->cmdFilePause->setChecked(statusIndex == 4 || statusIndex == 5); #ifdef WINDOWS - if (m_taskBarProgress) m_taskBarProgress->setPaused(statusIndex == 4 || statusIndex == 5); + if (QSysInfo::windowsVersion() >= QSysInfo::WV_WINDOWS7) { + if (m_taskBarProgress) m_taskBarProgress->setPaused(statusIndex == 4 || statusIndex == 5); + } #endif // Update "elapsed time" timer @@ -884,7 +890,9 @@ void frmMain::onSerialPortReadyRead() // Update taskbar progress #ifdef WINDOWS - if (m_taskBarProgress) m_taskBarProgress->setValue(m_fileProcessedCommandIndex); + if (QSysInfo::windowsVersion() >= QSysInfo::WV_WINDOWS7) { + if (m_taskBarProgress) m_taskBarProgress->setValue(m_fileProcessedCommandIndex); + } #endif // Send next program commands @@ -1018,10 +1026,12 @@ void frmMain::showEvent(QShowEvent *se) placeVisualizerButtons(); #ifdef WINDOWS - if (m_taskBarButton == NULL) { - m_taskBarButton = new QWinTaskbarButton(this); - m_taskBarButton->setWindow(this->windowHandle()); - m_taskBarProgress = m_taskBarButton->progress(); + if (QSysInfo::windowsVersion() >= QSysInfo::WV_WINDOWS7) { + if (m_taskBarButton == NULL) { + m_taskBarButton = new QWinTaskbarButton(this); + m_taskBarButton->setWindow(this->windowHandle()); + m_taskBarProgress = m_taskBarButton->progress(); + } } #endif @@ -1347,10 +1357,12 @@ void frmMain::on_cmdFileSend_clicked() ui->chkKeyboardControl->setChecked(false); #ifdef WINDOWS - if (m_taskBarProgress) { - m_taskBarProgress->setMaximum(m_currentModel->rowCount() - 2); - m_taskBarProgress->setValue(0); - m_taskBarProgress->show(); + if (QSysInfo::windowsVersion() >= QSysInfo::WV_WINDOWS7) { + if (m_taskBarProgress) { + m_taskBarProgress->setMaximum(m_currentModel->rowCount() - 2); + m_taskBarProgress->setValue(0); + m_taskBarProgress->show(); + } } #endif diff --git a/frmsettings.cpp b/frmsettings.cpp index 944c01c4..7baa828e 100644 --- a/frmsettings.cpp +++ b/frmsettings.cpp @@ -509,6 +509,8 @@ void frmSettings::on_cmdDefaults_clicked() ui->clpToolpathZMovement->setColor(QColor(255, 0, 0)); ui->clpToolpathStart->setColor(QColor(255, 0, 0)); ui->clpToolpathEnd->setColor(QColor(0, 255, 0)); + + setFontSize(9); } void frmSettings::on_cboFontSize_currentTextChanged(const QString &arg1) diff --git a/frmsettings.ui b/frmsettings.ui index be34a1fb..8c659609 100644 --- a/frmsettings.ui +++ b/frmsettings.ui @@ -83,9 +83,9 @@ QGroupBox { 0 - -522 - 306 - 963 + -668 + 361 + 1103 @@ -937,9 +937,6 @@ padding-top: 3; - - - @@ -947,24 +944,13 @@ padding-top: 3; - - - - Normal: - - - Toolpath - - - - - - Drawn: + + true @@ -981,9 +967,6 @@ padding-top: 3; - - - @@ -1057,6 +1040,26 @@ padding-top: 3; + + + + Drawn: + + + + + + + + + + + + + Normal: + + + diff --git a/main.cpp b/main.cpp index 76a4ed74..63ece1c6 100644 --- a/main.cpp +++ b/main.cpp @@ -18,21 +18,36 @@ int main(int argc, char *argv[]) { +#ifdef UNIX + bool styleOverrided = false; + for (int i = 0; i < argc; i++) if (QString(argv[i]).toUpper() == "-STYLE") { + styleOverrided = true; + break; + } +#endif + QApplication a(argc, argv); QFontDatabase::addApplicationFont(":/fonts/segoeui.ttf"); QFontDatabase::addApplicationFont(":/fonts/tahoma.ttf"); + +#ifdef GLES QFontDatabase::addApplicationFont(":/fonts/Ubuntu-R.ttf"); +#endif QGLFormat glf = QGLFormat::defaultFormat(); glf.setSampleBuffers(true); glf.setSamples(8); QGLFormat::setDefaultFormat(glf); +// QLocale::setDefault(QLocale("es")); + QString loc = QLocale().name().left(2); QString translationsFolder = qApp->applicationDirPath() + "/translations/"; QString translationFileName = translationsFolder + "grblControl_" + loc + ".qm"; + qDebug() << "locale:" << loc; + if(QFile::exists(translationFileName)) { QTranslator* translator = new QTranslator(); if (translator->load(translationFileName)) a.installTranslator(translator); else delete translator; @@ -47,11 +62,10 @@ int main(int argc, char *argv[]) a.setApplicationVersion(APP_VERSION); -#ifdef UNIX - foreach (QString str, QStyleFactory::keys()) { - qDebug() << str; +#ifdef UNIX + if (!styleOverrided) foreach (QString str, QStyleFactory::keys()) { if (str.contains("GTK+")) { -// a.setStyle(QStyleFactory::create(str)); + a.setStyle(QStyleFactory::create(str)); break; } } diff --git a/translations/grblControl_es.qm b/translations/grblControl_es.qm new file mode 100644 index 0000000000000000000000000000000000000000..db2c6d164fa5e054e55f542f995b3cc0f5fe6f2e GIT binary patch literal 15334 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 Z=Fel?V##i2?((d+lD!rUa(P+V{{klq7U%!~ literal 0 HcmV?d00001 diff --git a/translations/grblControl_es.ts b/translations/grblControl_es.ts index 393073a1..6eb49418 100644 --- a/translations/grblControl_es.ts +++ b/translations/grblControl_es.ts @@ -1,6 +1,6 @@ - + GCodeTableModel @@ -197,7 +197,7 @@ Autoscroll - + Desplazamiento automático diff --git a/translations/grblControl_ru.qm b/translations/grblControl_ru.qm index 4b312e9a5f3961ff2706b8cbb3a39f0f8c237f76..8a6f6c711f352e07623690368c204e29248b7949 100644 GIT binary patch delta 772 zcmXBSZAep590u^`Zs%^f&CU6CnSyh%HRm=rb-7-wRHA%gh!mPsB%!1x^kHOZEus>_ zM6{Do+6&Q}NkeLtVkRl?^rA; wrYe$jNu~Y32D{GgrfBvN?o&vqGrIXGm7VO5X&0Jk`ckM}VKaxq*|Q1%0d&y5k^lez delta 850 zcmXAnYeGMp6CDk|7W(k{bWmoP}I7_ zzWE1$bRb3vCJ1418Q zd&xf_ZVdUJHo!Q70#_}N6w42YCLxA5h$d?}_La_&ZZ-A?H3O>(0!*pGVeb;s(+&5z z<+R5D_lvQ*Vli>JgF0!%qzS4fwexwZHjAG;bXx0BY;7VH<_?~!Fu8^lzL(+D`5Q~v zAOpH6=E&&+^ha1lb3Kq?VAWB1K*T*(bD1{OOtQu=q#(x2ysITZwy+D?17uV?ySa`N z$JwpE8>A?N^?7NUwU-U4$$hJm4=N1FaZ=9I1id;c9a`E6gsY{p9VtNKbE)j&Gvch| zO1ncWk=)_^CXot4TB-|3~b zPT8D$5D4)rUyjmzt0LpFfhKG0oYjV)F1hKQF~b zpVD>~Q6?DG_WyO$zw6OH6^IVKc0r)Y&KUkqG6`?^tdy3SA38Z%POhcO`m9UjYOWmb zpe^D*$h-ZdYS|gNe85OPWy+1kdnw7k@~3&qF2WsP{2CXKs_!`wWHl?q#AH5VGw}+Y OlKX9uJ;Sz#VgCVStJNO> diff --git a/translations/qt_es.qm b/translations/qt_es.qm new file mode 100644 index 0000000000000000000000000000000000000000..519116090e53a139e055f3cbd56dcf8cdde31b51 GIT binary patch literal 82411 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 literal 0 HcmV?d00001 diff --git a/translations/qt_es.ts b/translations/qt_es.ts new file mode 100644 index 00000000..63ec6ab8 --- /dev/null +++ b/translations/qt_es.ts @@ -0,0 +1,8082 @@ + + + + + MAC_APPLICATION_MENU + + + Services + Servicios + + + + Hide %1 + Ocultar %1 + + + + Hide Others + Ocultar otros + + + + Show All + Mostrar todo + + + + Preferences... + Preferencias… + + + + Quit %1 + Salir de %1 + + + + About %1 + Acerca de %1 + + + + AudioOutput + + + <html>The audio playback device <b>%1</b> does not work.<br/>Falling back to <b>%2</b>.</html> + + + + + <html>Switching to the audio playback device <b>%1</b><br/>which just became available and has higher preference.</html> + + + + + Revert back to device '%1' + + + + + CloseButton + + + Close Tab + + + + + PPDOptionsModel + + Name + Nombre + + + Value + Valor + + + + Phonon:: + + + Notifications + + + + + Music + + + + + Video + + + + + Communication + + + + + Games + + + + + Accessibility + + + + + Phonon::Gstreamer::Backend + + + Warning: You do not seem to have the package gstreamer0.10-plugins-good installed. + Some video features have been disabled. + + + + + Warning: You do not seem to have the base GStreamer plugins installed. + All audio and video support has been disabled + + + + + Phonon::Gstreamer::MediaObject + + + Cannot start playback. + +Check your Gstreamer installation and make sure you +have libgstreamer-plugins-base installed. + + + + + A required codec is missing. You need to install the following codec(s) to play this content: %0 + + + + + + + + + + + + Could not open media source. + + + + + Invalid source type. + + + + + Could not locate media source. + + + + + Could not open audio device. The device is already in use. + + + + + Could not decode media source. + + + + + Phonon::VolumeSlider + + + + Volume: %1% + + + + + + + Use this slider to adjust the volume. The leftmost position is 0%, the rightmost is %1% + + + + + Q3Accel + + + %1, %2 not defined + La secuencia %1, %2 no está definida + + + + Ambiguous %1 not handled + Secuencia ambigua %1 no tratada + + + + Q3DataTable + + + True + Verdadero + + + + False + Falso + + + + Insert + Insertar + + + + Update + Actualizar + + + + Delete + Borrar + + + + Q3FileDialog + + + Copy or Move a File + Copiar o mover un fichero + + + + Read: %1 + Lectura: %1 + + + + + Write: %1 + Escritura: %1 + + + + + Cancel + Cancelar + + + + + + + All Files (*) + Todos los ficheros (*) + + + + Name + Nombre + + + + Size + Tamaño + + + + Type + Tipo + + + + Date + Fecha + + + + Attributes + Atributos + + + + + &OK + &Aceptar + + + + Look &in: + Buscar &en: + + + + + + File &name: + &Nombre de fichero: + + + + File &type: + &Tipo de fichero: + + + + Back + Precedente (histórico) + + + + One directory up + Ir al directorio superior + + + + Create New Folder + Crear una nueva carpeta + + + + List View + Vista de lista + + + + Detail View + Vista detallada + + + + Preview File Info + Información del fichero previsualizado + + + + Preview File Contents + Contenido del fichero previsualizado + + + + Read-write + Lectura-escritura + + + + Read-only + Sólo lectura + + + + Write-only + Sólo escritura + + + + Inaccessible + Inaccesible + + + + Symlink to File + Enlace simbólico a un fichero + + + + Symlink to Directory + Enlace simbólico a un directorio + + + + Symlink to Special + Enlace simbólico a un fichero especial + + + + File + Fichero + + + + Dir + Directorio + + + + Special + Fichero especial + + + + + + Open + Abrir + + + + + Save As + Guardar como + + + + + + &Open + &Abrir + + + + + &Save + &Guardar + + + + &Rename + Cambia&r de nombre + + + + &Delete + &Borrar + + + + R&eload + R&ecargar + + + + Sort by &Name + Ordenar por &nombre + + + + Sort by &Size + Ordenar por &tamaño + + + + Sort by &Date + Ordenar por &fecha + + + + &Unsorted + &Sin ordenar + + + + Sort + Ordenar + + + + Show &hidden files + Mostrar los fic&heros ocultos + + + + the file + el fichero + + + + the directory + el directorio + + + + the symlink + el enlace simbólico + + + + Delete %1 + Borrar %1 + + + + <qt>Are you sure you wish to delete %1 "%2"?</qt> + <qt>¿Seguro que desea borrar %1 «%2»?</qt> + + + + &Yes + &Sí + + + + &No + &No + + + + New Folder 1 + Nueva carpeta 1 + + + + New Folder + Nueva carpeta + + + + New Folder %1 + Nueva carpeta %1 + + + + Find Directory + Buscar en el directorio + + + + + Directories + Directorios + + + + Directory: + Directorio: + + + + + Error + Error + + + + %1 +File not found. +Check path and filename. + %1 +Fichero no encontrado. +Compruebe la ruta y el nombre del fichero. + + + + All Files (*.*) + Todos los ficheros (*.*) + + + + Open + Abrir + + + + Select a Directory + Seleccionar un directorio + + + + Q3LocalFs + + + + Could not read directory +%1 + No fue posible leer el directorio +%1 + + + + Could not create directory +%1 + No fue posible crear el directorio +%1 + + + + Could not remove file or directory +%1 + No fue posible eliminar el fichero o directorio +%1 + + + + Could not rename +%1 +to +%2 + No fue posible cambiar el nombre +%1 +a +%2 + + + + Could not open +%1 + No fue posible abrir +%1 + + + + Could not write +%1 + No fue posible escribir +%1 + + + + Q3MainWindow + + + Line up + Alinear + + + + Customize... + Personalizar... + + + + Q3NetworkProtocol + + + Operation stopped by the user + Operación detenida por el usuario + + + + Q3ProgressDialog + + + + Cancel + Cancelar + + + + Q3TabDialog + + + + OK + Aceptar + + + + Apply + Aplicar + + + + Help + Ayuda + + + + Defaults + Valores por omisión + + + + Cancel + Cancelar + + + + Q3TextEdit + + + &Undo + &Deshacer + + + + &Redo + &Rehacer + + + + Cu&t + Cor&tar + + + + &Copy + &Copiar + + + + &Paste + &Pegar + + + + Clear + Limpiar + + + + + Select All + Seleccionar todo + + + + Q3TitleBar + + + System + Sistema + + + + Restore up + Restaurar arriba + + + + Minimize + Minimizar + + + + Restore down + Restaurar abajo + + + + Maximize + Maximizar + + + + Close + Cerrar + + + + Contains commands to manipulate the window + Contiene órdenes para manipular la ventana + + + + Puts a minimized back to normal + Devuelve una ventana minimizada a su aspecto normal + + + + Moves the window out of the way + Aparta la ventana + + + + Puts a maximized window back to normal + Devuelve una ventana maximizada a su aspecto normal + + + + Makes the window full screen + Muestra la ventana en pantalla completa + + + + Closes the window + Cierra la ventana + + + + Displays the name of the window and contains controls to manipulate it + Muestra el nombre de la ventana y contiene controles para manipularla + + + + Q3ToolBar + + + More... + Más... + + + + Q3UrlOperator + + + + + The protocol `%1' is not supported + El protocolo «%1» no está contemplado + + + + The protocol `%1' does not support listing directories + El protocolo «%1» no permite listar los ficheros de un directorio + + + + The protocol `%1' does not support creating new directories + El protocolo «%1» no permite crear nuevos directorios + + + + The protocol `%1' does not support removing files or directories + El protocolo «%1» no permite eliminar ficheros o directorios + + + + The protocol `%1' does not support renaming files or directories + El protocolo «%1» no permite cambiar de nombre ficheros o directorios + + + + The protocol `%1' does not support getting files + El protocolo «%1» no permite recibir ficheros + + + + The protocol `%1' does not support putting files + El protocolo «%1» no permite enviar ficheros + + + + + The protocol `%1' does not support copying or moving files or directories + El protocolo «%1» no permite copiar o mover ficheros o directorios + + + + + (unknown) + (desconocido) + + + + Q3Wizard + + + &Cancel + &Cancelar + + + + < &Back + < &Anterior + + + + &Next > + Siguie&nte > + + + + &Finish + &Terminar + + + + &Help + &Ayuda + + + + QAbstractSocket + + + + + + Host not found + Equipo no encontrado + + + + + + Connection refused + Conexión rechazada + + + + Connection timed out + Conexión expirada + + + + + + Operation on socket is not supported + + + + + Socket operation timed out + Operación socket expirada + + + + Socket is not connected + El socket no está conectado + + + + Network unreachable + Red inalcanzable + + + + QAbstractSpinBox + + + &Step up + &Aumentar + + + + Step &down + Re&ducir + + + + &Select All + &Seleccionar todo + + + + QApplication + + + Activate + Activar + + + + Executable '%1' requires Qt %2, found Qt %3. + El ejecutable «%1» requiere Qt %2 (se encontró Qt %3). + + + + Incompatible Qt Library Error + Error: biblioteca Qt incompatible + + + + QT_LAYOUT_DIRECTION + Translate this string to the string 'LTR' in left-to-right languages or to 'RTL' in right-to-left languages (such as Hebrew and Arabic) to get proper widget layout. + LTR + + + + Activates the program's main window + Activa la ventana principal del programa + + + + QAxSelect + + + Select ActiveX Control + Seleccionar un control ActiveX + + + + OK + Aceptar + + + + &Cancel + &Cancelar + + + + COM &Object: + &Objeto COM: + + + + QCheckBox + + + Uncheck + Desmarcar + + + + Check + Marcar + + + + Toggle + Conmutar + + + + QColorDialog + + + Hu&e: + &Tono: + + + + &Sat: + &Saturación: + + + + &Val: + &Valor: + + + + &Red: + &Rojo: + + + + &Green: + &Verde: + + + + Bl&ue: + Az&ul: + + + + A&lpha channel: + Canal a&lfa: + + + + Select Color + + + + + &Basic colors + Colores &básicos + + + + &Custom colors + &Colores personalizados + + + &Define Custom Colors >> + &Definir colores personalizados >> + + + OK + Aceptar + + + Cancel + Cancelar + + + + &Add to Custom Colors + &Añadir a los colores personalizados + + + Select color + Seleccionar color + + + + QComboBox + + + + Open + Abrir + + + + False + Falso + + + + True + Verdadero + + + + Close + Cerrar + + + + QCoreApplication + + + %1: key is empty + QSystemSemaphore + + + + + %1: unable to make key + QSystemSemaphore + + + + + %1: ftok failed + QSystemSemaphore + + + + + QDB2Driver + + + Unable to connect + Imposible establecer una conexión + + + + Unable to commit transaction + Incapaz de enviar la transacción + + + + Unable to rollback transaction + Incapaz de anular la transacción + + + + Unable to set autocommit + Incapaz de activar el envío automático + + + + QDB2Result + + + + Unable to execute statement + Imposible ejecutar la instrucción + + + + Unable to prepare statement + Imposible preparar la instrucción + + + + Unable to bind variable + No es posible ligar la variable + + + + Unable to fetch record %1 + Imposible obtener el registro %1 + + + + Unable to fetch next + Imposible recuperar el siguiente + + + + Unable to fetch first + Imposible recuperar el primero + + + + QDateTimeEdit + + + AM + AM + + + + am + am + + + + PM + PM + + + + pm + pm + + + + QDial + + + QDial + QDial + + + + SpeedoMeter + Velocímetro + + + + SliderHandle + Asa del deslizador + + + + QDialog + + + What's This? + ¿Qué es esto? + + + + Done + Terminar + + + + QDialogButtonBox + + + + + OK + Aceptar + + + + Save + Guardar + + + + &Save + &Guardar + + + + Open + Abrir + + + + Cancel + Cancelar + + + + &Cancel + &Cancelar + + + + Close + Cerrar + + + + &Close + &Cerrar + + + + Apply + Aplicar + + + + Reset + Reinicializar + + + + Help + Ayuda + + + + Don't Save + No guardar + + + + Discard + Descartar + + + + &Yes + &Sí + + + + Yes to &All + Sí a &todo + + + + &No + &No + + + + N&o to All + N&o a todo + + + + Save All + Guardar todo + + + + Abort + Interrumpir + + + + Retry + Reintentar + + + + Ignore + Ignorar + + + + Restore Defaults + Restaurar los valores predeterminados + + + + Close without Saving + Cerrar sin guardar + + + + &OK + &Aceptar + + + + QDirModel + + + Name + Nombre + + + + Size + Tamaño + + + Kind + Match OS X Finder + + Clase + + + + Type + All other platforms + Tipo + + + + Date Modified + Última modificación + + + + Kind + Match OS X Finder + Clase + + + + QDockWidget + + + Close + Cerrar + + + + Dock + Anclada + + + + Float + Flotante + + + + QDoubleSpinBox + + + More + Más + + + + Less + Menos + + + + QErrorMessage + + + Debug Message: + Mensaje de depuración: + + + + Warning: + Aviso: + + + + Fatal Error: + Error fatal: + + + + &Show this message again + Mo&strar este mensaje de nuevo + + + + &OK + &Aceptar + + + + QFile + + + + Destination file exists + + + + + Cannot remove source file + + + + + Cannot open %1 for input + + + + + Cannot open for output + + + + + Failure to write block + + + + + Cannot create %1 for output + + + + + QFileDialog + + + + All Files (*) + Todos los ficheros (*) + + + + Directories + Directorios + + + + + + + &Open + &Abrir + + + + + &Save + &Guardar + + + + Open + Abrir + + + + %1 already exists. +Do you want to replace it? + El fichero %1 ya existe. +¿Desea reemplazarlo? + + + + %1 +File not found. +Please verify the correct file name was given. + %1 +Fichero no encontrado. +Verifique que el nombre del fichero es correcto. + + + + My Computer + Mi equipo + + + + &Rename + Cambia&r de nombre + + + + &Delete + &Borrar + + + + Show &hidden files + Mostrar los fic&heros ocultos + + + + + Back + Anterior (histórico) + + + + + Parent Directory + Directorio superior + + + + + List View + Vista de lista + + + + + Detail View + Vista detallada + + + + + Files of type: + Ficheros de tipo: + + + + + Directory: + Directorio: + + + +File not found. +Please verify the correct file name was given + +Fichero no encontrado. +Compruebe que el nombre del fichero es correcto + + + + + %1 +Directory not found. +Please verify the correct directory name was given. + %1 +Directorio no encontrado. +Verique que el nombre del directorio es correcto. + + + + '%1' is write protected. +Do you want to delete it anyway? + «%1» está protegido contra escritura. +¿Desea borrarlo de todas formas? + + + + Are sure you want to delete '%1'? + ¿Seguro que desea borrar «%1»? + + + + Could not delete directory. + No fue posible borrar el directorio. + + + + Recent Places + + + + + All Files (*.*) + Todos los ficheros (*.*) + + + + Save As + Guardar como + + + + Drive + Unidad + + + + + File + Fichero + + + + Unknown + Desconocido + + + + Find Directory + Buscar en el directorio + + + + Show + Mostrar + + + + + Forward + Siguiente (histórico) + + + + New Folder + Nueva carpeta + + + + &New Folder + &Nueva carpeta + + + + + &Choose + &Seleccionar + + + + Remove + Eliminar + + + + + File &name: + &Nombre de fichero: + + + + + Look in: + Ver en: + + + + + Create New Folder + Crear una nueva carpeta + + + + QFileSystemModel + + + %1 TB + %1 TiB + + + + %1 GB + %1 GiB + + + + %1 MB + %1 MiB + + + + %1 KB + %1 KiB + + + + %1 bytes + %1 bytes + + + + Invalid filename + Nombre de fichero no válido + + + + <b>The name "%1" can not be used.</b><p>Try using another name, with fewer characters or no punctuations marks. + <b>No se puede utilizar el nombre «%1».</b><p>Intente usar otro nombre con menos caracteres o sin signos de puntuación. + + + + Name + Nombre + + + + Size + Tamaño + + + + Kind + Match OS X Finder + Clase + + + Type + +All other platforms + Tipo + + + + Date Modified + Última modificación + + + + My Computer + Mi equipo + + + + Computer + Equipo + + + + Type + All other platforms + Tipo + + + + QFontDatabase + + + + Normal + + + + + + + Bold + + + + + + Demi Bold + + + + + + + Black + + + + + Demi + + + + + + Light + + + + + + Italic + + + + + + Oblique + + + + + Any + + + + + Latin + + + + + Greek + + + + + Cyrillic + + + + + Armenian + + + + + Hebrew + + + + + Arabic + + + + + Syriac + + + + + Thaana + + + + + Devanagari + + + + + Bengali + + + + + Gurmukhi + + + + + Gujarati + + + + + Oriya + + + + + Tamil + + + + + Telugu + + + + + Kannada + + + + + Malayalam + + + + + Sinhala + + + + + Thai + + + + + Lao + + + + + Tibetan + + + + + Myanmar + + + + + Georgian + + + + + Khmer + + + + + Simplified Chinese + + + + + Traditional Chinese + + + + + Japanese + + + + + Korean + + + + + Vietnamese + + + + + Symbol + + + + + Ogham + + + + + Runic + + + + + QFontDialog + + + &Font + &Tipo de letra + + + + Font st&yle + &Estilo del tipo de letra + + + + &Size + &Tamaño + + + + Effects + Efectos + + + + Stri&keout + &Tachado + + + + &Underline + S&ubrayado + + + + Sample + Muestra + + + + Wr&iting System + Sistema de escr&itura + + + + + Select Font + Seleccionar un tipo de letra + + + + QFtp + + + + Not connected + No conectado + + + + + Host %1 not found + Equipo %1 no encontrado + + + + + Connection refused to host %1 + Conexión rechazada al equipo %1 + + + + Connection timed out to host %1 + + + + + + + Connected to host %1 + Conectado al equipo %1 + + + + + Connection refused for data connection + Conexión para conexión de datos rechazada + + + + + + + Unknown error + Error desconocido + + + + + Connecting to host failed: +%1 + La conexión con el equipo ha fallado: +%1 + + + + + Login failed: +%1 + Identificación fallida: +%1 + + + + + Listing directory failed: +%1 + El listado del directorio ha fallado: +%1 + + + + + Changing directory failed: +%1 + Fallo del cambio de directorio: +%1 + + + + + Downloading file failed: +%1 + Fallo de la descarga del fichero: +%1 + + + + + Uploading file failed: +%1 + El envío del fichero ha fallado: +%1 + + + + + Removing file failed: +%1 + Eliminación de fichero fallida: +%1 + + + + + Creating directory failed: +%1 + Fallo de la creación de un directorio: +%1 + + + + + Removing directory failed: +%1 + Eliminación de directorio fallida: +%1 + + + + + + Connection closed + Conexión cerrada + + + + Host %1 found + Equipo %1 encontrado + + + + Connection to %1 closed + Conexión a %1 cerrada + + + + Host found + Equipo encontrado + + + + Connected to host + Conectado al equipo + + + + QHostInfo + + + Unknown error + Error desconocido + + + + QHostInfoAgent + + + + + + + + + + Host not found + Equipo no encontrado + + + + + + + Unknown address type + Dirección de tipo desconocido + + + + + + Unknown error + Error desconocido + + + + QHttp + + + HTTPS connection requested but SSL support not compiled in + + + + + + + + Unknown error + Error desconocido + + + + + Request aborted + Solicitud interrumpida + + + + + No server set to connect to + No se ha indicado ningún servidor al que conectarse + + + + + Wrong content length + Longitud del contenido errónea + + + + + Server closed connection unexpectedly + El servidor cerró la conexión inesperadamente + + + + Unknown authentication method + + + + + Error writing response to device + + + + + + Connection refused + Conexión rechazada + + + + + + Host %1 not found + Equipo %1 no encontrado + + + + + + + HTTP request failed + Solicitud HTTP fallida + + + + + Invalid HTTP response header + Cabecera de respuesta HTTP no válida + + + + + + + Invalid HTTP chunked body + Fragmento HTTP no válido + + + + Host %1 found + Equipo %1 encontrado + + + + Connected to host %1 + Conectado al equipo %1 + + + + Connection to %1 closed + Conexión a %1 cerrada + + + + Host found + Equipo encontrado + + + + Connected to host + Conectado al equipo + + + + + Connection closed + Conexión cerrada + + + + Proxy authentication required + El proxy requiere autenticación + + + + Authentication required + Se precisa autenticación + + + + Connection refused (or timed out) + + + + + Proxy requires authentication + + + + + Host requires authentication + + + + + Data corrupted + + + + + Unknown protocol specified + + + + + SSL handshake failed + + + + + QHttpSocketEngine + + + Did not receive HTTP response from proxy + + + + + Error parsing authentication request from proxy + + + + + Authentication required + Se precisa autenticación + + + + Proxy denied connection + + + + + Error communicating with HTTP proxy + + + + + Proxy server not found + + + + + Proxy connection refused + + + + + Proxy server connection timed out + + + + + Proxy connection closed prematurely + + + + + QIBaseDriver + + + Error opening database + Error al abrir la base de datos + + + + Could not start transaction + No fue posible iniciar la transacción + + + + Unable to commit transaction + Incapaz de enviar la transacción + + + + Unable to rollback transaction + Incapaz de anular la transacción + + + + QIBaseResult + + + Unable to create BLOB + Imposible crear un BLOB + + + + Unable to write BLOB + Imposible escribir el BLOB + + + + Unable to open BLOB + Imposible abrir el BLOB + + + + Unable to read BLOB + Imposible leer el BLOB + + + + + Could not find array + No fue posible encontrar la tabla + + + + Could not get array data + No fue posible obtener los datos de la tabla + + + + Could not get query info + No fue posible obtener información sobre la consulta + + + + Could not start transaction + No fue posible iniciar la transacción + + + + Unable to commit transaction + Incapaz de enviar la transacción + + + + Could not allocate statement + No fue posible asignar la instrucción + + + + Could not prepare statement + No fue posible preparar la instrucción + + + + + Could not describe input statement + No fue posible describir la instrucción de entrada + + + + Could not describe statement + No fue posible describir la instrucción + + + + Unable to close statement + No fue posible cerrar la instrucción + + + + Unable to execute query + No fue posible ejecutar la consulta + + + + Could not fetch next item + No fue posible obtener el elemento siguiente + + + + Could not get statement info + No fue posible obtener información sobre la instrucción + + + + QIODevice + + + Permission denied + Permiso denegado + + + + Too many open files + Demasiados ficheros abiertos simultáneamente + + + + No such file or directory + No hay ningún fichero o directorio con ese nombre + + + + No space left on device + No queda espacio en el dispositivo + + + + Unknown error + Error desconocido + + + + QInputContext + + + XIM + XIM + + + + XIM input method + Método de entrada XIM + + + + Windows input method + Método de entrada Windows + + + + Mac OS X input method + Método de entrada Mac OS X + + + + QInputDialog + + + Enter a value: + + + + + QLibrary + + QLibrary::load_sys: Cannot load %1 (%2) + QLibrary::load_sys: No se puede cargar %1 (%2) + + + QLibrary::unload_sys: Cannot unload %1 (%2) + QLibrary::unload_sys: No se puede cargar %1 (%2) + + + QLibrary::resolve_sys: Symbol "%1" undefined in %2 (%3) + QLibrary::resolve_sys: Símbolo «%1» no definido en %2 (%3) + + + + Could not mmap '%1': %2 + No fu posible establecer la proyección en memoria de «%1»: %2 + + + + Plugin verification data mismatch in '%1' + Los datos de verificación del complemento no coinciden en «%1» + + + + Could not unmap '%1': %2 + No fue posible suprimir la proyección en memoria de «%1»: %2 + + + + The plugin '%1' uses incompatible Qt library. (%2.%3.%4) [%5] + El complemento «%1» usa una biblioteca Qt incompatible. (%2.%3.%4) [%5] + + + + The plugin '%1' uses incompatible Qt library. Expected build key "%2", got "%3" + El complemento «%1» usa una biblioteca Qt incompatible. Se esperaba la clave «%2», pero se ha recibido «%3» + + + + Unknown error + Error desconocido + + + + + The shared library was not found. + No se ha encontrado la biblioteca compartida. + + + + The file '%1' is not a valid Qt plugin. + El fichero «%1» no es un complemento de Qt válido. + + + + The plugin '%1' uses incompatible Qt library. (Cannot mix debug and release libraries.) + El complemento «%1» usa una biblioteca Qt incompatible. (No se pueden mezclar las bibliotecas «debug» y «release».) + + + + + Cannot load library %1: %2 + + + + + + Cannot unload library %1: %2 + + + + + + Cannot resolve symbol "%1" in %2: %3 + + + + + QLineEdit + + + &Undo + &Deshacer + + + + &Redo + &Rehacer + + + + Cu&t + Cor&tar + + + + &Copy + &Copiar + + + + &Paste + &Pegar + + + + Delete + Borrar + + + + Select All + Seleccionar todo + + + + QLocalServer + + + + %1: Name error + + + + + %1: Permission denied + + + + + %1: Address in use + + + + + + %1: Unknown error %2 + + + + + QLocalSocket + + + + %1: Connection refused + + + + + + %1: Remote closed + + + + + + + + %1: Invalid name + + + + + + %1: Socket access error + + + + + + %1: Socket resource error + + + + + + %1: Socket operation timed out + + + + + + %1: Datagram too large + + + + + + + %1: Connection error + + + + + + %1: The socket operation is not supported + + + + + %1: Unknown error + + + + + + %1: Unknown error %2 + + + + + QMYSQLDriver + + + Unable to open database ' + Imposible abrir la base de datos ' + + + + Unable to connect + No es posible establecer una conexión + + + + Unable to begin transaction + No es posible iniciar la transacción + + + + Unable to commit transaction + No es posible enviar la transacción + + + + Unable to rollback transaction + No es posible anular la transacción + + + + QMYSQLResult + + + Unable to fetch data + No es posible obtener los datos + + + + Unable to execute query + No es posible ejecutar la consulta + + + + Unable to store result + No es posible almacenar el resultado + + + + + Unable to prepare statement + No es posible preparar la instrucción + + + + Unable to reset statement + No es posible reinicializar la instrucción + + + + Unable to bind value + No es posible ligar el valor + + + + Unable to execute statement + No es posible ejecutar la instrucción + + + + + Unable to bind outvalues + No es posible ligar los valores de salida + + + + Unable to store statement results + No es posible almacenar los resultados de la instrucción + + + + Unable to execute next query + + + + + Unable to store next result + + + + + QMdiArea + + + (Untitled) + + + + + QMdiSubWindow + + + %1 - [%2] + %1 - [%2] + + + + Close + Cerrar + + + + Minimize + Minimizar + + + + Restore Down + Restaurar abajo + + + + &Restore + &Restaurar + + + + &Move + &Mover + + + + &Size + Redimen&sionar + + + + Mi&nimize + Mi&nimizar + + + + Ma&ximize + Ma&ximizar + + + + Stay on &Top + Permanecer en &primer plano + + + + &Close + &Cerrar + + + + - [%1] + + + + + Maximize + Maximizar + + + + Unshade + + + + + Shade + + + + + Restore + + + + + Help + Ayuda + + + + Menu + Menú + + + + QMenu + + + + Close + Cerrar + + + + + Open + Abrir + + + + + + Execute + Ejecutar + + + + QMenuBar + + About + Acerca de + + + Config + Configuración + + + Preference + Preferencia + + + Options + Opciones + + + Setting + Parámetro + + + Setup + Configuración + + + Quit + Salir + + + Exit + Salir + + + About %1 + Acerca de %1 + + + About Qt + Acerca de Qt + + + Preferences + Preferencias + + + Quit %1 + Salir de %1 + + + + QMessageBox + + + Help + Ayuda + + + + + + + OK + Aceptar + + + + About Qt + Acerca de Qt + + + <p>This program uses Qt version %1.</p> + <p>Este programa utiliza la versión %1 de Qt.</p> + + + <h3>About Qt</h3>%1<p>Qt is a C++ toolkit for cross-platform application development.</p><p>Qt provides single-source portability across MS&nbsp;Windows, Mac&nbsp;OS&nbsp;X, Linux, and all major commercial Unix variants. Qt is also available for embedded devices as Qtopia Core.</p><p>Qt is a Trolltech product. See <a href="http://qt.io/">qt.io</a> for more information.</p> + <h3>Acerca de Qt</h3>%1<p>Qt es un toolkit en C++ para desarrollo de aplicaciones multiplataforma.</p><p>Qt proporciona portabilidad del código entre MS&nbsp;Windows, Mac&nbsp;OS&nbsp;X, Linux y todas las variantes comerciales de Unix importantes. Qt también está disponible para sistemas empotrados bajo el nombre Qtopia Core.</p><p>Qt es un producto de Trolltech. Visite <a href="http://qt.io/">qt.io</a> para obtener más información.</p> + + + + Show Details... + Mostrar los detalles... + + + + Hide Details... + Ocultar los detalles... + + + + <h3>About Qt</h3><p>This program uses Qt version %1.</p><p>Qt is a C++ toolkit for cross-platform application development.</p><p>Qt provides single-source portability across MS&nbsp;Windows, Mac&nbsp;OS&nbsp;X, Linux, and all major commercial Unix variants. Qt is also available for embedded devices as Qt for Embedded Linux and Qt for Windows CE.</p><p>Qt is available under three different licensing options designed to accommodate the needs of our various users.</p>Qt licensed under our commercial license agreement is appropriate for development of proprietary/commercial software where you do not want to share any source code with third parties or otherwise cannot comply with the terms of the GNU LGPL version 2.1 or GNU GPL version 3.0.</p><p>Qt licensed under the GNU LGPL version 2.1 is appropriate for the development of Qt applications (proprietary or open source) provided you can comply with the terms and conditions of the GNU LGPL version 2.1.</p><p>Qt licensed under the GNU General Public License version 3.0 is appropriate for the development of Qt applications where you wish to use such applications in combination with software subject to the terms of the GNU GPL version 3.0 or where you are otherwise willing to comply with the terms of the GNU GPL version 3.0.</p><p>Please see <a href="http://qt.io/licensing">qt.io/licensing</a> for an overview of Qt licensing.</p><p>Copyright (C) 2015 The Qt Company Ltd.</p><p>Qt is a The Qt Company product. See <a href="http://qt.io/">qt.io</a> for more information.</p> + + + + <p>This program uses Qt Open Source Edition version %1.</p><p>Qt Open Source Edition is intended for the development of Open Source applications. You need a commercial Qt license for development of proprietary (closed source) applications.</p><p>Please see <a href="http://qt.io/company/model/">qt.io/company/model/</a> for an overview of Qt licensing.</p> + <p>Este programa utiliza Qt Open Source Edition versión %1.</p><p>Qt Open Source Edition está dirigida al desarrollo de aplicaciones libres. Para desarrollar aplicaciones privativas (de código cerrado) necesita una licencia comercial de Qt.</p><p>Visite <a href="http://qt.io/company/model/">qt.io/company/model/</a> para obtener una visión global de las licencias de Qt.</p> + + + + QMultiInputContext + + + Select IM + Seleccionar IM + + + + QMultiInputContextPlugin + + + Multiple input method switcher + Seleccionador de varios métodos de entrada + + + + Multiple input method switcher that uses the context menu of the text widgets + Seleccionador de varios métodos de entrada que usa el menú contextual de los elementos de texto + + + + QNativeSocketEngine + + + The remote host closed the connection + El equipo remoto ha cerrado la conexión + + + + Network operation timed out + La operación de red ha expirado + + + + Out of resources + Insuficientes recursos + + + + Unsupported socket operation + Operación socket no admitida + + + + Protocol type not supported + Tipo de protocolo no admitido + + + + Invalid socket descriptor + Descriptor de socket no válido + + + + Network unreachable + Red inalcanzable + + + + Permission denied + Permiso denegado + + + + Connection timed out + Conexión expirada + + + + Connection refused + Conexión rechazada + + + + The bound address is already in use + La dirección enlazada ya está en uso + + + + The address is not available + La dirección no está disponible + + + + The address is protected + La dirección está protegida + + + + Unable to send a message + Imposible enviar un mensaje + + + + Unable to receive a message + Imposible recibir un mensaje + + + + Unable to write + Imposible escribir + + + + Network error + Error de red + + + + Another socket is already listening on the same port + Ya hay otro socket escuchando por el mismo puerto + + + + Unable to initialize non-blocking socket + Imposible inicializar el socket no bloqueante + + + + Unable to initialize broadcast socket + Imposible inicializar el socket de difusión + + + + Attempt to use IPv6 socket on a platform with no IPv6 support + Intento de usar un socket IPv6 sobre una plataforma que no contempla IPv6 + + + + Host unreachable + Equipo inaccesible + + + + Datagram was too large to send + El datagrama era demasiado grande para poder ser enviado + + + + Operation on non-socket + Operación sobre un no-socket + + + + Unknown error + Error desconocido + + + + The proxy type is invalid for this operation + + + + + QNetworkAccessCacheBackend + + + Error opening %1 + + + + + QNetworkAccessFileBackend + + + Request for opening non-local file %1 + + + + + Error opening %1: %2 + + + + + Write error writing to %1: %2 + + + + + Cannot open %1: Path is a directory + + + + + Read error reading from %1: %2 + + + + + QNetworkAccessFtpBackend + + + No suitable proxy found + + + + + Cannot open %1: is a directory + + + + + Logging in to %1 failed: authentication required + + + + + Error while downloading %1: %2 + + + + + Error while uploading %1: %2 + + + + + QNetworkAccessHttpBackend + + + No suitable proxy found + + + + + QNetworkReply + + + Error downloading %1 - server replied: %2 + + + + + Protocol "%1" is unknown + + + + + QNetworkReplyImpl + + + + Operation canceled + + + + + QOCIDriver + + + Unable to logon + No es posible abrir sesión + + + + Unable to initialize + QOCIDriver + La inicialización ha fallado + + + + Unable to begin transaction + No es posible iniciar la transacción + + + + Unable to commit transaction + + + + + Unable to rollback transaction + + + + + QOCIResult + + + + + Unable to bind column for batch execute + No es posible ligar la columna para una ejecución por lotes + + + + Unable to execute batch statement + No es posible ejecutar la instrucción por lotes + + + + Unable to goto next + No es posible pasar al siguiente + + + + Unable to alloc statement + No es posible asignar la instrucción + + + + Unable to prepare statement + No es posible preparar la instrucción + + + + Unable to bind value + No es posible ligar el valor + + + Unable to execute select statement + No es posible ejecutar la instrucción select + + + + Unable to execute statement + No es posible ejecutar la instrucción + + + + QODBCDriver + + + Unable to connect + No es posible establecer una conexión + + + + Unable to connect - Driver doesn't support all needed functionality + No es posible conectarse - El controlador no ofrece todas las funciones necesarias + + + + Unable to disable autocommit + No es posible inhabilitar el envío automático + + + + Unable to commit transaction + No es posible enviar la transacción + + + + Unable to rollback transaction + No es posible anular la transacción + + + + Unable to enable autocommit + No es posible habilitar el envío automático + + + + QODBCResult + + + + QODBCResult::reset: Unable to set 'SQL_CURSOR_STATIC' as statement attribute. Please check your ODBC driver configuration + QODBCResult::reset: No es posible establecer «SQL_CURSOR_STATIC» como atributo de instrucción. Compruebe la configuración de su controlador ODBC + + + + + Unable to execute statement + No es posible ejecutar la instrucción + + + + Unable to fetch next + No es posible obtener el siguiente + + + + Unable to prepare statement + No es posible preparar la instrucción + + + + Unable to bind variable + No es posible ligar la variable + + + + + + Unable to fetch last + + + + + Unable to fetch + + + + + Unable to fetch first + Imposible recuperar el primero + + + + Unable to fetch previous + + + + + QObject + + + Home + Inicio + + + + Operation not supported on %1 + + + + + Invalid URI: %1 + + + + + Write error writing to %1: %2 + + + + + Read error reading from %1: %2 + + + + + Socket error on %1: %2 + + + + + Remote host closed the connection prematurely on %1 + + + + + Protocol error: packet of size 0 received + + + + + + No host name given + + + + + QPPDOptionsModel + + + Name + Nombre + + + + Value + Valor + + + + QPSQLDriver + + + Unable to connect + No es posible establecer conexión + + + + Could not begin transaction + No fue posible iniciar la transacción + + + + Could not commit transaction + No fue posible enviar la transacción + + + + Could not rollback transaction + No fue posible anular la transacción + + + + Unable to subscribe + + + + + Unable to unsubscribe + + + + + QPSQLResult + + + Unable to create query + No es posible crear la consulta + + + + Unable to prepare statement + + + + + QPageSetupWidget + + + Centimeters (cm) + + + + + Millimeters (mm) + + + + + Inches (in) + + + + + Points (pt) + + + + + Form + + + + + Paper + + + + + Page size: + Tamaño de página: + + + + Width: + + + + + Height: + + + + + Paper source: + Fuente del papel: + + + + Orientation + + + + + Portrait + Vertical + + + + Landscape + Apaisado + + + + Reverse landscape + + + + + Reverse portrait + + + + + Margins + + + + + top margin + + + + + left margin + + + + + right margin + + + + + bottom margin + + + + + QPluginLoader + + + Unknown error + Error desconocido + + + + The plugin was not loaded. + El complemento no fue cargado. + + + + QPrintDialog + + + locally connected + conectado localmente + + + + + Aliases: %1 + Alias: %1 + + + + + unknown + desconocido + + + Print in color if available + Imprimir en color si es posible + + + + Print all + Imprimir todo + + + + Print selection + Imprimir la selección + + + + Print range + Imprimir el intervalo + + + Print last page first + Imprimir primero la última página + + + Number of copies: + Número de copias: + + + Paper format + Formato del papel + + + Portrait + Vertical + + + Landscape + Apaisado + + + + A0 (841 x 1189 mm) + A0 (841 x 1189 mm) + + + + A1 (594 x 841 mm) + A1 (594 x 841 mm) + + + + A2 (420 x 594 mm) + A2 (420 x 594 mm) + + + + A3 (297 x 420 mm) + A3 (297 x 420 mm) + + + + A4 (210 x 297 mm, 8.26 x 11.7 inches) + A4 (210 x 297 mm, 8,26 x 11,7 pulgadas) + + + + A5 (148 x 210 mm) + A5 (148 x 210 mm) + + + + A6 (105 x 148 mm) + A6 (105 x 148 mm) + + + + A7 (74 x 105 mm) + A7 (74 x 105 mm) + + + + A8 (52 x 74 mm) + A8 (52 x 74 mm) + + + + A9 (37 x 52 mm) + A9 (37 x 52 mm) + + + + B0 (1000 x 1414 mm) + B0 (1000 x 1414 mm) + + + + B1 (707 x 1000 mm) + B1 (707 x 1000 mm) + + + + B2 (500 x 707 mm) + B2 (500 x 707 mm) + + + + B3 (353 x 500 mm) + B3 (353 x 500 mm) + + + + B4 (250 x 353 mm) + B4 (250 x 353 mm) + + + + B5 (176 x 250 mm, 6.93 x 9.84 inches) + B5 (176 x 250 mm, 6,93 x 9,84 pulgadas) + + + + B6 (125 x 176 mm) + B6 (125 x 176 mm) + + + + B7 (88 x 125 mm) + B7 (88 x 125 mm) + + + + B8 (62 x 88 mm) + B8 (62 x 88 mm) + + + + B9 (44 x 62 mm) + B9 (44 x 62 mm) + + + + B10 (31 x 44 mm) + B10 (31 x 44 mm) + + + + C5E (163 x 229 mm) + C5E (163 x 229 mm) + + + + DLE (110 x 220 mm) + DLE (110 x 220 mm) + + + + Executive (7.5 x 10 inches, 191 x 254 mm) + Ejecutivo (7,5 x 10 pulgadas, 191 x 254 mm) + + + + Folio (210 x 330 mm) + Folio (210 x 330 mm) + + + + Ledger (432 x 279 mm) + Ledger (432 x 279 mm) + + + + Legal (8.5 x 14 inches, 216 x 356 mm) + Legal (8,5 x 14 pulgadas, 216 x 356 mm) + + + + Letter (8.5 x 11 inches, 216 x 279 mm) + Carta (8,5 x 11 pulgadas, 216 x 279 mm) + + + + Tabloid (279 x 432 mm) + Tabloide (279 x 432 mm) + + + + US Common #10 Envelope (105 x 241 mm) + Sobre US Common #10 (105 x 241 mm) + + + + OK + Aceptar + + + Cancel + Cancelar + + + Page size: + Tamaño de página: + + + Orientation: + Orientación: + + + Paper source: + Fuente del papel: + + + + + + Print + Imprimir + + + File + Fichero + + + Printer + Impresora + + + + Print To File ... + Imprimir a fichero... + + + Print dialog + Ventana de impresión + + + Size: + Tamaño: + + + Properties + Propiedades + + + Printer info: + Información de la impresora: + + + Browse + Explorar + + + Print to file + Imprimir a fichero + + + Pages from + Páginas + + + to + a + + + Selection + Selección + + + Copies + Copias + + + Collate + Recopilar + + + Other + Otro + + + Double side printing + Impresión a doble cara + + + + File %1 is not writable. +Please choose a different file name. + No se puede escribir en el fichero %1. +Elija un nombre de fichero diferente. + + + + %1 already exists. +Do you want to overwrite it? + %1 ya existe. +¿Desea sobrescribirlo? + + + + File exists + El fichero existe + + + + <qt>Do you want to overwrite it?</qt> + <qt>¿Desea sobrescribirlo?</qt> + + + + %1 is a directory. +Please choose a different file name. + %1 es un directorio. +Elija un nombre de fichero diferente. + + + + A0 + + + + + A1 + + + + + A2 + + + + + A3 + + + + + A4 + + + + + A5 + + + + + A6 + + + + + A7 + + + + + A8 + + + + + A9 + + + + + B0 + + + + + B1 + + + + + B2 + + + + + B3 + + + + + B4 + + + + + B5 + + + + + B6 + + + + + B7 + + + + + B8 + + + + + B9 + + + + + B10 + + + + + C5E + + + + + DLE + + + + + Executive + + + + + Folio + + + + + Ledger + + + + + Legal + + + + + Letter + + + + + Tabloid + + + + + US Common #10 Envelope + + + + + Custom + + + + + + &Options >> + + + + + &Print + + + + + &Options << + + + + + Print to File (PDF) + + + + + Print to File (Postscript) + + + + + Local file + + + + + Write %1 file + + + + + The 'From' value cannot be greater than the 'To' value. + + + + + QPrintPreviewDialog + + + + Page Setup + + + + + %1% + + + + + Print Preview + + + + + Next page + + + + + Previous page + + + + + First page + + + + + Last page + + + + + Fit width + + + + + Fit page + + + + + Zoom in + + + + + Zoom out + + + + + Portrait + Vertical + + + + Landscape + Apaisado + + + + Show single page + + + + + Show facing pages + + + + + Show overview of all pages + + + + + Print + + + + + Page setup + + + + + Close + Cerrar + + + + Export to PDF + + + + + Export to PostScript + + + + + QPrintPropertiesDialog + + PPD Properties + Propiedades PPD + + + Save + Guardar + + + OK + Aceptar + + + + QPrintPropertiesWidget + + + Form + + + + + Page + + + + + Advanced + + + + + QPrintSettingsOutput + + + Form + + + + + Copies + Copias + + + + Print range + Imprimir el intervalo + + + + Print all + Imprimir todo + + + + Pages from + Páginas + + + + to + a + + + + Selection + Selección + + + + Output Settings + + + + + Copies: + + + + + Collate + Recopilar + + + + Reverse + + + + + Options + Opciones + + + + Color Mode + + + + + Color + + + + + Grayscale + + + + + Duplex Printing + + + + + None + + + + + Long side + + + + + Short side + + + + + QPrintWidget + + + Form + + + + + Printer + Impresora + + + + &Name: + + + + + P&roperties + + + + + Location: + + + + + Preview + + + + + Type: + + + + + Output &file: + + + + + ... + + + + + QProcess + + + + Could not open input redirection for reading + + + + + + Could not open output redirection for writing + + + + + Resource error (fork failure): %1 + + + + + + + + + + + + + Process operation timed out + + + + + + + + Error reading from process + + + + + + + Error writing to process + + + + + Process crashed + + + + + No program defined + + + + + Process failed to start + + + + + QProgressDialog + + + Cancel + Cancelar + + + + QPushButton + + + Open + Abrir + + + + QRadioButton + + + Check + Marcar + + + + QRegExp + + + no error occurred + no se ha producido ningún error + + + + disabled feature used + se ha usado una característica no habilitada + + + + bad char class syntax + sintaxis no válida para clase de caracteres + + + + bad lookahead syntax + sintaxis no válida para lookahead + + + + bad repetition syntax + sintaxis no válida para repetición + + + + invalid octal value + valor octal no válido + + + + missing left delim + falta el delimitador izquierdo + + + + unexpected end + fin inesperado + + + + met internal limit + se alcanzó el límite interno + + + + QSQLite2Driver + + + Error to open database + Error al abrir la base de datos + + + + Unable to begin transaction + No es posible iniciar la transacción + + + + Unable to commit transaction + No es posible enviar la transacción + + + + Unable to rollback Transaction + No es posible anular la transacción + + + + QSQLite2Result + + + Unable to fetch results + No es posible obtener los resultados + + + + Unable to execute statement + No es posible ejecutar la instrucción + + + + QSQLiteDriver + + + Error opening database + Error al abrir la base de datos + + + + Error closing database + Error al cerrar la base de datos + + + + Unable to begin transaction + No es posible iniciar la transacción + + + + Unable to commit transaction + No es posible enviar la transacción + + + Unable to roll back transaction + No es posible anular la transacción + + + + Unable to rollback transaction + + + + + QSQLiteResult + + + + + Unable to fetch row + No es posible obtener la fila + + + + Unable to execute statement + No es posible ejecutar la instrucción + + + + Unable to reset statement + No es posible reinicializar la instrucción + + + + Unable to bind parameters + No es posible ligar los parámetros + + + + Parameter count mismatch + Número de parámetros incorrecto + + + + No query + + + + + QScrollBar + + + Scroll here + Desplazar hasta aquí + + + + Left edge + Borde izquierdo + + + + Top + Parte superior + + + + Right edge + Borde derecho + + + + Bottom + Parte inferior + + + + Page left + Una página a la izquierda + + + + + Page up + Una página hacia arriba + + + + Page right + Una página a la derecha + + + + + Page down + Una página hacia abajo + + + + Scroll left + Desplazar hacia la izquierda + + + + Scroll up + Desplazar hacia arriba + + + + Scroll right + Desplazar hacia la derecha + + + + Scroll down + Desplazar hacia abajo + + + + Line up + Alinear + + + + Position + Posición + + + + Line down + Alinear por abajo + + + + QSharedMemory + + + %1: unable to set key on lock + + + + + %1: create size is less then 0 + + + + + + %1: unable to lock + + + + + %1: unable to unlock + + + + + + %1: permission denied + + + + + + %1: already exists + + + + + + %1: doesn't exists + + + + + + %1: out of resources + + + + + + %1: unknown error %2 + + + + + %1: key is empty + + + + + %1: unix key file doesn't exists + + + + + %1: ftok failed + + + + + + %1: unable to make key + + + + + %1: system-imposed size restrictions + + + + + %1: not attached + + + + + %1: invalid size + + + + + %1: key error + + + + + %1: size query failed + + + + + QShortcut + + + Space + Espacio + + + + Esc + Esc + + + + Tab + Tabulador + + + + Backtab + Tabulador hacia atrás + + + + Backspace + Borrar + + + + Return + Retorno + + + + Enter + Intro + + + + Ins + Ins + + + + Del + Supr + + + + Pause + Pausa + + + + Print + Impr Pant + + + + SysReq + PetSis + + + + Home + Inicio + + + + End + Fin + + + + Left + Izquierda + + + + Up + Arriba + + + + Right + Derecha + + + + Down + Abajo + + + + PgUp + Re Pág + + + + PgDown + Av Pág + + + + CapsLock + Bloq Mayús + + + + NumLock + Bloq Num + + + + ScrollLock + Bloq Despl + + + + Menu + Menú + + + + Help + Ayuda + + + + Back + Anterior (histórico) + + + + Forward + Siguiente (histórico) + + + + Stop + Detener + + + + Refresh + Actualizar + + + + Volume Down + Bajar el volumen + + + + Volume Mute + Silenciar + + + + Volume Up + Subir el volumen + + + + Bass Boost + Potenciar los graves + + + + Bass Up + Subir los graves + + + + Bass Down + Bajar los graves + + + + Treble Up + Subir los agudos + + + + Treble Down + Bajar los agudos + + + + Media Play + Reproducir el medio + + + + Media Stop + Detener el medio + + + + Media Previous + Medio anterior + + + + Media Next + Siguiente medio + + + + Media Record + Grabar medio + + + + Favorites + Favoritos + + + + Search + Búsqueda + + + + Standby + Reposo + + + + Open URL + Abrir URL + + + + Launch Mail + Lanzar correo + + + + Launch Media + Lanzar medio + + + + Launch (0) + Lanzar (0) + + + + Launch (1) + Lanzar (1) + + + + Launch (2) + Lanzar (2) + + + + Launch (3) + Lanzar (3) + + + + Launch (4) + Lanzar (4) + + + + Launch (5) + Lanzar (5) + + + + Launch (6) + Lanzar (6) + + + + Launch (7) + Lanzar (7) + + + + Launch (8) + Lanzar (8) + + + + Launch (9) + Lanzar (9) + + + + Launch (A) + Lanzar (A) + + + + Launch (B) + Lanzar (B) + + + + Launch (C) + Lanzar (C) + + + + Launch (D) + Lanzar (D) + + + + Launch (E) + Lanzar (E) + + + + Launch (F) + Lanzar (F) + + + + Print Screen + Imprimir pantalla + + + + Page Up + Retroceder página + + + + Page Down + Avanzar página + + + + Caps Lock + Bloqueo de mayúsculas + + + + Num Lock + Bloq num + + + + Number Lock + Bloqueo numérico + + + + Scroll Lock + Bloqueo del desplazamiento + + + + Insert + Insertar + + + + Delete + Borrar + + + + Escape + Escape + + + + System Request + Petición del sistema + + + + Select + Seleccionar + + + + Yes + + + + + No + No + + + + Context1 + Contexto1 + + + + Context2 + Contexto2 + + + + Context3 + Contexto3 + + + + Context4 + Contexto4 + + + + Call + Llamar + + + + Hangup + Descolgar + + + + Flip + Voltear + + + + + Ctrl + Ctrl + + + + + Shift + May + + + + + Alt + Alt + + + + + Meta + Meta + + + + + + + + + + + F%1 + F%1 + + + + Home Page + Página de inicio + + + + QSlider + + + Page left + Una página a la izquierda + + + + Page up + Una página hacia arriba + + + + Position + Posición + + + + Page right + Una página a la derecha + + + + Page down + Una página hacia abajo + + + + QSocks5SocketEngine + + + Connection to proxy refused + + + + + Connection to proxy closed prematurely + + + + + Proxy host not found + + + + + Connection to proxy timed out + + + + + Proxy authentication failed + + + + + Proxy authentication failed: %1 + + + + + SOCKS version 5 protocol error + + + + + General SOCKSv5 server failure + + + + + Connection not allowed by SOCKSv5 server + + + + + TTL expired + + + + + SOCKSv5 command not supported + + + + + Address type not supported + + + + + Unknown SOCKSv5 proxy error code 0x%1 + + + + Socks5 timeout error connecting to socks server + Error de expiración socks5 mientras se establecía una conexión al servidor socks + + + + Network operation timed out + La operación de red ha expirado + + + + QSpinBox + + + More + Más + + + + Less + Menos + + + + QSql + + + Delete + Borrar + + + + Delete this record? + ¿Borrar este registro? + + + + + + Yes + + + + + + + No + No + + + + Insert + Insertar + + + + Update + Actualizar + + + + Save edits? + ¿Guardar las modificaciones? + + + + Cancel + Cancelar + + + + Confirm + Confirmar + + + + Cancel your edits? + ¿Cancelar sus modificaciones? + + + + QSslSocket + + + Unable to write data: %1 + No es posible escribir los datos: %1 + + + + Error while reading: %1 + Error al leer: %1 + + + + Error during SSL handshake: %1 + Error durante el saludo SSL: %1 + + + + Error creating SSL context (%1) + Error al crear el contexto SSL (%1) + + + + Invalid or empty cipher list (%1) + Lista de cifras vacía o no válida (%1) + + + + Error creating SSL session, %1 + Error al crear la sesión SSL, %1 + + + + Error creating SSL session: %1 + Error al crear la sesión SSL: %1 + + + + Cannot provide a certificate with no key, %1 + No se puede proporcionar un certificado sin clave, %1 + + + + Error loading local certificate, %1 + Error al cargar el certificado local, %1 + + + + Error loading private key, %1 + Error al cargar la clave privada, %1 + + + Private key do not certificate public key, %1 + La clave privada no certifica la clave pública, %1 + + + + Private key does not certificate public key, %1 + + + + + QSystemSemaphore + + + + %1: out of resources + + + + + + %1: permission denied + + + + + %1: already exists + + + + + %1: does not exist + + + + + + %1: unknown error %2 + + + + + QTDSDriver + + + Unable to open connection + No es posible abrir la conexión + + + + Unable to use database + No es posible utilizar la base de datos + + + + QTabBar + + + Scroll Left + Desplazar hacia la izquierda + + + + Scroll Right + Desplazar hacia la derecha + + + + QTcpServer + + Socket operation unsupported + Operación socket no admitida + + + + Operation on socket is not supported + + + + + QTextControl + + + &Undo + &Deshacer + + + + &Redo + &Rehacer + + + + Cu&t + Cor&tar + + + + &Copy + &Copiar + + + + Copy &Link Location + Copiar la ubicación del en&lace + + + + &Paste + &Pegar + + + + Delete + Borrar + + + + Select All + Seleccionar todo + + + + QToolButton + + + + Press + Pulsar + + + + + Open + Abrir + + + + QUdpSocket + + + This platform does not support IPv6 + La plataforma no contempla IPv6 + + + + QUndoGroup + + + Undo + Deshacer + + + + Redo + Rehacer + + + + QUndoModel + + + <empty> + <vacío> + + + + QUndoStack + + + Undo + Deshacer + + + + Redo + Rehacer + + + + QUnicodeControlCharacterMenu + + + LRM Left-to-right mark + LRM Left-to-right mark + + + + RLM Right-to-left mark + RLM Right-to-left mark + + + + ZWJ Zero width joiner + ZWJ Zero width joiner + + + + ZWNJ Zero width non-joiner + ZWNJ Zero width non-joiner + + + + ZWSP Zero width space + ZWSP Zero width space + + + + LRE Start of left-to-right embedding + LRE Start of left-to-right embedding + + + + RLE Start of right-to-left embedding + RLE Start of right-to-left embedding + + + + LRO Start of left-to-right override + LRO Start of left-to-right override + + + + RLO Start of right-to-left override + RLO Start of right-to-left override + + + + PDF Pop directional formatting + PDF Pop directional formatting + + + + Insert Unicode control character + Insertar carácter de control Unicode + + + + QWebFrame + + + Request cancelled + + + + + Request blocked + + + + + Cannot show URL + + + + + Frame load interruped by policy change + + + + + Cannot show mimetype + + + + + File does not exist + + + + + QWebPage + + + Bad HTTP request + + + + + Submit + default label for Submit buttons in forms on web pages + + + + + Submit + Submit (input element) alt text for <input> elements with no alt, title, or value + + + + + Reset + default label for Reset buttons in forms on web pages + Reinicializar + + + + This is a searchable index. Enter search keywords: + text that appears at the start of nearly-obsolete web pages in the form of a 'searchable index' + + + + + Choose File + title for file button used in HTML forms + + + + + No file selected + text to display in file button used in HTML forms when no file is selected + + + + + Open in New Window + Open in New Window context menu item + + + + + Save Link... + Download Linked File context menu item + + + + + Copy Link + Copy Link context menu item + + + + + Open Image + Open Image in New Window context menu item + + + + + Save Image + Download Image context menu item + + + + + Copy Image + Copy Link context menu item + + + + + Open Frame + Open Frame in New Window context menu item + + + + + Copy + Copy context menu item + + + + + Go Back + Back context menu item + Precedente + + + + Go Forward + Forward context menu item + + + + + Stop + Stop context menu item + Detener + + + + Reload + Reload context menu item + + + + + Cut + Cut context menu item + + + + + Paste + Paste context menu item + + + + + No Guesses Found + No Guesses Found context menu item + + + + + Ignore + Ignore Spelling context menu item + Ignorar + + + + Add To Dictionary + Learn Spelling context menu item + + + + + Search The Web + Search The Web context menu item + + + + + Look Up In Dictionary + Look Up in Dictionary context menu item + + + + + Open Link + Open Link context menu item + + + + + Ignore + Ignore Grammar context menu item + Ignorar + + + + Spelling + Spelling and Grammar context sub-menu item + + + + + Show Spelling and Grammar + menu item title + + + + + Hide Spelling and Grammar + menu item title + + + + + Check Spelling + Check spelling context menu item + + + + + Check Spelling While Typing + Check spelling while typing context menu item + + + + + Check Grammar With Spelling + Check grammar with spelling context menu item + + + + + Fonts + Font context sub-menu item + + + + + Bold + Bold context menu item + + + + + Italic + Italic context menu item + + + + + Underline + Underline context menu item + + + + + Outline + Outline context menu item + + + + + Direction + Writing direction context sub-menu item + + + + + Text Direction + Text direction context sub-menu item + + + + + Default + Default writing direction context menu item + + + + + LTR + Left to Right context menu item + + + + + RTL + Right to Left context menu item + + + + + Inspect + Inspect Element context menu item + + + + + No recent searches + Label for only item in menu that appears when clicking on the search field image, when no searches have been performed + + + + + Recent searches + label for first item in the menu that appears when clicking on the search field image, used as embedded menu title + + + + + Clear recent searches + menu item in Recent Searches menu that empties menu's contents + + + + + Unknown + Unknown filesize FTP directory listing item + Desconocido + + + + %1 (%2x%3 pixels) + Title string for images + + + + + Web Inspector - %2 + + + + + Scroll here + Desplazar hasta aquí + + + + Left edge + Borde izquierdo + + + + Top + Parte superior + + + + Right edge + Borde derecho + + + + Bottom + Parte inferior + + + + Page left + Una página a la izquierda + + + + Page up + Una página hacia arriba + + + + Page right + Una página a la derecha + + + + Page down + Una página hacia abajo + + + + Scroll left + Desplazar hacia la izquierda + + + + Scroll up + Desplazar hacia arriba + + + + Scroll right + Desplazar hacia la derecha + + + + Scroll down + Desplazar hacia abajo + + + + %n file(s) + number of chosen file + + + + + + + + JavaScript Alert - %1 + + + + + JavaScript Confirm - %1 + + + + + JavaScript Prompt - %1 + + + + + Move the cursor to the next character + + + + + Move the cursor to the previous character + + + + + Move the cursor to the next word + + + + + Move the cursor to the previous word + + + + + Move the cursor to the next line + + + + + Move the cursor to the previous line + + + + + Move the cursor to the start of the line + + + + + Move the cursor to the end of the line + + + + + Move the cursor to the start of the block + + + + + Move the cursor to the end of the block + + + + + Move the cursor to the start of the document + + + + + Move the cursor to the end of the document + + + + + Select all + + + + + Select to the next character + + + + + Select to the previous character + + + + + Select to the next word + + + + + Select to the previous word + + + + + Select to the next line + + + + + Select to the previous line + + + + + Select to the start of the line + + + + + Select to the end of the line + + + + + Select to the start of the block + + + + + Select to the end of the block + + + + + Select to the start of the document + + + + + Select to the end of the document + + + + + Delete to the start of the word + + + + + Delete to the end of the word + + + + + Insert a new paragraph + + + + + Insert a new line + + + + + QWhatsThisAction + + + What's This? + ¿Qué es esto? + + + + QWidget + + + * + * + + + + QWizard + + + Go Back + Precedente + + + + Continue + Siguiente + + + + Commit + Enviar + + + + Done + Terminar + + + Quit + Salir + + + + Help + Ayuda + + + + < &Back + < &Anterior + + + + &Finish + &Terminar + + + + Cancel + Cancelar + + + + &Help + &Ayuda + + + + &Next + + + + + &Next > + Siguie&nte > + + + + QWorkspace + + + &Restore + &Restaurar + + + + &Move + &Mover + + + + &Size + &Tamaño + + + + Mi&nimize + Mi&nimizar + + + + Ma&ximize + Ma&ximizar + + + + &Close + &Cerrar + + + + Stay on &Top + Permanecer en &primer plano + + + + + Sh&ade + Sombre&ar + + + + + %1 - [%2] + %1 - [%2] + + + + Minimize + Minimizar + + + + Restore Down + Restaurar abajo + + + + Close + Cerrar + + + + &Unshade + Q&uitar sombra + + + + QXml + + + no error occurred + no se ha producido ningún error + + + + error triggered by consumer + error debido al consumidor + + + + unexpected end of file + fin de fichero inesperado + + + + more than one document type definition + más de una definición de tipo de documento + + + + error occurred while parsing element + se ha producido un error durante el análisis de un elemento + + + + tag mismatch + etiqueta desequilibrada + + + + error occurred while parsing content + se ha producido un error durante el análisis del contenido + + + + unexpected character + carácter inesperado + + + + invalid name for processing instruction + nombre de instrucción de tratamiento no válido + + + + version expected while reading the XML declaration + se esperaba la versión al leer la declaración XML + + + + wrong value for standalone declaration + valor erróneo para la declaración independiente + + + + encoding declaration or standalone declaration expected while reading the XML declaration + se esperaba una declaración de codificación o declaración autónoma al leer la declaración XML + + + + standalone declaration expected while reading the XML declaration + se esperaba una declaración independiente al leer la declaración XML + + + + error occurred while parsing document type definition + se ha producido un error durante el análisis de la definición de tipo de documento + + + + letter is expected + se esperaba una letra + + + + error occurred while parsing comment + se ha producido un error durante el análisis de un comentario + + + + error occurred while parsing reference + se ha producido un error durante el análisis de una referencia + + + + internal general entity reference not allowed in DTD + no se permiten referencias a entidades internas generales en la DTD + + + + external parsed general entity reference not allowed in attribute value + no se permiten referencias a entidades externas generales ya analizadas en el valor de un atributo + + + + external parsed general entity reference not allowed in DTD + no se permiten referencias a entidades externas generales ya analizadas en la DTD + + + + unparsed entity reference in wrong context + referencia a entidad no analizada en un contexto no válido + + + + recursive entities + entidades recursivas + + + + error in the text declaration of an external entity + error en la declaración de texto de una entidad externa + + + + QXmlStream + + + + Extra content at end of document. + Contenido extra al final del documento. + + + + Invalid entity value. + Valor de la entidad no válido. + + + + Invalid XML character. + Carácter XML no válido. + + + + Sequence ']]>' not allowed in content. + Secuencia «]]>» no permitida en el contenido. + + + + Namespace prefix '%1' not declared + Prefijo de espacio de nombres «%1» no declarado + + + + Attribute redefined. + Atributo redefinido. + + + + Unexpected character '%1' in public id literal. + Carácter «%1» inesperado en un literal de identificación público. + + + + Invalid XML version string. + Cadena de versión XML no válida. + + + + Unsupported XML version. + Versión XML no admitida. + + + + %1 is an invalid encoding name. + %1 es un nombre de codificación no válido. + + + + Encoding %1 is unsupported + No se admite la codificación %1 + + + Invalid XML encoding name. + Nombre de codificación XML no válido. + + + + Standalone accepts only yes or no. + «Standalone» sólo acepta «sí» o «no». + + + + Invalid attribute in XML declaration. + Atributo no válido en la declaración XML. + + + + Premature end of document. + Final prematuro del documento. + + + + Invalid document. + Documento no válido. + + + + Expected + Se esperaba + + + + , but got ' + , pero se ha recibido ' + + + + Unexpected ' + No se esperaba ' + + + + Expected character data. + Se esperaban datos de carácter. + + + + Recursive entity detected. + Detectada entidad recursiva. + + + + Start tag expected. + Se esperaba etiqueta de inicio. + + + + XML declaration not at start of document. + La declaración XML no está al principio del documento. + + + + NDATA in parameter entity declaration. + NDATA en una declaración de entidad parámetro. + + + + %1 is an invalid processing instruction name. + %1 es un nombre de instrucción de procesamiento no válido. + + + + Invalid processing instruction name. + Nombre de instrucción de procesamiento no válido. + + + + + + + Illegal namespace declaration. + Declaración de espacio de nombres ilegal. + + + + Invalid XML name. + Nombre XML no válido. + + + + Opening and ending tag mismatch. + Las etiquetas de apertura y cierre no coinciden. + + + + Reference to unparsed entity '%1'. + Referencia a una entidad no analizada «%1». + + + + + + Entity '%1' not declared. + Entidad «%1» no declarada. + + + + Reference to external entity '%1' in attribute value. + Referencia a una entidad externa «%1» en el valor del atributo. + + + + Invalid character reference. + Referencia un carácter no válido. + + + + + Encountered incorrectly encoded content. + Encontrado contenido codificado incorrectamente. + + + + The standalone pseudo attribute must appear after the encoding. + El pseudoatributo «standalone» debe aparece después de la codificación. + + + + %1 is an invalid PUBLIC identifier. + %1 no es un identificador PUBLIC válido. + + + + QtXmlPatterns + + + An %1-attribute with value %2 has already been declared. + + + + + An %1-attribute must have a valid %2 as value, which %3 isn't. + + + + + Network timeout. + + + + + Element %1 can't be serialized because it appears outside the document element. + + + + + Attribute %1 can't be serialized because it appears at the top level. + + + + + Year %1 is invalid because it begins with %2. + + + + + Day %1 is outside the range %2..%3. + + + + + Month %1 is outside the range %2..%3. + + + + + Overflow: Can't represent date %1. + + + + + Day %1 is invalid for month %2. + + + + + Time 24:%1:%2.%3 is invalid. Hour is 24, but minutes, seconds, and milliseconds are not all 0; + + + + + Time %1:%2:%3.%4 is invalid. + + + + + Overflow: Date can't be represented. + + + + + + At least one component must be present. + + + + + At least one time component must appear after the %1-delimiter. + + + + + No operand in an integer division, %1, can be %2. + + + + + The first operand in an integer division, %1, cannot be infinity (%2). + + + + + The second operand in a division, %1, cannot be zero (%2). + + + + + %1 is not a valid value of type %2. + + + + + When casting to %1 from %2, the source value cannot be %3. + + + + + Integer division (%1) by zero (%2) is undefined. + + + + + Division (%1) by zero (%2) is undefined. + + + + + Modulus division (%1) by zero (%2) is undefined. + + + + + + Dividing a value of type %1 by %2 (not-a-number) is not allowed. + + + + + Dividing a value of type %1 by %2 or %3 (plus or minus zero) is not allowed. + + + + + Multiplication of a value of type %1 by %2 or %3 (plus or minus infinity) is not allowed. + + + + + A value of type %1 cannot have an Effective Boolean Value. + + + + + Effective Boolean Value cannot be calculated for a sequence containing two or more atomic values. + + + + + Value %1 of type %2 exceeds maximum (%3). + + + + + Value %1 of type %2 is below minimum (%3). + + + + + A value of type %1 must contain an even number of digits. The value %2 does not. + + + + + %1 is not valid as a value of type %2. + + + + + Operator %1 cannot be used on type %2. + + + + + Operator %1 cannot be used on atomic values of type %2 and %3. + + + + + The namespace URI in the name for a computed attribute cannot be %1. + + + + + The name for a computed attribute cannot have the namespace URI %1 with the local name %2. + + + + + Type error in cast, expected %1, received %2. + + + + + When casting to %1 or types derived from it, the source value must be of the same type, or it must be a string literal. Type %2 is not allowed. + + + + + No casting is possible with %1 as the target type. + + + + + It is not possible to cast from %1 to %2. + + + + + Casting to %1 is not possible because it is an abstract type, and can therefore never be instantiated. + + + + + It's not possible to cast the value %1 of type %2 to %3 + + + + + Failure when casting from %1 to %2: %3 + + + + + A comment cannot contain %1 + + + + + A comment cannot end with a %1. + + + + + No comparisons can be done involving the type %1. + + + + + Operator %1 is not available between atomic values of type %2 and %3. + + + + + An attribute node cannot be a child of a document node. Therefore, the attribute %1 is out of place. + + + + + A library module cannot be evaluated directly. It must be imported from a main module. + + + + + No template by name %1 exists. + + + + + A value of type %1 cannot be a predicate. A predicate must have either a numeric type or an Effective Boolean Value type. + + + + + A positional predicate must evaluate to a single numeric value. + + + + + The target name in a processing instruction cannot be %1 in any combination of upper and lower case. Therefore, is %2 invalid. + + + + + %1 is not a valid target name in a processing instruction. It must be a %2 value, e.g. %3. + + + + + The last step in a path must contain either nodes or atomic values. It cannot be a mixture between the two. + + + + + The data of a processing instruction cannot contain the string %1 + + + + + No namespace binding exists for the prefix %1 + + + + + No namespace binding exists for the prefix %1 in %2 + + + + + + %1 is an invalid %2 + + + + + %1 takes at most %n argument(s). %2 is therefore invalid. + + + + + + + + %1 requires at least %n argument(s). %2 is therefore invalid. + + + + + + + + The first argument to %1 cannot be of type %2. It must be a numeric type, xs:yearMonthDuration or xs:dayTimeDuration. + + + + + The first argument to %1 cannot be of type %2. It must be of type %3, %4, or %5. + + + + + The second argument to %1 cannot be of type %2. It must be of type %3, %4, or %5. + + + + + %1 is not a valid XML 1.0 character. + + + + + The first argument to %1 cannot be of type %2. + + + + + If both values have zone offsets, they must have the same zone offset. %1 and %2 are not the same. + + + + + %1 was called. + + + + + %1 must be followed by %2 or %3, not at the end of the replacement string. + + + + + In the replacement string, %1 must be followed by at least one digit when not escaped. + + + + + In the replacement string, %1 can only be used to escape itself or %2, not %3 + + + + + %1 matches newline characters + + + + + %1 and %2 match the start and end of a line. + + + + + Matches are case insensitive + + + + + Whitespace characters are removed, except when they appear in character classes + + + + + %1 is an invalid regular expression pattern: %2 + + + + + %1 is an invalid flag for regular expressions. Valid flags are: + + + + + If the first argument is the empty sequence or a zero-length string (no namespace), a prefix cannot be specified. Prefix %1 was specified. + + + + + It will not be possible to retrieve %1. + + + + + The root node of the second argument to function %1 must be a document node. %2 is not a document node. + + + + + The default collection is undefined + + + + + %1 cannot be retrieved + + + + + The normalization form %1 is unsupported. The supported forms are %2, %3, %4, and %5, and none, i.e. the empty string (no normalization). + + + + + A zone offset must be in the range %1..%2 inclusive. %3 is out of range. + + + + + %1 is not a whole number of minutes. + + + + + Required cardinality is %1; got cardinality %2. + + + + + The item %1 did not match the required type %2. + + + + + + %1 is an unknown schema type. + + + + + Only one %1 declaration can occur in the query prolog. + + + + + The initialization of variable %1 depends on itself + + + + + No variable by name %1 exists + + + + + The variable %1 is unused + + + + + Version %1 is not supported. The supported XQuery version is 1.0. + + + + + The encoding %1 is invalid. It must contain Latin characters only, must not contain whitespace, and must match the regular expression %2. + + + + + No function with signature %1 is available + + + + + + A default namespace declaration must occur before function, variable, and option declarations. + + + + + Namespace declarations must occur before function, variable, and option declarations. + + + + + Module imports must occur before function, variable, and option declarations. + + + + + It is not possible to redeclare prefix %1. + + + + + Prefix %1 is already declared in the prolog. + + + + + The name of an option must have a prefix. There is no default namespace for options. + + + + + The Schema Import feature is not supported, and therefore %1 declarations cannot occur. + + + + + The target namespace of a %1 cannot be empty. + + + + + The module import feature is not supported + + + + + No value is available for the external variable by name %1. + + + + + A construct was encountered which only is allowed in XQuery. + + + + + A template by name %1 has already been declared. + + + + + The keyword %1 cannot occur with any other mode name. + + + + + The value of attribute %1 must of type %2, which %3 isn't. + + + + + The prefix %1 can not be bound. By default, it is already bound to the namespace %2. + + + + + A variable by name %1 has already been declared. + + + + + A stylesheet function must have a prefixed name. + + + + + The namespace for a user defined function cannot be empty (try the predefined prefix %1 which exists for cases like this) + + + + + The namespace %1 is reserved; therefore user defined functions may not use it. Try the predefined prefix %2, which exists for these cases. + + + + + The namespace of a user defined function in a library module must be equivalent to the module namespace. In other words, it should be %1 instead of %2 + + + + + A function already exists with the signature %1. + + + + + No external functions are supported. All supported functions can be used directly, without first declaring them as external + + + + + An argument by name %1 has already been declared. Every argument name must be unique. + + + + + When function %1 is used for matching inside a pattern, the argument must be a variable reference or a string literal. + + + + + In an XSL-T pattern, the first argument to function %1 must be a string literal, when used for matching. + + + + + In an XSL-T pattern, the first argument to function %1 must be a literal or a variable reference, when used for matching. + + + + + In an XSL-T pattern, function %1 cannot have a third argument. + + + + + In an XSL-T pattern, only function %1 and %2, not %3, can be used for matching. + + + + + In an XSL-T pattern, axis %1 cannot be used, only axis %2 or %3 can. + + + + + %1 is an invalid template mode name. + + + + + The name of a variable bound in a for-expression must be different from the positional variable. Hence, the two variables named %1 collide. + + + + + The Schema Validation Feature is not supported. Hence, %1-expressions may not be used. + + + + + None of the pragma expressions are supported. Therefore, a fallback expression must be present + + + + + Each name of a template parameter must be unique; %1 is duplicated. + + + + + The %1-axis is unsupported in XQuery + + + + + %1 is not a valid name for a processing-instruction. + + + + + %1 is not a valid numeric literal. + + + + + No function by name %1 is available. + + + + + The namespace URI cannot be the empty string when binding to a prefix, %1. + + + + + %1 is an invalid namespace URI. + + + + + It is not possible to bind to the prefix %1 + + + + + Namespace %1 can only be bound to %2 (and it is, in either case, pre-declared). + + + + + Prefix %1 can only be bound to %2 (and it is, in either case, pre-declared). + + + + + Two namespace declaration attributes have the same name: %1. + + + + + The namespace URI must be a constant and cannot use enclosed expressions. + + + + + An attribute by name %1 has already appeared on this element. + + + + + A direct element constructor is not well-formed. %1 is ended with %2. + + + + + The name %1 does not refer to any schema type. + + + + + %1 is an complex type. Casting to complex types is not possible. However, casting to atomic types such as %2 works. + + + + + %1 is not an atomic type. Casting is only possible to atomic types. + + + + + + %1 is not in the in-scope attribute declarations. Note that the schema import feature is not supported. + + + + + The name of an extension expression must be in a namespace. + + + + + empty + + + + + zero or one + + + + + exactly one + + + + + one or more + + + + + zero or more + + + + + Required type is %1, but %2 was found. + + + + + Promoting %1 to %2 may cause loss of precision. + + + + + The focus is undefined. + + + + + It's not possible to add attributes after any other kind of node. + + + + + An attribute by name %1 has already been created. + + + + + Only the Unicode Codepoint Collation is supported(%1). %2 is unsupported. + + + + + %1 is an unsupported encoding. + + + + + %1 contains octets which are disallowed in the requested encoding %2. + + + + + The codepoint %1, occurring in %2 using encoding %3, is an invalid XML character. + + + + + Ambiguous rule match. + + + + + In a namespace constructor, the value for a namespace cannot be an empty string. + + + + + The prefix must be a valid %1, which %2 is not. + + + + + The prefix %1 cannot be bound. + + + + + Only the prefix %1 can be bound to %2 and vice versa. + + + + + Circularity detected + + + + + The parameter %1 is required, but no corresponding %2 is supplied. + + + + + The parameter %1 is passed, but no corresponding %2 exists. + + + + + The URI cannot have a fragment + + + + + Element %1 is not allowed at this location. + + + + + Text nodes are not allowed at this location. + + + + + Parse error: %1 + + + + + The value of the XSL-T version attribute must be a value of type %1, which %2 isn't. + + + + + Running an XSL-T 1.0 stylesheet with a 2.0 processor. + + + + + Unknown XSL-T attribute %1. + + + + + Attribute %1 and %2 are mutually exclusive. + + + + + In a simplified stylesheet module, attribute %1 must be present. + + + + + If element %1 has no attribute %2, it cannot have attribute %3 or %4. + + + + + Element %1 must have at least one of the attributes %2 or %3. + + + + + At least one mode must be specified in the %1-attribute on element %2. + + + + + Attribute %1 cannot appear on the element %2. Only the standard attributes can appear. + + + + + Attribute %1 cannot appear on the element %2. Only %3 is allowed, and the standard attributes. + + + + + Attribute %1 cannot appear on the element %2. Allowed is %3, %4, and the standard attributes. + + + + + Attribute %1 cannot appear on the element %2. Allowed is %3, and the standard attributes. + + + + + XSL-T attributes on XSL-T elements must be in the null namespace, not in the XSL-T namespace which %1 is. + + + + + The attribute %1 must appear on element %2. + + + + + The element with local name %1 does not exist in XSL-T. + + + + + Element %1 must come last. + + + + + At least one %1-element must occur before %2. + + + + + Only one %1-element can appear. + + + + + At least one %1-element must occur inside %2. + + + + + When attribute %1 is present on %2, a sequence constructor cannot be used. + + + + + Element %1 must have either a %2-attribute or a sequence constructor. + + + + + When a parameter is required, a default value cannot be supplied through a %1-attribute or a sequence constructor. + + + + + Element %1 cannot have children. + + + + + Element %1 cannot have a sequence constructor. + + + + + + The attribute %1 cannot appear on %2, when it is a child of %3. + + + + + A parameter in a function cannot be declared to be a tunnel. + + + + + This processor is not Schema-aware and therefore %1 cannot be used. + + + + + Top level stylesheet elements must be in a non-null namespace, which %1 isn't. + + + + + The value for attribute %1 on element %2 must either be %3 or %4, not %5. + + + + + Attribute %1 cannot have the value %2. + + + + + The attribute %1 can only appear on the first %2 element. + + + + + At least one %1 element must appear as child of %2. + + + + + VolumeSlider + + + Muted + + + + + + Volume: %1% + + + + + WebCore::PlatformScrollbar + + Scroll here + Desplazar hasta aquí + + + Left edge + Borde izquierdo + + + Top + Parte superior + + + Right edge + Borde derecho + + + Bottom + Parte inferior + + + Page left + Una página a la izquierda + + + Page up + Una página hacia arriba + + + Page right + Una página a la derecha + + + Page down + Una página hacia abajo + + + Scroll left + Desplazar hacia la izquierda + + + Scroll up + Desplazar hacia arriba + + + Scroll right + Desplazar hacia la derecha + + + Scroll down + Desplazar hacia abajo + + + diff --git a/translations/qt_ru.ts b/translations/qt_ru.ts new file mode 100644 index 00000000..00ee6421 --- /dev/null +++ b/translations/qt_ru.ts @@ -0,0 +1,10278 @@ + + + + + CloseButton + + Close Tab + Закрыть вкладку + + + + Debugger::JSAgentWatchData + + [Array of length %1] + [Массив размером %1] + + + <undefined> + <неопределено> + + + + FakeReply + + Fake error! + Фиктивная ошибка! + + + Invalid URL + Некорректный адрес URL + + + + MAC_APPLICATION_MENU + + Services + Службы + + + Hide %1 + Скрыть %1 + + + Hide Others + Скрыть остальные + + + Show All + Показать все + + + Preferences... + Настройки… + + + Quit %1 + Завершить %1 + + + About %1 + О программе %1 + + + + Phonon:: + + Notifications + Уведомления + + + Music + Музыка + + + Video + Видео + + + Communication + Общение + + + Games + Игры + + + Accessibility + Специальные возможности + + + + Phonon::AudioOutput + + <html>The audio playback device <b>%1</b> does not work.<br/>Falling back to <b>%2</b>.</html> + <html>Звуковое устройство <b>%1</b> не работает.<br/>Будет использоваться <b>%2</b>.</html> + + + <html>Switching to the audio playback device <b>%1</b><br/>which just became available and has higher preference.</html> + <html>Переключение на звуковое устройство <b>%1</b><br/>, которое стало доступно и имеет высший приоритет.</html> + + + Revert back to device '%1' + Возвращение к устройству «%1» + + + <html>Switching to the audio playback device <b>%1</b><br/>which has higher preference or is specifically configured for this stream.</html> + <html>Переключение на устройство вывода звука <b>%1</b><br/>, которое имеет высший приоритет или настроено для обработки данного потока.</html> + + + + Phonon::Gstreamer::Backend + + Warning: You do not seem to have the package gstreamer0.10-plugins-good installed. + Some video features have been disabled. + Внимание: Похоже, пакет gstreamer0.10-plugins-good не установлен. + Некоторые возможности воспроизведения видео недоступны. + + + Warning: You do not seem to have the base GStreamer plugins installed. + All audio and video support has been disabled + Внимание: Похоже, основной модуль GStreamer не установлен. + Поддержка видео и аудио отключена + + + + Phonon::Gstreamer::MediaObject + + Cannot start playback. + +Check your GStreamer installation and make sure you +have libgstreamer-plugins-base installed. + Невозможно начать воспроизведение. + +Проверьте правильность установки GStreamer и убедитесь, +что пакет libgstreamer-plugins-base установлен. + + + Missing codec helper script assistant. + Отсутствует сценарий установки кодека. + + + Plugin codec installation failed for codec: %0 + Не удалось установить модуль кодека: %0 + + + A required codec is missing. You need to install the following codec(s) to play this content: %0 + Отсутствует необходимый кодек. Вам нужно установить следующие кодеки для воспроизведения данного содержимого: %0 + + + Could not open media source. + Не удалось открыть источник медиа-данных. + + + Invalid source type. + Некорректный тип источника медиа-данных. + + + Could not locate media source. + Не удалось найти источник медиа-данных. + + + Could not open audio device. The device is already in use. + Не удалось открыть звуковое устройство. Устройство уже используется. + + + Could not decode media source. + Не удалось декодировать источник медиа-данных. + + + + Phonon::MMF + + Audio Output + Воспроизведение звука + + + The audio output device + Устройство воспроизведения звука + + + No error + Нет ошибки + + + Not found + Не найдено + + + Out of memory + Недостаточно ресурсов + + + Not supported + Не поддерживается + + + Overflow + Переполнение + + + Underflow + Ниже границы + + + Already exists + Уже существует + + + Path not found + Путь не найден + + + In use + Используется + + + Not ready + Не готово + + + Access denied + Доступ запрещён + + + Could not connect + Не удалось установить соединение + + + Disconnected + Соединение разорвано + + + Permission denied + Доступ запрещён + + + Insufficient bandwidth + Недостаточная скорость передачи данных + + + Network unavailable + Сеть недоступна + + + Network communication error + Ошибка сетевого обмена данными + + + Streaming not supported + Потоковое воспроизведение не поддерживается + + + Server alert + Сигнал сервера + + + Invalid protocol + Некорректный протокол + + + Invalid URL + Некорректный адрес URL + + + Multicast error + Ошибка широковещательной передачи + + + Proxy server error + Ошибка прокси-сервера + + + Proxy server not supported + Прокси-сервер не поддерживается + + + Audio output error + Ошибка воспроизведения звука + + + Video output error + Ошибка воспроизведения видео + + + Decoder error + Ошибка декодирования + + + Audio or video components could not be played + Аудио- или видео-состовляющая не может быть воспроизведена + + + DRM error + Ошибка DRM + + + Unknown error (%1) + Неизвестная ошибка (%1) + + + + Phonon::MMF::AbstractMediaPlayer + + Not ready to play + Не готов к воспроизведению + + + Error opening file + Ошибка открытия файла + + + Error opening URL + Ошибка открытия адреса URL + + + Error opening resource + Ошибка открытия ресурса + + + Error opening source: resource not opened + Ошибка открытия источника: ресурс не был открыт + + + Setting volume failed + Не удалось установить уровень громкости + + + Loading clip failed + Не удалось загрузить клип + + + Playback complete + Воспроизведение завершено + + + Download error + Ошибка загрузки + + + + Phonon::MMF::AbstractVideoPlayer + + Pause failed + Не удалось приостановить воспроизведение + + + Seek failed + Не удалось установить позицию + + + Getting position failed + Не удалось получить позицию + + + Opening clip failed + Не удалось открыть клип + + + + Phonon::MMF::AudioEqualizer + + %1 Hz + %1 Гц + + + + Phonon::MMF::AudioPlayer + + Getting position failed + Не удалось получить позицию + + + + Phonon::MMF::DsaVideoPlayer + + Video display error + Ошибка отображения видео + + + + Phonon::MMF::EffectFactory + + Enabled + Включено + + + + Phonon::MMF::EnvironmentalReverb + + Decay HF ratio (%) + DecayHFRatio: Ratio of high-frequency decay time to the value specified by DecayTime. + Коэффициент затухания ВЧ (%) + + + Decay time (ms) + DecayTime: Time over which reverberation is diminished. + Время затухания (мс) + + + Density (%) + Density Delay between first and subsequent reflections. Note that the S60 platform documentation does not make clear the distinction between this value and the Diffusion value. + Плотность (%) + + + Diffusion (%) + Diffusion: Delay between first and subsequent reflections. Note that the S60 platform documentation does not make clear the distinction between this value and the Density value. + Рассеивание (%) + + + Reflections delay (ms) + ReflectionsDelay: Amount of delay between the arrival of the direct path from the source and the arrival of the first reflection. + Затухание отражений (мс) + + + Reflections level (mB) + ReflectionsLevel: Amplitude of reflections. This value is corrected by the RoomLevel to give the final reflection amplitude. + Уровень отражений (мБар) + + + Reverb delay (ms) + ReverbDelay: Amount of time between arrival of the first reflection and start of the late reverberation. + Задержка эха (мс) + + + Reverb level (mB) + ReverbLevel: Amplitude of reverberations. This value is corrected by the RoomLevel to give the final reverberation amplitude. + Уровень эха (мБар) + + + Room HF level + RoomHFLevel: Amplitude of low-pass filter used to attenuate the high frequency component of reflected sound. + Уровень ВЧ отражений + + + Room level (mB) + RoomLevel: Master volume control for all reflected sound. + Уровень отражений (мБар) + + + + Phonon::MMF::MediaObject + + Error opening source: type not supported + Ошибка открытия источника: тип не поддерживается + + + Error opening source: resource is compressed + Ошибка открытия источника: сжатый ресурс + + + Error opening source: resource not valid + Ошибка открытия источника: некорректный ресурс + + + Error opening source: media type could not be determined + Ошибка открытия источника: не удалось определить тип медиа-данных + + + Failed to set requested IAP + Не удалось задать указанную точку доступа + + + + Phonon::MMF::StereoWidening + + Level (%) + Уровень (%) + + + + Phonon::MMF::SurfaceVideoPlayer + + Video display error + Ошибка отображения видео + + + + Phonon::VolumeSlider + + Volume: %1% + Громкость: %1% + + + Use this slider to adjust the volume. The leftmost position is 0%. The rightmost is %1% + Используйте данный регулятор для настройки громкости. Крайнее левое положение соответствует 0%, крайнее правое - %1% + + + Muted + Без звука + + + + Q3Accel + + %1, %2 not defined + %1, %2 не определён + + + Ambiguous %1 not handled + Неоднозначная комбинация %1 не обработана + + + + Q3DataTable + + True + Да + + + False + Нет + + + Insert + Вставить + + + Update + Обновить + + + Delete + Удалить + + + + Q3FileDialog + + Copy or Move a File + Копировать или переместить файл + + + Read: %1 + Чтение: %1 + + + Write: %1 + Запись: %1 + + + Cancel + Отмена + + + All Files (*) + Все файлы (*) + + + Name + Имя + + + Size + Размер + + + Type + Тип + + + Date + Дата + + + Attributes + Атрибуты + + + &OK + &ОК + + + Look &in: + &Папка: + + + File &name: + &Имя файла: + + + File &type: + &Тип файла: + + + Back + Назад + + + One directory up + Вверх на один уровень + + + Create New Folder + Создать папку + + + List View + Список + + + Detail View + Подробный вид + + + Preview File Info + Предпросмотр информации о файле + + + Preview File Contents + Предпросмотр содержимого файла + + + Read-write + Чтение и запись + + + Read-only + Только чтение + + + Write-only + Только запись + + + Inaccessible + Нет доступа + + + Symlink to File + Ссылка на файл + + + Symlink to Directory + Ссылка на каталог + + + Symlink to Special + Ссылка на спецфайл + + + File + Файл + + + Dir + Каталог + + + Special + Спецфайл + + + Open + Открыть + + + Save As + Сохранить как + + + &Open + &Открыть + + + &Save + &Сохранить + + + &Rename + &Переименовать + + + &Delete + &Удалить + + + R&eload + О&бновить + + + Sort by &Name + По &имени + + + Sort by &Size + По &размеру + + + Sort by &Date + По &дате + + + &Unsorted + &Не упорядочивать + + + Sort + Упорядочить + + + Show &hidden files + Показать ск&рытые файлы + + + the file + файл + + + the directory + каталог + + + the symlink + ссылку + + + Delete %1 + Удалить %1 + + + <qt>Are you sure you wish to delete %1 "%2"?</qt> + <qt>Вы действительно хотите удалить %1 «%2»?</qt> + + + &Yes + &Да + + + &No + &Нет + + + New Folder 1 + Новая папка 1 + + + New Folder + Новая папка + + + New Folder %1 + Новая папка %1 + + + Find Directory + Найти каталог + + + Directories + Каталоги + + + Directory: + Каталог: + + + Error + Ошибка + + + %1 +File not found. +Check path and filename. + %1 +Файл не найден. +Проверьте правильность пути и имени файла. + + + All Files (*.*) + Все файлы (*.*) + + + Open + Открыть + + + Select a Directory + Выбрать каталог + + + + Q3LocalFs + + Could not read directory +%1 + Не удалось прочитать каталог +%1 + + + Could not create directory +%1 + Не удалось создать каталог +%1 + + + Could not remove file or directory +%1 + Не удалось удалить файл или каталог +%1 + + + Could not rename +%1 +to +%2 + Не удалось переименовать +%1 +в +%2 + + + Could not open +%1 + Не удалось открыть +%1 + + + Could not write +%1 + Не удалось записать +%1 + + + + Q3MainWindow + + Line up + Выровнять + + + Customize... + Настроить... + + + + Q3NetworkProtocol + + Operation stopped by the user + Операция остановлена пользователем + + + + Q3ProgressDialog + + Cancel + Отмена + + + + Q3TabDialog + + OK + ОК + + + Apply + Применить + + + Help + Справка + + + Defaults + По умолчанию + + + Cancel + Отмена + + + + Q3TextEdit + + &Undo + &Отменить действие + + + &Redo + &Повторить действие + + + Cu&t + &Вырезать + + + &Copy + &Копировать + + + &Paste + В&ставить + + + Clear + Очистить + + + Select All + Выделить всё + + + + Q3TitleBar + + System + Системное меню + + + Restore up + Восстановить + + + Minimize + Свернуть + + + Restore down + Восстановить + + + Maximize + Распахнуть + + + Close + Закрыть + + + Contains commands to manipulate the window + Содержит команды управления окном + + + Puts a minimized window back to normal + Возвращает свёрнутое окно в нормальное состояние + + + Moves the window out of the way + Сворачивает окно + + + Puts a maximized window back to normal + Возвращает распахнутое окно в нормальное состояние + + + Makes the window full screen + Разворачивает окно на весь экран + + + Closes the window + Зыкрывает окно + + + Displays the name of the window and contains controls to manipulate it + Отображает название окна и содержит команды управления им + + + + Q3ToolBar + + More... + Больше... + + + + Q3UrlOperator + + The protocol `%1' is not supported + Протокол «%1» не поддерживается + + + The protocol `%1' does not support listing directories + Протокол «%1» не поддерживает просмотр каталогов + + + The protocol `%1' does not support creating new directories + Протокол «%1» не поддерживает создание каталогов + + + The protocol `%1' does not support removing files or directories + Протокол «%1» не поддерживает удаление файлов или каталогов + + + The protocol `%1' does not support renaming files or directories + Протокол «%1» не поддерживает переименование файлов или каталогов + + + The protocol `%1' does not support getting files + Протокол «%1» не поддерживает передачу файлов + + + The protocol `%1' does not support putting files + Протокол «%1» не поддерживает отправку файлов + + + The protocol `%1' does not support copying or moving files or directories + Протокол «%1» не поддерживает копирование или перемещение файлов или каталогов + + + (unknown) + (неизвестно) + + + + Q3Wizard + + &Cancel + От&мена + + + < &Back + < &Назад + + + &Next > + &Далее > + + + &Finish + &Завершить + + + &Help + &Справка + + + + QAbstractSocket + + Host not found + Узел не найден + + + Connection refused + Отказано в соединении + + + Connection timed out + Время на соединение истекло + + + Operation on socket is not supported + Операция с сокетом не поддерживается + + + Socket operation timed out + Время на операцию с сокетом истекло + + + Socket is not connected + Сокет не подключён + + + Network unreachable + Сеть недоступна + + + + QAbstractSpinBox + + &Step up + Шаг вв&ерх + + + Step &down + Шаг вн&из + + + &Select All + &Выделить всё + + + + QAccessibleButton + + Uncheck + Выключить + + + Check + Включить + + + Press + Нажать + + + + QApplication + + Executable '%1' requires Qt %2, found Qt %3. + Программный модуль «%1» требует Qt %2, найдена версия %3. + + + Incompatible Qt Library Error + Ошибка совместимости библиотеки Qt + + + Activate + Активировать + + + Activates the program's main window + Активирует главное окно программы + + + QT_LAYOUT_DIRECTION + Translate this string to the string 'LTR' in left-to-right languages or to 'RTL' in right-to-left languages (such as Hebrew and Arabic) to get proper widget layout. + LTR + + + + QAxSelect + + Select ActiveX Control + Выбор компоненты ActiveX + + + OK + Выбрать + + + &Cancel + От&мена + + + COM &Object: + &Объект COM: + + + + QCheckBox + + Uncheck + Снять отметку + + + Check + Отметить + + + Toggle + Переключить + + + + QColorDialog + + Hu&e: + &Тон: + + + &Sat: + &Нас: + + + &Val: + &Ярк: + + + &Red: + &Красный: + + + &Green: + &Зелёный: + + + Bl&ue: + С&иний: + + + A&lpha channel: + &Альфа-канал: + + + Select Color + Выбор цвета + + + &Basic colors + &Основные цвета + + + &Custom colors + &Пользовательские цвета + + + &Add to Custom Colors + &Добавить к пользовательским цветам + + + + QComboBox + + Open + Открыть + + + False + Нет + + + True + Да + + + Close + Закрыть + + + + QCoreApplication + + %1: key is empty + QSystemSemaphore + %1: пустой ключ + + + %1: unable to make key + QSystemSemaphore + %1: невозможно создать ключ + + + %1: ftok failed + QSystemSemaphore + %1: ошибка ftok + + + %1: already exists + QSystemSemaphore + %1: уже существует + + + %1: does not exist + QSystemSemaphore + %1: не существует + + + %1: out of resources + QSystemSemaphore + %1: недостаточно ресурсов + + + %1: permission denied + QSystemSemaphore + %1: доступ запрещён + + + %1: unknown error %2 + QSystemSemaphore + %1: неизвестная ошибка %2 + + + + QDB2Driver + + Unable to connect + Невозможно соединиться + + + Unable to commit transaction + Невозможно завершить транзакцию + + + Unable to rollback transaction + Невозможно откатить транзакцию + + + Unable to set autocommit + Невозможно установить автозавершение транзакций + + + + QDB2Result + + Unable to execute statement + Невозможно выполнить выражение + + + Unable to prepare statement + Невозможно подготовить выражение + + + Unable to bind variable + Невозможно привязать значение + + + Unable to fetch record %1 + Невозможно получить запись %1 + + + Unable to fetch next + Невозможно получить следующую строку + + + Unable to fetch first + Невозможно получить первую строку + + + + QDateTimeEdit + + AM + AM + + + am + am + + + PM + PM + + + pm + pm + + + + QDeclarativeAbstractAnimation + + Cannot animate non-existent property "%1" + Невозможно анимировать несуществуещее свойство «%1» + + + Cannot animate read-only property "%1" + Невозможно анимировать свойство только для чтения «%1» + + + Animation is an abstract class + Animation - это абстрактный класс + + + + QDeclarativeAnchorAnimation + + Cannot set a duration of < 0 + Невозможно установить длительность < 0 + + + + QDeclarativeAnchors + + Possible anchor loop detected on fill. + Обнаружена возможная цикличная привязка на fill. + + + Possible anchor loop detected on centerIn. + Обнаружена возможная цикличная привязка на centerIn. + + + Cannot anchor to an item that isn't a parent or sibling. + Невозможно установить привязку к элементу, не являющемуся родителем или соседом. + + + Possible anchor loop detected on vertical anchor. + Обнаружена возможная цикличная привязка к вертикальной привязке. + + + Possible anchor loop detected on horizontal anchor. + Обнаружена возможная цикличная привязка к горизонтальной привязке. + + + Cannot specify left, right, and hcenter anchors. + Невозможно задать левую, правую и среднюю привязки. + + + Cannot anchor to a null item. + Невозможно привязаться к нулевому элементу. + + + Cannot anchor a horizontal edge to a vertical edge. + Невозможно привязать горизонтальный край к вертикальному. + + + Cannot anchor item to self. + Невозможно привязать элемент к самому себе. + + + Cannot specify top, bottom, and vcenter anchors. + Невозможно задать верхнюю, нижнюю и среднюю привязки. + + + Baseline anchor cannot be used in conjunction with top, bottom, or vcenter anchors. + Невозможно использовать базовую привязку вместе с верхней, нижней и центральной по вертикали. + + + Cannot anchor a vertical edge to a horizontal edge. + Невозможно привязать вертикальный край к горизонтальному. + + + + QDeclarativeAnimatedImage + + Qt was built without support for QMovie + Qt было собрано без поддержки QMovie + + + + QDeclarativeApplication + + Application is an abstract class + Класс Application - абстрактный + + + + QDeclarativeBehavior + + Cannot change the animation assigned to a Behavior. + Невозможно изменить анимацию, назначенную поведению. + + + + QDeclarativeBinding + + Binding loop detected for property "%1" + Обнаружено зацикливание привязки для свойства «%1» + + + + QDeclarativeCompiledBindings + + Binding loop detected for property "%1" + Обнаружена цикличная привязка для свойства «%1» + + + + QDeclarativeCompiler + + Invalid property assignment: "%1" is a read-only property + Некорректное присваивание свойства: «%1» свойство только для чтения + + + Invalid property assignment: unknown enumeration + Некорректное присваивание свойства: неизвестное перечисление + + + Invalid property assignment: string expected + Некорректное присваивание свойства: ожидается значение типа «string» + + + Invalid property assignment: url expected + Некорректное присваивание свойства: ожидается значение типа «url» + + + Invalid property assignment: unsigned int expected + Некорректное присваивание свойства: ожидается значение типа «unsigned int» + + + Invalid property assignment: int expected + Некорректное присваивание свойства: ожидается значение типа «int» + + + Invalid property assignment: number expected + Некорректное присваивание свойства: ожидается число + + + Invalid property assignment: color expected + Некорректное присваивание свойства: ожидается значение типа «color» + + + Invalid property assignment: date expected + Некорректное присваивание свойства: ожидается значение типа «date» + + + Invalid property assignment: time expected + Некорректное присваивание свойства: ожидается значение типа «time» + + + Invalid property assignment: datetime expected + Некорректное присваивание свойства: ожидается значение типа «datetime» + + + Invalid property assignment: point expected + Некорректное присваивание свойства: ожидается значение типа «point» + + + Invalid property assignment: size expected + Некорректное присваивание свойства: ожидается значение типа «size» + + + Invalid property assignment: rect expected + Некорректное присваивание свойства: ожидается значение типа «rect» + + + Invalid property assignment: boolean expected + Некорректное присваивание свойства: ожидается значение булевого типа + + + Invalid property assignment: 3D vector expected + Некорректное присваивание свойства: ожидается значение типа «трёхмерный вектор» + + + Invalid property assignment: unsupported type "%1" + Некорректное присваивание свойства: неподдерживаемый тип «%1» + + + Element is not creatable. + Элемент не является создаваемым. + + + Component elements may not contain properties other than id + Элементы Component не могут содержать свойств кроме id + + + Invalid component id specification + Некорректная спецификация id компонента + + + id is not unique + id не уникален + + + Invalid component body specification + Некорректная спецификация тела компонента + + + Component objects cannot declare new properties. + Объекты Component не могут объявлять новые свойства. + + + Component objects cannot declare new signals. + Объекты Component не могут объявлять новые сигналы. + + + Component objects cannot declare new functions. + Объекты Component не могут объявлять новые функции. + + + Cannot create empty component specification + Невозможно создать пустую спецификацю компонента + + + "%1.%2" is not available in %3 %4.%5. + «%1.%2» не доступно в %3 %4.%5. + + + "%1.%2" is not available due to component versioning. + «%1.%2» не доступно из-за версии компоненты. + + + Incorrectly specified signal assignment + Неверно указано назначение сигнала + + + Cannot assign a value to a signal (expecting a script to be run) + Невозможно назначить значение сигналу (сценарий должен быть запущен) + + + Empty signal assignment + Пустое назначение сигнала + + + Empty property assignment + Пустое назначение свойства + + + Attached properties cannot be used here + здесь - в данном контексте? + Прикреплённые свойства не могут быть использованы здесь + + + Non-existent attached object + Несуществующий прикреплённый объект + + + Invalid attached object assignment + Некорректное назначение прикреплённого объекта + + + Cannot assign to non-existent default property + Невозможно назначить несуществующему свойству по умолчанию + + + Cannot assign to non-existent property "%1" + Невозможно назначить несуществующему свойству «%1» + + + Invalid use of namespace + Некорректное использование пространства имён + + + Not an attached property name + Не является именем привязанного свойства + + + Invalid use of id property + Некорректное использование свойства id + + + Property has already been assigned a value + Свойству уже назначено значение + + + Invalid grouped property access + Некорректный доступ к сгруппированному свойству + + + Cannot assign a value directly to a grouped property + Невозможно присвоить значение непосредственно сгруппированному свойству + + + Invalid property use + Некорректное использование свойства + + + Property assignment expected + Ожидается назначение свойства + + + Single property assignment expected + Ожидается одиночное назначение свойства + + + Unexpected object assignment + Неожиданное назначение объекта + + + Cannot assign object to list + Невозможно назначить объект списку + + + Can only assign one binding to lists + Можно назначить только одну связь для списка + + + Cannot assign primitives to lists + Невозможно назначить примитивы списку + + + Cannot assign multiple values to a script property + Невозможно назначить множественное значение свойству сценария + + + Invalid property assignment: script expected + Некорректное присваивание свойства: ожидается сценарий + + + Cannot assign multiple values to a singular property + Невозможно присвоить множество значений свойству, принимающему только одно + + + Cannot assign object to property + Невозможно назначить объектсвойству + + + "%1" cannot operate on "%2" + «%1» не может воздействовать на «%2» + + + Duplicate default property + Дублирование свойства по умолчанию + + + Duplicate property name + Дублирование названия свойства + + + Property names cannot begin with an upper case letter + Названия свойств не могут начинаться с заглавной буквы + + + Illegal property name + Недопустимое название свойства + + + Duplicate signal name + Дублирование названия сигнала + + + Signal names cannot begin with an upper case letter + Названия сигналов не могут начинаться с заглавной буквы + + + Illegal signal name + Недопустимое название сигнала + + + Duplicate method name + Дублирование название метода + + + Method names cannot begin with an upper case letter + Названия методов не могут начинаться с заглавной буквы + + + Illegal method name + Недопустимое название метода + + + Property value set multiple times + Значение свойства задано несколько раз + + + Invalid property nesting + Некорректное вложенность свойств + + + Cannot override FINAL property + Невозможно переопределить свойство FINAL + + + Invalid property type + Некорректный тип свойства + + + Invalid empty ID + Некорректный пустой идентификатор + + + IDs cannot start with an uppercase letter + Идентификаторы не могут начинаться с заглавной буквы + + + IDs must start with a letter or underscore + Идентификаторы должны начинаться с буквы или подчёркивания + + + IDs must contain only letters, numbers, and underscores + Идентификаторы должны содержать только буквы, цифры и подчёркивания + + + ID illegally masks global JavaScript property + Идентификатор неверно маскирует глобальное свойство JavaScript + + + No property alias location + Отсутствует размещение псевдонима свойства + + + Invalid alias location + Некорректное размещение псевдонима + + + Invalid alias reference. An alias reference must be specified as <id>, <id>.<property> or <id>.<value property>.<property> + Некорректная ссылка на псевдоним. Ссылка на псевдоним должна быть указана, как <id>, <id>.<свойство> или <id>.<свойство значения>.<свойство> + + + Alias property exceeds alias bounds + Свойство псевдонима выходит за границы + + + Invalid alias reference. Unable to find id "%1" + Некорректная ссылка на псевдоним. Не удалось найти id «%1» + + + + QDeclarativeComponent + + Invalid empty URL + Пустой адрес URL + + + createObject: value is not an object + createObject: значение не является объектом + + + + QDeclarativeConnections + + Cannot assign to non-existent property "%1" + Невозможно назначить несуществующему свойству «%1» + + + Connections: nested objects not allowed + Подключения: вложенные объекты недопустимы + + + Connections: syntax error + Подключения: синтаксическая ошибка + + + Connections: script expected + Подключения: ожидается сценарий + + + + QDeclarativeEngine + + executeSql called outside transaction() + executeSql() вызван вне transaction() + + + Read-only Transaction + Транзакция только для чтения + + + Version mismatch: expected %1, found %2 + Несовпадение версий: ожидалась %1, найдена %2 + + + SQL transaction failed + Не удалось выполнить транзакцию SQL + + + transaction: missing callback + транзакция: отсутствует обратный вызов + + + SQL: database version mismatch + Не совпадает версия базы данных SQL + + + + QDeclarativeFlipable + + front is a write-once property + front - свойство для однократной записи + + + back is a write-once property + back - свойство для однократной записи + + + + QDeclarativeImportDatabase + + plugin cannot be loaded for module "%1": %2 + не удалось загрузить плагин для модуля «%1»: %2 + + + module "%1" plugin "%2" not found + модуль «%1» плагина «%2» не найден + + + module "%1" version %2.%3 is not installed + модуль «%1» версии %2.%3 не установлен + + + module "%1" is not installed + модуль «%1» не установлен + + + "%1": no such directory + «%1»: каталог не существует + + + import "%1" has no qmldir and no namespace + каталог «%1» не содержит ни qmldir, ни namespace + + + - %1 is not a namespace + - %1 - некорректное пространство имён + + + - nested namespaces not allowed + - вложенные пространства имён недопустимы + + + local directory + локальный каталог + + + is ambiguous. Found in %1 and in %2 + неоднозначно. Найдено в %1 и %2 + + + is ambiguous. Found in %1 in version %2.%3 and %4.%5 + неоднозначно. Найдено в %1 версий %2.%3 и %4.%5 + + + is instantiated recursively + обрабатывается рекурсивно + + + is not a type + не является типом + + + File name case mismatch for "%1" + Регистр имени файла не соответствует «%1» + + + + QDeclarativeKeyNavigationAttached + + KeyNavigation is only available via attached properties + KeyNavigation доступна только через прикреплённые свойства + + + + QDeclarativeKeysAttached + + Keys is only available via attached properties + Keys доступны только через прикреплённые свойства + + + + QDeclarativeLayoutMirroringAttached + + LayoutDirection attached property only works with Items + Подключённое свойство LayoutDirection работает только с элементами + + + LayoutMirroring is only available via attached properties + LayoutMirroring доступно только через подключаемые свойства + + + + QDeclarativeListModel + + remove: index %1 out of range + remove: индекс %1 вне диапазона + + + insert: value is not an object + insert: значение не является объектом + + + insert: index %1 out of range + insert: индекс %1 вне диапазона + + + move: out of range + move: индекс вне диапазона + + + append: value is not an object + append: значение не является объектом + + + set: value is not an object + set: значение не является объектом + + + set: index %1 out of range + set: индекс %1 вне диапазона + + + ListElement: cannot contain nested elements + ListElement: не может содержать вложенные элементы + + + ListElement: cannot use reserved "id" property + ListElement: невозможно использовать зарезервированное свойство «id» + + + ListElement: cannot use script for property value + ListElement: невозможно использовать сценарий в качестве значения свойства + + + ListModel: undefined property '%1' + ListModel: неопределённое свойство «%1» + + + + QDeclarativeLoader + + Loader does not support loading non-visual elements. + Загрузчик не поддерживает загрузку невизуальных элементов. + + + + QDeclarativeParentAnimation + + Unable to preserve appearance under complex transform + Невозможно сохранить внешний вид при сложном преобразовании + + + Unable to preserve appearance under non-uniform scale + Невозможно сохранить внешний вид при неоднородном масштабе + + + Unable to preserve appearance under scale of 0 + Невозможно сохранить внешний вид при масштабе 0 + + + + QDeclarativeParentChange + + Unable to preserve appearance under complex transform + Невозможно сохранить внешний вид при сложном преобразовании + + + Unable to preserve appearance under non-uniform scale + Невозможно сохранить внешний вид при неоднородном масштабе + + + Unable to preserve appearance under scale of 0 + Невозможно сохранить внешний вид при масштабе 0 + + + + QDeclarativeParser + + Illegal unicode escape sequence + Недопустимая unicode esc-последовательность + + + Illegal character + Недопустимый символ + + + Unclosed string at end of line + Незакрытый текст в конце строки + + + Illegal escape sequence + Недопустимая esc-последовательность + + + Unclosed comment at end of file + Незакрытый комментарий в конце строки + + + Illegal syntax for exponential number + Недопустимый синтаксис для экспоненциального числа + + + Identifier cannot start with numeric literal + Идентификатор не может начинаться с цифры + + + Unterminated regular expression literal + Незаконченный литерал регулярного выражения + + + Invalid regular expression flag '%0' + Некорректный флаг «%0» в регулярном выражении + + + Unterminated regular expression backslash sequence + Регулярное выражение содержит незавершённую экранированную последовательность + + + Unterminated regular expression class + Регулярное выражение содержит незавершённый класс + + + Syntax error + Синтаксическая ошибка + + + Unexpected token `%1' + Неожиданный символ «%1» + + + Expected token `%1' + Ожидается символ «%1» + + + Property value set multiple times + Значение свойства установлено несколько раз + + + Expected type name + Ожидается название типа + + + Invalid import qualifier ID + Некорректный ID спецификатора импорта + + + Reserved name "Qt" cannot be used as an qualifier + Зарезервированное имя «Qt» не может быть использовано в качестве спецификатора + + + Script import qualifiers must be unique. + Спецификаторы импорта сценария должны быть уникальными. + + + Script import requires a qualifier + Для импорта сценария требуется спецификатор + + + Library import requires a version + Импорт библиотеки требует версию + + + Expected parameter type + Ожидается тип параметра + + + Invalid property type modifier + Некорректный модификатор типа свойства + + + Unexpected property type modifier + Неожиданный модификатор типа свойства + + + Expected property type + Ожидается тип свойства + + + Readonly not yet supported + Readonly ещё не поддерживается + + + JavaScript declaration outside Script element + Определение JavaScript вне элемента Script + + + + QDeclarativePauseAnimation + + Cannot set a duration of < 0 + Невозможно установить длительность < 0 + + + + QDeclarativePixmap + + Error decoding: %1: %2 + Ошибка декодирования: %1: %2 + + + Failed to get image from provider: %1 + Не удалось получить изображение от постащика изображений: %1 + + + Cannot open: %1 + Не удалось открыть: %1 + + + + QDeclarativePropertyAnimation + + Cannot set a duration of < 0 + Невозможно установить длительность < 0 + + + + QDeclarativePropertyChanges + + PropertyChanges does not support creating state-specific objects. + PropertyChanges не поддерживают создание объектов, зависимых от состояния. + + + Cannot assign to non-existent property "%1" + Невозможно назначить несуществующему свойству «%1» + + + Cannot assign to read-only property "%1" + Невозможно назначить свойству только для чтения «%1» + + + + QDeclarativeTextInput + + Could not load cursor delegate + Не удалось загрузить делегат курсора + + + Could not instantiate cursor delegate + Не удалось инстанциировать делегат курсора + + + + QDeclarativeTypeLoader + + Script %1 unavailable + Сценарий %1 недоступен + + + Type %1 unavailable + Тип «%1» недоступен + + + Namespace %1 cannot be used as a type + Пространство имён «%1» не может быть использовано в качестве типа + + + %1 %2 + %1 %2 + + + + QDeclarativeVME + + Unable to create object of type %1 + Невозможно создать объект типа «%1» + + + Cannot assign value %1 to property %2 + Невозможно присвоить значение «%1» свойству «%2» + + + Cannot assign object type %1 with no default method + Невозможно присвоить объект типа «%1» без метода по умолчанию + + + Cannot connect mismatched signal/slot %1 %vs. %2 + Невозможно подключить отсутствующий сигнал/слот %1 к %2 + + + Cannot assign an object to signal property %1 + Невозможно назначить объект к свойству сигнала %1 + + + Cannot assign object to list + Невозможно назначить объект списку + + + Cannot assign object to interface property + Невозможно назначить объект свойству интерфейса + + + Unable to create attached object + Не удалось создать вложенный объект + + + Cannot set properties on %1 as it is null + Невозможно установить свойства для %1, так как он нулевой + + + + QDeclarativeVisualDataModel + + Delegate component must be Item type. + Компонента делегата должен быть типа Item. + + + + QDeclarativeXmlListModel + + Qt was built without support for xmlpatterns + Qt было собрано без поддержки xmlpatterns + + + + QDeclarativeXmlListModelRole + + An XmlRole query must not start with '/' + Запрос XmlRole не должен начинаться с «/» + + + + QDeclarativeXmlRoleList + + An XmlListModel query must start with '/' or "//" + Запрос XmlListModel должен начинаться с «/» или «//» + + + + QDial + + QDial + QDial + + + SpeedoMeter + SpeedoMeter + + + SliderHandle + SliderHandle + + + + QDialog + + What's This? + Что это? + + + Done + Готово + + + + QDialogButtonBox + + OK + ОК + + + Save + Сохранить + + + &Save + &Сохранить + + + Open + Открыть + + + Cancel + Отмена + + + &Cancel + От&мена + + + Close + Закрыть + + + &Close + &Закрыть + + + Apply + Применить + + + Reset + Сбросить + + + Help + Справка + + + Don't Save + Не сохранять + + + Discard + Отклонить + + + &Yes + &Да + + + Yes to &All + Да для &всех + + + &No + &Нет + + + N&o to All + Н&ет для всех + + + Save All + Сохранить все + + + Abort + Прервать + + + Retry + Повторить + + + Ignore + Пропустить + + + Restore Defaults + Восстановить значения + + + Close without Saving + Закрыть без сохранения + + + &OK + &ОК + + + + QDirModel + + Name + Имя + + + Size + Размер + + + Kind + Match OS X Finder + Вид + + + Type + All other platforms + Тип + + + Date Modified + Дата изменения + + + + QDockWidget + + Close + Закрыть + + + Dock + Прикрепить + + + Float + Открепить + + + + QDoubleSpinBox + + More + Больше + + + Less + Меньше + + + + QErrorMessage + + &Show this message again + &Показывать это сообщение в дальнейшем + + + &OK + &Закрыть + + + Debug Message: + Отладочное сообщение: + + + Warning: + Предупреждение: + + + Fatal Error: + Критическая ошибка: + + + + QFile + + Destination file exists + Файл существует + + + Will not rename sequential file using block copy + Последовательный файл не будет переименован с использованием поблочного копирования + + + Cannot remove source file + Невозможно удалить исходный файл + + + Cannot open %1 for input + Невозможно открыть %1 для ввода + + + Cannot open for output + Невозможно открыть для вывода + + + Failure to write block + Сбой записи блока + + + Cannot create %1 for output + Невозможно создать %1 для вывода + + + No file engine available or engine does not support UnMapExtension + Нет файлового движка или он не поддерживает UnMapExtension + + + + QFileDialog + + All Files (*) + Все файлы (*) + + + Back + Назад + + + List View + Список + + + Detail View + Подробный вид + + + File + Файл + + + File Folder + Match Windows Explorer + Папка с файлами + + + Folder + All other platforms + Папка + + + Alias + Mac OS X Finder + Псевдоним + + + Shortcut + All other platforms + Ярлык + + + Open + Открыть + + + Save As + Сохранить как + + + &Open + &Открыть + + + &Save + &Сохранить + + + '%1' is write protected. +Do you want to delete it anyway? + «%1» защищён от записи. +Действительно желаете удалить? + + + Recent Places + Недавние документы + + + &Rename + &Переименовать + + + &Delete + &Удалить + + + Show &hidden files + Показать ск&рытые файлы + + + New Folder + Новая папка + + + Find Directory + Найти каталог + + + Directories + Каталоги + + + All Files (*.*) + Все файлы (*.*) + + + Directory: + Каталог: + + + %1 already exists. +Do you want to replace it? + %1 уже существует. +Хотите заменить его? + + + %1 +File not found. +Please verify the correct file name was given. + %1 +Файл не найден. +Проверьте правильность указанного имени файла. + + + My Computer + Мой компьютер + + + Parent Directory + Родительский каталог + + + Files of type: + Типы файлов: + + + %1 +Directory not found. +Please verify the correct directory name was given. + %1 +Каталог не найден. +Проверьте правильность указанного имени каталога. + + + Are sure you want to delete '%1'? + Вы действительно хотите удалить «%1»? + + + Could not delete directory. + Не удалось удалить каталог. + + + Drive + Диск + + + Unknown + Неизвестный + + + Show + Показать + + + Forward + Вперёд + + + &New Folder + &Новая папка + + + &Choose + &Выбрать + + + Remove + Удалить + + + File &name: + &Имя файла: + + + Look in: + Перейти к: + + + Create New Folder + Создать папку + + + Go back + Назад + + + Go forward + Вперёд + + + Go to the parent directory + Перейти в родительский каталог + + + Create a New Folder + Создать новую папку + + + Change to list view mode + Переключить в режим списка + + + Change to detail view mode + Переключить в подробный режим + + + + QFileSystemModel + + %1 TB + %1 Тб + + + %1 GB + %1 Гб + + + %1 MB + %1 Мб + + + %1 KB + %1 Кб + + + %1 bytes + %1 байт + + + Invalid filename + Некорректное имя файла + + + <b>The name "%1" can not be used.</b><p>Try using another name, with fewer characters or no punctuations marks. + <b>Имя «%1» не может быть использовано.</b><p>Попробуйте использовать имя меньшей длины и/или без символов пунктуации. + + + Name + Имя + + + Size + Размер + + + Kind + Match OS X Finder + Вид + + + Type + All other platforms + Тип + + + Date Modified + Дата изменения + + + My Computer + Мой компьютер + + + Computer + Компьютер + + + %1 byte(s) + %1 байт + + + + QFontDatabase + + Normal + Обычный + + + Bold + Жирный + + + Demi Bold + Полужирный + + + Black + Чёрный + + + Demi + Средний + + + Light + Светлый + + + Italic + Курсив + + + Oblique + Наклонный + + + Any + Любая + + + Latin + Латиница + + + Greek + Греческая + + + Cyrillic + Кириллица + + + Armenian + Армянская + + + Hebrew + Иврит + + + Arabic + Арабская + + + Syriac + Сирийская + + + Thaana + Таана + + + Devanagari + Деванагири + + + Bengali + Бенгальская + + + Gurmukhi + Гурмукхи + + + Gujarati + Гуджарати + + + Oriya + Ория + + + Tamil + Тамильская + + + Telugu + Телугу + + + Kannada + Каннада + + + Malayalam + Малайялам + + + Sinhala + Сингальская + + + Thai + Тайская + + + Lao + Лаосская + + + Tibetan + Тибетская + + + Myanmar + Мьянма + + + Georgian + Грузинская + + + Khmer + Кхмерская + + + Simplified Chinese + Китайская упрощённая + + + Traditional Chinese + Китайская традиционная + + + Japanese + Японская + + + Korean + Корейская + + + Vietnamese + Вьетнамская + + + Symbol + Символьная + + + Ogham + Огамическая + + + Runic + Руническая + + + N'Ko + Нко + + + + QFontDialog + + &Font + &Шрифт + + + Font st&yle + &Начертание + + + &Size + &Размер + + + Effects + Эффекты + + + Stri&keout + Зачёр&кнутый + + + &Underline + П&одчёркнутый + + + Sample + Пример + + + Select Font + Выбор шрифта + + + Wr&iting System + &Система письма + + + + QFtp + + Host %1 found + Узел %1 найден + + + Host found + Узел найден + + + Connected to host %1 + Установлено соединение с узлом %1 + + + Connected to host + Соединение с узлом установлено + + + Connection to %1 closed + Соединение с %1 закрыто + + + Connection closed + Соединение закрыто + + + Host %1 not found + Узел %1 не найден + + + Connection refused to host %1 + В соединении с узлом %1 отказано + + + Connection timed out to host %1 + Время на соединение с узлом %1 истекло + + + Unknown error + Неизвестная ошибка + + + Connecting to host failed: +%1 + Не удалось соединиться с узлом: +%1 + + + Login failed: +%1 + Не удалось авторизоваться: +%1 + + + Listing directory failed: +%1 + Не удалось прочитать каталог: +%1 + + + Changing directory failed: +%1 + Не удалось сменить каталог: +%1 + + + Downloading file failed: +%1 + Не удалось загрузить файл: +%1 + + + Uploading file failed: +%1 + Не удалось отгрузить файл: +%1 + + + Removing file failed: +%1 + Не удалось удалить файл: +%1 + + + Creating directory failed: +%1 + Не удалось создать каталог: +%1 + + + Removing directory failed: +%1 + Не удалось удалить каталог: +%1 + + + Not connected + Соединение не установлено + + + Connection refused for data connection + Отказ в соединении для передачи данных + + + + QGroupBox + + Toggle + Вкл/выкл + + + + QHostInfo + + Unknown error + Неизвестная ошибка + + + No host name given + Имя узла не задано + + + + QHostInfoAgent + + Host not found + Узел не найден + + + Unknown address type + Неизвестный тип адреса + + + Unknown error + Неизвестная ошибка + + + No host name given + Имя узла не задано + + + Invalid hostname + Некорректное имя узла + + + Unknown error (%1) + Неизвестная ошибка (%1) + + + + QHttp + + Connection refused + Отказано в соединении + + + Host %1 not found + Узел %1 не найден + + + Wrong content length + Неверная длина содержимого + + + HTTP request failed + HTTP-запрос не удался + + + Host %1 found + Узел %1 найден + + + Host found + Узел найден + + + Connected to host %1 + Установлено соединение с узлом %1 + + + Connected to host + Соединение с узлом установлено + + + Connection to %1 closed + Соединение с узлом %1 закрыто + + + Connection closed + Соединение закрыто + + + Unknown error + Неизвестная ошибка + + + Request aborted + Запрос прерван + + + No server set to connect to + Не указан сервер для подключения + + + Server closed connection unexpectedly + Сервер неожиданно разорвал соединение + + + Invalid HTTP response header + Некорректный HTTP-заголовок ответа + + + Unknown authentication method + Неизвестный метод авторизации + + + Invalid HTTP chunked body + Некорректное HTTP-фрагментирование данных + + + Error writing response to device + Ошибка записи ответа на устройство + + + Proxy authentication required + Требуется авторизация на прокси-сервере + + + Authentication required + Требуется авторизация + + + Proxy requires authentication + Прокси-сервер требует авторизацию + + + Host requires authentication + Узел требует авторизацию + + + Data corrupted + Данные повреждены + + + SSL handshake failed + Квитирование SSL не удалось + + + Unknown protocol specified + Указан неизвестный протокол + + + Connection refused (or timed out) + В соединении отказано (или время ожидания истекло) + + + HTTPS connection requested but SSL support not compiled in + Запрошено соединение по протоколу HTTPS, но поддержка SSL не скомпилирована + + + + QHttpSocketEngine + + Did not receive HTTP response from proxy + Не получен HTTP-ответ от прокси-сервера + + + Error parsing authentication request from proxy + Ошибка разбора запроса авторизации от прокси-сервера + + + Authentication required + Требуется авторизация + + + Proxy denied connection + Прокси-сервер запретил соединение + + + Error communicating with HTTP proxy + Ошибка обмена данными с прокси-сервером HTTP + + + Proxy server not found + Прокси-сервер не найден + + + Proxy connection refused + В соединении прокси-сервером отказано + + + Proxy server connection timed out + Время на соединение с прокси-сервером истекло + + + Proxy connection closed prematurely + Соединение с прокси-сервером неожиданно закрыто + + + + QIBaseDriver + + Error opening database + Ошибка открытия базы данных + + + Could not start transaction + Не удалось начать транзакцию + + + Unable to commit transaction + Невозможно завершить транзакцию + + + Unable to rollback transaction + Невозможно откатить транзакцию + + + + QIBaseResult + + Unable to create BLOB + Невозможно создать BLOB + + + Unable to write BLOB + Невозможно записать BLOB + + + Unable to open BLOB + Невозможно открыть BLOB + + + Unable to read BLOB + Невозможно прочитать BLOB + + + Could not find array + Не удалось найти массив + + + Could not get array data + Не удалось найти данные массива + + + Could not get query info + Не удалось найти информацию о запросе + + + Could not start transaction + Не удалось начать транзакцию + + + Unable to commit transaction + Невозможно завершить транзакцию + + + Could not allocate statement + Не удалось получить ресурсы для создания выражения + + + Could not prepare statement + Не удалось подготовить выражение + + + Could not describe input statement + Не удалось описать входящее выражение + + + Could not describe statement + Не удалось описать выражение + + + Unable to close statement + Невозможно закрыть выражение + + + Unable to execute query + Невозможно выполнить запрос + + + Could not fetch next item + Не удалось получить следующий элемент + + + Could not get statement info + Не удалось найти информацию о выражении + + + + QIODevice + + Permission denied + Доступ запрещён + + + Too many open files + Слишком много открытых файлов + + + No such file or directory + Файл или каталог не существует + + + No space left on device + Нет свободного места на устройстве + + + Unknown error + Неизвестная ошибка + + + + QInputContext + + XIM + Метод ввода X-сервера + + + FEP + Метод ввода S60 FEP + + + XIM input method + Метод ввода X-сервера + + + Windows input method + Метод ввода Windows + + + Mac OS X input method + Метод ввода Mac OS X + + + S60 FEP input method + Метод ввода S60 FEP + + + + QInputDialog + + Enter a value: + Укажите значение: + + + + QLibrary + + Plugin verification data mismatch in '%1' + Проверочная информация для модуля «%1» не совпадает + + + The plugin '%1' uses incompatible Qt library. (%2.%3.%4) [%5] + Модуль «%1» использует несоместимую библиотеку Qt. (%2.%3.%4) [%5] + + + The plugin '%1' uses incompatible Qt library. Expected build key "%2", got "%3" + Модуль «%1» использует несоместимую библиотеку Qt. Ожидается ключ «%2», но получен ключ «%3» + + + Unknown error + Неизвестная ошибка + + + The shared library was not found. + Динамическая библиотека не найдена. + + + The file '%1' is not a valid Qt plugin. + Файл «%1» - не является корректным модулем Qt. + + + The plugin '%1' uses incompatible Qt library. (Cannot mix debug and release libraries.) + Модуль «%1» использует несоместимую библиотеку Qt. (Невозможно совместить релизные и отладочные библиотеки.) + + + Cannot load library %1: %2 + Невозможно загрузить библиотеку %1: %2 + + + Cannot unload library %1: %2 + Невозможно выгрузить библиотеку %1: %2 + + + Cannot resolve symbol "%1" in %2: %3 + Невозможно разрешить символ «%1» в %2: %3 + + + '%1' is not an ELF object (%2) + «%1» не является объектом ELF (%2) + + + '%1' is not an ELF object + «%1» не является объектом ELF + + + '%1' is an invalid ELF object (%2) + «%1» является неверным объектом ELF (%2) + + + + QLineEdit + + Select All + Выделить всё + + + &Undo + &Отменить действие + + + &Redo + &Повторить действие + + + Cu&t + &Вырезать + + + &Copy + &Копировать + + + &Paste + В&ставить + + + Delete + Удалить + + + + QLocalServer + + %1: Name error + %1: Некорректное имя + + + %1: Permission denied + %1: Доступ запрещён + + + %1: Address in use + %1: Адрес используется + + + %1: Unknown error %2 + %1: Неизвестная ошибка %2 + + + + QLocalSocket + + %1: Connection refused + %1: Отказано в соединении + + + %1: Remote closed + %1: Закрыто удаленной стороной + + + %1: Invalid name + %1: Некорректное имя + + + %1: Socket access error + %1: Ошибка обращения к сокету + + + %1: Socket resource error + %1: Ошибка выделения ресурсов сокета + + + %1: Socket operation timed out + %1: Время на операцию с сокетом истекло + + + %1: Datagram too large + %1: Датаграмма слишком большая + + + %1: Connection error + %1: Ошибка соединения + + + %1: The socket operation is not supported + %1: Операция с сокетом не поддерживается + + + %1: Unknown error + %1: Неизвестная ошибка + + + %1: Unknown error %2 + %1: Неизвестная ошибка %2 + + + %1: Access denied + %1: Доступ запрещён + + + + QMYSQLDriver + + Unable to open database ' + Невозможно открыть базу данных ' + + + Unable to connect + Невозможно соединиться + + + Unable to begin transaction + Невозможно начать транзакцию + + + Unable to commit transaction + Невозможно завершить транзакцию + + + Unable to rollback transaction + Невозможно откатить транзакцию + + + + QMYSQLResult + + Unable to fetch data + Невозможно получить данные + + + Unable to execute query + Невозможно выполнить запрос + + + Unable to store result + Невозможно сохранить результат + + + Unable to prepare statement + Невозможно подготовить выражение + + + Unable to reset statement + Невозможно сбросить выражение + + + Unable to bind value + Невозможно привязать значение + + + Unable to execute statement + Невозможно выполнить выражение + + + Unable to bind outvalues + Невозможно привязать результирующие значения + + + Unable to store statement results + Невозможно сохранить результаты выполнения выражения + + + Unable to execute next query + Невозможно выполнить следующий запрос + + + Unable to store next result + Невозможно сохранить следующий результат + + + + QMdiArea + + (Untitled) + (Неозаглавлено) + + + + QMdiSubWindow + + %1 - [%2] + %1 - [%2] + + + Close + Закрыть + + + Minimize + Свернуть + + + Restore Down + Восстановить + + + &Restore + &Восстановить + + + &Move + &Переместить + + + &Size + &Размер + + + Mi&nimize + &Свернуть + + + Ma&ximize + Р&аспахнуть + + + Stay on &Top + Оставаться &сверху + + + &Close + &Закрыть + + + Maximize + Распахнуть + + + Unshade + Восстановить из заголовка + + + Shade + Свернуть в заголовок + + + Restore + Восстановить + + + Help + Справка + + + Menu + Меню + + + - [%1] + - [%1] + + + + QMenu + + Close + Закрыть + + + Open + Открыть + + + Execute + Выполнить + + + + QMenuBar + + Actions + Действия + + + Corner Toolbar + Угловая панель + + + + QMessageBox + + OK + Закрыть + + + <h3>About Qt</h3><p>This program uses Qt version %1.</p> + <h3>О Qt</h3><p>Данная программа использует Qt версии %1.</p> + + + <p>Qt is a C++ toolkit for cross-platform application development.</p><p>Qt provides single-source portability across MS&nbsp;Windows, Mac&nbsp;OS&nbsp;X, Linux, and all major commercial Unix variants. Qt is also available for embedded devices as Qt for Embedded Linux and Qt for Windows CE.</p><p>Qt is available under three different licensing options designed to accommodate the needs of our various users.</p><p>Qt licensed under our commercial license agreement is appropriate for development of proprietary/commercial software where you do not want to share any source code with third parties or otherwise cannot comply with the terms of the GNU LGPL version 2.1 or GNU GPL version 3.0.</p><p>Qt licensed under the GNU LGPL version 2.1 is appropriate for the development of Qt applications (proprietary or open source) provided you can comply with the terms and conditions of the GNU LGPL version 2.1.</p><p>Qt licensed under the GNU General Public License version 3.0 is appropriate for the development of Qt applications where you wish to use such applications in combination with software subject to the terms of the GNU GPL version 3.0 or where you are otherwise willing to comply with the terms of the GNU GPL version 3.0.</p><p>Please see <a href="http://qt.io/licensing">qt.io/licensing</a> for an overview of Qt licensing.</p><p>Copyright (C) 2015 The Qt Company Ltd.</p><p>Qt is a The Qt Company product. See <a href="http://qt.io/">qt.io</a> for more information.</p> + <p>Qt - это инструментарий для разработки кроссплатформенных приложений на C++.</p><p>Qt предоставляет совместимость на уровне исходных текстов между MS&nbsp;Windows, Mac&nbsp;OS&nbsp;X, Linux и всеми популярными коммерческими вариантами Unix. Также Qt доступна для встраиваемых устройств в виде Qt для Embedded Linux и Qt для Windows CE.</p><p>Qt доступна под тремя различными лицензиями, разработанными для удовлетворения различных требований.</p><p>Qt под нашей коммерческой лицензией предназначена для развития проприетарного/коммерческого программного обеспечения, когда Вы не желаете предоставлять исходные тексты третьим сторонам, или в случае невозможности принятия условий лицензий GNU LGPL версии 2.1 или GNU GPL версии 3.0.</p><p>Qt под лицензией GNU LGPL версии 2.1 предназначена для разработки программного обеспечения с открытыми исходными текстами или коммерческого программного обеспечения при соблюдении условий лицензии GNU LGPL версии 2.1.</p><p>Qt под лицензией GNU General Public License версии 3.0 предназначена для разработки программных приложений в тех случаях, когда Вы хотели бы использовать такие приложения в сочетании с программным обеспечением на условиях лицензии GNU GPL с версии 3.0 или если Вы готовы соблюдать условия лицензии GNU GPL версии 3.0.</p><p>Обратитесь к <a href="http://qt.io/licensing">qt.io/licensing</a> для обзора лицензий Qt.</p><p>Copyright (C) 2015 Корпорация The Qt Company Ltd и/или её дочерние подразделения.</p><p>Qt - продукт компании The Qt Company. Обратитесь к <a href="http://qt.io/">qt.io</a> для получения дополнительной информации.</p> + + + About Qt + О Qt + + + Help + Справка + + + Show Details... + Показать подробности... + + + Hide Details... + Скрыть подробности... + + + + QMultiInputContext + + Select IM + Выбор режима ввода + + + + QMultiInputContextPlugin + + Multiple input method switcher + Переключатель режима множественного ввода + + + Multiple input method switcher that uses the context menu of the text widgets + Переключатель режима множественного ввода, используемый в контекстном меню текстовых редакторов + + + + QNativeSocketEngine + + The remote host closed the connection + Удалённый узел закрыл соединение + + + Network operation timed out + Время на сетевую операцию истекло + + + Out of resources + Недостаточно ресурсов + + + Unsupported socket operation + Операция с сокетом не поддерживается + + + Protocol type not supported + Протокол не поддерживается + + + Invalid socket descriptor + Некорректный дескриптор сокета + + + Network unreachable + Сеть недоступна + + + Permission denied + Доступ запрещён + + + Connection timed out + Время на соединение истекло + + + Connection refused + Отказано в соединении + + + The bound address is already in use + Адрес уже используется + + + The address is not available + Адрес недоступен + + + The address is protected + Адрес защищён + + + Unable to send a message + Невозможно отправить сообщение + + + Unable to receive a message + Невозможно получить сообщение + + + Unable to write + Невозможно записать + + + Network error + Ошибка сети + + + Another socket is already listening on the same port + Другой сокет уже прослушивает этот порт + + + Unable to initialize non-blocking socket + Невозможно инициализировать не-блочный сокет + + + Unable to initialize broadcast socket + Невозможно инициализировать широковещательный сокет + + + Attempt to use IPv6 socket on a platform with no IPv6 support + Попытка использовать IPv6 на платформе, не поддерживающей IPv6 + + + Host unreachable + Узел недоступен + + + Datagram was too large to send + Датаграмма слишком большая для отправки + + + Operation on non-socket + Операция с не-сокетом + + + Unknown error + Неизвестная ошибка + + + The proxy type is invalid for this operation + Некорректный тип прокси-сервера для данной операции + + + + QNetworkAccessCacheBackend + + Error opening %1 + Ошибка открытия %1 + + + + QNetworkAccessDataBackend + + Invalid URI: %1 + Некорректный URI: %1 + + + + QNetworkAccessDebugPipeBackend + + Write error writing to %1: %2 + Ошибка записи в %1: %2 + + + Socket error on %1: %2 + Ошика сокета для %1: %2 + + + Remote host closed the connection prematurely on %1 + Удалённый узел неожиданно прервал соединение для %1 + + + + QNetworkAccessFileBackend + + Request for opening non-local file %1 + Запрос на открытие файла вне файловой системы %1 + + + Error opening %1: %2 + Ошибка открытия %1: %2 + + + Write error writing to %1: %2 + Ошибка записи в %1: %2 + + + Cannot open %1: Path is a directory + Невозможно открыть %1: Указан путь к каталогу + + + Read error reading from %1: %2 + Ошибка чтения из %1: %2 + + + + QNetworkAccessFtpBackend + + No suitable proxy found + Подходящий прокси-сервер не найден + + + Cannot open %1: is a directory + Невозможно открыть %1: Указан путь к каталогу + + + Logging in to %1 failed: authentication required + Соединение с %1 не удалось: требуется авторизация + + + Error while downloading %1: %2 + Ошибка в процессе загрузки %1: %2 + + + Error while uploading %1: %2 + Ошибка в процессе отгрузки %1: %2 + + + + QNetworkAccessHttpBackend + + No suitable proxy found + Подходящий прокси-сервер не найден + + + + QNetworkAccessManager + + Network access is disabled. + Доступ в сеть отключён. + + + + QNetworkReply + + Error downloading %1 - server replied: %2 + Ошибка загрузки %1 - ответ сервера: %2 + + + Protocol "%1" is unknown + Неизвестный протокол «%1» + + + Network session error. + Ошибка сетевой сессии. + + + backend start error. + ошибка запуска драйвера. + + + Temporary network failure. + Временная ошибка сети. + + + + QNetworkReplyImpl + + Operation canceled + Операция отменена + + + + QNetworkSession + + Invalid configuration. + Некорректная конфигурация. + + + + QNetworkSessionPrivateImpl + + Roaming error + или перемещения? + Ошибка роуминга + + + Session aborted by user or system + Сессия прервана пользователем или системой + + + Unidentified Error + Неопределённая ошибка + + + Unknown session error. + Неизвестная ошибка сессии. + + + The session was aborted by the user or system. + Сессия была прервана пользователем или системой. + + + The requested operation is not supported by the system. + Требуемая операция не поддерживается системой. + + + The specified configuration cannot be used. + Невозможно использовать указанную конфигурацию. + + + Roaming was aborted or is not possible. + Роуминг прерван или невозможен. + + + + QOCIDriver + + Unable to initialize + QOCIDriver + Невозможно инициализировать + + + Unable to logon + Невозможно авторизоваться + + + Unable to begin transaction + Невозможно начать транзакцию + + + Unable to commit transaction + Невозможно завершить транзакцию + + + Unable to rollback transaction + Невозможно откатить транзакцию + + + + QOCIResult + + Unable to bind column for batch execute + Невозможно привязать столбец для пакетного выполнения + + + Unable to execute batch statement + Невозможно выполнить пакетное выражение + + + Unable to goto next + Невозможно перейти к следующей строке + + + Unable to alloc statement + Невозможно создать выражение + + + Unable to prepare statement + Невозможно подготовить выражение + + + Unable to get statement type + Невозможно определить тип выражения + + + Unable to bind value + Невозможно привязать результирующие значения + + + Unable to execute statement + Невозможно выполнить выражение + + + + QODBCDriver + + Unable to connect + Невозможно соединиться + + + Unable to disable autocommit + Невозможно отключить автозавершение транзакций + + + Unable to commit transaction + Невозможно завершить транзакцию + + + Unable to rollback transaction + Невозможно откатить транзакцию + + + Unable to enable autocommit + Невозможно включить автозавершение транзакций + + + Unable to connect - Driver doesn't support all functionality required + Невозможно соединиться - Драйвер не поддерживает требуемый функционал + + + + QODBCResult + + QODBCResult::reset: Unable to set 'SQL_CURSOR_STATIC' as statement attribute. Please check your ODBC driver configuration + QODBCResult::reset: Невозможно установить «SQL_CURSOR_STATIC» атрибутом выражение. Проверьте настройки драйвера ODBC + + + Unable to execute statement + Невозможно выполнить выражение + + + Unable to fetch next + Невозможно получить следующую строку + + + Unable to prepare statement + Невозможно подготовить выражение + + + Unable to bind variable + Невозможно привязать значение + + + Unable to fetch last + Невозможно получить последнюю строку + + + Unable to fetch + Невозможно получить данные + + + Unable to fetch first + Невозможно получить первую строку + + + Unable to fetch previous + Невозможно получить предыдущую строку + + + + QObject + + "%1" duplicates a previous role name and will be disabled. + «%1» повторяет имя предыдущей роли и не будет использовано. + + + invalid query: "%1" + Некорректный запрос: «%1» + + + PulseAudio Sound Server + Звуковой сервер PulseAudio + + + Host not found + Узел не найден + + + Could not read image data + Не удалось прочитать данные изображения + + + Sequential device (eg socket) for image read not supported + Не поддерживается чтения изображений из последовательных устройств (например сокета) + + + Seek file/device for image read failed + Не удалось произвести перемещение по файлу/устройству для чтения изображения + + + Image mHeader read failed + Не удалось прочитать mHeader изображения + + + Image type not supported + Тип изображения не поддерживается + + + Image depth not valid + Недопустимая глубина цвета изображения + + + Could not seek to image read footer + Не удалось переместиться к концу изображения + + + Could not read footer + Не удалось прочитать окончание изображения + + + Image type (non-TrueVision 2.0) not supported + Тип изображения (отличный от TrueVision 2.0) не поддерживается + + + Could not reset to start position + Не удалось сбросить в исходную позицию + + + + QPPDOptionsModel + + Name + Имя + + + Value + Значение + + + + QPSQLDriver + + Unable to connect + Невозможно соединиться + + + Could not begin transaction + Не удалось начать транзакцию + + + Could not commit transaction + Не удалось завершить транзакцию + + + Could not rollback transaction + Не удалось откатить транзакцию + + + Unable to subscribe + Невозможно подписаться + + + Unable to unsubscribe + Невозможно отписаться + + + + QPSQLResult + + Unable to create query + Невозможно создать запрос + + + Unable to prepare statement + Невозможно подготовить выражение + + + + QPageSetupWidget + + Centimeters (cm) + Сантиметры (cm) + + + Millimeters (mm) + Миллиметры (mm) + + + Inches (in) + Дюймы (in) + + + Points (pt) + Точки (pt) + + + Form + Форма + + + Paper + Бумага + + + Page size: + Размер страницы: + + + Width: + Ширина: + + + Height: + Высота: + + + Paper source: + Источник бумаги: + + + Orientation + Ориентация + + + Portrait + Книжная + + + Landscape + Альбомная + + + Reverse landscape + Перевёрнутая альбомная + + + Reverse portrait + Перевёрнутая книжная + + + Margins + Поля + + + top margin + верхнее поле + + + left margin + левое поле + + + right margin + правое поле + + + bottom margin + нижнее поле + + + + QPluginLoader + + Unknown error + Неизвестная ошибка + + + The plugin was not loaded. + Модуль не был загружен. + + + + QPrintDialog + + locally connected + соединено локально + + + Aliases: %1 + Псевдонимы: %1 + + + unknown + неизвестно + + + OK + Закрыть + + + Print all + Все страницы + + + Print range + Диапазон страниц + + + A0 (841 x 1189 mm) + A0 (841 x 1189 мм) + + + A1 (594 x 841 mm) + A1 (594 x 841 мм) + + + A2 (420 x 594 mm) + A2 (420 x 594 мм) + + + A3 (297 x 420 mm) + A3 (297 x 420 мм) + + + A5 (148 x 210 mm) + A5 (148 x 210 мм) + + + A6 (105 x 148 mm) + A6 (105 x 148 мм) + + + A7 (74 x 105 mm) + A7 (74 x 105 мм) + + + A8 (52 x 74 mm) + A8 (52 x 74 мм) + + + A9 (37 x 52 mm) + A9 (37 x 52 мм) + + + B0 (1000 x 1414 mm) + B0 (1000 x 1414 мм) + + + B1 (707 x 1000 mm) + B1 (707 x 1000 мм) + + + B2 (500 x 707 mm) + B2 (500 x 707 мм) + + + B3 (353 x 500 mm) + B3 (353 x 500 мм) + + + B4 (250 x 353 mm) + B4 (250 x 353 мм) + + + B6 (125 x 176 mm) + B6 (125 x 176 мм) + + + B7 (88 x 125 mm) + B7 (88 x 125 мм) + + + B8 (62 x 88 mm) + B8 (62 x 88 мм) + + + B9 (44 x 62 mm) + B9 (44 x 62 мм) + + + B10 (31 x 44 mm) + B10 (31 x 44 мм) + + + C5E (163 x 229 mm) + C5E (163 x 229 мм) + + + DLE (110 x 220 mm) + DLE (110 x 220 мм) + + + Folio (210 x 330 mm) + Folio (210 x 330 мм) + + + Ledger (432 x 279 mm) + Ledger (432 x 279 мм) + + + Tabloid (279 x 432 mm) + Tabloid (279 x 432 мм) + + + US Common #10 Envelope (105 x 241 mm) + Конверт US #10 (105x241 мм) + + + Print current page + Текущая страница + + + A4 (210 x 297 mm, 8.26 x 11.7 inches) + A4 (210 x 297 мм, 8.26 x 11.7 дюймов) + + + B5 (176 x 250 mm, 6.93 x 9.84 inches) + B5 (176 x 250 мм, 6.93 x 9.84 дюймов) + + + Executive (7.5 x 10 inches, 191 x 254 mm) + Executive (191 x 254 мм, 7.5 x 10 дюймов) + + + Legal (8.5 x 14 inches, 216 x 356 mm) + Legal (216 x 356 мм, 8.5 x 14 дюймов) + + + Letter (8.5 x 11 inches, 216 x 279 mm) + Letter (216 x 279 мм, 8.5 x 11 дюймов) + + + Print selection + Выделенный фрагмент + + + Print + Печать + + + Print To File ... + Печать в файл ... + + + File %1 is not writable. +Please choose a different file name. + %1 недоступен для записи. +Выберите другое имя файла. + + + %1 already exists. +Do you want to overwrite it? + %1 уже существует. +Хотите заменить его? + + + File exists + Файл существует + + + <qt>Do you want to overwrite it?</qt> + <qt>Хотите заменить?</qt> + + + %1 is a directory. +Please choose a different file name. + %1 - это каталог. +Выберите другое имя файла. + + + The 'From' value cannot be greater than the 'To' value. + Значение «с» не может быть больше значения «по». + + + A0 + A0 + + + A1 + A1 + + + A2 + A2 + + + A3 + A3 + + + A4 + A4 + + + A5 + A5 + + + A6 + A6 + + + A7 + A7 + + + A8 + A8 + + + A9 + A9 + + + B0 + B0 + + + B1 + B1 + + + B2 + B2 + + + B3 + B3 + + + B4 + B4 + + + B5 + B5 + + + B6 + B6 + + + B7 + B7 + + + B8 + B8 + + + B9 + B9 + + + B10 + B10 + + + C5E + C5E + + + DLE + DLE + + + Executive + Executive + + + Folio + Folio + + + Ledger + Ledger + + + Legal + Legal + + + Letter + Letter + + + Tabloid + Tabloid + + + US Common #10 Envelope + US Common #10 Envelope + + + Custom + Пользовательский + + + &Options >> + &Параметры >> + + + &Options << + &Параметры << + + + Print to File (PDF) + Печать в файл (PDF) + + + Print to File (Postscript) + Печать в файл (Postscript) + + + Local file + Локальный файл + + + Write %1 file + Запись %1 файла + + + &Print + &Печать + + + + QPrintPreviewDialog + + %1% + %1% + + + Print Preview + Просмотр печати + + + Next page + Следующая страница + + + Previous page + Предыдущая страница + + + First page + Первая страница + + + Last page + Последняя страница + + + Fit width + По ширине + + + Fit page + На всю страницу + + + Zoom in + Увеличить + + + Zoom out + Уменьшить + + + Portrait + Книжная + + + Landscape + Альбомная + + + Show single page + Показать одну страницу + + + Show facing pages + Показать титульные страницы + + + Show overview of all pages + Показать обзор всех страниц + + + Print + Печать + + + Page setup + Параметры страницы + + + Close + Закрыть + + + Export to PDF + Экспорт в PDF + + + Export to PostScript + Экспорт в Postscript + + + Page Setup + Параметры страницы + + + + QPrintPropertiesWidget + + Form + Форма + + + Page + Страница + + + Advanced + Дополнительно + + + + QPrintSettingsOutput + + Form + Форма + + + Copies + Копии + + + Print range + Диапазон печати + + + Print all + Все + + + Pages from + Страницы с + + + to + по + + + Selection + Выделенный фрагмент + + + Output Settings + Настройки вывода + + + Copies: + Количество копий: + + + Collate + Разобрать по копиям + + + Reverse + Обратный порядок + + + Options + Параметры + + + Color Mode + Режим цвета + + + Color + Цвет + + + Grayscale + Оттенки серого + + + Duplex Printing + Двусторонняя печать + + + None + Нет + + + Long side + По длинной стороне + + + Short side + По короткой стороне + + + Current Page + Текущая страница + + + + QPrintWidget + + Form + Форма + + + Printer + Принтер + + + &Name: + &Название: + + + P&roperties + С&войства + + + Location: + Расположение: + + + Preview + Просмотр + + + Type: + Тип: + + + Output &file: + Вывод в &файл: + + + ... + ... + + + + QProcess + + Could not open input redirection for reading + Не удалось открыть перенаправление ввода для чтения + + + Could not open output redirection for writing + Не удалось открыть перенаправление вывода для записи + + + Resource error (fork failure): %1 + Ошибка выделения ресурсов (сбой fork): %1 + + + Process operation timed out + Время на операцию с процессом истекло + + + Error reading from process + Ошибка получения данных от процесса + + + Error writing to process + Ошибка отправки данных процессу + + + Process crashed + Процесс завершился с ошибкой + + + No program defined + Программа не указана + + + Process failed to start: %1 + Не удалось запустить процесс: %1 + + + + QProgressDialog + + Cancel + Отмена + + + + QPushButton + + Open + Открыть + + + + QRadioButton + + Check + Отметить + + + + QRegExp + + no error occurred + ошибки отсутствуют + + + disabled feature used + использование отключённых возможностей + + + bad char class syntax + неправильный синтаксис класса символов + + + bad lookahead syntax + неправильный синтаксис lookahead + + + lookbehinds not supported, see QTBUG-2371 + lookbehind не поддерживается, см. QTBUG-2371 + + + bad repetition syntax + неправильный синтаксис повторения + + + invalid octal value + некорректное восьмеричное значение + + + missing left delim + отсутствует левый разделитель + + + unexpected end + неожиданный конец + + + met internal limit + достигнуто внутреннее ограничение + + + invalid interval + некорректный интервал + + + invalid category + некорректная категория + + + + QSQLite2Driver + + Error opening database + Ошибка открытия базы данных + + + Unable to begin transaction + Невозможно начать транзакцию + + + Unable to commit transaction + Невозможно завершить транзакцию + + + Unable to rollback transaction + Невозможно откатить транзакцию + + + + QSQLite2Result + + Unable to fetch results + Невозможно получить результаты + + + Unable to execute statement + Невозможно выполнить выражение + + + + QSQLiteDriver + + Error opening database + Ошибка открытия базы данных + + + Error closing database + Ошибка закрытия базы данных + + + Unable to begin transaction + Невозможно начать транзакцию + + + Unable to commit transaction + Невозможно завершить транзакцию + + + Unable to rollback transaction + Невозможно откатить транзакцию + + + + QSQLiteResult + + Unable to fetch row + Невозможно получить строку + + + Unable to execute statement + Невозможно выполнить выражение + + + Unable to execute multiple statements at a time + Невозможно одновременно запустить несколько операторов + + + Unable to reset statement + Невозможно сбросить выражение + + + Unable to bind parameters + Невозможно привязать параметр + + + Parameter count mismatch + Количество параметров не совпадает + + + No query + Отсутствует запрос + + + + QScriptBreakpointsModel + + ID + ID + + + Location + Размещение + + + Condition + Условие + + + Ignore-count + Пропущено + + + Single-shot + Однократно + + + Hit-count + Совпадений + + + + QScriptBreakpointsWidget + + New + Новая + + + Delete + Удалить + + + + QScriptDebugger + + Go to Line + Перейти к строке + + + Line: + Строка: + + + Interrupt + Прервать + + + Shift+F5 + Shift+F5 + + + Continue + Продолжить + + + F5 + F5 + + + Step Into + Войти в + + + F11 + F11 + + + Step Over + Перейти через + + + F10 + F10 + + + Step Out + Выйти из функции + + + Shift+F11 + Shift+F11 + + + Run to Cursor + Выполнить до курсора + + + Ctrl+F10 + Ctrl+F10 + + + Run to New Script + Выполнить до нового сценария + + + Toggle Breakpoint + Установить/убрать точку останова + + + F9 + F9 + + + Clear Debug Output + Очистить отладочный вывод + + + Clear Error Log + Очистить журнал ошибок + + + Clear Console + Очистить консоль + + + &Find in Script... + &Найти в сценарии... + + + Ctrl+F + Ctrl+F + + + Find &Next + Найти &следующее + + + F3 + F3 + + + Find &Previous + Найти &предыдущее + + + Shift+F3 + Shift+F3 + + + Ctrl+G + Ctrl+G + + + Debug + Отладка + + + + QScriptDebuggerCodeFinderWidget + + Close + Закрыть + + + Previous + Предыдущий + + + Next + Следующий + + + Case Sensitive + Учитывать регистр + + + Whole words + Слова целиком + + + <img src=":/qt/scripttools/debugging/images/wrap.png">&nbsp;Search wrapped + <img src=":/qt/scripttools/debugging/images/wrap.png">&nbsp;Поиск с начала + + + + QScriptDebuggerLocalsModel + + Name + Название + + + Value + Значение + + + + QScriptDebuggerStackModel + + Level + Уровень + + + Name + Название + + + Location + Размещение + + + + QScriptEdit + + Toggle Breakpoint + Установить/убрать точку останова + + + Disable Breakpoint + Убрать точку останова + + + Enable Breakpoint + Установить точку останова + + + Breakpoint Condition: + Условие точки останова: + + + + QScriptEngineDebugger + + Loaded Scripts + Загруженные сценарии + + + Breakpoints + Точки останова + + + Stack + Стек + + + Locals + Локальные переменные + + + Console + Консоль + + + Debug Output + Отладочный вывод + + + Error Log + Журнал ошибок + + + Search + Поиск + + + View + Вид + + + Qt Script Debugger + Отладчик сценариев Qt + + + + QScriptNewBreakpointWidget + + Close + Закрыть + + + + QScrollBar + + Scroll here + Прокрутить сюда + + + Left edge + К левой границе + + + Top + Вверх + + + Right edge + К правой границе + + + Bottom + Вниз + + + Page left + На страницу влево + + + Page up + На страницу вверх + + + Page right + На страницу вправо + + + Page down + На страницу вниз + + + Scroll left + Прокрутить влево + + + Scroll up + Прокрутить вверх + + + Scroll right + Прокрутить вправо + + + Scroll down + Прокрутить вниз + + + Line up + На строку вверх + + + Position + Положение + + + Line down + На строку вниз + + + + QSharedMemory + + %1: create size is less then 0 + %1: размер меньше нуля + + + %1: unable to lock + %1: невозможно заблокировать + + + %1: unable to unlock + %1: невозможно разблокировать + + + %1: permission denied + %1: доступ запрещён + + + %1: already exists + %1: уже существует + + + %1: doesn't exists + %1: не существует + + + %1: out of resources + %1: недостаточно ресурсов + + + %1: unknown error %2 + %1: неизвестная ошибка %2 + + + %1: key is empty + %1: пустой ключ + + + %1: ftok failed + %1: ошибка ftok + + + %1: unable to make key + %1: невозможно создать ключ + + + %1: doesn't exist + %1: не существует + + + %1: UNIX key file doesn't exist + %1: специфический ключ UNIX не существует + + + %1: system-imposed size restrictions + %1: системой наложены ограничения на размер + + + %1: bad name + %1: неверное имя + + + %1: not attached + %1: не приложенный + + + %1: invalid size + %1: неверный размер + + + %1: size query failed + %1: не удалось запросить размер + + + %1: unable to set key on lock + %1: невозможно установить ключ блокировки + + + + QShortcut + + Space + This and all following "incomprehensible" strings in QShortcut context are key names. Please use the localized names appearing on actual keyboards or whatever is commonly used. + Пробел + + + Esc + Esc + + + Tab + Tab + + + Backtab + Backtab + + + Backspace + Backspace + + + Return + Return + + + Enter + Enter + + + Ins + Ins + + + Del + Del + + + Pause + Pause + + + Print + Print + + + SysReq + SysReq + + + Home + Home + + + End + End + + + Left + Влево + + + Up + Вверх + + + Right + Вправо + + + Down + Вниз + + + PgUp + PgUp + + + PgDown + PgDown + + + CapsLock + CapsLock + + + NumLock + NumLock + + + ScrollLock + ScrollLock + + + Menu + Меню + + + Help + Справка + + + Back + Назад + + + Forward + Вперёд + + + Stop + Остановить + + + Refresh + Обновить + + + Volume Down + Тише + + + Volume Mute + Выключить звук + + + Volume Up + Громче + + + Bass Boost + Усиление басов + + + Bass Up + Басы выше + + + Bass Down + Басы ниже + + + Treble Up + ВЧ выше + + + Treble Down + ВЧ ниже + + + Media Play + Начать воспроизведение + + + Media Stop + Остановить воспроизведение + + + Media Previous + Воспроизвести предыдущее + + + Media Next + Воспроизвести следующее + + + Media Record + Начать запись + + + Media Pause + Media player pause button + Приостановить воспроизведение + + + Toggle Media Play/Pause + Media player button to toggle between playing and paused + Приостановить/продолжить воспроизведение + + + Favorites + Избранное + + + Search + Поиск + + + Standby + Режим ожидания + + + Open URL + Открыть URL + + + Launch Mail + Почта + + + Launch Media + Проигрыватель + + + Launch (0) + Запустить (0) + + + Launch (1) + Запустить (1) + + + Launch (2) + Запустить (2) + + + Launch (3) + Запустить (3) + + + Launch (4) + Запустить (4) + + + Launch (5) + Запустить (5) + + + Launch (6) + Запустить (6) + + + Launch (7) + Запустить (7) + + + Launch (8) + Запустить (8) + + + Launch (9) + Запустить (9) + + + Launch (A) + Запустить (A) + + + Launch (B) + Запустить (B) + + + Launch (C) + Запустить (C) + + + Launch (D) + Запустить (D) + + + Launch (E) + Запустить (E) + + + Launch (F) + Запустить (F) + + + Monitor Brightness Up + Увеличить яркость монитора + + + Monitor Brightness Down + Уменьшить яркость монитора + + + Keyboard Light On/Off + Вкл./Откл. подсветку клавиатуры + + + Keyboard Brightness Up + Увеличить яркость подсветки клавиатуры + + + Keyboard Brightness Down + Уменьшить яркость подсветки клавиатуры + + + Power Off + Отключение питания + + + Wake Up + Пробуждение + + + Eject + Извлечь + + + Screensaver + Экранная заставка + + + WWW + WWW + + + Sleep + Спящий режим + + + LightBulb + Лампочка + + + Shop + Магазин + + + History + История + + + Add Favorite + Добавить в избранное + + + Hot Links + Горячие ссылки + + + Adjust Brightness + Настройка яркости + + + Finance + Финансы + + + Community + Сообщество + + + Audio Rewind + Перемотка аудио назад + + + Back Forward + Назад/вперёд + + + Application Left + + + + Application Right + + + + Book + Книга + + + CD + CD + + + Calculator + Калькулятор + + + Clear + Очистить + + + Clear Grab + + + + Close + Закрыть + + + Copy + Копировать + + + Cut + Вырезать + + + Display + Отобразить + + + DOS + DOS + + + Documents + Документы + + + Spreadsheet + Электронная таблицы + + + Browser + Обозреватель + + + Game + Игра + + + Go + Перейти + + + iTouch + iTouch + + + Logoff + Выйти из системы + + + Market + Рынок + + + Meeting + Встреча + + + Keyboard Menu + Клавиатурное меню + + + Menu PB + + + + My Sites + Мои сайты + + + News + Новости + + + Home Office + Домашний офис + + + Option + Опция + + + Paste + Вставить + + + Phone + Телефон + + + Reply + Ответить + + + Reload + Перезагрузить + + + Rotate Windows + Повернуть окна + + + Rotation PB + + + + Rotation KB + + + + Save + Сохранить + + + Send + Отправить + + + Spellchecker + Проверка орфографии + + + Split Screen + Разделить экран + + + Support + Поддержка + + + Task Panel + Панель задач + + + Terminal + Терминал + + + Tools + Инструменты + + + Travel + Путешествие + + + Video + Видео + + + Word Processor + Текстовый редактор + + + XFer + + + + Zoom In + Увеличить + + + Zoom Out + Уменьшить + + + Away + Ушёл + + + Messenger + Клиент обмена мгновенными сообщениями + + + WebCam + Вэб-камера + + + Mail Forward + Переслать письмо + + + Pictures + Изображения + + + Music + Музыка + + + Battery + Батарея + + + Bluetooth + Bluetooth + + + Wireless + Беспроводная сеть + + + Ultra Wide Band + Сверхширокополосная связь + + + Audio Forward + Последовательное воспроизведение + + + Audio Repeat + Воспроизведение по кругу + + + Audio Random Play + Случайное воспроизведение + + + Subtitle + Субтитры + + + Audio Cycle Track + Зацикленное воспроизведение дорожки + + + Time + Время + + + View + Вид + + + Top Menu + Главное меню + + + Suspend + Приостановить + + + Hibernate + Усыпить + + + Print Screen + Печать экрана + + + Page Up + На страницу вверх + + + Page Down + На страницу вниз + + + Caps Lock + Верний регистр + + + Num Lock + Цифровые клавиши + + + Number Lock + Цифровые клавиши + + + Scroll Lock + Scroll Lock + + + Insert + Вставить + + + Delete + Удалить + + + Escape + Escape + + + System Request + Системный запрос + + + Toggle Call/Hangup + Button that will hang up if we're in call, or make a call if we're not. + Снять/положить трубку + + + Voice Dial + Button to trigger voice dialing + Голосовой вызов + + + Last Number Redial + Button to redial the last number called + Повторный набор + + + Camera Shutter + Button to trigger the camera shutter (take a picture) + Затвор камеры + + + Camera Focus + Button to focus the camera + Фокусировка камеры + + + Kanji + + + + Muhenkan + + + + Henkan + + + + Romaji + + + + Hiragana + + + + Katakana + + + + Hiragana Katakana + + + + Zenkaku + + + + Hankaku + + + + Zenkaku Hankaku + + + + Touroku + + + + Massyo + + + + Kana Lock + + + + Kana Shift + + + + Eisu Shift + + + + Eisu toggle + + + + Code input + Ввод кода + + + Multiple Candidate + Несколько вариантов + + + Previous Candidate + Предыдущий вариант + + + Hangul + + + + Hangul Start + + + + Hangul End + + + + Hangul Hanja + + + + Hangul Jamo + + + + Hangul Romaja + + + + Hangul Jeonja + + + + Hangul Banja + + + + Hangul PreHanja + + + + Hangul PostHanja + + + + Hangul Special + + + + Select + Выбрать + + + Yes + Да + + + No + Нет + + + Context1 + + + + Context2 + + + + Context3 + + + + Context4 + + + + Call + Button to start a call (note: a separate button is used to end the call) + Позвонить + + + Hangup + Button to end a call (note: a separate button is used to start the call) + Отбой + + + Flip + Крышка + + + Ctrl + Ctrl + + + Shift + Shift + + + Alt + Alt + + + Meta + Meta + + + + + + + + + F%1 + F%1 + + + Home Page + Домашняя страница + + + + QSlider + + Page left + Страница влево + + + Page up + Страница вверх + + + Position + Положение + + + Page right + Страница вправо + + + Page down + Страница вниз + + + + QSocks5SocketEngine + + Connection to proxy refused + В соединении с прокси-сервером отказано + + + Connection to proxy closed prematurely + Соединение с прокси-сервером неожиданно закрыто + + + Proxy host not found + Прокси-сервер не найден + + + Connection to proxy timed out + Время на соединение с прокси-сервером истекло + + + Proxy authentication failed + Не удалось авторизоваться на прокси-сервере + + + Proxy authentication failed: %1 + Не удалось авторизоваться на прокси-сервере: %1 + + + SOCKS version 5 protocol error + Ошибка протокола SOCKSv5 + + + General SOCKSv5 server failure + Ошибка сервере SOCKSv5 + + + Connection not allowed by SOCKSv5 server + Соединение не разрешено сервером SOCKSv5 + + + TTL expired + TTL истекло + + + SOCKSv5 command not supported + Команда SOCKSv5 не поддерживается + + + Address type not supported + Тип адреса не поддерживается + + + Unknown SOCKSv5 proxy error code 0x%1 + Неизвестная ошибка SOCKSv5 прокси (код 0x%1) + + + Network operation timed out + Время на сетевую операцию истекло + + + + QSoftKeyManager + + OK + OK + + + Select + Выбрать + + + Done + Готово + + + Options + Параметры + + + Cancel + Отмена + + + Exit + Выход + + + + QSpinBox + + More + Больше + + + Less + Меньше + + + + QSql + + Delete + Удалить + + + Delete this record? + Удалить данную запись? + + + Yes + Да + + + No + Нет + + + Insert + Вставить + + + Update + Обновить + + + Save edits? + Сохранить изменения? + + + Cancel + Отмена + + + Confirm + Подтверждение + + + Cancel your edits? + Отменить изменения? + + + + QSslSocket + + Unable to write data: %1 + Невозможно записать данные: %1 + + + Unable to decrypt data: %1 + Невозможно расшифровать данные: %1 + + + Error while reading: %1 + Ошибка чтения: %1 + + + Error during SSL handshake: %1 + Ошибка квитирования SSL: %1 + + + Error creating SSL context (%1) + Ошибка создания контекста SSL: (%1) + + + Invalid or empty cipher list (%1) + Некорректный или пустой список шифров (%1) + + + Private key does not certify public key, %1 + Закрытый ключ не соответствует открытому ключу, %1 + + + Error creating SSL session, %1 + Ошибка создания сессии SSL, %1 + + + Error creating SSL session: %1 + Ошибка создания сессии SSL: %1 + + + The peer certificate is blacklisted + Сертификат узла в чёрном списке + + + Cannot provide a certificate with no key, %1 + Невозможно предоставить сертификат без ключа, %1 + + + Error loading local certificate, %1 + Ошибка загрузки локального сертификата, %1 + + + Error loading private key, %1 + Ошибка загрузки закрытого ключа, %1 + + + No error + Нет ошибки + + + The issuer certificate could not be found + Не удалось найти сертификат издателя + + + The certificate signature could not be decrypted + Не удалось расшифровать подпись сертификата + + + The public key in the certificate could not be read + Не удалось прочитать открытый ключ сертификата + + + The signature of the certificate is invalid + Некорректная подпись сертификата + + + The certificate is not yet valid + Срок действия сертификата ещё не наступил + + + The certificate has expired + Срок действия сертификата истёк + + + The certificate's notBefore field contains an invalid time + Поле notBefore сертификата содержит некорректное время + + + The certificate's notAfter field contains an invalid time + Поле notAfter сертификата содержит некорректное время + + + The certificate is self-signed, and untrusted + Сертификат самоподписанный и не является заверенным + + + The root certificate of the certificate chain is self-signed, and untrusted + Корневой сертификат цепочки сертификатов самоподписанный и не является заверенным + + + The issuer certificate of a locally looked up certificate could not be found + Не удалось найти сертификат издателя локального сертификата + + + No certificates could be verified + Не удалось проверить сертификаты + + + One of the CA certificates is invalid + Один из сертификатов центра сертификации некорректен + + + The basicConstraints path length parameter has been exceeded + Превышено значение параметра длины пути поля basicConstraints сертификата + + + The supplied certificate is unsuitable for this purpose + Представленный сертификат непригоден для данной цели + + + The root CA certificate is not trusted for this purpose + Корневой сертификат центра сертификации не является заверенным для данной цели + + + The root CA certificate is marked to reject the specified purpose + Корневой сертификат центра сертификации отмечен на отклонение для данной цели + + + The current candidate issuer certificate was rejected because its subject name did not match the issuer name of the current certificate + Текущий сертификат издателя был отклонён, так как название темы не совпадает с названием издателя сертификата + + + The current candidate issuer certificate was rejected because its issuer name and serial number was present and did not match the authority key identifier of the current certificate + Текущий сертификат издателя был отклонён, так как название издателя и серийный номер не совпадают с идентификатором ключа сертификата + + + The peer did not present any certificate + Сертификат не был предоставлен + + + The host name did not match any of the valid hosts for this certificate + Название узла не совпадает с допустимыми названиями узлов сертификата + + + Unknown error + Неизвестная ошибка + + + + QStateMachine + + Missing initial state in compound state '%1' + Отсутствует исходное состояние в составном состоянии «%1» + + + Missing default state in history state '%1' + Отсутствует состояние по умолчанию в историческом состоянии «%1» + + + No common ancestor for targets and source of transition from state '%1' + Нет общего предка у источника и цели перехода из состояния «%1» + + + Unknown error + Неизвестная ошибка + + + + QSymSQLDriver + + Invalid option: + Неверный параметр: + + + Error opening database + Ошибка открытия базы данных + + + POLICY_DB_DEFAULT must be defined before any other POLICY definitions can be used + POLICY_DB_DEFAULT должна быть задана до начала использования других определений POLICY + + + Unable to begin transaction + Невозможно начать транзакцию + + + Unable to commit transaction + Невозможно завершить транзакцию + + + Unable to rollback transaction + Невозможно откатить транзакцию + + + + QSymSQLResult + + Error retrieving column count + Ошибка получения количества колонок + + + Error retrieving column name + Ошибка получения названия колонки + + + Error retrieving column type + Ошибка получения типа колонки + + + Unable to fetch row + Невозможно получить строку + + + Unable to execute statement + Невозможно выполнить выражение + + + Statement is not prepared + Выражение не подготовлено + + + Unable to reset statement + Невозможно сбросить выражение + + + Unable to bind parameters + Невозможно привязать параметр + + + Parameter count mismatch + Количество параметров не совпадает + + + + QSymbianSocketEngine + + Unable to initialize non-blocking socket + Невозможно инициализировать не-блочный сокет + + + Unable to initialize broadcast socket + Невозможно инициализировать широковещательный сокет + + + Attempt to use IPv6 socket on a platform with no IPv6 support + Попытка использовать IPv6 на платформе, не поддерживающей IPv6 + + + The remote host closed the connection + Удалённый узел закрыл соединение + + + Network operation timed out + Время на сетевую операцию истекло + + + Out of resources + Недостаточно ресурсов + + + Unsupported socket operation + Операция с сокетом не поддерживается + + + Protocol type not supported + Протокол не поддерживается + + + Invalid socket descriptor + Некорректный дескриптор сокета + + + Host unreachable + Узел недоступен + + + Network unreachable + Сеть недоступна + + + Permission denied + Доступ запрещён + + + Connection timed out + Время на соединение истекло + + + Connection refused + Отказано в соединении + + + The bound address is already in use + Адрес уже используется + + + The address is not available + Адрес недоступен + + + The address is protected + Адрес защищён + + + Datagram was too large to send + Датаграмма слишком большая для отправки + + + Unable to send a message + Невозможно отправить сообщение + + + Unable to receive a message + Невозможно получить сообщение + + + Unable to write + Невозможно записать + + + Network error + Ошибка сети + + + Another socket is already listening on the same port + Другой сокет уже прослушивает этот порт + + + Operation on non-socket + Операция с не-сокетом + + + The proxy type is invalid for this operation + Некорректный тип прокси-сервера для данной операции + + + The address is invalid for this operation + Данный адрес не допустим для этой операции + + + The specified network session is not opened + Указанная сетевая сессия не открыта + + + Unknown error + Неизвестная ошибка + + + + QSystemSemaphore + + %1: does not exist + %1: не существует + + + %1: out of resources + %1: недостаточно ресурсов + + + %1: permission denied + %1: доступ запрещён + + + %1: already exists + %1: уже существует + + + %1: name error + %1: ошибка в имени + + + %1: unknown error %2 + %1: неизвестная ошибка %2 + + + + QTDSDriver + + Unable to open connection + Невозможно открыть соединение + + + Unable to use database + Невозможно использовать базу данных + + + + QTabBar + + Scroll Left + Прокрутить влево + + + Scroll Right + Прокрутить вправо + + + Close + Закрыть + + + Activate + Активировать + + + Press + Нажать + + + Close the tab + Закрыть вкладку + + + Activate the tab + Активировать вкладку + + + + QTcpServer + + Operation on socket is not supported + Операция с сокетом не поддерживается + + + + QTextControl + + &Undo + &Отменить действие + + + &Redo + &Повторить действие + + + Cu&t + &Вырезать + + + &Copy + &Копировать + + + Copy &Link Location + Скопировать &адрес ссылки + + + &Paste + В&ставить + + + Delete + Удалить + + + Select All + Выделить всё + + + + QToolButton + + Press + Нажать + + + Open + Открыть + + + + QUdpSocket + + This platform does not support IPv6 + Данная платформа не поддерживает IPv6 + + + + QUndoGroup + + Undo %1 + Отменить %1 + + + Undo + Default text for undo action + Отменить действие + + + Redo %1 + Повторить %1 + + + Redo + Default text for redo action + Повторить действие + + + + QUndoModel + + <empty> + <пусто> + + + + QUndoStack + + Undo %1 + Отменить %1 + + + Undo + Default text for undo action + Отменить действие + + + Redo %1 + Повторить %1 + + + Redo + Default text for redo action + Повторить действие + + + + QUnicodeControlCharacterMenu + + LRM Left-to-right mark + LRM Признак написания слева направо + + + RLM Right-to-left mark + RLM Признак написания справа налево + + + ZWJ Zero width joiner + ZWJ Объединяющий символ нулевой ширины + + + ZWNJ Zero width non-joiner + ZWNJ Необъединяющий символ нулевой ширины + + + ZWSP Zero width space + ZWSP Пробел нулевой ширины + + + LRE Start of left-to-right embedding + LRE Начало встраивания написания слева направо + + + RLE Start of right-to-left embedding + LRE Начало встраивания написания справа налево + + + LRO Start of left-to-right override + LRO Начало замены написания слева направо + + + RLO Start of right-to-left override + RLO Начало замены написания справа налево + + + PDF Pop directional formatting + PDF Признак окончания написания с другим направлением + + + Insert Unicode control character + Вставить управляющий символ Unicode + + + + QWebFrame + + Request cancelled + Запрос отменён + + + Request canceled + Запрос отменён + + + Request blocked + Запрос блокирован + + + Cannot show URL + Невозможно отобразить URL + + + Frame load interrupted by policy change + Загрузка фрейма прервана изменением политики + + + Cannot show mimetype + Невозможно отобразить тип MIME + + + File does not exist + Файл не существует + + + Loading is handled by the media engine + Загрузка выполняется мультимедиа-подсистемой + + + + QWebPage + + Web Inspector - %2 + Web-инспектор - %2 + + + Redirection limit reached + Достигнут предел переадресации + + + Scroll here + Прокрутить сюда + + + Left edge + К левой границе + + + Top + Вверх + + + Right edge + К правой границе + + + Bottom + Вниз + + + Page left + На страницу влево + + + Page up + На страницу вверх + + + Page right + На страницу вправо + + + Page down + На страницу вниз + + + Scroll left + Прокрутить влево + + + Scroll up + Прокрутить вверх + + + Scroll right + Прокрутить вправо + + + Scroll down + Прокрутить вниз + + + JavaScript Alert - %1 + JavaScript: Предупреждение - %1 + + + JavaScript Confirm - %1 + JavaScript: Подтверждение - %1 + + + JavaScript Prompt - %1 + JavaScript: Запрос - %1 + + + JavaScript Problem - %1 + JavaScript: Проблема - %1 + + + The script on this page appears to have a problem. Do you want to stop the script? + Сбой выполнения сценария на данной странице. Желаете остановить выполение сценария? + + + Move the cursor to the next character + Переместить указатель к следующему символу + + + Move the cursor to the previous character + Переместить указатель к предыдущему символу + + + Move the cursor to the next word + Переместить указатель к следующему слову + + + Move the cursor to the previous word + Переместить указатель к предыдущему слову + + + Move the cursor to the next line + Переместить указатель на следующую строку + + + Move the cursor to the previous line + Переместить указатель на предыдущую строку + + + Move the cursor to the start of the line + Переместить указатель в начало строки + + + Move the cursor to the end of the line + Переместить указатель в конец строки + + + Move the cursor to the start of the block + Переместить указатель в начало блока + + + Move the cursor to the end of the block + Переместить указатель в конец блока + + + Move the cursor to the start of the document + Переместить указатель в начало документа + + + Move the cursor to the end of the document + Переместить указатель в конец документа + + + Select to the next character + Выделить до следующего символа + + + Select to the previous character + Выделить до предыдущего символа + + + Select to the next word + Выделить до следующего слова + + + Select to the previous word + Выделить до предыдущего слова + + + Select to the next line + Выделить до следующей строки + + + Select to the previous line + Выделить до предыдущей строки + + + Select to the start of the line + Выделить до начала строки + + + Select to the end of the line + Выделить до конца строки + + + Select to the start of the block + Выделить до начала блока + + + Select to the end of the block + Выделить до конца блока + + + Select to the start of the document + Выделить до начала документа + + + Select to the end of the document + Выделить до конца документа + + + Delete to the start of the word + Удалить до начала слова + + + Delete to the end of the word + Удалить до конца слова + + + Insert a new paragraph + Вставить новый параграф + + + Insert a new line + Вставить новую строку + + + Paste and Match Style + Вставить, сохранив стиль + + + Remove formatting + Удалить форматирование + + + Strikethrough + Зачёркнутый + + + Subscript + Подстрочный + + + Superscript + Надстрочный + + + Insert Bulleted List + Вставить маркированный список + + + Insert Numbered List + Вставить нумерованный список + + + Indent + Увеличить отступ + + + Outdent + Уменьшить отступ + + + Center + По центру + + + Justify + По ширине + + + Align Left + По левому краю + + + Align Right + По правому краю + + + Submit + default label for Submit buttons in forms on web pages + Отправить + + + Submit + Submit (input element) alt text for <input> elements with no alt, title, or value + Отправить + + + Reset + default label for Reset buttons in forms on web pages + Сбросить + + + This is a searchable index. Enter search keywords: + text that appears at the start of nearly-obsolete web pages in the form of a 'searchable index' + Индекс поиска. Введите ключевые слова для поиска: + + + Choose File + title for file button used in HTML forms + Выбрать файл + + + No file selected + text to display in file button used in HTML forms when no file is selected + Файл не указан + + + Details + text to display in <details> tag when it has no <summary> child + Подробности + + + Open in New Window + Open in New Window context menu item + Открыть в новом окне + + + Save Link... + Download Linked File context menu item + Сохранить по ссылке как... + + + Copy Link + Copy Link context menu item + Копировать адрес ссылки + + + Open Image + Open Image in New Window context menu item + Открыть изображение + + + Save Image + Download Image context menu item + Сохранить изображение + + + Copy Image + Copy Link context menu item + Копировать изображение + + + Copy Image Address + Copy Image Address menu item + Скопировать адрес изображения + + + Open Video + Open Video in New Window + Открыть видео + + + Open Audio + Open Audio in New Window + Открыть аудио + + + Copy Video + Copy Video Link Location + Скопировать видео + + + Copy Audio + Copy Audio Link Location + Скопировать аудио + + + Toggle Controls + Toggle Media Controls + Вкл/выкл управление + + + Toggle Loop + Toggle Media Loop Playback + Вкл/выкл зацикленность + + + Enter Fullscreen + Switch Video to Fullscreen + Полноэкранный режим + + + Play + Play + Воспроизвести + + + Pause + Pause + Приостановить + + + Mute + Mute + Приглушить + + + Open Frame + Open Frame in New Window context menu item + Открыть фрейм + + + Copy + Copy context menu item + Копировать + + + Go Back + Back context menu item + Назад + + + Go Forward + Forward context menu item + Вперёд + + + Stop + Stop context menu item + Остановить + + + Reload + Reload context menu item + Обновить + + + Cut + Cut context menu item + Вырезать + + + Paste + Paste context menu item + Вставить + + + Select All + Select All context menu item + Выделить всё + + + No Guesses Found + No Guesses Found context menu item + Совпадений не найдено + + + Ignore + Ignore Spelling context menu item + ?Пропускать + Пропустить + + + Add To Dictionary + Learn Spelling context menu item + Добавить в словарь + + + Search The Web + Search The Web context menu item + Искать в Интернет + + + Look Up In Dictionary + Look Up in Dictionary context menu item + Искать в словаре + + + Open Link + Open Link context menu item + Открыть ссылку + + + Ignore + Ignore Grammar context menu item + ?Пропускать + Пропустить + + + Spelling + Spelling and Grammar context sub-menu item + Орфография + + + Show Spelling and Grammar + menu item title + Показать панель проверки правописания + + + Hide Spelling and Grammar + menu item title + Скрыть панель проверки правописания + + + Check Spelling + Check spelling context menu item + Проверка орфографии + + + Check Spelling While Typing + Check spelling while typing context menu item + Проверять орфографию при наборе текста + + + Check Grammar With Spelling + Check grammar with spelling context menu item + Проверять грамматику с орфографией + + + Fonts + Font context sub-menu item + Шрифты + + + Bold + Bold context menu item + Жирный + + + Italic + Italic context menu item + Курсив + + + Underline + Underline context menu item + Подчёркнутый + + + Outline + Outline context menu item + Перечёркнутый + + + Direction + Writing direction context sub-menu item + Направление письма + + + Text Direction + Text direction context sub-menu item + Направление текста + + + Default + Default writing direction context menu item + По умолчанию + + + Left to Right + Left to Right context menu item + Слева направо + + + Right to Left + Right to Left context menu item + Справа налево + + + Inspect + Inspect Element context menu item + Проверить + + + No recent searches + Label for only item in menu that appears when clicking on the search field image, when no searches have been performed + История поиска пуста + + + Recent searches + label for first item in the menu that appears when clicking on the search field image, used as embedded menu title + История поиска + + + Clear recent searches + menu item in Recent Searches menu that empties menu's contents + Очистить историю поиска + + + Missing Plug-in + Label text to be used when a plug-in is missing + Модуль отсутствует + + + Unknown + Unknown filesize FTP directory listing item + Неизвестно + + + %1 (%2x%3 pixels) + Title string for images + %1 (%2x%3 px) + + + Loading... + Media controller status message when the media is loading + Загрузка... + + + Live Broadcast + Media controller status message when watching a live broadcast + Потоковое вещание + + + Audio Element + Media controller element + Аудио-элемент + + + Video Element + Media controller element + Видео-элемент + + + Mute Button + Media controller element + Кнопка «Отключить звук» + + + Unmute Button + Media controller element + Кнопка «Включить звук» + + + Play Button + Media controller element + Кнопка «Воспроизведение» + + + Pause Button + Media controller element + Кнопка «Пауза» + + + Slider + Media controller element + Регулятор + + + Slider Thumb + Media controller element + Указатель регулятора + + + Rewind Button + Media controller element + Кнопка «Перемотка назад» + + + Return to Real-time Button + Media controller element + Кнопка «Вернуть в реальное время» + + + Elapsed Time + Media controller element + Прошло времени + + + Remaining Time + Media controller element + Осталось времени + + + Status Display + Media controller element + Отображение состояния + + + Fullscreen Button + Media controller element + Кнопка «На весь экран» + + + Seek Forward Button + Media controller element + Кнопка «Перемотка вперёд» + + + Seek Back Button + Media controller element + Кнопка «Перемотка назад» + + + Audio element playback controls and status display + Media controller element + Элементы управления воспроизведением звука и отображением состояния + + + Video element playback controls and status display + Media controller element + Элементы управления воспроизведением видео и отображением состояния + + + Mute audio tracks + Media controller element + Отключить звуковые дорожки + + + Unmute audio tracks + Media controller element + Включить звуковые дорожки + + + Begin playback + Media controller element + Начать воспроизведение + + + Pause playback + Media controller element + Приостановить воспроизведение + + + Movie time scrubber + Media controller element + Перемотка + + + Movie time scrubber thumb + Media controller element + Позиция перемотки + + + Rewind movie + Media controller element + Перемотка в начало + + + Return streaming movie to real-time + Media controller element + Возвращает потоковое видео к воспроизведению в реальном времени + + + Current movie time + Media controller element + Текущее время фильма + + + Remaining movie time + Media controller element + Оставшееся время фильма + + + Current movie status + Media controller element + Текущее состояние фильма + + + Play movie in full-screen mode + Media controller element + Воспроизведение в режиме отображения на весь экран + + + Seek quickly back + Media controller element + Быстрая перемотка назад + + + Seek quickly forward + Media controller element + Быстрая перемотка вперёд + + + Indefinite time + Media time description + Время не определено + + + %1 days %2 hours %3 minutes %4 seconds + Media time description + %1 дней %2 часов %3 минут %4 секунд + + + %1 hours %2 minutes %3 seconds + Media time description + %1 часов %2 минут %3 секунд + + + %1 minutes %2 seconds + Media time description + %1 минут %2 секунд + + + %1 seconds + Media time description + %1 секунд + + + %n file(s) + number of chosen file + + %n файл(а) + %n файла + %n файлов + + + + + QWhatsThisAction + + What's This? + Что это? + + + + QWidget + + * + * + + + + QWizard + + Cancel + Отмена + + + Help + Справка + + + < &Back + < &Назад + + + &Finish + &Завершить + + + &Help + &Справка + + + Go Back + Назад + + + Continue + Продолжить + + + Commit + Подтвердить + + + Done + Готово + + + &Next + &Далее + + + &Next > + &Далее > + + + + QWorkspace + + &Restore + &Восстановить + + + &Move + &Переместить + + + &Size + &Размер + + + Mi&nimize + &Свернуть + + + Ma&ximize + Р&аспахнуть + + + &Close + &Закрыть + + + Stay on &Top + Оставаться &сверху + + + Minimize + Свернуть + + + Restore Down + Восстановить + + + Close + Закрыть + + + Sh&ade + Св&ернуть в заголовок + + + %1 - [%2] + %1 - [%2] + + + &Unshade + В&осстановить из заголовка + + + + QXml + + no error occurred + ошибки отсутствуют + + + error triggered by consumer + ошибка вызвана пользователем + + + unexpected end of file + неожиданный конец файла + + + more than one document type definition + указано более одного типа документа + + + error occurred while parsing element + ошибка разбора элемента + + + tag mismatch + тэг не совпадает + + + error occurred while parsing content + ошибка разбора документа + + + unexpected character + неожиданный символ + + + invalid name for processing instruction + некорректное имя директивы разбора + + + version expected while reading the XML declaration + в объявлении XML ожидается параметр version + + + wrong value for standalone declaration + некорректное значение параметра standalone + + + error occurred while parsing document type definition + ошибка разбора объявления типа документа + + + letter is expected + ожидалась буква + + + error occurred while parsing comment + ошибка разбора комментария + + + error occurred while parsing reference + ошибка разбора ссылки + + + internal general entity reference not allowed in DTD + внутренняя ссылка на общий объект недопустима в DTD + + + external parsed general entity reference not allowed in attribute value + внешняя ссылка на общий объект недопустима в значении атрибута + + + external parsed general entity reference not allowed in DTD + внешняя ссылка на общий объект недопустима в DTD + + + unparsed entity reference in wrong context + неразобранная ссылка на объект в неправильном контексте + + + recursive entities + рекурсивные объекты + + + error in the text declaration of an external entity + ошибка в объявлении внешнего объекта + + + encoding declaration or standalone declaration expected while reading the XML declaration + в объявлении XML ожидаются параметры encoding или standalone + + + standalone declaration expected while reading the XML declaration + в объявлении XML ожидается параметр standalone + + + + QXmlPatternistCLI + + Warning in %1, at line %2, column %3: %4 + Предупреждение в %1, в строке %2, столбце %3: %4 + + + Warning in %1: %2 + Предупреждение в %1: %2 + + + Unknown location + Неизвестное расположение + + + Error %1 in %2, at line %3, column %4: %5 + Ошибка %1 в %2, в строке %3, столбце %4: %5 + + + Error %1 in %2: %3 + Ошибка %1 в %2: %3 + + + + QXmlStream + + Extra content at end of document. + Лишние данные в конце документа. + + + Invalid entity value. + Некорректное значение объекта. + + + Invalid XML character. + Некорректный символ XML. + + + Sequence ']]>' not allowed in content. + Последовательность «]]>» недопустима в содержимом. + + + Namespace prefix '%1' not declared + Префикс пространства имён «%1» не объявлен + + + Attribute redefined. + Атрибут переопределён. + + + Unexpected character '%1' in public id literal. + Неожиданный символ «%1» в литерале открытого идентификатора. + + + Invalid XML version string. + Некорректная строка версии XML. + + + Unsupported XML version. + Неподдерживаемая версия XML. + + + %1 is an invalid encoding name. + %1 - не является корректным названием кодировки. + + + Encoding %1 is unsupported + Кодировка %1 не поддерживается + + + Standalone accepts only yes or no. + Псевдоатрибут «standalone» может принимать только значения «yes» или «no». + + + Invalid attribute in XML declaration. + Некорректный атрибут в объявлении XML. + + + Premature end of document. + Неожиданный конец документа. + + + Invalid document. + Некорректный документ. + + + Expected + Ожидалось + + + , but got ' + , получили ' + + + Unexpected ' + Неожиданное ' + + + Expected character data. + Ожидаются символьные данные. + + + Recursive entity detected. + Обнаружен рекурсивный объект. + + + Start tag expected. + Ожидается открывающий тэг. + + + XML declaration not at start of document. + Объявление XML находится не в начале документа. + + + NDATA in parameter entity declaration. + NDATA в объявлении параметра. + + + %1 is an invalid processing instruction name. + %1 не является корректным названием обрабатываемой инструкции. + + + Invalid processing instruction name. + Некорректное название обрабатываемой инструкции. + + + Illegal namespace declaration. + Некорректное объявление пространства имён. + + + Invalid XML name. + Некорректное имя XML. + + + Opening and ending tag mismatch. + Открывающий тэг не совпадает с закрывающим. + + + Reference to unparsed entity '%1'. + Ссылка на необработанный объект «%1». + + + Entity '%1' not declared. + Объект «%1» не объявлен. + + + Reference to external entity '%1' in attribute value. + Ссылка на внешний объект «%1» в значении атрибута. + + + Invalid character reference. + Некорректная символьная ссылка. + + + Encountered incorrectly encoded content. + Обнаружено некорректно закодированное содержимое. + + + The standalone pseudo attribute must appear after the encoding. + Псевдоатрибут «standalone» должен находиться после указания кодировки. + + + %1 is an invalid PUBLIC identifier. + %1 - некорректный идентификатор PUBLIC. + + + + QmlJSDebugger::LiveSelectionTool + + Items + Элементы + + + + QmlJSDebugger::QmlToolBar + + Inspector Mode + Режим инспектирования + + + Play/Pause Animations + Запустить/приостановить анимации + + + Select + Выбрать + + + Select (Marquee) + Выбрать (Маркет) + + + Zoom + Масштаб + + + Color Picker + Пипетка + + + Apply Changes to QML Viewer + Использовать изменения в просмотрщике QML + + + Apply Changes to Document + Применить изменения к документу + + + Tools + Инструменты + + + 1x + + + + 0.5x + + + + 0.25x + + + + 0.125x + + + + 0.1x + + + + + QmlJSDebugger::ToolBarColorBox + + Copy Color + Скопировать цвет + + + + QmlJSDebugger::ZoomTool + + Zoom to &100% + Масштаб &100% + + + Zoom In + Увеличить + + + Zoom Out + Уменьшить + + + + QtXmlPatterns + + At least one component must be present. + Должна присутствовать как минимум одна компонента. + + + %1 is not a valid value of type %2. + %1 не является правильным значением типа %2. + + + When casting to %1 from %2, the source value cannot be %3. + При преобразовании %2 в %1 исходное значение не может быть %3. + + + Effective Boolean Value cannot be calculated for a sequence containing two or more atomic values. + Булево значение не может быть вычислено для последовательностей, которые содержат два и более атомарных значения. + + + The data of a processing instruction cannot contain the string %1 + Данные обрабатываемой инструкции не могут содержать строку «%1» + + + %1 is an invalid %2 + %1 некоррекно для %2 + + + %1 is not a valid XML 1.0 character. + Символ %1 недопустим для XML 1.0. + + + %1 was called. + %1 было вызвано. + + + In the replacement string, %1 must be followed by at least one digit when not escaped. + В замещаемой строке «%1» должно сопровождаться как минимум одной цифрой, если неэкранировано. + + + In the replacement string, %1 can only be used to escape itself or %2, not %3 + В замещаемой строке символ «%1» может использоваться только для экранирования самого себя или «%2», но не «%3» + + + %1 matches newline characters + %1 соответствует символам конца строки + + + Matches are case insensitive + Соответствия регистронезависимы + + + %1 is an invalid regular expression pattern: %2 + %1 - некорректный шаблон регулярного выражения: %2 + + + It will not be possible to retrieve %1. + Будет невозможно восстановить %1. + + + The default collection is undefined + Набор по умолчанию не определён + + + %1 cannot be retrieved + %1 не может быть восстановлен + + + The item %1 did not match the required type %2. + Элемент %1 не соответствует необходимому типу %2. + + + %1 is an unknown schema type. + %1 является схемой неизвестного типа. + + + A template with name %1 has already been declared. + Шаблон с именем %1 уже был объявлен. + + + Only one %1 declaration can occur in the query prolog. + Только одно объявление %1 может присутствовать в прологе запроса. + + + The initialization of variable %1 depends on itself + Инициализация переменной %1 зависит от себя самой + + + The variable %1 is unused + Переменная %1 не используется + + + Version %1 is not supported. The supported XQuery version is 1.0. + Версия %1 не поддерживается. Поддерживается XQuery версии 1.0. + + + No function with signature %1 is available + Функция с сигнатурой %1 отсутствует + + + It is not possible to redeclare prefix %1. + Невозможно переопределить префикс %1. + + + Prefix %1 is already declared in the prolog. + Префикс %1 уже объявлен в прологе. + + + The name of an option must have a prefix. There is no default namespace for options. + Название опции должно содержать префикс. Нет пространства имён по умолчанию для опций. + + + The Schema Import feature is not supported, and therefore %1 declarations cannot occur. + Возможность импорта схем не поддерживается, следовательно, объявлений %1 быть не должно. + + + The target namespace of a %1 cannot be empty. + Целевое пространство имён %1 не может быть пустым. + + + The module import feature is not supported + Возможность импорта модулей не поддерживается + + + The namespace of a user defined function in a library module must be equivalent to the module namespace. In other words, it should be %1 instead of %2 + Пространство имён пользовательской функции в модуле библиотеки должен соответствовать пространству имён модуля. Другими словами, он должен быть %1 вместо %2 + + + A function already exists with the signature %1. + Функция с сигнатурой %1 уже существует. + + + No external functions are supported. All supported functions can be used directly, without first declaring them as external + Внешние функции не поддерживаются. Все поддерживаемые функции могут использоваться напрямую без первоначального объявления их в качестве внешних + + + The %1-axis is unsupported in XQuery + Ось %1 не поддерживается в XQuery + + + The namespace URI cannot be the empty string when binding to a prefix, %1. + URI пространства имён не может быть пустой строкой при связывании с префиксом %1. + + + %1 is an invalid namespace URI. + %1 - некорректный URI пространства имён. + + + It is not possible to bind to the prefix %1 + Невозможно связать с префиксом %1 + + + Two namespace declaration attributes have the same name: %1. + Два атрибута объявления пространств имён имеют одинаковое имя: %1. + + + The namespace URI must be a constant and cannot use enclosed expressions. + URI пространства имён должен быть константой и не может содержать выражений. + + + %1 is not in the in-scope attribute declarations. Note that the schema import feature is not supported. + %1 является объявлением атрибута вне области объявлений. Имейте в виду, возможность импорта схем не поддерживается. + + + empty + пусто + + + zero or one + нуль или один + + + exactly one + ровно один + + + one or more + один или более + + + zero or more + нуль или более + + + The focus is undefined. + Фокус не определён. + + + An attribute by name %1 has already been created. + Атрибут с именем %1 уже существует. + + + Network timeout. + Время ожидания сети истекло. + + + Element %1 can't be serialized because it appears outside the document element. + Элемент %1 не может быть сериализован, так как расположен вне документа. + + + Year %1 is invalid because it begins with %2. + Год %1 неверен, так как начинается с %2. + + + Day %1 is outside the range %2..%3. + День %1 вне диапазона %2..%3. + + + Month %1 is outside the range %2..%3. + Месяц %1 вне диапазона %2..%3. + + + Overflow: Can't represent date %1. + Переполнение: Не удаётся представить дату %1. + + + Day %1 is invalid for month %2. + День %1 неверен для месяца %2. + + + Time 24:%1:%2.%3 is invalid. Hour is 24, but minutes, seconds, and milliseconds are not all 0; + Время 24:%1:%2.%3 некорректно. 24 часа, но минуты, секунды и/или миллисекунды отличны от 0; + + + Time %1:%2:%3.%4 is invalid. + Время %1:%2:%3.%4 некорректно. + + + Overflow: Date can't be represented. + Переполнение: невозможно представить дату. + + + At least one time component must appear after the %1-delimiter. + Как минимум одна компонента времени должна следовать за разделителем «%1». + + + Dividing a value of type %1 by %2 (not-a-number) is not allowed. + Деление числа типа %1 на %2 (не числовое выражение) недопустимо. + + + Dividing a value of type %1 by %2 or %3 (plus or minus zero) is not allowed. + Деление числа типа %1 на %2 или %3 (плюс или минус нуль) недопустимо. + + + Multiplication of a value of type %1 by %2 or %3 (plus or minus infinity) is not allowed. + Умножение числа типа %1 на %2 или %3 (плюс-минус бесконечность) недопустимо. + + + A value of type %1 cannot have an Effective Boolean Value. + Значение типа %1 не может быть булевым значением. + + + Value %1 of type %2 exceeds maximum (%3). + Значение %1 типа %2 больше максимума (%3). + + + Value %1 of type %2 is below minimum (%3). + Значение %1 типа %2 меньше минимума (%3). + + + A value of type %1 must contain an even number of digits. The value %2 does not. + Значение типа %1 должно содержать четное количество цифр. Значение %2 этому требованию не удовлетворяет. + + + %1 is not valid as a value of type %2. + Значение %1 некорректно для типа %2. + + + Operator %1 cannot be used on type %2. + Оператор %1 не может использоваться для типа %2. + + + Operator %1 cannot be used on atomic values of type %2 and %3. + Оператор %1 не может использоваться для атомарных значений типов %2 и %3. + + + The namespace URI in the name for a computed attribute cannot be %1. + URI пространства имён в названии рассчитываемого атрибута не может быть %1. + + + The name for a computed attribute cannot have the namespace URI %1 with the local name %2. + Название расчитываемого атрибута не может иметь URI пространства имён %1 с локальным именем %2. + + + Type error in cast, expected %1, received %2. + Ошибка типов в преобразовании, ожидалось %1, получено %2. + + + When casting to %1 or types derived from it, the source value must be of the same type, or it must be a string literal. Type %2 is not allowed. + При преобразовании в %1 или производные от него типы исходное значение должно быть того же типа или строковым литералом. Тип %2 недопустим. + + + A comment cannot contain %1 + Комментарий не может содержать %1 + + + A comment cannot end with a %1. + Комментарий не может оканчиваться на %1. + + + An attribute node cannot be a child of a document node. Therefore, the attribute %1 is out of place. + Узел-атрибут не может быть потомком узла-документа. Атрибут %1 неуместен. + + + A library module cannot be evaluated directly. It must be imported from a main module. + Модуль библиотеки не может использоваться напрямую. Он должен быть импортирован из основного модуля. + + + No template by name %1 exists. + Шаблон с именем %1 отсутствует. + + + A value of type %1 cannot be a predicate. A predicate must have either a numeric type or an Effective Boolean Value type. + Значение типа %1 не может быть условием. Условием могут являться числовой и булевый типы. + + + A positional predicate must evaluate to a single numeric value. + Позиционный предикат должен вычисляться как числовое выражение. + + + The target name in a processing instruction cannot be %1 in any combination of upper and lower case. Therefore, %2 is invalid. + Целевое имя в обрабатываемой инструкции не может быть %1 в любой комбинации нижнего и верхнего регистров. Имя %2 некорректно. + + + %1 is not a valid target name in a processing instruction. It must be a %2 value, e.g. %3. + %1 некорректное целевое имя в обрабатываемой инструкции. Имя должно быть значением типа %2, например: %3. + + + The last step in a path must contain either nodes or atomic values. It cannot be a mixture between the two. + Последняя часть пути должна содержать узлы или атомарные значения, но не может содержать и то, и другое одновременно. + + + No namespace binding exists for the prefix %1 + Отсутствует привязка к пространству имён для префикса %1 + + + No namespace binding exists for the prefix %1 in %2 + Отсутствует привязка к пространству имён для префикса %1 в %2 + + + The first argument to %1 cannot be of type %2. It must be a numeric type, xs:yearMonthDuration or xs:dayTimeDuration. + Первый аргумент %1 не может быть типа %2. Он должен быть числового типа, типа xs:yearMonthDuration или типа xs:dayTimeDuration. + + + The first argument to %1 cannot be of type %2. It must be of type %3, %4, or %5. + Первый аргумент %1 не может быть типа %2. Он должен быть типа %3, %4 или %5. + + + The second argument to %1 cannot be of type %2. It must be of type %3, %4, or %5. + Второй аргумент %1 не может быть типа %2. Он должен быть типа %3, %4 или %5. + + + If both values have zone offsets, they must have the same zone offset. %1 and %2 are not the same. + Если оба значения имеют региональные смещения, смещения должны быть одинаковы. %1 и %2 не одинаковы. + + + %1 must be followed by %2 or %3, not at the end of the replacement string. + «%1» должно сопровождаться «%2» или «%3», но не в конце замещаемой строки. + + + %1 and %2 match the start and end of a line. + %1 и %2 соответствуют началу и концу строки. + + + Whitespace characters are removed, except when they appear in character classes + Символы пробелов удалены (за исключением тех, что были в символах классов) + + + %1 is an invalid flag for regular expressions. Valid flags are: + %1 - некорректный флаг регулярного выражения. Допустимые флаги: + + + If the first argument is the empty sequence or a zero-length string (no namespace), a prefix cannot be specified. Prefix %1 was specified. + Префикс не должен быть указан, если первый параметр - пустая последовательность или пустая строка (вне пространства имён). Был указан префикс %1. + + + The normalization form %1 is unsupported. The supported forms are %2, %3, %4, and %5, and none, i.e. the empty string (no normalization). + Форма нормализации %1 не поддерживается. Поддерживаются только %2, %3, %4, %5 и пустая, т.е. пустая строка (без нормализации). + + + A zone offset must be in the range %1..%2 inclusive. %3 is out of range. + Региональное смещение должно быть в переделах от %1 до %2 включительно. %3 выходит за допустимые пределы. + + + Required cardinality is %1; got cardinality %2. + Необходимо %1 элементов, получено %2. + + + The encoding %1 is invalid. It must contain Latin characters only, must not contain whitespace, and must match the regular expression %2. + Имя кодировки %1 некорректно. Имя кодировки должно содержать только символы латиницы без пробелов и должно удовлетворять регулярному выражению %2. + + + The keyword %1 cannot occur with any other mode name. + Ключевое слово %1 не может встречаться с любым другим названием режима. + + + No variable with name %1 exists + Переменная с именем %1 отсутствует + + + The value of attribute %1 must be of type %2, which %3 isn't. + Значение атрибута %1 должно быть типа %2, но %3 не соответствует данному типу. + + + The prefix %1 cannot be bound. By default, it is already bound to the namespace %2. + Не удаётся связать префикс %1. По умолчанию префикс связан с пространством имён %2. + + + A variable with name %1 has already been declared. + Переменная с именем %1 уже объявлена. + + + No value is available for the external variable with name %1. + Отсутствует значение для внешней переменной с именем %1. + + + A stylesheet function must have a prefixed name. + Функция стилей должна иметь имя с префиксом. + + + The namespace for a user defined function cannot be empty (try the predefined prefix %1, which exists for cases like this) + Пространство имён для функции пользователя не может быть пустым (попробуйте предопределённый префикс %1, созданный для подобных случаев) + + + The namespace %1 is reserved; therefore user defined functions may not use it. Try the predefined prefix %2, which exists for these cases. + Пространтсво имён %1 зарезервировано, поэтому пользовательские функции не могут его использовать. Попробуйте предопределённый префикс %2, который существует для подобных ситуаций. + + + An argument with name %1 has already been declared. Every argument name must be unique. + Аргумент с именем %1 уже объявлен. Имя каждого аргумента должно быть уникальным. + + + When function %1 is used for matching inside a pattern, the argument must be a variable reference or a string literal. + Если функция %1 используется для сравнения внутри шаблона, аргумент должен быть ссылкой на переменную или строковым литералом. + + + In an XSL-T pattern, the first argument to function %1 must be a string literal, when used for matching. + В шаблоне XSL-T первый аргумент функции %1 должен быть строковым литералом, если функция используется для сравнения. + + + In an XSL-T pattern, the first argument to function %1 must be a literal or a variable reference, when used for matching. + В шаблоне XSL-T первый аргумент функции %1 должен быть литералом или ссылкой на переменную, если функция используется для сравнения. + + + In an XSL-T pattern, function %1 cannot have a third argument. + В шаблоне XSL-T у функции %1 не должно быть третьего аргумента. + + + In an XSL-T pattern, only function %1 and %2, not %3, can be used for matching. + В шаблоне XSL-T только функции %1 и %2 могут использоваться для сравнения, но не %3. + + + In an XSL-T pattern, axis %1 cannot be used, only axis %2 or %3 can. + В шаблоне XSL-T не может быть использована ось %1 - только оси %2 или %3. + + + %1 is an invalid template mode name. + %1 не является корректным шаблоном имени режима. + + + The name of a variable bound in a for-expression must be different from the positional variable. Hence, the two variables named %1 collide. + Имя переменной, связанной с выражением for, должно отличаться от позиционной переменной. Две переменные с именем %1 конфликтуют. + + + The Schema Validation Feature is not supported. Hence, %1-expressions may not be used. + Возможность проверки по схеме не поддерживается. Выражения %1 не могут использоваться. + + + None of the pragma expressions are supported. Therefore, a fallback expression must be present + Ни одно из выражений pragma не поддерживается. Должно существовать запасное выражение + + + Each name of a template parameter must be unique; %1 is duplicated. + Имя каждого параметра шаблона должно быть уникальным, но %1 повторяется. + + + No function with name %1 is available. + Функция с именем %1 отсутствует. + + + %1 is not a valid numeric literal. + %1 не является корректным числовым литералом. + + + W3C XML Schema identity constraint selector + Переключатель ограничений типа шаблона W3C XML + + + W3C XML Schema identity constraint field + Поле ограничений типа шаблона W3C XML + + + A construct was encountered which is disallowed in the current language(%1). + Встречена конструкция, запрещённая для текущего языка (%1). + + + Namespace %1 can only be bound to %2 (and it is, in either case, pre-declared). + Пространство имён %1 может быть связано только с %2 (в данном случае уже предопределено). + + + Prefix %1 can only be bound to %2 (and it is, in either case, pre-declared). + Префикс %1 может быть связан только с %2 (в данном случае уже предопределено). + + + An attribute with name %1 has already appeared on this element. + Атрибут с именем %1 уже существует для данного элемента. + + + A direct element constructor is not well-formed. %1 is ended with %2. + Прямой конструктор элемента составлен некорректно. %1 заканчивается на %2. + + + The name %1 does not refer to any schema type. + Название %1 не соответствует ни одному типу схемы. + + + %1 is an complex type. Casting to complex types is not possible. However, casting to atomic types such as %2 works. + %1 - сложный тип. Преобразование к сложным типам невозможно. Однако, преобразование к атомарным типам как %2 работает. + + + %1 is not an atomic type. Casting is only possible to atomic types. + %1 - не атомарный тип. Преобразование возможно только к атомарным типам. + + + %1 is not a valid name for a processing-instruction. + %1 не является корректным названием инструкции обработки. + + + The name of an extension expression must be in a namespace. + Название выражения расширения должно быть в пространстве имён. + + + Required type is %1, but %2 was found. + Требуется тип %1, но обнаружен %2. + + + Promoting %1 to %2 may cause loss of precision. + Преобразование %1 к %2 может снизить точность. + + + It's not possible to add attributes after any other kind of node. + Невозможно добавлять атрибуты после любого другого вида узла. + + + Only the Unicode Codepoint Collation is supported(%1). %2 is unsupported. + Поддерживается только Unicode Codepoint Collation (%1). %2 не поддерживается. + + + Integer division (%1) by zero (%2) is undefined. + Целочисленное деление (%1) на нуль (%2) не определено. + + + Division (%1) by zero (%2) is undefined. + Деление (%1) на нуль (%2) не определено. + + + Modulus division (%1) by zero (%2) is undefined. + Деление по модулю (%1) на нуль (%2) не определено. + + + %1 takes at most %n argument(s). %2 is therefore invalid. + + %1 принимает не более %n аргумента. Следовательно, %2 некорректно. + %1 принимает не более %n аргументов. Следовательно, %2 некорректно. + %1 принимает не более %n аргументов. Следовательно, %2 некорректно. + + + + %1 requires at least %n argument(s). %2 is therefore invalid. + + %1 принимает не менее %n аргумента. Следовательно, %2 некорректно. + %1 принимает не менее %n аргументов. Следовательно, %2 некорректно. + %1 принимает не менее %n аргументов. Следовательно, %2 некорректно. + + + + The root node of the second argument to function %1 must be a document node. %2 is not a document node. + Корневой узел второго аргумента функции %1 должен быть документом. %2 не является документом. + + + A default namespace declaration must occur before function, variable, and option declarations. + Объявление пространство имён по умолчанию должно быть до объявления функций, переменных и опций. + + + Namespace declarations must occur before function, variable, and option declarations. + Объявление пространства имён должно быть до объявления функций, переменных и опций. + + + Module imports must occur before function, variable, and option declarations. + Импортируемые модули должны быть указаны до объявления функций, переменных и опций. + + + %1 is not a whole number of minutes. + %1 не является полным количеством минут. + + + Attribute %1 can't be serialized because it appears at the top level. + Атрибут %1 не может быть сериализован, так как присутствует на верхнем уровне. + + + %1 is an unsupported encoding. + Кодировка %1 не поддерживается. + + + %1 contains octets which are disallowed in the requested encoding %2. + %1 содержит октеты, которые недопустимы в требуемой кодировке %2. + + + The codepoint %1, occurring in %2 using encoding %3, is an invalid XML character. + Символ с кодом %1, присутствующий в %2 при использовании кодировки %3, не является допустимым символом XML. + + + Ambiguous rule match. + Неоднозначное соответствие правилу. + + + In a namespace constructor, the value for a namespace cannot be an empty string. + В конструкторе пространства имён значение пространства имён не может быть пустой строкой. + + + The prefix must be a valid %1, which %2 is not. + Префикс должен быть корректным %1, но %2 им не является. + + + The prefix %1 cannot be bound. + Префикс%1 не может быть связан. + + + Only the prefix %1 can be bound to %2 and vice versa. + Только префикс %1 может быть связан с %2 и наоборот. + + + The parameter %1 is required, but no corresponding %2 is supplied. + Необходим параметр %1 , но соответствующего %2 не передано. + + + The parameter %1 is passed, but no corresponding %2 exists. + Передан параметр %1 , но соответствующего %2 не существует. + + + The URI cannot have a fragment + URI не может содержать фрагмент + + + Element %1 is not allowed at this location. + Элемент %1 недопустим в этом месте. + + + Text nodes are not allowed at this location. + Текстовые узлы недопустимы в этом месте. + + + Parse error: %1 + Ошибка разбора: %1 + + + The value of the XSL-T version attribute must be a value of type %1, which %2 isn't. + Значение атрибута версии XSL-T должно быть типа %1, но %2 им не является. + + + Running an XSL-T 1.0 stylesheet with a 2.0 processor. + Выполняется таблица стилей XSL-T 1.0 с обработчиком версии 2.0. + + + Unknown XSL-T attribute %1. + Неизвествный атрибут XSL-T %1. + + + Attribute %1 and %2 are mutually exclusive. + Атрибуты %1 и %2 взаимоисключающие. + + + In a simplified stylesheet module, attribute %1 must be present. + В модуле упрощённой таблицы стилей обязан присутствовать атрибут %1. + + + If element %1 has no attribute %2, it cannot have attribute %3 or %4. + Если элемент %1 не имеет атрибут %2, у него не может быть атрибутов %3 и %4. + + + Element %1 must have at least one of the attributes %2 or %3. + Элемент %1 должен иметь как минимум один из атрибутов %2 или %3. + + + At least one mode must be specified in the %1-attribute on element %2. + Как минимум один режим должен быть указан в атрибуте %1 элемента %2. + + + Element %1 must come last. + Элемент %1 должен идти последним. + + + At least one %1-element must occur before %2. + Как минимум один элемент %1 должен быть перед %2. + + + Only one %1-element can appear. + Должен быть только один элемент %1. + + + At least one %1-element must occur inside %2. + Как минимум один элемент %1 должен быть внутри %2. + + + When attribute %1 is present on %2, a sequence constructor cannot be used. + Если %2 содержит атрибут %1, конструктор последовательности не может быть использован. + + + Element %1 must have either a %2-attribute or a sequence constructor. + Элемент %1 должен иметь атрибут %2 или конструктор последовательности. + + + When a parameter is required, a default value cannot be supplied through a %1-attribute or a sequence constructor. + Если параметр необходим, значение по умолчание не может быть передано через атрибут %1 или конструктор последовательности. + + + Element %1 cannot have children. + Элемент %1 не может иметь потомков. + + + Element %1 cannot have a sequence constructor. + Элемент %1 не может иметь конструктор последовательности. + + + The attribute %1 cannot appear on %2, when it is a child of %3. + У %2 не может быть атрибута %1, когда он является потомком %3. + + + A parameter in a function cannot be declared to be a tunnel. + Параметр функции не может быть объявлен туннелем. + + + This processor is not Schema-aware and therefore %1 cannot be used. + Данный обработчик не работает со схемами, следовательно, %1 не может использоваться. + + + Top level stylesheet elements must be in a non-null namespace, which %1 isn't. + Элементы верхнего уровня таблицы стилей должны быть в пространстве имен, которым %1 не является. + + + The value for attribute %1 on element %2 must either be %3 or %4, not %5. + Значение атрибута %1 элемента %2 должно быть или %3, или %4, но не %5. + + + Attribute %1 cannot have the value %2. + Атрибут %1 не может принимать значение %2. + + + The attribute %1 can only appear on the first %2 element. + Атрибут %1 может быть только у первого элемента %2. + + + At least one %1 element must appear as child of %2. + Как минимум один элемент %1 должен быть в %2. + + + %1 has inheritance loop in its base type %2. + У %1 зациклено наследование в его базовом типе %2. + + + Circular inheritance of base type %1. + Цикличное наследование базового типа %1. + + + Circular inheritance of union %1. + Цикличное наследование объединения %1. + + + %1 is not allowed to derive from %2 by restriction as the latter defines it as final. + %1 не может наследовать %2 через ограничение, так как ранее определено, что он конечный. + + + %1 is not allowed to derive from %2 by extension as the latter defines it as final. + %1 не может наследовать %2 через расширение, так как ранее определено, что он конечный. + + + Base type of simple type %1 cannot be complex type %2. + Базовым простого типа %1 не может быть сложный %2. + + + Simple type %1 cannot have direct base type %2. + У простого типа %1 %2 не может быть непосредственным базовым типом. + + + Simple type %1 is not allowed to have base type %2. + Недопустимо, чтобы простой тип %1 имел базовым %2. + + + Simple type %1 can only have simple atomic type as base type. + У простого типа %1 может быть только простой атомарный базовый тип. + + + Simple type %1 cannot derive from %2 as the latter defines restriction as final. + Простой тип %1 не может наследовать %2, так как есть ограничение, определяющее его конечным. + + + Variety of item type of %1 must be either atomic or union. + Виды типов элементов %1 должны быть или атомарными, или объединениями. + + + Variety of member types of %1 must be atomic. + Виды внутренних типов %1 должны быть атомарными. + + + %1 is not allowed to derive from %2 by list as the latter defines it as final. + %1 не может наследовать %2 через список, так как ранее определено, что он конечный. + + + Simple type %1 is only allowed to have %2 facet. + Простой тип %1 может иметь только фасет %2. + + + Base type of simple type %1 must have variety of type list. + Базовый тип простого типа %1 должен содержать какой-нибудь список. + + + Base type of simple type %1 has defined derivation by restriction as final. + Базовый тип простого типа %1 определён конечным исходя из ограничения. + + + Item type of base type does not match item type of %1. + Тип элемента базового типа не совпадает с типом элемента %1. + + + Simple type %1 contains not allowed facet type %2. + Простой тип %1 содержит недопустимый фасет типа %2. + + + %1 is not allowed to derive from %2 by union as the latter defines it as final. + %1 не может наследовать %2 через объединение, так как ранее определено, что он конечный. + + + %1 is not allowed to have any facets. + %1 не может имет никаких фасетов. + + + Base type %1 of simple type %2 must have variety of union. + Базовый тип %1 простого типа %2 должен содержать какое-то объединение. + + + Base type %1 of simple type %2 is not allowed to have restriction in %3 attribute. + Базовый тип %1 простого типа %2 не может иметь ограничение для атрибута %3. + + + Member type %1 cannot be derived from member type %2 of %3's base type %4. + Внутренний тип %1 не может быть производным от типа %2, определённого в базовом типе типа %3 - %4. + + + Derivation method of %1 must be extension because the base type %2 is a simple type. + Метод наследования %1 должен быть «расширение», так как базовый тип %2 является простым. + + + Complex type %1 has duplicated element %2 in its content model. + Сложный тип %1 имеет повторяющийся элемент %2 в своей модели содержимого. + + + Complex type %1 has non-deterministic content. + Сложный тип %1 имеет недетерминированное содержимое. + + + Attributes of complex type %1 are not a valid extension of the attributes of base type %2: %3. + Атрибуты сложного типа %1 неверно дополняют атрибуты базового типа %2: %3. + + + Content model of complex type %1 is not a valid extension of content model of %2. + Модель содержимого сложного типа %1 неверно дополняет модель содержимого %2. + + + Complex type %1 must have simple content. + Сложный тип %1 должен иметь простое содержимое. + + + Complex type %1 must have the same simple type as its base class %2. + Сложный тип %1 должен содержать такой же простой тип, как и его базовый класс %2. + + + Complex type %1 cannot be derived from base type %2%3. + Сложный тип %1 не может быть производным от %2%3. + + + Attributes of complex type %1 are not a valid restriction from the attributes of base type %2: %3. + Атрибуты сложного типа %1 не являются верным ограничением атрибутов базового типа %2: %3. + + + Complex type %1 with simple content cannot be derived from complex base type %2. + Сложный тип %1 с простым содержимым не может быть производным от сложного типа %2. + + + Item type of simple type %1 cannot be a complex type. + Простой тип %1 не может содержать элементов сложных типов. + + + Member type of simple type %1 cannot be a complex type. + Простой тип %1 не может определять сложные типы. + + + %1 is not allowed to have a member type with the same name as itself. + Не допустимо, чтобы %1 определял внутренний тип с таким же именем. + + + %1 facet collides with %2 facet. + Фасет %1 противоречит %2. + + + %1 facet must have the same value as %2 facet of base type. + Фасет %1 должен иметь такое же значение, как и фасет %2 базового типа. + + + %1 facet must be equal or greater than %2 facet of base type. + Фасет %1 должен быть не менее фасета %2 базового типа. + + + %1 facet must be less than or equal to %2 facet of base type. + Фасет %1 должен быть не более фасета %2 базового типа. + + + %1 facet contains invalid regular expression + Фасет %1 содержит неверное регулярное выражение + + + Unknown notation %1 used in %2 facet. + В фасете %2 используется неизвестное обозначение %1. + + + %1 facet contains invalid value %2: %3. + Фасет %1 содержит неверное значение %2: %3. + + + %1 facet cannot be %2 or %3 if %4 facet of base type is %5. + Фасет %1 не может быть %2 или %3, если фасет %4 базового типа равен %5. + + + %1 facet cannot be %2 if %3 facet of base type is %4. + Фасет %1 не может быть %2, если фасет %3 базового типа равен %4. + + + %1 facet must be less than or equal to %2 facet. + Фасет %1 должен быть не более фасета %2. + + + %1 facet must be less than %2 facet of base type. + Фасет %1 должен быть менее фасета %2 базового типа. + + + %1 facet and %2 facet cannot appear together. + Фасеты %1 и %2 не могут быть одновременно. + + + %1 facet must be greater than %2 facet of base type. + Фасет %1 должен быть более фасета %2 базового типа. + + + %1 facet must be less than %2 facet. + Фасет %1 должен быть менее фасета %2. + + + %1 facet must be greater than or equal to %2 facet of base type. + Фасет %1 должен быть не менее фасета %2 базового типа. + + + Simple type contains not allowed facet %1. + Простой тип содержит недопустимый фасет %1. + + + %1, %2, %3, %4, %5 and %6 facets are not allowed when derived by list. + Недопустимы фасеты %1, %2, %3, %4, %5 и %6 при наследовании списком. + + + Only %1 and %2 facets are allowed when derived by union. + При наследовании объединением доступны только фасеты %1 и %2. + + + %1 contains %2 facet with invalid data: %3. + %1 содержит фасет %2 с неверными данными: %3. + + + Attribute group %1 contains attribute %2 twice. + Группа атрибутов %1 содержит два атрибута %2. + + + Attribute group %1 contains two different attributes that both have types derived from %2. + Группа атрибутов %1 содержит два разных атрибута, производных от %2. + + + Attribute group %1 contains attribute %2 that has value constraint but type that inherits from %3. + Группа атрибутов %1 содержит атрибут %2, на значение которого наложено ограничение, но тип наследован от %3. + + + Complex type %1 contains attribute %2 twice. + Сложный тип %1 содержит два атрибута %2. + + + Complex type %1 contains two different attributes that both have types derived from %2. + Сложный тип %1 содержит два разных атрибута, производных от %2. + + + Complex type %1 contains attribute %2 that has value constraint but type that inherits from %3. + Сложный тип %1 содержит атрибут %2, на значение которого наложено ограничение, но тип наследован от %3. + + + Element %1 is not allowed to have a value constraint if its base type is complex. + Элементу %1 недопустимо иметь ограничение на значения, если у его базовый тип сложный. + + + Element %1 is not allowed to have a value constraint if its type is derived from %2. + Элементу %1 недопустимо иметь ограничение на значения, если его тип производный от %2. + + + Value constraint of element %1 is not of elements type: %2. + Ограничение значения элемента %1 не типа элемента: %2. + + + Element %1 is not allowed to have substitution group affiliation as it is no global element. + + + + Type of element %1 cannot be derived from type of substitution group affiliation. + + + + Value constraint of attribute %1 is not of attributes type: %2. + Ограничение значения атрибута %1 не типа атрибута: %2. + + + Attribute %1 has value constraint but has type derived from %2. + + + + %1 attribute in derived complex type must be %2 like in base type. + + + + Attribute %1 in derived complex type must have %2 value constraint like in base type. + + + + Attribute %1 in derived complex type must have the same %2 value constraint like in base type. + + + + Attribute %1 in derived complex type must have %2 value constraint. + + + + processContent of base wildcard must be weaker than derived wildcard. + + + + Element %1 exists twice with different types. + + + + Particle contains non-deterministic wildcards. + + + + Base attribute %1 is required but derived attribute is not. + + + + Type of derived attribute %1 cannot be validly derived from type of base attribute. + + + + Value constraint of derived attribute %1 does not match value constraint of base attribute. + + + + Derived attribute %1 does not exist in the base definition. + + + + Derived attribute %1 does not match the wildcard in the base definition. + + + + Base attribute %1 is required but missing in derived definition. + + + + Derived definition contains an %1 element that does not exists in the base definition + + + + Derived wildcard is not a subset of the base wildcard. + + + + %1 of derived wildcard is not a valid restriction of %2 of base wildcard + + + + Attribute %1 from base type is missing in derived type. + + + + Type of derived attribute %1 differs from type of base attribute. + + + + Base definition contains an %1 element that is missing in the derived definition + + + + %1 references unknown %2 or %3 element %4. + + + + %1 references identity constraint %2 that is no %3 or %4 element. + + + + %1 has a different number of fields from the identity constraint %2 that it references. + + + + Base type %1 of %2 element cannot be resolved. + + + + Item type %1 of %2 element cannot be resolved. + + + + Member type %1 of %2 element cannot be resolved. + + + + Type %1 of %2 element cannot be resolved. + + + + Base type %1 of complex type cannot be resolved. + + + + %1 cannot have complex base type that has a %2. + + + + Content model of complex type %1 contains %2 element, so it cannot be derived by extension from a non-empty type. + + + + Complex type %1 cannot be derived by extension from %2 as the latter contains %3 element in its content model. + + + + Type of %1 element must be a simple type, %2 is not. + + + + Substitution group %1 of %2 element cannot be resolved. + + + + Substitution group %1 has circular definition. + + + + Duplicated element names %1 in %2 element. + + + + Reference %1 of %2 element cannot be resolved. + + + + Circular group reference for %1. + + + + %1 element is not allowed in this scope + + + + %1 element cannot have %2 attribute with value other than %3. + + + + %1 element cannot have %2 attribute with value other than %3 or %4. + + + + %1 or %2 attribute of reference %3 does not match with the attribute declaration %4. + + + + Attribute group %1 has circular reference. + + + + %1 attribute in %2 must have %3 use like in base type %4. + + + + Attribute wildcard of %1 is not a valid restriction of attribute wildcard of base type %2. + + + + %1 has attribute wildcard but its base type %2 has not. + + + + Union of attribute wildcard of type %1 and attribute wildcard of its base type %2 is not expressible. + + + + Enumeration facet contains invalid content: {%1} is not a value of type %2. + + + + Namespace prefix of qualified name %1 is not defined. + + + + %1 element %2 is not a valid restriction of the %3 element it redefines: %4. + + + + Empty particle cannot be derived from non-empty particle. + + + + Derived particle is missing element %1. + + + + Derived element %1 is missing value constraint as defined in base particle. + + + + Derived element %1 has weaker value constraint than base particle. + + + + Fixed value constraint of element %1 differs from value constraint in base particle. + + + + Derived element %1 cannot be nillable as base element is not nillable. + + + + Block constraints of derived element %1 must not be more weaker than in the base element. + + + + Simple type of derived element %1 cannot be validly derived from base element. + + + + Complex type of derived element %1 cannot be validly derived from base element. + + + + Element %1 is missing in derived particle. + + + + Element %1 does not match namespace constraint of wildcard in base particle. + + + + Wildcard in derived particle is not a valid subset of wildcard in base particle. + + + + processContent of wildcard in derived particle is weaker than wildcard in base particle. + + + + Derived particle allows content that is not allowed in the base particle. + + + + Can not process unknown element %1, expected elements are: %2. + + + + Element %1 is not allowed in this scope, possible elements are: %2. + + + + Child element is missing in that scope, possible child elements are: %1. + + + + Document is not a XML schema. + + + + %1 attribute of %2 element contains invalid content: {%3} is not a value of type %4. + + + + %1 attribute of %2 element contains invalid content: {%3}. + + + + Target namespace %1 of included schema is different from the target namespace %2 as defined by the including schema. + + + + Target namespace %1 of imported schema is different from the target namespace %2 as defined by the importing schema. + + + + %1 element is not allowed to have the same %2 attribute value as the target namespace %3. + + + + %1 element without %2 attribute is not allowed inside schema without target namespace. + + + + %1 element is not allowed inside %2 element if %3 attribute is present. + + + + %1 element has neither %2 attribute nor %3 child element. + + + + %1 element with %2 child element must not have a %3 attribute. + + + + %1 attribute of %2 element must be %3 or %4. + + + + %1 attribute of %2 element must have a value of %3. + + + + %1 attribute of %2 element must have a value of %3 or %4. + + + + %1 element must not have %2 and %3 attribute together. + + + + Content of %1 attribute of %2 element must not be from namespace %3. + + + + %1 attribute of %2 element must not be %3. + + + + %1 attribute of %2 element must have the value %3 because the %4 attribute is set. + + + + Specifying use='prohibited' inside an attribute group has no effect. + + + + %1 element must have either %2 or %3 attribute. + + + + %1 element must have either %2 attribute or %3 or %4 as child element. + + + + %1 element requires either %2 or %3 attribute. + + + + Text or entity references not allowed inside %1 element + Текст или ссылка на объект недопустимы в качестве содержимого элемента %1 + + + %1 attribute of %2 element must contain %3, %4 or a list of URIs. + + + + %1 element is not allowed in this context. + + + + %1 attribute of %2 element has larger value than %3 attribute. + + + + Prefix of qualified name %1 is not defined. + + + + %1 attribute of %2 element must either contain %3 or the other values. + + + + Component with ID %1 has been defined previously. + + + + Element %1 already defined. + Элемент %1 уже определён. + + + Attribute %1 already defined. + Атрибут %1 уже определён. + + + Type %1 already defined. + Тип %1 уже определён. + + + Attribute group %1 already defined. + + + + Element group %1 already defined. + Группа элементов %1 уже определёна. + + + Notation %1 already defined. + + + + Identity constraint %1 already defined. + + + + Duplicated facets in simple type %1. + + + + %1 is not valid according to %2. + %1 некорректно в соответствии с %2. + + + String content does not match the length facet. + Содержимое строки не соответствует фасету length. + + + String content does not match the minLength facet. + Содержимое строки не соответствует фасету minLength. + + + String content does not match the maxLength facet. + Содержимое строки не соответствует фасету maxLength. + + + String content does not match pattern facet. + Содержимое строки не соответствует фасету pattern. + + + String content is not listed in the enumeration facet. + Содержимое строки отсутствует в фасете enumeration. + + + Signed integer content does not match the maxInclusive facet. + Знаковое целое не соответствует фасету maxInclusive. + + + Signed integer content does not match the maxExclusive facet. + Знаковое целое не соответствует фасету maxExclusive. + + + Signed integer content does not match the minInclusive facet. + Знаковое целое не соответствует фасету minInclusive. + + + Signed integer content does not match the minExclusive facet. + Знаковое целое не соответствует фасету minExclusive. + + + Signed integer content is not listed in the enumeration facet. + Знаковое целое отсутствует в фасете enumeration. + + + Signed integer content does not match pattern facet. + Знаковое целое не соответствует фасету pattern. + + + Signed integer content does not match in the totalDigits facet. + Знаковое целое не соответствует фасету totalDigits. + + + Unsigned integer content does not match the maxInclusive facet. + Беззнаковое целое не соответствует фасету maxInclusive. + + + Unsigned integer content does not match the maxExclusive facet. + Беззнаковое целое не соответствует фасету maxExclusive. + + + Unsigned integer content does not match the minInclusive facet. + Беззнаковое целое не соответствует фасету minInclusive. + + + Unsigned integer content does not match the minExclusive facet. + Беззнаковое целое не соответствует фасету minExclusive. + + + Unsigned integer content is not listed in the enumeration facet. + Беззнаковое целое отсутствует в фасете enumeration. + + + Unsigned integer content does not match pattern facet. + Беззнаковое целое не соответствует фасету pattern. + + + Unsigned integer content does not match in the totalDigits facet. + Беззнаковое целое не соответствует фасету totalDigits. + + + Double content does not match the maxInclusive facet. + Действительное число не соответствует фасету maxInclusive. + + + Double content does not match the maxExclusive facet. + Действительное число не соответствует фасету maxExclusive. + + + Double content does not match the minInclusive facet. + Действительное число не соответствует фасету minInclusive. + + + Double content does not match the minExclusive facet. + Действительное число не соответствует фасету minExclusive. + + + Double content is not listed in the enumeration facet. + Действительное число отсутствует в фасете enumeration. + + + Double content does not match pattern facet. + Действительное число не соответствует фасету pattern. + + + Decimal content does not match in the fractionDigits facet. + Десятичное не соответствует фасету fractionDigits. + + + Decimal content does not match in the totalDigits facet. + Десятичное не соответствует фасету totalDigits. + + + Date time content does not match the maxInclusive facet. + Дата-время не соответствует фасету maxInclusive. + + + Date time content does not match the maxExclusive facet. + Дата-время не соответствует фасету maxExclusive. + + + Date time content does not match the minInclusive facet. + Дата-время не соответствует фасету minInclusive. + + + Date time content does not match the minExclusive facet. + Дата-время не соответствует фасету minExclusive. + + + Date time content is not listed in the enumeration facet. + Дата-время отсутствует в фасете enumeration. + + + Date time content does not match pattern facet. + Дата-время не соответствует фасету pattern. + + + Duration content does not match the maxInclusive facet. + Длительность не соответствует фасету maxInclusive. + + + Duration content does not match the maxExclusive facet. + Длительность не соответствует фасету maxExclusive. + + + Duration content does not match the minInclusive facet. + Длительность не соответствует фасету minInclusive. + + + Duration content does not match the minExclusive facet. + Длительность не соответствует фасету minExclusive. + + + Duration content is not listed in the enumeration facet. + Длительность отсутствует в фасете enumeration. + + + Duration content does not match pattern facet. + Длительность не соответствует фасету pattern. + + + Boolean content does not match pattern facet. + Булевое число не соответствует фасету pattern. + + + Binary content does not match the length facet. + Двоичные данные не соответствуют фасету length. + + + Binary content does not match the minLength facet. + Двоичные данные не соответствуют фасету minLength. + + + Binary content does not match the maxLength facet. + Двоичные данные не соответствуют фасету maxLength. + + + Binary content is not listed in the enumeration facet. + Двоичные данные отсутствуют в фасете enumeration. + + + Invalid QName content: %1. + Некорректное содержимое QName: %1. + + + QName content is not listed in the enumeration facet. + Содержимое QName отсутствует в фасете enumeration. + + + QName content does not match pattern facet. + Содержимое QName не соответствует фасету pattern. + + + Notation content is not listed in the enumeration facet. + Содержимое Notation не перечислено в фасете enumeration. + + + List content does not match length facet. + Список не соответствует фасету length. + + + List content does not match minLength facet. + Список не соответствует фасету minLength. + + + List content does not match maxLength facet. + Список не соответствует фасету maxLength. + + + List content is not listed in the enumeration facet. + Содержимое списка не перечислено в фасете enumeration. + + + List content does not match pattern facet. + Содержимое списка не соответствует фасету pattern. + + + Union content is not listed in the enumeration facet. + Объединение не перечислено в фасете enumeration. + + + Union content does not match pattern facet. + Объединение не соответствует фасету pattern. + + + Data of type %1 are not allowed to be empty. + Данные типа %1 не могут быть пустыми. + + + Element %1 is missing child element. + У элемента %1 отсутствует дочерний элемент. + + + There is one IDREF value with no corresponding ID: %1. + Присутствует одно значение IDREF без соответствующего ID: %1. + + + Loaded schema file is invalid. + Загруженный файл схемы некорректен. + + + %1 contains invalid data. + %1 содержит некорректные данные. + + + xsi:schemaLocation namespace %1 has already appeared earlier in the instance document. + Пространство имён xsi:schemaLocation %1 уже встречалось ранее в данном документе. + + + xsi:noNamespaceSchemaLocation cannot appear after the first no-namespace element or attribute. + xsi:noNamespaceSchemaLocation не может встречаться после первого не-`namespace` элемента или атрибута. + + + No schema defined for validation. + Схема для проверки не определена. + + + No definition for element %1 available. + Отсутствует определение элемента %1. + + + Specified type %1 is not known to the schema. + Указанный тип %1 шаблону не известен. + + + Element %1 is not defined in this scope. + Элемент %1 не определён в данном контексте. + + + Declaration for element %1 does not exist. + Отсутствует объявление элемента %1. + + + Element %1 contains invalid content. + В элементе %1 находится неверное содержимое. + + + Element %1 is declared as abstract. + Элемент %1 объявлен абстрактным. + + + Element %1 is not nillable. + Элемент %1 необнуляемый. + + + Attribute %1 contains invalid data: %2 + Атрибут %1 содержит неверные данные: %2 + + + Element contains content although it is nillable. + Элемент необнуляемый, т.к. имеет содержимое. + + + Fixed value constraint not allowed if element is nillable. + Для обнуляемых элементов недопустимо ограничение фиксированным значением. + + + Specified type %1 is not validly substitutable with element type %2. + Указанный тип %1 не может быть корректно замещён элементом типа %2. + + + Complex type %1 is not allowed to be abstract. + Недопустимо, чтобы сложный тип %1 был абстрактным. + + + Element %1 contains not allowed attributes. + Элемент %1 содержит недопустимые атрибуты. + + + Element %1 contains not allowed child element. + Элемент %1 содержит недопустимый дочерний элемент. + + + Content of element %1 does not match its type definition: %2. + Содержимое элемента %1 не соответствует его определению типа: %2. + + + Content of element %1 does not match defined value constraint. + Содержимое элемента %1 не соответствует определённому ограничению значения. + + + Element %1 contains not allowed child content. + Элемент %1 содержит недопустимое дочернее содержимое. + + + Element %1 contains not allowed text content. + Элемент %1 содержит недопустимое текстовое содержимое. + + + Element %1 cannot contain other elements, as it has fixed content. + Элемент %1 не может содержать другие элементы, так как у него фиксированное содержимое. + + + Element %1 is missing required attribute %2. + У элемента %1 отсутствует необходимый атрибут %2. + + + Attribute %1 does not match the attribute wildcard. + Атрибут %1 не соответствует шаблону. + + + Declaration for attribute %1 does not exist. + Отсутствует объявление атрибута %1. + + + Element %1 contains two attributes of type %2. + Элемент %1 содержит два атрибута типа %2. + + + Attribute %1 contains invalid content. + Элемент %1 содержит неверное содержимое. + + + Element %1 contains unknown attribute %2. + Элемент %1 содержит неизвестный атрибут %2. + + + Content of attribute %1 does not match its type definition: %2. + Содержимое атрибута %1 не соответствует его определению типа: %2. + + + Content of attribute %1 does not match defined value constraint. + Содержимое атрибута %1 не соответствует определённому ограничению значения. + + + Non-unique value found for constraint %1. + Обнаружено неуникальное значение для ограничения %1. + + + Key constraint %1 contains absent fields. + Ограничение на ключ %1 содержит недостающие поля. + + + Key constraint %1 contains references nillable element %2. + Ограничение на ключ %1 содержит ссылки на обнуляемый элемент %2. + + + No referenced value found for key reference %1. + + + + More than one value found for field %1. + Для поля %1 найдено более одного значения. + + + Field %1 has no simple type. + Поле %1 не имеет простого типа. + + + ID value '%1' is not unique. + Значение ID «%1» не уникально. + + + '%1' attribute contains invalid QName content: %2. + Атрибут «%1» имеет некорректное содержимое QName: %2. + + +