]> git.itanic.dy.fi Git - maemo-mapper/commitdiff
Made changes in preparation for release of Maemo Mapper v1.4.
authorgnuite <gnuite@gmail.com>
Tue, 13 Feb 2007 04:41:48 +0000 (04:41 +0000)
committergnuite <gnuite@gmail.com>
Tue, 13 Feb 2007 04:41:48 +0000 (04:41 +0000)
git-svn-id: svn+ssh://garage/var/lib/gforge/svnroot/maemo-mapper/trunk@80 6c538b50-5814-0410-93ad-8bdf4c0149d1

configure.ac
debian/changelog
debian/control
dpkg-build.sh [new file with mode: 0755]
po/bg_BG.po
po/en_US.po
po/it_IT.po
po/nl_NL.po

index c9056d66dc4759bf2ae77d78631dfda208dcd025..de07dfd3270451731c250c0301c83bd96625fe5a 100644 (file)
@@ -19,7 +19,7 @@
 #
 
 AC_INIT(Makefile.am)
-AM_INIT_AUTOMAKE(maemo-mapper, 1.3.5)
+AM_INIT_AUTOMAKE(maemo-mapper, 1.4)
 
 AC_PROG_CPP
 AC_CONFIG_HEADERS(src/config.h)
@@ -54,7 +54,7 @@ PKG_CHECK_MODULES(LIBCURL, libcurl)
 AC_SUBST(LIBCURL_LIBS)
 AC_SUBST(LIBCURL_CFLAGS)
 
-PKG_CHECK_MODULES(SQLITE, sqlite)
+PKG_CHECK_MODULES(SQLITE, sqlite3)
 AC_SUBST(SQLITE_LIBS)
 AC_SUBST(SQLITE_CFLAGS)
 
index a6f4d84fa595ca65a61ffb21d1d99a0fb9ff46b5..1a9d30ce049d4357fa62b09414e0c8a82fa01562 100644 (file)
@@ -1,3 +1,15 @@
+maemo-mapper (1.4) unstable; urgency=low
+
+  * First build from the new maemo3 SDK.  Although the code is the same, there
+    are different builds depending on the target (770 or N800).  "-1" is a
+    generic build with no arm-model-specific optimizations.  "-2" is optimized
+    for 770 (arm926ej-s).  "-3" is optimized for N800 (arm1136jf-s).
+  * Changed from sqlite0 to sqlite3.
+  * Added ability to download repository information from the web.
+  * Changed track data to use GPS timestamps instead of Nokia's slow clock.
+
+ -- John Costigan <gnuite@gmail.com>  Mon, 12 Feb 2007 23:35:00 -0500
+
 maemo-mapper (1.3.5) unstable; urgency=low
 
   * Fixed "Bad Repository" detection and notification.
index 729f24b7bfabdd2629fae8ec74e923e3191d3555..1217bc785de351c19b8bb76cd68004e08301dadd 100644 (file)
@@ -2,7 +2,7 @@ Source: maemo-mapper
 Section: maemo/Applications
 Priority: optional
 Maintainer: John Costigan <gnuite@gmail.com>
-Build-Depends: debhelper (>= 4.0.0), intltool, hildon-base-lib-dev, hildon-libs-dev, hildon-fm-dev, libgtk2.0-dev, libosso-gnomevfs2-dev, libglib2.0-dev, libdbus-glib-1-dev, libosso-dev
+Build-Depends: debhelper (>= 4.0.0), intltool, hildon-base-lib-dev, hildon-libs-dev, hildon-fm-dev, libgtk2.0-dev, libosso-gnomevfs2-dev, libglib2.0-dev, libdbus-glib-1-dev, libosso-dev, libsqlite3-dev, osso-ic-dev
 Standards-Version: 3.6.0
 
 Package: maemo-mapper
diff --git a/dpkg-build.sh b/dpkg-build.sh
new file mode 100755 (executable)
index 0000000..e4d5a85
--- /dev/null
@@ -0,0 +1,33 @@
+#!/bin/sh
+#
+# This little script builds an appropriately-versioned .deb file depending
+# on your exact architecture (as defined in CFLAGS).
+# On an N800 (-mcpu=arm1136jf-s), the version is suffixed with "-3".
+# On a 770 (-mcpu=arm926ej-s), the version is suffixed with "-2".
+# In all other cases, the version is suffixed with "-1".
+# 
+
+CHANGELOG=`dirname $0`/debian/changelog
+
+case $CFLAGS in
+    *-mcpu=arm1136jf-s*)
+    VERSION_SUFFIX=-3
+    DBP_EXTRA=-B
+    ;;
+    *-mcpu=arm926ej-s*)
+    VERSION_SUFFIX=-2
+    DBP_EXTRA=-B
+    ;;
+    *)
+    VERSION_SUFFIX=-1
+    DBP_EXTRA=
+esac
+
+head -n 1 $CHANGELOG | sed "s/)/$VERSION_SUFFIX)/" > $CHANGELOG.new
+awk 'NR>1 {print}' $CHANGELOG >> $CHANGELOG.new
+mv $CHANGELOG $CHANGELOG.old
+mv $CHANGELOG.new $CHANGELOG
+
+dpkg-buildpackage -rfakeroot -I.svn $DBP_EXTRA
+
+mv $CHANGELOG.old $CHANGELOG
index d85cdf768fd44c099592892851be898fbba19886..1b4ddbd8378d3a1d6f27ade905af17f90a8e9669 100644 (file)
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: maemo-mapper 1.2.4\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-01-28 23:17-0500\n"
+"POT-Creation-Date: 2007-02-12 23:36-0500\n"
 "PO-Revision-Date: 2006-10-28 22:19-0400\n"
 "Last-Translator: David Davidov <dave@del.bg>\n"
 "Language-Team: John Costigan <gnuite@gmail.com>\n"
@@ -19,31 +19,39 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: po/../src/maemo-mapper.c:11246
+#: ../src/maemo-mapper.c:11435
 msgid "Add"
 msgstr "Добави"
 
-#: po/../src/maemo-mapper.c:10980
+#: ../src/maemo-mapper.c:11179
 msgid "Add Category"
 msgstr "Добави категория"
 
-#: po/../src/maemo-mapper.c:5899 po/../src/maemo-mapper.c:11657
+#: ../src/maemo-mapper.c:6007 ../src/maemo-mapper.c:11843
 msgid "Add POI"
 msgstr "Добави POI"
 
-#: po/../src/maemo-mapper.c:4686
+#: ../src/maemo-mapper.c:4783
 msgid "Advance Notice"
 msgstr "Придвижване инфо"
 
-#: po/../src/maemo-mapper.c:10173
+#: ../src/maemo-mapper.c:10378
 msgid "Along Route - Radius (tiles):"
 msgstr "Около маршрут - Радиус (блокчета):"
 
-#: po/../src/maemo-mapper.c:2827
+#: ../src/maemo-mapper.c:2849
 msgid "Altitude"
 msgstr "Височина"
 
-#: po/../src/maemo-mapper.c:7820
+#: ../src/maemo-mapper.c:9780
+msgid ""
+"An error occurred while retrieving the repositories.  The web service may be "
+"temporarily down."
+msgstr ""
+"An error occurred while retrieving the repositories.  The web service may be "
+"temporarily down."
+
+#: ../src/maemo-mapper.c:7942
 msgid ""
 "An error occurred while trying to reset the bluetooth radio.\n"
 "\n"
@@ -55,245 +63,245 @@ msgstr ""
 "Променихте ли файла\n"
 "/etc/sudoers?"
 
-#: po/../src/maemo-mapper.c:4682
+#: ../src/maemo-mapper.c:4779
 msgid "Announce"
 msgstr "Анонси"
 
-#: po/../src/maemo-mapper.c:10209
+#: ../src/maemo-mapper.c:10414
 msgid "Area"
 msgstr "Зона"
 
-#: po/../src/maemo-mapper.c:4651 po/../src/maemo-mapper.c:5763
+#: ../src/maemo-mapper.c:4748 ../src/maemo-mapper.c:5871
 msgid "Auto-Center"
 msgstr "Авто-Центр."
 
-#: po/../src/maemo-mapper.c:9336
+#: ../src/maemo-mapper.c:9456
 msgid "Auto-Center Mode: Lat/Lon"
 msgstr "Авто-Центриране: Дълж/Шир"
 
-#: po/../src/maemo-mapper.c:9321
+#: ../src/maemo-mapper.c:9441
 msgid "Auto-Center Mode: Lead"
 msgstr "Авто-Центриране: Изпреварващо"
 
-#: po/../src/maemo-mapper.c:9350
+#: ../src/maemo-mapper.c:9470
 msgid "Auto-Center Off"
 msgstr "Авто-Центриране Изкл."
 
-#: po/../src/maemo-mapper.c:5728
+#: ../src/maemo-mapper.c:5836
 msgid "Auto-Download"
 msgstr "Авто-Изтегляне"
 
-#: po/../src/maemo-mapper.c:8874
+#: ../src/maemo-mapper.c:8994
 msgid "Auto-Update"
 msgstr "Авто-Обновяване"
 
-#: po/../src/maemo-mapper.c:7395
+#: ../src/maemo-mapper.c:7517
 #, fuzzy
 msgid "Bottom-Left"
 msgstr "Долу/Дясно"
 
-#: po/../src/maemo-mapper.c:7394 po/../src/maemo-mapper.c:10272
+#: ../src/maemo-mapper.c:7516 ../src/maemo-mapper.c:10477
 msgid "Bottom-Right"
 msgstr "Долу/Дясно"
 
-#: po/../src/maemo-mapper.c:4869 po/../src/maemo-mapper.c:9538
+#: ../src/maemo-mapper.c:4966 ../src/maemo-mapper.c:9657
 msgid "Browse..."
 msgstr "Избор..."
 
-#: po/../src/maemo-mapper.c:10164
+#: ../src/maemo-mapper.c:10369
 msgid "By Area (see tab)"
 msgstr "Зона (виж таб)"
 
-#: po/../src/maemo-mapper.c:9528
+#: ../src/maemo-mapper.c:9647
 msgid "Cache Dir."
 msgstr "Кеш Директория"
 
-#: po/../src/maemo-mapper.c:9474
+#: ../src/maemo-mapper.c:9593
 msgid ""
 "Cannot delete the last repository - there must be at lease one repository."
 msgstr "Не мога да изтрия последното хранилище - трябва да остане поне едно."
 
-#: po/../src/maemo-mapper.c:10435
+#: ../src/maemo-mapper.c:10640
 msgid ""
 "Cannot enable GPS until a GPS Receiver MAC is set in the Settings dialog box."
 msgstr ""
 "Не мога да разреша GPS докато не е посочен MAC адреса на приемника в "
 "Настрийки."
 
-#: po/../src/maemo-mapper.c:11446
+#: ../src/maemo-mapper.c:11665
 msgid "Category"
 msgstr "Категория"
 
-#: po/../src/maemo-mapper.c:11237
+#: ../src/maemo-mapper.c:11426
 msgid "Category List"
 msgstr "Списък категории"
 
-#: po/../src/maemo-mapper.c:11686
+#: ../src/maemo-mapper.c:11872
 msgid "Category: "
 msgstr "Категория: "
 
-#: po/../src/maemo-mapper.c:5702 po/../src/maemo-mapper.c:5716
-#: po/../src/maemo-mapper.c:10117
+#: ../src/maemo-mapper.c:5810 ../src/maemo-mapper.c:5824
+#: ../src/maemo-mapper.c:10322
 msgid "Clear"
 msgstr "Изчистване"
 
-#: po/../src/maemo-mapper.c:5814
+#: ../src/maemo-mapper.c:5922
 msgid "Close"
 msgstr "Затваряне"
 
-#: po/../src/maemo-mapper.c:4425
+#: ../src/maemo-mapper.c:4522
 msgid "Colors"
 msgstr "Цветове"
 
-#: po/../src/maemo-mapper.c:4610
+#: ../src/maemo-mapper.c:4707
 msgid "Colors..."
 msgstr "Цветове..."
 
-#: po/../src/maemo-mapper.c:9878 po/../src/maemo-mapper.c:9971
+#: ../src/maemo-mapper.c:10082 ../src/maemo-mapper.c:10175
 msgid "Confirm DELETION of"
 msgstr "Потвърдете ИЗТРИВАНЕ на"
 
-#: po/../src/maemo-mapper.c:9481
+#: ../src/maemo-mapper.c:9600
 msgid "Confirm delete of repository"
 msgstr "Потвърдете изтриване хранилище"
 
-#: po/../src/maemo-mapper.c:10846
+#: ../src/maemo-mapper.c:11051
 msgid "Confirm delete of waypoint"
 msgstr "Потвърдете изтриване на точка по пътя"
 
-#: po/../src/maemo-mapper.c:9884 po/../src/maemo-mapper.c:9977
+#: ../src/maemo-mapper.c:10088 ../src/maemo-mapper.c:10181
 msgid "Confirm download of"
 msgstr "Потвърдете изтегляне на"
 
-#: po/../src/maemo-mapper.c:5918
+#: ../src/maemo-mapper.c:6026
 msgid "Copy Description to Clipboard"
 msgstr "Копира Описание в Клипборд"
 
-#: po/../src/maemo-mapper.c:5891 po/../src/maemo-mapper.c:5916
+#: ../src/maemo-mapper.c:5999 ../src/maemo-mapper.c:6024
 msgid "Copy Lat/Lon to Clipboard"
 msgstr "Копира Шир/Дълж в Клипборд"
 
-#: po/../src/maemo-mapper.c:8977
+#: ../src/maemo-mapper.c:9097
 msgid ""
 "Could not generate directions. Make sure your source and destination are "
 "valid."
 msgstr ""
 "Не мога да генерирам инструкции. Моля проверета адресите на крайните точки."
 
-#: po/../src/maemo-mapper.c:2242
+#: ../src/maemo-mapper.c:2260
 msgid "DGPS"
 msgstr "DGPS"
 
-#: po/../src/maemo-mapper.c:4431
+#: ../src/maemo-mapper.c:4528
 msgid "Defaults"
 msgstr "Възстановяване"
 
-#: po/../src/maemo-mapper.c:4797
+#: ../src/maemo-mapper.c:4894
 msgid "Degrees Format"
 msgstr "Degrees Format"
 
-#: po/../src/maemo-mapper.c:5925 po/../src/maemo-mapper.c:10961
-#: po/../src/maemo-mapper.c:11627
+#: ../src/maemo-mapper.c:6033 ../src/maemo-mapper.c:11160
+#: ../src/maemo-mapper.c:11815
 msgid "Delete"
 msgstr "Изтриване"
 
-#: po/../src/maemo-mapper.c:10154
+#: ../src/maemo-mapper.c:10359
 msgid "Delete Maps"
 msgstr "Изтриване Карти"
 
-#: po/../src/maemo-mapper.c:11334
+#: ../src/maemo-mapper.c:11523
 msgid "Delete POI?"
 msgstr "Изтриване POI?"
 
-#: po/../src/maemo-mapper.c:10876
+#: ../src/maemo-mapper.c:11081
 msgid "Delete category?"
 msgstr "Изтриване категория?"
 
-#: po/../src/maemo-mapper.c:9663
+#: ../src/maemo-mapper.c:9856
 msgid "Delete..."
 msgstr "Изтриване..."
 
-#: po/../src/maemo-mapper.c:11292
+#: ../src/maemo-mapper.c:11481
 msgid "Desc."
 msgstr "Опис."
 
-#: po/../src/maemo-mapper.c:10999 po/../src/maemo-mapper.c:11699
+#: ../src/maemo-mapper.c:11198 ../src/maemo-mapper.c:11898
 msgid "Desc.: "
 msgstr "Опис.: "
 
-#: po/../src/maemo-mapper.c:4287
+#: ../src/maemo-mapper.c:4384
 msgid "Description"
 msgstr "Описание"
 
-#: po/../src/maemo-mapper.c:8891
+#: ../src/maemo-mapper.c:9011
 msgid "Destination"
 msgstr "Край"
 
-#: po/../src/maemo-mapper.c:5797
+#: ../src/maemo-mapper.c:5905
 msgid "Details..."
 msgstr "Подробности..."
 
-#: po/../src/maemo-mapper.c:10618
+#: ../src/maemo-mapper.c:10823
 msgid "Distance to Location"
 msgstr "Разстояние до Локация"
 
-#: po/../src/maemo-mapper.c:10816
+#: ../src/maemo-mapper.c:11021
 msgid "Distance to Waypoint"
 msgstr "Разстояние до точка по пътя"
 
-#: po/../src/maemo-mapper.c:10141
+#: ../src/maemo-mapper.c:10346
 msgid "Download Maps"
 msgstr "Изтегляне Карти"
 
-#: po/../src/maemo-mapper.c:8838
+#: ../src/maemo-mapper.c:8958
 msgid "Download Route"
 msgstr "Изтегляне Маршрут"
 
-#: po/../src/maemo-mapper.c:5894 po/../src/maemo-mapper.c:5921
+#: ../src/maemo-mapper.c:6002 ../src/maemo-mapper.c:6029
 msgid "Download Route to..."
 msgstr "Изтегляне на маршрут в..."
 
-#: po/../src/maemo-mapper.c:9543
+#: ../src/maemo-mapper.c:9662
 msgid "Download Zoom Steps"
 msgstr "Изтегляне Мащаб Стъпки"
 
-#: po/../src/maemo-mapper.c:5696
+#: ../src/maemo-mapper.c:5804 ../src/maemo-mapper.c:9837
 msgid "Download..."
 msgstr "Изтегляне..."
 
-#: po/../src/maemo-mapper.c:6306
+#: ../src/maemo-mapper.c:6422
 msgid "Downloading maps"
 msgstr "Изтегляне карти"
 
-#: po/../src/maemo-mapper.c:11243
+#: ../src/maemo-mapper.c:11432
 msgid "Edit"
 msgstr "Редакт."
 
-#: po/../src/maemo-mapper.c:11695
+#: ../src/maemo-mapper.c:11894
 msgid "Edit Categories..."
 msgstr "Редакт. категории..."
 
-#: po/../src/maemo-mapper.c:10955
+#: ../src/maemo-mapper.c:11154
 msgid "Edit Category"
 msgstr "Редакт. категория"
 
-#: po/../src/maemo-mapper.c:5902 po/../src/maemo-mapper.c:11621
+#: ../src/maemo-mapper.c:6010 ../src/maemo-mapper.c:11809
 msgid "Edit POI"
 msgstr "Редакт. POI"
 
-#: po/../src/maemo-mapper.c:5789
+#: ../src/maemo-mapper.c:5897
 msgid "Enable GPS"
 msgstr "Използвай GPS"
 
-#: po/../src/maemo-mapper.c:4698
+#: ../src/maemo-mapper.c:4795
 msgid "Enable Voice Synthesis (requires flite)"
 msgstr "Разреши гласов синтез (изисква flite)"
 
-#: po/../src/maemo-mapper.c:11024 po/../src/maemo-mapper.c:11280
+#: ../src/maemo-mapper.c:11223 ../src/maemo-mapper.c:11469
 msgid "Enabled"
 msgstr "Разреши"
 
-#: po/../src/maemo-mapper.c:6569
+#: ../src/maemo-mapper.c:6684
 msgid ""
 "Error in download.  Check internet connection and/or Map Repository URL "
 "Format."
@@ -301,227 +309,234 @@ msgstr ""
 "Error in download.  Check internet connection and/or Map Repository URL "
 "Format."
 
-#: po/../src/maemo-mapper.c:7571 po/../src/maemo-mapper.c:9031
-#: po/../src/maemo-mapper.c:9074 po/../src/maemo-mapper.c:9129
+#: ../src/maemo-mapper.c:7693 ../src/maemo-mapper.c:9151
+#: ../src/maemo-mapper.c:9194 ../src/maemo-mapper.c:9249
 msgid "Error parsing GPX file."
 msgstr "Грешка при разчитане (parsing) GPX файл."
 
-#: po/../src/maemo-mapper.c:1330
+#: ../src/maemo-mapper.c:1346
 msgid "Error while writing to file"
 msgstr "Грешка при запис във файл"
 
-#: po/../src/maemo-mapper.c:9151 po/../src/maemo-mapper.c:9216
+#: ../src/maemo-mapper.c:9271 ../src/maemo-mapper.c:9336
 msgid "Error writing GPX file."
 msgstr "Грешка при запис на GPX файл."
 
-#: po/../src/maemo-mapper.c:4759
+#: ../src/maemo-mapper.c:4856
 msgid "Escape Key"
 msgstr "Escape Key"
 
-#: po/../src/maemo-mapper.c:3064
+#: ../src/maemo-mapper.c:3156
 msgid "Establishing GPS fix"
 msgstr "Установяване GPS фикс"
 
-#: po/../src/maemo-mapper.c:2246
+#: ../src/maemo-mapper.c:2264
 msgid "Estimated"
 msgstr "Estimated"
 
-#: po/../src/maemo-mapper.c:8965
+#: ../src/maemo-mapper.c:9085
 msgid "Failed to connect to GPX Directions server"
 msgstr "Неуспешно свързване с  GPX сървър за инструкции"
 
-#: po/../src/maemo-mapper.c:5132
+#: ../src/maemo-mapper.c:5253
 msgid "Failed to initialize GConf.  Quitting."
 msgstr "Неуспешна инициализация на GConf.  Прекъсвам."
 
-#: po/../src/maemo-mapper.c:3810
+#: ../src/maemo-mapper.c:3907
 msgid "Failed to initialize GConf.  Settings were not saved."
 msgstr "Неуспешна инициализация на GConf.  Запазих настройките."
 
-#: po/../src/maemo-mapper.c:7123 po/../src/maemo-mapper.c:7559
+#: ../src/maemo-mapper.c:7241 ../src/maemo-mapper.c:7681
 msgid "Failed to open file for"
 msgstr "Неуспех при отваряне за"
 
-#: po/../src/maemo-mapper.c:6780
+#: ../src/maemo-mapper.c:6898
 #, fuzzy
 msgid "Failed to open file for writing"
 msgstr "Неуспех при отваряне за"
 
-#: po/../src/maemo-mapper.c:3009
+#: ../src/maemo-mapper.c:3037
 msgid "Failed to open or create database"
 msgstr "Неуспешно отваряне/създаване на база данни"
 
-#: po/../src/maemo-mapper.c:1331
+#: ../src/maemo-mapper.c:1347
 msgid "File is incomplete."
 msgstr "Незавършен файл."
 
-#: po/../src/maemo-mapper.c:2872
+#: ../src/maemo-mapper.c:2894
 msgid "Fix"
 msgstr "Фикс"
 
-#: po/../src/maemo-mapper.c:2881
+#: ../src/maemo-mapper.c:2903
 msgid "Fix Quality"
 msgstr "Фикс качество"
 
-#: po/../src/maemo-mapper.c:2245
+#: ../src/maemo-mapper.c:2263
 msgid "Float RTK"
 msgstr "Float RTK"
 
-#: po/../src/maemo-mapper.c:5740
+#: ../src/maemo-mapper.c:5848
 msgid "Full Screen"
 msgstr "Пълноекранно"
 
-#: po/../src/maemo-mapper.c:4621 po/../src/maemo-mapper.c:5785
+#: ../src/maemo-mapper.c:4718 ../src/maemo-mapper.c:5893
 msgid "GPS"
 msgstr "GPS"
 
-#: po/../src/maemo-mapper.c:2775
+#: ../src/maemo-mapper.c:2797
 msgid "GPS Details"
 msgstr "GPS подробности"
 
-#: po/../src/maemo-mapper.c:2788
+#: ../src/maemo-mapper.c:2810
 msgid "GPS Information"
 msgstr "GPS Информация"
 
-#: po/../src/maemo-mapper.c:10223
+#: ../src/maemo-mapper.c:10428
 msgid "GPS Location"
 msgstr "GPS позиция"
 
-#: po/../src/maemo-mapper.c:4443
+#: ../src/maemo-mapper.c:4540
 msgid "GPS Mark"
 msgstr "GPS знак"
 
-#: po/../src/maemo-mapper.c:2836
+#: ../src/maemo-mapper.c:2858
 msgid "Heading"
 msgstr "Посока"
 
-#: po/../src/maemo-mapper.c:5811
+#: ../src/maemo-mapper.c:5919
 msgid "Help"
 msgstr "Помощ"
 
-#: po/../src/maemo-mapper.c:4842
+#: ../src/maemo-mapper.c:4939
 #, fuzzy
 msgid "Information Font Size"
 msgstr "GPS Информация"
 
