Merge branch 'master' into iD-2.19.6

This commit is contained in:
Quincy Morgan 2021-03-05 10:30:24 -05:00
commit 9e98c9d41d
101 changed files with 62 additions and 1426 deletions

View file

@ -46,11 +46,4 @@ folder 'vendor/assets' do
file 'es5.js', 'https://polyfill.io/v3/polyfill.js?features=es5&flags=gated,always'
file 'es6.js', 'https://polyfill.io/v3/polyfill.js?features=es6&flags=gated,always'
end
folder 'swfobject' do
from 'git://github.com/swfobject/swfobject.git', :tag => '2.2' do
file 'expressInstall.swf', 'swfobject/expressInstall.swf'
file 'swfobject.js', 'swfobject/src/swfobject.js'
end
end
end

View file

@ -83,13 +83,6 @@ a {
/* Utility for de-emphasizing content */
.deemphasize {
color: $darkgrey;
a {
color: $blue;
}
}
.text-muted a {
color: $blue;
}
@ -1253,11 +1246,6 @@ tr.turn:hover {
img.user_thumbnail {
float: left;
}
small.deemphasize {
float: left;
display: block;
}
}
/* Rules for the diary entry page */
@ -1707,13 +1695,8 @@ div.secondary-actions {
}
}
.diary_post .richtext {
margin-top: $lineheight;
}
.comments .richtext {
margin-left: 70px;
margin-top: 0;
}
/* Rules for the user notes list */

View file

@ -124,26 +124,3 @@ body.small-nav {
}
}
}
@media (max-width: 575.98px) {
/* Rules for the login form */
#login_login input#user_email {
width: 100%;
max-width: 18em;
}
#login_login input#user_password {
width: 100%;
max-width: 18em;
}
#login_login input#openid_url {
width: 100%;
max-width: 18em;
}
#login_openid_buttons td {
padding: 2px;
}
}

View file

@ -17,26 +17,6 @@ module ApplicationHelper
link_to(image_tag("RSS.png", :size => "16x16", :border => 0), args, :class => "rsssmall")
end
def richtext_area(object_name, method, options = {})
id = "#{object_name}_#{method}"
type = options.delete(:format) || "markdown"
tag.div(:id => "#{id}_container", :class => "richtext_container") do
output_buffer << tag.div(:id => "#{id}_content", :class => "richtext_content") do
output_buffer << text_area(object_name, method, options.merge("data-preview-url" => preview_url(:type => type)))
output_buffer << tag.div("", :id => "#{id}_preview", :class => "richtext_preview richtext text-break")
end
output_buffer << tag.div(:id => "#{id}_help", :class => "richtext_help") do
output_buffer << render("site/#{type}_help")
output_buffer << tag.div(:class => "buttons") do
output_buffer << submit_tag(I18n.t("site.richtext_area.edit"), :id => "#{id}_doedit", :class => "richtext_doedit deemphasize", :disabled => true)
output_buffer << submit_tag(I18n.t("site.richtext_area.preview"), :id => "#{id}_dopreview", :class => "richtext_dopreview deemphasize")
end
end
end
end
def dir
if dir = params[:dir]
dir == "rtl" ? "rtl" : "ltr"

View file

@ -51,7 +51,7 @@
:when => friendly_date_ago(comment.created_at),
:exact_time => l(comment.created_at),
:user => link_to(comment.author.display_name, user_path(comment.author))) %>
— <span class="action-button deemphasize" data-comment-id="<%= comment.id %>" data-method="POST" data-url="<%= changeset_comment_unhide_url(comment.id) %>"><%= t("javascripts.changesets.show.unhide_comment") %></span>
— <span class="action-button text-muted" data-comment-id="<%= comment.id %>" data-method="POST" data-url="<%= changeset_comment_unhide_url(comment.id) %>"><%= t("javascripts.changesets.show.unhide_comment") %></span>
</small>
<%= comment.body.to_html %>
</li>

View file

@ -3,7 +3,7 @@
<%= render @changesets %>
</ol>
<% if @changesets.size == 20 -%>
<div class="changeset_more text-center">
<div class="changeset_more mt-3 text-center">
<%= link_to t(".load_more"), url_for(@params.merge(:max_id => @changesets.last.id - 1)), :class => "btn btn-primary" %>
<div class="loader"><%= image_tag "searching.gif" %></div>
</div>

View file

@ -11,7 +11,7 @@
</tr>
</thead>
<% @comments.each do |comment| -%>
<tr class="<%= "deemphasize" unless comment.visible? %>">
<tr class="<%= "text-muted" unless comment.visible? %>">
<td width="25%"><%= link_to comment.diary_entry.title, diary_entry_path(comment.diary_entry.user, comment.diary_entry) %></td>
<td width="25%"><span title="<%= l comment.created_at, :format => :friendly %>"><%= time_ago_in_words(comment.created_at, :scope => :'datetime.distance_in_words_ago') %></span></td>
<td width="50%" class="richtext text-break"><%= comment.body.to_html %></td>

View file

@ -2,7 +2,7 @@
<form method="GET" action="<%= search_path %>" class="search_form px-1 py-2">
<div class="form-row mx-0">
<div class="col">
<div class="input-group">
<div class="input-group flex-nowrap">
<div class='query_wrapper position-relative flex-grow-1'>
<%= link_to t("site.search.where_am_i"), "#", :class => "describe_location position-absolute", :title => t("site.search.where_am_i_title") %>
<%= text_field_tag "query", params[:query], :placeholder => t("site.search.search"), :autofocus => autofocus, :class => "form-control form-control-sm" %>

View file

@ -1,26 +0,0 @@
<h4 class='heading'><%= t ".title_html" %></h4>
<ul class='list-unstyled'>
<li>
<h4><%= t ".headings" %></h4>
<p># <%= t ".heading" %><br>
## <%= t ".subheading" %></p>
</li>
<li>
<h4><%= t ".unordered" %></h4>
<p>* <%= t ".first" %><br>
* <%= t ".second" %></p>
</li>
<li>
<h4><%= t ".ordered" %></h4>
<p>1. <%= t ".first" %><br>
2. <%= t ".second" %></p>
</li>
<li>
<h4><%= t ".link" %></h4>
<span>[<%= t ".text" %>](<%= t ".url" %>)</span>
</li>
<li>
<h4><%= t ".image" %></h4>
<span>![<%= t ".alt" %>](<%= t ".url" %>)</span>
</li>
</ul>

View file

@ -94,7 +94,7 @@
<fieldset>
<legend><%= t ".home location" -%></legend>
<div id="homerow" <% unless current_user.home_lat and current_user.home_lon %> class="nohome"<% end %>>
<p class="message form-help deemphasize"><%= t ".no home location" %></p>
<p class="message text-muted"><%= t ".no home location" %></p>
<div class="form-row">
<%= f.text_field :home_lat, :wrapper_class => "col-sm-4", :id => "home_lat" %>
<%= f.text_field :home_lon, :wrapper_class => "col-sm-4", :id => "home_lon" %>

View file

@ -1395,21 +1395,6 @@ af:
bicycle_shop: Fietswinkel
bicycle_parking: Fietsparkering
toilets: Toilette
richtext_area:
edit: Redigeer
preview: Voorskou
markdown_help:
headings: Opskrifte
heading: Opskrif
unordered: Ongeordende lys
ordered: Geordende lys
first: Eerste item
second: Tweede item
link: Skakel
text: Teks
image: Beeld
alt: Alternatiewe teks
url: URL
welcome:
title: Welkom!
basic_terms:

View file

@ -1814,23 +1814,6 @@ ar:
bicycle_shop: متجر دراجات
bicycle_parking: مرآب دراجات
toilets: مرحاض
richtext_area:
edit: تعديل
preview: شاهد
markdown_help:
title_html: تم التحليل بواسطة href="https://kramdown.gettalong.org/quickref.html">kramdown</a>
headings: عناوين
heading: عنوان
subheading: عنوان فرعي
unordered: قائمة غير مرتبة
ordered: قائمة مرتبة
first: البند الأول
second: البند الثاني
link: الوصلة
text: النص
image: الصورة
alt: النص البديل
url: المسار
welcome:
title: مرحبا!
introduction_html: مرحبًا بك في OpenStreetMap ، خريطة حرة وقابلة للتعديل بواسطة

View file

@ -1752,23 +1752,6 @@ ast:
bicycle_shop: Tienda de bicicletes
bicycle_parking: Aparcamientu de bicicletes
toilets: Servicios
richtext_area:
edit: Editar
preview: Vista previa
markdown_help:
title_html: Analizáu con <a href="https://kramdown.gettalong.org/quickref.html">kramdown</a>
headings: Cabeceres
heading: Cabecera
subheading: Cabecera secundaria
unordered: Llista ensin ordenar
ordered: Llista ordenada
first: Primer elementu
second: Segundu elementu
link: Enllaz
text: Testu
image: Imaxe
alt: Testu alternativu
url: URL
welcome:
title: ¡Afáyate!
introduction_html: |-

View file

@ -1014,17 +1014,6 @@ az:
- Zirvə
- pik
private: Xüsusi giriş
richtext_area:
preview: Sınaq görüntüsü
markdown_help:
headings: Başlıqlar
heading: Başlıq
subheading: Alt başlıq
link: Keçid
text: Mətn
image: Şəkil
alt: Alternativ mətn
url: URL
traces:
new:
help: Kömək

View file

@ -1126,17 +1126,6 @@ be-Tarask:
private: Прыватны доступ
destination: Мэтавы доступ
construction: Будаўніцтва дарогаў
richtext_area:
edit: Рэдагаваць
preview: Папярэдні прагляд
markdown_help:
title_html: Апрацавана з дапамогай <a href="https://daringfireball.net/projects/markdown/">Markdown</a>
headings: Загалоўкі
heading: Загаловак
subheading: Падзагаловак
unordered: Неўпарадкаваны сьпіс
ordered: Упарадкаваны сьпіс
first: Першы элемэнт
welcome:
questions:
title: Маеце пытаньні?

