From: Nikolay Tischenko Date: Fri, 1 Apr 2011 16:41:59 +0000 (+0700) Subject: Spanish translation and Use button in filemanager X-Git-Url: http://git.maemo.org/git/?p=someplayer;a=commitdiff_plain;h=3527802a82d13341e22b72cab5fbbf4b62c6b94f Spanish translation and Use button in filemanager --- diff --git a/debian/changelog b/debian/changelog index a0869f1..2c1a02a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,8 @@ -someplayer (1.5.4-2) unstable; urgency=low +someplayer (1.5.5-1) unstable; urgency=low - * added Polish translation + * update Polish and Italian translations + * added Portuguese translation + * added USE button to more views -- somebody Nikolay Tischenko Sun, 27 Feb 2011 16:40:36 +0600 diff --git a/src/directoryview.cpp b/src/directoryview.cpp index 50e93cf..9ed4090 100644 --- a/src/directoryview.cpp +++ b/src/directoryview.cpp @@ -48,6 +48,8 @@ DirectoryView::DirectoryView(QWidget *parent) : ui->addButton->setEnabled(false); ui->addButton->setIcon(QIcon()); + ui->useButton->setEnabled(false); + ui->useButton->setIcon(QIcon()); ui->progressBar->hide(); @@ -60,6 +62,7 @@ DirectoryView::DirectoryView(QWidget *parent) : connect(ui->homeButton, SIGNAL(clicked()), this, SLOT(_home())); connect(ui->selectToggleButton, SIGNAL(clicked()), this, SLOT(_toggle_selection())); connect(ui->addButton, SIGNAL(clicked()), this, SLOT(_add())); + connect(ui->useButton, SIGNAL(clicked()), this, SLOT(_use())); connect(_tagresolver, SIGNAL(decoded(Track)), this, SLOT(_add_track(Track))); connect(_tagresolver, SIGNAL(done()), this, SLOT(_done())); connect(ui->playerButton, SIGNAL(clicked()), this, SLOT(hide())); @@ -113,6 +116,8 @@ void DirectoryView::readDir(QString path, QString pathToScroll) { ui->dirView->setColumnWidth(0, 70); ui->addButton->setEnabled(false); ui->addButton->setIcon(QIcon()); + ui->useButton->setEnabled(false); + ui->useButton->setIcon(QIcon()); if (pathToScroll.isEmpty()) { ui->dirView->scrollToTop(); return; @@ -174,9 +179,13 @@ void DirectoryView::_process_selection(QItemSelection selected, QItemSelection d if (ui->dirView->selectionModel()->selectedRows().count() > 0) { ui->addButton->setEnabled(true); ui->addButton->setIcon(QIcon(":/icons/"+_icons_theme+"/add.png")); + ui->useButton->setEnabled(true); + ui->useButton->setIcon(QIcon(":/icons/"+_icons_theme+"/use.png")); } else { ui->addButton->setEnabled(false); ui->addButton->setIcon(QIcon()); + ui->useButton->setEnabled(false); + ui->useButton->setIcon(QIcon()); } } @@ -234,6 +243,8 @@ void DirectoryView::updateIcons() { _icons_theme = config.getValue("ui/iconstheme").toString(); if (!ui->addButton->icon().isNull()) ui->addButton->setIcon(QIcon(":/icons/"+_icons_theme+"/add.png")); + if (!ui->useButton->icon().isNull()) + ui->useButton->setIcon(QIcon(":/icons/"+_icons_theme+"/add.png")); ui->homeButton->setIcon(QIcon(":/icons/"+_icons_theme+"/home.png")); ui->backButton->setIcon(QIcon(":/icons/"+_icons_theme+"/back.png")); if (ui->dirView->selectionModel()->selectedRows().count() == _model->rowCount()) { @@ -266,9 +277,12 @@ void DirectoryView::lanscapeMode() { ui->lverticalLayout->addWidget(ui->homeButton); ui->lverticalLayout->addItem(ui->lverticalSpacer_1); ui->lverticalLayout->addWidget(ui->playerButton); - ui->rverticalLayout->removeItem(ui->rverticalSpacer); + ui->rverticalLayout->removeItem(ui->rverticalSpacer_0); + ui->rverticalLayout->removeItem(ui->rverticalSpacer_1); ui->rverticalLayout->addWidget(ui->addButton); - ui->rverticalLayout->addItem(ui->rverticalSpacer); + ui->rverticalLayout->addItem(ui->rverticalSpacer_0); + ui->rverticalLayout->addWidget(ui->useButton); + ui->rverticalLayout->addItem(ui->rverticalSpacer_1); ui->rverticalLayout->addWidget(ui->selectToggleButton); ui->lverticalWidget->show(); ui->rverticalWidget->show(); @@ -279,7 +293,7 @@ void DirectoryView::portraitMode() { ui->rverticalWidget->hide(); ui->lverticalLayout->removeItem(ui->lverticalSpacer_0); ui->lverticalLayout->removeItem(ui->lverticalSpacer_1); - ui->rverticalLayout->removeItem(ui->rverticalSpacer); + ui->rverticalLayout->removeItem(ui->rverticalSpacer_0); ui->topWidget->layout()->removeItem(ui->thorizontalSpacer_0); ui->topWidget->layout()->removeItem(ui->thorizontalSpacer_1); ui->topWidget->layout()->addWidget(ui->backButton); @@ -287,9 +301,12 @@ void DirectoryView::portraitMode() { ui->topWidget->layout()->addWidget(ui->homeButton); ui->topWidget->layout()->addItem(ui->thorizontalSpacer_1); ui->topWidget->layout()->addWidget(ui->addButton); - ui->bottomWidget->layout()->removeItem(ui->bhorizontalSpacer); + ui->bottomWidget->layout()->removeItem(ui->bhorizontalSpacer_0); + ui->bottomWidget->layout()->removeItem(ui->bhorizontalSpacer_1); ui->bottomWidget->layout()->addWidget(ui->playerButton); - ui->bottomWidget->layout()->addItem(ui->bhorizontalSpacer); + ui->bottomWidget->layout()->addItem(ui->bhorizontalSpacer_0); + ui->bottomWidget->layout()->addWidget(ui->useButton); + ui->bottomWidget->layout()->addItem(ui->bhorizontalSpacer_1); ui->bottomWidget->layout()->addWidget(ui->selectToggleButton); ui->topWidget->show(); ui->bottomWidget->show(); @@ -315,4 +332,11 @@ void DirectoryView::homeScreen() { ui->dirView->setColumnWidth(0, 70); ui->addButton->setEnabled(false); ui->addButton->setIcon(QIcon()); + ui->useButton->setEnabled(false); + ui->useButton->setIcon(QIcon()); +} + +void DirectoryView::_use() { + emit clearCurrent(); + _add(); } diff --git a/src/directoryview.h b/src/directoryview.h index 9a2ba84..7c78d1f 100644 --- a/src/directoryview.h +++ b/src/directoryview.h @@ -54,6 +54,7 @@ public slots: signals: void addAndPlay(Track); void addTracks(QList); + void clearCurrent(); private: Ui::DirectoryView *ui; @@ -77,6 +78,7 @@ private slots: void _home(); void _toggle_selection(); void _add(); + void _use(); void _add_track(Track); void _done(); void _process_click(QModelIndex); diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index 5c5d787..ff1f368 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -84,6 +84,7 @@ MainWindow::MainWindow(QWidget *parent) : connect(_directory_form, SIGNAL(addAndPlay(Track)), _player_form, SLOT(play(Track))); connect(_player_form, SIGNAL(dirView()), _directory_form, SLOT(show())); connect(_directory_form, SIGNAL(addTracks(QList)), this, SLOT(_add_tracks(QList))); + connect(_directory_form, SIGNAL(clearCurrent()), this, SLOT(_clear_current())); connect(_settings_form, SIGNAL(iconsChanged()), _player_form, SLOT(updateIcons())); connect(_settings_form, SIGNAL(iconsChanged()), _library_form, SLOT(updateIcons())); connect(_settings_form, SIGNAL(iconsChanged()), _manage_library_form, SLOT(updateIcons())); @@ -484,3 +485,8 @@ void MainWindow::_import_playlits() { QString directory = QFileDialog::getExistingDirectory (this, tr("Select directory"), "", QFileDialog::ShowDirsOnly ); _library->scanAndImportPlaylists(directory); } + +void MainWindow::_clear_current() { + Playlist pl; + _library->saveCurrentPlaylist(pl); +} diff --git a/src/mainwindow.h b/src/mainwindow.h index 54a396d..d57b3e7 100644 --- a/src/mainwindow.h +++ b/src/mainwindow.h @@ -86,6 +86,7 @@ private slots: void _set_display_state(bool); void _zoom_key_pressed(quint32); void _fmtx_settings_changed(); + void _clear_current(); private: PlayerForm *_player_form; LibraryForm *_library_form; diff --git a/src/resources/someplayer_es.ts b/src/resources/someplayer_es.ts new file mode 100644 index 0000000..a32b046 --- /dev/null +++ b/src/resources/someplayer_es.ts @@ -0,0 +1,1237 @@ + + + + + AboutForm + + + About SomePlayer + Acerca de SomePlayer + + + + <b>SomePlayer</b> + <b>SomePlayer</b> + + + + >< + >< + + + + <p align="center">Alternative music player for Maemo 5. It includes media-library, playlists, equalizer, and supports many other things.</p> + <p align="center">Reproductor de música alternativo para Maemo 5. Incluye biblioteca de música, listas de reproducción, ecualizador, y soporte para muchas cosas más.</p> + + + + <p align="center">Licensed under GPLv2<br> +By Nikolay Tischenko (somebody)</p><p align="center"><b>SomePlayer</b> tries to be a full replacement of standard music player for Maemo5 with many other features such as equalizer, custom playlists, smarter random mode, more flexible media-library and improved algorithm for cover searching.</p> + <p align="center">Liberado bajo licencia GPLv2<br> +By Nikolay Tischenko (somebody)</p><p align="center"><b>SomePlayer</b> intenta ser el reemplazo del reproductor de música estándar de Maemo5 con muchas otras características tales como ecualizador, listas de reproducción personalizadas, reproducción aleatoria más inteligente, una biblioteca de música más flexible y un algoritmo mejorado para la búsqueda de portadas.</p> + + + + <p align="center"> +<b>Thanks to:</b><br> +MrClon (maemoworld.ru)<br />hxka (maemoworld.ru)<br />jerich0 (maemoworld.ru)<br />lknfox (maemoworld.ru)<br />fab (maemoworld.ru)<br />Pantera1989m (github.com)<br />willkr (maemo.org)<br />and other people who tested this player and helped in development</p> + <p align="center"> +<b>Agradecimientos:</b><br> +MrClon (maemoworld.ru)<br />hxka (maemoworld.ru)<br />jerich0 (maemoworld.ru)<br />lknfox (maemoworld.ru)<br />fab (maemoworld.ru)<br />Pantera1989m (github.com)<br />willkr (maemo.org)<br />y otras personas que han probado este reproductor y han ayudado en su desarrollo</p> + + + + Online help + Ayuda en línea + + + + Donate + Donar + + + + DirectoryView + + + Directories + Directorios + + + + Audioclips + Pistas de audio + + + + Internal memory + Memoria interna + + + + Memory card + Tarjeta de memoria + + + + EditTagsDialog + + + Edit tags + Editar etiquetas + + + + Artist: + Artista: + + + + Album: + Álbum: + + + + Title: + Título: + + + + EqualizerDialog + + + Equalizer + Ecualizador + + + + +12dB + +12dB + + + + -12dB + -12dB + + + + Enable + Activar + + + + Save + Guardar + + + + FmtxSettingsDialog + + + FMTX Settings + Configuración de FMTX + + + + Frequency: + Frecuencia: + + + + 88 + 88 + + + + 89 + 89 + + + + + 90 + 90 + + + + 91 + 91 + + + + 92 + 92 + + + + 93 + 93 + + + + 94 + 94 + + + + + 95 + 95 + + + + 96 + 96 + + + + 97 + 97 + + + + 98 + 98 + + + + 99 + 99 + + + + 100 + 100 + + + + 101 + 101 + + + + 102 + 102 + + + + 103 + 103 + + + + 104 + 104 + + + + 105 + 105 + + + + 106 + 106 + + + + 107 + 107 + + + + 00 + 00 + + + + 05 + 05 + + + + 10 + 10 + + + + 15 + 15 + + + + 20 + 20 + + + + 25 + 25 + + + + 30 + 30 + + + + 35 + 35 + + + + 40 + 40 + + + + 45 + 45 + + + + 50 + 50 + + + + 55 + 55 + + + + 60 + 60 + + + + 65 + 65 + + + + 70 + 70 + + + + 75 + 75 + + + + 80 + 80 + + + + 85 + 85 + + + + Station: + Estación: + + + + LibraryForm + + + Library + Biblioteca + + + + + Artists + Artistas + + + + Dynamic playlists + Lista dinámica + + + + + Albums by "%1" + Álbum por "%1" + + + + Tracks from "%1" by "%2" + Pistas de "%1" por "%2" + + + + All tracks by "%1" + Todas las pistas por "%1" + + + + Tracks in playlist "%1" + Pistas en la lista de reproducción "%1" + + + + Playlists + Listas de reproducción + + + + Search in library + Buscar en la biblioteca + + + + MainWindow + + + SomePlayer + SomePlayer + + + + Main + Principal + + + + Library + Biblioteca + + + + Tools + Herramientas + + + + Player + Reproductor + + + + Help + Ayuda + + + + About + Acerca de + + + + Settings + Configuración + + + + Manage library + Organizar biblioteca + + + + Equalizer + Ecualizador + + + + Set timer + Temporizador + + + + Save playlist + Guardar lista + + + + Ctrl+S + Ctrl+S + + + + Online help + Ayuda en línea + + + + Import playlists + Importar lista + + + + Clear playlist? + Borrar lista? + + + + Music off: + Detener música: + + + + Select directory + Seleccionar directorio + + + + ManageLibraryForm + + + Manage library + Organizar biblioteca + + + + Added directories: + Directorios agregados: + + + + 0 artitst + 0 artistas + + + + 0 albums + 0 álbumes + + + + 0 tracks + 0 pistas + + + + Select directory + Seleccione un directorio + + + + Delete selected directories? + Borrar los directorios seleccionados? + + + + Update selected directories? It may take several minutes + Actualizar los directorios seleccionados? Podría tomar varios minutos + + + + Update the entire library? It may take a long time + Actualizar la biblioteca completa? Podría tomar mucho tiempo + + + + PlayerForm + + + SomePlayer + SomePlayer + + + + Music off: 00:00:00 + Detener música: 00:00:00 + + + + 0/0 + 0/0 + + + + <h3>Title</h3> + <h3>Título</h3> + + + + + 00:00 + 00:00 + + + + <b>Artist</b><br/>album + <b>Artista</b><br/>album + + + + + Clear playlist + Borrar lista + + + + + Delete + Borrar + + + + + + + Add to favorites + Agregar a favoritos + + + + + Enqueue + Poner en cola + + + + + Add to playlists + Agregar a la lista + + + + + Edit tags + Modificar etquetas + + + + + Remove from favorites + Remover de favoritos + + + + PlaylistDialog + + + Dialog + Ventana + + + + PlaylistSortForm + + + Sorting + Ordenar + + + + QObject + + + All tracks + Todas las pistas + + + + SavePlaylistDialog + + + Save playlist + Guardar lista + + + + Existed playlists: + Lista existente: + + + + New: + Nueva: + + + + SettingsForm + + + + Settings + Configuración + + + + UI + Interfaz + + + + Library + Biblioteca + + + + System + Sistema + + + + Icons theme: + Tema de los íconos: + + + + + White + Blanco + + + + + Black + Negro + + + + Use gradient in portrait mode: + Usa un gradiente en modo vertical: + + + + + + Yes + Sí + + + + + + No + No + + + + Active track color: + Color de la pista en reproducción: + + + + Blue + Azul + + + + Magenta + Magenta + + + + Red + Rojo + + + + Yellow + Amarillo + + + + Light + Claro + + + + Dark + Oscuro + + + + Orientation: + Orientación: + + + + Landscape + Horizontal + + + + Portrait + Vertical + + + + Auto + Auto + + + + Language: + Idioma: + + + Italiano + Español + + + + Sort album: + Ordenar Álbum: + + + + Alphabetical + Alfabéticamente + + + + By date + Por fecha + + + + Show track length in library view: + Mostrar la duracion de la pista en la vista de biblioteca: + + + + Pause when headphones unplugged: + Pausar cuando se desconectan los audífonos: + + + + Use hardware keys + Utilizar las teclas de hardware + + + + Zoom keys control: + Teclas del control de zoom: + + + + Volume + Volumen + + + + Tracks + Pistas + + + + Use FMTX + Usar FMTX + + + + TimerDialog + + + Set timer + Temporizador + + + + Hours + Horas + + + + + + 00 + 00 + + + + + + 01 + 01 + + + + + + 02 + 02 + + + + + + 03 + 03 + + + + + + 04 + 04 + + + + + + 05 + 05 + + + + + + 06 + 06 + + + + + + 07 + 07 + + + + + + 08 + 08 + + + + + + 09 + 09 + + + + + + 10 + 10 + + + + + + 11 + 11 + + + + + + 12 + 12 + + + + + : + : + + + + Minutes + Minutos + + + + + 13 + 13 + + + + + 14 + 14 + + + + + 15 + 15 + + + + + 16 + 16 + + + + + 17 + 17 + + + + + 18 + 18 + + + + + 19 + 19 + + + + + 20 + 20 + + + + + 21 + 21 + + + + + 22 + 22 + + + + + 23 + 23 + + + + + 24 + 24 + + + + + 25 + 25 + + + + + 26 + 26 + + + + + 27 + 27 + + + + + 28 + 28 + + + + + 29 + 29 + + + + + 30 + 30 + + + + + 31 + 31 + + + + + 32 + 32 + + + + + 33 + 33 + + + + + 34 + 34 + + + + + 35 + 35 + + + + + 36 + 36 + + + + + 37 + 37 + + + + + 38 + 38 + + + + + 39 + 39 + + + + + 40 + 40 + + + + + 41 + 41 + + + + + 42 + 42 + + + + + 43 + 43 + + + + + 44 + 44 + + + + + 45 + 45 + + + + + 46 + 46 + + + + + 47 + 47 + + + + + 48 + 48 + + + + + 49 + 49 + + + + + 50 + 50 + + + + + 51 + 51 + + + + + 52 + 52 + + + + + 53 + 53 + + + + + 54 + 54 + + + + + 55 + 55 + + + + + 56 + 56 + + + + + 57 + 57 + + + + + 58 + 58 + + + + + 59 + 59 + + + + Seconds + Secondi + + + + Disable + Disactivar + + + + ToolsWidget + + + Form + Forma + + + diff --git a/src/resources/someplayer_it.ts b/src/resources/someplayer_it.ts index db84758..b5d8d8e 100644 --- a/src/resources/someplayer_it.ts +++ b/src/resources/someplayer_it.ts @@ -58,17 +58,17 @@ MrClon (maemoworld.ru)<br />hxka (maemoworld.ru)<br />jerich0 (maemo Cartelle - + Audioclips Clip audio - + Internal memory Memoria interna - + Memory card Memory card @@ -462,17 +462,17 @@ MrClon (maemoworld.ru)<br />hxka (maemoworld.ru)<br />jerich0 (maemo Importa playlist - + Clear playlist? Cancellare la playlist? - + Music off: Spegnimento musica: - + Select directory Seleziona cartella @@ -649,7 +649,7 @@ MrClon (maemoworld.ru)<br />hxka (maemoworld.ru)<br />jerich0 (maemo SettingsForm - + Settings Impostazioni @@ -692,15 +692,15 @@ MrClon (maemoworld.ru)<br />hxka (maemoworld.ru)<br />jerich0 (maemo - - + + Yes Si - - + + No No @@ -769,52 +769,52 @@ MrClon (maemoworld.ru)<br />hxka (maemoworld.ru)<br />jerich0 (maemo Italiano - + Sort album: Ordina gli album: - + Alphabetical Alfabeticamente - + By date Per data - + Show track length in library view: Mostra la durata del brano nella visuale collezione: - + Pause when headphones unplugged: Pausa quando si staccano le cuffie: - + Use hardware keys Utilizza tasti hardware - + Zoom keys control: I tasti per lo zoom controllano: - + Volume Volume - + Tracks Brani - + Use FMTX Usa FMTX diff --git a/src/resources/someplayer_pl.ts b/src/resources/someplayer_pl.ts index a08d984..d65caaa 100644 --- a/src/resources/someplayer_pl.ts +++ b/src/resources/someplayer_pl.ts @@ -58,17 +58,17 @@ MrClon (maemoworld.ru)<br />hxka (maemoworld.ru)<br />jerich0 (maemo Katalogi - + Audioclips Pliki audio - + Internal memory Pamięć wewnętrzna - + Memory card Karta pamięci @@ -462,17 +462,17 @@ MrClon (maemoworld.ru)<br />hxka (maemoworld.ru)<br />jerich0 (maemo Importowanie playlist - + Clear playlist? Wyczyścić playlistę? - + Music off: Wyłącznie muzyki: - + Select directory Wybierz katalog @@ -649,7 +649,7 @@ MrClon (maemoworld.ru)<br />hxka (maemoworld.ru)<br />jerich0 (maemo SettingsForm - + Settings Ustawienia @@ -692,15 +692,15 @@ MrClon (maemoworld.ru)<br />hxka (maemoworld.ru)<br />jerich0 (maemo - - + + Yes Tak - - + + No Nie @@ -769,52 +769,52 @@ MrClon (maemoworld.ru)<br />hxka (maemoworld.ru)<br />jerich0 (maemo Włoski - + Sort album: Sortowanie albumu: - + Alphabetical Alfabetyczne - + By date Według daty - + Show track length in library view: Pokazuj długość utworu w widoku biblioteki: - + Pause when headphones unplugged: Wstrzymaj po odłaczeniu słuchawek: - + Use hardware keys Użyj przycisków sprzętowych - + Zoom keys control: Przycisk zoom: - + Volume Głośność - + Tracks Utwory - + Use FMTX Używaj FMTX diff --git a/src/resources/someplayer_pt_BR.ts b/src/resources/someplayer_pt_BR.ts index 7551241..0929ddc 100644 --- a/src/resources/someplayer_pt_BR.ts +++ b/src/resources/someplayer_pt_BR.ts @@ -58,17 +58,17 @@ MrClon (maemoworld.ru)<br />hxka (maemoworld.ru)<br />jerich0 (maemo Diretórios - + Audioclips Clipes de áudio - + Internal memory Memória interna - + Memory card Cartão de memória @@ -462,17 +462,17 @@ MrClon (maemoworld.ru)<br />hxka (maemoworld.ru)<br />jerich0 (maemo Importar playlists - + Clear playlist? Apagar playlist? - + Music off: Cortando a música em: - + Select directory Selecione o diretório @@ -649,7 +649,7 @@ MrClon (maemoworld.ru)<br />hxka (maemoworld.ru)<br />jerich0 (maemo SettingsForm - + Settings Configurações @@ -692,15 +692,15 @@ MrClon (maemoworld.ru)<br />hxka (maemoworld.ru)<br />jerich0 (maemo - - + + Yes Sim - - + + No Não @@ -769,52 +769,52 @@ MrClon (maemoworld.ru)<br />hxka (maemoworld.ru)<br />jerich0 (maemo Português do Brasil - + Sort album: Ordenar álbum: - + Alphabetical Alfabeticamente - + By date Por data - + Show track length in library view: Mostrar duração das faixas na tela de visualização da biblioteca: - + Pause when headphones unplugged: Pausar quando o fone de ouvido for desconectado: - + Use hardware keys Utilizar teclas fisicas - + Zoom keys control: Teclas de zoom controlam: - + Volume Volume - + Tracks Faixas - + Use FMTX Uso do FMTX diff --git a/src/resources/someplayer_ru.ts b/src/resources/someplayer_ru.ts index 15c208f..923adc5 100644 --- a/src/resources/someplayer_ru.ts +++ b/src/resources/someplayer_ru.ts @@ -58,17 +58,17 @@ MrClon (maemoworld.ru)<br />hxka (maemoworld.ru)<br />jerich0 (maemo Каталоги - + Audioclips Аудиоклипы - + Internal memory Внутренняя память - + Memory card Карта памяти @@ -462,17 +462,17 @@ MrClon (maemoworld.ru)<br />hxka (maemoworld.ru)<br />jerich0 (maemo Импорт плейлистов - + Clear playlist? Очистить плейлист? - + Music off: Отключение: - + Select directory Выбрать директорию @@ -649,7 +649,7 @@ MrClon (maemoworld.ru)<br />hxka (maemoworld.ru)<br />jerich0 (maemo SettingsForm - + Settings Настройки @@ -687,15 +687,15 @@ MrClon (maemoworld.ru)<br />hxka (maemoworld.ru)<br />jerich0 (maemo - - + + Yes Да - - + + No Нет @@ -739,47 +739,47 @@ MrClon (maemoworld.ru)<br />hxka (maemoworld.ru)<br />jerich0 (maemo Italiano - + Sort album: Сортировка альбомов: - + Alphabetical По алфавиту - + By date По дате - + Show track length in library view: Показывать длину трека: - + Use hardware keys Аппаратные кнопки - + Zoom keys control: «Качелька» управляет: - + Volume Звуком - + Tracks Треками - + Use FMTX Включить FMTX @@ -814,7 +814,7 @@ MrClon (maemoworld.ru)<br />hxka (maemoworld.ru)<br />jerich0 (maemo Язык: - + Pause when headphones unplugged: Пауза при отключении наушников: diff --git a/src/settingsform.cpp b/src/settingsform.cpp index 39fad2a..e611fc2 100644 --- a/src/settingsform.cpp +++ b/src/settingsform.cpp @@ -36,7 +36,7 @@ SettingsForm::SettingsForm(QWidget *parent) : _color_map << "blue" << "magenta" << "red" << "yellow" << "white" << "black" << "light" << "dark"; - _lang_map << "en" << "it" << "pl" << "pt_BR" << "ru" << "zh_CN" << "zh_TW"; + _lang_map << "en" << "es" << "it" << "pl" << "pt_BR" << "ru" << "zh_CN" << "zh_TW"; QString albumSorting = config.getValue("ui/albumsorting").toString(); QString showTrackLenght = config.getValue("ui/showtracklenght").toString(); diff --git a/src/src.pro b/src/src.pro index 3e76703..bf54baf 100644 --- a/src/src.pro +++ b/src/src.pro @@ -295,7 +295,8 @@ TRANSLATIONS = resources/someplayer_ru.ts \ resources/someplayer_zh_TW.ts \ resources/someplayer_it.ts \ resources/someplayer_pl.ts \ - resources/someplayer_pt_BR.ts + resources/someplayer_pt_BR.ts \ + resources/someplayer_es.ts unix { diff --git a/src/ui/directoryview.ui b/src/ui/directoryview.ui index 6ac2052..059ba73 100644 --- a/src/ui/directoryview.ui +++ b/src/ui/directoryview.ui @@ -53,7 +53,7 @@ - + :/icons/white/back.png:/icons/white/back.png @@ -92,7 +92,7 @@ - + :/icons/white/home.png:/icons/white/home.png @@ -137,7 +137,7 @@ - + :/icons/white/player.png:/icons/white/player.png @@ -284,13 +284,32 @@ 0 - + Qt::Horizontal + + QSizePolicy::Maximum + - 651 + 324 + 0 + + + + + + + + Qt::Horizontal + + + QSizePolicy::Maximum + + + + 327 0 @@ -334,7 +353,7 @@ - + :/icons/white/add.png:/icons/white/add.png @@ -343,7 +362,46 @@ - + + + Qt::Vertical + + + + 20 + 40 + + + + + + + + + 70 + 70 + + + + + 70 + 70 + + + + + + + + :/icons/white/use.png:/icons/white/use.png + + + true + + + + + Qt::Vertical @@ -379,7 +437,7 @@ - + :/icons/white/select_all.png:/icons/white/select_all.png @@ -393,7 +451,7 @@ - + diff --git a/src/ui/settingsform.ui b/src/ui/settingsform.ui index d71c152..6147ec0 100644 --- a/src/ui/settingsform.ui +++ b/src/ui/settingsform.ui @@ -340,6 +340,11 @@ + Español + + + + Italiano