-#: po/../src/maemo-mapper.c:5714
+#: ../src/maemo-mapper.c:5822
 msgid "Insert Breakpoint"
 msgstr "Вмъкване прекъсване"
 
-#: po/../src/maemo-mapper.c:10379
+#: ../src/maemo-mapper.c:10584
 msgid "Invalid Bottom-Right Latitude"
 msgstr "Невалидна ширина долу/дясно"
 
-#: po/../src/maemo-mapper.c:10386
+#: ../src/maemo-mapper.c:10591
 msgid "Invalid Bottom-Right Longitude"
 msgstr "Невалидна дължина долу/дясно"
 
-#: po/../src/maemo-mapper.c:8318 po/../src/maemo-mapper.c:8329
+#: ../src/maemo-mapper.c:8440 ../src/maemo-mapper.c:8451
 msgid "Invalid NMEA input from receiver!"
 msgstr "Невалидни NMEA данни от приемника!"
 
-#: po/../src/maemo-mapper.c:10365
+#: ../src/maemo-mapper.c:10570
 msgid "Invalid Top-Left Latitude"
 msgstr "Невалидна ширина горе/ляво"
 
-#: po/../src/maemo-mapper.c:10372
+#: ../src/maemo-mapper.c:10577
 msgid "Invalid Top-Left Longitude"
 msgstr "Невалидна дължина горе/ляво"
 
-#: po/../src/maemo-mapper.c:4750
+#: ../src/maemo-mapper.c:4847
 msgid "Keep Display On Only in Fullscreen Mode"
 msgstr "Не спирай дисплей само в пълноекранен режим"
 
-#: po/../src/maemo-mapper.c:11287 po/../src/maemo-mapper.c:11441
+#: ../src/maemo-mapper.c:11476 ../src/maemo-mapper.c:11660
 msgid "Label"
 msgstr "Етикет"
 
-#: po/../src/maemo-mapper.c:10991 po/../src/maemo-mapper.c:11678
+#: ../src/maemo-mapper.c:11190 ../src/maemo-mapper.c:11864
 msgid "Label: "
 msgstr "Етикет: "
 
-#: po/../src/maemo-mapper.c:11668
+#: ../src/maemo-mapper.c:11854
 msgid "Lat, Lon: "
 msgstr "Шир, Дълж: "
 
-#: po/../src/maemo-mapper.c:5767
+#: ../src/maemo-mapper.c:5875
 msgid "Lat/Lon"
 msgstr "Шир/Дълж"
 
-#: po/../src/maemo-mapper.c:2800 po/../src/maemo-mapper.c:10213
-#: po/../src/maemo-mapper.c:10550 po/../src/maemo-mapper.c:10674
-#: po/../src/maemo-mapper.c:11431
+#: ../src/maemo-mapper.c:2822 ../src/maemo-mapper.c:10418
+#: ../src/maemo-mapper.c:10755 ../src/maemo-mapper.c:10879
 msgid "Latitude"
 msgstr "Ширина"
 
-#: po/../src/maemo-mapper.c:5773
+#: ../src/maemo-mapper.c:5881
 msgid "Lead"
 msgstr "Изпреварващо"
 
-#: po/../src/maemo-mapper.c:4668
+#: ../src/maemo-mapper.c:4765
 msgid "Lead Amount"
 msgstr "Изпрев. дължина"
 
-#: po/../src/maemo-mapper.c:4738
+#: ../src/maemo-mapper.c:4835
 msgid "Line Width"
 msgstr "Дебелина"
 
-#: po/../src/maemo-mapper.c:2845
+#: ../src/maemo-mapper.c:2867
 msgid "Local time"
 msgstr "Местно време"
 
-#: po/../src/maemo-mapper.c:4826 po/../src/maemo-mapper.c:5883
+#: ../src/maemo-mapper.c:4923 ../src/maemo-mapper.c:5991
+#: ../src/maemo-mapper.c:11655
 msgid "Location"
 msgstr "Позиция"
 
-#: po/../src/maemo-mapper.c:2809 po/../src/maemo-mapper.c:10217
-#: po/../src/maemo-mapper.c:10551 po/../src/maemo-mapper.c:10675
-#: po/../src/maemo-mapper.c:11436
+#: ../src/maemo-mapper.c:2831 ../src/maemo-mapper.c:10422
+#: ../src/maemo-mapper.c:10756 ../src/maemo-mapper.c:10880
 msgid "Longitude"
 msgstr "Дължина"
 
-#: po/../src/maemo-mapper.c:4282 po/../src/maemo-mapper.c:4625
+#: ../src/maemo-mapper.c:4379 ../src/maemo-mapper.c:4722
 msgid "MAC"
 msgstr "MAC"
 
-#: po/../src/maemo-mapper.c:4604
+#: ../src/maemo-mapper.c:4701
 msgid "Maemo Mapper Settings"
 msgstr "Maemo Mapper Настройки"
 
-#: po/../src/maemo-mapper.c:10111
+#: ../src/maemo-mapper.c:9761
+msgid ""
+"Maemo Mapper will now download and add a list of possibly-duplicate "
+"repositories from the internet.  Continue?"
+msgstr ""
+"Maemo Mapper will now download and add a list of possibly-duplicate "
+"repositories from the internet.  Continue?"
+
+#: ../src/maemo-mapper.c:10315
 msgid "Manage Maps"
 msgstr "Управление Карти"
 
-#: po/../src/maemo-mapper.c:5724
+#: ../src/maemo-mapper.c:5832
 msgid "Manage Maps..."
 msgstr "Управление Карти..."
 
-#: po/../src/maemo-mapper.c:5726
+#: ../src/maemo-mapper.c:5834
 msgid "Manage Repositories..."
 msgstr "Управление Хранилища..."
 
-#: po/../src/maemo-mapper.c:2247
+#: ../src/maemo-mapper.c:2265
 msgid "Manual"
 msgstr "Ръчно"
 
-#: po/../src/maemo-mapper.c:5719
+#: ../src/maemo-mapper.c:5827
 msgid "Maps"
 msgstr "Карти"
 
-#: po/../src/maemo-mapper.c:2890
+#: ../src/maemo-mapper.c:2912
 msgid "Max speed"
 msgstr "Макс. скорост"
 
-#: po/../src/maemo-mapper.c:4734
+#: ../src/maemo-mapper.c:4831
 msgid "Misc."
 msgstr "Други"
 
-#: po/../src/maemo-mapper.c:4774
+#: ../src/maemo-mapper.c:4871
 #, fuzzy
 msgid "Misc. 2"
 msgstr "Други"
 
-#: po/../src/maemo-mapper.c:10334 po/../src/maemo-mapper.c:10468
+#: ../src/maemo-mapper.c:10539 ../src/maemo-mapper.c:10673
 msgid ""
 "NOTE: You must set a Map URI in the Repository Manager in order to download "
 "maps."
@@ -529,27 +544,27 @@ msgstr ""
 "Задайте URI на картов сървър в \"Управление на Хранилища\" за да изтегляте "
 "карти."
 
-#: po/../src/maemo-mapper.c:9434 po/../src/maemo-mapper.c:9613
+#: ../src/maemo-mapper.c:9553 ../src/maemo-mapper.c:9732
 msgid "Name"
 msgstr "Име"
 
-#: po/../src/maemo-mapper.c:9424
+#: ../src/maemo-mapper.c:9543
 msgid "New Name"
 msgstr "Ново Име"
 
-#: po/../src/maemo-mapper.c:9603
+#: ../src/maemo-mapper.c:9722
 msgid "New Repository"
 msgstr "Ново Хранилище"
 
-#: po/../src/maemo-mapper.c:9666
+#: ../src/maemo-mapper.c:9859
 msgid "New..."
 msgstr "Ново ..."
 
-#: po/../src/maemo-mapper.c:7382
+#: ../src/maemo-mapper.c:7504
 msgid "Next Repository"
 msgstr "Следващо Хранилище"
 
-#: po/../src/maemo-mapper.c:4952
+#: ../src/maemo-mapper.c:5049
 msgid ""
 "No GPS Receiver MAC Provided.\n"
 "GPS Disabled."
@@ -557,22 +572,22 @@ msgstr ""
 "Липсва MAC на приемник.\n"
 "Забранявам GPS."
 
-#: po/../src/maemo-mapper.c:9204
+#: ../src/maemo-mapper.c:9324
 msgid "No route is loaded."
 msgstr "Маршрът не е зареден."
 
-#: po/../src/maemo-mapper.c:10681 po/../src/maemo-mapper.c:10704
-#: po/../src/maemo-mapper.c:10734 po/../src/maemo-mapper.c:10756
-#: po/../src/maemo-mapper.c:10790 po/../src/maemo-mapper.c:10823
-#: po/../src/maemo-mapper.c:10860
+#: ../src/maemo-mapper.c:10886 ../src/maemo-mapper.c:10909
+#: ../src/maemo-mapper.c:10939 ../src/maemo-mapper.c:10961
+#: ../src/maemo-mapper.c:10995 ../src/maemo-mapper.c:11028
+#: ../src/maemo-mapper.c:11065
 msgid "No waypoints are visible."
 msgstr "Няма видими точки по пътя."
 
-#: po/../src/maemo-mapper.c:5779
+#: ../src/maemo-mapper.c:5887
 msgid "None"
 msgstr "Не"
 
-#: po/../src/maemo-mapper.c:4641
+#: ../src/maemo-mapper.c:4738
 msgid ""
 "Note: For manual rfcomm, enter a device path\n"
 "(e.g. \"/dev/rfcomm0\")."
@@ -580,382 +595,395 @@ msgstr ""
 "Note: For manual rfcomm, enter a device path\n"
 "(e.g. \"/dev/rfcomm0\")."
 
-#: po/../src/maemo-mapper.c:5694 po/../src/maemo-mapper.c:5710
+#: ../src/maemo-mapper.c:6089
+msgid ""
+"Now you must set up at least one Map Repository.  You can download a sample "
+"set from the internet by using the \"Download...\" button."
+msgstr ""
+"Now you must set up at least one Map Repository.  You can download a sample "
+"set from the internet by using the \"Download...\" button."
+
+#: ../src/maemo-mapper.c:5802 ../src/maemo-mapper.c:5818
 msgid "Open..."
 msgstr "Отваряне..."
 
-#: po/../src/maemo-mapper.c:8880
+#: ../src/maemo-mapper.c:9000
 msgid "Origin"
 msgstr "Начало"
 
-#: po/../src/maemo-mapper.c:10148
+#: ../src/maemo-mapper.c:10353
 msgid "Overwrite"
 msgstr "Подмяна стари"
 
-#: po/../src/maemo-mapper.c:4501 po/../src/maemo-mapper.c:4855
+#: ../src/maemo-mapper.c:4598 ../src/maemo-mapper.c:4952
 msgid "POI"
 msgstr "POI"
 
-#: po/../src/maemo-mapper.c:5758
+#: ../src/maemo-mapper.c:5866
 msgid "POI Categories..."
 msgstr "POI Категории..."
 
-#: po/../src/maemo-mapper.c:4859
+#: ../src/maemo-mapper.c:4956
 msgid "POI database"
 msgstr "POI база данни"
 
-#: po/../src/maemo-mapper.c:2243
+#: ../src/maemo-mapper.c:2261
 msgid "PPS"
 msgstr "PPS"
 
 #  This word refers to Pitch as in of a person's voice.
-#: po/../src/maemo-mapper.c:4723
+#: ../src/maemo-mapper.c:4820
 msgid "Pitch"
 msgstr "Тон"
 
-#: po/../src/maemo-mapper.c:4317
+#: ../src/maemo-mapper.c:4414
 msgid "Please select a bluetooth device from the list."
 msgstr "Моля, изберете bluetooth устройство от списъка."
 
-#: po/../src/maemo-mapper.c:11745
+#: ../src/maemo-mapper.c:11957
+#, fuzzy
+msgid "Please specify a category for the POI."
+msgstr "Моля посочете POI име."
+
+#: ../src/maemo-mapper.c:11946
 msgid "Please specify a name for the POI."
 msgstr "Моля посочете POI име."
 
-#: po/../src/maemo-mapper.c:11050
+#: ../src/maemo-mapper.c:11249
 msgid "Please specify a name for the category."
 msgstr "Моля посочете име за категорията."
 
-#: po/../src/maemo-mapper.c:8927
+#: ../src/maemo-mapper.c:9047
 #, fuzzy
 msgid "Please specify a source URL."
 msgstr "Моля посочете POI име."
 
-#: po/../src/maemo-mapper.c:8939
+#: ../src/maemo-mapper.c:9059
 msgid "Please specify a start location."
 msgstr "Моля задайте стартова точка."
 
-#: po/../src/maemo-mapper.c:8946
+#: ../src/maemo-mapper.c:9066
 msgid "Please specify an end location."
 msgstr "Моля задайте крайна точка."
 
-#: po/../src/maemo-mapper.c:11787
+#: ../src/maemo-mapper.c:12000
 msgid "Problem adding POI"
 msgstr "Проблем при добавяне на POI"
 
-#: po/../src/maemo-mapper.c:11083
+#: ../src/maemo-mapper.c:11286
 msgid "Problem adding category"
 msgstr "Проблем при добавяне категория"
 
-#: po/../src/maemo-mapper.c:10892 po/../src/maemo-mapper.c:11347
+#: ../src/maemo-mapper.c:11096 ../src/maemo-mapper.c:11534
 msgid "Problem deleting POI"
 msgstr "Проблем при изтриване на POI"
 
-#: po/../src/maemo-mapper.c:10901
+#: ../src/maemo-mapper.c:11105
 msgid "Problem deleting category"
 msgstr "Проблем при изтриване категория"
 
-#: po/../src/maemo-mapper.c:11126
+#: ../src/maemo-mapper.c:11327
 msgid "Problem updating Category"
 msgstr "Проблем при обновяване на Категория"
 
-#: po/../src/maemo-mapper.c:11770
+#: ../src/maemo-mapper.c:11977
 msgid "Problem updating POI"
 msgstr "Проблем при обновяване на POI"
 
-#: po/../src/maemo-mapper.c:11070
+#: ../src/maemo-mapper.c:11271
 msgid "Problem updating category"
 msgstr "Проблем при обновяване на категория"
 
-#: po/../src/maemo-mapper.c:2952
+#: ../src/maemo-mapper.c:2978
 msgid "Problem with POI database"
 msgstr "Проблем с POI база данни"
 
-#: po/../src/maemo-mapper.c:2244
+#: ../src/maemo-mapper.c:2262
 msgid "Real Time Kinematic"
 msgstr "Real Time Kinematic"
 
-#: po/../src/maemo-mapper.c:9660
+#: ../src/maemo-mapper.c:9853
 msgid "Rename..."
 msgstr "Преименуване..."
 
-#: po/../src/maemo-mapper.c:9646
+#: ../src/maemo-mapper.c:9830
 msgid "Repositories"
 msgstr "Хранилища"
 
-#: po/../src/maemo-mapper.c:5700
+#: ../src/maemo-mapper.c:5808
 msgid "Reset"
 msgstr "Рестарт"
 
-#: po/../src/maemo-mapper.c:5800 po/../src/maemo-mapper.c:7383
+#: ../src/maemo-mapper.c:5908 ../src/maemo-mapper.c:7505
 msgid "Reset Bluetooth"
 msgstr "Рестарт Bluetooth"
 
-#: po/../src/maemo-mapper.c:4480 po/../src/maemo-mapper.c:5690
-#: po/../src/maemo-mapper.c:5744
+#: ../src/maemo-mapper.c:4577 ../src/maemo-mapper.c:5798
+#: ../src/maemo-mapper.c:5852
 msgid "Route"
 msgstr "Маршрут"
 
-#: po/../src/maemo-mapper.c:9023
+#: ../src/maemo-mapper.c:9143
 msgid "Route Downloaded"
 msgstr "Маршрут изтеглен"
 
-#: po/../src/maemo-mapper.c:7568 po/../src/maemo-mapper.c:9071
+#: ../src/maemo-mapper.c:7690 ../src/maemo-mapper.c:9191
 msgid "Route Opened"
 msgstr "Маршрут отворен"
 
-#: po/../src/maemo-mapper.c:9213
+#: ../src/maemo-mapper.c:9333
 msgid "Route Saved"
 msgstr "Маршрут записан"
 
-#: po/../src/maemo-mapper.c:9278
+#: ../src/maemo-mapper.c:9398
 msgid "Routes are now hidden"
 msgstr "Маршрутите скрити"
 
-#: po/../src/maemo-mapper.c:9272
+#: ../src/maemo-mapper.c:9392
 msgid "Routes are now shown"
 msgstr "Маршрутите показани"
 
-#: po/../src/maemo-mapper.c:2241
+#: ../src/maemo-mapper.c:2259
 msgid "SPS"
 msgstr "SPS"
 
-#: po/../src/maemo-mapper.c:2863
+#: ../src/maemo-mapper.c:2885
 msgid "Sat in use"
 msgstr "Ползва сат."
 
-#: po/../src/maemo-mapper.c:2854
+#: ../src/maemo-mapper.c:2876
 msgid "Sat in view"
 msgstr "Виждими сат."
 
-#: po/../src/maemo-mapper.c:2795
+#: ../src/maemo-mapper.c:2817
 msgid "Satellites details"
 msgstr "Информация Сателити"
 
-#: po/../src/maemo-mapper.c:2720
+#: ../src/maemo-mapper.c:2742
 msgid "Satellites in view"
 msgstr "Видими сателити"
 
-#: po/../src/maemo-mapper.c:5698 po/../src/maemo-mapper.c:5712
+#: ../src/maemo-mapper.c:5806 ../src/maemo-mapper.c:5820
 msgid "Save..."
 msgstr "Записване..."
 
-#: po/../src/maemo-mapper.c:4635
+#: ../src/maemo-mapper.c:4732
 msgid "Scan..."
 msgstr "Скан..."
 
-#: po/../src/maemo-mapper.c:4293
+#: ../src/maemo-mapper.c:4390
 #, fuzzy
 msgid "Scanning for Bluetooth Devices"
 msgstr "Scanning for Bluetooth Devices"
 
-#: po/../src/maemo-mapper.c:3054
+#: ../src/maemo-mapper.c:3146
 msgid "Searching for GPS receiver"
 msgstr "Търси GPS приемник"
 
-#: po/../src/maemo-mapper.c:4257
+#: ../src/maemo-mapper.c:4354
 msgid "Select Bluetooth Device"
 msgstr "Избор Bluetooth устрийство"
 
-#: po/../src/maemo-mapper.c:11374
+#: ../src/maemo-mapper.c:11627
 msgid "Select POI"
 msgstr "Избор POI"
 
-#: po/../src/maemo-mapper.c:11463
+#: ../src/maemo-mapper.c:11690
 msgid "Select one POI from the list."
 msgstr "Избор на една POI от списъка."
 
-#: po/../src/maemo-mapper.c:4655
+#: ../src/maemo-mapper.c:4752
 msgid "Sensitivity"
 msgstr "Чувствителност"
 
-#: po/../src/maemo-mapper.c:5806
+#: ../src/maemo-mapper.c:5914
 msgid "Settings..."
 msgstr "Настройки..."
 
-#: po/../src/maemo-mapper.c:10131
+#: ../src/maemo-mapper.c:10336
 msgid "Setup"
 msgstr "Настройка"
 
-#: po/../src/maemo-mapper.c:5914
+#: ../src/maemo-mapper.c:6022
 msgid "Show Description"
 msgstr "Покажи Описание"
 
-#: po/../src/maemo-mapper.c:5896 po/../src/maemo-mapper.c:5923
+#: ../src/maemo-mapper.c:6004 ../src/maemo-mapper.c:6031
 msgid "Show Distance to"
 msgstr "Покажи разстояние до"
 
-#: po/../src/maemo-mapper.c:5793
+#: ../src/maemo-mapper.c:5901
 msgid "Show Information"
 msgstr "Покажи Информация"
 
-#: po/../src/maemo-mapper.c:5889 po/../src/maemo-mapper.c:5912
+#: ../src/maemo-mapper.c:5997 ../src/maemo-mapper.c:6020
 msgid "Show Lat/Lon"
 msgstr "Покажи Шир/Дълж"
 
-#: po/../src/maemo-mapper.c:4874
+#: ../src/maemo-mapper.c:4971
 msgid "Show POI below zoom"
 msgstr "Показвай POI под мащаб"
 
-#: po/../src/maemo-mapper.c:2248
+#: ../src/maemo-mapper.c:2266
 msgid "Simulation"
 msgstr "Симулация"
 
-#: po/../src/maemo-mapper.c:8856
+#: ../src/maemo-mapper.c:8976
 msgid "Source URL"
 msgstr "Source URL"
 
-#: po/../src/maemo-mapper.c:2818 po/../src/maemo-mapper.c:4711
+#: ../src/maemo-mapper.c:2840 ../src/maemo-mapper.c:4808
 msgid "Speed"
 msgstr "Скорост"
 
-#: po/../src/maemo-mapper.c:4816
+#: ../src/maemo-mapper.c:4913
 #, fuzzy
 msgid "Speed Limit"
 msgstr "Скорост"
 
-#: po/../src/maemo-mapper.c:7384
+#: ../src/maemo-mapper.c:7506
 msgid "Toggle GPS"
 msgstr "Вкл/изкл GPS"
 
-#: po/../src/maemo-mapper.c:7385
+#: ../src/maemo-mapper.c:7507
 msgid "Toggle GPS Info"
 msgstr "Вкл/изкл GPS инфо"
 
-#: po/../src/maemo-mapper.c:7386
+#: ../src/maemo-mapper.c:7508
 msgid "Toggle Speed Limit"
 msgstr "Toggle Speed Limit"
 
-#: po/../src/maemo-mapper.c:7381
+#: ../src/maemo-mapper.c:7503
 msgid "Toggle Tracks"
 msgstr "Вкл/изкл Път"
 
-#: po/../src/maemo-mapper.c:7392 po/../src/maemo-mapper.c:10258
+#: ../src/maemo-mapper.c:7514 ../src/maemo-mapper.c:10463
 msgid "Top-Left"
 msgstr "Горе/Ляво"
 
-#: po/../src/maemo-mapper.c:7393
+#: ../src/maemo-mapper.c:7515
 #, fuzzy
 msgid "Top-Right"
 msgstr "Долу/Дясно"
 
-#: po/../src/maemo-mapper.c:4464 po/../src/maemo-mapper.c:5706
-#: po/../src/maemo-mapper.c:5749
+#: ../src/maemo-mapper.c:4561 ../src/maemo-mapper.c:5814
+#: ../src/maemo-mapper.c:5857
 msgid "Track"
 msgstr "Път"
 
-#: po/../src/maemo-mapper.c:9126
+#: ../src/maemo-mapper.c:9246
 msgid "Track Opened"
 msgstr "Път отворен"
 
-#: po/../src/maemo-mapper.c:9148
+#: ../src/maemo-mapper.c:9268
 msgid "Track Saved"
 msgstr "Път записан"
 
-#: po/../src/maemo-mapper.c:9254
+#: ../src/maemo-mapper.c:9374
 msgid "Tracks are now hidden"
 msgstr "Пътеки скрити"
 
-#: po/../src/maemo-mapper.c:9248
+#: ../src/maemo-mapper.c:9368
 msgid "Tracks are now shown"
 msgstr "Пътеки показани"
 
-#: po/../src/maemo-mapper.c:9519
+#: ../src/maemo-mapper.c:9638
 msgid "URL Format"
 msgstr "URI формат"
 
-#: po/../src/maemo-mapper.c:9760
+#: ../src/maemo-mapper.c:9953
 msgid "Unable to create cache directory for repository"
 msgstr "Unable to create cache directory for repository"
 
-#: po/../src/maemo-mapper.c:4781
+#: ../src/maemo-mapper.c:4878
 msgid "Units"
 msgstr "Единици"
 
-#: po/../src/maemo-mapper.c:8870
+#: ../src/maemo-mapper.c:8990
 msgid "Use GPS Location"
 msgstr "Използвай GPS позиция"
 
-#: po/../src/maemo-mapper.c:5754
+#: ../src/maemo-mapper.c:5862
 msgid "Velocity Vector"
 msgstr "Вектор скорост"
 
-#: po/../src/maemo-mapper.c:5736
+#: ../src/maemo-mapper.c:5844
 msgid "View"
 msgstr "Изглед"
 
