Merge branch 'master' of ssh://github.com/osmandapp/Osmand into CoordinateInputImprovements

This commit is contained in:
Chumva 2018-06-21 16:33:02 +03:00
commit 1fe42339ee
54 changed files with 644 additions and 128 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

View file

@ -3,19 +3,19 @@
<item android:state_pressed="true">
<shape android:shape="rectangle">
<solid android:color="@color/ctrl_active_color_light" />
<solid android:color="@color/ctrl_active_light" />
<corners android:radius="@dimen/dialog_button_radius" />
</shape>
</item>
<item android:state_enabled="false">
<shape android:shape="rectangle">
<solid android:color="@color/ctrl_color_light" />
<solid android:color="@color/ctrl_light" />
<corners android:radius="@dimen/dialog_button_radius" />
</shape>
</item>
<item>
<shape android:shape="rectangle">
<solid android:color="@color/ctrl_color_light" />
<solid android:color="@color/ctrl_light" />
<corners android:radius="@dimen/dialog_button_radius" />
</shape>
</item>

View file

@ -3,19 +3,19 @@
<item android:state_pressed="true">
<shape android:shape="rectangle">
<solid android:color="@color/ctrl_active_color_light" />
<solid android:color="@color/ctrl_active_light" />
<corners android:radius="@dimen/dialog_button_radius" />
</shape>
</item>
<item android:state_enabled="false">
<shape android:shape="rectangle">
<solid android:color="@color/ctrl_color_light" />
<solid android:color="@color/ctrl_light" />
<corners android:radius="@dimen/dialog_button_radius" />
</shape>
</item>
<item>
<shape android:shape="rectangle">
<solid android:color="@color/ctrl_active_color_light" />
<solid android:color="@color/ctrl_active_light" />
<corners android:radius="@dimen/dialog_button_radius" />
</shape>
</item>

View file

@ -39,7 +39,7 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:visibility="visible"
app:itemBackground="?attr/bg_color"
app:itemBackground="?attr/card_bg_color"
app:menu="@menu/bottom_navigation_menu"/>
</LinearLayout>

View file

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/bottomShadowView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<ImageView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:scaleType="fitXY"
android:src="@drawable/bg_shadow_list_bottom"/>
</LinearLayout>

View file

@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/topShadowView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<View
android:layout_width="match_parent"
android:layout_height="6dp"/>
<ImageView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:scaleType="fitXY"
android:src="@drawable/bg_shadow_list_top"/>
</LinearLayout>

View file

@ -9,7 +9,7 @@
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/bg_color"
android:background="?attr/card_bg_color"
android:minHeight="@dimen/list_item_height_min"
android:orientation="horizontal"
android:paddingBottom="@dimen/content_padding_half"

View file

@ -0,0 +1,16 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<include layout="@layout/card_bottom_divider"/>
<View
android:layout_width="match_parent"
android:layout_height="4dp"/>
<include layout="@layout/card_top_divider"/>
</LinearLayout>

View file

@ -0,0 +1,118 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<include layout="@layout/list_item_divider"/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/card_bg_color"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="@dimen/list_item_height"
android:gravity="center_vertical">
<ImageView
android:id="@+id/icon"
android:layout_width="@dimen/list_item_icon_size"
android:layout_height="@dimen/list_item_icon_size"
android:layout_marginEnd="@dimen/list_item_icon_margin_right"
android:layout_marginLeft="@dimen/list_item_icon_margin_left"
android:layout_marginRight="@dimen/list_item_icon_margin_right"
android:layout_marginStart="@dimen/list_item_icon_margin_left"
tools:src="@drawable/ic_launcher_background"/>
<LinearLayout
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginEnd="@dimen/content_padding_standard"
android:layout_marginRight="@dimen/content_padding_standard"
android:layout_weight="1"
android:orientation="vertical">
<TextView
android:id="@+id/title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:ellipsize="end"
android:maxLines="1"
android:textAppearance="?attr/textAppearanceListItem"
android:textStyle="bold"
tools:text="Share location"/>
<TextView
android:id="@+id/description"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:ellipsize="end"
android:maxLines="1"
android:textAppearance="?attr/textAppearanceListItemSecondary"
tools:text="Live: 1 • All: 36"/>
</LinearLayout>
<ImageView
android:id="@+id/image_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginEnd="@dimen/content_padding_small"
android:layout_marginRight="@dimen/content_padding_small"
android:background="?attr/selectableItemBackgroundBorderless"
android:padding="@dimen/image_button_padding"
tools:src="@drawable/ic_overflow_menu_white"
tools:tint="@color/icon_light"/>
</LinearLayout>
<LinearLayout
android:id="@+id/show_on_map_row"
android:layout_width="match_parent"
android:layout_height="@dimen/list_item_height_min"
android:background="?attr/selectableItemBackground"
android:gravity="center_vertical"
android:paddingEnd="@dimen/content_padding_standard"
android:paddingLeft="@dimen/list_item_content_margin"
android:paddingRight="@dimen/content_padding_standard"
android:paddingStart="@dimen/list_item_content_margin">
<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginEnd="@dimen/content_padding_standard"
android:layout_marginRight="@dimen/content_padding_standard"
android:layout_weight="1"
android:text="@string/show_on_map"
android:textAppearance="?attr/textAppearanceListItemSecondary"
android:textColor="?attr/ctrl_active_color"
android:textStyle="bold"/>
<Switch
android:id="@+id/show_on_map_switch"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</LinearLayout>
<View
android:id="@+id/bottom_divider"
android:layout_width="match_parent"
android:layout_height="1dp"
android:layout_marginBottom="@dimen/card_divider_bottom_margin"
android:layout_marginLeft="@dimen/list_item_content_margin"
android:layout_marginStart="@dimen/list_item_content_margin"
android:background="?attr/card_divider_color"/>
</LinearLayout>
<include
android:id="@+id/bottom_shadow"
layout="@layout/card_bottom_divider"/>
</LinearLayout>

View file

@ -0,0 +1,68 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<FrameLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/card_bg_color">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="@dimen/list_item_height"
android:layout_marginBottom="@dimen/list_item_bottom_margin"
android:background="?attr/selectableItemBackground"
android:gravity="center_vertical">
<ImageView
android:id="@+id/icon"
android:layout_width="@dimen/list_item_icon_size"
android:layout_height="@dimen/list_item_icon_size"
android:layout_marginEnd="@dimen/list_item_icon_margin_right"
android:layout_marginLeft="@dimen/list_item_icon_margin_left"
android:layout_marginRight="@dimen/list_item_icon_margin_right"
android:layout_marginStart="@dimen/list_item_icon_margin_left"
tools:src="@drawable/ic_launcher_background"/>
<LinearLayout
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginEnd="@dimen/content_padding_standard"
android:layout_marginRight="@dimen/content_padding_standard"
android:layout_weight="1"
android:orientation="vertical">
<TextView
android:id="@+id/title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:ellipsize="end"
android:maxLines="1"
android:textAppearance="?attr/textAppearanceListItem"
android:textStyle="bold"
tools:text="Share location"/>
<TextView
android:id="@+id/description"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:ellipsize="end"
android:maxLines="1"
android:textAppearance="?attr/textAppearanceListItemSecondary"
tools:text="Live: 1 • All: 36"/>
</LinearLayout>
</LinearLayout>
</FrameLayout>
<include
android:id="@+id/bottom_shadow"
layout="@layout/card_bottom_divider"/>
</LinearLayout>

View file

@ -1,7 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<declare-styleable name="AppTheme">
<attr name="bg_color" format="reference" />
<attr name="card_bg_color" format="reference" />
<attr name="card_divider_color" format="reference" />
<attr name="screen_bg_color" format="reference" />
<attr name="icon_color" format="reference" />
<attr name="ctrl_active_color" format="reference" />
<attr name="ctrl_color" format="reference" />

View file

@ -1,31 +1,34 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="white_color">#fff</color>
<color name="white">#fff</color>
<color name="bg_color_light">#fff</color>
<color name="bg_color_dark">#222526</color>
<color name="card_bg_light">#fff</color>
<color name="card_bg_dark">#222526</color>
<color name="icon_color_light">#727272</color>
<color name="icon_color_dark">#727272</color>
<color name="screen_bg_light">#f0f0f0</color>
<color name="screen_bg_dark">#17191a</color>
<color name="icon_light">#727272</color>
<color name="icon_dark">#727272</color>
<color name="osmand_orange">#ff8f00</color>
<color name="ctrl_active_color_light">#237bff</color>
<color name="ctrl_active_color_dark">#d28521</color>
<color name="ctrl_active_light">#237bff</color>
<color name="ctrl_active_dark">#d28521</color>
<color name="ctrl_color_light">#f0f0f0</color>
<color name="ctrl_color_dark">#17191a</color>
<color name="ctrl_light">#f0f0f0</color>
<color name="ctrl_dark">#17191a</color>
<color name="primary_text_color_light">#212121</color>
<color name="primary_text_color_dark">#cccccc</color>
<color name="primary_text_light">#212121</color>
<color name="primary_text_dark">#cccccc</color>
<color name="secondary_text_color_light">#727272</color>
<color name="secondary_text_color_dark">#727272</color>
<color name="secondary_text_light">#727272</color>
<color name="secondary_text_dark">#727272</color>
<color name="description_text_color_light">#b3b3b3</color>
<color name="description_text_color_dark">#4d4d4d</color>
<color name="description_text_light">#b3b3b3</color>
<color name="description_text_dark">#4d4d4d</color>
<color name="divider_color_light">#f0f0f0</color>
<color name="divider_color_dark">#2d3133</color>
<color name="card_divider_light">#f0f0f0</color>
<color name="card_divider_dark">#2d3133</color>
</resources>

View file