View file

@ -1784,23 +1784,6 @@ be:
bicycle_shop: Крама ровараў
bicycle_parking: Паркоўка для ровараў
toilets: Прыбіральні
richtext_area:
edit: Рэдагаваць
preview: Папярэдні прагляд
markdown_help:
title_html: Апрацавана з дапамогай <a href="https://kramdown.gettalong.org/quickref.html">kramdown</a>
headings: Загалоўкі
heading: Загаловак
subheading: Падзагаловак
unordered: Неспарадкаваны спіс
ordered: Спарадкаваны спіс
first: Першы элемент
second: Другі элемент
link: Спасылка
text: Тэкст
image: Выява
alt: Альтэрнатыўны тэкст
url: URL-адрас
welcome:
title: Вітаем!
introduction_html: Вітаем у OpenStreetMap, свабоднай і даступнай для рэдагавання

View file

@ -1518,23 +1518,6 @@ bg:
bicycle_shop: Магазин за велосипеди
bicycle_parking: Паркинг на велосипеди
toilets: Тоалетни
richtext_area:
edit: Променяне
preview: Преглед
markdown_help:
title_html: С подкрепата на <a href="https://kramdown.gettalong.org/quickref.html">kramdown</a>
headings: Заглавия
heading: Заглавие
subheading: Подзаглавие
unordered: Неподреден списък
ordered: Подреден списък
first: Първа точка
second: Втора точка
link: Препратка
text: Текст
image: Изображение
alt: Алтернативен текст
url: Адрес
welcome:
title: Добре дошли!
whats_on_the_map:

View file

@ -1388,13 +1388,6 @@ bn:
bicycle_shop: সাইকেলের দোকান
bicycle_parking: সাইকেল পার্কিং
toilets: পায়খানা
richtext_area:
edit: সম্পাদনা
preview: প্রাকদর্শন
markdown_help:
link: লিঙ্ক
image: চিত্র
url: ইউআরএল
welcome:
title: স্বাগতম!
whats_on_the_map:

View file

@ -1794,23 +1794,6 @@ br:
bicycle_shop: Stal varc'hoù-houarn
bicycle_parking: Parklec'h belioù
toilets: Privezioù
richtext_area:
edit: Aozañ
preview: Rakwelet
markdown_help:
title_html: Dielfennet gant <a href="https://<a href="https://kramdown.gettalong.org/quickref.html">Markdown</a>
headings: Titloù
heading: Titl
subheading: Istitl
unordered: Roll en dizurzh
ordered: Roll urzhiet
first: Elfenn gentañ
second: Eil elfenn
link: Liamm
text: Testenn
image: Skeudenn
alt: Testenn all
url: URL
welcome:
title: Deuet-mat oc'h !
introduction_html: Degemer mat en OpenStreetMap, ar gartenn digoust eus ar bed

View file

@ -1206,23 +1206,6 @@ bs:
destination: Pristup odredištu
construction: Ceste u izgradnji
bicycle_parking: Biciklistički parking
richtext_area:
edit: Urediti
preview: Pregledati
markdown_help:
title_html: Analizirano sa <a href="http://daringfireball.net/projects/markdown/">Markdown</a>
headings: Naslovi
heading: Naslov
subheading: Podnaslov
unordered: Neuređeni popis
ordered: Uređeni popis
first: Prvi objekat
second: Drugi objekat
link: Poveznica
text: Tekst
image: Slika
alt: Alt tekst
url: URL
welcome:
title: Dobrodošli!
whats_on_the_map:

View file

@ -2031,23 +2031,6 @@ ca:
bicycle_shop: Botiga de bicicletes
bicycle_parking: Aparcament de bicicletes
toilets: Lavabos
richtext_area:
edit: Edita
preview: Previsualització
markdown_help:
title_html: Analitzat amb <a href="https://kramdown.gettalong.org/quickref.html">kramdown</a>
headings: Encapçalaments
heading: Encapçalament
subheading: Subtítol
unordered: Llista sense ordenar
ordered: Llista ordenada
first: Primer element
second: Segon element
link: Enllaç
text: Text
image: Imatge
alt: Text alternatiu
url: URL
welcome:
title: Us donem la benvinguda!
introduction_html: Us donem la benvinguda a l'OpenStreetMap, el mapamundi lliure

View file

@ -864,11 +864,6 @@ ce:
table:
entry:
track: Ворданан некъ
richtext_area:
preview: Хьалххе хьажар
markdown_help:
subheading: Корталг
link: Хьажорг
traces:
new:
help: ГӀо

View file

@ -2074,23 +2074,6 @@ cs:
bicycle_shop: Cykloobchod
bicycle_parking: Parkoviště pro kola
toilets: Záchody
richtext_area:
edit: Upravit
preview: Náhled
markdown_help:
title_html: Zpracovává se <a href="https://kramdown.gettalong.org/quickref.html">Kramdownem</a>
headings: Nadpisy
heading: Nadpis
subheading: Podnadpis
unordered: Neseřazený seznam
ordered: Číslovaný seznam
first: První položka
second: Druhá položka
link: Odkaz
text: Text
image: Obrázek
alt: Alternativní text
url: URL
welcome:
title: Vítejte!
introduction_html: Vítejte v OpenStreetMap, svobodné a editovatelné mapě světa.

View file

@ -1277,22 +1277,6 @@ cy:
bicycle_shop: Siop feics
bicycle_parking: Man parcio beics
toilets: Lle chwech
richtext_area:
edit: Golygu
preview: Rhagolwg
markdown_help:
headings: Penawdau
heading: Pennawd
subheading: Is-bennawd
unordered: Rhestr heb drefn
ordered: Rhestr mewn trefn
first: Eitem gyntaf
second: Ail eitem
link: Dolen
text: Testun
image: Delwedd
alt: Testun Amgen
url: URL
welcome:
title: Croeso!
whats_on_the_map:

View file

@ -1990,23 +1990,6 @@ da:
bicycle_shop: Cykelhandler
bicycle_parking: Cykelparkering
toilets: Toiletter
richtext_area:
edit: Redigér
preview: Forhåndsvisning
markdown_help:
title_html: Fortolket med <a href="https://kramdown.gettalong.org/quickref.html">kramdown</a>
headings: Overskrifter
heading: Overskrift
subheading: Underoverskrift
unordered: Usorteret liste
ordered: Sorteret liste
first: Første objekt
second: Andet objekt
link: Link
text: Tekst
image: Billede
alt: Alt-tekst
url: URL
welcome:
title: Velkommen!
introduction_html: Velkommen til OpenStreetMap, det frie brugerredigerede verdenskort.

View file

@ -66,6 +66,7 @@
# Author: Pittigrilli
# Author: Predatorix
# Author: Purodha
# Author: RacoonyRE
# Author: Raymond
# Author: Reneman
# Author: Schmackes
@ -2073,7 +2074,7 @@ de:
get_directions_title: Routenberechnung zwischen zwei Orten
from: Von
to: Nach
where_am_i: Wo bin ich?
where_am_i: Wo ist dies?
where_am_i_title: Die momentane Position mit der Suchmaschine anzeigen
submit_text: Los
reverse_directions_text: Richtungen umkehren
@ -2147,23 +2148,6 @@ de:
bicycle_shop: Fahrradladen
bicycle_parking: Fahrradparkplatz
toilets: Toiletten
richtext_area:
edit: Bearbeiten
preview: Vorschau
markdown_help:
title_html: Geparst mit <a href="https://kramdown.gettalong.org/quickref.html">kramdown</a>
headings: Überschriften
heading: Überschrift
subheading: Zwischenüberschrift
unordered: Aufzählung
ordered: Nummerierte Liste
first: Erstes Element
second: Zweites Element
link: Link
text: Text
image: Bild
alt: Alt-Text
url: URL
welcome:
title: Willkommen!
introduction_html: |-

View file

@ -789,6 +789,7 @@ diq:
lost_password:
greeting: Merheba,
note_comment_notification:
anonymous: Yew karbero bêname
greeting: Merheba,
changeset_comment_notification:
greeting: Merheba,
@ -893,18 +894,6 @@ diq:
summit:
- Sersıq
- Ko
richtext_area:
edit: Bıvurne
preview: Verqayt
markdown_help:
headings: Sernamey
heading: Sername
first: Çiyo sıfteyên
second: Çiyo Bahdoyên
link: Gıre
text: Metın
image: Resım
url: URL
welcome:
title: Xeyr amey!
traces:

View file

@ -1338,24 +1338,6 @@ dsb:
private: Priwatny pśistup
destination: Jano za pśigranicujucych
construction: Drogi w twari
richtext_area:
edit: Wobźěłaś
preview: Pśeglěd
markdown_help:
title_html: Z <a href="http://daringfireball.net/projects/markdown/">Markdown</a>
analyzěrowany
headings: Nadpisma
heading: Nadpismo
subheading: Pódnapismo
unordered: Nalicenje
ordered: Numerěrowana lisćina
first: Prědny element
second: Drugi element
link: Wótkaz
text: Tekst
image: Wobraz
alt: Alternatiwny tekst
url: URL
welcome:
title: Witaj!
introduction_html: Witaj k OpenstreetMap, lichej a wobźěłujobnej kórśe swěta.

View file

@ -1811,23 +1811,6 @@ el:
bicycle_shop: Κατάστημα ποδηλάτων
bicycle_parking: Χώρος στάθμευσης ποδηλάτων
toilets: Τουαλέτες
richtext_area:
edit: Επεξεργασία
preview: Προεπισκόπηση
markdown_help:
title_html: Αναλύεται με το <a href="https://kramdown.gettalong.org/quickref.html">kramdown</a>
headings: Επικεφαλίδες
heading: Επικεφαλίδα
subheading: Υποκεφαλίδα
unordered: Μη ταξινομημένη λίστα
ordered: Ταξινομημένη λίστα
first: Πρώτο στοιχείο
second: Δεύτερο στοιχείο
link: Σύνδεσμος
text: Κείμενο
image: Εικόνα
alt: Εναλ. κείμενο
url: Διεύθυνση URL
welcome:
title: Καλώς ήρθατε!
introduction_html: Σας καλωσορίζουμε στο OpenStreetMap, τον ελεύθερο και επεξεργάσιμο