-#: po/../src/maemo-mapper.c:10239
+#: ../src/maemo-mapper.c:10444
 msgid "View Center"
 msgstr "Видим център"
 
-#: po/../src/maemo-mapper.c:9559
+#: ../src/maemo-mapper.c:9678
 msgid "View Zoom Steps"
 msgstr "Преглед Мащаб Стъпки"
 
-#: po/../src/maemo-mapper.c:10878
+#: ../src/maemo-mapper.c:11083
 msgid "WARNING: All POIs in that category will also be deleted!"
 msgstr "ВНИМАНИЕ: Всияки POI в Категорията ще бъдат изтрити!"
 
-#: po/../src/maemo-mapper.c:5907
+#: ../src/maemo-mapper.c:6015
 msgid "Waypoint"
 msgstr "Точки по пътя"
 
-#: po/../src/maemo-mapper.c:10187
+#: ../src/maemo-mapper.c:10392
 msgid "Zoom"
 msgstr "Мащаб"
 
-#: po/../src/maemo-mapper.c:10193
+#: ../src/maemo-mapper.c:10398
 msgid "Zoom Levels to Download: (0 = most detail)"
 msgstr "Мащаб нива за изтегляне: (0 = най-детайлно)"
 
-#: po/../src/maemo-mapper.c:7806 po/../src/maemo-mapper.c:7888
+#: ../src/maemo-mapper.c:7928 ../src/maemo-mapper.c:8010
 msgid "Zoom to Level"
 msgstr "Мащаб"
 
-#: po/../src/maemo-mapper.c:9971 po/../src/maemo-mapper.c:9978
+#: ../src/maemo-mapper.c:10175 ../src/maemo-mapper.c:10182
 msgid "about"
 msgstr "относно"
 
-#: po/../src/maemo-mapper.c:2721
+#: ../src/maemo-mapper.c:2743
 msgid "in use"
 msgstr "в употреба"
 
-#: po/../src/maemo-mapper.c:7369
+#: ../src/maemo-mapper.c:7491
 msgid "km"
 msgstr "km"
 
-#: po/../src/maemo-mapper.c:9879 po/../src/maemo-mapper.c:9885
-#: po/../src/maemo-mapper.c:9972 po/../src/maemo-mapper.c:9979
+#: ../src/maemo-mapper.c:10083 ../src/maemo-mapper.c:10089
+#: ../src/maemo-mapper.c:10176 ../src/maemo-mapper.c:10183
 msgid "maps"
 msgstr "карти"
 
-#: po/../src/maemo-mapper.c:7370
+#: ../src/maemo-mapper.c:7492
 msgid "mi."
 msgstr "mi."
 
-#: po/../src/maemo-mapper.c:7371
+#: ../src/maemo-mapper.c:7493
 msgid "n.m."
 msgstr "n.m."
 
-#: po/../src/maemo-mapper.c:2876
+#: ../src/maemo-mapper.c:2898
 msgid "nofix"
 msgstr "не фикс"
 
-#: po/../src/maemo-mapper.c:2249 po/../src/maemo-mapper.c:2885
+#: ../src/maemo-mapper.c:2267 ../src/maemo-mapper.c:2907
 msgid "none"
 msgstr "няма"
 
-#: po/../src/maemo-mapper.c:7125 po/../src/maemo-mapper.c:7560
+#: ../src/maemo-mapper.c:7243 ../src/maemo-mapper.c:7682
 msgid "reading"
 msgstr "четене"
 
-#: po/../src/maemo-mapper.c:8900 po/../src/maemo-mapper.c:8902
+#: ../src/maemo-mapper.c:9020 ../src/maemo-mapper.c:9022
 msgid "toggled"
 msgstr "превключено"
 
-#: po/../src/maemo-mapper.c:9885 po/../src/maemo-mapper.c:9979
+#: ../src/maemo-mapper.c:10089 ../src/maemo-mapper.c:10183
 msgid "up to about"
 msgstr "до около"
 
-#: po/../src/maemo-mapper.c:7125
+#: ../src/maemo-mapper.c:7243
 msgid "writing"
 msgstr "запис"
index 3a094f8979f1a244c09ebf06cc73679ac5c82551..2895155f4037726a43ed7183ec3d5903ddad7ad5 100644 (file)
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: maemo-mapper 1.2.4\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-01-28 23:17-0500\n"
+"POT-Creation-Date: 2007-02-12 23:36-0500\n"
 "PO-Revision-Date: 2006-10-28 22:19-0400\n"
 "Last-Translator: John Costigan <gnuite@gmail.com>\n"
 "Language-Team: John Costigan <gnuite@gmail.com>\n"
@@ -19,31 +19,39 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: po/../src/maemo-mapper.c:11246
+#: ../src/maemo-mapper.c:11435
 msgid "Add"
 msgstr "Add"
 
-#: po/../src/maemo-mapper.c:10980
+#: ../src/maemo-mapper.c:11179
 msgid "Add Category"
 msgstr "Add Category"
 
-#: po/../src/maemo-mapper.c:5899 po/../src/maemo-mapper.c:11657
+#: ../src/maemo-mapper.c:6007 ../src/maemo-mapper.c:11843
 msgid "Add POI"
 msgstr "Add POI"
 
-#: po/../src/maemo-mapper.c:4686
+#: ../src/maemo-mapper.c:4783
 msgid "Advance Notice"
 msgstr "Advance Notice"
 
-#: po/../src/maemo-mapper.c:10173
+#: ../src/maemo-mapper.c:10378
 msgid "Along Route - Radius (tiles):"
 msgstr "Along Route - Radius (tiles):"
 
-#: po/../src/maemo-mapper.c:2827
+#: ../src/maemo-mapper.c:2849
 msgid "Altitude"
 msgstr "Altitude"
 
-#: po/../src/maemo-mapper.c:7820
+#: ../src/maemo-mapper.c:9780
+msgid ""
+"An error occurred while retrieving the repositories.  The web service may be "
+"temporarily down."
+msgstr ""
+"An error occurred while retrieving the repositories.  The web service may be "
+"temporarily down."
+
+#: ../src/maemo-mapper.c:7942
 msgid ""
 "An error occurred while trying to reset the bluetooth radio.\n"
 "\n"
@@ -55,124 +63,124 @@ msgstr ""
 "Did you make sure to modify\n"
 "the /etc/sudoers file?"
 
-#: po/../src/maemo-mapper.c:4682
+#: ../src/maemo-mapper.c:4779
 msgid "Announce"
 msgstr "Announce"
 
-#: po/../src/maemo-mapper.c:10209
+#: ../src/maemo-mapper.c:10414
 msgid "Area"
 msgstr "Area"
 
-#: po/../src/maemo-mapper.c:4651 po/../src/maemo-mapper.c:5763
+#: ../src/maemo-mapper.c:4748 ../src/maemo-mapper.c:5871
 msgid "Auto-Center"
 msgstr "Auto-Center"
 
-#: po/../src/maemo-mapper.c:9336
+#: ../src/maemo-mapper.c:9456
 msgid "Auto-Center Mode: Lat/Lon"
 msgstr "Auto-Center Mode: Lat/Lon"
 
-#: po/../src/maemo-mapper.c:9321
+#: ../src/maemo-mapper.c:9441
 msgid "Auto-Center Mode: Lead"
 msgstr "Auto-Center Mode: Lead"
 
-#: po/../src/maemo-mapper.c:9350
+#: ../src/maemo-mapper.c:9470
 msgid "Auto-Center Off"
 msgstr "Auto-Center Off"
 
-#: po/../src/maemo-mapper.c:5728
+#: ../src/maemo-mapper.c:5836
 msgid "Auto-Download"
 msgstr "Auto-Download"
 
-#: po/../src/maemo-mapper.c:8874
+#: ../src/maemo-mapper.c:8994
 msgid "Auto-Update"
 msgstr "Auto-Update"
 
-#: po/../src/maemo-mapper.c:7395
+#: ../src/maemo-mapper.c:7517
 msgid "Bottom-Left"
 msgstr "Bottom-Left"
 
-#: po/../src/maemo-mapper.c:7394 po/../src/maemo-mapper.c:10272
+#: ../src/maemo-mapper.c:7516 ../src/maemo-mapper.c:10477
 msgid "Bottom-Right"
 msgstr "Bottom-Right"
 
-#: po/../src/maemo-mapper.c:4869 po/../src/maemo-mapper.c:9538
+#: ../src/maemo-mapper.c:4966 ../src/maemo-mapper.c:9657
 msgid "Browse..."
 msgstr "Browse..."
 
-#: po/../src/maemo-mapper.c:10164
+#: ../src/maemo-mapper.c:10369
 msgid "By Area (see tab)"
 msgstr "By Area (see tab)"
 
-#: po/../src/maemo-mapper.c:9528
+#: ../src/maemo-mapper.c:9647
 msgid "Cache Dir."
 msgstr "Cache Dir."
 
-#: po/../src/maemo-mapper.c:9474
+#: ../src/maemo-mapper.c:9593
 msgid ""
 "Cannot delete the last repository - there must be at lease one repository."
 msgstr ""
 "Cannot delete the last repository - there must be at lease one repository."
 
-#: po/../src/maemo-mapper.c:10435
+#: ../src/maemo-mapper.c:10640
 msgid ""
 "Cannot enable GPS until a GPS Receiver MAC is set in the Settings dialog box."
 msgstr ""
 "Cannot enable GPS until a GPS Receiver MAC is set in the Settings dialog box."
 
-#: po/../src/maemo-mapper.c:11446
+#: ../src/maemo-mapper.c:11665
 msgid "Category"
 msgstr "Category"
 
-#: po/../src/maemo-mapper.c:11237
+#: ../src/maemo-mapper.c:11426
 msgid "Category List"
 msgstr "Category List"
 
-#: po/../src/maemo-mapper.c:11686
+#: ../src/maemo-mapper.c:11872
 msgid "Category: "
 msgstr "Category: "
 
-#: po/../src/maemo-mapper.c:5702 po/../src/maemo-mapper.c:5716
-#: po/../src/maemo-mapper.c:10117
+#: ../src/maemo-mapper.c:5810 ../src/maemo-mapper.c:5824
+#: ../src/maemo-mapper.c:10322
 msgid "Clear"
 msgstr "Clear"
 
-#: po/../src/maemo-mapper.c:5814
+#: ../src/maemo-mapper.c:5922
 msgid "Close"
 msgstr "Close"
 
-#: po/../src/maemo-mapper.c:4425
+#: ../src/maemo-mapper.c:4522
 msgid "Colors"
 msgstr "Colors"
 
-#: po/../src/maemo-mapper.c:4610
+#: ../src/maemo-mapper.c:4707
 msgid "Colors..."
 msgstr "Colors..."
 
-#: po/../src/maemo-mapper.c:9878 po/../src/maemo-mapper.c:9971
+#: ../src/maemo-mapper.c:10082 ../src/maemo-mapper.c:10175
 msgid "Confirm DELETION of"
 msgstr "Confirm DELETION of"
 
-#: po/../src/maemo-mapper.c:9481
+#: ../src/maemo-mapper.c:9600
 msgid "Confirm delete of repository"
 msgstr "Confirm delete of repository"
 
-#: po/../src/maemo-mapper.c:10846
+#: ../src/maemo-mapper.c:11051
 msgid "Confirm delete of waypoint"
 msgstr "Confirm delete of waypoint"
 
-#: po/../src/maemo-mapper.c:9884 po/../src/maemo-mapper.c:9977
+#: ../src/maemo-mapper.c:10088 ../src/maemo-mapper.c:10181
 msgid "Confirm download of"
 msgstr "Confirm download of"
 
-#: po/../src/maemo-mapper.c:5918
+#: ../src/maemo-mapper.c:6026
 msgid "Copy Description to Clipboard"
 msgstr "Copy Description to Clipboard"
 
-#: po/../src/maemo-mapper.c:5891 po/../src/maemo-mapper.c:5916
+#: ../src/maemo-mapper.c:5999 ../src/maemo-mapper.c:6024
 msgid "Copy Lat/Lon to Clipboard"
 msgstr "Copy Lat/Lon to Clipboard"
 
-#: po/../src/maemo-mapper.c:8977
+#: ../src/maemo-mapper.c:9097
 msgid ""
 "Could not generate directions. Make sure your source and destination are "
 "valid."
@@ -180,120 +188,120 @@ msgstr ""
 "Could not generate directions. Make sure your source and destination are "
 "valid."
 
-#: po/../src/maemo-mapper.c:2242
+#: ../src/maemo-mapper.c:2260
 msgid "DGPS"
 msgstr "DGPS"
 
-#: po/../src/maemo-mapper.c:4431
+#: ../src/maemo-mapper.c:4528
 msgid "Defaults"
 msgstr "Defaults"
 
-#: po/../src/maemo-mapper.c:4797
+#: ../src/maemo-mapper.c:4894
 msgid "Degrees Format"
 msgstr "Degrees Format"
 
-#: po/../src/maemo-mapper.c:5925 po/../src/maemo-mapper.c:10961
-#: po/../src/maemo-mapper.c:11627
+#: ../src/maemo-mapper.c:6033 ../src/maemo-mapper.c:11160
+#: ../src/maemo-mapper.c:11815
 msgid "Delete"
 msgstr "Delete"
 
-#: po/../src/maemo-mapper.c:10154
+#: ../src/maemo-mapper.c:10359
 msgid "Delete Maps"
 msgstr "Delete Maps"
 
-#: po/../src/maemo-mapper.c:11334
+#: ../src/maemo-mapper.c:11523
 msgid "Delete POI?"
 msgstr "Delete POI?"
 
-#: po/../src/maemo-mapper.c:10876
+#: ../src/maemo-mapper.c:11081
 msgid "Delete category?"
 msgstr "Delete category?"
 
-#: po/../src/maemo-mapper.c:9663
+#: ../src/maemo-mapper.c:9856
 msgid "Delete..."
 msgstr "Delete..."
 
-#: po/../src/maemo-mapper.c:11292
+#: ../src/maemo-mapper.c:11481
 msgid "Desc."
 msgstr "Desc."
 
-#: po/../src/maemo-mapper.c:10999 po/../src/maemo-mapper.c:11699
+#: ../src/maemo-mapper.c:11198 ../src/maemo-mapper.c:11898
 msgid "Desc.: "
 msgstr "Desc.: "
 
-#: po/../src/maemo-mapper.c:4287
+#: ../src/maemo-mapper.c:4384
 msgid "Description"
 msgstr "Description"
 
-#: po/../src/maemo-mapper.c:8891
+#: ../src/maemo-mapper.c:9011
 msgid "Destination"
 msgstr "Destination"
 
-#: po/../src/maemo-mapper.c:5797
+#: ../src/maemo-mapper.c:5905
 msgid "Details..."
 msgstr "Details..."
 
-#: po/../src/maemo-mapper.c:10618
+#: ../src/maemo-mapper.c:10823
 msgid "Distance to Location"
 msgstr "Distance to Location"
 
-#: po/../src/maemo-mapper.c:10816
+#: ../src/maemo-mapper.c:11021
 msgid "Distance to Waypoint"
 msgstr "Distance to Waypoint"
 
-#: po/../src/maemo-mapper.c:10141
+#: ../src/maemo-mapper.c:10346
 msgid "Download Maps"
 msgstr "Download Maps"
 
-#: po/../src/maemo-mapper.c:8838
+#: ../src/maemo-mapper.c:8958
 msgid "Download Route"
 msgstr "Download Route"
 
-#: po/../src/maemo-mapper.c:5894 po/../src/maemo-mapper.c:5921
+#: ../src/maemo-mapper.c:6002 ../src/maemo-mapper.c:6029
 msgid "Download Route to..."
 msgstr "Download Route to..."
 
-#: po/../src/maemo-mapper.c:9543
+#: ../src/maemo-mapper.c:9662
 msgid "Download Zoom Steps"
 msgstr "Download Zoom Steps"
 
-#: po/../src/maemo-mapper.c:5696
+#: ../src/maemo-mapper.c:5804 ../src/maemo-mapper.c:9837
 msgid "Download..."
 msgstr "Download..."
 
-#: po/../src/maemo-mapper.c:6306
+#: ../src/maemo-mapper.c:6422
 msgid "Downloading maps"
 msgstr "Downloading maps"
 
-#: po/../src/maemo-mapper.c:11243
+#: ../src/maemo-mapper.c:11432
 msgid "Edit"
 msgstr "Edit"
 
-#: po/../src/maemo-mapper.c:11695
+#: ../src/maemo-mapper.c:11894
 msgid "Edit Categories..."
 msgstr "Edit Categories..."
 
-#: po/../src/maemo-mapper.c:10955
+#: ../src/maemo-mapper.c:11154
 msgid "Edit Category"
 msgstr "Edit Category"
 
-#: po/../src/maemo-mapper.c:5902 po/../src/maemo-mapper.c:11621
+#: ../src/maemo-mapper.c:6010 ../src/maemo-mapper.c:11809
 msgid "Edit POI"
 msgstr "Edit POI"
 
-#: po/../src/maemo-mapper.c:5789
+#: ../src/maemo-mapper.c:5897
 msgid "Enable GPS"
 msgstr "Enable GPS"
 
-#: po/../src/maemo-mapper.c:4698
+#: ../src/maemo-mapper.c:4795
 msgid "Enable Voice Synthesis (requires flite)"
 msgstr "Enable Voice Synthesis (requires flite)"
 
-#: po/../src/maemo-mapper.c:11024 po/../src/maemo-mapper.c:11280
+#: ../src/maemo-mapper.c:11223 ../src/maemo-mapper.c:11469
 msgid "Enabled"
 msgstr "Enabled"
 
-#: po/../src/maemo-mapper.c:6569
+#: ../src/maemo-mapper.c:6684
 msgid ""
 "Error in download.  Check internet connection and/or Map Repository URL "
 "Format."
@@ -301,224 +309,231 @@ msgstr ""
 "Error in download.  Check internet connection and/or Map Repository URL "
 "Format."
 
-#: po/../src/maemo-mapper.c:7571 po/../src/maemo-mapper.c:9031
-#: po/../src/maemo-mapper.c:9074 po/../src/maemo-mapper.c:9129
+#: ../src/maemo-mapper.c:7693 ../src/maemo-mapper.c:9151
+#: ../src/maemo-mapper.c:9194 ../src/maemo-mapper.c:9249
 msgid "Error parsing GPX file."
 msgstr "Error parsing GPX file."
 
-#: po/../src/maemo-mapper.c:1330
+#: ../src/maemo-mapper.c:1346
 msgid "Error while writing to file"
 msgstr "Error while writing to file"
 
-#: po/../src/maemo-mapper.c:9151 po/../src/maemo-mapper.c:9216
+#: ../src/maemo-mapper.c:9271 ../src/maemo-mapper.c:9336
 msgid "Error writing GPX file."
 msgstr "Error writing GPX file."
 
-#: po/../src/maemo-mapper.c:4759
+#: ../src/maemo-mapper.c:4856
 msgid "Escape Key"
 msgstr "Escape Key"
 
-#: po/../src/maemo-mapper.c:3064
+#: ../src/maemo-mapper.c:3156
 msgid "Establishing GPS fix"
 msgstr "Establishing GPS fix"
 
-#: po/../src/maemo-mapper.c:2246
+#: ../src/maemo-mapper.c:2264
 msgid "Estimated"
 msgstr "Estimated"
 
-#: po/../src/maemo-mapper.c:8965
+#: ../src/maemo-mapper.c:9085
 msgid "Failed to connect to GPX Directions server"
 msgstr "Failed to connect to GPX Directions server"
 
-#: po/../src/maemo-mapper.c:5132
+#: ../src/maemo-mapper.c:5253
 msgid "Failed to initialize GConf.  Quitting."
 msgstr "Failed to initialize GConf.  Quitting."
 
-#: po/../src/maemo-mapper.c:3810
+#: ../src/maemo-mapper.c:3907
 msgid "Failed to initialize GConf.  Settings were not saved."
 msgstr "Failed to initialize GConf.  Settings were not saved."
 
-#: po/../src/maemo-mapper.c:7123 po/../src/maemo-mapper.c:7559
+#: ../src/maemo-mapper.c:7241 ../src/maemo-mapper.c:7681
 msgid "Failed to open file for"
 msgstr "Failed to open file for"
 
-#: po/../src/maemo-mapper.c:6780
+#: ../src/maemo-mapper.c:6898
 msgid "Failed to open file for writing"
 msgstr "Failed to open file for writing"
 
-#: po/../src/maemo-mapper.c:3009
+#: ../src/maemo-mapper.c:3037
 msgid "Failed to open or create database"
 msgstr "Failed to open or create database"
 
-#: po/../src/maemo-mapper.c:1331
+#: ../src/maemo-mapper.c:1347
 msgid "File is incomplete."
 msgstr "File is incomplete."
 
-#: po/../src/maemo-mapper.c:2872
+#: ../src/maemo-mapper.c:2894
 msgid "Fix"
 msgstr "Fix"
 
-#: po/../src/maemo-mapper.c:2881
+#: ../src/maemo-mapper.c:2903
 msgid "Fix Quality"
 msgstr "Fix Quality"
 
-#: po/../src/maemo-mapper.c:2245
+#: ../src/maemo-mapper.c:2263
 msgid "Float RTK"
 msgstr "Float RTK"
 
-#: po/../src/maemo-mapper.c:5740
+#: ../src/maemo-mapper.c:5848
 msgid "Full Screen"
 msgstr "Full Screen"
 
-#: po/../src/maemo-mapper.c:4621 po/../src/maemo-mapper.c:5785
+#: ../src/maemo-mapper.c:4718 ../src/maemo-mapper.c:5893
 msgid "GPS"
 msgstr "GPS"
 
-#: po/../src/maemo-mapper.c:2775
+#: ../src/maemo-mapper.c:2797
 msgid "GPS Details"
 msgstr "GPS Details"
 
-#: po/../src/maemo-mapper.c:2788
+#: ../src/maemo-mapper.c:2810
 msgid "GPS Information"
 msgstr "GPS Information"
 
-#: po/../src/maemo-mapper.c:10223
+#: ../src/maemo-mapper.c:10428
 msgid "GPS Location"
 msgstr "GPS Location"
 
-#: po/../src/maemo-mapper.c:4443
+#: ../src/maemo-mapper.c:4540
 msgid "GPS Mark"
 msgstr "GPS Mark"
 
-#: po/../src/maemo-mapper.c:2836
+#: ../src/maemo-mapper.c:2858
 msgid "Heading"
 msgstr "Heading"
 
-#: po/../src/maemo-mapper.c:5811
+#: ../src/maemo-mapper.c:5919
 msgid "Help"
 msgstr "Help"
 
-#: po/../src/maemo-mapper.c:4842
+#: ../src/maemo-mapper.c:4939
 msgid "Information Font Size"
 msgstr "Information Font Size"
 
-#: po/../src/maemo-mapper.c:5714
+#: ../src/maemo-mapper.c:5822
 msgid "Insert Breakpoint"
 msgstr "Insert Breakpoint"
 
-#: po/../src/maemo-mapper.c:10379
+#: ../src/maemo-mapper.c:10584
 msgid "Invalid Bottom-Right Latitude"
 msgstr "Invalid Bottom-Right Latitude"
 
-#: po/../src/maemo-mapper.c:10386
+#: ../src/maemo-mapper.c:10591
 msgid "Invalid Bottom-Right Longitude"
 msgstr "Invalid Bottom-Right Longitude"
 
-#: po/../src/maemo-mapper.c:8318 po/../src/maemo-mapper.c:8329
+#: ../src/maemo-mapper.c:8440 ../src/maemo-mapper.c:8451
 msgid "Invalid NMEA input from receiver!"
 msgstr "Invalid NMEA input from receiver!"
 
-#: po/../src/maemo-mapper.c:10365
+#: ../src/maemo-mapper.c:10570
 msgid "Invalid Top-Left Latitude"
 msgstr "Invalid Top-Left Latitude"
 
-#: po/../src/maemo-mapper.c:10372
+#: ../src/maemo-mapper.c:10577
 msgid "Invalid Top-Left Longitude"
 msgstr "Invalid Top-Left Longitude"
 
-#: po/../src/maemo-mapper.c:4750
+#: ../src/maemo-mapper.c:4847
 msgid "Keep Display On Only in Fullscreen Mode"
 msgstr "Keep Display On Only in Fullscreen Mode"
 
-#: po/../src/maemo-mapper.c:11287 po/../src/maemo-mapper.c:11441
+#: ../src/maemo-mapper.c:11476 ../src/maemo-mapper.c:11660
 msgid "Label"
 msgstr "Label"
 