@ -1,17 +1,39 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<dimen name="content_padding_small">4dp</dimen>
<dimen name="content_padding_half">8dp</dimen>
<dimen name="content_padding_standard">16dp</dimen>
<dimen name="progress_bar_size_small">32dp</dimen>
<dimen name="dialog_title_text_size">22sp</dimen>
<dimen name="action_bar_height">60dp</dimen>
<dimen name="dialog_padding_vertical">24dp</dimen>
<dimen name="dialog_padding_horizontal">60dp</dimen>
<dimen name="dialog_padding_horizontal_edit">44dp</dimen>
<dimen name="list_item_height_min">48dp</dimen>
<dimen name="dialog_button_height">36dp</dimen>
<dimen name="dialog_button_radius">2dp</dimen>
<dimen name="list_item_height">60dp</dimen>
<dimen name="list_item_height_min">48dp</dimen>
<dimen name="list_item_icon_size">32dp</dimen>
<dimen name="list_item_icon_margin_left">12dp</dimen>
<dimen name="list_item_icon_margin_right">20dp</dimen>
<dimen name="list_item_content_margin">64dp</dimen>
<dimen name="list_item_bottom_margin">3dp</dimen>
<dimen name="card_divider_bottom_margin">6dp</dimen>
<dimen name="image_button_padding">12dp</dimen>
<!-- Text sizes -->
<dimen name="dialog_title_text_size">22sp</dimen>
<dimen name="title_text_size">18sp</dimen>
<dimen name="descr_text_size">16sp</dimen>
<dimen name="action_bar_height">60dp</dimen>
</resources>
</resources>

View file

@ -1,4 +1,5 @@
<resources>
<string name="show_on_map">Show on map</string>
<string name="app_name">OsmAnd Telegram</string>
<string name="phone_number_title">Phone number</string>
<string name="phone_number_descr">Phone number in the international format</string>

View file

@ -2,23 +2,25 @@
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<item name="android:windowBackground">@color/bg_color_light</item>
<item name="android:colorBackground">@color/bg_color_light</item>
<item name="colorControlNormal">@color/primary_text_color_light</item>
<item name="colorControlActivated">@color/ctrl_active_color_light</item>
<item name="android:windowBackground">@color/screen_bg_light</item>
<item name="android:colorBackground">@color/screen_bg_light</item>
<item name="colorControlNormal">@color/primary_text_light</item>
<item name="colorControlActivated">@color/ctrl_active_light</item>
<item name="android:windowLightStatusBar">true</item>
<item name="colorPrimary">@color/ctrl_active_color_light</item>
<item name="colorPrimaryDark">@color/bg_color_light</item>
<item name="colorAccent">@color/ctrl_active_color_light</item>
<item name="android:textColorPrimary">@color/primary_text_color_light</item>
<item name="android:textColorSecondary">@color/secondary_text_color_light</item>
<item name="android:textColorTertiary">@color/description_text_color_light</item>
<item name="colorPrimary">@color/ctrl_active_light</item>
<item name="colorPrimaryDark">@color/card_bg_light</item>
<item name="colorAccent">@color/ctrl_active_light</item>
<item name="android:textColorPrimary">@color/primary_text_light</item>
<item name="android:textColorSecondary">@color/secondary_text_light</item>
<item name="android:textColorTertiary">@color/description_text_light</item>
<item name="bg_color">@color/bg_color_light</item>
<item name="icon_color">@color/icon_color_light</item>
<item name="ctrl_active_color">@color/ctrl_active_color_light</item>
<item name="ctrl_color">@color/ctrl_color_light</item>
<item name="card_bg_color">@color/card_bg_light</item>
<item name="card_divider_color">@color/card_divider_light</item>
<item name="screen_bg_color">@color/screen_bg_light</item>
<item name="icon_color">@color/icon_light</item>
<item name="ctrl_active_color">@color/ctrl_active_light</item>
<item name="ctrl_color">@color/ctrl_light</item>
<item name="bottom_nav_shadow">@drawable/bg_bottom_bar_shadow_with_line_day</item>
</style>
@ -36,7 +38,7 @@
<item name="android:paddingRight">16dp</item>
<item name="android:paddingTop">8dp</item>
<item name="android:paddingBottom">8dp</item>
<item name="android:textColor">@color/white_color</item>
<item name="android:textColor">@color/white</item>
<item name="android:textAllCaps">false</item>
<item name="android:background">@drawable/btn_round_blue</item>
</style>
@ -49,7 +51,7 @@
<item name="android:paddingRight">16dp</item>
<item name="android:paddingTop">8dp</item>
<item name="android:paddingBottom">8dp</item>
<item name="android:textColor">@color/secondary_text_color_light</item>
<item name="android:textColor">@color/secondary_text_light</item>
<item name="android:textAllCaps">false</item>
<item name="android:background">@drawable/btn_round</item>
</style>

View file

