From f326c7e002af2d1c645a1b1f86271ac85ff0adb0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20T=C5=AFma?= Date: Wed, 18 May 2016 22:25:55 +0200 Subject: [PATCH] Added missing string localization Code cleanup --- lang/gpxsee_cs.ts | 185 ++++++++++++++++++++++++---------------------- src/gui.cpp | 16 ++-- 2 files changed, 103 insertions(+), 98 deletions(-) diff --git a/lang/gpxsee_cs.ts b/lang/gpxsee_cs.ts index 2c70cd79..ab38b7d4 100644 --- a/lang/gpxsee_cs.ts +++ b/lang/gpxsee_cs.ts @@ -59,380 +59,385 @@ GUI - + GPXSee is distributed under the terms of the GNU General Public License version 3. For more info about GPXSee visit the project homepage at Program GPXSee je distribuován pod podmínkami licence GNU General Public License verze 3. Pro více informací navštivte stránky programu na adrese - + Open file Otevřít soubor - + Open POI file Otevřít POI soubor - + Open Otevřít - + Quit Ukončit - - - + + + Keyboard controls Ovládací klávesy - + Close Zavřít - + Reload Znovu načíst - + Show Zobrazit - - + + File Soubor - - - + + + Data sources Zdroje dat - + Print Tisknout - + Export Exportovat - + Export as Exportovat jako - + Load POI file Nahrát POI soubor - + Close POI files Zavřit POI soubory - + Show POIs Zobrazit POI - + Show map Zobrazit mapu - + Clear tile cache Vymazat mezipaměť dlaždic - - - + + + Next map Následující mapa - + Show graphs Zobrazovat grafy - + Show toolbars Zobrazovat nástrojové lišty - + Metric Metrické - + Imperial Imperiální - + Fullscreen mode Celoobrazovkový režim - + Next Následující - + Previous Předchozí - + Last Poslední - + First První - + Map Mapa - + POI POI - + POI files POI soubory - + Settings Nastavení - + Units Jednotky - + Help Nápověda - + Previous map Předchozí mapa - + + Export to PDF + Exportovat do PDF + + + No GPX files loaded Nejsou načteny žádné GPX soubory - + Elevation Výška - + Speed Rychlost - + Heart rate Tep - + Next file Následující soubor - + Version Verze - + Previous file Předchozí soubor - + First file První soubor - + Last file Poslední soubor - + Append modifier Modifikátor nahradit/přidat - + Map (tiles) source URLs are read on program startup from the following file: URL mapových zdrojů (dlaždic) jsou načteny při startu programu z následujícího souboru: - + The file format is one map entry per line, consisting of the map name and tiles URL delimited by a TAB character. The tile X and Y coordinates are replaced with $x and $y in the URL and the zoom level is replaced with $z. An example map file could look like: Formát souboru je jeden mapový záznam na řádku, kde mapový záznam sestává ze jména mapy a URL dlaždic navzájem oddělených tabulátorem. Souřadnice dlaždice jsou v URL nahrazeny řetězci $x a $y, úroven přiblížení (zoom) pak řetězcem $z. Příklad: - + To make GPXSee load a POI file automatically on startup, add the file to the following directory: POI soubory, které se mají automaticky nahrát při startu programu jsou načítány z následujícího adresáře: - + GPX files (*.gpx);;All files (*) soubory GPX (*.gpx);;všechny soubory (*) - - + + Line: %1 Řádka: %1 - + GPX files (*.gpx);;CSV files (*.csv);;All files (*) soubory GPX (*.gpx);;soubory CSV (*.csv);;všechny soubory (*) - - + + mi mi + - - + ft ft - - + + Maximum Maximum - - + + Minimum Minimum - - + + About GPXSee O aplikaci GPXSee - + Navigation Navigace - + Map sources Mapové zdroje - + POIs POI body - - + + Distance Vzdálenost - - + + Time Čas - - + + Ascent Stoupání + - - + m m - - + + Descent Klesání - + %1 tracks Počet tras: %1 - - + + km km - - + + Error Chyba - + Error loading GPX file: %1 Soubor GPX nelze otevřít: %1 - + Error loading POI file: %1 Soubor POI nelze otevřít: diff --git a/src/gui.cpp b/src/gui.cpp index 4af2d600..c860a8d7 100644 --- a/src/gui.cpp +++ b/src/gui.cpp @@ -58,13 +58,6 @@ GUI::GUI(QWidget *parent) : QMainWindow(parent) createTrackGraphs(); createStatusBar(); - connect(_elevationGraph, SIGNAL(sliderPositionChanged(qreal)), this, - SLOT(sliderPositionChanged(qreal))); - connect(_speedGraph, SIGNAL(sliderPositionChanged(qreal)), this, - SLOT(sliderPositionChanged(qreal))); - connect(_heartRateGraph, SIGNAL(sliderPositionChanged(qreal)), this, - SLOT(sliderPositionChanged(qreal))); - _browser = new FileBrowser(this); _browser->setFilter(QStringList("*.gpx")); @@ -424,6 +417,13 @@ void GUI::createTrackGraphs() _tabs.append(GraphTab(_elevationGraph, tr("Elevation"))); _tabs.append(GraphTab(_speedGraph, tr("Speed"))); _tabs.append(GraphTab(_heartRateGraph, tr("Heart rate"))); + + connect(_elevationGraph, SIGNAL(sliderPositionChanged(qreal)), this, + SLOT(sliderPositionChanged(qreal))); + connect(_speedGraph, SIGNAL(sliderPositionChanged(qreal)), this, + SLOT(sliderPositionChanged(qreal))); + connect(_heartRateGraph, SIGNAL(sliderPositionChanged(qreal)), this, + SLOT(sliderPositionChanged(qreal))); } void GUI::createStatusBar() @@ -643,7 +643,7 @@ void GUI::printFile() void GUI::exportAs() { - QString fileName = QFileDialog::getSaveFileName(this, "Export to PDF", + QString fileName = QFileDialog::getSaveFileName(this, tr("Export to PDF"), QString(), "*.pdf"); if (!fileName.isEmpty()) {