-#: po/../src/maemo-mapper.c:10991 po/../src/maemo-mapper.c:11678
+#: ../src/maemo-mapper.c:11190 ../src/maemo-mapper.c:11864
 msgid "Label: "
 msgstr "Label: "
 
-#: po/../src/maemo-mapper.c:11668
+#: ../src/maemo-mapper.c:11854
 msgid "Lat, Lon: "
 msgstr "Lat, Lon: "
 
-#: po/../src/maemo-mapper.c:5767
+#: ../src/maemo-mapper.c:5875
 msgid "Lat/Lon"
 msgstr "Lat/Lon"
 
-#: po/../src/maemo-mapper.c:2800 po/../src/maemo-mapper.c:10213
-#: po/../src/maemo-mapper.c:10550 po/../src/maemo-mapper.c:10674
-#: po/../src/maemo-mapper.c:11431
+#: ../src/maemo-mapper.c:2822 ../src/maemo-mapper.c:10418
+#: ../src/maemo-mapper.c:10755 ../src/maemo-mapper.c:10879
 msgid "Latitude"
 msgstr "Latitude"
 
-#: po/../src/maemo-mapper.c:5773
+#: ../src/maemo-mapper.c:5881
 msgid "Lead"
 msgstr "Lead"
 
-#: po/../src/maemo-mapper.c:4668
+#: ../src/maemo-mapper.c:4765
 msgid "Lead Amount"
 msgstr "Lead Amount"
 
-#: po/../src/maemo-mapper.c:4738
+#: ../src/maemo-mapper.c:4835
 msgid "Line Width"
 msgstr "Line Width"
 
-#: po/../src/maemo-mapper.c:2845
+#: ../src/maemo-mapper.c:2867
 msgid "Local time"
 msgstr "Local time"
 
-#: po/../src/maemo-mapper.c:4826 po/../src/maemo-mapper.c:5883
+#: ../src/maemo-mapper.c:4923 ../src/maemo-mapper.c:5991
+#: ../src/maemo-mapper.c:11655
 msgid "Location"
 msgstr "Location"
 
-#: po/../src/maemo-mapper.c:2809 po/../src/maemo-mapper.c:10217
-#: po/../src/maemo-mapper.c:10551 po/../src/maemo-mapper.c:10675
-#: po/../src/maemo-mapper.c:11436
+#: ../src/maemo-mapper.c:2831 ../src/maemo-mapper.c:10422
+#: ../src/maemo-mapper.c:10756 ../src/maemo-mapper.c:10880
 msgid "Longitude"
 msgstr "Longitude"
 
-#: po/../src/maemo-mapper.c:4282 po/../src/maemo-mapper.c:4625
+#: ../src/maemo-mapper.c:4379 ../src/maemo-mapper.c:4722
 msgid "MAC"
 msgstr "MAC"
 
-#: po/../src/maemo-mapper.c:4604
+#: ../src/maemo-mapper.c:4701
 msgid "Maemo Mapper Settings"
 msgstr "Maemo Mapper Settings"
 
-#: po/../src/maemo-mapper.c:10111
+#: ../src/maemo-mapper.c:9761
+msgid ""
+"Maemo Mapper will now download and add a list of possibly-duplicate "
+"repositories from the internet.  Continue?"
+msgstr ""
+"Maemo Mapper will now download and add a list of possibly-duplicate "
+"repositories from the internet.  Continue?"
+
+#: ../src/maemo-mapper.c:10315
 msgid "Manage Maps"
 msgstr "Manage Maps"
 
-#: po/../src/maemo-mapper.c:5724
+#: ../src/maemo-mapper.c:5832
 msgid "Manage Maps..."
 msgstr "Manage Maps..."
 
-#: po/../src/maemo-mapper.c:5726
+#: ../src/maemo-mapper.c:5834
 msgid "Manage Repositories..."
 msgstr "Manage Repositories..."
 
-#: po/../src/maemo-mapper.c:2247
+#: ../src/maemo-mapper.c:2265
 msgid "Manual"
 msgstr "Manual"
 
-#: po/../src/maemo-mapper.c:5719
+#: ../src/maemo-mapper.c:5827
 msgid "Maps"
 msgstr "Maps"
 
-#: po/../src/maemo-mapper.c:2890
+#: ../src/maemo-mapper.c:2912
 msgid "Max speed"
 msgstr "Max speed"
 
-#: po/../src/maemo-mapper.c:4734
+#: ../src/maemo-mapper.c:4831
 msgid "Misc."
 msgstr "Misc."
 
-#: po/../src/maemo-mapper.c:4774
+#: ../src/maemo-mapper.c:4871
 msgid "Misc. 2"
 msgstr "Misc. 2"
 
-#: po/../src/maemo-mapper.c:10334 po/../src/maemo-mapper.c:10468
+#: ../src/maemo-mapper.c:10539 ../src/maemo-mapper.c:10673
 msgid ""
 "NOTE: You must set a Map URI in the Repository Manager in order to download "
 "maps."
@@ -526,27 +541,27 @@ msgstr ""
 "NOTE: You must set a Map URI in the Repository Manager in order to download "
 "maps."
 
-#: po/../src/maemo-mapper.c:9434 po/../src/maemo-mapper.c:9613
+#: ../src/maemo-mapper.c:9553 ../src/maemo-mapper.c:9732
 msgid "Name"
 msgstr "Name"
 
-#: po/../src/maemo-mapper.c:9424
+#: ../src/maemo-mapper.c:9543
 msgid "New Name"
 msgstr "New Name"
 
-#: po/../src/maemo-mapper.c:9603
+#: ../src/maemo-mapper.c:9722
 msgid "New Repository"
 msgstr "New Repository"
 
-#: po/../src/maemo-mapper.c:9666
+#: ../src/maemo-mapper.c:9859
 msgid "New..."
 msgstr "New..."
 
-#: po/../src/maemo-mapper.c:7382
+#: ../src/maemo-mapper.c:7504
 msgid "Next Repository"
 msgstr "Next Repository"
 
-#: po/../src/maemo-mapper.c:4952
+#: ../src/maemo-mapper.c:5049
 msgid ""
 "No GPS Receiver MAC Provided.\n"
 "GPS Disabled."
@@ -554,22 +569,22 @@ msgstr ""
 "No GPS Receiver MAC Provided.\n"
 "GPS Disabled."
 
-#: po/../src/maemo-mapper.c:9204
+#: ../src/maemo-mapper.c:9324
 msgid "No route is loaded."
 msgstr "No route is loaded."
 
-#: po/../src/maemo-mapper.c:10681 po/../src/maemo-mapper.c:10704
-#: po/../src/maemo-mapper.c:10734 po/../src/maemo-mapper.c:10756
-#: po/../src/maemo-mapper.c:10790 po/../src/maemo-mapper.c:10823
-#: po/../src/maemo-mapper.c:10860
+#: ../src/maemo-mapper.c:10886 ../src/maemo-mapper.c:10909
+#: ../src/maemo-mapper.c:10939 ../src/maemo-mapper.c:10961
+#: ../src/maemo-mapper.c:10995 ../src/maemo-mapper.c:11028
+#: ../src/maemo-mapper.c:11065
 msgid "No waypoints are visible."
 msgstr "No waypoints are visible."
 
-#: po/../src/maemo-mapper.c:5779
+#: ../src/maemo-mapper.c:5887
 msgid "None"
 msgstr "None"
 
-#: po/../src/maemo-mapper.c:4641
+#: ../src/maemo-mapper.c:4738
 msgid ""
 "Note: For manual rfcomm, enter a device path\n"
 "(e.g. \"/dev/rfcomm0\")."
@@ -577,380 +592,393 @@ msgstr ""
 "Note: For manual rfcomm, enter a device path\n"
 "(e.g. \"/dev/rfcomm0\")."
 
-#: po/../src/maemo-mapper.c:5694 po/../src/maemo-mapper.c:5710
+#: ../src/maemo-mapper.c:6089
+msgid ""
+"Now you must set up at least one Map Repository.  You can download a sample "
+"set from the internet by using the \"Download...\" button."
+msgstr ""
+"Now you must set up at least one Map Repository.  You can download a sample "
+"set from the internet by using the \"Download...\" button."
+
+#: ../src/maemo-mapper.c:5802 ../src/maemo-mapper.c:5818
 msgid "Open..."
 msgstr "Open..."
 
-#: po/../src/maemo-mapper.c:8880
+#: ../src/maemo-mapper.c:9000
 msgid "Origin"
 msgstr "Origin"
 
-#: po/../src/maemo-mapper.c:10148
+#: ../src/maemo-mapper.c:10353
 msgid "Overwrite"
 msgstr "Overwrite"
 
-#: po/../src/maemo-mapper.c:4501 po/../src/maemo-mapper.c:4855
+#: ../src/maemo-mapper.c:4598 ../src/maemo-mapper.c:4952
 msgid "POI"
 msgstr "POI"
 
-#: po/../src/maemo-mapper.c:5758
+#: ../src/maemo-mapper.c:5866
 msgid "POI Categories..."
 msgstr "POI Categories..."
 
-#: po/../src/maemo-mapper.c:4859
+#: ../src/maemo-mapper.c:4956
 msgid "POI database"
 msgstr "POI database"
 
-#: po/../src/maemo-mapper.c:2243
+#: ../src/maemo-mapper.c:2261
 msgid "PPS"
 msgstr "PPS"
 
 #  This word refers to Pitch as in of a person's voice.
-#: po/../src/maemo-mapper.c:4723
+#: ../src/maemo-mapper.c:4820
 msgid "Pitch"
 msgstr "Pitch"
 
-#: po/../src/maemo-mapper.c:4317
+#: ../src/maemo-mapper.c:4414
 msgid "Please select a bluetooth device from the list."
 msgstr "Please select a bluetooth device from the list."
 
-#: po/../src/maemo-mapper.c:11745
+#: ../src/maemo-mapper.c:11957
+#, fuzzy
+msgid "Please specify a category for the POI."
+msgstr "Please specify a name for the POI."
+
+#: ../src/maemo-mapper.c:11946
 msgid "Please specify a name for the POI."
 msgstr "Please specify a name for the POI."
 
-#: po/../src/maemo-mapper.c:11050
+#: ../src/maemo-mapper.c:11249
 msgid "Please specify a name for the category."
 msgstr "Please specify a name for the category."
 
-#: po/../src/maemo-mapper.c:8927
+#: ../src/maemo-mapper.c:9047
 #, fuzzy
 msgid "Please specify a source URL."
 msgstr "Please specify a name for the POI."
 
-#: po/../src/maemo-mapper.c:8939
+#: ../src/maemo-mapper.c:9059
 msgid "Please specify a start location."
 msgstr "Please specify a start location."
 
-#: po/../src/maemo-mapper.c:8946
+#: ../src/maemo-mapper.c:9066
 msgid "Please specify an end location."
 msgstr "Please specify an end location."
 
-#: po/../src/maemo-mapper.c:11787
+#: ../src/maemo-mapper.c:12000
 msgid "Problem adding POI"
 msgstr "Problem adding POI"
 
-#: po/../src/maemo-mapper.c:11083
+#: ../src/maemo-mapper.c:11286
 msgid "Problem adding category"
 msgstr "Problem adding category"
 
-#: po/../src/maemo-mapper.c:10892 po/../src/maemo-mapper.c:11347
+#: ../src/maemo-mapper.c:11096 ../src/maemo-mapper.c:11534
 msgid "Problem deleting POI"
 msgstr "Problem deleting POI"
 
-#: po/../src/maemo-mapper.c:10901
+#: ../src/maemo-mapper.c:11105
 msgid "Problem deleting category"
 msgstr "Problem deleting category"
 
-#: po/../src/maemo-mapper.c:11126
+#: ../src/maemo-mapper.c:11327
 msgid "Problem updating Category"
 msgstr "Problem updating Category"
 
-#: po/../src/maemo-mapper.c:11770
+#: ../src/maemo-mapper.c:11977
 msgid "Problem updating POI"
 msgstr "Problem updating POI"
 
-#: po/../src/maemo-mapper.c:11070
+#: ../src/maemo-mapper.c:11271
 msgid "Problem updating category"
 msgstr "Problem updating category"
 
-#: po/../src/maemo-mapper.c:2952
+#: ../src/maemo-mapper.c:2978
 msgid "Problem with POI database"
 msgstr "Problem with POI database"
 
-#: po/../src/maemo-mapper.c:2244
+#: ../src/maemo-mapper.c:2262
 msgid "Real Time Kinematic"
 msgstr "Real Time Kinematic"
 
-#: po/../src/maemo-mapper.c:9660
+#: ../src/maemo-mapper.c:9853
 msgid "Rename..."
 msgstr "Rename..."
 
-#: po/../src/maemo-mapper.c:9646
+#: ../src/maemo-mapper.c:9830
 msgid "Repositories"
 msgstr "Repositories"
 
-#: po/../src/maemo-mapper.c:5700
+#: ../src/maemo-mapper.c:5808
 msgid "Reset"
 msgstr "Reset"
 
-#: po/../src/maemo-mapper.c:5800 po/../src/maemo-mapper.c:7383
+#: ../src/maemo-mapper.c:5908 ../src/maemo-mapper.c:7505
 msgid "Reset Bluetooth"
 msgstr "Reset Bluetooth"
 
-#: po/../src/maemo-mapper.c:4480 po/../src/maemo-mapper.c:5690
-#: po/../src/maemo-mapper.c:5744
+#: ../src/maemo-mapper.c:4577 ../src/maemo-mapper.c:5798
+#: ../src/maemo-mapper.c:5852
 msgid "Route"
 msgstr "Route"
 
-#: po/../src/maemo-mapper.c:9023
+#: ../src/maemo-mapper.c:9143
 msgid "Route Downloaded"
 msgstr "Route Downloaded"
 
-#: po/../src/maemo-mapper.c:7568 po/../src/maemo-mapper.c:9071
+#: ../src/maemo-mapper.c:7690 ../src/maemo-mapper.c:9191
 msgid "Route Opened"
 msgstr "Route Opened"
 
-#: po/../src/maemo-mapper.c:9213
+#: ../src/maemo-mapper.c:9333
 msgid "Route Saved"
 msgstr "Route Saved"
 
-#: po/../src/maemo-mapper.c:9278
+#: ../src/maemo-mapper.c:9398
 msgid "Routes are now hidden"
 msgstr "Routes are now hidden"
 
-#: po/../src/maemo-mapper.c:9272
+#: ../src/maemo-mapper.c:9392
 msgid "Routes are now shown"
 msgstr "Routes are now shown"
 
-#: po/../src/maemo-mapper.c:2241
+#: ../src/maemo-mapper.c:2259
 msgid "SPS"
 msgstr "SPS"
 
-#: po/../src/maemo-mapper.c:2863
+#: ../src/maemo-mapper.c:2885
 msgid "Sat in use"
 msgstr "Sat in use"
 
-#: po/../src/maemo-mapper.c:2854
+#: ../src/maemo-mapper.c:2876
 msgid "Sat in view"
 msgstr "Sat in view"
 
-#: po/../src/maemo-mapper.c:2795
+#: ../src/maemo-mapper.c:2817
 msgid "Satellites details"
 msgstr "Satellites details"
 
-#: po/../src/maemo-mapper.c:2720
+#: ../src/maemo-mapper.c:2742
 msgid "Satellites in view"
 msgstr "Satellites in view"
 
-#: po/../src/maemo-mapper.c:5698 po/../src/maemo-mapper.c:5712
+#: ../src/maemo-mapper.c:5806 ../src/maemo-mapper.c:5820
 msgid "Save..."
 msgstr "Save..."
 
-#: po/../src/maemo-mapper.c:4635
+#: ../src/maemo-mapper.c:4732
 msgid "Scan..."
 msgstr "Scan..."
 
-#: po/../src/maemo-mapper.c:4293
+#: ../src/maemo-mapper.c:4390
 #, fuzzy
 msgid "Scanning for Bluetooth Devices"
 msgstr "Scanning Bluetooth Devices"
 
-#: po/../src/maemo-mapper.c:3054
+#: ../src/maemo-mapper.c:3146
 msgid "Searching for GPS receiver"
 msgstr "Searching for GPS receiver"
 
-#: po/../src/maemo-mapper.c:4257
+#: ../src/maemo-mapper.c:4354
 msgid "Select Bluetooth Device"
 msgstr "Select Bluetooth Device"
 
-#: po/../src/maemo-mapper.c:11374
+#: ../src/maemo-mapper.c:11627
 msgid "Select POI"
 msgstr "Select POI"
 
-#: po/../src/maemo-mapper.c:11463
+#: ../src/maemo-mapper.c:11690
 msgid "Select one POI from the list."
 msgstr "Select one POI from the list."
 
-#: po/../src/maemo-mapper.c:4655
+#: ../src/maemo-mapper.c:4752
 msgid "Sensitivity"
 msgstr "Sensitivity"
 
-#: po/../src/maemo-mapper.c:5806
+#: ../src/maemo-mapper.c:5914
 msgid "Settings..."
 msgstr "Settings..."
 
-#: po/../src/maemo-mapper.c:10131
+#: ../src/maemo-mapper.c:10336
 msgid "Setup"
 msgstr "Setup"
 
-#: po/../src/maemo-mapper.c:5914
+#: ../src/maemo-mapper.c:6022
 msgid "Show Description"
 msgstr "Show Description"
 
-#: po/../src/maemo-mapper.c:5896 po/../src/maemo-mapper.c:5923
+#: ../src/maemo-mapper.c:6004 ../src/maemo-mapper.c:6031
 msgid "Show Distance to"
 msgstr "Show Distance to"
 
-#: po/../src/maemo-mapper.c:5793
+#: ../src/maemo-mapper.c:5901
 msgid "Show Information"
 msgstr "Show Information"
 
-#: po/../src/maemo-mapper.c:5889 po/../src/maemo-mapper.c:5912
+#: ../src/maemo-mapper.c:5997 ../src/maemo-mapper.c:6020
 msgid "Show Lat/Lon"
 msgstr "Show Lat/Lon"
 
-#: po/../src/maemo-mapper.c:4874
+#: ../src/maemo-mapper.c:4971
 msgid "Show POI below zoom"
 msgstr "Show POI below zoom"
 
-#: po/../src/maemo-mapper.c:2248
+#: ../src/maemo-mapper.c:2266
 msgid "Simulation"
 msgstr "Simulation"
 
-#: po/../src/maemo-mapper.c:8856
+#: ../src/maemo-mapper.c:8976
 msgid "Source URL"
 msgstr "Source URL"
 
-#: po/../src/maemo-mapper.c:2818 po/../src/maemo-mapper.c:4711
+#: ../src/maemo-mapper.c:2840 ../src/maemo-mapper.c:4808
 msgid "Speed"
 msgstr "Speed"
 
-#: po/../src/maemo-mapper.c:4816
+#: ../src/maemo-mapper.c:4913
 msgid "Speed Limit"
 msgstr "Speed Limit"
 
-#: po/../src/maemo-mapper.c:7384
+#: ../src/maemo-mapper.c:7506
 msgid "Toggle GPS"
 msgstr "Toggle GPS"
 
-#: po/../src/maemo-mapper.c:7385
+#: ../src/maemo-mapper.c:7507
 msgid "Toggle GPS Info"
 msgstr "Toggle GPS Info"
 
-#: po/../src/maemo-mapper.c:7386
+#: ../src/maemo-mapper.c:7508
 msgid "Toggle Speed Limit"
 msgstr "Toggle Speed Limit"
 
-#: po/../src/maemo-mapper.c:7381
+#: ../src/maemo-mapper.c:7503
 msgid "Toggle Tracks"
 msgstr "Toggle Tracks"
 
-#: po/../src/maemo-mapper.c:7392 po/../src/maemo-mapper.c:10258
+#: ../src/maemo-mapper.c:7514 ../src/maemo-mapper.c:10463
 msgid "Top-Left"
 msgstr "Top-Left"
 
-#: po/../src/maemo-mapper.c:7393
+#: ../src/maemo-mapper.c:7515
 msgid "Top-Right"
 msgstr "Top-Right"
 
-#: po/../src/maemo-mapper.c:4464 po/../src/maemo-mapper.c:5706
-#: po/../src/maemo-mapper.c:5749
+#: ../src/maemo-mapper.c:4561 ../src/maemo-mapper.c:5814
+#: ../src/maemo-mapper.c:5857
 msgid "Track"
 msgstr "Track"
 
-#: po/../src/maemo-mapper.c:9126
+#: ../src/maemo-mapper.c:9246
 msgid "Track Opened"
 msgstr "Track Opened"
 
-#: po/../src/maemo-mapper.c:9148
+#: ../src/maemo-mapper.c:9268
 msgid "Track Saved"
 msgstr "Track Saved"
 
-#: po/../src/maemo-mapper.c:9254
+#: ../src/maemo-mapper.c:9374
 msgid "Tracks are now hidden"
 msgstr "Tracks are now hidden"
 
-#: po/../src/maemo-mapper.c:9248
+#: ../src/maemo-mapper.c:9368
 msgid "Tracks are now shown"
 msgstr "Tracks are now shown"
 
-#: po/../src/maemo-mapper.c:9519
+#: ../src/maemo-mapper.c:9638
 msgid "URL Format"
 msgstr "URL Format"
 
-#: po/../src/maemo-mapper.c:9760
+#: ../src/maemo-mapper.c:9953
 msgid "Unable to create cache directory for repository"
 msgstr "Unable to create cache directory for repository"
 
-#: po/../src/maemo-mapper.c:4781
+#: ../src/maemo-mapper.c:4878
 msgid "Units"
 msgstr "Units"
 
-#: po/../src/maemo-mapper.c:8870
+#: ../src/maemo-mapper.c:8990
 msgid "Use GPS Location"
 msgstr "Use GPS Location"
 
-#: po/../src/maemo-mapper.c:5754
+#: ../src/maemo-mapper.c:5862
 msgid "Velocity Vector"
 msgstr "Velocity Vector"
 
-#: po/../src/maemo-mapper.c:5736
+#: ../src/maemo-mapper.c:5844
 msgid "View"
 msgstr "View"
 
-#: po/../src/maemo-mapper.c:10239
+#: ../src/maemo-mapper.c:10444
 msgid "View Center"
 msgstr "View Center"
 
-#: po/../src/maemo-mapper.c:9559
+#: ../src/maemo-mapper.c:9678
 msgid "View Zoom Steps"
 msgstr "View Zoom Steps"
 
-#: po/../src/maemo-mapper.c:10878
+#: ../src/maemo-mapper.c:11083
 msgid "WARNING: All POIs in that category will also be deleted!"
 msgstr "WARNING: All POIs in that category will also be deleted!"
 
-#: po/../src/maemo-mapper.c:5907
+#: ../src/maemo-mapper.c:6015
 msgid "Waypoint"
 msgstr "Waypoint"
 
-#: po/../src/maemo-mapper.c:10187
+#: ../src/maemo-mapper.c:10392
 msgid "Zoom"
 msgstr "Zoom"
 
-#: po/../src/maemo-mapper.c:10193
+#: ../src/maemo-mapper.c:10398
 msgid "Zoom Levels to Download: (0 = most detail)"
 msgstr "Zoom Levels to Download: (0 = most detail)"
 
-#: po/../src/maemo-mapper.c:7806 po/../src/maemo-mapper.c:7888
+#: ../src/maemo-mapper.c:7928 ../src/maemo-mapper.c:8010
 msgid "Zoom to Level"
 msgstr "Zoom to Level"
 
-#: po/../src/maemo-mapper.c:9971 po/../src/maemo-mapper.c:9978
+#: ../src/maemo-mapper.c:10175 ../src/maemo-mapper.c:10182
 msgid "about"
 msgstr "about"
 
-#: po/../src/maemo-mapper.c:2721
+#: ../src/maemo-mapper.c:2743
 msgid "in use"
 msgstr "in use"
 
-#: po/../src/maemo-mapper.c:7369
+#: ../src/maemo-mapper.c:7491
 msgid "km"
 msgstr "km"
 
-#: po/../src/maemo-mapper.c:9879 po/../src/maemo-mapper.c:9885
-#: po/../src/maemo-mapper.c:9972 po/../src/maemo-mapper.c:9979
+#: ../src/maemo-mapper.c:10083 ../src/maemo-mapper.c:10089
+#: ../src/maemo-mapper.c:10176 ../src/maemo-mapper.c:10183
 msgid "maps"
 msgstr "maps"
 