@ -82,7 +82,7 @@ class UiUtils(private val app: TelegramApplication) {
}
fun getThemedIcon(@DrawableRes id: Int): Drawable? {
return getDrawable(id, if (isLightContent) R.color.icon_color_light else 0)
return getDrawable(id, if (isLightContent) R.color.icon_light else 0)
}
fun getIcon(@DrawableRes id: Int): Drawable? {
@ -90,7 +90,7 @@ class UiUtils(private val app: TelegramApplication) {
}
fun getIcon(@DrawableRes id: Int, light: Boolean): Drawable? {
return getDrawable(id, if (light) R.color.icon_color_light else 0)
return getDrawable(id, if (light) R.color.icon_light else 0)
}
private fun createCircleBitmap(source: Bitmap, recycleSource: Boolean = false): Bitmap {

View file

@ -3093,4 +3093,8 @@ Praparcyjnaj pamiacі %4$s MB (Abmiežavańnie Android %5$s MB, Dalvik %6$s MB).
<string name="wiki_article_search_text">Pošuk adpaviednaha viki-artykula</string>
<string name="wiki_article_not_found">Artykul nie znojdzieny</string>
<string name="how_to_open_wiki_title">Jak adkryć artykuly Vikipedyi?</string>
</resources>
<string name="coord_input_edit_point">Redahavać kropku</string>
<string name="coord_input_add_point">Dadać kropku</string>
<string name="coord_input_save_as_track">Zachavać jak slied</string>
<string name="coord_input_save_as_track_descr">Vy dadali %1$s kropak. Uviadzicie nazvu fajla i nacisnicie «zachavać».</string>
</resources>

View file

@ -2334,7 +2334,7 @@
<string name="poi_material_plastic">Матэрыял: плястык</string>
<string name="poi_material_sandstone">Матэрыял: пяшчанік</string>
<string name="poi_material_granite_stone">Матэрыял: граніт</string>
<string name="poi_material_metal_wood">Матэрыял: мэталь, дрэва</string>
<string name="poi_material_metal_wood">Матэрыял: метал, дрэва</string>
<string name="poi_material_glass">Матэрыял: шкло</string>
<string name="poi_material_bronze">Матэрыял: бронза</string>
<string name="poi_material_earth">Матэрыял: зямля</string>
@ -3898,4 +3898,6 @@
<string name="poi_end_date">Дата закрыцця</string>
</resources>
<string name="poi_appliance">Бытавая тэхніка</string>
</resources>

View file

@ -3144,4 +3144,8 @@
\n
\n</string>
<string name="error_notification_desc">Калі ласка, адпраўце здымак экрана з гэтым апавяшчэннем на support@osmand.net</string>
<string name="coord_input_edit_point">Рэдагаваць кропку</string>
<string name="coord_input_add_point">Дадаць кропку</string>
<string name="coord_input_save_as_track">Захаваць як след</string>
<string name="coord_input_save_as_track_descr">Вы дадалі %1$s кропак. Увядзіце назву файла і націсніце «захаваць».</string>
</resources>

View file

@ -3135,4 +3135,12 @@
<string name="poi_seamark_clearance_height_open">Altura màxima (obert)</string>
<string name="poi_seamark_clearance_width">Amplada màxima</string>
<string name="poi_climbing_style">Estil d\'escalada</string>
<string name="poi_socket_chademo_output_filter">Connector CHAdeMO</string>
<string name="poi_socket_type2_output_filter">Connector tipus 2</string>
<string name="poi_socket_type2_combo_output_filter">Connector combinat tipus 2</string>
<string name="poi_socket_type3_output_filter">Connector tipus 3</string>
<string name="poi_socket_cee_blue_output_filter">Connector CEE blau</string>
<string name="poi_socket_schuko_output_filter">Connector Schuko</string>
<string name="poi_glacier_type">Tipus de glacera</string>
</resources>

View file

@ -1,4 +1,5 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><resources>
<?xml version='1.0' encoding='UTF-8'?>
<resources>
<string name="show_warnings_title">Mostra alertes…</string>
<string name="map_widget_fluorescent">Rutes amb fluorescència</string>
@ -2978,4 +2979,8 @@ Abasta l\'àrea: %1$s x %2$s</string>
<string name="get_osmand_live">Obteniu OsmAnd Live per disposar de totes les funcionalitats:Actualitzacions diàries de mapes sense límit de baixades, tots els connectors tant els de pagament com els de frac, Viquipèdia, ViquiViatges i molt més.</string>
<string name="quick_action_edit_actions">Edita les accions</string>
<string name="error_notification_desc">Us agrairem que envieu una captura de pantalla d\'aquesta notificació a support@osmand.net</string>
</resources>
<string name="coord_input_edit_point">Edita punt</string>
<string name="coord_input_add_point">Afegeix un punt</string>
<string name="coord_input_save_as_track">Desa com una traça</string>
<string name="coord_input_save_as_track_descr">Heu afegit %1$s punts. Introduïu un nom de fitxer i cliqueu per desar.</string>
</resources>

View file

@ -3470,7 +3470,7 @@
<string name="poi_motorcycle_sales_yes">Salg</string>
<string name="poi_motorcycle_sales_no">Salg: nej</string>
<string name="poi_motorcycle_sales_yes_used">Salg: ja; brugt</string>
<string name="poi_motorcycle_sales_yes_used">Salg: ja, brugt</string>
<string name="poi_motorcycle_sales_used">Salg: brugt</string>
<string name="poi_motorcycle_rental_yes">Udlejning</string>
<string name="poi_motorcycle_rental_no">Udlejning: nej</string>
@ -3942,4 +3942,8 @@
<string name="poi_end_date">Slutdato</string>
<string name="poi_appliance">Elektronik butik</string>
<string name="poi_outcrop">Klippefremspring</string>
</resources>

View file

@ -1,4 +1,5 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><resources>
<?xml version='1.0' encoding='UTF-8'?>
<resources>
<string name="srtm_paid_version_msg">Overvej at betale for \'Højdekurve\' udvidelsen for at støtte videre udvikling.</string>
<string name="av_def_action_video">Optag video</string>
<string name="av_def_action_audio">Optag lyd</string>
@ -2236,7 +2237,7 @@ Proportional hukommelse %4$s MB (Android grænse %5$s MB, Dalvik %6$s MB).</stri
<string name="osm_editors_ranking">Rangering af OSM-bidragsydere</string>
<string name="osm_live_subscription">OsmAnd Live-abonnement</string>
<string name="osm_live_subscribe_btn">Tilmeld</string>
<string name="osm_live_email_desc">For at at give oplysninger om bidrag.</string>
<string name="osm_live_email_desc">Nødvendig for at at give oplysninger om bidrag.</string>
<string name="osm_live_user_public_name">Offentligt navn</string>
<string name="osm_live_hide_user_name">Vis ikke navn i rapporter</string>
<string name="osm_live_support_region">Understøttet område</string>
@ -2754,8 +2755,8 @@ Repræsenterer område: %1$s x %2$s</string>
<string name="srtm_menu_download_descr">Hent \'Højdekurve\' kort til brug i området.</string>
<string name="shared_string_plugin">Udvidelse</string>
<string name="srtm_purchase_header">For at se højdekurver på kortet, køb og installer \'Højdekurve\' udvidelsen</string>
<string name="hillshade_menu_download_descr">"Hent \'Reliefoverlejring\' kort med reliefskygger for området."</string>
<string name="hillshade_purchase_header">Installer \'Højdekurve\' udvidelsen for at vise dem på kortet</string>
<string name="hillshade_menu_download_descr">For at se reliefskygger, hent overlejringskort med reliefskygger for området.</string>
<string name="hillshade_purchase_header">For at se reliefskygger på kortet er det nødvendigt at installere \'Højdekurve\' udvidelsen</string>
<string name="hide_from_zoom_level">Skjul fra zoom-niveau</string>
<string name="sorted_by_distance">Sorteret efter afstand</string>
<string name="search_favorites">Søg i Favoritter</string>
@ -3162,5 +3163,9 @@ Repræsenterer område: %1$s x %2$s</string>
<string name="shared_string_gpx_files">GPX-filer</string>
<string name="get_osmand_live">Abonner på OsmAnd Live og brug alle funktioner: daglige opdateringer af kort, alle gratis og betalte udvidelser, Wikipedia, Wikivoyage og meget mere.</string>
<string name="quick_action_edit_actions">Rediger handlinger</string>
<string name="error_notification_desc">Send et skærmbillede af meddelelsen til support@osmand.net</string>
</resources>
<string name="error_notification_desc">Send skærmbillede af meddelelsen til support@osmand.net</string>
<string name="coord_input_edit_point">Rediger punkt</string>
<string name="coord_input_add_point">Tilføj punkt</string>
<string name="coord_input_save_as_track">Gem som spor</string>
<string name="coord_input_save_as_track_descr">%1$s punkter tilføjet. Indtast filnavn og klik på gem.</string>
</resources>

View file

@ -2973,4 +2973,49 @@
<string name="poi_fire_hydrant_position_street">Οδός</string>
<string name="poi_fire_hydrant_position_underground">Υπόγειος</string>
<string name="poi_fire_hydrant_style_wsh">Μορφή κρουνού: wsh</string>
<string name="poi_fire_hydrant_style_water_source_main">Κύριο</string>
<string name="poi_fire_hydrant_style_water_source_pond">Δεξαμενή</string>
<string name="poi_fire_hydrant_style_water_source_stream">Ροή</string>
<string name="poi_fire_hydrant_style_water_source_cistern">Δεξαμενή</string>
<string name="poi_in_service_yes">Εν ενεργεία: ναι</string>
<string name="poi_street_cabinet_power">Τύπος ερμαρίου: ρεύμα</string>
<string name="poi_street_cabinet_telecom">Τύπος ερμαρίου: τηλεπικοινωνίες</string>
<string name="poi_street_cabinet_cable_tv">Τύπος ερμαρίου: καλωδιακή τηλεόραση</string>
<string name="poi_street_cabinet_gas">Τύπος ερμαρίου: αέριο</string>
<string name="poi_street_cabinet_postal_service">Τύπος ερμαρίου: ταχυδρομική υπηρεσία</string>
<string name="poi_street_cabinet_waste">Τύπος ερμαρίου: απορρίμματα</string>
<string name="poi_street_cabinet_water_management">Τύπος ερμαρίου: διαχείριση νερού</string>
<string name="poi_street_cabinet_street_lighting">Τύπος ερμαρίου: φωτισμός δρόμων</string>
<string name="poi_military_checkpoint">Στρατιωτικό σημείο ελέγχου</string>
<string name="poi_bicycle_parking_lockers">Ντουλάπια</string>
<string name="poi_bicycle_parking_tree">Δένδρο ποδηλάτου</string>
<string name="poi_bicycle_parking_streetpod">Υποδοχή δρόμου (Streetpod)</string>
<string name="poi_depth">Βάθος</string>
<string name="poi_salt_yes">Αλάτι</string>
<string name="poi_salt_no">Αλάτι: όχι</string>
<string name="poi_wheelchair_designated">Προσδιορισμένο</string>
<string name="poi_spoil_heap">Σωρός μπάζων</string>
<string name="poi_summer_camp">Κατασκήνωση</string>
<string name="poi_recreation_center">Κέντρο αναψυχής</string>
<string name="poi_crossing_activation_automatic">Ενεργοποίηση διασταύρωσης: αυτόματη</string>
<string name="poi_crossing_activation_local">Ενεργοποίηση διασταύρωσης: τοπική</string>
<string name="poi_crossing_activation_remote">Ενεργοποίηση διασταύρωσης: από μακριά</string>
<string name="poi_crossing_barrier_no">Μπαριέρα διασταύρωσης: όχι</string>
<string name="poi_crossing_barrier_yes">Μπαριέρα διασταύρωσης</string>
<string name="poi_crossing_barrier_full">Μπαριέρα διασταύρωσης: πλήρης</string>
<string name="poi_crossing_barrier_half">Μπαριέρα διασταύρωσης: μισή</string>
<string name="poi_crossing_barrier_double_half">Μπαριέρα διασταύρωσης: δύο μισές</string>
<string name="poi_crossing_bell_yes">Κουδούνι διασταύρωσης</string>
<string name="poi_crossing_bell_no">Κουδούνι διασταύρωσης: όχι</string>
<string name="poi_crossing_light_yes">Φως διασταύρωσης</string>
<string name="poi_crossing_light_no">Φως διασταύρωσης: όχι</string>
<string name="poi_crossing_on_demand_yes">Διασταύρωση κατά παραγγελία</string>
<string name="poi_crossing_on_demand_no">Διασταύρωση κατά παραγγελία: όχι</string>
</resources>

View file

@ -497,7 +497,7 @@
<string name="poi_hotel">Hotel</string>
<string name="poi_guest_house">Casa de huéspedes</string>
<string name="poi_hostel">Hostel;Hostal</string>
<string name="poi_motel">Motel;Telo</string>
<string name="poi_motel">Motel</string>
<string name="poi_alpine_hut">Cabaña alpina</string>
<string name="poi_chalet">Cabaña vacacional;Chalé</string>
<string name="poi_apartment">Departamento;Apartamento</string>
@ -1918,7 +1918,7 @@
<string name="poi_surface_salt">Superficie: sal</string>
<string name="poi_surface_snow">Superficie: nieve</string>
<string name="poi_route_bus_ref">Colectivo;Autobús</string>
<string name="poi_route_bus_ref">Colectivo</string>
<string name="poi_route_share_taxi_ref">Taxi compartido</string>
<string name="poi_route_trolleybus_ref">Trolebús</string>
<string name="poi_route_tram_ref">Tranvía</string>
@ -1926,7 +1926,7 @@
<string name="poi_route_light_rail_ref">Tren ligero</string>
<string name="poi_route_monorail_ref">Monorriel</string>
<string name="poi_route_funicular_ref">Funicular</string>
<string name="poi_route_ferry_ref">Transbordador;Ferri</string>
<string name="poi_route_ferry_ref">Transbordador (Ferri)</string>
<string name="poi_route_railway_ref">Ruta ferroviaria</string>
@ -2179,7 +2179,7 @@
<string name="poi_social_facility_for_drug_addicted">Drogadictos</string>
<string name="poi_social_facility_for_unemployed">Desempleados</string>
<string name="poi_social_facility_for_diseased">Enfermos</string>
<string name="poi_social_facility_for_child_juvenile">Niños y juvenil</string>
<string name="poi_social_facility_for_child_juvenile">Niños, juvenil</string>
<string name="poi_theatre_genre_philharmonic">Filarmónica</string>
<string name="poi_theatre_genre_musical">Musical</string>
@ -2327,7 +2327,7 @@
<string name="poi_material_plastic">Material: plástico</string>
<string name="poi_material_sandstone">Material: arenisca</string>
<string name="poi_material_granite_stone">Material: piedra de granito</string>
<string name="poi_material_metal_wood">Material: metal y madera</string>
<string name="poi_material_metal_wood">Material: metal, madera</string>
<string name="poi_material_glass">Material: vidrio</string>
<string name="poi_material_bronze">Material: bronce</string>
<string name="poi_material_earth">Material: tierra</string>
@ -3709,7 +3709,7 @@
<string name="poi_payment_centre">Centro de pagos</string>
<string name="poi_money_transfer">Transferencia de dinero</string>
<string name="poi_route_subway_ref">Subte;Metro</string>
<string name="poi_route_subway_ref">Subte</string>
<string name="poi_climbing_style">Estilo de escalada</string>

View file

@ -1,4 +1,5 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><resources>
<?xml version='1.0' encoding='UTF-8'?>
<resources>
<string name="rendering_attr_hideHouseNumbers_name">Números de casa</string>
<string name="copying_osmand_file_failed">Falló al copiar archivos</string>
@ -2969,4 +2970,8 @@ Lon %2$s</string>
<string name="get_osmand_live">Obtén «OsmAnd Live» para desbloquear todas las características: Actualizaciones diarias de mapas con descargas ilimitadas, todos los complementos gratuitos y de pago, artículos de Wikipedia, Wikiviajes y mucho más.</string>
<string name="quick_action_edit_actions">Editar acciones</string>
<string name="error_notification_desc">Por favor, envía la captura de pantalla de esta notificación a support@osmand.net</string>
</resources>
<string name="coord_input_edit_point">Editar punto</string>
<string name="coord_input_add_point">Añadir punto</string>
<string name="coord_input_save_as_track">Guardar como traza</string>
<string name="coord_input_save_as_track_descr">Añadiste %1$s puntos. Ingresa el nombre del archivo y pulsa en Guardar.</string>
</resources>

View file

@ -470,7 +470,7 @@
<string name="poi_hotel">Hotel</string>
<string name="poi_guest_house">Casa de huéspedes</string>
<string name="poi_hostel">Hostel;Hostal</string>
<string name="poi_motel">Motel;Telo</string>
<string name="poi_motel">Motel</string>
<string name="poi_alpine_hut">Cabaña alpina</string>
<string name="poi_chalet">Cabaña vacacional;Chalé</string>
<string name="poi_apartment">Departamento;Apartamento</string>
@ -1775,7 +1775,7 @@
<string name="poi_surface_ice">Superficie: hielo</string>
<string name="poi_surface_salt">Superficie: sal</string>
<string name="poi_surface_snow">Superficie: nieve</string>
<string name="poi_route_bus_ref">Autobús,colectivo</string>
<string name="poi_route_bus_ref">Autobús</string>
<string name="poi_route_share_taxi_ref">Taxi compartido</string>
<string name="poi_route_trolleybus_ref">Trolebús</string>
<string name="poi_route_tram_ref">Tranvía</string>
@ -1783,7 +1783,7 @@
<string name="poi_route_light_rail_ref">Tren ligero</string>
<string name="poi_route_monorail_ref">Monorriel</string>
<string name="poi_route_funicular_ref">Funicular</string>
<string name="poi_route_ferry_ref">Transbordador;Ferri</string>
<string name="poi_route_ferry_ref">Transbordador (Ferri)</string>
<string name="poi_route_railway_ref">Ruta ferroviaria</string>
<string name="poi_bridge_structure_simple_wooden">Estructura del puente: madera simple</string>
<string name="poi_historic_yes">Objeto histórico</string>
@ -2005,7 +2005,7 @@
<string name="poi_social_facility_for_drug_addicted">Drogadictos</string>
<string name="poi_social_facility_for_unemployed">Desempleados</string>
<string name="poi_social_facility_for_diseased">Enfermos</string>
<string name="poi_social_facility_for_child_juvenile">Niños y juvenil</string>
<string name="poi_social_facility_for_child_juvenile">Niños, juvenil</string>
<string name="poi_theatre_genre_philharmonic">Filarmónica</string>
<string name="poi_theatre_genre_musical">Musical</string>
<string name="poi_theatre_genre_drama">Drama</string>
@ -2139,7 +2139,7 @@
<string name="poi_material_plastic">Material: plástico</string>
<string name="poi_material_sandstone">Material: arenisca</string>
<string name="poi_material_granite_stone">Material: piedra de granito</string>
<string name="poi_material_metal_wood">Material: metal y madera</string>
<string name="poi_material_metal_wood">Material: metal, madera</string>
<string name="poi_material_glass">Material: vidrio</string>
<string name="poi_material_bronze">Material: bronce</string>
<string name="poi_material_earth">Material: tierra</string>
@ -3471,7 +3471,7 @@
<string name="poi_payment_centre">Centro de pagos</string>
<string name="poi_money_transfer">Transferencia de dinero</string>
<string name="poi_route_subway_ref">Metro;Subte</string>
<string name="poi_route_subway_ref">Metro</string>
<string name="poi_climbing_style">Estilo de escalada</string>

View file

@ -1,4 +1,5 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><resources>
<?xml version='1.0' encoding='UTF-8'?>
<resources>
<string name="rendering_attr_hideHouseNumbers_name">Números de casa</string>
<string name="copying_osmand_file_failed">Falló al copiar archivos</string>
@ -2969,4 +2970,8 @@ Lon %2$s</string>
<string name="get_osmand_live">Obtén «OsmAnd Live» para desbloquear todas las características: Actualizaciones diarias de mapas con descargas ilimitadas, todos los complementos gratuitos y de pago, artículos de Wikipedia, Wikiviajes y mucho más.</string>
<string name="quick_action_edit_actions">Editar acciones</string>
<string name="error_notification_desc">Por favor, envía la captura de pantalla de esta notificación a support@osmand.net</string>
</resources>
<string name="coord_input_edit_point">Editar punto</string>
<string name="coord_input_add_point">Añadir punto</string>
<string name="coord_input_save_as_track">Guardar como traza</string>
<string name="coord_input_save_as_track_descr">Añadiste %1$s puntos. Ingresa el nombre del archivo y pulsa en Guardar.</string>
</resources>

View file

@ -3646,4 +3646,48 @@
<string name="poi_boat_motorboat_rental_no">Txalupa motordunak: ez</string>
<string name="poi_boat_houseboat_rental_yes">Ur gaineko etxeak: bai</string>
<string name="poi_boat_houseboat_rental_no">Ur gaineko etxeak: ez</string>
<string name="poi_historic_civilization_greek_egyptian">"Zibilizazioa: Egipto helenistikoa (332 K.a. - 30 K.a.)"</string>
<string name="poi_historic_civilization_roman_and_byzantine_egyptian">Zibilizazioa: Egipto erromatar eta bizantziarra</string>
<string name="poi_historic_civilization_helladic">Zibilizazioa: heladikoa</string>
<string name="poi_historic_civilization_cycladic">Zibilizazioa: zikladikoa</string>
<string name="poi_historic_civilization_minoan">Zibilizazioa: minoikoa</string>
<string name="poi_historic_civilization_tiahuanacota">Zibilizazioa: tiahuanacota</string>
<string name="poi_animal_training">Animaliak heztea</string>
<string name="poi_historic_period_nuragic">Garai historikoa: nuragikoa</string>
<string name="poi_historic_period_stone_bronze_undetermined">Garai historikoa: harri aroa / brontze aroa (zehaztu gabea)</string>
<string name="poi_historic_period_bronze_age">Garai historikoa: brontze aroa</string>
<string name="poi_historic_period_principate">Garai historikoa: prinzipatua (24 K.a. - 284 K.o.)</string>
<string name="poi_historic_period_classical_greece">Garai historikoa: Grezia klasikoa (5. - 4. mendeak K.a.)</string>
<string name="poi_historic_period_archaic_greece">Garai historikoa: Grezia arkaikoa</string>
<string name="poi_historic_period_iron_age">Garai historikoa: burdin aroa</string>
<string name="poi_historic_period_roman_republic">Garai historikoa: Erromako errepublika (508 K.a. - 27 K.a.)</string>
<string name="poi_historic_period_hellenistic_greece">Garai historikoa: Grezia helenistikoa</string>
<string name="poi_historic_period_new_kingdom">Garai historikoa: Erresuma berria (1550 K.a. - 1069 K.a.)</string>
<string name="poi_historic_period_middle_kingdom">Garai historikoa: Tarteko erresuma (2055 K.a. - 1650 K.a.)</string>
<string name="poi_historic_period_predynastic_egypt">Garai historikoa: Dinastia aurreko Egipto</string>
<string name="poi_historic_period_early_dynastic_period">Garai historikoa: Hasierako periodo dinastikoa (3100 K.a. - 2686 K.a.)</string>
<string name="poi_historic_period_old_kingdom">Garai historikoa: Erresuma zaharra (2686 K.a. - 2181 K.a.)</string>
<string name="poi_historic_period_first_intermediate_period">Garai historikoa: Lehen tarteko periodoa (2181 K.a. - 2055 K.a.)</string>
<string name="poi_historic_period_second_intermediate_period">Garai historikoa: Bigarren tarteko periodoa (1650 K.a. - 1550 K.a.)</string>
<string name="poi_historic_period_third_intermediate_period">Garai historikoa: Hirugarren tarteko periodoa (1069 K.a. - 664 K.a.)</string>
<string name="poi_historic_period_first_persian_period">Garai historikoa: Lehen periodo persiarra</string>
<string name="poi_historic_period_late_period">Garai historikoa: Azken periodoa (664 K.a. - 332 K.a.)</string>
<string name="poi_historic_period_second_persian_period">Garai historikoa: Bigarren periodo persiarra</string>
<string name="poi_historic_period_alexander_the_great">Garai historikoa: Alexandro Handia</string>
<string name="poi_historic_period_ptolemaic_egypt">Garai historikoa: Egipto Ptolomeikoa (305 K.a. - 30 K.a.)</string>
<string name="poi_historic_period_christian_egypt">Garai historikoa: Egipto kristaua</string>
<string name="poi_historic_period_byzantine_egypt">"Garai historikoa: Egipto bizantziarra (30 K.a. - 641 K.o.) "</string>
<string name="poi_historic_period_persian_occupation">Garai historikoa: Okupazio pertsiarra</string>
<string name="poi_historic_period_greek_dark_ages">Garai historikoa: Greziako aro iluna (1100 K.a. - 800 K.a.)</string>
<string name="poi_historic_period_roman_greece">Garai historikoa: Grezia erromatarra (146 K.a. - 330 K.o.)</string>
<string name="poi_historic_period_roman_kingdom">Garai historikoa: Erresuma erromatarra (753 K.a. - 509 K.a.)</string>
<string name="poi_historic_period_dominate">Garai historikoa: dominatua (285 K.o. - 476 K.o.)</string>
<string name="poi_historic_era_paleolithic">Garai historikoa: Paleolitikoa (Duela 2,6 miloi - 10.000 urte)</string>
<string name="poi_historic_era_mesolithic">Garai historikoa: mesolitikoa</string>
<string name="poi_historic_era_neolithic">"Garai historikoa: neolitikoa"</string>
<string name="poi_futsal">Areto-futbola</string>
<string name="poi_protection_object_water">Babestutakoa: Ura</string>
<string name="poi_health_facility_type_office">Medikuaren kontsulta</string>
</resources>

View file

@ -3112,4 +3112,8 @@ Area honi dagokio: %1$s x %2$s</string>
<string name="map_widget_intermediate_time">Tarteko denbora</string>
<string name="quick_action_edit_actions">Editatu ekintzak</string>
<string name="error_notification_desc">Bidali jakinarazpen honen pantaila-argazkia support@osmand.net helbidera</string>
<string name="coord_input_edit_point">Editatu puntua</string>
<string name="coord_input_add_point">Gehitu puntua</string>
<string name="coord_input_save_as_track">Gorde lorratz gisa</string>
<string name="coord_input_save_as_track_descr">%1$s puntu gehitu dituzu. Sartu fitxategiaren izena eta sakatu gorde.</string>
</resources>

View file

@ -1,4 +1,5 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><resources>
<?xml version='1.0' encoding='UTF-8'?>
<resources>
<string name="offline_edition">Modifications hors-ligne</string>
<string name="offline_edition_descr">Toujours utiliser l\'édition hors-ligne.</string>
@ -3142,4 +3143,8 @@ représentant la zone : %1$s x %2$s</string>
<string name="get_osmand_live">Souscrivez à OsmAnd Live et vous pourrez utiliser toutes les fonctionnalités : Mise à jour quotidienne des cartes (avec un nombre illimité de téléchargements), Greffons, Wikipédia, Guides de voyage et bien plus encore ...</string>
<string name="quick_action_edit_actions">Modifier les actions</string>
<string name="error_notification_desc">Merci d\'envoyer une capture écran de cette notification à support@osmand.net</string>
</resources>
<string name="coord_input_edit_point">Modifier le point</string>
<string name="coord_input_add_point">Ajouter point</string>
<string name="coord_input_save_as_track">Enregistrer comme trace</string>
<string name="coord_input_save_as_track_descr">Vous avez ajouté %1$s points. Donnez un nom au fichier et cliquez sur Enregistrer.</string>
</resources>

View file

@ -1413,4 +1413,8 @@
<string name="poi_outcrop">מחשוף</string>
<string name="poi_service_car">שירות לרכב</string>
<string name="poi_glacier_type">סוג קרחון</string>
<string name="poi_checkpoint_type">סוג נקודת ביקורת</string>
</resources>

View file

@ -1,4 +1,5 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><resources>
<?xml version='1.0' encoding='UTF-8'?>
<resources>
<string name="shared_string_no">לא</string>
<string name="shared_string_yes">כן</string>
<string name="close_changeset">סגירת ערכת השינויים</string>
@ -3055,4 +3056,8 @@
<string name="get_osmand_live">ניתן להירשם ל־OsmAnd חי כדי לקבל גישה לכל התכונות: עדכוני מפה יומיים עם מספר בלתי מוגבל של הורדות, כל התוספים בתשלום ובחינם, ויקיפדיה, ויקימסע ועוד הרבה.</string>
<string name="quick_action_edit_actions">עריכת פעולות</string>
<string name="error_notification_desc">נא לשלוח צילום מסך של ההתרעה הזאת אל support@osmand.net</string>
</resources>
<string name="coord_input_edit_point">עריכת נקודה</string>
<string name="coord_input_add_point">הוספת נקודה</string>
<string name="coord_input_save_as_track">שמירה כמסלול</string>
<string name="coord_input_save_as_track_descr">הוספת %1$s נקודות. נא להקליד את שם הקובץ וללחוץ על שמירה.</string>
</resources>

View file

@ -888,7 +888,7 @@
<string name="poi_internet_access_no">Internetcsatlakozás nincs</string>
<string name="poi_dance_floor">Tánctér</string>
<string name="poi_nightclub">Diszkó</string>
<string name="poi_nightclub">Night club; Diszkó</string>
<string name="poi_stripclub">Sztriptízbár</string>
<string name="poi_craft_agricultural_engines">Mezőgazdaságigép-gyártó</string>
<string name="poi_craft_carpet_layer">Szőnyegpadló-lerakó műhely</string>
@ -1980,7 +1980,7 @@
<string name="poi_water_characteristic">Víz jellemzője</string>
<string name="poi_shoes_type">Cipőfajta</string>
<string name="poi_parking_type">Típus</string>
<string name="poi_parking_carports">Fedett, oldalról nyitott parkolóhelyek</string>
<string name="poi_parking_carports">Garázstető (oldalról nyitott)</string>
<string name="poi_parking_garage_boxes">Garázsok</string>
<string name="poi_bicycle_parking_type">Típus</string>
@ -2345,7 +2345,7 @@
<string name="poi_social_facility_for_drug_addicted">Kábítószerfüggők</string>
<string name="poi_social_facility_for_unemployed">Munkanélküliek</string>
<string name="poi_social_facility_for_diseased">Betegek</string>
<string name="poi_social_facility_for_child_juvenile">Gyermekek; fiatalok</string>
<string name="poi_social_facility_for_child_juvenile">Gyermekek és fiatalok</string>
<string name="poi_kiln">Égetőkemence</string>
<string name="poi_product_brick">Termék: tégla</string>

View file

@ -1411,7 +1411,7 @@
<string name="poi_material_plastic">Efni: plast</string>
<string name="poi_material_sandstone">Efni: sandsteinn</string>
<string name="poi_material_granite_stone">Efni: granítsteinn</string>
<string name="poi_material_metal_wood">Efni: málmur: viður</string>
<string name="poi_material_metal_wood">Efni: málmur, viður</string>
<string name="poi_material_glass">Efni: gler</string>
<string name="poi_material_bronze">Efni: brons</string>
<string name="poi_material_earth">Efni: mold</string>
@ -2545,7 +2545,7 @@
<string name="poi_social_facility_for_drug_addicted">Eiturlyfjafíklar</string>
<string name="poi_social_facility_for_unemployed">Atvinnulausir</string>
<string name="poi_social_facility_for_diseased">Sjúkir</string>
<string name="poi_social_facility_for_child_juvenile">Börn: ungmenni</string>
<string name="poi_social_facility_for_child_juvenile">Ungmenni</string>
<string name="poi_historic_civilization_nuragic">Menning: núrísk (18. öld f. Kr 2. öld e.Kr.)</string>
<string name="poi_historic_civilization_imperial_chinese">Menning: kínverska keisaraveldið (221 f. Kr 1911 e. Kr)</string>
@ -2840,7 +2840,7 @@
<string name="poi_motorcycle_sales_yes">Sala</string>
<string name="poi_motorcycle_sales_no">Sala: nei</string>
<string name="poi_motorcycle_sales_yes_used">Sala: já; notað</string>
<string name="poi_motorcycle_sales_yes_used">Sala: já, notað</string>
<string name="poi_motorcycle_sales_used">Sala: notað</string>
<string name="poi_motorcycle_rental_yes">Leiga</string>
<string name="poi_motorcycle_rental_no">Leiga: nei</string>
@ -3842,4 +3842,5 @@
<string name="poi_end_date">Lokadagsetning</string>
</resources>
<string name="poi_checkpoint_type_quize">Spurningalisti</string>
</resources>

View file

@ -1,4 +1,5 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><resources><string name="search_map_hint">Leita að borg eða héraði</string>
<?xml version='1.0' encoding='UTF-8'?>
<resources><string name="search_map_hint">Leita að borg eða héraði</string>
<string name="gpx_appearance">Útlit</string>
@ -675,7 +676,7 @@
<string name="search_address_building">Bygging</string>
<string name="search_address_building_option">Bygging</string>
<string name="add_favorite_dialog_default_favourite_name">Eftirlæti</string>
<string name="favourites_context_menu_add">Bæta í eftirlæti</string>
<string name="favourites_context_menu_add">Bæta við sem eftirlæti</string>
<string name="favourites_context_menu_delete">Eyða eftirlæti</string>
<string name="poi_action_add">bæta við</string>
<string name="poi_action_change">breyta</string>
@ -1039,7 +1040,7 @@ Ferill %2$s</string>
<string name="add_favorite_dialog_top_text">Settu inn heiti á eftirlæti</string>
<string name="add_favorite_dialog_favourite_added_template">Eftirlætispunktinum {\'\'0} var bætt við.</string>
<string name="favourites_context_menu_edit">Breyta Eftirlæti</string>
<string name="favourites_context_menu_edit">Breyta eftirlæti</string>
<string name="favourites_remove_dialog_msg">Eyða eftirlætispunkti \'%s\'?</string>
<string name="favourites_remove_dialog_success">Eftirlætispunktinum {0} var eytt.</string>
<string name="poi_remove_confirm_template">Eyða {0} (setja inn athugasemd)?</string>
@ -1905,7 +1906,7 @@ Punktar</string>
<string name="dialog_add_action_title">Bæta við aðgerð</string>
<string name="quick_actions_delete">Eyða aðgerð</string>
<string name="quick_actions_delete_text">Ertu viss um að þú viljir eyða aðgerðinni \"%s\"?</string>
<string name="quick_favorites_show_favorites_dialog">Birta eftirlætaglugga</string>
<string name="quick_favorites_show_favorites_dialog">Birta glugga með eftirlætisstöðum</string>
<string name="quick_favorites_name_preset">Forstilling á nafni</string>
<string name="favorite_autofill_toast_text">" er vistað í "</string>
<string name="favorite_empty_place_name">Staður</string>
@ -2010,11 +2011,11 @@ Punktar</string>
<string name="use_fluorescent_overlays_descr">Nota flúrliti til að birta ferla og leiðir.</string>
<string name="gpx_option_from_start_point">Fara eftir öllum ferlinum</string>
<string name="routing_attr_avoid_shuttle_train_name">Forðast tengilest</string>
<string name="routing_attr_avoid_shuttle_train_description">Forðast að nota tengilest</string>
<string name="routing_attr_avoid_shuttle_train_description">Forðast að nota tengilestir</string>
<string name="restart_is_required">Til að breytingarnar verði að fullu virkar, þarf að endurræsa forritið handvirkt.</string>
<string name="lang_ber">Berberska</string>
<string name="gps_network_not_enabled">Staðsetningarþjónustan er ekki virk. Viltu kveikja á henni?</string>
<string name="application_dir_change_warning3">Afrita gagnaskrárnar sínar á nýja áfangastaðinn?</string>
<string name="application_dir_change_warning3">Afrita OsmAnd-gagnaskrárnar sínar á nýja áfangastaðinn?</string>
<string name="action_create">Aðgerðin útbúa</string>
<string name="action_modify">Aðgerðin breyta</string>
@ -2222,7 +2223,7 @@ Stendur fyrir svæði: %1$s x %2$s</string>
<string name="wait_current_task_finished">Dokaðu við þar til núverandi aðgerð er lokið</string>
<string name="save_poi_too_many_uppercase">Nafnið inniheldur of marga hástafi. Viltu halda áfram?</string>
<string name="quick_action_duplicate">Tvítekið nafn á flýtiaðgerð</string>
<string name="quick_action_category_descr">Veldu flokk til að vista eftirlætið í.</string>
<string name="quick_action_category_descr">Veldu flokk til að vista eftirlætisstað í.</string>
<string name="shared_string_install">Setja inn</string>
<string name="online_photos">Ljósmyndir á netinu</string>
<string name="no_photos_descr">Ekki eru til myndir fyrir þessa staðsetningu.</string>
@ -2426,7 +2427,7 @@ Stendur fyrir svæði: %1$s x %2$s</string>
<string name="quick_action_interim_dialog">Birta millistigsglugga</string>
<string name="mappilary_no_internet_desc">Þú þarft internettengingu til að skoða myndir frá Mapillary.</string>
<string name="empty_state_favourites">Bæta við eftirlætum</string>
<string name="empty_state_favourites_desc">Flytja inn eða merkja eftirlæti á korti.</string>
<string name="empty_state_favourites_desc">Flytja inn eða merkja eftirlætisstaði á korti.</string>
<string name="import_track_desc">Skráin %1$s inniheldur enga ferilpunkta, á að flytja hana inn sem leið?</string>
<string name="move_point">Færa punkt</string>
<string name="add_points_to_map_markers_q">Viltu bæta öllum punktum í kortamerki?</string>
@ -2610,7 +2611,7 @@ Stendur fyrir svæði: %1$s x %2$s</string>
<string name="use_osm_live_routing_description">Virkja leiðsögn fyrir breytingar í OsmAnd Live.</string>
<string name="storage_directory_readonly_desc">Sú mappa sem er valin undir geymslugögn er einungis lesanleg. Geymslumappan er því tímabundið sett í innra minnið. Veldu endilega gilda geymslumöppu.</string>
<string name="osm_live_email_desc">Nauðsynlegt til að geta gefið upplýsingar um framlög.</string>
<string name="osm_live_email_desc">Nauðsynlegt til að geta gefið þér upplýsingar um framlög.</string>
<string name="osm_live_region_desc">Hluti styrktarfjárhæðarinnar verður sendur til OSM-notendanna sem senda inn breytingar á kortinu á þessu svæði.</string>
<string name="osm_live_ask_for_purchase">Kauptu fyrst áskrift að OsmAnd Live</string>
<string name="clear_updates_proposition_message">Þú getur fjarlægt sóttar uppfærslur að snúið aftur í upprunalega útgáfu kortsins</string>
@ -2674,7 +2675,7 @@ Stendur fyrir svæði: %1$s x %2$s</string>
<string name="osm_live_header">Þessi áskrift virkjar uppfærslur á klukkustundar fresti fyrir öll kort um allan heim. Hluti innkomunnar fer til OSM-samfélagsins og er greitt fyrir hvert framlag til OSM. Ef þér líkar við OsmAnd og OSM og vilt styðja við verkefnið og fá stuðning frá þeim, þá er þetta kjörin leið.</string>
<string name="disable_recording_once_app_killed_descrp">Mun setja GPX-skráningu í bið þegar forritið er drepið (slökkt á því í gegnum nýleg forrit skjáinn - bakgrunnsvísir OsmAnd hverfur þar með úr tilkynningastiku Android-kerfisins.)</string>
<string name="fav_point_emoticons_message">Nafni eftirlætispunktsins hefur evrið breytt í %1$s til að auðvelda rétta vistun strengsins ásamt tjáningartáknum yfir í skrá.</string>
<string name="fav_point_emoticons_message">Nafni eftirlætispunktsins hefur verið breytt í %1$s til að auðvelda rétta vistun strengsins ásamt tjáningartáknum yfir í skrá.</string>
<string name="save_track_to_gpx_globally_descr">Hægt er að kveikja og slökkva á almennri skráningu staðsetninga í GPX-skrá með viðmótshlutanum fyrir GPX-skráningu á kortaskjánum.</string>
<string name="android_19_location_disabled">Síðan í Android útgáfu 4.4 (KitKat) geturðu ekki niðurhalað og uppfært landakort í gömlu geymslumöppuna (%s). Viltu breyta staðsetningu leyfðrar geymslumöppu og afrita allar OsmAnd-skrár þangað?
@ -2875,8 +2876,8 @@ Stendur fyrir svæði: %1$s x %2$s</string>
<string name="unlock_all_features">Aflæsa öllum eiginleikum OsmAnd</string>
<string name="monthly_map_updates">Uppfærslur korta: <b>Í hverjum mánuði</b></string>
<string name="daily_map_updates">Uppfærslur korta: <b>Alla daga, á klukkustundar fresti</b></string>
<string name="monthly_map_updates">Uppfærslur korta: <b>í hverjum mánuði</b></string>
<string name="daily_map_updates">Uppfærslur korta: <b>á klukkustundar fresti</b></string>
<string name="popular_destinations">Vinsælir áfangastaðir</string>
<string name="paid_app">Greitt forrit</string>
<string name="paid_plugin">Greidd forritsviðbót</string>
@ -2929,4 +2930,10 @@ Stendur fyrir svæði: %1$s x %2$s</string>
<string name="unirs_render_descr">Aðlögun á sjálfgefna stílnum til að auka birtuskil leiða fyrir fótgangandi og hjólreiðafólk. Notar eldri liti úr Mapnik.</string>
<string name="shared_string_gpx_files">GPX-skrár</string>
<string name="get_osmand_live">Náðu í OsmAnd Live til að aflæsa öllum eiginleikum: Fáðu ótakmörkuð niðurhöl korta og daglegar kortauppfærslur, allar greiddar og ókeypis viðbætur, Wikipedia, Wikivoyage og margt fleira.</string>
</resources>
<string name="error_notification_desc">"Sendu skjámynd af þessari tilkynningu til support@osmand.net"</string>
<string name="quick_action_edit_actions">Breyta aðgerðum</string>
<string name="coord_input_edit_point">Breyta punkti</string>
<string name="coord_input_add_point">Bæta við punkti</string>
<string name="coord_input_save_as_track">Vista sem feril</string>
<string name="coord_input_save_as_track_descr">Þú bættir við %1$s punktum. Settu inn heitið á skránni og vistaðu.</string>
</resources>

View file

@ -1,4 +1,5 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><resources>
<?xml version='1.0' encoding='UTF-8'?>
<resources>
<string name="rendering_attr_roadColors_description">Velg fargeskjema for veier:</string>
<string name="rendering_attr_roadColors_name">Veifargeskjema</string>
<string name="map_widget_show_destination_arrow">Vis retning til målet</string>
@ -3024,4 +3025,8 @@
<string name="get_osmand_live">Skaff deg OsmAnd Live for å låse opp alle funksjoner: Daglige kartoppdateringer med ubegrensede nedlastinger, alle programtilleggene, Wikipedia, Wikivoyage og mye mer.</string>
<string name="quick_action_edit_actions">Rediger handlinger</string>
<string name="error_notification_desc">Send skjermavbildning av denne merknaden til support@osmand.net</string>
</resources>
<string name="coord_input_edit_point">Rediger punkt</string>
<string name="coord_input_add_point">Legg til punkt</string>
<string name="coord_input_save_as_track">Lagre som spor</string>
<string name="coord_input_save_as_track_descr">Du har lagt til %1$s punkter. Skriv inn navnet på filen og klikk \"Lagre\".</string>
</resources>

View file

@ -2127,7 +2127,7 @@
<string name="poi_refugee_no">Vluchtelingen: nee</string>
<string name="poi_social_facility_group_home">Woongroep</string>
<string name="poi_social_facility_food_bank">Voedelbank</string>
<string name="poi_social_facility_food_bank">Voedselbank</string>
<string name="poi_social_facility_for_orphan">Weeshuis</string>
<string name="poi_social_facility_for_homeless">Dakloos</string>
<string name="poi_social_facility_for_migrant">Migranten</string>
@ -2739,4 +2739,68 @@
<string name="poi_end_date">Einddatum</string>
<string name="poi_socket_chademo_output_filter">CHAdeMO output</string>
<string name="poi_socket_type2_output_filter">Type 2 output</string>
<string name="poi_socket_type2_combo_output_filter">Type 2 combo output</string>
<string name="poi_socket_type3_output_filter">Type 3 output</string>
<string name="poi_socket_cee_blue_output_filter">CEE blue output</string>
<string name="poi_socket_schuko_output_filter">Schuko output</string>
<string name="poi_service_car">Auto service</string>
<string name="poi_route_subway_ref">Metro</string>
<string name="poi_service_vehicle_oil_change_yes">Olie verversen</string>
<string name="poi_service_vehicle_used_car_sales_yes">Verkoop gebruikte autos</string>
<string name="poi_service_vehicle_brakes_yes">Remmen</string>
<string name="poi_service_vehicle_new_car_sales_yes">Verkoop nieuwe autos</string>
<string name="poi_service_vehicle_diagnostics_yes">Diagnose</string>
<string name="poi_service_vehicle_car_parts_yes">Auto onderdelen</string>
<string name="poi_service_vehicle_batteries_yes">Accus</string>
<string name="poi_service_vehicle_air_conditioning_yes">Air conditioning</string>
<string name="poi_service_vehicle_body_repair_yes">Carrosserie reparatie</string>
<string name="poi_service_vehicle_electrical_yes">Electrisch</string>
<string name="poi_service_vehicle_wheels_yes">Wielen</string>
<string name="poi_service_vehicle_glass_yes">Glas</string>
<string name="poi_service_vehicle_truck_repair_yes">Vrachtwagen reparatie</string>
<string name="poi_service_vehicle_alignment_yes">Uitlijning</string>
<string name="poi_service_vehicle_transmission_repair_yes">Versnelling reparatie</string>
<string name="poi_service_vehicle_motor_yes">Motor</string>
<string name="poi_service_vehicle_insurance_yes">Verzekering</string>
<string name="poi_service_vehicle_tyres_yes">Banden</string>
<string name="poi_climbing_adventure">Klim avontuur</string>
<string name="poi_via_ferrata_scale">Moeilijkheid</string>
<string name="poi_wiki_lang_min">Minangkabau wiki</string>
<string name="poi_wiki_lang_ur">Urdu wiki</string>
<string name="poi_wiki_lang_jv">Javaanse wiki</string>
<string name="poi_wiki_lang_ky">Kyrgyzische wiki</string>
<string name="poi_wiki_lang_zhyue">Cantonese wiki</string>
<string name="poi_wiki_lang_tg">Tajik wiki</string>
<string name="poi_wiki_lang_ba">Bashkir wiki</string>
<string name="poi_wiki_lang_my">Burmese wiki</string>
<string name="poi_wiki_lang_an">Aragonese wiki</string>
<string name="poi_memorial_koshinto">Koshinto</string>
<string name="poi_crop_rice">Gewas: rijst</string>
<string name="poi_crop_grass">Gewas: gras</string>
<string name="poi_crop_corn">Gewas: graan</string>
<string name="poi_crop_cereal">Gewas: graan</string>
<string name="poi_crop_sugarcane">Gewas: suikerriet</string>
<string name="poi_crop_soy">Gewas: soja</string>
<string name="poi_crop_vegetables">Gewas: groenten</string>
<string name="poi_crop_lavender">Gewas: lavendel</string>
<string name="poi_crop_tea">Gewas: thee</string>
<string name="poi_crop_coffee">Gewas: koffie</string>
<string name="poi_crop_sunflower">Gewas: zonnebloem</string>
<string name="poi_crop_raspberry">Gewas: framboos</string>
<string name="poi_crop_tobacco">Gewas: tabak</string>
<string name="poi_crop_strawberry">Gewas: aardbei</string>
<string name="poi_crop_vegetables_flowers">Gewas: groenten, bloemen</string>
<string name="poi_crop_cassava">Gewas: cassave</string>
<string name="poi_crop_cranberry">Gewas: cranberry</string>
<string name="poi_crop_asparagus">Gewas: asperges</string>
<string name="poi_crop_flowers">Gewas: bloemen</string>
<string name="poi_social_facility_for_disabled">Gehandicapten</string>
<string name="poi_service_vehicle_muffler_yes">Geluiddemper</string>
</resources>

View file

@ -3876,4 +3876,8 @@
<string name="poi_end_date">Data de fine</string>
<string name="poi_appliance">Butega de eletrodomèsticos</string>
<string name="poi_outcrop">Afioramentu (bessida a pitzu) de roca</string>
</resources>

View file

@ -1,4 +1,5 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><resources>
<?xml version='1.0' encoding='UTF-8'?>
<resources>
<string name="always_center_position_on_map">Ammustra sa positzione semper a su tzentru</string>
<string name="voice_pref_title">Boghe</string>
<string name="misc_pref_title">Mistura</string>
@ -94,7 +95,7 @@
<string name="disable_complex_routing_descr">Istuda su calculu de sàndala in duas fases pro simpreu in màchina.</string>
<string name="disable_complex_routing">Istuta su calculu cumplessu de sàndala</string>
<string name="amenity_type_seamark">Pidagnu</string>
<string name="app_modes_choose_descr">Ischerta sas modalidades de impreu chi boles chi siant visìbiles in saplicatzione.</string>
<string name="app_modes_choose_descr">Ischerta sos profilos chi boles chi siant visìbiles in saplicatzione.</string>
<string name="app_modes_choose">Profilos de s\'aplicatzione</string>
<string name="map_widget_map_rendering">Disinnu de sa mapa</string>
@ -240,7 +241,7 @@
<string name="choose_osmand_theme">Tema de saplicu</string>
<string name="accessibility_options">Optziones pro satzessibilidade</string>
<string name="select_address_activity">Issèbera sindiritzu</string>
<string name="favourites_list_activity">Issèbera preferidu</string>
<string name="favourites_list_activity">Issèbera unu preferidu</string>
<string name="local_openstreetmap_act_title">Modìficas OSM</string>
<string name="shared_string_more_actions">Àteras atziones</string>
@ -1475,8 +1476,8 @@ Memòria in proportzione %4$s MB (lìmite de Android %5$s MB, Dalvik %6$s MB).</
<string name="add_favorite_dialog_top_text">Inserta su nùmene de su preferidu</string>
<string name="add_favorite_dialog_default_favourite_name">Preferidu</string>
<string name="add_favorite_dialog_favourite_added_template">Su puntu preferidu \'\'{0}\'\' est istadu annantu.</string>
<string name="favourites_context_menu_edit">Modìfica preferidu</string>
<string name="favourites_context_menu_delete">Iscantzella preferidu</string>
<string name="favourites_context_menu_edit">Modìfica su preferidu</string>
<string name="favourites_context_menu_delete">Iscantzella su preferidu</string>
<string name="favourites_remove_dialog_msg">Iscantzellare su puntu preferidu \'%s\'?</string>
<string name="favourites_remove_dialog_success">Puntu preferidu {0} iscantzelladu.</string>
@ -1564,7 +1565,7 @@ Memòria in proportzione %4$s MB (lìmite de Android %5$s MB, Dalvik %6$s MB).</
<string name="local_index_description">Incarca un\'elementu esistente pro bìdere prus minujas, incarca e mantene incarcadu pro l\'istudare o iscantzellare. Datos como in su dispositivu (%1$s lìberos):</string>
<string name="text_size_descr">Issèbera sa mannària de su testu in sa mapa.</string>
<string name="text_size">Mannària de su testu</string>
<string name="fav_point_dublicate_message">Nùmene preferidu giai impreadu, cambiadu in %1$s pro non tènnere duplicados.</string>
<string name="fav_point_dublicate_message">Nùmene de su preferidu giai impreadu, cambiadu in %1$s pro non tènnere duplicados.</string>
<string name="fav_point_dublicate">Nùmene dòpiu in sos preferidos</string>
@ -1789,7 +1790,7 @@ Lon %2$s</string>
<string name="storage_directory_manual">Dislindada manualmente</string>
<string name="storage_directory_default">Memòria interna</string>
<string name="shared_string_copy">Còpia</string>
<string name="application_dir_change_warning3">Cheres copiare in sa destinatzione noa fintzas sos documentos de sos datos suos?</string>
<string name="application_dir_change_warning3">Cheres copiare in sa destinatzione noa fintzas sos documentos de sos datos de OsmAnd?</string>
<string name="storage_directory_internal_app">Memòria interna de s\'aplicatzione</string>
<string name="rendering_value__name">Predefinidu</string>
<string name="rendering_value_highContrastRoads_name">Istradas a cuntrastu artu</string>
@ -2178,7 +2179,7 @@ Lon %2$s</string>
<string name="osm_editors_ranking">Classìfica Editores OSM</string>
<string name="osm_live_subscription">Abbonamentu OsmAnd LIve</string>
<string name="osm_live_email_desc">Pro sas informatziones tuas a pitzu de sas contributziones.</string>
<string name="osm_live_email_desc">Serbit pro ti frunire informatziones a pitzu de sas contributziones.</string>
<string name="osm_live_support_region">Regione de suportu</string>
<string name="osm_live_header">Custu abbonamentu abilitat agiornamentos ora pro ora pro totu sas mapas de su mundu. Parte de su balàngiu suportat sa comunidade OSM e est pagadu pro cada contributu OSM. Si istimas OsmAnd e OSM e los boles suportare e èssere suportadu dae issos, custa est una manera perfeta pro lu fàghere.</string>
@ -2500,8 +2501,8 @@ Pro praghere iscrie su còdighe intreu</string>
<string name="shared_string_time_moving">Tempus in movimentu</string>
<string name="shared_string_time_span">Intervallu de tempus</string>
<string name="shared_string_max">Màssimu</string>
<string name="shared_string_start_time">Tzucada</string>
<string name="shared_string_end_time">Arrivu</string>
<string name="shared_string_start_time">Ora de tzucada</string>
<string name="shared_string_end_time">Ora de arrivu</string>
<string name="shared_string_color">Colore</string>
<string name="shared_string_gpx_track">Rasta</string>
<string name="points_delete_multiple_succesful">Puntu/os iscantzelladu/os.</string>
@ -2688,7 +2689,7 @@ Pro praghere iscrie su còdighe intreu</string>
<string name="routing_attr_allow_private_name">Permiti sos atzessos privados</string>
<string name="routing_attr_allow_private_description">Permiti s\'atzessu a sas àreas privadas.</string>
<string name="hillshade_menu_download_descr">Iscàrriga sa mapa \'Umbraduras de sos rilievos\' pro bìdere sas umbraduras de custa regione.</string>
<string name="hillshade_purchase_header">Installa s\'estensione \'Curvas de Livellu\' pro las ammustrare in sa mapa</string>
<string name="hillshade_purchase_header">Pro bìdere sas umbraduras in sa mapa installa s\'estensione \'Curvas de Livellu\'</string>
<string name="hide_from_zoom_level">Cua dae su livellu de ismanniamentu</string>
<string name="srtm_menu_download_descr">Iscàrriga sa mapa \'Curvas de livellu\' pro l\'impreare in custa regione.</string>
<string name="shared_string_plugin">Estensione</string>
@ -2698,12 +2699,12 @@ Pro praghere iscrie su còdighe intreu</string>
<string name="quick_action_showhide_osmbugs_title">Ammustra/cua sas notas OSM</string>
<string name="quick_action_osmbugs_show">Ammustra sas notas OSM</string>
<string name="quick_action_osmbugs_hide">Cua sas notas OSM</string>
<string name="quick_action_showhide_osmbugs_descr">Incarchende custu butone pro s\'atzione at a cuare o ammustrare sas notas OSM in sa mapa.</string>
<string name="quick_action_showhide_osmbugs_descr">Incarchende custu butone pro s\'atzione at a cuare o ammustrare sas Notas OSM in sa mapa.</string>
<string name="restart_search">Torra a incumintzare sa chirca</string>
<string name="increase_search_radius">Ismànnia su raju de chirca</string>
<string name="nothing_found">Nudda de agatadu</string>
<string name="nothing_found_descr">Muda sos critèrios de chirca o a ismànnia su raju de chirca.</string>
<string name="private_access_routing_req">Sa destinatzione tua est positzionada in un\'àrea cun atzessu privadu. Boles abilitare s\'atzessu a sas istradas privadas pro custu biàgiu?</string>
<string name="private_access_routing_req">Sa destinatzione tua est positzionada in un\'àrea cun atzessu privadu. Cheres abilitare s\'atzessu a sas istradas privadas pro custu biàgiu?</string>
<string name="mapillary">Mapillary</string>
<string name="mapillary_widget">Widget pro Mapillary</string>
<string name="mapillary_widget_descr">Permitit de contribuire in manera lestra e fàtzile a Mapillary.</string>
@ -2896,7 +2897,7 @@ Pro praghere iscrie su còdighe intreu</string>
<string name="show_guide_line_descr">Ammustra lìnias diretzionales dae sa positzione tua a sos marcadores ativos.</string>
<string name="show_arrows_descr">Ammustra una o duas fritzas chi indicant sa diretzione cara a sos marcadores ativos.</string>
<string name="distance_indication_descr">Issèbera comente ammustrare sa distàntzia cun sos marcadores ativos.</string>
<string name="active_markers_descr">Issèbera su nùmeru de marcadores ativos de ammustrare.</string>
<string name="active_markers_descr">Issèbera su nùmeru de indicadores de diretzione de ammustrare.</string>
<string name="shared_string_more_without_dots">Àteru</string>
<string name="looking_for_tracks_with_waypoints">Chirchende rastas cun puntos de coladòrgiu</string>
<string name="empty_state_osm_edits">Crea o modìfica ogetos OSM</string>
@ -3022,13 +3023,13 @@ Pro praghere iscrie su còdighe intreu</string>
<string name="download_maps_travel">Ghias de biàgiu</string>
<string name="shared_string_wikivoyage">Wikivoyage</string>
<string name="article_removed">Artìculu iscantzelladu</string>
<string name="wikivoyage_search_hint">Chirca: Istadu, Tzitade, Provìntzia</string>
<string name="wikivoyage_search_hint">Chirca: istadu, tzitade, provìntzia</string>
<string name="shared_string_read">Leghe</string>
<string name="shared_string_contents">Cuntenutu</string>
<string name="use_two_digits_longitude">Imprea una longitùdine a duas tzìfras</string>
<string name="index_item_world_wikivoyage">Artìculos mondiales de Wikivoyage</string>
<string name="monthly_map_updates">Agiornamentos de sas mapas: <b>Cada mese</b></string>
<string name="daily_map_updates">Agiornamentos de sas mapas: <b>Cada ora</b></string>
<string name="monthly_map_updates">Agiornamentos de sas mapas: <b>cada mese</b></string>
<string name="daily_map_updates">Agiornamentos de sas mapas: <b>cada ora</b></string>
<string name="in_app_purchase">Còmporas in intro de s\'aplicatzione</string>
<string name="in_app_purchase_desc">Pagamentu ùnicu</string>
<string name="in_app_purchase_desc_ex">A pustis de sa còmpora at a èssere disponìbile pro semper.</string>
@ -3097,4 +3098,5 @@ Pro praghere iscrie su còdighe intreu</string>
<string name="shared_string_gpx_files">Documentos GPX</string>
<string name="get_osmand_live">Abbona·ti a OsmAnd Live pro isblocare totu sas funtzionalidades: agiornamentos die pro die de sas mapas cun iscarrigamentos illimitados, totu sas estensiones de badas e a pagamentu, Wikipedia, Wikivoyage e meda àteru.</string>
<string name="quick_action_edit_actions">Acontza sas atziones</string>
</resources>
<string name="error_notification_desc">Pro praghere imbia un\'ischermada de custa notìfica a support@osmand.net</string>
</resources>

View file

@ -1 +1,11 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?><resources/>
<?xml version='1.0' encoding='UTF-8'?>
<resources><string name="coord_input_add_point">పాయింట్ జోడించండి</string>
<string name="shared_string_bookmark">ఇష్టాంశం</string>
<string name="hide_full_description">పూర్తి వివరణను దాచిపెట్టు</string>
<string name="show_full_description">పూర్తి వివరణ చూపించు</string>
<string name="open_wikipedia_link_online_description">లంకె వెబ్ బ్రౌజర్లో తెరవబడుతుంది.</string>
<string name="how_to_open_link">లంకెను ఎలా తెరవాలి?</string>
<string name="download_all">అన్ని దింపుకోండి</string>
<string name="shared_string_restart">అనువర్తనాన్ని పునఃప్రారంభించండి</string>
<string name="show_images">చిత్రాలను చూపించు</string>
</resources>

View file

@ -1,4 +1,5 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><resources><string name="email">電子郵件</string>
<?xml version='1.0' encoding='UTF-8'?>
<resources><string name="email">電子郵件</string>
<string name="poi_dialog_opening_hours">打開</string>
<string name="poi_dialog_comment">評論</string>
<string name="poi_dialog_comment_default">改變POI</string>
@ -531,7 +532,7 @@
<string name="non_optimal_route_calculation">长距离时计算结果可能非最优</string>
<string name="map_widget_monitoring_services">日志服务</string>
<string name="replace_destination_point">替换终点</string>
<string name="new_destination_point_dialog">您已经设置了终点</string>
<string name="new_destination_point_dialog">您已经设置了一个目的地</string>
<string name="ending_point_too_far">结束点与最近道路太远。</string>
<string name="add_tag">添加标记</string>
<string name="btn_advanced_mode">高级模式…</string>
@ -2162,7 +2163,7 @@
<string name="add_as_last_destination_point">添加为最后的中转点</string>
<string name="add_as_first_destination_point">添加为第一个中转点</string>
<string name="intermediate_point_too_far">中转点 %1$s 离最近的路太远。</string>
<string name="arrived_at_intermediate_point">你已经到达你的中转点</string>
<string name="arrived_at_intermediate_point">您已经到达您的中转点</string>
<string name="context_menu_item_intermediate_point">添加为中转点</string>
<string name="show_warnings_descr">配置交通警告(车速限制、强制停止、减速带),测速相机警告和车道信息</string>
<string name="use_compass_navigation_descr">没有检测到朝向的时候使用罗盘</string>
@ -2697,4 +2698,6 @@
<string name="paid_app">付费应用</string>
<string name="paid_plugin">付费插件</string>
<string name="travel_card_update_descr">新的 Wikivoyage 数据可用,请更新以继续享用。</string>
</resources>
<string name="get_unlimited_access">获取无限访问权限</string>
<string name="shared_string_options">选项</string>
</resources>

View file

@ -1,4 +1,5 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><resources>
<?xml version='1.0' encoding='UTF-8'?>
<resources>
<string name="rendering_attr_roadColors_description">選擇道路的色彩調配:</string>
<string name="rendering_attr_roadColors_name">道路的色彩調配</string>
<string name="map_widget_show_destination_arrow">顯示目的地方向</string>
@ -3116,4 +3117,8 @@
<string name="get_osmand_live">獲得 OsmAnd Live 解鎖全部功能:每日地圖更新與無限下載、所有付費和免費的外掛元件、維基百科、維基導遊和更多。</string>
<string name="quick_action_edit_actions">編輯動作</string>
<string name="error_notification_desc">請將此通知的螢幕快照傳送到 support@osmand.net</string>
</resources>
<string name="coord_input_edit_point">編輯標點</string>
<string name="coord_input_add_point">新增標點</string>
<string name="coord_input_save_as_track">儲存為軌跡</string>
<string name="coord_input_save_as_track_descr">您已新增了 %1$s 標點。輸入檔案名稱和按下儲存。</string>
</resources>