diff --git a/lang/gpxsee_cs.ts b/lang/gpxsee_cs.ts
index 38f20596..84b176c0 100644
--- a/lang/gpxsee_cs.ts
+++ b/lang/gpxsee_cs.ts
@@ -204,11 +204,6 @@
Otevřít POI soubor
-
-
-
- Otevřít
-
@@ -264,11 +259,6 @@
Zdroje dat
-
-
-
- Nahrát POI soubor
-
@@ -294,17 +284,26 @@
Zobrazit mapu
-
-
-
-
- Nahrát mapu
-
Vymazat mezipaměť dlaždic
+
+
+
+ Otevřít...
+
+
+
+
+ Nahrát POI soubor...
+
+
+
+
+ Nahrát mapu...
+
@@ -493,6 +492,11 @@
Offline mapy jsou načítány při startu aplikace z následujícího adresáře:
+
+
+
+ Otevřít mapový soubor
+
diff --git a/lang/gpxsee_de.ts b/lang/gpxsee_de.ts
index 779a41cb..473dc108 100644
--- a/lang/gpxsee_de.ts
+++ b/lang/gpxsee_de.ts
@@ -204,11 +204,6 @@
POI Datei öffnen
-
-
-
- Öffnen
-
@@ -264,11 +259,6 @@
Datenquellen
-
-
-
- POI-Datei laden
-
@@ -294,17 +284,26 @@
Karte anzeigen
-
-
-
-
- Karte laden
-
Tile-Cache bereinigen
+
+
+
+ Öffnen...
+
+
+
+
+ POI-Datei laden...
+
+
+
+
+ Karte laden...
+
@@ -498,6 +497,11 @@
Offlinekarten werden zu Programmstart aus dem folgenden Verzeichnis geladen:
+
+
+
+ Karte Datei öffnen
+
diff --git a/lang/gpxsee_sv.ts b/lang/gpxsee_sv.ts
index d43f3350..a17a25c8 100644
--- a/lang/gpxsee_sv.ts
+++ b/lang/gpxsee_sv.ts
@@ -204,11 +204,6 @@
Öppna POI-fil
-
-
-
- Öppna
-
@@ -264,11 +259,6 @@
Datakällor
-
-
-
- Läs in POI-fil
-
@@ -294,17 +284,26 @@
Visa karta
-
-
-
-
-
-
Rensa kart-cache
+
+
+
+ Öppna...
+
+
+
+
+ Läs in POI-fil...
+
+
+
+
+
+
@@ -498,6 +497,11 @@
Offline-kartor läses in från följande mapp vid programstart:
+
+
+
+
+
diff --git a/src/gui.cpp b/src/gui.cpp
index f0b91e1a..776eb926 100644
--- a/src/gui.cpp
+++ b/src/gui.cpp
@@ -308,7 +308,7 @@ void GUI::createActions()
// File actions
_openFileAction = new QAction(QIcon(QPixmap(OPEN_FILE_ICON)),
- tr("Open"), this);
+ tr("Open..."), this);
_openFileAction->setShortcut(OPEN_SHORTCUT);
connect(_openFileAction, SIGNAL(triggered()), this, SLOT(openFile()));
addAction(_openFileAction);
@@ -338,7 +338,7 @@ void GUI::createActions()
// POI actions
_openPOIAction = new QAction(QIcon(QPixmap(OPEN_FILE_ICON)),
- tr("Load POI file"), this);
+ tr("Load POI file..."), this);
connect(_openPOIAction, SIGNAL(triggered()), this, SLOT(openPOIFile()));
_closePOIAction = new QAction(QIcon(QPixmap(CLOSE_FILE_ICON)),
tr("Close POI files"), this);
@@ -368,8 +368,8 @@ void GUI::createActions()
connect(_showMapAction, SIGNAL(triggered(bool)), _pathView,
SLOT(showMap(bool)));
addAction(_showMapAction);
- _loadMapAction = new QAction(QIcon(QPixmap(OPEN_FILE_ICON)), tr("Load map"),
- this);
+ _loadMapAction = new QAction(QIcon(QPixmap(OPEN_FILE_ICON)),
+ tr("Load map..."), this);
connect(_loadMapAction, SIGNAL(triggered()), this, SLOT(loadMap()));
_clearMapCacheAction = new QAction(tr("Clear tile cache"), this);
connect(_clearMapCacheAction, SIGNAL(triggered()), this,
@@ -1165,7 +1165,7 @@ void GUI::showGraphGrids(bool show)
void GUI::loadMap()
{
- QString fileName = QFileDialog::getOpenFileName(this, tr("Load map"),
+ QString fileName = QFileDialog::getOpenFileName(this, tr("Open map file"),
QString(), tr("Map files (*.map *.tba *.tar)"));
if (fileName.isEmpty())