-#: po/../src/maemo-mapper.c:7370
+#: ../src/maemo-mapper.c:7492
 msgid "mi."
 msgstr "mi."
 
-#: po/../src/maemo-mapper.c:7371
+#: ../src/maemo-mapper.c:7493
 msgid "n.m."
 msgstr "n.m."
 
-#: po/../src/maemo-mapper.c:2876
+#: ../src/maemo-mapper.c:2898
 msgid "nofix"
 msgstr "nofix"
 
-#: po/../src/maemo-mapper.c:2249 po/../src/maemo-mapper.c:2885
+#: ../src/maemo-mapper.c:2267 ../src/maemo-mapper.c:2907
 msgid "none"
 msgstr "none"
 
-#: po/../src/maemo-mapper.c:7125 po/../src/maemo-mapper.c:7560
+#: ../src/maemo-mapper.c:7243 ../src/maemo-mapper.c:7682
 msgid "reading"
 msgstr "reading"
 
-#: po/../src/maemo-mapper.c:8900 po/../src/maemo-mapper.c:8902
+#: ../src/maemo-mapper.c:9020 ../src/maemo-mapper.c:9022
 msgid "toggled"
 msgstr "toggled"
 
-#: po/../src/maemo-mapper.c:9885 po/../src/maemo-mapper.c:9979
+#: ../src/maemo-mapper.c:10089 ../src/maemo-mapper.c:10183
 msgid "up to about"
 msgstr "up to about"
 
-#: po/../src/maemo-mapper.c:7125
+#: ../src/maemo-mapper.c:7243
 msgid "writing"
 msgstr "writing"
index 43b0e8dbf89555652e593f11e8bc1acc31c2b7b3..ab239bfef21d145a2abf162c90352a9cd751538d 100644 (file)
@@ -13,7 +13,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: it_IT\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-01-28 23:17-0500\n"
+"POT-Creation-Date: 2007-02-12 23:36-0500\n"
 "PO-Revision-Date: 2006-11-05 18:27+0100\n"
 "Last-Translator: Alessandro Pasotti <ale.pas@tiscali.it>\n"
 "Language-Team: Italiano <it@li.org>\n"
@@ -23,31 +23,39 @@ msgstr ""
 "X-Generator: KBabel 1.11.4\n"
 "Plural-Forms:  nplurals=2; plural=(n != 1);\n"
 
-#: po/../src/maemo-mapper.c:11246
+#: ../src/maemo-mapper.c:11435
 msgid "Add"
 msgstr "Aggiungi"
 
-#: po/../src/maemo-mapper.c:10980
+#: ../src/maemo-mapper.c:11179
 msgid "Add Category"
 msgstr "Aggiungi categoria"
 
-#: po/../src/maemo-mapper.c:5899 po/../src/maemo-mapper.c:11657
+#: ../src/maemo-mapper.c:6007 ../src/maemo-mapper.c:11843
 msgid "Add POI"
 msgstr "Aggiungi POI"
 
-#: po/../src/maemo-mapper.c:4686
+#: ../src/maemo-mapper.c:4783
 msgid "Advance Notice"
 msgstr "Anticipo avvisi"
 
-#: po/../src/maemo-mapper.c:10173
+#: ../src/maemo-mapper.c:10378
 msgid "Along Route - Radius (tiles):"
 msgstr "Lungo la rotta - raggio (riquadri):"
 
-#: po/../src/maemo-mapper.c:2827
+#: ../src/maemo-mapper.c:2849
 msgid "Altitude"
 msgstr "Altitudine"
 
-#: po/../src/maemo-mapper.c:7820
+#: ../src/maemo-mapper.c:9780
+msgid ""
+"An error occurred while retrieving the repositories.  The web service may be "
+"temporarily down."
+msgstr ""
+"An error occurred while retrieving the repositories.  The web service may be "
+"temporarily down."
+
+#: ../src/maemo-mapper.c:7942
 msgid ""
 "An error occurred while trying to reset the bluetooth radio.\n"
 "\n"
@@ -59,125 +67,124 @@ msgstr ""
 "Sei sicuro di aver modificato il file\n"
 "/etc/sudoers?"
 
-#: po/../src/maemo-mapper.c:4682
+#: ../src/maemo-mapper.c:4779
 msgid "Announce"
 msgstr "Avviso"
 
-#: po/../src/maemo-mapper.c:10209
+#: ../src/maemo-mapper.c:10414
 msgid "Area"
 msgstr "Area"
 
-#: po/../src/maemo-mapper.c:4651 po/../src/maemo-mapper.c:5763
+#: ../src/maemo-mapper.c:4748 ../src/maemo-mapper.c:5871
 msgid "Auto-Center"
 msgstr "Centro automatico"
 
-#: po/../src/maemo-mapper.c:9336
+#: ../src/maemo-mapper.c:9456
 msgid "Auto-Center Mode: Lat/Lon"
 msgstr "Modalità centro automatico: Lat/Lon"
 
-#: po/../src/maemo-mapper.c:9321
+#: ../src/maemo-mapper.c:9441
 msgid "Auto-Center Mode: Lead"
 msgstr "Modalità centro automatico: vettore"
 
-#: po/../src/maemo-mapper.c:9350
+#: ../src/maemo-mapper.c:9470
 msgid "Auto-Center Off"
 msgstr "Disabilita centro automatico"
 
-#: po/../src/maemo-mapper.c:5728
+#: ../src/maemo-mapper.c:5836
 msgid "Auto-Download"
 msgstr "Scaricamento automatico"
 
-#: po/../src/maemo-mapper.c:8874
+#: ../src/maemo-mapper.c:8994
 msgid "Auto-Update"
 msgstr "Aggiornamento automatico"
 
-#: po/../src/maemo-mapper.c:7395
+#: ../src/maemo-mapper.c:7517
 msgid "Bottom-Left"
 msgstr "Inferiore sinistro"
 
-
-#: po/../src/maemo-mapper.c:7394 po/../src/maemo-mapper.c:10272
+#: ../src/maemo-mapper.c:7516 ../src/maemo-mapper.c:10477
 msgid "Bottom-Right"
 msgstr "Inferiore destra"
 
-#: po/../src/maemo-mapper.c:4869 po/../src/maemo-mapper.c:9538
+#: ../src/maemo-mapper.c:4966 ../src/maemo-mapper.c:9657
 msgid "Browse..."
 msgstr "Scegli..."
 
-#: po/../src/maemo-mapper.c:10164
+#: ../src/maemo-mapper.c:10369
 msgid "By Area (see tab)"
 msgstr "Per area (vedi scheda)"
 
-#: po/../src/maemo-mapper.c:9528
+#: ../src/maemo-mapper.c:9647
 msgid "Cache Dir."
 msgstr "Cartella cache"
 
-#: po/../src/maemo-mapper.c:9474
+#: ../src/maemo-mapper.c:9593
 msgid ""
 "Cannot delete the last repository - there must be at lease one repository."
 msgstr "Impossibile cancellare l'ultimo deposito - deve essercene almeno uno."
 
-#: po/../src/maemo-mapper.c:10435
+#: ../src/maemo-mapper.c:10640
 msgid ""
 "Cannot enable GPS until a GPS Receiver MAC is set in the Settings dialog box."
 msgstr ""
 "Impossibile abilitare il GPS finché non viene impostato un indirizzo MAC\n"
 "nella finestra Impostazioni."
 
-#: po/../src/maemo-mapper.c:11446
+#: ../src/maemo-mapper.c:11665
 msgid "Category"
 msgstr "Categoria"
 
-#: po/../src/maemo-mapper.c:11237
+#: ../src/maemo-mapper.c:11426
 msgid "Category List"
 msgstr "Elenco categorie"
 
-#: po/../src/maemo-mapper.c:11686
+#: ../src/maemo-mapper.c:11872
 msgid "Category: "
 msgstr "Categoria"
 
-#: po/../src/maemo-mapper.c:5702 po/../src/maemo-mapper.c:5716
-#: po/../src/maemo-mapper.c:10117
+#: ../src/maemo-mapper.c:5810 ../src/maemo-mapper.c:5824
+#: ../src/maemo-mapper.c:10322
 msgid "Clear"
 msgstr "Cancella"
 
-#: po/../src/maemo-mapper.c:5814
+#: ../src/maemo-mapper.c:5922
 msgid "Close"
 msgstr "Chiudi"
 
-#: po/../src/maemo-mapper.c:4425
+#: ../src/maemo-mapper.c:4522
 msgid "Colors"
 msgstr "Colori"
 
-#: po/../src/maemo-mapper.c:4610
+#: ../src/maemo-mapper.c:4707
 msgid "Colors..."
 msgstr "Colori..."
 
-#: po/../src/maemo-mapper.c:9878 po/../src/maemo-mapper.c:9971
+#: ../src/maemo-mapper.c:10082 ../src/maemo-mapper.c:10175
 msgid "Confirm DELETION of"
 msgstr "Conferma eliminazione di"
 
-#: po/../src/maemo-mapper.c:9481
+#: ../src/maemo-mapper.c:9600
 msgid "Confirm delete of repository"
 msgstr "Conferma l'eliminazione del deposito"
 
-#: po/../src/maemo-mapper.c:10846
+#: ../src/maemo-mapper.c:11051
 msgid "Confirm delete of waypoint"
 msgstr "Conferma l'eliminazione del waypoint"
 
-#: po/../src/maemo-mapper.c:9884 po/../src/maemo-mapper.c:9977
+#: ../src/maemo-mapper.c:10088 ../src/maemo-mapper.c:10181
 msgid "Confirm download of"
 msgstr "Conferma il download di"
 
-#: po/../src/maemo-mapper.c:5918
+#: ../src/maemo-mapper.c:6026
 msgid "Copy Description to Clipboard"
 msgstr "Copia la descrizione negli appunti"
 
-#: po/../src/maemo-mapper.c:5891 po/../src/maemo-mapper.c:5916
+#: ../src/maemo-mapper.c:5999 ../src/maemo-mapper.c:6024
 msgid "Copy Lat/Lon to Clipboard"
 msgstr "Copia Lat/Lon negli appunti"
 
-#: po/../src/maemo-mapper.c:8977
+#: ../src/maemo-mapper.c:9097
 msgid ""
 "Could not generate directions. Make sure your source and destination are "
 "valid."
@@ -185,120 +192,120 @@ msgstr ""
 "Impossibile generare le indicazioni. Controlla che la partenza e l'arrivo "
 "siano validi."
 
-#: po/../src/maemo-mapper.c:2242
+#: ../src/maemo-mapper.c:2260
 msgid "DGPS"
 msgstr "DGPS"
 
-#: po/../src/maemo-mapper.c:4431
+#: ../src/maemo-mapper.c:4528
 msgid "Defaults"
 msgstr "Default"
 
-#: po/../src/maemo-mapper.c:4797
+#: ../src/maemo-mapper.c:4894
 msgid "Degrees Format"
 msgstr "Degrees Format"
 
-#: po/../src/maemo-mapper.c:5925 po/../src/maemo-mapper.c:10961
-#: po/../src/maemo-mapper.c:11627
+#: ../src/maemo-mapper.c:6033 ../src/maemo-mapper.c:11160
+#: ../src/maemo-mapper.c:11815
 msgid "Delete"
 msgstr "Elimina"
 
-#: po/../src/maemo-mapper.c:10154
+#: ../src/maemo-mapper.c:10359
 msgid "Delete Maps"
 msgstr "Elimina mappe"
 
-#: po/../src/maemo-mapper.c:11334
+#: ../src/maemo-mapper.c:11523
 msgid "Delete POI?"
 msgstr "Elimina POI?"
 
-#: po/../src/maemo-mapper.c:10876
+#: ../src/maemo-mapper.c:11081
 msgid "Delete category?"
 msgstr "Elimina categoria?"
 
-#: po/../src/maemo-mapper.c:9663
+#: ../src/maemo-mapper.c:9856
 msgid "Delete..."
 msgstr "Elimina..."
 
-#: po/../src/maemo-mapper.c:11292
+#: ../src/maemo-mapper.c:11481
 msgid "Desc."
 msgstr "Descr."
 
-#: po/../src/maemo-mapper.c:10999 po/../src/maemo-mapper.c:11699
+#: ../src/maemo-mapper.c:11198 ../src/maemo-mapper.c:11898
 msgid "Desc.: "
 msgstr "Descr.: "
 
-#: po/../src/maemo-mapper.c:4287
+#: ../src/maemo-mapper.c:4384
 msgid "Description"
 msgstr "Descrizione"
 
-#: po/../src/maemo-mapper.c:8891
+#: ../src/maemo-mapper.c:9011
 msgid "Destination"
 msgstr "Destinazione"
 
-#: po/../src/maemo-mapper.c:5797
+#: ../src/maemo-mapper.c:5905
 msgid "Details..."
 msgstr "Dettagli..."
 
-#: po/../src/maemo-mapper.c:10618
+#: ../src/maemo-mapper.c:10823
 msgid "Distance to Location"
 msgstr "Distanza per la località"
 
-#: po/../src/maemo-mapper.c:10816
+#: ../src/maemo-mapper.c:11021
 msgid "Distance to Waypoint"
 msgstr "Distanza per il waypoint"
 
-#: po/../src/maemo-mapper.c:10141
+#: ../src/maemo-mapper.c:10346
 msgid "Download Maps"
 msgstr "Scaricamento mappe"
 
-#: po/../src/maemo-mapper.c:8838
+#: ../src/maemo-mapper.c:8958
 msgid "Download Route"
 msgstr "Scarica rotta"
 
-#: po/../src/maemo-mapper.c:5894 po/../src/maemo-mapper.c:5921
+#: ../src/maemo-mapper.c:6002 ../src/maemo-mapper.c:6029
 msgid "Download Route to..."
 msgstr "Scarica la rotta per..."
 
-#: po/../src/maemo-mapper.c:9543
+#: ../src/maemo-mapper.c:9662
 msgid "Download Zoom Steps"
 msgstr "Passi di zoom per lo scaricamento"
 
-#: po/../src/maemo-mapper.c:5696
+#: ../src/maemo-mapper.c:5804 ../src/maemo-mapper.c:9837
 msgid "Download..."
 msgstr "Scarica..."
 
-#: po/../src/maemo-mapper.c:6306
+#: ../src/maemo-mapper.c:6422
 msgid "Downloading maps"
 msgstr "Scaricamento mappe in corso"
 
-#: po/../src/maemo-mapper.c:11243
+#: ../src/maemo-mapper.c:11432
 msgid "Edit"
 msgstr "Modifica"
 
-#: po/../src/maemo-mapper.c:11695
+#: ../src/maemo-mapper.c:11894
 msgid "Edit Categories..."
 msgstr "Modifica categorie"
 
-#: po/../src/maemo-mapper.c:10955
+#: ../src/maemo-mapper.c:11154
 msgid "Edit Category"
 msgstr "Modifica categoria"
 
-#: po/../src/maemo-mapper.c:5902 po/../src/maemo-mapper.c:11621
+#: ../src/maemo-mapper.c:6010 ../src/maemo-mapper.c:11809
 msgid "Edit POI"
 msgstr "Modifica POI"
 
-#: po/../src/maemo-mapper.c:5789
+#: ../src/maemo-mapper.c:5897
 msgid "Enable GPS"
 msgstr "Abilita GPS"
 
-#: po/../src/maemo-mapper.c:4698
+#: ../src/maemo-mapper.c:4795
 msgid "Enable Voice Synthesis (requires flite)"
 msgstr "Abilita sintesi vocale (necessita di flite)"
 
-#: po/../src/maemo-mapper.c:11024 po/../src/maemo-mapper.c:11280
+#: ../src/maemo-mapper.c:11223 ../src/maemo-mapper.c:11469
 msgid "Enabled"
 msgstr "Abilitato"
 
-#: po/../src/maemo-mapper.c:6569
+#: ../src/maemo-mapper.c:6684
 msgid ""
 "Error in download.  Check internet connection and/or Map Repository URL "
 "Format."
@@ -306,225 +313,232 @@ msgstr ""
 "Error in download.  Check internet connection and/or Map Repository URL "
 "Format."
 
-#: po/../src/maemo-mapper.c:7571 po/../src/maemo-mapper.c:9031
-#: po/../src/maemo-mapper.c:9074 po/../src/maemo-mapper.c:9129
+#: ../src/maemo-mapper.c:7693 ../src/maemo-mapper.c:9151
+#: ../src/maemo-mapper.c:9194 ../src/maemo-mapper.c:9249
 msgid "Error parsing GPX file."
 msgstr "Errore analizzando il file GPX."
 
-#: po/../src/maemo-mapper.c:1330
+#: ../src/maemo-mapper.c:1346
 msgid "Error while writing to file"
 msgstr "Errore scrivendo sul file"
 
-#: po/../src/maemo-mapper.c:9151 po/../src/maemo-mapper.c:9216
+#: ../src/maemo-mapper.c:9271 ../src/maemo-mapper.c:9336
 msgid "Error writing GPX file."
 msgstr "Errore scrivendo il file GPX."
 
-#: po/../src/maemo-mapper.c:4759
+#: ../src/maemo-mapper.c:4856
 msgid "Escape Key"
 msgstr "Tasto ESC"
 
-#: po/../src/maemo-mapper.c:3064
+#: ../src/maemo-mapper.c:3156
 msgid "Establishing GPS fix"
 msgstr "Connessione con il GPS in corso"
 
-#: po/../src/maemo-mapper.c:2246
+#: ../src/maemo-mapper.c:2264
 msgid "Estimated"
 msgstr "Stimato"
 
-#: po/../src/maemo-mapper.c:8965
+#: ../src/maemo-mapper.c:9085
 msgid "Failed to connect to GPX Directions server"
 msgstr "Impossibile connettersi al server delle indicazioni GPX"
 
-#: po/../src/maemo-mapper.c:5132
+#: ../src/maemo-mapper.c:5253
 msgid "Failed to initialize GConf.  Quitting."
 msgstr "Impossibile inizializzare GConf.  Esco."
 
-#: po/../src/maemo-mapper.c:3810
+#: ../src/maemo-mapper.c:3907
 msgid "Failed to initialize GConf.  Settings were not saved."
 msgstr ""
 "Impossibile inizializzare GConf.  Le impostazioni non sono state salvate."
 
-#: po/../src/maemo-mapper.c:7123 po/../src/maemo-mapper.c:7559
+#: ../src/maemo-mapper.c:7241 ../src/maemo-mapper.c:7681
 msgid "Failed to open file for"
 msgstr "Impossibile aprire il file per"
 
-#: po/../src/maemo-mapper.c:6780
+#: ../src/maemo-mapper.c:6898
 msgid "Failed to open file for writing"
 msgstr "Impossibile aprire il file in scrittura"
 
-#: po/../src/maemo-mapper.c:3009
+#: ../src/maemo-mapper.c:3037
 msgid "Failed to open or create database"
 msgstr "Impossibile aprire o creare il database"
 
-#: po/../src/maemo-mapper.c:1331
+#: ../src/maemo-mapper.c:1347
 msgid "File is incomplete."
 msgstr "Il file è incompleto."
 
-#: po/../src/maemo-mapper.c:2872
+#: ../src/maemo-mapper.c:2894
 msgid "Fix"
 msgstr "Fix"
 
-#: po/../src/maemo-mapper.c:2881
+#: ../src/maemo-mapper.c:2903
 msgid "Fix Quality"
 msgstr "Qualità Fix"
 
-#: po/../src/maemo-mapper.c:2245
+#: ../src/maemo-mapper.c:2263
 msgid "Float RTK"
 msgstr "Float RTK"
 
-#: po/../src/maemo-mapper.c:5740
+#: ../src/maemo-mapper.c:5848
 msgid "Full Screen"
 msgstr "Schermo intero"
 
-#: po/../src/maemo-mapper.c:4621 po/../src/maemo-mapper.c:5785
+#: ../src/maemo-mapper.c:4718 ../src/maemo-mapper.c:5893
 msgid "GPS"
 msgstr "GPS"
 
-#: po/../src/maemo-mapper.c:2775
+#: ../src/maemo-mapper.c:2797
 msgid "GPS Details"
 msgstr "Dettagli GPS"
 
-#: po/../src/maemo-mapper.c:2788
+#: ../src/maemo-mapper.c:2810
 msgid "GPS Information"
 msgstr "Informazioni GPS"
 
-#: po/../src/maemo-mapper.c:10223
+#: ../src/maemo-mapper.c:10428
 msgid "GPS Location"
 msgstr "Località GPS"
 
-#: po/../src/maemo-mapper.c:4443
+#: ../src/maemo-mapper.c:4540
 msgid "GPS Mark"
 msgstr "GPS Mark"
 
-#: po/../src/maemo-mapper.c:2836
+#: ../src/maemo-mapper.c:2858
 msgid "Heading"
 msgstr "Heading"
 
-#: po/../src/maemo-mapper.c:5811
+#: ../src/maemo-mapper.c:5919
 msgid "Help"
 msgstr "Aiuto"
 
-#: po/../src/maemo-mapper.c:4842
+#: ../src/maemo-mapper.c:4939
 msgid "Information Font Size"
 msgstr "Dimensione catattere Informazioni"
 
-#: po/../src/maemo-mapper.c:5714
+#: ../src/maemo-mapper.c:5822
 msgid "Insert Breakpoint"
 msgstr "Inserisci sosta"
 
-#: po/../src/maemo-mapper.c:10379
+#: ../src/maemo-mapper.c:10584
 msgid "Invalid Bottom-Right Latitude"
 msgstr "Latitudine inferiore destra errata"
 
-#: po/../src/maemo-mapper.c:10386
+#: ../src/maemo-mapper.c:10591
 msgid "Invalid Bottom-Right Longitude"
 msgstr "Longitudine inferiore destra errata"
 
-#: po/../src/maemo-mapper.c:8318 po/../src/maemo-mapper.c:8329
+#: ../src/maemo-mapper.c:8440 ../src/maemo-mapper.c:8451
 msgid "Invalid NMEA input from receiver!"
 msgstr "Dati NMEA dal ricevitore errati!"
 
-#: po/../src/maemo-mapper.c:10365
+#: ../src/maemo-mapper.c:10570
 msgid "Invalid Top-Left Latitude"
 msgstr "Latitudine superiore sinistra errata"
 
-#: po/../src/maemo-mapper.c:10372
+#: ../src/maemo-mapper.c:10577
 msgid "Invalid Top-Left Longitude"
 msgstr "Longitudine superiore sinistra errata"
 
-#: po/../src/maemo-mapper.c:4750
+#: ../src/maemo-mapper.c:4847
 msgid "Keep Display On Only in Fullscreen Mode"
 msgstr "Mantieni lo schermo sempre acceso solo quando full-screen"
 
-#: po/../src/maemo-mapper.c:11287 po/../src/maemo-mapper.c:11441
+#: ../src/maemo-mapper.c:11476 ../src/maemo-mapper.c:11660
 msgid "Label"
 msgstr "Etichetta"
 
-#: po/../src/maemo-mapper.c:10991 po/../src/maemo-mapper.c:11678
+#: ../src/maemo-mapper.c:11190 ../src/maemo-mapper.c:11864
 msgid "Label: "
 msgstr "Etichetta"
 
-#: po/../src/maemo-mapper.c:11668
+#: ../src/maemo-mapper.c:11854
 msgid "Lat, Lon: "
 msgstr "Lat, Lon: "
 
-#: po/../src/maemo-mapper.c:5767
+#: ../src/maemo-mapper.c:5875
 msgid "Lat/Lon"
 msgstr "Lat/Lon"
 
-#: po/../src/maemo-mapper.c:2800 po/../src/maemo-mapper.c:10213
-#: po/../src/maemo-mapper.c:10550 po/../src/maemo-mapper.c:10674
-#: po/../src/maemo-mapper.c:11431
+#: ../src/maemo-mapper.c:2822 ../src/maemo-mapper.c:10418
+#: ../src/maemo-mapper.c:10755 ../src/maemo-mapper.c:10879
 msgid "Latitude"
 msgstr "Latitudine"
 
-#: po/../src/maemo-mapper.c:5773
+#: ../src/maemo-mapper.c:5881
 msgid "Lead"
 msgstr "Anticipo"
 
-#: po/../src/maemo-mapper.c:4668
+#: ../src/maemo-mapper.c:4765
 msgid "Lead Amount"
 msgstr "Lunghezza anticipo"
 