View file

@ -1700,23 +1700,6 @@ en-GB:
bicycle_shop: Bicycle shop
bicycle_parking: Bicycle parking
toilets: Toilets
richtext_area:
edit: Edit
preview: Preview
markdown_help:
title_html: Parsed with <a href="https://kramdown.gettalong.org/quickref.html">kramdown</a>
headings: Headings
heading: Heading
subheading: Subheading
unordered: Unordered list
ordered: Ordered list
first: First item
second: Second item
link: Link
text: Text
image: Image
alt: Alt text
url: URL
welcome:
title: Welcome!
introduction_html: Welcome to OpenStreetMap, the free and editable map of the

View file

@ -1995,23 +1995,6 @@ en:
bicycle_shop: "Bicycle shop"
bicycle_parking: "Bicycle parking"
toilets: "Toilets"
richtext_area:
edit: Edit
preview: Preview
markdown_help:
title_html: Parsed with <a href="https://kramdown.gettalong.org/quickref.html">kramdown</a>
headings: Headings
heading: Heading
subheading: Subheading
unordered: Unordered list
ordered: Ordered list
first: First item
second: Second item
link: Link
text: Text
image: Image
alt: Alt text
url: URL
welcome:
title: Welcome!
introduction_html: |

View file

@ -2035,23 +2035,6 @@ eo:
bicycle_shop: Bicikl-vendejo
bicycle_parking: Parkumejo bicikla
toilets: Necesejo
richtext_area:
edit: Redakti
preview: Antaŭvidi
markdown_help:
title_html: Sintakse analizita per <a href="https://kramdown.gettalong.org/quickref.html">kramdown</a>
headings: Titoloj
heading: Titolo
subheading: Subtitolo
unordered: Malordigita listo
ordered: Ordigita listo
first: Unua elemento
second: Dua elemento
link: Ligilo
text: Teksto
image: Bildo
alt: Kromteksto
url: URL
welcome:
title: Bonvenon!
introduction_html: Bonvenon al OpenStreetMap, la libera kaj redaktebla mapo

View file

@ -2120,23 +2120,6 @@ es:
bicycle_shop: Tienda de bicicletas
bicycle_parking: Aparcamiento de bicicletas
toilets: Baños
richtext_area:
edit: Editar
preview: Vista previa
markdown_help:
title_html: Procesado con <a href="https://kramdown.gettalong.org/quickref.html">kramdown</a>
headings: Títulos
heading: Título
subheading: Subcabecera
unordered: Lista sin ordenar
ordered: Lista ordenada
first: Primer elemento
second: Segundo elemento
link: Enlace
text: Texto
image: Imagen
alt: Texto alternativo
url: URL
welcome:
title: ¡Bienvenido!
introduction_html: Bienvenido a OpenStreetMap, el mapa libre y editable del

View file

@ -1525,23 +1525,6 @@ et:
private: Üksnes omanikule
destination: Üksnes läbisõiduks
construction: Ehitatavad teed
richtext_area:
edit: Muuda
preview: Eelvaade
markdown_help:
title_html: Parsitud <a href="https://kramdown.gettalong.org/quickref.html">kramdowniga</a>
headings: Pealkirjad
heading: Pealkiri
subheading: Alampealkiri
unordered: Järjestamata loend
ordered: Järjestatud loend
first: Esimene üksus
second: Teine üksus
link: Link
text: Tekst
image: Pilt
alt: Asendustekst
url: URL
welcome:
title: Tere tulemast!
introduction_html: Tere tulemast OpenStreetMappi, vabasse ja muudetavasse maailmakaarti.

View file

@ -1718,23 +1718,6 @@ eu:
bicycle_shop: Bizikleta-denda
bicycle_parking: Bizikleta-aparkalekua
toilets: Komunak
richtext_area:
edit: Aldatu
preview: Aurrikusi
markdown_help:
title_html: Honekin analizatua:<a href="https://kramdown.gettalong.org/quickref.html">kramdown</a>
headings: Atalburuak
heading: Goiburua
subheading: Azpi-goiburua
unordered: Ordenik gabeko zerrenda
ordered: Ordenatutako zerrenda
first: Lehenengo itema
second: Bigarren itema
link: Esteka
text: Testua
image: Irudia
alt: Testu alternatiboa
url: URLa
welcome:
title: Ongi etorri!
introduction_html: Ongi etorri OpenStreetMapera, edonork alda dezakeen munduko

View file