-#: po/../src/maemo-mapper.c:4738
+#: ../src/maemo-mapper.c:4835
 msgid "Line Width"
 msgstr "Spessore linea"
 
-#: po/../src/maemo-mapper.c:2845
+#: ../src/maemo-mapper.c:2867
 msgid "Local time"
 msgstr "Ora locale"
 
-#: po/../src/maemo-mapper.c:4826 po/../src/maemo-mapper.c:5883
+#: ../src/maemo-mapper.c:4923 ../src/maemo-mapper.c:5991
+#: ../src/maemo-mapper.c:11655
 msgid "Location"
 msgstr "Località"
 
-#: po/../src/maemo-mapper.c:2809 po/../src/maemo-mapper.c:10217
-#: po/../src/maemo-mapper.c:10551 po/../src/maemo-mapper.c:10675
-#: po/../src/maemo-mapper.c:11436
+#: ../src/maemo-mapper.c:2831 ../src/maemo-mapper.c:10422
+#: ../src/maemo-mapper.c:10756 ../src/maemo-mapper.c:10880
 msgid "Longitude"
 msgstr "Longitudine"
 
-#: po/../src/maemo-mapper.c:4282 po/../src/maemo-mapper.c:4625
+#: ../src/maemo-mapper.c:4379 ../src/maemo-mapper.c:4722
 msgid "MAC"
 msgstr "MAC"
 
-#: po/../src/maemo-mapper.c:4604
+#: ../src/maemo-mapper.c:4701
 msgid "Maemo Mapper Settings"
 msgstr "Impostazioni Maemo Mapper"
 
-#: po/../src/maemo-mapper.c:10111
+#: ../src/maemo-mapper.c:9761
+msgid ""
+"Maemo Mapper will now download and add a list of possibly-duplicate "
+"repositories from the internet.  Continue?"
+msgstr ""
+"Maemo Mapper will now download and add a list of possibly-duplicate "
+"repositories from the internet.  Continue?"
+
+#: ../src/maemo-mapper.c:10315
 msgid "Manage Maps"
 msgstr "Gestisci mappe"
 
-#: po/../src/maemo-mapper.c:5724
+#: ../src/maemo-mapper.c:5832
 msgid "Manage Maps..."
 msgstr "Gestisci mappe..."
 
-#: po/../src/maemo-mapper.c:5726
+#: ../src/maemo-mapper.c:5834
 msgid "Manage Repositories..."
 msgstr "Gestisci depositi..."
 
-#: po/../src/maemo-mapper.c:2247
+#: ../src/maemo-mapper.c:2265
 msgid "Manual"
 msgstr "Manuale"
 
-#: po/../src/maemo-mapper.c:5719
+#: ../src/maemo-mapper.c:5827
 msgid "Maps"
 msgstr "Mappe"
 
-#: po/../src/maemo-mapper.c:2890
+#: ../src/maemo-mapper.c:2912
 msgid "Max speed"
 msgstr "Velocità massima"
 
-#: po/../src/maemo-mapper.c:4734
+#: ../src/maemo-mapper.c:4831
 msgid "Misc."
 msgstr "Varie"
 
-#: po/../src/maemo-mapper.c:4774
+#: ../src/maemo-mapper.c:4871
 msgid "Misc. 2"
 msgstr "Varie 2"
 
-#: po/../src/maemo-mapper.c:10334 po/../src/maemo-mapper.c:10468
+#: ../src/maemo-mapper.c:10539 ../src/maemo-mapper.c:10673
 msgid ""
 "NOTE: You must set a Map URI in the Repository Manager in order to download "
 "maps."
@@ -532,27 +546,27 @@ msgstr ""
 "NOTA: Devi impostare un URI per le mappe nel gestore dei depositi prima di "
 "poter scaricare delle mappe."
 
-#: po/../src/maemo-mapper.c:9434 po/../src/maemo-mapper.c:9613
+#: ../src/maemo-mapper.c:9553 ../src/maemo-mapper.c:9732
 msgid "Name"
 msgstr "Nome"
 
-#: po/../src/maemo-mapper.c:9424
+#: ../src/maemo-mapper.c:9543
 msgid "New Name"
 msgstr "Nuovo nome"
 
-#: po/../src/maemo-mapper.c:9603
+#: ../src/maemo-mapper.c:9722
 msgid "New Repository"
 msgstr "Nuovo deposito"
 
-#: po/../src/maemo-mapper.c:9666
+#: ../src/maemo-mapper.c:9859
 msgid "New..."
 msgstr "Nuovo..."
 
-#: po/../src/maemo-mapper.c:7382
+#: ../src/maemo-mapper.c:7504
 msgid "Next Repository"
 msgstr "Prossimo deposito"
 
-#: po/../src/maemo-mapper.c:4952
+#: ../src/maemo-mapper.c:5049
 msgid ""
 "No GPS Receiver MAC Provided.\n"
 "GPS Disabled."
@@ -560,22 +574,22 @@ msgstr ""
 "Nessun indirizzo MAC impostato per il ricevitore GPS.\n"
 "GPS disabilitato."
 
-#: po/../src/maemo-mapper.c:9204
+#: ../src/maemo-mapper.c:9324
 msgid "No route is loaded."
 msgstr "Nessuna rotta caricata."
 
-#: po/../src/maemo-mapper.c:10681 po/../src/maemo-mapper.c:10704
-#: po/../src/maemo-mapper.c:10734 po/../src/maemo-mapper.c:10756
-#: po/../src/maemo-mapper.c:10790 po/../src/maemo-mapper.c:10823
-#: po/../src/maemo-mapper.c:10860
+#: ../src/maemo-mapper.c:10886 ../src/maemo-mapper.c:10909
+#: ../src/maemo-mapper.c:10939 ../src/maemo-mapper.c:10961
+#: ../src/maemo-mapper.c:10995 ../src/maemo-mapper.c:11028
+#: ../src/maemo-mapper.c:11065
 msgid "No waypoints are visible."
 msgstr "Non ci sono waypoint visibili."
 
-#: po/../src/maemo-mapper.c:5779
+#: ../src/maemo-mapper.c:5887
 msgid "None"
 msgstr "Nessuno"
 
-#: po/../src/maemo-mapper.c:4641
+#: ../src/maemo-mapper.c:4738
 msgid ""
 "Note: For manual rfcomm, enter a device path\n"
 "(e.g. \"/dev/rfcomm0\")."
@@ -583,378 +597,391 @@ msgstr ""
 "Note: For manual rfcomm, enter a device path\n"
 "(e.g. \"/dev/rfcomm0\")."
 
-#: po/../src/maemo-mapper.c:5694 po/../src/maemo-mapper.c:5710
+#: ../src/maemo-mapper.c:6089
+msgid ""
+"Now you must set up at least one Map Repository.  You can download a sample "
+"set from the internet by using the \"Download...\" button."
+msgstr ""
+"Now you must set up at least one Map Repository.  You can download a sample "
+"set from the internet by using the \"Download...\" button."
+
+#: ../src/maemo-mapper.c:5802 ../src/maemo-mapper.c:5818
 msgid "Open..."
 msgstr "Apri..."
 
-#: po/../src/maemo-mapper.c:8880
+#: ../src/maemo-mapper.c:9000
 msgid "Origin"
 msgstr "Partenza"
 
-#: po/../src/maemo-mapper.c:10148
+#: ../src/maemo-mapper.c:10353
 msgid "Overwrite"
 msgstr "Sovrascrivi"
 
-#: po/../src/maemo-mapper.c:4501 po/../src/maemo-mapper.c:4855
+#: ../src/maemo-mapper.c:4598 ../src/maemo-mapper.c:4952
 msgid "POI"
 msgstr "POI"
 
-#: po/../src/maemo-mapper.c:5758
+#: ../src/maemo-mapper.c:5866
 msgid "POI Categories..."
 msgstr "Categorie POI"
 
-#: po/../src/maemo-mapper.c:4859
+#: ../src/maemo-mapper.c:4956
 msgid "POI database"
 msgstr "Database POI"
 
-#: po/../src/maemo-mapper.c:2243
+#: ../src/maemo-mapper.c:2261
 msgid "PPS"
 msgstr "PPS"
 
 #  This word refers to Pitch as in of a person's voice.
-#: po/../src/maemo-mapper.c:4723
+#: ../src/maemo-mapper.c:4820
 msgid "Pitch"
 msgstr "Intonazione"
 
-#: po/../src/maemo-mapper.c:4317
+#: ../src/maemo-mapper.c:4414
 msgid "Please select a bluetooth device from the list."
 msgstr "Scegli dalla lista un dispositivo bluetooth."
 
-#: po/../src/maemo-mapper.c:11745
+#: ../src/maemo-mapper.c:11957
+#, fuzzy
+msgid "Please specify a category for the POI."
+msgstr "Specifica un nome per il POI."
+
+#: ../src/maemo-mapper.c:11946
 msgid "Please specify a name for the POI."
 msgstr "Specifica un nome per il POI."
 
-#: po/../src/maemo-mapper.c:11050
+#: ../src/maemo-mapper.c:11249
 msgid "Please specify a name for the category."
 msgstr "Specifica un nome per la categoria."
 
-#: po/../src/maemo-mapper.c:8927
+#: ../src/maemo-mapper.c:9047
 msgid "Please specify a source URL."
 msgstr "Specifica un URL."
 
-#: po/../src/maemo-mapper.c:8939
+#: ../src/maemo-mapper.c:9059
 msgid "Please specify a start location."
 msgstr "Indica una località di partenza."
 
-#: po/../src/maemo-mapper.c:8946
+#: ../src/maemo-mapper.c:9066
 msgid "Please specify an end location."
 msgstr "Indica una località di arrivo."
 
-#: po/../src/maemo-mapper.c:11787
+#: ../src/maemo-mapper.c:12000
 msgid "Problem adding POI"
 msgstr "Problema aggiungendo il POI"
 
-#: po/../src/maemo-mapper.c:11083
+#: ../src/maemo-mapper.c:11286
 msgid "Problem adding category"
 msgstr "Problema aggiungendo la categoria"
 
-#: po/../src/maemo-mapper.c:10892 po/../src/maemo-mapper.c:11347
+#: ../src/maemo-mapper.c:11096 ../src/maemo-mapper.c:11534
 msgid "Problem deleting POI"
 msgstr "Problema rimuovendo il POI"
 
-#: po/../src/maemo-mapper.c:10901
+#: ../src/maemo-mapper.c:11105
 msgid "Problem deleting category"
 msgstr "Problema rimuovendo la categoria"
 
-#: po/../src/maemo-mapper.c:11126
+#: ../src/maemo-mapper.c:11327
 msgid "Problem updating Category"
 msgstr "Problema aggiornando la categoria"
 
-#: po/../src/maemo-mapper.c:11770
+#: ../src/maemo-mapper.c:11977
 msgid "Problem updating POI"
 msgstr "Problema aggiornando il POI"
 
-#: po/../src/maemo-mapper.c:11070
+#: ../src/maemo-mapper.c:11271
 msgid "Problem updating category"
 msgstr "Problema aggiornando la categoria"
 
-#: po/../src/maemo-mapper.c:2952
+#: ../src/maemo-mapper.c:2978
 msgid "Problem with POI database"
 msgstr "Problema coni il database dei POI"
 
-#: po/../src/maemo-mapper.c:2244
+#: ../src/maemo-mapper.c:2262
 msgid "Real Time Kinematic"
 msgstr "Real Time Kinematic"
 
-#: po/../src/maemo-mapper.c:9660
+#: ../src/maemo-mapper.c:9853
 msgid "Rename..."
 msgstr "Rinomina..."
 
-#: po/../src/maemo-mapper.c:9646
+#: ../src/maemo-mapper.c:9830
 msgid "Repositories"
 msgstr "Depositi"
 
-#: po/../src/maemo-mapper.c:5700
+#: ../src/maemo-mapper.c:5808
 msgid "Reset"
 msgstr "Reimposta"
 
-#: po/../src/maemo-mapper.c:5800 po/../src/maemo-mapper.c:7383
+#: ../src/maemo-mapper.c:5908 ../src/maemo-mapper.c:7505
 msgid "Reset Bluetooth"
 msgstr "Riavvia Bluetooth"
 
-#: po/../src/maemo-mapper.c:4480 po/../src/maemo-mapper.c:5690
-#: po/../src/maemo-mapper.c:5744
+#: ../src/maemo-mapper.c:4577 ../src/maemo-mapper.c:5798
+#: ../src/maemo-mapper.c:5852
 msgid "Route"
 msgstr "Rotta"
 
-#: po/../src/maemo-mapper.c:9023
+#: ../src/maemo-mapper.c:9143
 msgid "Route Downloaded"
 msgstr "Rotta scaricata"
 
-#: po/../src/maemo-mapper.c:7568 po/../src/maemo-mapper.c:9071
+#: ../src/maemo-mapper.c:7690 ../src/maemo-mapper.c:9191
 msgid "Route Opened"
 msgstr "Rotta aperta"
 
-#: po/../src/maemo-mapper.c:9213
+#: ../src/maemo-mapper.c:9333
 msgid "Route Saved"
 msgstr "Rotta salvata"
 
-#: po/../src/maemo-mapper.c:9278
+#: ../src/maemo-mapper.c:9398
 msgid "Routes are now hidden"
 msgstr "Le rotte sono nascoste"
 
-#: po/../src/maemo-mapper.c:9272
+#: ../src/maemo-mapper.c:9392
 msgid "Routes are now shown"
 msgstr "Le rotte sono visibili"
 
-#: po/../src/maemo-mapper.c:2241
+#: ../src/maemo-mapper.c:2259
 msgid "SPS"
 msgstr "SPS"
 
-#: po/../src/maemo-mapper.c:2863
+#: ../src/maemo-mapper.c:2885
 msgid "Sat in use"
 msgstr "Satelliti in uso"
 
-#: po/../src/maemo-mapper.c:2854
+#: ../src/maemo-mapper.c:2876
 msgid "Sat in view"
 msgstr "Satelliti in vista"
 
-#: po/../src/maemo-mapper.c:2795
+#: ../src/maemo-mapper.c:2817
 msgid "Satellites details"
 msgstr "Dettagli satelliti"
 
-#: po/../src/maemo-mapper.c:2720
+#: ../src/maemo-mapper.c:2742
 msgid "Satellites in view"
 msgstr "Satelliti in vista"
 
-#: po/../src/maemo-mapper.c:5698 po/../src/maemo-mapper.c:5712
+#: ../src/maemo-mapper.c:5806 ../src/maemo-mapper.c:5820
 msgid "Save..."
 msgstr "Salva..."
 
-#: po/../src/maemo-mapper.c:4635
+#: ../src/maemo-mapper.c:4732
 msgid "Scan..."
 msgstr "Cerca..."
 
-#: po/../src/maemo-mapper.c:4293
+#: ../src/maemo-mapper.c:4390
 msgid "Scanning for Bluetooth Devices"
 msgstr "Sto cercando i dispositivi bluetooth"
 
-#: po/../src/maemo-mapper.c:3054
+#: ../src/maemo-mapper.c:3146
 msgid "Searching for GPS receiver"
 msgstr "Sto cercando un ricevitore GPS"
 
-#: po/../src/maemo-mapper.c:4257
+#: ../src/maemo-mapper.c:4354
 msgid "Select Bluetooth Device"
 msgstr "Scegli il dispositivo bluetooth"
 
-#: po/../src/maemo-mapper.c:11374
+#: ../src/maemo-mapper.c:11627
 msgid "Select POI"
 msgstr "Seleziona POI"
 
-#: po/../src/maemo-mapper.c:11463
+#: ../src/maemo-mapper.c:11690
 msgid "Select one POI from the list."
 msgstr "Scegli un POI dalla lista."
 
-#: po/../src/maemo-mapper.c:4655
+#: ../src/maemo-mapper.c:4752
 msgid "Sensitivity"
 msgstr "Sensibilità"
 
-#: po/../src/maemo-mapper.c:5806
+#: ../src/maemo-mapper.c:5914
 msgid "Settings..."
 msgstr "Impostazioni..."
 
-#: po/../src/maemo-mapper.c:10131
+#: ../src/maemo-mapper.c:10336
 msgid "Setup"
 msgstr "Impostazioni"
 
-#: po/../src/maemo-mapper.c:5914
+#: ../src/maemo-mapper.c:6022
 msgid "Show Description"
 msgstr "Mostra descrizione"
 
-#: po/../src/maemo-mapper.c:5896 po/../src/maemo-mapper.c:5923
+#: ../src/maemo-mapper.c:6004 ../src/maemo-mapper.c:6031
 msgid "Show Distance to"
 msgstr "Mostra la distanza verso"
 
-#: po/../src/maemo-mapper.c:5793
+#: ../src/maemo-mapper.c:5901
 msgid "Show Information"
 msgstr "Mostra informazioni"
 
-#: po/../src/maemo-mapper.c:5889 po/../src/maemo-mapper.c:5912
+#: ../src/maemo-mapper.c:5997 ../src/maemo-mapper.c:6020
 msgid "Show Lat/Lon"
 msgstr "Mostra Lat/Lon"
 
-#: po/../src/maemo-mapper.c:4874
+#: ../src/maemo-mapper.c:4971
 msgid "Show POI below zoom"
 msgstr "Mostra POI con zoom"
 
-#: po/../src/maemo-mapper.c:2248
+#: ../src/maemo-mapper.c:2266
 msgid "Simulation"
 msgstr "Simulazione"
 
-#: po/../src/maemo-mapper.c:8856
+#: ../src/maemo-mapper.c:8976
 msgid "Source URL"
 msgstr "Source URL"
 
-#: po/../src/maemo-mapper.c:2818 po/../src/maemo-mapper.c:4711
+#: ../src/maemo-mapper.c:2840 ../src/maemo-mapper.c:4808
 msgid "Speed"
 msgstr "Velocità"
 
-#: po/../src/maemo-mapper.c:4816
+#: ../src/maemo-mapper.c:4913
 msgid "Speed Limit"
 msgstr "Limite di velocità"
 
-#: po/../src/maemo-mapper.c:7384
+#: ../src/maemo-mapper.c:7506
 msgid "Toggle GPS"
 msgstr "Abilita GPS"
 
-#: po/../src/maemo-mapper.c:7385
+#: ../src/maemo-mapper.c:7507
 msgid "Toggle GPS Info"
 msgstr "Abilita informazioni GPS"
 
-#: po/../src/maemo-mapper.c:7386
+#: ../src/maemo-mapper.c:7508
 msgid "Toggle Speed Limit"
 msgstr "Toggle Speed Limit"
 
-#: po/../src/maemo-mapper.c:7381
+#: ../src/maemo-mapper.c:7503
 msgid "Toggle Tracks"
 msgstr "Abilita tracce"
 
-#: po/../src/maemo-mapper.c:7392 po/../src/maemo-mapper.c:10258
+#: ../src/maemo-mapper.c:7514 ../src/maemo-mapper.c:10463
 msgid "Top-Left"
 msgstr "Superiore sinistra"
 
-#: po/../src/maemo-mapper.c:7393
+#: ../src/maemo-mapper.c:7515
 msgid "Top-Right"
 msgstr "Superiore destro"
 
-#: po/../src/maemo-mapper.c:4464 po/../src/maemo-mapper.c:5706
-#: po/../src/maemo-mapper.c:5749
+#: ../src/maemo-mapper.c:4561 ../src/maemo-mapper.c:5814
+#: ../src/maemo-mapper.c:5857
 msgid "Track"
 msgstr "Percorso"
 
-#: po/../src/maemo-mapper.c:9126
+#: ../src/maemo-mapper.c:9246
 msgid "Track Opened"
 msgstr "Percorso aperto"
 
-#: po/../src/maemo-mapper.c:9148
+#: ../src/maemo-mapper.c:9268
 msgid "Track Saved"
 msgstr "Percorso salvato"
 
-#: po/../src/maemo-mapper.c:9254
+#: ../src/maemo-mapper.c:9374
 msgid "Tracks are now hidden"
 msgstr "I percorsi sono nascosti"
 
-#: po/../src/maemo-mapper.c:9248
+#: ../src/maemo-mapper.c:9368
 msgid "Tracks are now shown"
 msgstr "I percorsi sono visibili"
 
-#: po/../src/maemo-mapper.c:9519
+#: ../src/maemo-mapper.c:9638
 msgid "URL Format"
 msgstr "Formato URL"
 
-#: po/../src/maemo-mapper.c:9760
+#: ../src/maemo-mapper.c:9953
 msgid "Unable to create cache directory for repository"
 msgstr "Impossibile creare la cartella per il deposito"
 
-#: po/../src/maemo-mapper.c:4781
+#: ../src/maemo-mapper.c:4878
 msgid "Units"
 msgstr "Unità"
 
-#: po/../src/maemo-mapper.c:8870
+#: ../src/maemo-mapper.c:8990
 msgid "Use GPS Location"
 msgstr "Usa la località del GPS"
 
-#: po/../src/maemo-mapper.c:5754
+#: ../src/maemo-mapper.c:5862
 msgid "Velocity Vector"
 msgstr "Vettore di velocità"
 
-#: po/../src/maemo-mapper.c:5736
+#: ../src/maemo-mapper.c:5844
 msgid "View"
 msgstr "Mostra"
 
-#: po/../src/maemo-mapper.c:10239
+#: ../src/maemo-mapper.c:10444
 msgid "View Center"
 msgstr "Mostra centro"
 
-#: po/../src/maemo-mapper.c:9559
+#: ../src/maemo-mapper.c:9678
 msgid "View Zoom Steps"
 msgstr "Mostra intervalli di zoom"
 
-#: po/../src/maemo-mapper.c:10878
+#: ../src/maemo-mapper.c:11083
 msgid "WARNING: All POIs in that category will also be deleted!"
 msgstr "ATTENZIONE: tutti i POI in questa categoria verranno eliminati!"
 
-#: po/../src/maemo-mapper.c:5907
+#: ../src/maemo-mapper.c:6015
 msgid "Waypoint"
 msgstr "Waypoint"
 
-#: po/../src/maemo-mapper.c:10187
+#: ../src/maemo-mapper.c:10392
 msgid "Zoom"
 msgstr "Zoom"
 
-#: po/../src/maemo-mapper.c:10193
+#: ../src/maemo-mapper.c:10398
 msgid "Zoom Levels to Download: (0 = most detail)"
 msgstr "Livelli di Zoom da scaricare: (0 = massimo dettaglio)"
 
-#: po/../src/maemo-mapper.c:7806 po/../src/maemo-mapper.c:7888
+#: ../src/maemo-mapper.c:7928 ../src/maemo-mapper.c:8010
 msgid "Zoom to Level"
 msgstr "Zoom al livello"
 
-#: po/../src/maemo-mapper.c:9971 po/../src/maemo-mapper.c:9978
+#: ../src/maemo-mapper.c:10175 ../src/maemo-mapper.c:10182
 msgid "about"
 msgstr "circa"
 
-#: po/../src/maemo-mapper.c:2721
+#: ../src/maemo-mapper.c:2743
 msgid "in use"
 msgstr "in uso"
 
-#: po/../src/maemo-mapper.c:7369
+#: ../src/maemo-mapper.c:7491
 msgid "km"
 msgstr "km"
 
-#: po/../src/maemo-mapper.c:9879 po/../src/maemo-mapper.c:9885
-#: po/../src/maemo-mapper.c:9972 po/../src/maemo-mapper.c:9979
+#: ../src/maemo-mapper.c:10083 ../src/maemo-mapper.c:10089
+#: ../src/maemo-mapper.c:10176 ../src/maemo-mapper.c:10183
 msgid "maps"
 msgstr "mappe"
 
-#: po/../src/maemo-mapper.c:7370
+#: ../src/maemo-mapper.c:7492
 msgid "mi."
 msgstr "mi."
 
-#: po/../src/maemo-mapper.c:7371
+#: ../src/maemo-mapper.c:7493
 msgid "n.m."
 msgstr "n.m."
 
-#: po/../src/maemo-mapper.c:2876
+#: ../src/maemo-mapper.c:2898
 msgid "nofix"
 msgstr "nofix"
 
-#: po/../src/maemo-mapper.c:2249 po/../src/maemo-mapper.c:2885
+#: ../src/maemo-mapper.c:2267 ../src/maemo-mapper.c:2907
 msgid "none"
 msgstr "nessuna"
 
-#: po/../src/maemo-mapper.c:7125 po/../src/maemo-mapper.c:7560
+#: ../src/maemo-mapper.c:7243 ../src/maemo-mapper.c:7682
 msgid "reading"
 msgstr "lettura"
 
-#: po/../src/maemo-mapper.c:8900 po/../src/maemo-mapper.c:8902
+#: ../src/maemo-mapper.c:9020 ../src/maemo-mapper.c:9022
 msgid "toggled"
 msgstr "scambiate"
 
-#: po/../src/maemo-mapper.c:9885 po/../src/maemo-mapper.c:9979
+#: ../src/maemo-mapper.c:10089 ../src/maemo-mapper.c:10183
 msgid "up to about"
 msgstr "fino a circa"
 
-#: po/../src/maemo-mapper.c:7125
+#: ../src/maemo-mapper.c:7243
 msgid "writing"
 msgstr "scrittura"
index 1100bf492acfccfb831de61d695348590526e1bd..8cd55789bd924288eda09056c2ced85d83950c4b 100644 (file)
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: maemo-mapper 1.0.2\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-01-28 23:17-0500\n"
+"POT-Creation-Date: 2007-02-12 23:36-0500\n"
 "PO-Revision-Date: 2006-07-04 09:56+0200\n"
 "Last-Translator: Mischa Molhoek <mischamolhoek@gmail.com>\n"
 "Language-Team: John Costigan <gnuite@gmail.com>\n"
@@ -19,32 +19,40 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: po/../src/maemo-mapper.c:11246
+#: ../src/maemo-mapper.c:11435
 msgid "Add"
 msgstr "Add"
 
-#: po/../src/maemo-mapper.c:10980
+#: ../src/maemo-mapper.c:11179
 msgid "Add Category"
 msgstr "Add Category"
 
-#: po/../src/maemo-mapper.c:5899 po/../src/maemo-mapper.c:11657
+#: ../src/maemo-mapper.c:6007 ../src/maemo-mapper.c:11843
 msgid "Add POI"
 msgstr "Add POI"
 
-#: po/../src/maemo-mapper.c:4686
+#: ../src/maemo-mapper.c:4783
 msgid "Advance Notice"
 msgstr "Aankondiging"
 
-#: po/../src/maemo-mapper.c:10173
+#: ../src/maemo-mapper.c:10378
 msgid "Along Route - Radius (tiles):"
 msgstr "Along Route - Radius (tiles):"
 
-#: po/../src/maemo-mapper.c:2827
+#: ../src/maemo-mapper.c:2849
 #, fuzzy
 msgid "Altitude"
 msgstr "Breedtegraad"
 
-#: po/../src/maemo-mapper.c:7820
+#: ../src/maemo-mapper.c:9780
+msgid ""
+"An error occurred while retrieving the repositories.  The web service may be "
+"temporarily down."
+msgstr ""
+"An error occurred while retrieving the repositories.  The web service may be "
+"temporarily down."
+
+#: ../src/maemo-mapper.c:7942
 msgid ""
 "An error occurred while trying to reset the bluetooth radio.\n"
 "\n"
@@ -56,258 +64,258 @@ msgstr ""
 "Did you make sure to modify\n"
 "the /etc/sudoers file?"
 
-#: po/../src/maemo-mapper.c:4682
+#: ../src/maemo-mapper.c:4779
 msgid "Announce"
 msgstr "Aankondigen"
 
-#: po/../src/maemo-mapper.c:10209
+#: ../src/maemo-mapper.c:10414
 msgid "Area"
 msgstr "Gebied"
 
-#: po/../src/maemo-mapper.c:4651 po/../src/maemo-mapper.c:5763
+#: ../src/maemo-mapper.c:4748 ../src/maemo-mapper.c:5871
 msgid "Auto-Center"
 msgstr "Automatisch-Centreren"
 
-#: po/../src/maemo-mapper.c:9336
+#: ../src/maemo-mapper.c:9456
 msgid "Auto-Center Mode: Lat/Lon"
 msgstr "Automatisch-Centreren Mode: Lengtegr/Breedtegr"
 
-#: po/../src/maemo-mapper.c:9321
+#: ../src/maemo-mapper.c:9441
 msgid "Auto-Center Mode: Lead"
 msgstr "Automatisch-Centreren Mode: Lead"
 
-#: po/../src/maemo-mapper.c:9350
+#: ../src/maemo-mapper.c:9470
 msgid "Auto-Center Off"
 msgstr "Automatisch-Centreren Uit"
 
-#: po/../src/maemo-mapper.c:5728
+#: ../src/maemo-mapper.c:5836
 msgid "Auto-Download"
 msgstr "Automatisch-Downloaden"
 
-#: po/../src/maemo-mapper.c:8874
+#: ../src/maemo-mapper.c:8994
 msgid "Auto-Update"
 msgstr "Automatisch-Updaten"
 
-#: po/../src/maemo-mapper.c:7395
+#: ../src/maemo-mapper.c:7517
 #, fuzzy
 msgid "Bottom-Left"
 msgstr "Rechts-onder"
 
-#: po/../src/maemo-mapper.c:7394 po/../src/maemo-mapper.c:10272
+#: ../src/maemo-mapper.c:7516 ../src/maemo-mapper.c:10477
 msgid "Bottom-Right"
 msgstr "Rechts-onder"
 
-#: po/../src/maemo-mapper.c:4869 po/../src/maemo-mapper.c:9538
+#: ../src/maemo-mapper.c:4966 ../src/maemo-mapper.c:9657
 msgid "Browse..."
 msgstr "Blader..."
 
-#: po/../src/maemo-mapper.c:10164
+#: ../src/maemo-mapper.c:10369
 msgid "By Area (see tab)"
 msgstr "By Area (see tab)"
 
-#: po/../src/maemo-mapper.c:9528
+#: ../src/maemo-mapper.c:9647
 msgid "Cache Dir."
 msgstr "Cache Dir."
 
-#: po/../src/maemo-mapper.c:9474
+#: ../src/maemo-mapper.c:9593
 msgid ""
 "Cannot delete the last repository - there must be at lease one repository."
 msgstr ""
 "Cannot delete the last repository - there must be at lease one repository."
 
-#: po/../src/maemo-mapper.c:10435
+#: ../src/maemo-mapper.c:10640
 msgid ""
 "Cannot enable GPS until a GPS Receiver MAC is set in the Settings dialog box."
 msgstr ""
 "Kan GPS niet aanzetten totdat GPS MAC adres is ingevoerd in het Configuratie "
 "scherm"
 
-#: po/../src/maemo-mapper.c:11446
+#: ../src/maemo-mapper.c:11665
 msgid "Category"
 msgstr "Category"
 
-#: po/../src/maemo-mapper.c:11237
+#: ../src/maemo-mapper.c:11426
 msgid "Category List"
 msgstr "Category List"
 
-#: po/../src/maemo-mapper.c:11686
+#: ../src/maemo-mapper.c:11872
 msgid "Category: "
 msgstr "Category: "
 
-#: po/../src/maemo-mapper.c:5702 po/../src/maemo-mapper.c:5716
-#: po/../src/maemo-mapper.c:10117
+#: ../src/maemo-mapper.c:5810 ../src/maemo-mapper.c:5824
+#: ../src/maemo-mapper.c:10322
 msgid "Clear"
 msgstr "Opschonen"
 
-#: po/../src/maemo-mapper.c:5814
+#: ../src/maemo-mapper.c:5922
 msgid "Close"
 msgstr "Sluiten"
 
-#: po/../src/maemo-mapper.c:4425
+#: ../src/maemo-mapper.c:4522
 #, fuzzy
 msgid "Colors"
 msgstr "Sluiten"
 
-#: po/../src/maemo-mapper.c:4610
+#: ../src/maemo-mapper.c:4707
 #, fuzzy
 msgid "Colors..."
 msgstr "Download..."
 
-#: po/../src/maemo-mapper.c:9878 po/../src/maemo-mapper.c:9971
+#: ../src/maemo-mapper.c:10082 ../src/maemo-mapper.c:10175
 msgid "Confirm DELETION of"
 msgstr "Confirm DELETION of"
 
-#: po/../src/maemo-mapper.c:9481
+#: ../src/maemo-mapper.c:9600
 msgid "Confirm delete of repository"
 msgstr "Confirm delete of repository"
 
-#: po/../src/maemo-mapper.c:10846
+#: ../src/maemo-mapper.c:11051
 msgid "Confirm delete of waypoint"
 msgstr "Confirm delete of waypoint"
 
-#: po/../src/maemo-mapper.c:9884 po/../src/maemo-mapper.c:9977
+#: ../src/maemo-mapper.c:10088 ../src/maemo-mapper.c:10181
 msgid "Confirm download of"
 msgstr "Confirm download of"
 
-#: po/../src/maemo-mapper.c:5918
+#: ../src/maemo-mapper.c:6026
 msgid "Copy Description to Clipboard"
 msgstr "Copy Description to Clipboard"
 
-#: po/../src/maemo-mapper.c:5891 po/../src/maemo-mapper.c:5916
+#: ../src/maemo-mapper.c:5999 ../src/maemo-mapper.c:6024
 msgid "Copy Lat/Lon to Clipboard"
 msgstr "Copy Lat/Lon to Clipboard"
 
-#: po/../src/maemo-mapper.c:8977
+#: ../src/maemo-mapper.c:9097
 #, fuzzy
 msgid ""
 "Could not generate directions. Make sure your source and destination are "
 "valid."
 msgstr "Kon geen route generen. Vul geldige locaties in."
 
-#: po/../src/maemo-mapper.c:2242
+#: ../src/maemo-mapper.c:2260
 #, fuzzy
 msgid "DGPS"
 msgstr "GPS"
 
-#: po/../src/maemo-mapper.c:4431
+#: ../src/maemo-mapper.c:4528
 msgid "Defaults"
 msgstr "Defaults"
 
-#: po/../src/maemo-mapper.c:4797
+#: ../src/maemo-mapper.c:4894
 msgid "Degrees Format"
 msgstr "Degrees Format"
 
-#: po/../src/maemo-mapper.c:5925 po/../src/maemo-mapper.c:10961
-#: po/../src/maemo-mapper.c:11627
+#: ../src/maemo-mapper.c:6033 ../src/maemo-mapper.c:11160
+#: ../src/maemo-mapper.c:11815
 msgid "Delete"
 msgstr "Delete"
 
-#: po/../src/maemo-mapper.c:10154
+#: ../src/maemo-mapper.c:10359
 msgid "Delete Maps"
 msgstr "Delete Maps"
 
-#: po/../src/maemo-mapper.c:11334
+#: ../src/maemo-mapper.c:11523
 msgid "Delete POI?"
 msgstr "Delete POI?"
 
-#: po/../src/maemo-mapper.c:10876
+#: ../src/maemo-mapper.c:11081
 msgid "Delete category?"
 msgstr "Delete category?"
 
-#: po/../src/maemo-mapper.c:9663
+#: ../src/maemo-mapper.c:9856
 msgid "Delete..."
 msgstr "Delete..."
 
-#: po/../src/maemo-mapper.c:11292
+#: ../src/maemo-mapper.c:11481
 #, fuzzy
 msgid "Desc."
 msgstr "Misc."
 
-#: po/../src/maemo-mapper.c:10999 po/../src/maemo-mapper.c:11699
+#: ../src/maemo-mapper.c:11198 ../src/maemo-mapper.c:11898
 msgid "Desc.: "
 msgstr "Desc.: "
 
-#: po/../src/maemo-mapper.c:4287
+#: ../src/maemo-mapper.c:4384
 #, fuzzy
 msgid "Description"
 msgstr "Bestemming"
 
-#: po/../src/maemo-mapper.c:8891
+#: ../src/maemo-mapper.c:9011
 msgid "Destination"
 msgstr "Bestemming"
 
-#: po/../src/maemo-mapper.c:5797
+#: ../src/maemo-mapper.c:5905
 #, fuzzy
 msgid "Details..."
 msgstr "Instellingen..."
 
-#: po/../src/maemo-mapper.c:10618
+#: ../src/maemo-mapper.c:10823
 #, fuzzy
 msgid "Distance to Location"
 msgstr "Bebruik GPS Locatie"
 
-#: po/../src/maemo-mapper.c:10816
+#: ../src/maemo-mapper.c:11021
 #, fuzzy
 msgid "Distance to Waypoint"
 msgstr "Route Markering"
 
-#: po/../src/maemo-mapper.c:10141
+#: ../src/maemo-mapper.c:10346
 #, fuzzy
 msgid "Download Maps"
 msgstr "Landkaarten worden gedownload"
 
-#: po/../src/maemo-mapper.c:8838
+#: ../src/maemo-mapper.c:8958
 msgid "Download Route"
 msgstr "Download Route"
 
-#: po/../src/maemo-mapper.c:5894 po/../src/maemo-mapper.c:5921
+#: ../src/maemo-mapper.c:6002 ../src/maemo-mapper.c:6029
 #, fuzzy
 msgid "Download Route to..."
 msgstr "Download Route"
 
-#: po/../src/maemo-mapper.c:9543
+#: ../src/maemo-mapper.c:9662
 #, fuzzy
 msgid "Download Zoom Steps"
 msgstr "Download Route"
 
-#: po/../src/maemo-mapper.c:5696
+#: ../src/maemo-mapper.c:5804 ../src/maemo-mapper.c:9837
 msgid "Download..."
 msgstr "Download..."
 
-#: po/../src/maemo-mapper.c:6306
+#: ../src/maemo-mapper.c:6422
 msgid "Downloading maps"
 msgstr "Landkaarten worden gedownload"
 
-#: po/../src/maemo-mapper.c:11243
+#: ../src/maemo-mapper.c:11432
 msgid "Edit"
 msgstr "Edit"
 
-#: po/../src/maemo-mapper.c:11695
+#: ../src/maemo-mapper.c:11894
 msgid "Edit Categories..."
 msgstr "Edit Categories..."
 
-#: po/../src/maemo-mapper.c:10955
+#: ../src/maemo-mapper.c:11154
 msgid "Edit Category"
 msgstr "Edit Category"
 
-#: po/../src/maemo-mapper.c:5902 po/../src/maemo-mapper.c:11621
+#: ../src/maemo-mapper.c:6010 ../src/maemo-mapper.c:11809
 msgid "Edit POI"
 msgstr "Edit POI"
 
-#: po/../src/maemo-mapper.c:5789
+#: ../src/maemo-mapper.c:5897
 msgid "Enable GPS"
 msgstr "Activeer GPS"
 
-#: po/../src/maemo-mapper.c:4698
+#: ../src/maemo-mapper.c:4795
 msgid "Enable Voice Synthesis (requires flite)"
 msgstr "Activeer Spraak (heeft geinstallerde flite nodig)"
 
-#: po/../src/maemo-mapper.c:11024 po/../src/maemo-mapper.c:11280
+#: ../src/maemo-mapper.c:11223 ../src/maemo-mapper.c:11469
 #, fuzzy
 msgid "Enabled"
 msgstr "Activeer GPS"
 
-#: po/../src/maemo-mapper.c:6569
+#: ../src/maemo-mapper.c:6684
 msgid ""
 "Error in download.  Check internet connection and/or Map Repository URL "
 "Format."
@@ -315,230 +323,237 @@ msgstr ""
 "Error in download.  Check internet connection and/or Map Repository URL "
 "Format."
 
-#: po/../src/maemo-mapper.c:7571 po/../src/maemo-mapper.c:9031
-#: po/../src/maemo-mapper.c:9074 po/../src/maemo-mapper.c:9129
+#: ../src/maemo-mapper.c:7693 ../src/maemo-mapper.c:9151
+#: ../src/maemo-mapper.c:9194 ../src/maemo-mapper.c:9249
 msgid "Error parsing GPX file."
 msgstr "Fout by verwerken GPX bestand."
 
-#: po/../src/maemo-mapper.c:1330
+#: ../src/maemo-mapper.c:1346
 #, fuzzy
 msgid "Error while writing to file"
 msgstr "Fout bij schrijven GPX bestand."
 
-#: po/../src/maemo-mapper.c:9151 po/../src/maemo-mapper.c:9216
+#: ../src/maemo-mapper.c:9271 ../src/maemo-mapper.c:9336
 msgid "Error writing GPX file."
 msgstr "Fout bij schrijven GPX bestand."
 
-#: po/../src/maemo-mapper.c:4759
+#: ../src/maemo-mapper.c:4856
 msgid "Escape Key"
 msgstr "Escape Key"
 
-#: po/../src/maemo-mapper.c:3064
+#: ../src/maemo-mapper.c:3156
 msgid "Establishing GPS fix"
 msgstr "GPS zoekt satellieten"
 
-#: po/../src/maemo-mapper.c:2246
+#: ../src/maemo-mapper.c:2264
 msgid "Estimated"
 msgstr "Estimated"
 
-#: po/../src/maemo-mapper.c:8965
+#: ../src/maemo-mapper.c:9085
 msgid "Failed to connect to GPX Directions server"
 msgstr "Failed to connect to GPX Directions server"
 
-#: po/../src/maemo-mapper.c:5132
+#: ../src/maemo-mapper.c:5253
 msgid "Failed to initialize GConf.  Quitting."
 msgstr "initialiseren GConf mislukt.  Programma wordt afgesloten."
 
-#: po/../src/maemo-mapper.c:3810
+#: ../src/maemo-mapper.c:3907
 msgid "Failed to initialize GConf.  Settings were not saved."
 msgstr "initialiseren GConf mislukt.  Instellingen niet opgeslagen."
 
-#: po/../src/maemo-mapper.c:7123 po/../src/maemo-mapper.c:7559
+#: ../src/maemo-mapper.c:7241 ../src/maemo-mapper.c:7681
 msgid "Failed to open file for"
 msgstr "Failed to open file for"
 
-#: po/../src/maemo-mapper.c:6780
+#: ../src/maemo-mapper.c:6898
 msgid "Failed to open file for writing"
 msgstr "Failed to open file for writing"
 
-#: po/../src/maemo-mapper.c:3009
+#: ../src/maemo-mapper.c:3037
 msgid "Failed to open or create database"
 msgstr "Failed to open or create database"
 
-#: po/../src/maemo-mapper.c:1331
+#: ../src/maemo-mapper.c:1347
 msgid "File is incomplete."
 msgstr "File is incomplete."
 
-#: po/../src/maemo-mapper.c:2872
+#: ../src/maemo-mapper.c:2894
 msgid "Fix"
 msgstr "Fix"
 
-#: po/../src/maemo-mapper.c:2881
+#: ../src/maemo-mapper.c:2903
 msgid "Fix Quality"
 msgstr "Fix Quality"
 
-#: po/../src/maemo-mapper.c:2245
+#: ../src/maemo-mapper.c:2263
 msgid "Float RTK"
 msgstr "Float RTK"
 
-#: po/../src/maemo-mapper.c:5740
+#: ../src/maemo-mapper.c:5848
 msgid "Full Screen"
 msgstr "Volledig Scherm"
 
-#: po/../src/maemo-mapper.c:4621 po/../src/maemo-mapper.c:5785
+#: ../src/maemo-mapper.c:4718 ../src/maemo-mapper.c:5893
 msgid "GPS"
 msgstr "GPS"
 
-#: po/../src/maemo-mapper.c:2775
+#: ../src/maemo-mapper.c:2797
 msgid "GPS Details"
 msgstr "GPS Details"
 
-#: po/../src/maemo-mapper.c:2788
+#: ../src/maemo-mapper.c:2810
 #, fuzzy
 msgid "GPS Information"
 msgstr "GPS Locatie"
 
-#: po/../src/maemo-mapper.c:10223
+#: ../src/maemo-mapper.c:10428
 msgid "GPS Location"
 msgstr "GPS Locatie"
 
-#: po/../src/maemo-mapper.c:4443
+#: ../src/maemo-mapper.c:4540
 msgid "GPS Mark"
 msgstr "GPS Mark"
 
-#: po/../src/maemo-mapper.c:2836
+#: ../src/maemo-mapper.c:2858
 msgid "Heading"
 msgstr "Heading"
 
-#: po/../src/maemo-mapper.c:5811
+#: ../src/maemo-mapper.c:5919
 msgid "Help"
 msgstr "Help"
 
-#: po/../src/maemo-mapper.c:4842
+#: ../src/maemo-mapper.c:4939
 #, fuzzy
 msgid "Information Font Size"
 msgstr "GPS Locatie"
 
-#: po/../src/maemo-mapper.c:5714
+#: ../src/maemo-mapper.c:5822
 msgid "Insert Breakpoint"
 msgstr "Insert Breakpoint"
 
-#: po/../src/maemo-mapper.c:10379
+#: ../src/maemo-mapper.c:10584
 msgid "Invalid Bottom-Right Latitude"
 msgstr "Ongeldige Rechts-Onder Breedtegraad"
 
-#: po/../src/maemo-mapper.c:10386
+#: ../src/maemo-mapper.c:10591
 msgid "Invalid Bottom-Right Longitude"
 msgstr "Ongeldige Rechts-Onder Lengtegraad"
 
-#: po/../src/maemo-mapper.c:8318 po/../src/maemo-mapper.c:8329
+#: ../src/maemo-mapper.c:8440 ../src/maemo-mapper.c:8451
 msgid "Invalid NMEA input from receiver!"
 msgstr "Ongeldige NMEA invoer van ontvanger!"
 
-#: po/../src/maemo-mapper.c:10365
+#: ../src/maemo-mapper.c:10570
 msgid "Invalid Top-Left Latitude"
 msgstr "Ongeldige Links-Boven Breedtegraad"
 
-#: po/../src/maemo-mapper.c:10372
+#: ../src/maemo-mapper.c:10577
 msgid "Invalid Top-Left Longitude"
 msgstr "Ongeldige Links-Boven Lengtegraad"
 
-#: po/../src/maemo-mapper.c:4750
+#: ../src/maemo-mapper.c:4847
 msgid "Keep Display On Only in Fullscreen Mode"
 msgstr "Hou het display alleen aan in volledig scherm mode"
 
-#: po/../src/maemo-mapper.c:11287 po/../src/maemo-mapper.c:11441
+#: ../src/maemo-mapper.c:11476 ../src/maemo-mapper.c:11660
 msgid "Label"
 msgstr "Label"
 
-#: po/../src/maemo-mapper.c:10991 po/../src/maemo-mapper.c:11678
+#: ../src/maemo-mapper.c:11190 ../src/maemo-mapper.c:11864
 msgid "Label: "
 msgstr "Label: "
 
-#: po/../src/maemo-mapper.c:11668
+#: ../src/maemo-mapper.c:11854
 #, fuzzy
 msgid "Lat, Lon: "
 msgstr "Breedte/Lengtegraad"
 
-#: po/../src/maemo-mapper.c:5767
+#: ../src/maemo-mapper.c:5875
 msgid "Lat/Lon"
 msgstr "Breedte/Lengtegraad"
 
-#: po/../src/maemo-mapper.c:2800 po/../src/maemo-mapper.c:10213
-#: po/../src/maemo-mapper.c:10550 po/../src/maemo-mapper.c:10674
-#: po/../src/maemo-mapper.c:11431
+#: ../src/maemo-mapper.c:2822 ../src/maemo-mapper.c:10418
+#: ../src/maemo-mapper.c:10755 ../src/maemo-mapper.c:10879
 msgid "Latitude"
 msgstr "Breedtegraad"
 
-#: po/../src/maemo-mapper.c:5773
+#: ../src/maemo-mapper.c:5881
 msgid "Lead"
 msgstr "Vooraf"
 
-#: po/../src/maemo-mapper.c:4668
+#: ../src/maemo-mapper.c:4765
 msgid "Lead Amount"
 msgstr "Hoeveel Vooraf"
 
-#: po/../src/maemo-mapper.c:4738
+#: ../src/maemo-mapper.c:4835
 msgid "Line Width"
 msgstr "Lijn Breedte"
 
-#: po/../src/maemo-mapper.c:2845
+#: ../src/maemo-mapper.c:2867
 msgid "Local time"
 msgstr "Local time"
 
-#: po/../src/maemo-mapper.c:4826 po/../src/maemo-mapper.c:5883
+#: ../src/maemo-mapper.c:4923 ../src/maemo-mapper.c:5991
+#: ../src/maemo-mapper.c:11655
 #, fuzzy
 msgid "Location"
 msgstr "GPS Locatie"
 
-#: po/../src/maemo-mapper.c:2809 po/../src/maemo-mapper.c:10217
-#: po/../src/maemo-mapper.c:10551 po/../src/maemo-mapper.c:10675
-#: po/../src/maemo-mapper.c:11436
+#: ../src/maemo-mapper.c:2831 ../src/maemo-mapper.c:10422
+#: ../src/maemo-mapper.c:10756 ../src/maemo-mapper.c:10880
 msgid "Longitude"
 msgstr "Lengtegraad"
 