@ -116,11 +116,11 @@ fa:
url: نشانی اینترنتی برنامه اصلی (الزامی)
callback_url: Callback URL
support_url: URL پشتیبانی
allow_read_prefs: ترجیحات کاربری آن‌ها را بخواند
allow_write_prefs: ترجیحات کاربری آن‌ها را تغییر دهد
allow_read_prefs: ترجیحات کاربری او را بخواند
allow_write_prefs: ترجیحات کاربری او را تغییر دهد
allow_write_diary: روزنوشت ایجاد کند، نظر ثبت کند و دوست اضافه کند
allow_write_api: نقشه را تغییر دهد
allow_read_gpx: ردهای GPS خصوصی آن‌ها را بخواند
allow_read_gpx: ردهای GPS خصوصی او را بخواند
allow_write_gpx: ردهای GPS بارگذاری کند
allow_write_notes: یادداشت‌ها را تغییر دهد
diary_comment:
@ -1413,10 +1413,17 @@ fa:
گذاشته است:'
footer: '‫همچنین می‌توانید نظر را در اینجا بخوانید: %{readurl}؛ اینجا به آن
نظر دهید: %{commenturl}؛ یا از اینجا به نویسنده پیام بدهید: %{replyurl} '
footer_html: '‫همچنین می‌توانید نظر را در اینجا بخوانید: %{readurl}؛ اینجا به
آن نظر دهید: %{commenturl}؛ یا از اینجا به نویسنده پیام بدهید: %{replyurl}
'
message_notification:
hi: ‫سلام %{to_user}،‬
header: %{from_user} از طریق اوپن‌استریت‌مپ پیامی با موضوع «%{subject}» برای
شما فرستاده است:
header_html: %{from_user} از طریق اوپن‌استریت‌مپ پیامی با موضوع «%{subject}»
برای شما فرستاده است:
footer: '‫همچنین می‌توانید این پیام را در اینجا بخوانید: %{readurl} و از اینجا
به نویسنده پیام بدهید: %{replyurl} '
footer_html: '‫همچنین می‌توانید این پیام را در اینجا بخوانید: %{readurl} و از
اینجا به نویسنده پیام بدهید: %{replyurl} '
friendship_notification:
@ -1425,13 +1432,19 @@ fa:
had_added_you: %{user} در اوپن‌استریت‌مپ شما را به‌عنوان دوست اضافه کرد.
see_their_profile: '‫می‌توانید نمایهٔ کاربری او را در اینجا ببینید: %{userurl}
'
see_their_profile_html: '‫می‌توانید نمایهٔ کاربری او را در اینجا ببینید: %{userurl}
'
befriend_them: '‫شما نیز می‌توانید از اینجا او را به‌عنوان دوست اضافه کنید:
%{befriendurl} '
befriend_them_html: '‫شما نیز می‌توانید از اینجا او را به‌عنوان دوست اضافه کنید:
%{befriendurl} '
gpx_failure:
hi: ‫سلام %{to_user}،‬
failed_to_import: 'درون‌برد نشد. این خطا رخ داد:'
import_failures_url: https://wiki.openstreetmap.org/wiki/Fa:GPX_Import_Failures
subject: '[OpenStreetMap] ‫شکست درون‌برد GPX'
gpx_success:
hi: ‫سلام %{to_user}،‬
loaded_successfully:
one: با موفقیت و با %{trace_points} نقطه از 1 نقطهٔ ممکن بار شد.
other: با موفقیت و با %{trace_points} نقطه از %{possible_points} نقطهٔ ممکن
@ -1469,16 +1482,24 @@ fa:
داد‬'
your_note: '%{commenter} روی یکی از یادداشت‌های شما بر نقشه نظر داد. این
یادداشت نزدیک اینجاست: %{place}'
your_note_html: '%{commenter} روی یکی از یادداشت‌های نقشه‌ای شما نظر داد.
این یادداشت نزدیک اینجاست: %{place}'
commented_note: '%{commenter} روی یکی از یادداشت‌های نقشه که شما بر آن نظر
داده‌اید، نظر داد. این یادداشت نزدیک اینجاست: %{place}'
commented_note_html: '%{commenter} روی یکی از یادداشت‌های نقشه که شما بر
آن نظر داده‌اید، نظر داد. این یادداشت نزدیک اینجاست: %{place}'
closed:
subject_own: '[OpenStreetMap] %{commenter} یکی از یادداشت‌های شما را حل کرد‬'
subject_other: '[OpenStreetMap] %{commenter} یکی از یادداشت‌های موردتوجه
شما را حل کرد‬'
your_note: '%{commenter} یکی از یادداشت‌های شما بر نقشه را حل کرد. یادداشت
نزدیک اینجاست: %{place}'
your_note_html: '%{commenter} یکی از یادداشت‌های شما بر نقشه را حل کرد. یادداشت
نزدیک اینجاست: %{place}'
commented_note: '%{commenter} یکی از یادداشت‌های نقشه را که شما بر آن نظر
داده‌اید، حل کرد. یادداشت نزدیک اینجاست: %{place}'
commented_note_html: '%{commenter} یکی از یادداشت‌های نقشه را که شما بر آن
نظر داده‌اید، حل کرد. یادداشت نزدیک اینجاست: %{place}'
reopened:
subject_own: '[OpenStreetMap] %{commenter} یکی از یادداشت‌های شما را دوباره
فعال کرد‬'
@ -1486,9 +1507,14 @@ fa:
شما را دوباره فعال کرد‬'
your_note: '%{commenter} یکی از یادداشت‌های شما روی نقشه را دوباره فعال کرد.
این یادداشت نزدیک اینجاست: %{place}'
your_note_html: '%{commenter} یکی از یادداشت‌های نقشه‌ای شما را دوباره فعال
کرد. این یادداشت نزدیک اینجاست: %{place}'
commented_note: '%{commenter} یکی از یادداشت‌های نقشه را که شما بر آن نظر
داده‌اید دوباره فعال کرد. یادداشت نزدیک اینجاست: %{place}'
commented_note_html: '%{commenter} یکی از یادداشت‌های نقشه را که شما بر آن
نظر داده‌اید دوباره فعال کرد. یادداشت نزدیک اینجاست: %{place}'
details: '‫جزئیات بیشتر دربارهٔ این یادداشت را اینجا ببینید: %{url}'
details_html: '‫جزئیات بیشتر دربارهٔ یادداشت را اینجا ببینید: %{url}'
changeset_comment_notification:
hi: ‫سلام %{to_user}،
greeting: سلام،‏
@ -1499,14 +1525,23 @@ fa:
نظر داد‬'
your_changeset: %{commenter} روی یکی از بسته‌های تغییر شما که در %{time}
ایجاد کردید، نظر داد
your_changeset_html: %{commenter} روی یکی از بسته‌های تغییر شما در %{time}
نظر داد
commented_changeset: %{commenter} برای بستهٔ تغییری که %{changeset_author}
در %{time} ایجاد کرده و شما مشترک آن هستید، نظر نوشت
commented_changeset_html: %{commenter} برای بستهٔ تغییری که %{changeset_author}
ایجاد کرده و شما مشترک آن هستید، در %{time} نظر نوشت
partial_changeset_with_comment: 'توضیح بستهٔ تغییر: «%{changeset_comment}»'
partial_changeset_with_comment_html: 'توضیح بستهٔ تغییر: «%{changeset_comment}»'
partial_changeset_without_comment: بستهٔ تغییر توضیح ندارد
details: '‫اطلاعات بیشتر دربارهٔ بستهٔ تغییر را می‌توانید اینجا ببینید: %{url}
'
details_html: '‫اطلاعات بیشتر دربارهٔ بستهٔ تغییر را می‌توانید اینجا ببینید:
%{url} '
unsubscribe: ‫برای لغو اطلاع‌رسانی‌های مربوط به این بستهٔ تغییر، به %{url} بروید
و روی «لغو اشتراک» کلیک کنید.
unsubscribe_html: ‫برای لغو اطلاع‌رسانی‌های مربوط به این بستهٔ تغییر، به %{url}
بروید و روی «لغو اشتراک» کلیک کنید.
messages:
inbox:
title: صندوق دریافت
@ -1584,12 +1619,22 @@ fa:
destroyed: پیام حذف شد
shared:
markdown_help:
title_html: تجزیه با <a href="https://kramdown.gettalong.org/quickref.html">کرام‌داون</a>
headings: عنوان‌‌بندی
heading: عنوان
subheading: عنوان فرعی
unordered: لیست نامرتب
ordered: لیست مرتب
first: اولین مورد
second: دومین مورد
link: پیوند
text: متن
image: تصویر
alt: متن جایگزین
url: آدرس اینترنتی
richtext_field:
edit: ویرایش کنید
edit: ویرایش
preview: پیش‌نمایش
site:
about:
next: بعدی
@ -1965,23 +2010,6 @@ fa:
bicycle_shop: فروشگاه دوچرخه
bicycle_parking: پارکینگ دوچرخه
toilets: سرویس های بهداشتی
richtext_area:
edit: ویرایش
preview: پیش‌نمایش
markdown_help:
title_html: تجزیه با <a href="https://kramdown.gettalong.org/quickref.html">کرام‌داون</a>
headings: عنوان‌‌بندی
heading: عنوان
subheading: عنوان فرعی
unordered: لیست نامرتب
ordered: لیست مرتب
first: اولین مورد
second: دومین مورد
link: پیوند
text: متن
image: تصویر
alt: متن جایگزین
url: نشانی اینترنتی
welcome:
title: خوش آمدید!
introduction_html: به OpenStreetMap، نقشهٔ آزاد و قابل‌ویرایش جهان، خوش آمدید.
@ -2464,6 +2492,7 @@ fa:
gravatar:
gravatar: استفاده از Gravatar
link: https://wiki.openstreetmap.org/wiki/Gravatar
what_is_gravatar: Gravatar چیست؟
disabled: گراواتار غیرفعال شد.
enabled: نمایش گراواتار شما فعال شد.
new image: افزودن تصویر
@ -2686,6 +2715,8 @@ fa:
custom_dimensions: تنظیم ابعاد سفارشی
format: 'قالب:'
scale: 'مقیاس: '
image_dimensions: عکسی از لایهٔ استاندارد به‌ابعاد %{width} x %{height} تولید
می‌شود
download: بارگیری
short_url: نشانی کوتاه
include_marker: شامل نشانگر
@ -2726,6 +2757,8 @@ fa:
copyright: © <a href='%{copyright_url}'>مشارکت‌کنندگان OpenStreetMap</a>
donate_link_text: <a class='donate-attr' href='%{donate_url}'>کمک مالی</a>
terms: <a href='%{terms_url}' target='_blank'>شرایط وبسایت و API</a>
cyclosm: سبک کاشی‌ها از <a href='%{cyclosm_url}' target='_blank'>CyclOSM</a>
میزبانی با <a href='%{osmfrance_url}' target='_blank'>اوپن‌استریت‌مپ فرانسه</a>
thunderforest: کاشی‌ها با لطف <a href='%{thunderforest_url}' target='_blank'>Andy
Allan</a>
opnvkarte: کاشی‌ها با لطف <a href='%{memomaps_url}' target='_blank'></a>

View file

@ -1893,23 +1893,6 @@ fi:
bicycle_shop: Pyöräkauppa
bicycle_parking: Pyöräparkki
toilets: Vessat
richtext_area:
edit: Muokkaa
preview: Esikatselu
markdown_help:
title_html: Jäsennä <a href="https://daringfireball.net/projects/markdown/">Wikitekstinä</a>
headings: Otsikot
heading: Otsikko
subheading: Alaotsikko
unordered: Numeroimaton lista
ordered: Numeroitu lista
first: Ensimmäinen kohta
second: Toinen kohta
link: Linkki
text: Teksti
image: Kuva
alt: Vaihtoehtoinen teksti
url: Osoite
welcome:
title: Tervetuloa!
introduction_html: 'Tervetuloa OpenStreetMapiin: ilmaiseen ja vapaasti muokattavaan

View file

@ -869,14 +869,6 @@ fit:
entry:
school:
1: yniversiteetti
richtext_area:
edit: Mookkaa
preview: Esikattelu
markdown_help:
link: Länkki
text: Teksti
image: Kuva
url: Atressi
welcome:
title: Tervetuloa!
add_a_note:

View file

@ -2142,23 +2142,6 @@ fr:
bicycle_shop: Magasin de vélos
bicycle_parking: Parking à vélos
toilets: Toilettes
richtext_area:
edit: Modifier
preview: Aperçu
markdown_help:
title_html: Analysé avec <a href="https://kramdown.gettalong.org/quickref.html">kramdown</a>
headings: Titres
heading: Titre
subheading: Sous-titre
unordered: Liste non ordonnée
ordered: Liste ordonnée
first: Premier élément
second: Deuxième élément
link: Lien
text: Texte
image: Image
alt: Texte alternatif
url: URL
welcome:
title: Bienvenue !
introduction_html: Bienvenue dans OpenStreetMap, la carte du monde libre et

View file

@ -930,23 +930,6 @@ fur:
bridge: Rie nere = puint
private: Acès privât
construction: Stradis in costruzion
richtext_area:
edit: Cambie
preview: Anteprime
markdown_help:
title_html: Analizât cun <a href="http://daringfireball.net/projects/markdown/">Markdown</a>
headings: Intestazions
heading: Titul
subheading: Sottitul
unordered: Liste no ordenade
ordered: Liste ordenade
first: Prin element
second: Secont element
link: Leam
text: Test
image: Figure
alt: Test alternatîf
url: URL
welcome:
title: Benvignût!
whats_on_the_map:

View file

@ -489,13 +489,6 @@ fy:
school:
- Skoalle
- universiteit
richtext_area:
edit: Bewurkje
preview: Proefbyld
markdown_help:
text: Tekst
image: Ôfbylding
url: URL
welcome:
title: Wolkom!
traces:

View file

@ -1530,23 +1530,6 @@ ga:
bicycle_shop: Siopa rothar
bicycle_parking: Páirceáil do rothair
toilets: Leithreas
richtext_area:
edit: Cuir in eagar
preview: Réamhamharc
markdown_help:
title_html: Parsáilte le <a href="https://daringfireball.net/projects/markdown/">Markdown</a>
headings: Ceannteidil
heading: Ceannteideal
subheading: Fotheideal
unordered: Liosta gan ord
ordered: Liosta in ord
first: An chéad mhír
second: An dara mír
link: Nasc
text: Téacs
image: Íomhá
alt: Téacs malartach
url: URL
welcome:
title: Fáilte!
introduction_html: Fáilte go OpenStreepMap, léarscáil den Domhan atá saor in

View file