-#: po/../src/maemo-mapper.c:4282 po/../src/maemo-mapper.c:4625
+#: ../src/maemo-mapper.c:4379 ../src/maemo-mapper.c:4722
 msgid "MAC"
 msgstr "MAC"
 
-#: po/../src/maemo-mapper.c:4604
+#: ../src/maemo-mapper.c:4701
 msgid "Maemo Mapper Settings"
 msgstr "Maemo Mapper Instellingen"
 
-#: po/../src/maemo-mapper.c:10111
+#: ../src/maemo-mapper.c:9761
+msgid ""
+"Maemo Mapper will now download and add a list of possibly-duplicate "
+"repositories from the internet.  Continue?"
+msgstr ""
+"Maemo Mapper will now download and add a list of possibly-duplicate "
+"repositories from the internet.  Continue?"
+
+#: ../src/maemo-mapper.c:10315
 msgid "Manage Maps"
 msgstr "Manage Maps"
 
-#: po/../src/maemo-mapper.c:5724
+#: ../src/maemo-mapper.c:5832
 msgid "Manage Maps..."
 msgstr "Manage Maps..."
 
-#: po/../src/maemo-mapper.c:5726
+#: ../src/maemo-mapper.c:5834
 msgid "Manage Repositories..."
 msgstr "Manage Repositories..."
 
-#: po/../src/maemo-mapper.c:2247
+#: ../src/maemo-mapper.c:2265
 msgid "Manual"
 msgstr "Manual"
 
-#: po/../src/maemo-mapper.c:5719
+#: ../src/maemo-mapper.c:5827
 msgid "Maps"
 msgstr "Kaarten"
 
-#: po/../src/maemo-mapper.c:2890
+#: ../src/maemo-mapper.c:2912
 msgid "Max speed"
 msgstr "Max speed"
 
-#: po/../src/maemo-mapper.c:4734
+#: ../src/maemo-mapper.c:4831
 msgid "Misc."
 msgstr "Misc."
 
-#: po/../src/maemo-mapper.c:4774
+#: ../src/maemo-mapper.c:4871
 #, fuzzy
 msgid "Misc. 2"
 msgstr "Misc."
 
-#: po/../src/maemo-mapper.c:10334 po/../src/maemo-mapper.c:10468
+#: ../src/maemo-mapper.c:10539 ../src/maemo-mapper.c:10673
 msgid ""
 "NOTE: You must set a Map URI in the Repository Manager in order to download "
 "maps."
@@ -546,28 +561,28 @@ msgstr ""
 "NOTE: You must set a Map URI in the Repository Manager in order to download "
 "maps."
 
-#: po/../src/maemo-mapper.c:9434 po/../src/maemo-mapper.c:9613
+#: ../src/maemo-mapper.c:9553 ../src/maemo-mapper.c:9732
 msgid "Name"
 msgstr "Name"
 
-#: po/../src/maemo-mapper.c:9424
+#: ../src/maemo-mapper.c:9543
 msgid "New Name"
 msgstr "New Name"
 
-#: po/../src/maemo-mapper.c:9603
+#: ../src/maemo-mapper.c:9722
 msgid "New Repository"
 msgstr "New Repository"
 
-#: po/../src/maemo-mapper.c:9666
+#: ../src/maemo-mapper.c:9859
 #, fuzzy
 msgid "New..."
 msgstr "Open..."
 
-#: po/../src/maemo-mapper.c:7382
+#: ../src/maemo-mapper.c:7504
 msgid "Next Repository"
 msgstr "Next Repository"
 
-#: po/../src/maemo-mapper.c:4952
+#: ../src/maemo-mapper.c:5049
 msgid ""
 "No GPS Receiver MAC Provided.\n"
 "GPS Disabled."
@@ -575,23 +590,23 @@ msgstr ""
 "Geen GPS MAC adres opgegeven.\n"
 "GPS uitgeschakeld."
 
-#: po/../src/maemo-mapper.c:9204
+#: ../src/maemo-mapper.c:9324
 #, fuzzy
 msgid "No route is loaded."
 msgstr "Route Downloaded"
 
-#: po/../src/maemo-mapper.c:10681 po/../src/maemo-mapper.c:10704
-#: po/../src/maemo-mapper.c:10734 po/../src/maemo-mapper.c:10756
-#: po/../src/maemo-mapper.c:10790 po/../src/maemo-mapper.c:10823
-#: po/../src/maemo-mapper.c:10860
+#: ../src/maemo-mapper.c:10886 ../src/maemo-mapper.c:10909
+#: ../src/maemo-mapper.c:10939 ../src/maemo-mapper.c:10961
+#: ../src/maemo-mapper.c:10995 ../src/maemo-mapper.c:11028
+#: ../src/maemo-mapper.c:11065
 msgid "No waypoints are visible."
 msgstr "No waypoints are visible."
 
-#: po/../src/maemo-mapper.c:5779
+#: ../src/maemo-mapper.c:5887
 msgid "None"
 msgstr "Geen"
 
-#: po/../src/maemo-mapper.c:4641
+#: ../src/maemo-mapper.c:4738
 msgid ""
 "Note: For manual rfcomm, enter a device path\n"
 "(e.g. \"/dev/rfcomm0\")."
@@ -599,396 +614,409 @@ msgstr ""
 "Note: For manual rfcomm, enter a device path\n"
 "(e.g. \"/dev/rfcomm0\")."
 
-#: po/../src/maemo-mapper.c:5694 po/../src/maemo-mapper.c:5710
+#: ../src/maemo-mapper.c:6089
+msgid ""
+"Now you must set up at least one Map Repository.  You can download a sample "
+"set from the internet by using the \"Download...\" button."
+msgstr ""
+"Now you must set up at least one Map Repository.  You can download a sample "
+"set from the internet by using the \"Download...\" button."
+
+#: ../src/maemo-mapper.c:5802 ../src/maemo-mapper.c:5818
 msgid "Open..."
 msgstr "Open..."
 
-#: po/../src/maemo-mapper.c:8880
+#: ../src/maemo-mapper.c:9000
 msgid "Origin"
 msgstr "Oorsprong"
 
-#: po/../src/maemo-mapper.c:10148
+#: ../src/maemo-mapper.c:10353
 msgid "Overwrite"
 msgstr "Overwrite"
 
-#: po/../src/maemo-mapper.c:4501 po/../src/maemo-mapper.c:4855
+#: ../src/maemo-mapper.c:4598 ../src/maemo-mapper.c:4952
 msgid "POI"
 msgstr "POI"
 
-#: po/../src/maemo-mapper.c:5758
+#: ../src/maemo-mapper.c:5866
 msgid "POI Categories..."
 msgstr "POI Categories..."
 
-#: po/../src/maemo-mapper.c:4859
+#: ../src/maemo-mapper.c:4956
 msgid "POI database"
 msgstr "POI database"
 
-#: po/../src/maemo-mapper.c:2243
+#: ../src/maemo-mapper.c:2261
 #, fuzzy
 msgid "PPS"
 msgstr "GPS"
 
-#: po/../src/maemo-mapper.c:4723
+#: ../src/maemo-mapper.c:4820
 msgid "Pitch"
 msgstr "Hoogte"
 
-#: po/../src/maemo-mapper.c:4317
+#: ../src/maemo-mapper.c:4414
 msgid "Please select a bluetooth device from the list."
 msgstr "Please select a bluetooth device from the list."
 
-#: po/../src/maemo-mapper.c:11745
+#: ../src/maemo-mapper.c:11957
+#, fuzzy
+msgid "Please specify a category for the POI."
+msgstr "Geef een bestemmings locatie op a.u.b."
+
+#: ../src/maemo-mapper.c:11946
 #, fuzzy
 msgid "Please specify a name for the POI."
 msgstr "Geef een bestemmings locatie op a.u.b."
 
-#: po/../src/maemo-mapper.c:11050
+#: ../src/maemo-mapper.c:11249
 #, fuzzy
 msgid "Please specify a name for the category."
 msgstr "Geef een start locatie op a.u.b."
 
-#: po/../src/maemo-mapper.c:8927
+#: ../src/maemo-mapper.c:9047
 #, fuzzy
 msgid "Please specify a source URL."
 msgstr "Geef een bestemmings locatie op a.u.b."
 
-#: po/../src/maemo-mapper.c:8939
+#: ../src/maemo-mapper.c:9059
 msgid "Please specify a start location."
 msgstr "Geef een start locatie op a.u.b."
 
-#: po/../src/maemo-mapper.c:8946
+#: ../src/maemo-mapper.c:9066
 msgid "Please specify an end location."
 msgstr "Geef een bestemmings locatie op a.u.b."
 
-#: po/../src/maemo-mapper.c:11787
+#: ../src/maemo-mapper.c:12000
 msgid "Problem adding POI"
 msgstr "Problem adding POI"
 
-#: po/../src/maemo-mapper.c:11083
+#: ../src/maemo-mapper.c:11286
 msgid "Problem adding category"
 msgstr "Problem adding category"
 
-#: po/../src/maemo-mapper.c:10892 po/../src/maemo-mapper.c:11347
+#: ../src/maemo-mapper.c:11096 ../src/maemo-mapper.c:11534
 msgid "Problem deleting POI"
 msgstr "Problem deleting POI"
 
-#: po/../src/maemo-mapper.c:10901
+#: ../src/maemo-mapper.c:11105
 msgid "Problem deleting category"
 msgstr "Problem deleting category"
 
-#: po/../src/maemo-mapper.c:11126
+#: ../src/maemo-mapper.c:11327
 msgid "Problem updating Category"
 msgstr "Problem updating Category"
 
-#: po/../src/maemo-mapper.c:11770
+#: ../src/maemo-mapper.c:11977
 msgid "Problem updating POI"
 msgstr "Problem updating POI"
 
-#: po/../src/maemo-mapper.c:11070
+#: ../src/maemo-mapper.c:11271
 msgid "Problem updating category"
 msgstr "Problem updating category"
 
-#: po/../src/maemo-mapper.c:2952
+#: ../src/maemo-mapper.c:2978
 msgid "Problem with POI database"
 msgstr "Problem with POI database"
 
-#: po/../src/maemo-mapper.c:2244
+#: ../src/maemo-mapper.c:2262
 msgid "Real Time Kinematic"
 msgstr "Real Time Kinematic"
 
-#: po/../src/maemo-mapper.c:9660
+#: ../src/maemo-mapper.c:9853
 #, fuzzy
 msgid "Rename..."
 msgstr "Open..."
 
-#: po/../src/maemo-mapper.c:9646
+#: ../src/maemo-mapper.c:9830
 msgid "Repositories"
 msgstr "Repositories"
 
-#: po/../src/maemo-mapper.c:5700
+#: ../src/maemo-mapper.c:5808
 msgid "Reset"
 msgstr "Reset"
 
-#: po/../src/maemo-mapper.c:5800 po/../src/maemo-mapper.c:7383
+#: ../src/maemo-mapper.c:5908 ../src/maemo-mapper.c:7505
 msgid "Reset Bluetooth"
 msgstr "Reset Bluetooth"
 
-#: po/../src/maemo-mapper.c:4480 po/../src/maemo-mapper.c:5690
-#: po/../src/maemo-mapper.c:5744
+#: ../src/maemo-mapper.c:4577 ../src/maemo-mapper.c:5798
+#: ../src/maemo-mapper.c:5852
 msgid "Route"
 msgstr "Route"
 
-#: po/../src/maemo-mapper.c:9023
+#: ../src/maemo-mapper.c:9143
 msgid "Route Downloaded"
 msgstr "Route Downloaded"
 
-#: po/../src/maemo-mapper.c:7568 po/../src/maemo-mapper.c:9071
+#: ../src/maemo-mapper.c:7690 ../src/maemo-mapper.c:9191
 msgid "Route Opened"
 msgstr "Route Geopend"
 
-#: po/../src/maemo-mapper.c:9213
+#: ../src/maemo-mapper.c:9333
 msgid "Route Saved"
 msgstr "Route Opgeslagen"
 
-#: po/../src/maemo-mapper.c:9278
+#: ../src/maemo-mapper.c:9398
 msgid "Routes are now hidden"
 msgstr "Routes zijn nu verborgen"
 
-#: po/../src/maemo-mapper.c:9272
+#: ../src/maemo-mapper.c:9392
 msgid "Routes are now shown"
 msgstr "Routes zijn nu zichtbaar"
 
-#: po/../src/maemo-mapper.c:2241
+#: ../src/maemo-mapper.c:2259
 msgid "SPS"
 msgstr "SPS"
 
-#: po/../src/maemo-mapper.c:2863
+#: ../src/maemo-mapper.c:2885
 msgid "Sat in use"
 msgstr "Sat in use"
 
-#: po/../src/maemo-mapper.c:2854
+#: ../src/maemo-mapper.c:2876
 msgid "Sat in view"
 msgstr "Sat in view"
 
-#: po/../src/maemo-mapper.c:2795
+#: ../src/maemo-mapper.c:2817
 msgid "Satellites details"
 msgstr "Satellites details"
 
-#: po/../src/maemo-mapper.c:2720
+#: ../src/maemo-mapper.c:2742
 msgid "Satellites in view"
 msgstr "Satellites in view"
 
-#: po/../src/maemo-mapper.c:5698 po/../src/maemo-mapper.c:5712
+#: ../src/maemo-mapper.c:5806 ../src/maemo-mapper.c:5820
 msgid "Save..."
 msgstr "Opslaan..."
 
-#: po/../src/maemo-mapper.c:4635
+#: ../src/maemo-mapper.c:4732
 #, fuzzy
 msgid "Scan..."
 msgstr "Opslaan..."
 
-#: po/../src/maemo-mapper.c:4293
+#: ../src/maemo-mapper.c:4390
 #, fuzzy
 msgid "Scanning for Bluetooth Devices"
 msgstr "Er wordt naar bluetooth apparaten gezocht"
 
-#: po/../src/maemo-mapper.c:3054
+#: ../src/maemo-mapper.c:3146
 msgid "Searching for GPS receiver"
 msgstr "Er wordt naar GPS ontvanger gezocht"
 
-#: po/../src/maemo-mapper.c:4257
+#: ../src/maemo-mapper.c:4354
 #, fuzzy
 msgid "Select Bluetooth Device"
 msgstr "Er wordt naar bluetooth apparaten gezocht"
 
-#: po/../src/maemo-mapper.c:11374
+#: ../src/maemo-mapper.c:11627
 msgid "Select POI"
 msgstr "Select POI"
 
-#: po/../src/maemo-mapper.c:11463
+#: ../src/maemo-mapper.c:11690
 msgid "Select one POI from the list."
 msgstr "Select one POI from the list."
 
-#: po/../src/maemo-mapper.c:4655
+#: ../src/maemo-mapper.c:4752
 msgid "Sensitivity"
 msgstr "Gevoeligheid"
 
-#: po/../src/maemo-mapper.c:5806
+#: ../src/maemo-mapper.c:5914
 msgid "Settings..."
 msgstr "Instellingen..."
 
-#: po/../src/maemo-mapper.c:10131
+#: ../src/maemo-mapper.c:10336
 msgid "Setup"
 msgstr "Setup"
 
-#: po/../src/maemo-mapper.c:5914
+#: ../src/maemo-mapper.c:6022
 msgid "Show Description"
 msgstr "Show Description"
 
-#: po/../src/maemo-mapper.c:5896 po/../src/maemo-mapper.c:5923
+#: ../src/maemo-mapper.c:6004 ../src/maemo-mapper.c:6031
 msgid "Show Distance to"
 msgstr "Show Distance to"
 
-#: po/../src/maemo-mapper.c:5793
+#: ../src/maemo-mapper.c:5901
 msgid "Show Information"
 msgstr "Show Information"
 
-#: po/../src/maemo-mapper.c:5889 po/../src/maemo-mapper.c:5912
+#: ../src/maemo-mapper.c:5997 ../src/maemo-mapper.c:6020
 #, fuzzy
 msgid "Show Lat/Lon"
 msgstr "Breedte/Lengtegraad"
 
-#: po/../src/maemo-mapper.c:4874
+#: ../src/maemo-mapper.c:4971
 msgid "Show POI below zoom"
 msgstr "Show POI below zoom"
 
-#: po/../src/maemo-mapper.c:2248
+#: ../src/maemo-mapper.c:2266
 msgid "Simulation"
 msgstr "Simulation"
 
-#: po/../src/maemo-mapper.c:8856
+#: ../src/maemo-mapper.c:8976
 msgid "Source URL"
 msgstr "Source URL"
 
-#: po/../src/maemo-mapper.c:2818 po/../src/maemo-mapper.c:4711
+#: ../src/maemo-mapper.c:2840 ../src/maemo-mapper.c:4808
 msgid "Speed"
 msgstr "Snelheid"
 
-#: po/../src/maemo-mapper.c:4816
+#: ../src/maemo-mapper.c:4913
 #, fuzzy
 msgid "Speed Limit"
 msgstr "Snelheid"
 
-#: po/../src/maemo-mapper.c:7384
+#: ../src/maemo-mapper.c:7506
 #, fuzzy
 msgid "Toggle GPS"
 msgstr "Activeer GPS"
 
-#: po/../src/maemo-mapper.c:7385
+#: ../src/maemo-mapper.c:7507
 msgid "Toggle GPS Info"
 msgstr "Toggle GPS Info"
 
-#: po/../src/maemo-mapper.c:7386
+#: ../src/maemo-mapper.c:7508
 msgid "Toggle Speed Limit"
 msgstr "Toggle Speed Limit"
 
-#: po/../src/maemo-mapper.c:7381
+#: ../src/maemo-mapper.c:7503
 msgid "Toggle Tracks"
 msgstr "Toggle Tracks"
 
-#: po/../src/maemo-mapper.c:7392 po/../src/maemo-mapper.c:10258
+#: ../src/maemo-mapper.c:7514 ../src/maemo-mapper.c:10463
 msgid "Top-Left"
 msgstr "Links-Boven"
 
-#: po/../src/maemo-mapper.c:7393
+#: ../src/maemo-mapper.c:7515
 #, fuzzy
 msgid "Top-Right"
 msgstr "Rechts-onder"
 
-#: po/../src/maemo-mapper.c:4464 po/../src/maemo-mapper.c:5706
-#: po/../src/maemo-mapper.c:5749
+#: ../src/maemo-mapper.c:4561 ../src/maemo-mapper.c:5814
+#: ../src/maemo-mapper.c:5857
 msgid "Track"
 msgstr "Route"
 
-#: po/../src/maemo-mapper.c:9126
+#: ../src/maemo-mapper.c:9246
 msgid "Track Opened"
 msgstr "Route Geopend"
 
-#: po/../src/maemo-mapper.c:9148
+#: ../src/maemo-mapper.c:9268
 msgid "Track Saved"
 msgstr "Route Opgeslagen"
 
-#: po/../src/maemo-mapper.c:9254
+#: ../src/maemo-mapper.c:9374
 msgid "Tracks are now hidden"
 msgstr "Routes zijn nu verborgen"
 
-#: po/../src/maemo-mapper.c:9248
+#: ../src/maemo-mapper.c:9368
 msgid "Tracks are now shown"
 msgstr "Routes zijn nu zichtbaar"
 
-#: po/../src/maemo-mapper.c:9519
+#: ../src/maemo-mapper.c:9638
 msgid "URL Format"
 msgstr "URI Formaat"
 
-#: po/../src/maemo-mapper.c:9760
+#: ../src/maemo-mapper.c:9953
 msgid "Unable to create cache directory for repository"
 msgstr "Unable to create cache directory for repository"
 
-#: po/../src/maemo-mapper.c:4781
+#: ../src/maemo-mapper.c:4878
 msgid "Units"
 msgstr "Units"
 
-#: po/../src/maemo-mapper.c:8870
+#: ../src/maemo-mapper.c:8990
 msgid "Use GPS Location"
 msgstr "Bebruik GPS Locatie"
 
-#: po/../src/maemo-mapper.c:5754
+#: ../src/maemo-mapper.c:5862
 msgid "Velocity Vector"
 msgstr "Snelheids Factor"
 
-#: po/../src/maemo-mapper.c:5736
+#: ../src/maemo-mapper.c:5844
 msgid "View"
 msgstr "View"
 
-#: po/../src/maemo-mapper.c:10239
+#: ../src/maemo-mapper.c:10444
 msgid "View Center"
 msgstr "Bekijk Midden"
 
-#: po/../src/maemo-mapper.c:9559
+#: ../src/maemo-mapper.c:9678
 #, fuzzy
 msgid "View Zoom Steps"
 msgstr "Vergrootings-Stappen"
 
-#: po/../src/maemo-mapper.c:10878
+#: ../src/maemo-mapper.c:11083
 msgid "WARNING: All POIs in that category will also be deleted!"
 msgstr "WARNING: All POIs in that category will also be deleted!"
 
-#: po/../src/maemo-mapper.c:5907
+#: ../src/maemo-mapper.c:6015
 #, fuzzy
 msgid "Waypoint"
 msgstr "Route Markering"
 
-#: po/../src/maemo-mapper.c:10187
+#: ../src/maemo-mapper.c:10392
 msgid "Zoom"
 msgstr "Vergroot"
 
-#: po/../src/maemo-mapper.c:10193
+#: ../src/maemo-mapper.c:10398
 msgid "Zoom Levels to Download: (0 = most detail)"
 msgstr "Vergrotings-niveaus om te Downloaden: (0 = meeste detail)"
 
-#: po/../src/maemo-mapper.c:7806 po/../src/maemo-mapper.c:7888
+#: ../src/maemo-mapper.c:7928 ../src/maemo-mapper.c:8010
 #, fuzzy
 msgid "Zoom to Level"
 msgstr "Vergrootings-Stappen"
 
-#: po/../src/maemo-mapper.c:9971 po/../src/maemo-mapper.c:9978
+#: ../src/maemo-mapper.c:10175 ../src/maemo-mapper.c:10182
 #, fuzzy
 msgid "about"
 msgstr "Route"
 
-#: po/../src/maemo-mapper.c:2721
+#: ../src/maemo-mapper.c:2743
 msgid "in use"
 msgstr "in use"
 
-#: po/../src/maemo-mapper.c:7369
+#: ../src/maemo-mapper.c:7491
 msgid "km"
 msgstr "km"
 
-#: po/../src/maemo-mapper.c:9879 po/../src/maemo-mapper.c:9885
-#: po/../src/maemo-mapper.c:9972 po/../src/maemo-mapper.c:9979
+#: ../src/maemo-mapper.c:10083 ../src/maemo-mapper.c:10089
+#: ../src/maemo-mapper.c:10176 ../src/maemo-mapper.c:10183
 #, fuzzy
 msgid "maps"
 msgstr "Kaarten"
 
-#: po/../src/maemo-mapper.c:7370
+#: ../src/maemo-mapper.c:7492
 msgid "mi."
 msgstr "mi."
 
-#: po/../src/maemo-mapper.c:7371
+#: ../src/maemo-mapper.c:7493
 msgid "n.m."
 msgstr "n.m."
 
-#: po/../src/maemo-mapper.c:2876
+#: ../src/maemo-mapper.c:2898
 msgid "nofix"
 msgstr "nofix"
 
-#: po/../src/maemo-mapper.c:2249 po/../src/maemo-mapper.c:2885
+#: ../src/maemo-mapper.c:2267 ../src/maemo-mapper.c:2907
 #, fuzzy
 msgid "none"
 msgstr "Geen"
 
-#: po/../src/maemo-mapper.c:7125 po/../src/maemo-mapper.c:7560
+#: ../src/maemo-mapper.c:7243 ../src/maemo-mapper.c:7682
 msgid "reading"
 msgstr "reading"
 
-#: po/../src/maemo-mapper.c:8900 po/../src/maemo-mapper.c:8902
+#: ../src/maemo-mapper.c:9020 ../src/maemo-mapper.c:9022
 msgid "toggled"
 msgstr "toggled"
 
-#: po/../src/maemo-mapper.c:9885 po/../src/maemo-mapper.c:9979
+#: ../src/maemo-mapper.c:10089 ../src/maemo-mapper.c:10183
 msgid "up to about"
 msgstr "up to about"
 
-#: po/../src/maemo-mapper.c:7125
+#: ../src/maemo-mapper.c:7243
 #, fuzzy
 msgid "writing"
 msgstr "Oorsprong"