@ -1488,23 +1488,6 @@ gd:
bicycle_shop: Bùth bhaidhseagalan
bicycle_parking: Pàirceadh bhaidhseagalan
toilets: Taighean-beaga
richtext_area:
edit: Deasaich
preview: Ro-sheall
markdown_help:
title_html: '''Ga pharsadh le <a href="http://daringfireball.net/projects/markdown/">Markdown</a>'
headings: Ceann-sgrìobhaidhean
heading: Ceann-sgrìobhadh
subheading: Fo-cheann-sgrìobhadh
unordered: Liosa gun seòrsachadh
ordered: Liosta le seòrsachadh
first: A' chiad nì
second: An dàrna nì
link: Ceangal
text: Teacsa
image: Dealbh
alt: Teacsa eile
url: URL
welcome:
title: Fàilte!
introduction_html: Fàilte gu OpenStreetMap, mapa saor an t-saoghail a ghabhas

View file

@ -2087,23 +2087,6 @@ gl:
bicycle_shop: Tenda de bicicletas
bicycle_parking: Aparcadoiro de bicicletas
toilets: Servizos
richtext_area:
edit: Editar
preview: Vista previa
markdown_help:
title_html: Analizado co <a href="https://kramdown.gettalong.org/quickref.html">kramdown</a>
headings: Cabeceiras
heading: Cabeceira
subheading: Subcabeceira
unordered: Listaxe sen ordear
ordered: Listaxe ordeada
first: Primeiro elemento
second: Segundo elemento
link: Ligazón
text: Texto
image: Imaxe
alt: Texto alternativo
url: URL
welcome:
title: Reciba a nosa benvida!
introduction_html: Dámoslle a benvida ó OpenStreetMap, o mapa do mundo libre

View file

@ -2075,23 +2075,6 @@ he:
bicycle_shop: חנות אופניים
bicycle_parking: חניית אופניים
toilets: שירותים
richtext_area:
edit: עריכה
preview: תצוגה מקדימה
markdown_help:
title_html: פוענח בעזרת <a href="https://kramdown.gettalong.org/quickref.html">kramdown</a>
headings: כותרות
heading: כותרת
subheading: כותרת משנה
unordered: רשימה בלתי־ממוינת
ordered: רשימה ממוינת
first: הפריט הראשון
second: הפריט השני
link: קישור
text: טקסט
image: תמונה
alt: טקסט חלופי
url: כתובת
welcome:
title: ברוך בואך!
introduction_html: ברוך בואך ל־OpenStreetMap, מפה חופשית של העולם, שאפשר לערוך.

View file

@ -1431,14 +1431,6 @@ hr:
bicycle_shop: Biciklistička prodavaonica
bicycle_parking: Parkiralište za bicikle
toilets: Zahodi
richtext_area:
edit: Uredi
markdown_help:
link: Poveznica
text: Tekst
image: Slika
alt: Alternativni tekst
url: URL
welcome:
title: Dobrodošli!
whats_on_the_map:

View file

@ -1684,24 +1684,6 @@ hsb:
private: Priwatny přistup
destination: Jenož za přidróžnych
construction: Dróhi w twarje
richtext_area:
edit: Wobdźěłać
preview: Přehlad
markdown_help:
title_html: Z <a href="http://daringfireball.net/projects/markdown/">Markdown</a>
analyzowany
headings: Nadpisy
heading: Nadpis
subheading: Podnapis
unordered: Naličenje
ordered: Čisłowana lisćina
first: Prěni element
second: Druhi element
link: Wotkaz
text: Tekst
image: Wobraz
alt: Alternatiwny tekst
url: URL
welcome:
title: Witaj!
introduction_html: Witaj k OpenstreetMap, swobodnej a wobdźěłujomnej karće swěta.

View file

@ -1789,23 +1789,6 @@ hu:
bicycle_shop: Kerékpár bolt
bicycle_parking: Kerékpár parkoló
toilets: Nyilvános WC
richtext_area:
edit: Szerkeszt
preview: Előnézet
markdown_help:
title_html: 'Megjelenítés: <a href="https://kramdown.gettalong.org/quickref.html">kramdown</a>'
headings: Címsorok
heading: Címsor
subheading: Alcím
unordered: Rendezetlen lista
ordered: Rendezett lista
first: Első tétel
second: Második tétel
link: Hivatkozás
text: Szöveg
image: Kép
alt: ALT szöveg
url: URL
welcome:
title: Üdvözlet!
introduction_html: Üdvözöl az OpenStreetMap - a szabad és szerkeszthető világtérkép

View file

@ -1881,23 +1881,6 @@ ia:
bicycle_shop: Magazin de bicyclettas
bicycle_parking: Parcamento de bicyclettas
toilets: Toilettes
richtext_area:
edit: Modificar
preview: Previsualisation
markdown_help:
title_html: Processate con <a href="https://kramdown.gettalong.org/quickref.html">kramdown</a>
headings: Titulos
heading: Titulo
subheading: Subtitulo
unordered: Lista non ordinate
ordered: Lista ordinate
first: Prime elemento
second: Secunde elemento
link: Ligamine
text: Texto
image: Imagine
alt: Texto alternative
url: URL
welcome:
title: Benvenite!
introduction_html: Bevenite a OpenStreetMap, le carta libere e modificabile

View file

@ -1945,23 +1945,6 @@ id:
bicycle_shop: Toko sepeda
bicycle_parking: Tempat parkir sepeda
toilets: Toilet
richtext_area:
edit: Edit
preview: Tinjauan
markdown_help:
title_html: Diurai dengan <a href="https://kramdown.gettalong.org/quickref.html">kramdown</a>
headings: Judul
heading: Judul
subheading: Subjudul
unordered: Daftar tak berurut
ordered: Daftar terurut
first: Objek pertama
second: Objek kedua
link: Tautan
text: Teks
image: Gambar
alt: Teks Alternatif
url: URL
welcome:
title: Selamat datang!
introduction_html: Selamat datang di OpenStreetMap, peta dunia gratis dan dapat

View file

@ -2007,23 +2007,6 @@ is:
bicycle_shop: Hjólaverslun
bicycle_parking: Reiðhjólastæði
toilets: Salerni
richtext_area:
edit: Breyta
preview: Forskoðun
markdown_help:
title_html: Þáttað með <a href="https://kramdown.gettalong.org/quickref.html">kramdown</a>
headings: Fyrirsagnir
heading: Fyrirsögn
subheading: Undirfyrirsögn
unordered: Óraðaður listi
ordered: Raðaður listi
first: Fyrsta atriði
second: Annað atriði
link: Tengill
text: Texti
image: Mynd
alt: Alt-texti
url: Slóð (URL)
welcome:
title: Velkomin!
introduction_html: |-

View file

@ -2096,23 +2096,6 @@ it:
bicycle_shop: Negozio di biciclette
bicycle_parking: Parcheggio per biciclette
toilets: Bagni pubblici
richtext_area:
edit: Modifica
preview: Anteprima
markdown_help:
title_html: Analizzato con <a href="https://kramdown.gettalong.org/quickref.html">kramdown</a>
headings: Intestazioni
heading: Intestazione
subheading: Sottotitolo
unordered: Elenco puntato
ordered: Elenco ordinato
first: Prima voce
second: Seconda voce
link: Collegamento
text: Testo
image: Immagine
alt: Testo alternativo
url: URL
welcome:
title: Benvenuto!
introduction_html: Benvenuti in OpenStreetMap, la mappa del mondo libera e modificabile.

View file

@ -1938,23 +1938,6 @@ ja:
bicycle_shop: 自転車販売店
bicycle_parking: 駐輪場
toilets: トイレ
richtext_area:
edit: 編集
preview: プレビュー
markdown_help:
title_html: <a href="https://kramdown.gettalong.org/quickref.html"></a>で構文解析します
headings: 見出し
heading: 見出し
subheading: 小見出し
unordered: 番号なしリスト
ordered: 番号付きリスト
first: 項目 1
second: 項目 2
link: リンク
text: テキスト
image: 画像
alt: 代替テキスト
url: URL
welcome:
title: ようこそ!
introduction_html: フリーで編集可能な世界地図、OpenStreetMapへようこそ。サインアップしたので、マッピングの準備はすべて整いました。知っておかなければならない重要事項を簡単に説明します。

View file

@ -949,17 +949,6 @@ ka:
summit:
- მწვერვალი
- პიკი
richtext_area:
edit: რედაქტირება
preview: წინასწარი გადახედვა
markdown_help:
first: პირველი ელემენტი
second: მეორე ელემენტი
link: ბმული
text: ტექსტი
image: სურათი
alt: ალტერნატიული ტექსტი
url: URL
traces:
new:
visibility_help: ეს რას ნიშნავს?

View file

@ -1058,20 +1058,6 @@ kab:
school:
- Aɣerbaz
- Tasdawit
richtext_area:
edit: Ẓreg
markdown_help:
title_html: Yettwasleḍ s <a href="https://daringfireball.net/projects/markdown/">Markdown</a>
headings: Izwal
heading: Azwel
subheading: Azwel asnawan
first: Aferids amezwaru
second: Aferdis wis sin
link: Aseɣwen
text: Aḍris
image: Tugna
alt: Aḍris-nniḍen
url: Tansa URL
welcome:
title: Anṣuf!
whats_on_the_map:

View file

@ -661,14 +661,6 @@ kn:
- ಪಾಠಶಾಲೆ
- ವಿಶ್ವವಿದ್ಯಾಲಯ
station: ರೈಲು ನಿಲ್ದಾಣ
richtext_area:
edit: ಸಂಪಾದಿಸಿ
preview: ಮುನ್ನೋಟ
markdown_help:
headings: ತಲೆಬರಹಗಳು
heading: ತಲೆಬರಹ
subheading: ಉಪ ಶಿರೋನಾಮೆ
image: ಚಿತ್ರ
welcome:
title: ಸುಸ್ವಾಗತ!
whats_on_the_map:

View file

@ -1872,24 +1872,6 @@ ko:
bicycle_shop: 자전거 가게
bicycle_parking: 자전거 주차장
toilets: 화장실
richtext_area:
edit: 편집
preview: 미리 보기
markdown_help:
title_html: <a href="https://kramdown.gettalong.org/quickref.html">kramdown</a>으로
구문 분석
headings: 문단 제목
heading: 문단 제목
subheading: 하위 문단 제목
unordered: 순서 없는 목록
ordered: 순서 있는 목록
first: 첫째 항목
second: 둘째 항목
link: 링크
text: 텍스트
image: 그림
alt: 대체 텍스트
url: URL
welcome:
title: 환영합니다!
introduction_html: |-

View file

@ -294,9 +294,6 @@ ksh:
private: Der Zohjang es prėvaat
destination: Bloß för Aanliejer
construction: Schtrohß em Bou
richtext_area:
edit: Ändere
preview: Vörschou
welcome:
rules:
title: Rääjelle!

View file

@ -2089,25 +2089,6 @@ ku-Latn:
bicycle_shop: Bisiklêtfiroş
bicycle_parking: Parka bisiklêtê
toilets: Tiwalet
richtext_area:
edit: Biguherîne
preview: Pêşdîtin
markdown_help:
title_html: |-
Bi <a href="https://kramdown.gettalong.org/quickref.html">kramdown</a>
hate analîzkirin
headings: Sernivîs
heading: Sernivîs
subheading: Sernivîsa binî
unordered: Lîsta nerêzkirî
ordered: Lîsta rêzkirî
first: Hêmana yekem
second: Hêmana duyem
link: Girêdan
text: Nivîs
image: Wêne
alt: Nivîsa alternatîv
url: URL
welcome:
title: Tu bi xêr hatî!
introduction_html: Tu bi xêr hatî OpenStreetMapê, nexşeya dinyayê yê azad û

View file

@ -1039,22 +1039,6 @@ lb:
bicycle_shop: Vëlosgeschäft
bicycle_parking: Vëlosparking
toilets: Toiletten
richtext_area:
edit: Änneren
preview: Kucken ouni ofzespäicheren
markdown_help:
headings: Iwwerschrëften
heading: Iwwerschrëft
subheading: Ënneriwwerschrëft
unordered: Net-nummeréiert Lëscht
ordered: Nummeréiert Lëscht
first: Éischt Element
second: Zweet Element
link: Link
text: Text
image: Bild
alt: Alternativen Text
url: URL
welcome:
title: Wëllkomm!
whats_on_the_map:

View file

@ -1746,23 +1746,6 @@ lt:
bicycle_shop: Dviračių parduotuvė
bicycle_parking: Dviračių stovėjimo aikštelė
toilets: Tualetai
richtext_area:
edit: Redaguoti
preview: Peržiūra
markdown_help:
title_html: Išanalizuota su <a href="https://kramdown.gettalong.org/quickref.html">kramdown</a>
headings: Antraštės
heading: Antraštė
subheading: Paantraštė
unordered: Nesurikiuotas sąrašas
ordered: Surikiuotas sąrašas
first: Pirmasis punktas
second: Antras punktas
link: Nuoroda
text: Tekstas
image: Paveikslėlis
alt: Alternatyvusis tekstas
url: URL
welcome:
title: Sveiki atvykę!
introduction_html: Sveikiname prisijungus prie OpenStreetMap - laisvo ir redaguojamo

View file

@ -1567,23 +1567,6 @@ lv:
bicycle_shop: Velosipēdu veikals
bicycle_parking: Velosipēdu novietne
toilets: Tualetes
richtext_area:
edit: Labot
preview: Priekšskatījums
markdown_help:
title_html: Parsēts ar <a href="https://daringfireball.net/projects/markdown/">Markdown</a>
headings: Virsraksti
heading: Virsraksts
subheading: Apakšvirsraksts
unordered: Nesakārtots saraksts
ordered: Sakārtots saraksts
first: Pirmais vienums
second: Otrais vienums
link: Saite
text: Teksts
image: Attēls
alt: Alt teksts
url: URL
welcome:
title: Laipni lūdzam!
introduction_html: Sveicināts OpenStreetMap, bezmaksas un rediģējamā pasaules

View file

@ -2060,23 +2060,6 @@ mk:
bicycle_shop: Точкар
bicycle_parking: Паркирање велосипеди
toilets: Тоалет
richtext_area:
edit: Уреди
preview: Преглед
markdown_help:
title_html: Расчленето со <a href="https://kramdown.gettalong.org/quickref.html">kramdown</a>
headings: Наслови
heading: Наслов
subheading: Поднаслов
unordered: Неподреден список
ordered: Подреден список
first: Прва ставка
second: Втора ставка
link: Врска
text: Текст
image: Слика
alt: Алтернативен текст
url: URL
welcome:
title: Добре дојдовте!
introduction_html: Добре дојдовте на OpenStreetMap — слободна и уредлива карта

View file

@ -1080,21 +1080,6 @@ mr:
construction: निर्माणाधीन रस्ते
bicycle_shop: सायकल दुकान
toilets: स्वच्छतागृह
richtext_area:
edit: संपादन करा
preview: झलक
markdown_help:
headings: मथळे
heading: मथळा
subheading: उपमथळा
unordered: अक्रमित यादी
ordered: क्रमित यादी
first: पहिली बाब
second: दुसरी बाब
link: दुवा
text: मजकूर
image: चित्र
url: URL
welcome:
title: सुस्वागतम्‌!
whats_on_the_map:

View file

@ -1582,23 +1582,6 @@ ms:
bicycle_shop: Kedai Basikal
bicycle_parking: Tempat letak basikal
toilets: Tandas
richtext_area:
edit: Sunting
preview: Pralihat
markdown_help:
title_html: Dihuraikan dengan <a href="http://daringfireball.net/projects/markdown/">Markdown</a>
headings: Judul
heading: Judul
subheading: Judul kecil
unordered: Senarai tak tertib
ordered: Senarai tertib
first: Perkara pertama
second: Perkara kedua
link: Pautan
text: Teks
image: Gambar
alt: Teks alt
url: URL
welcome:
title: Selamat datang!
introduction_html: Selamat datang ke OpenStreetMap, peta dunia yang bebas disunting

View file

@ -667,13 +667,6 @@ my:
station: ရထားဘူတာ
construction: ဖောက်နေဆဲ လမ်းများ
toilets: အိမ်သာများ
richtext_area:
edit: ပြင်ဆင်ရန်
preview: ကြိုတင်အစမ်းကြည့်ရှုရန်
markdown_help:
link: လင့်
text: စာသား
image: ရုပ်ပုံ
welcome:
title: ကြိုဆိုပါသည်!
rules:

View file

@ -1857,23 +1857,6 @@ nb:
bicycle_shop: Sykkelbutikk
bicycle_parking: Sykkelparkering
toilets: Toaletter
richtext_area:
edit: Rediger
preview: Forhåndsvisning
markdown_help:
title_html: Fortolket med <a href="https://daringfireball.net/projects/markdown/">kramdown</a>
headings: Overskrifter
heading: Overskrift
subheading: Underoverskrift
unordered: Usortert liste
ordered: Sortert liste
first: Første punkt
second: Andre punkt
link: Lenke
text: Tekst
image: Bilde
alt: Alternativ tekst
url: URL
welcome:
title: Velkommen!
introduction_html: Velkommen til OpenStreetMap, det fri brukerredigerte verdenskartet.

View file

@ -1015,17 +1015,6 @@ ne:
bicycle_shop: साइकल पसल
bicycle_parking: साकल पार्किङ
toilets: शौचालय
richtext_area:
edit: सम्पादन
preview: पूर्वावलोकन
markdown_help:
headings: शीर्षकहरू
heading: शीर्षक
first: पहिलो वस्तु
link: लिङ्क
text: पाठ
image: छवि
url: युआरएल
welcome:
title: स्वागतम्!
whats_on_the_map:

View file

@ -2085,23 +2085,6 @@ nl:
bicycle_shop: Fietsenwinkel
bicycle_parking: Fietsenstalling
toilets: Toiletten
richtext_area:
edit: Bewerken
preview: Voorvertoning
markdown_help:
title_html: Verwerkt met <a href="https://daringfireball.net/projects/markdown/">Markdown</a>
headings: Kopjes
heading: Kopje
subheading: Onderkop
unordered: Ongeordende lijst
ordered: Geordende lijst
first: Eerste item
second: Tweede item
link: Koppeling
text: Tekst
image: Afbeelding
alt: Alternatieve tekst
url: URL
welcome:
title: Welkom!
introduction_html: Welkom bij OpenStreetMap, de open en te bewerken kaart van

View file

@ -1424,23 +1424,6 @@ nn:
bicycle_shop: Sykkelbutikk
bicycle_parking: Sykkelparkering
toilets: Toalett
richtext_area:
edit: Endre
preview: Førehandsvising
markdown_help:
title_html: Tolka med <a href="http://daringfireball.net/projects/markdown/">Markdown</a>
headings: Overskrifter
heading: Overskrifter
subheading: Underoverskrifter
unordered: Usortert liste
ordered: Sortert liste
first: Første punkt
second: Andre punkt
link: Lenkje
text: Tekst
image: Bilete
alt: Alternativ tekst
url: URL
welcome:
title: Velkomen!
whats_on_the_map:

View file

@ -1085,23 +1085,6 @@ nqo:
bicycle_shop: ߣߍ߰ߛߏ߬ ߝߎ߲ߞߎ߲
bicycle_parking: ߣߍ߰ߛߏ߬ ߟߐ߬ߘߊ߮
toilets: ߢߍ߲߮
richtext_area:
edit: ߊ߬ ߡߊߦߟߍ߬ߡߊ߲߫
preview: ߊ߬ ߘߐߜߍ߫ ߡߎߣߎ߲߬
markdown_help:
title_html: ߊ߬ ߟߊߦߟߍ߬ߣߍ߲߬ ߦߋ߫ <a href="https://kramdown.gettalong.org/quickref.html">kramdown</a>
ߟߋ߬ ߟߊ߫
headings: ߞߎ߲߬ߕߐ߮
heading: ߞߎ߲߬ߕߐ߮
subheading: ߞߎ߲߬ߕߐ߰ߘߎ߯ߟߊ
unordered: ߛߙߍߘߍ߫ ߡߊߞߟߌߓߊߟߌ
ordered: ߛߙߍߘߍ߫ ߡߊߞߟߌߣߍ߲
first: ߝߛߌ߬ ߝߟߐ
second: ߝߛߌ߬ ߝߌߟߊߣߊ߲
link: ߛߘߌ߬ߜߋ߲
text: ߞߟߏߘߋ߲
image: ߖߌ߬ߦߊ߬ߓߍ
url: URL
welcome:
title: ߊߟߎ߫ ߣߌ߫ ߛߣߍ߫߹
whats_on_the_map:

View file

@ -1688,23 +1688,6 @@ oc:
bicycle_shop: Magazin de bicicletas
bicycle_parking: Parcatge de bicicleta
toilets: Comuns
richtext_area:
edit: Modificar
preview: Apercebut
markdown_help:
title_html: Analisat amb <a href="https://daringfireball.net/projects/markdown/">Markdown</a>
headings: Títols
heading: Títol
subheading: Sostítol
unordered: Lista pas ordenada
ordered: Lista ordenada
first: Primièr element
second: Segond element
link: Ligam
text: Tèxte
image: Imatge
alt: Tèxte Alternatiu
url: URL
welcome:
title: Benvenguda !
introduction_html: Vos donam la benvenguda a OpenStreetMap, la mapa liura e

View file

@ -918,21 +918,6 @@ pa:
- ਸਿਖਰ
- ਚੋਟੀ
construction: ਉਸਾਰੀ ਹੇਠ ਸੜਕਾਂ
richtext_area:
edit: ਸੋਧੋ
preview: ਪਹਿਲ ਝਾਤ
markdown_help:
headings: ਸਿਰਨਾਵੇਂ
heading: ਸਿਰਨਾਵਾਂ
subheading: ਉਪਸਿਰਨਾਵਾਂ
ordered: ਕ੍ਰਮਬੱਧ ਸੂਚੀ
first: ਪਹਿਲੀ ਚੀਜ਼
second: ਦੂਜੀ ਚੀਜ਼
link: ਕੜੀ
text: ਲਿਖਤ
image: ਤਸਵੀਰ
alt: ਵਿਕਲਪਿਕ ਲਿਖਤ
url: ਯੂ.ਆਰ.ਐੱਲ.
welcome:
title: ਜੀ ਆਇਆਂ ਨੂੰ!
whats_on_the_map:

View file

@ -2138,23 +2138,6 @@ pl:
bicycle_shop: Sklep rowerowy
bicycle_parking: Parking dla rowerów
toilets: Toalety
richtext_area:
edit: Edytuj
preview: Podgląd
markdown_help:
title_html: Składnia <a href="https://kramdown.gettalong.org/quickref.html">kramdown</a>
headings: Nagłówki
heading: Nagłówek
subheading: Podtytuł
unordered: Lista nieuporządkowana
ordered: Lista numerowana
first: Pierwszy element
second: Drugi element
link: Odnośnik
text: Tekst
image: Obraz
alt: Tekst alternatywny
url: Adres URL
welcome:
title: Witamy!
introduction_html: Witamy w OpenStreetMap, wolnej mapie świata. Teraz, gdy masz

View file

@ -338,12 +338,6 @@ ps:
school:
- ښوونځی
- پوهنتون
richtext_area:
edit: سمول
preview: مخليدنه
markdown_help:
text: متن
image: انځور
traces:
new:
visibility_help: دا څه مانا لري؟

View file

@ -2109,23 +2109,6 @@ pt-BR:
bicycle_shop: Loja de bicicletas
bicycle_parking: Bicicletário
toilets: Banheiros
richtext_area:
edit: Editar
preview: Pré-visualizar
markdown_help:
title_html: 'Linguagem de formatação: <a href="https://kramdown.gettalong.org/quickref.html">kramdown</a>'
headings: Títulos
heading: Título
subheading: Subtítulo
unordered: Lista não ordenada
ordered: Lista ordenada
first: Primeiro item
second: Segundo item
link: Link
text: Texto
image: Imagem
alt: Texto alternativo
url: URL
welcome:
title: Bem-vindo(a)!
introduction_html: Bem-vindo(a) ao OpenStreetMap, o mapa livre e editável do

View file

@ -2091,23 +2091,6 @@ pt-PT:
bicycle_shop: Loja de bicicletas
bicycle_parking: Estacionamento de bicicletas
toilets: Casas de banho
richtext_area:
edit: Editar
preview: Pré-visualizar
markdown_help:
title_html: Formatado com <a href="https://kramdown.gettalong.org/quickref.html">kramdown</a>
headings: Títulos
heading: Título
subheading: Subtítulo
unordered: Lista não ordenada
ordered: Lista ordenada
first: Primeiro item
second: Segundo item
link: Hiperligação
text: Texto
image: Imagem
alt: Texto alternativo
url: URL
welcome:
title: Bem-vind@!
introduction_html: Bem-vindo(a) ao OpenStreetMap, o mapa do mundo, grátis e

View file

@ -2019,23 +2019,6 @@ ro:
bicycle_shop: Magazin de biciclete
bicycle_parking: Parcare pentru biciclete
toilets: Toalete
richtext_area:
edit: Modificare
preview: Previzualizare
markdown_help:
title_html: Parsat cu <a href="https://kramdown.gettalong.org/quickref.html">kramdown</a>
headings: Titluri
heading: Titlu
subheading: Subtitlu
unordered: Lista neordonată
ordered: Lista neordonată
first: Primul element
second: Al doilea element
link: Legătură
text: Text
image: Imagine
alt: Alt text
url: URL
welcome:
title: Bun venit!
introduction_html: |-

View file

@ -2007,23 +2007,6 @@ ru:
bicycle_shop: Магазин велосипедов
bicycle_parking: Парковка для велосипедов
toilets: Туалет
richtext_area:
edit: Изменить
preview: Предварительный просмотр
markdown_help:
title_html: Разобрано с помощью <a href="https://kramdown.gettalong.org/quickref.html">kramdown</a>
headings: Заголовки
heading: Заголовок
subheading: Подзаголовок
unordered: Неупорядоченный список
ordered: Упорядоченный список
first: Первый элемент
second: Второй элемент
link: Ссылка
text: Текст
image: Изображение
alt: Альтернативный текст
url: URL
welcome:
title: Добро пожаловать!
introduction_html: Добро пожаловать на OpenStreetMap, открытую и свободную карту

View file

@ -548,15 +548,6 @@ sat:
bicycle_shop: ᱥᱟᱭᱠᱤᱞ ᱫᱩᱠᱟᱹᱱ
bicycle_parking: ᱥᱟᱭᱠᱤᱞ ᱯᱟᱨᱠᱤᱝ
toilets: ᱴᱚᱭᱞᱮᱴᱠᱚ
richtext_area:
edit: ᱥᱟᱯᱲᱟᱣ
preview: ᱧᱮᱞ ᱵᱤᱰᱟᱹᱣ
markdown_help:
link: ᱡᱚᱱᱚᱲ
text: ᱚᱞ
image: ᱪᱤᱛᱟᱹᱨ
alt: ᱥᱟᱱᱟᱢ ᱚᱱᱚᱞᱠᱚ
url: URL
welcome:
title: ᱥᱟᱹᱜᱩᱱ ᱫᱟᱨᱟᱢ!
whats_on_the_map:

View file

@ -866,13 +866,6 @@ sc:
bicycle_shop: Butega de bitzicletas
bicycle_parking: Parchègiu pro bitzicletas
toilets: Còmodu
richtext_area:
edit: Modìfica
preview: Anteprima
markdown_help:
link: Ligàmene
text: Testu
image: Immàgine
welcome:
title: Bene bènnidu!
rules:

View file

@ -1457,23 +1457,6 @@ scn:
private: Accessu privatu
destination: Sirvitù di passaggiu
construction: Strati n custruzzioni
richtext_area:
edit: Cancia
preview: Antiprima
markdown_help:
title_html: Testu cu <a href="http://daringfireball.net/projects/markdown/">Markdown</a>
headings: Ntistazzioni
heading: Ntistazzioni
subheading: Suttantistazzioni
unordered: Elencu puntatu
ordered: Elencu nummiratu
first: Prima vuci
second: Secunna vuci
link: Culligamentu
text: Testu
image: Mmàggini
alt: Testu altirnativu
url: URL
welcome:
title: Bimminuti!
introduction_html: Bimminuti nta OpenStreetMap, la cartina dû munnu lìbbira

View file

@ -1010,10 +1010,6 @@ sco:
- Schuil
- varsity
building: Signeeficant biggin
richtext_area:
edit: Eedit
markdown_help:
headings: Heidins
welcome:
title: Walcome!
introduction_html: |-

View file

@ -1463,23 +1463,6 @@ sk:
bicycle_shop: Obchod s bicyklami
bicycle_parking: Parkovanie pre bicykle
toilets: WC
richtext_area:
edit: Upraviť
preview: Náhľad
markdown_help:
title_html: Používa sa syntax <a href="http://daringfireball.net/projects/markdown/">Markdown</a>
headings: Nadpisy
heading: Nadpis
subheading: Podnadpis
unordered: Neusporiadaný zoznam
ordered: Číslovaný zoznam
first: Prvá položka
second: Druhá položka
link: Odkaz
text: Text
image: Obrázok
alt: Alternatívny text
url: URL
welcome:
title: Vitajte!
introduction_html: Vitajte na OpenStreetMap, slobodnej a upravovateľnej mape

View file

@ -1504,23 +1504,6 @@ sl:
bicycle_shop: Kolesarska trgovina
bicycle_parking: Parkirišče za kolesa
toilets: Stranišče
richtext_area:
edit: Uredi
preview: Predogled
markdown_help:
title_html: Obdelano z <a href="https://kramdown.gettalong.org/quickref.html">kramdown</a>
headings: Poglavja
heading: Poglavje
subheading: Podpoglavje
unordered: Neurejen seznam
ordered: Urejen seznam
first: Prvi element
second: Drugi element
link: Povezava
text: Besedilo
image: Slika
alt: Dodatno besedilo
url: URL
welcome:
title: Dobrodošli!
introduction_html: Dobrodošli na OpenStreetMap, brezplačni zemljevid sveta,

View file

@ -1203,9 +1203,6 @@ sq:
summit:
- Samit
- majë
richtext_area:
edit: Redakto
preview: Parapamje
welcome:
title: Mirësevjen
whats_on_the_map:

View file

@ -1068,23 +1068,6 @@ sr-Latn:
private: Privatni posed
destination: Pristup odredištu
construction: Putevi u izgradnji
richtext_area:
edit: Uredi
preview: Pregled
markdown_help:
title_html: Raščlanjeno sa <a href="http://daringfireball.net/projects/markdown/">markdaunom</a>
headings: Naslovi
heading: Naslov
subheading: Podnaslov
unordered: Nesvrstan spisak
ordered: Svrstan spisak
first: Prva stavka
second: Druga stavka
link: Veza
text: Tekst
image: Slika
alt: Rezervni tekst
url: Adresa
traces:
visibility:
private: Privatni (prikazuje se kao anonimne, neraspoređene tačke)

View file

@ -1653,23 +1653,6 @@ sr:
bicycle_shop: Продавница бицикала
bicycle_parking: Паркинг за бицикле
toilets: Тоалети
richtext_area:
edit: Уреди
preview: Преглед
markdown_help:
title_html: Рашчлањено помоћу <a href="https://kramdown.gettalong.org/quickref.html">kramdown-а</a>
headings: Наслови
heading: Наслов
subheading: Поднаслов
unordered: Неуређена листа
ordered: Уређена листа
first: Прва ставка
second: Друга ставка
link: Веза
text: Текст
image: Слика
alt: Резервни текст
url: Адреса
welcome:
title: Добро дошли!
introduction_html: Добро дошли на OpenStreetMap, бесплатну изменљиву карту света.

View file

@ -1953,23 +1953,6 @@ sv:
bicycle_shop: Cykelaffär
bicycle_parking: Cykelparkering
toilets: Toaletter
richtext_area:
edit: Redigera
preview: Förhandsgranska
markdown_help:
title_html: Tolkat med <a href="https://kramdown.gettalong.org/quickref.html">kramdown</a>
headings: Rubriker
heading: Rubrik
subheading: Underrubrik
unordered: Osorterad lista
ordered: Sorterad lista
first: Första objektet
second: Andra objektet
link: Länk
text: Text
image: Bild
alt: Alt-text
url: Webbadress
welcome:
title: Välkommen!
introduction_html: Välkommen till OpenStreetMap, den fria och redigerbara kartan

View file

@ -635,20 +635,6 @@ te:
station: రైల్వే స్టేషన్
construction: నిర్మాణంలో ఉన్న రహదార్లు
toilets: మరుగుదొడ్లు
richtext_area:
edit: మార్చు
preview: మునుజూపు
markdown_help:
heading: శీర్షిక
subheading: ఉప శీర్షిక
unordered: క్రమం లేని జాబితా
ordered: సక్రమ జాబితా
first: మొదటి అంశం
second: రెండవ అంశం
link: లంకె
text: పాఠ్యం
image: బొమ్మ
alt: ప్రత్యామ్నాయ పాఠ్యం
welcome:
title: స్వాగతం!
whats_on_the_map:

View file

@ -1695,23 +1695,6 @@ th:
bicycle_shop: ร้านขายและเช่าจักรยาน
bicycle_parking: ที่จอดจักรยาน
toilets: ห้องน้ำสาธารณะ
richtext_area:
edit: แก้ไข
preview: แสดงตัวอย่าง
markdown_help:
title_html: เขียนด้วยรูปแบบ <a href="https://kramdown.gettalong.org/quickref.html">Kramdown</a>
headings: หัวเรื่องหลัก
heading: หัวเรื่องหลัก
subheading: หัวเรื่องย่อย
unordered: รายการไม่เรียงลำดับ
ordered: รายการเรียงลำดับ
first: รายการแรก
second: รายการที่สอง
link: ลิงก์
text: ข้อความ
image: รูปภาพ
alt: ข้อความทดแทนภาพ
url: ที่อยู่ลิงก์
welcome:
title: ยินดีต้อนรับ!
introduction_html: 'ยินดิต้อนรับสู่ OpenStreetMap, แผนที่โลกแบบเสรีที่ทุกคนสามารถแก้ไขได้

View file

@ -1299,23 +1299,6 @@ tl:
construction: Mga kalsadang ginagawa
bicycle_parking: Paradahan ng bisikleta
toilets: Mga banyo
richtext_area:
edit: Baguhin
preview: Paunang tanaw
markdown_help:
title_html: Sinuri sa pamamagitan ng <a href="http://daringfireball.net/projects/markdown/">Pagbabawas</a>
headings: Mga pamulaan
heading: Pamulaan
subheading: Kabahaging Pamulaan
unordered: Listahang walang pagkakasunud-sunod
ordered: Listahang may pagkakasunud-sunod
first: Unang bagay
second: Ikalawang bagay
link: Kawing
text: Teksto
image: Larawan
alt: Kahaliling teksto
url: URL
welcome:
title: Maligayang pagdating!
whats_on_the_map:

View file

@ -2121,24 +2121,6 @@ tr:
bicycle_shop: Bisikletçi
bicycle_parking: Bisiklet parkı
toilets: Tuvaletler
richtext_area:
edit: Düzenle
preview: Önizleme
markdown_help:
title_html: <a href="https://daringfireball.net/projects/markdown/">Kramdown</a>
kodlarını kullanabilirsiniz
headings: Başlıklar
heading: Başlık
subheading: Alt başlık
unordered: Sırasız liste
ordered: Sıralı liste
first: İlk öge
second: İkinci öge
link: Bağlantı
text: Metin
image: Resim
alt: Alt metin
url: URL
welcome:
title: Hoş geldiniz!
introduction_html: Dünyanın düzenlenebilir ve ücretsiz haritası OpenStreetMap'e

View file

@ -659,16 +659,6 @@ tt:
- университет
station: Тимер юл станциясе
toilets: Бәдрәф
richtext_area:
edit: Үзгәртү
preview: Алдан карау
markdown_help:
headings: Башлыклар
heading: Бүлек башы
link: Сылтама
text: Текст
image: Сурәт
url: URL
traces:
trace_optionals:
tags: Тамгалар

View file

@ -1878,23 +1878,6 @@ uk:
bicycle_shop: Веломагазин
bicycle_parking: Велопарковка
toilets: Туалети
richtext_area:
edit: Редагувати
preview: Попередній перегляд
markdown_help:
title_html: Оброблено <a href="https://kramdown.gettalong.org/quickref.html">kramdown</a>
headings: Заголовки
heading: Заголовок
subheading: Підзаголовок
unordered: Невпорядкований список
ordered: Впорядкований список
first: Перший елемент
second: Другий елемент
link: Посилання
text: Текст
image: Зображення
alt: Alt текст
url: URL
welcome:
title: Ласкаво просимо!
introduction_html: Ласкаво просимо до OpenStreetMap, безкоштовної та доступної

View file

@ -1939,23 +1939,6 @@ vi:
bicycle_shop: Tiệm xe đạp
bicycle_parking: Chỗ đậu xe đạp
toilets: Vệ sinh
richtext_area:
edit: Sửa đổi
preview: Xem trước
markdown_help:
title_html: Trang trí dùng cú pháp <a href="https://kramdown.gettalong.org/quickref.html">kramdown</a>
headings: Đề mục
heading: Đề mục
subheading: Đề mục con
unordered: Danh sách không đánh số
ordered: Danh sách đánh số
first: Khoản mục đầu tiên
second: Khoản mục sau
link: Liên kết
text: Văn bản
image: Hình ảnh
alt: Văn bản thay thế
url: URL
welcome:
title: Hoan nghênh!
introduction_html: Chào mừng bạn đã đến OpenStreetMap, bản đồ thế giới có dữ

View file

@ -1916,24 +1916,6 @@ zh-CN:
bicycle_shop: 自行车店
bicycle_parking: 自行车停车场
toilets: 厕所
richtext_area:
edit: 编辑
preview: 预览
markdown_help:
title_html: 使用 <a href="https://daringfireball.net/projects/markdown/">kramdown</a>
解析
headings: 标题
heading: 标题
subheading: 副标题
unordered: 无序列表
ordered: 有序列表
first: 第一项
second: 第二项
link: 链接
text: 文本
image: 图像
alt: 替代文本
url: URL
welcome:
title: 欢迎!
introduction_html: 欢迎访问 OpenStreeMap自由且可编辑的世界地图。您已经登录可以开始绘制地图。这里是含有您需要知道的最重要的信息的快速指南。

View file

@ -1972,24 +1972,6 @@ zh-TW:
bicycle_shop: 自行車店
bicycle_parking: 自行車停車場
toilets: 廁所
richtext_area:
edit: 編輯
preview: 預覽
markdown_help:
title_html: 使用 <a href="https://kramdown.gettalong.org/quickref.html">kramdown</a>
解析
headings: 標題
heading: 標題
subheading: 副標題
unordered: 無序清單
ordered: 有序清單
first: 第一項
second: 第二項
link: 連結
text: 文字
image: 圖片
alt: 替代文字
url: URL
welcome:
title: 歡迎!
introduction_html: 歡迎來到 OpenStreetMap自由和可編輯的世界地圖。您目前已經登入可以開始繪製地圖。這裡有一份您須知道最重要事項的快速指南。

View file

@ -734,9 +734,6 @@ zh-hk:
bicycle_shop: 單車店
bicycle_parking: 單車停泊處
toilets: 廁所
richtext_area:
edit: 編輯
preview: 預覽
welcome:
introduction_html: 歡迎來到OpenStreetMap自由而可以編輯的世界地圖。現在您已經注冊完成繪製地圖所需要的準備已經就緒。以下是一份快速指南裡面包含着您所需要知道的最重要事項。
rules:

Some files were not shown because too many files have changed in this diff Show more