Merge branch 'master' into openstreetbugs
This commit is contained in:
commit
02ad2f5a51
46 changed files with 928 additions and 182 deletions
|
@ -4,16 +4,17 @@ class ChangesetController < ApplicationController
|
||||||
layout 'site'
|
layout 'site'
|
||||||
require 'xml/libxml'
|
require 'xml/libxml'
|
||||||
|
|
||||||
before_filter :authorize_web, :only => [:list, :list_user, :list_bbox]
|
before_filter :authorize_web, :only => [:list]
|
||||||
before_filter :set_locale, :only => [:list, :list_user, :list_bbox]
|
before_filter :set_locale, :only => [:list]
|
||||||
before_filter :authorize, :only => [:create, :update, :delete, :upload, :include, :close]
|
before_filter :authorize, :only => [:create, :update, :delete, :upload, :include, :close]
|
||||||
before_filter :require_allow_write_api, :only => [:create, :update, :delete, :upload, :include, :close]
|
before_filter :require_allow_write_api, :only => [:create, :update, :delete, :upload, :include, :close]
|
||||||
before_filter :require_public_data, :only => [:create, :update, :delete, :upload, :include, :close]
|
before_filter :require_public_data, :only => [:create, :update, :delete, :upload, :include, :close]
|
||||||
before_filter :check_api_writable, :only => [:create, :update, :delete, :upload, :include]
|
before_filter :check_api_writable, :only => [:create, :update, :delete, :upload, :include]
|
||||||
before_filter :check_api_readable, :except => [:create, :update, :delete, :upload, :download, :query]
|
before_filter :check_api_readable, :except => [:create, :update, :delete, :upload, :download, :query, :list]
|
||||||
|
before_filter(:only => [:list]) { |c| c.check_database_readable(true) }
|
||||||
after_filter :compress_output
|
after_filter :compress_output
|
||||||
around_filter :api_call_handle_error, :except => [:list, :list_user, :list_bbox]
|
around_filter :api_call_handle_error, :except => [:list]
|
||||||
around_filter :web_timeout, :only => [:list, :list_user, :list_bbox]
|
around_filter :web_timeout, :only => [:list]
|
||||||
|
|
||||||
filter_parameter_logging "<osmChange version"
|
filter_parameter_logging "<osmChange version"
|
||||||
|
|
||||||
|
|
|
@ -44,9 +44,16 @@ module ApplicationHelper
|
||||||
zoom = zoom || 14
|
zoom = zoom || 14
|
||||||
language = language || request.user_preferred_languages.join(',')
|
language = language || request.user_preferred_languages.join(',')
|
||||||
url = "http://nominatim.openstreetmap.org/reverse?lat=#{lat}&lon=#{lon}&zoom=#{zoom}&accept-language=#{language}"
|
url = "http://nominatim.openstreetmap.org/reverse?lat=#{lat}&lon=#{lon}&zoom=#{zoom}&accept-language=#{language}"
|
||||||
response = REXML::Document.new(Net::HTTP.get(URI.parse(url)))
|
|
||||||
|
|
||||||
if result = response.get_text("reversegeocode/result")
|
begin
|
||||||
|
Timeout::timeout(4) do
|
||||||
|
response = REXML::Document.new(Net::HTTP.get(URI.parse(url)))
|
||||||
|
end
|
||||||
|
rescue Exception
|
||||||
|
response = nil
|
||||||
|
end
|
||||||
|
|
||||||
|
if response and result = response.get_text("reversegeocode/result")
|
||||||
result.to_s
|
result.to_s
|
||||||
else
|
else
|
||||||
"#{number_with_precision(lat, :precision => 3)}, #{number_with_precision(lon, :precision => 3)}"
|
"#{number_with_precision(lat, :precision => 3)}, #{number_with_precision(lon, :precision => 3)}"
|
||||||
|
|
|
@ -56,9 +56,15 @@ private
|
||||||
def wiki_link(type, lookup)
|
def wiki_link(type, lookup)
|
||||||
locale = I18n.locale.to_s
|
locale = I18n.locale.to_s
|
||||||
|
|
||||||
if page = WIKI_PAGES[locale][type][lookup] rescue nil
|
# update-wiki-pages does s/ /_/g on keys before saving them, we
|
||||||
|
# have to replace spaces with underscore so we'll link
|
||||||
|
# e.g. `source=Isle of Man Government aerial imagery (2001)' to
|
||||||
|
# the correct page.
|
||||||
|
lookup_us = lookup.tr(" ", "_")
|
||||||
|
|
||||||
|
if page = WIKI_PAGES[locale][type][lookup_us] rescue nil
|
||||||
url = "http://wiki.openstreetmap.org/wiki/#{page}?uselang=#{locale}"
|
url = "http://wiki.openstreetmap.org/wiki/#{page}?uselang=#{locale}"
|
||||||
elsif page = WIKI_PAGES["en"][type][lookup] rescue nil
|
elsif page = WIKI_PAGES["en"][type][lookup_us] rescue nil
|
||||||
url = "http://wiki.openstreetmap.org/wiki/#{page}?uselang=#{locale}"
|
url = "http://wiki.openstreetmap.org/wiki/#{page}?uselang=#{locale}"
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -48,7 +48,7 @@ class Notifier < ActionMailer::Base
|
||||||
def message_notification(message)
|
def message_notification(message)
|
||||||
common_headers message.recipient
|
common_headers message.recipient
|
||||||
from_header message.sender.display_name, "m", message.id, message.digest
|
from_header message.sender.display_name, "m", message.id, message.digest
|
||||||
subject I18n.t('notifier.message_notification.subject', :user => message.sender.display_name, :locale => locale)
|
subject message.title
|
||||||
body :to_user => message.recipient.display_name,
|
body :to_user => message.recipient.display_name,
|
||||||
:from_user => message.sender.display_name,
|
:from_user => message.sender.display_name,
|
||||||
:body => message.body,
|
:body => message.body,
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<table>
|
<table id="<%= node_details.version %>">
|
||||||
|
|
||||||
<%= render :partial => "common_details", :object => node_details %>
|
<%= render :partial => "common_details", :object => node_details %>
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<table>
|
<table id="<%= relation_details.version %>">
|
||||||
|
|
||||||
<%= render :partial => "common_details", :object => relation_details %>
|
<%= render :partial => "common_details", :object => relation_details %>
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<table>
|
<table id="<%= way_details.version %>">
|
||||||
|
|
||||||
<%= render :partial => "common_details", :object => way_details %>
|
<%= render :partial => "common_details", :object => way_details %>
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
<b><%= link_to h(diary_entry.title), :action => 'view', :display_name => diary_entry.user.display_name, :id => diary_entry.id %></b><br />
|
<b><%= link_to h(diary_entry.title), :action => 'view', :display_name => diary_entry.user.display_name, :id => diary_entry.id %></b><br />
|
||||||
|
<div xml:lang="<%= diary_entry.language_code %>" lang="<%= diary_entry.language_code %>">
|
||||||
<%= htmlize(diary_entry.body) %>
|
<%= htmlize(diary_entry.body) %>
|
||||||
|
</div>
|
||||||
<% if diary_entry.latitude and diary_entry.longitude %>
|
<% if diary_entry.latitude and diary_entry.longitude %>
|
||||||
<%= render :partial => "location", :object => diary_entry %>
|
<%= render :partial => "location", :object => diary_entry %>
|
||||||
<br />
|
<br />
|
||||||
|
|
|
@ -773,7 +773,6 @@ af:
|
||||||
shop_tooltip: Winkel met OpenStreetMap-produkte
|
shop_tooltip: Winkel met OpenStreetMap-produkte
|
||||||
sign_up: registreer
|
sign_up: registreer
|
||||||
sign_up_tooltip: Skep 'n rekening vir wysigings
|
sign_up_tooltip: Skep 'n rekening vir wysigings
|
||||||
sotm: Kom na die 2009 OpenStreetMap-konferensie, die "State of the Map", op 10-12 Julie in Amsterdam!
|
|
||||||
tag_line: Die vrye wiki-wêreldkaart
|
tag_line: Die vrye wiki-wêreldkaart
|
||||||
user_diaries: Gebruikersdagboeke
|
user_diaries: Gebruikersdagboeke
|
||||||
user_diaries_tooltip: Wys gebruikersdagboeke
|
user_diaries_tooltip: Wys gebruikersdagboeke
|
||||||
|
|
|
@ -916,7 +916,6 @@ aln:
|
||||||
shop_tooltip: Dyqan me mallra të markës OpenStreetMap
|
shop_tooltip: Dyqan me mallra të markës OpenStreetMap
|
||||||
sign_up: regjistrohu
|
sign_up: regjistrohu
|
||||||
sign_up_tooltip: Krijo një llogari për përpunim
|
sign_up_tooltip: Krijo një llogari për përpunim
|
||||||
sotm: Ejani në Konferencën 2009 OpenStreetMap, Shteti i Harta, 10-12 korrik në Amsterdam!
|
|
||||||
tag_line: Free Harta Wiki Botërore
|
tag_line: Free Harta Wiki Botërore
|
||||||
user_diaries: Përdoruesi Diaries
|
user_diaries: Përdoruesi Diaries
|
||||||
user_diaries_tooltip: përdorues ditaret Shiko
|
user_diaries_tooltip: përdorues ditaret Shiko
|
||||||
|
|
|
@ -924,7 +924,6 @@ ar:
|
||||||
shop_tooltip: تسوق بضائع داعمة لخريطة الشارع المفتوحة
|
shop_tooltip: تسوق بضائع داعمة لخريطة الشارع المفتوحة
|
||||||
sign_up: أنشئ حسابًا
|
sign_up: أنشئ حسابًا
|
||||||
sign_up_tooltip: أنشئ حسابًا كي تستطيع المساهمة
|
sign_up_tooltip: أنشئ حسابًا كي تستطيع المساهمة
|
||||||
sotm: تعال إلى مؤتمر خريطة الشارع المفتوحة، The State of the Map، 10-12 يوليو في أمستردام!
|
|
||||||
tag_line: ويكي خريطة العالم الحرة
|
tag_line: ويكي خريطة العالم الحرة
|
||||||
user_diaries: يوميات المستخدمين
|
user_diaries: يوميات المستخدمين
|
||||||
user_diaries_tooltip: اعرض يوميات المستخدمين
|
user_diaries_tooltip: اعرض يوميات المستخدمين
|
||||||
|
|
|
@ -856,7 +856,6 @@ arz:
|
||||||
shop_tooltip: تسوق بضائع داعمه لخريطه الشارع المفتوحة
|
shop_tooltip: تسوق بضائع داعمه لخريطه الشارع المفتوحة
|
||||||
sign_up: أنشئ حسابًا
|
sign_up: أنشئ حسابًا
|
||||||
sign_up_tooltip: أنشئ حسابًا كى تستطيع المساهمة
|
sign_up_tooltip: أنشئ حسابًا كى تستطيع المساهمة
|
||||||
sotm: تعال إلى مؤتمر خريطه الشارع المفتوحه، The State of the Map، 10-12 يوليو فى أمستردام!
|
|
||||||
tag_line: ويكى خريطه العالم الحرة
|
tag_line: ويكى خريطه العالم الحرة
|
||||||
user_diaries: يوميات المستخدمين
|
user_diaries: يوميات المستخدمين
|
||||||
user_diaries_tooltip: اعرض يوميات المستخدمين
|
user_diaries_tooltip: اعرض يوميات المستخدمين
|
||||||
|
|
|
@ -317,7 +317,6 @@ be:
|
||||||
shop_tooltip: Крама з фірмовай сімволікай OpenStreetMap
|
shop_tooltip: Крама з фірмовай сімволікай OpenStreetMap
|
||||||
sign_up: Зарэгістравацца
|
sign_up: Зарэгістравацца
|
||||||
sign_up_tooltip: Стварыць акаўнт для рэдагавання
|
sign_up_tooltip: Стварыць акаўнт для рэдагавання
|
||||||
sotm: Наведайце канферэнцыю OpenStreetMap, The State of the Map 2009, 10-12 ліпеня у Амстэрдаме!
|
|
||||||
tag_line: Свабодная Wiki-карта свету
|
tag_line: Свабодная Wiki-карта свету
|
||||||
user_diaries: Дзённікі карыстальнікаў
|
user_diaries: Дзённікі карыстальнікаў
|
||||||
user_diaries_tooltip: Дзённікі карыстальнікаў
|
user_diaries_tooltip: Дзённікі карыстальнікаў
|
||||||
|
|
|
@ -909,7 +909,6 @@ br:
|
||||||
shop_tooltip: Stal gant produioù OpenStreetMap
|
shop_tooltip: Stal gant produioù OpenStreetMap
|
||||||
sign_up: En em enskrivañ
|
sign_up: En em enskrivañ
|
||||||
sign_up_tooltip: Krouiñ ur gont evit aozañ
|
sign_up_tooltip: Krouiñ ur gont evit aozañ
|
||||||
sotm: Deuit da gendiviz 2009 OpenStreetMap, <a href="http://www.stateofthemap.org">The State of the Map</a>, 10-12 a viz Gouere en Amsterdam!
|
|
||||||
tag_line: Kartenn digoust eus ar bed Wiki
|
tag_line: Kartenn digoust eus ar bed Wiki
|
||||||
user_diaries: Deizlevrioù an implijer
|
user_diaries: Deizlevrioù an implijer
|
||||||
user_diaries_tooltip: Gwelet deizlevrioù an implijerien
|
user_diaries_tooltip: Gwelet deizlevrioù an implijerien
|
||||||
|
|
|
@ -607,6 +607,10 @@ ca:
|
||||||
view_tooltip: Visualitza els mapes
|
view_tooltip: Visualitza els mapes
|
||||||
welcome_user: Benvingut/da, {{user_link}}
|
welcome_user: Benvingut/da, {{user_link}}
|
||||||
welcome_user_link_tooltip: La teva pàgina d'usuari
|
welcome_user_link_tooltip: La teva pàgina d'usuari
|
||||||
|
license_page:
|
||||||
|
foreign:
|
||||||
|
english_link: l'original en anglès
|
||||||
|
title: Sobre aquesta traducció
|
||||||
message:
|
message:
|
||||||
delete:
|
delete:
|
||||||
deleted: Missatge esborrat
|
deleted: Missatge esborrat
|
||||||
|
@ -824,6 +828,9 @@ ca:
|
||||||
button: Confirmar
|
button: Confirmar
|
||||||
go_public:
|
go_public:
|
||||||
flash success: Ara totes les teves edicions són públiques i ja estàs autoritzat per a editar
|
flash success: Ara totes les teves edicions són públiques i ja estàs autoritzat per a editar
|
||||||
|
list:
|
||||||
|
heading: Usuaris
|
||||||
|
title: Usuaris
|
||||||
login:
|
login:
|
||||||
create_account: crea un compte
|
create_account: crea un compte
|
||||||
email or username: "Adreça de correu o usuari:"
|
email or username: "Adreça de correu o usuari:"
|
||||||
|
@ -833,6 +840,7 @@ ca:
|
||||||
password: "Contrasenya:"
|
password: "Contrasenya:"
|
||||||
please login: Si us plau, inicieu la sessió o {{create_user_link}}.
|
please login: Si us plau, inicieu la sessió o {{create_user_link}}.
|
||||||
title: Accés
|
title: Accés
|
||||||
|
webmaster: webmestre
|
||||||
logout:
|
logout:
|
||||||
heading: Sortir d'OpenStreetMap
|
heading: Sortir d'OpenStreetMap
|
||||||
logout_button: Sortir
|
logout_button: Sortir
|
||||||
|
@ -846,6 +854,7 @@ ca:
|
||||||
success: "{{name}} ara és el vostre amic."
|
success: "{{name}} ara és el vostre amic."
|
||||||
new:
|
new:
|
||||||
confirm password: "Confirmeu la contrasenya:"
|
confirm password: "Confirmeu la contrasenya:"
|
||||||
|
continue: Continua
|
||||||
display name: "Nom en pantalla:"
|
display name: "Nom en pantalla:"
|
||||||
email address: "Adreça de correu:"
|
email address: "Adreça de correu:"
|
||||||
heading: Crea un compte d'usuari
|
heading: Crea un compte d'usuari
|
||||||
|
@ -862,6 +871,12 @@ ca:
|
||||||
password: "Contrasenya:"
|
password: "Contrasenya:"
|
||||||
reset: Restablir contrasenya
|
reset: Restablir contrasenya
|
||||||
title: Restablir la contrasenya
|
title: Restablir la contrasenya
|
||||||
|
terms:
|
||||||
|
decline: Declinar
|
||||||
|
legale_names:
|
||||||
|
france: França
|
||||||
|
italy: Itàlia
|
||||||
|
rest_of_world: Resta del món
|
||||||
view:
|
view:
|
||||||
activate_user: activa aquest usuari
|
activate_user: activa aquest usuari
|
||||||
add as friend: afegir com a amic
|
add as friend: afegir com a amic
|
||||||
|
@ -890,6 +905,7 @@ ca:
|
||||||
moderator: Aquest usuari és moderador
|
moderator: Aquest usuari és moderador
|
||||||
send message: enviar missatge
|
send message: enviar missatge
|
||||||
settings_link_text: preferències
|
settings_link_text: preferències
|
||||||
|
status: "Estat:"
|
||||||
traces: traces
|
traces: traces
|
||||||
user location: Ubicació de l'usuari
|
user location: Ubicació de l'usuari
|
||||||
your friends: Els vostres amics
|
your friends: Els vostres amics
|
||||||
|
|
|
@ -9,6 +9,7 @@
|
||||||
# Author: ChrisiPK
|
# Author: ChrisiPK
|
||||||
# Author: CygnusOlor
|
# Author: CygnusOlor
|
||||||
# Author: Grille chompa
|
# Author: Grille chompa
|
||||||
|
# Author: Holger
|
||||||
# Author: Kghbln
|
# Author: Kghbln
|
||||||
# Author: Markobr
|
# Author: Markobr
|
||||||
# Author: McDutchie
|
# Author: McDutchie
|
||||||
|
@ -929,7 +930,7 @@ de:
|
||||||
shop_tooltip: Shop für Artikel mit OpenStreetMap-Logo
|
shop_tooltip: Shop für Artikel mit OpenStreetMap-Logo
|
||||||
sign_up: Registrieren
|
sign_up: Registrieren
|
||||||
sign_up_tooltip: Ein Benutzerkonto zum Daten bearbeiten erstellen
|
sign_up_tooltip: Ein Benutzerkonto zum Daten bearbeiten erstellen
|
||||||
sotm: Besuche die OpenStreetMap-Konferenz, The State of the Map 2009, am 10.-12. Juli in Amsterdam!
|
sotm2010: Besuche die OpenStreetMap-Konferenz, The State of the Map 2010, vom 9. bis 11. Juli in Girona!
|
||||||
tag_line: Die freie Wiki-Weltkarte
|
tag_line: Die freie Wiki-Weltkarte
|
||||||
user_diaries: Blogs
|
user_diaries: Blogs
|
||||||
user_diaries_tooltip: Benutzer-Blogs lesen
|
user_diaries_tooltip: Benutzer-Blogs lesen
|
||||||
|
@ -1211,7 +1212,7 @@ de:
|
||||||
cycleway: Fahrradweg
|
cycleway: Fahrradweg
|
||||||
destination: Nur für Anrainer
|
destination: Nur für Anrainer
|
||||||
farm: Landwirtschaft
|
farm: Landwirtschaft
|
||||||
footway: Fussweg
|
footway: Fußweg
|
||||||
forest: Forst
|
forest: Forst
|
||||||
golf: Golfplatz
|
golf: Golfplatz
|
||||||
heathland: Heide
|
heathland: Heide
|
||||||
|
@ -1501,7 +1502,7 @@ de:
|
||||||
webmaster: Webmaster
|
webmaster: Webmaster
|
||||||
terms:
|
terms:
|
||||||
agree: Akzeptieren
|
agree: Akzeptieren
|
||||||
consider_pd: Ich betrachte meine Beiträge als gemeinfrei (<i>Public Domain</i>)
|
consider_pd: Zusätzlich zur oben genannten Vereinbarung, betrachte ich meine Beiträge als gemeinfrei (<i>Public Domain</i>)
|
||||||
consider_pd_why: Was bedeutet das?
|
consider_pd_why: Was bedeutet das?
|
||||||
decline: Ablehnen
|
decline: Ablehnen
|
||||||
heading: Vereinbarung für Mitwirkende
|
heading: Vereinbarung für Mitwirkende
|
||||||
|
|
|
@ -925,7 +925,7 @@ dsb:
|
||||||
shop_tooltip: Pśedank wóry z logo OpenStreetMap
|
shop_tooltip: Pśedank wóry z logo OpenStreetMap
|
||||||
sign_up: registrěrowaś
|
sign_up: registrěrowaś
|
||||||
sign_up_tooltip: Konto za wobźěłowanje załožyś
|
sign_up_tooltip: Konto za wobźěłowanje załožyś
|
||||||
sotm: Woglědaj sebje konferencu OpenStreetMap, The State of the Map, 10. - 12. julija 2009 w Amsterdamje!
|
sotm2010: Woglědaj sebje konferencu OpenStreetMap, The State of the Map, 09. - 11. julija 2009 w Gironje!
|
||||||
tag_line: Licha wikikórta swěta
|
tag_line: Licha wikikórta swěta
|
||||||
user_diaries: Dnjowniki
|
user_diaries: Dnjowniki
|
||||||
user_diaries_tooltip: Wužywarske dnjowniki cytaś
|
user_diaries_tooltip: Wužywarske dnjowniki cytaś
|
||||||
|
@ -1494,7 +1494,7 @@ dsb:
|
||||||
webmaster: webmejstaŕ
|
webmaster: webmejstaŕ
|
||||||
terms:
|
terms:
|
||||||
agree: Akceptěrowaś
|
agree: Akceptěrowaś
|
||||||
consider_pd: Měnim, až móje pśinoski pódlaže zjawnemu pšawoju
|
consider_pd: Pśidatnje ku górjejce dojadnanjeju, mam swóje pśinoski za zjawnosć pśistupne.
|
||||||
consider_pd_why: Co to jo?
|
consider_pd_why: Co to jo?
|
||||||
decline: Wótpokazaś
|
decline: Wótpokazaś
|
||||||
heading: Wuměnjenja za pśinosowarjow
|
heading: Wuměnjenja za pśinosowarjow
|
||||||
|
|
|
@ -1073,7 +1073,6 @@ en:
|
||||||
header: "{{from_user}} has commented on your recent OpenStreetMap diary entry with the subject {{subject}}:"
|
header: "{{from_user}} has commented on your recent OpenStreetMap diary entry with the subject {{subject}}:"
|
||||||
footer: "You can also read the comment at {{readurl}} and you can comment at {{commenturl}} or reply at {{replyurl}}"
|
footer: "You can also read the comment at {{readurl}} and you can comment at {{commenturl}} or reply at {{replyurl}}"
|
||||||
message_notification:
|
message_notification:
|
||||||
subject: "[OpenStreetMap] {{user}} sent you a new message"
|
|
||||||
hi: "Hi {{to_user}},"
|
hi: "Hi {{to_user}},"
|
||||||
header: "{{from_user}} has sent you a message through OpenStreetMap with the subject {{subject}}:"
|
header: "{{from_user}} has sent you a message through OpenStreetMap with the subject {{subject}}:"
|
||||||
footer1: "You can also read the message at {{readurl}}"
|
footer1: "You can also read the message at {{readurl}}"
|
||||||
|
@ -1548,7 +1547,7 @@ en:
|
||||||
terms:
|
terms:
|
||||||
heading: "Contributor terms"
|
heading: "Contributor terms"
|
||||||
press accept button: "Please read the agreement below and press the agree button to create your account."
|
press accept button: "Please read the agreement below and press the agree button to create your account."
|
||||||
consider_pd: "I consider my contributions to be in the Public Domain"
|
consider_pd: "In addition to the above agreement, I consider my contributions to be in the Public Domain"
|
||||||
consider_pd_why: "what's this?"
|
consider_pd_why: "what's this?"
|
||||||
consider_pd_why_url: http://wiki.openstreetmap.org/wiki/Why_would_I_want_my_contributions_to_be_public_domain
|
consider_pd_why_url: http://wiki.openstreetmap.org/wiki/Why_would_I_want_my_contributions_to_be_public_domain
|
||||||
agree: Agree
|
agree: Agree
|
||||||
|
|
|
@ -917,7 +917,7 @@ es:
|
||||||
shop_tooltip: Tienda con productos de OpenStreetMap
|
shop_tooltip: Tienda con productos de OpenStreetMap
|
||||||
sign_up: registrarse
|
sign_up: registrarse
|
||||||
sign_up_tooltip: Cree una cuenta para editar
|
sign_up_tooltip: Cree una cuenta para editar
|
||||||
sotm: ¡Venga a las conferencias de OpenStreetMap, el State of the Map 2009, del 10 al 12 de julio en Amsterdam!
|
sotm2010: Ven a la Conferencia OpenStreetMap 2010, El Estado del Mapa, del 11 al 9 de julio en Girona!
|
||||||
tag_line: El WikiMapaMundi libre
|
tag_line: El WikiMapaMundi libre
|
||||||
user_diaries: Diarios de usuario
|
user_diaries: Diarios de usuario
|
||||||
user_diaries_tooltip: Ver diarios de usuario
|
user_diaries_tooltip: Ver diarios de usuario
|
||||||
|
@ -1488,7 +1488,7 @@ es:
|
||||||
webmaster: webmaster
|
webmaster: webmaster
|
||||||
terms:
|
terms:
|
||||||
agree: Aceptar
|
agree: Aceptar
|
||||||
consider_pd: Considero que mis contribuciones se encuentran en Dominio Público.
|
consider_pd: Además del acuerdo anterior, considero que mis contribuciones se encuentran en Dominio Público.
|
||||||
consider_pd_why: ¿Qué es esto?
|
consider_pd_why: ¿Qué es esto?
|
||||||
decline: Declinar
|
decline: Declinar
|
||||||
heading: Términos del contribuyente
|
heading: Términos del contribuyente
|
||||||
|
|
|
@ -748,7 +748,6 @@ fi:
|
||||||
shop: Kauppa
|
shop: Kauppa
|
||||||
sign_up: rekisteröidy
|
sign_up: rekisteröidy
|
||||||
sign_up_tooltip: Muokkaaminen edellyttää käyttäjätunnusta
|
sign_up_tooltip: Muokkaaminen edellyttää käyttäjätunnusta
|
||||||
sotm: Tule vuoden 2009 OpenStreetMap-konferenssiin, The State of the Map, 10.-12. heinäkuuta Amsterdamissa!
|
|
||||||
tag_line: Vapaa wikimaailmankartta
|
tag_line: Vapaa wikimaailmankartta
|
||||||
user_diaries: Päiväkirjamerkinnät
|
user_diaries: Päiväkirjamerkinnät
|
||||||
view: Kartta
|
view: Kartta
|
||||||
|
|
|
@ -920,7 +920,7 @@ fr:
|
||||||
shop_tooltip: Boutique de produits OpenStreetMap
|
shop_tooltip: Boutique de produits OpenStreetMap
|
||||||
sign_up: S'inscrire
|
sign_up: S'inscrire
|
||||||
sign_up_tooltip: Créer un compte pour la modification
|
sign_up_tooltip: Créer un compte pour la modification
|
||||||
sotm: Venez a la conférence 2009 de OpenStreetMap, <a href="http://www.stateofthemap.org">The State of the Map</a>, 10-12 juillet à Amsterdam!
|
sotm2010: Venez à la conférence 2010 de OpenStreetMap, The State of the Map, du 9 au 11 juillet à Gérone !
|
||||||
tag_line: La carte coopérative libre
|
tag_line: La carte coopérative libre
|
||||||
user_diaries: Journaux
|
user_diaries: Journaux
|
||||||
user_diaries_tooltip: Voir les journaux d'utilisateurs
|
user_diaries_tooltip: Voir les journaux d'utilisateurs
|
||||||
|
@ -1490,7 +1490,7 @@ fr:
|
||||||
webmaster: webmaster
|
webmaster: webmaster
|
||||||
terms:
|
terms:
|
||||||
agree: J'accepte
|
agree: J'accepte
|
||||||
consider_pd: Je considère mes contributions comme étant dans le domaine public
|
consider_pd: En plus de l’accord ci-dessus, je considère mes contributions comme étant dans le domaine public
|
||||||
consider_pd_why: Qu'est-ce que ceci ?
|
consider_pd_why: Qu'est-ce que ceci ?
|
||||||
decline: Décliner
|
decline: Décliner
|
||||||
heading: Termes du contributeur
|
heading: Termes du contributeur
|
||||||
|
|
|
@ -67,6 +67,7 @@ fur:
|
||||||
has_relations:
|
has_relations:
|
||||||
one: "Al à la {{count}} relazion ca sot:"
|
one: "Al à la {{count}} relazion ca sot:"
|
||||||
other: "Al à lis {{count}} relazions ca sot:"
|
other: "Al à lis {{count}} relazions ca sot:"
|
||||||
|
show_area_box: Mostre ricuadri de aree
|
||||||
common_details:
|
common_details:
|
||||||
changeset_comment: "Coment:"
|
changeset_comment: "Coment:"
|
||||||
edited_at: "Cambiât ai:"
|
edited_at: "Cambiât ai:"
|
||||||
|
@ -85,7 +86,9 @@ fur:
|
||||||
navigation:
|
navigation:
|
||||||
all:
|
all:
|
||||||
next_changeset_tooltip: Grup di cambiaments sucessîf
|
next_changeset_tooltip: Grup di cambiaments sucessîf
|
||||||
|
next_relation_tooltip: Relazion sucessive
|
||||||
prev_changeset_tooltip: Grup di cambiaments precedent
|
prev_changeset_tooltip: Grup di cambiaments precedent
|
||||||
|
prev_relation_tooltip: Relazion precedente
|
||||||
user:
|
user:
|
||||||
name_changeset_tooltip: Vîot i cambiaments di {{user}}
|
name_changeset_tooltip: Vîot i cambiaments di {{user}}
|
||||||
next_changeset_tooltip: Cambiament sucessîf di {{user}}
|
next_changeset_tooltip: Cambiament sucessîf di {{user}}
|
||||||
|
@ -152,6 +155,7 @@ fur:
|
||||||
zoom_or_select: Ingrandìs o sielç la aree de mape che tu vuelis viodi
|
zoom_or_select: Ingrandìs o sielç la aree de mape che tu vuelis viodi
|
||||||
tag_details:
|
tag_details:
|
||||||
tags: "Etichetis:"
|
tags: "Etichetis:"
|
||||||
|
wikipedia_link: L'articul su {{page}} te Wikipedia
|
||||||
timeout:
|
timeout:
|
||||||
type:
|
type:
|
||||||
relation: relazion
|
relation: relazion
|
||||||
|
@ -172,6 +176,7 @@ fur:
|
||||||
big_area: (grant)
|
big_area: (grant)
|
||||||
no_comment: (nissun)
|
no_comment: (nissun)
|
||||||
no_edits: (nissun cambiament)
|
no_edits: (nissun cambiament)
|
||||||
|
show_area_box: mostre il ricuadri de aree
|
||||||
still_editing: (ancjemò in cambiament)
|
still_editing: (ancjemò in cambiament)
|
||||||
view_changeset_details: Viôt detais dal grup di cambiaments
|
view_changeset_details: Viôt detais dal grup di cambiaments
|
||||||
changeset_paging_nav:
|
changeset_paging_nav:
|
||||||
|
@ -273,8 +278,11 @@ fur:
|
||||||
options: Opzions
|
options: Opzions
|
||||||
osm_xml_data: Dâts XML di OpenStreetMap
|
osm_xml_data: Dâts XML di OpenStreetMap
|
||||||
osmarender_image: Figure Osmarender
|
osmarender_image: Figure Osmarender
|
||||||
|
output: Jessude
|
||||||
paste_html: Tache l'HTML par inserîlu tal to sît web
|
paste_html: Tache l'HTML par inserîlu tal to sît web
|
||||||
scale: Scjale
|
scale: Scjale
|
||||||
|
too_large:
|
||||||
|
heading: La aree e je masse largje
|
||||||
start_rjs:
|
start_rjs:
|
||||||
add_marker: Zonte un segnalut ae mape
|
add_marker: Zonte un segnalut ae mape
|
||||||
change_marker: Cambie la posizion dal segnalut
|
change_marker: Cambie la posizion dal segnalut
|
||||||
|
@ -347,9 +355,12 @@ fur:
|
||||||
hospital: Ospedâl
|
hospital: Ospedâl
|
||||||
library: Biblioteche
|
library: Biblioteche
|
||||||
market: Marcjât
|
market: Marcjât
|
||||||
|
office: Ufizi
|
||||||
park: Parc
|
park: Parc
|
||||||
pharmacy: Farmacie
|
pharmacy: Farmacie
|
||||||
|
place_of_worship: Lûc di cult
|
||||||
post_office: Pueste
|
post_office: Pueste
|
||||||
|
public_building: Edifici public
|
||||||
restaurant: Ristorant
|
restaurant: Ristorant
|
||||||
sauna: Saune
|
sauna: Saune
|
||||||
school: Scuele
|
school: Scuele
|
||||||
|
@ -374,6 +385,7 @@ fur:
|
||||||
steps: Scjalis
|
steps: Scjalis
|
||||||
historic:
|
historic:
|
||||||
archaeological_site: Sît archeologic
|
archaeological_site: Sît archeologic
|
||||||
|
battlefield: Cjamp di bataie
|
||||||
castle: Cjiscjel
|
castle: Cjiscjel
|
||||||
church: Glesie
|
church: Glesie
|
||||||
house: Cjase
|
house: Cjase
|
||||||
|
@ -390,6 +402,7 @@ fur:
|
||||||
park: Parc
|
park: Parc
|
||||||
railway: Ferade
|
railway: Ferade
|
||||||
residential: Aree residenziâl
|
residential: Aree residenziâl
|
||||||
|
vineyard: Vigne
|
||||||
leisure:
|
leisure:
|
||||||
garden: Zardin
|
garden: Zardin
|
||||||
golf_course: Troi di golf
|
golf_course: Troi di golf
|
||||||
|
@ -402,10 +415,12 @@ fur:
|
||||||
natural:
|
natural:
|
||||||
bay: Rade
|
bay: Rade
|
||||||
channel: Canâl
|
channel: Canâl
|
||||||
|
coastline: Litorâl
|
||||||
crater: Cratêr
|
crater: Cratêr
|
||||||
glacier: Glaçâr
|
glacier: Glaçâr
|
||||||
island: Isule
|
island: Isule
|
||||||
point: Pont
|
point: Pont
|
||||||
|
river: Flum
|
||||||
tree: Arbul
|
tree: Arbul
|
||||||
valley: Val
|
valley: Val
|
||||||
volcano: Vulcan
|
volcano: Vulcan
|
||||||
|
@ -428,6 +443,9 @@ fur:
|
||||||
railway:
|
railway:
|
||||||
abandoned: Ferade bandonade
|
abandoned: Ferade bandonade
|
||||||
construction: Ferade in costruzion
|
construction: Ferade in costruzion
|
||||||
|
disused_station: Stazion de ferade bandonade
|
||||||
|
light_rail: Ferade lizere
|
||||||
|
station: Stazion de ferade
|
||||||
shop:
|
shop:
|
||||||
bakery: Pancôr
|
bakery: Pancôr
|
||||||
books: Librerie
|
books: Librerie
|
||||||
|
@ -453,6 +471,7 @@ fur:
|
||||||
edit_zoom_alert: Tu scugnis cressi il zoom par cambiâ la mape
|
edit_zoom_alert: Tu scugnis cressi il zoom par cambiâ la mape
|
||||||
history_zoom_alert: Tu scugnis cressi il zoom par viodi il storic dai cambiaments
|
history_zoom_alert: Tu scugnis cressi il zoom par viodi il storic dai cambiaments
|
||||||
layouts:
|
layouts:
|
||||||
|
copyright: Copyright & Licence
|
||||||
donate: Sosten OpenStreetMap {{link}} al font pal inzornament dal hardware.
|
donate: Sosten OpenStreetMap {{link}} al font pal inzornament dal hardware.
|
||||||
donate_link_text: donant
|
donate_link_text: donant
|
||||||
edit: Cambie
|
edit: Cambie
|
||||||
|
@ -500,6 +519,9 @@ fur:
|
||||||
view_tooltip: Viôt la mape
|
view_tooltip: Viôt la mape
|
||||||
welcome_user: Benvignût/de, {{user_link}}
|
welcome_user: Benvignût/de, {{user_link}}
|
||||||
welcome_user_link_tooltip: La tô pagjine utent
|
welcome_user_link_tooltip: La tô pagjine utent
|
||||||
|
license_page:
|
||||||
|
native:
|
||||||
|
title: Informazions su cheste pagjine
|
||||||
message:
|
message:
|
||||||
delete:
|
delete:
|
||||||
deleted: Messaç eliminât
|
deleted: Messaç eliminât
|
||||||
|
@ -546,6 +568,7 @@ fur:
|
||||||
date: Date
|
date: Date
|
||||||
from: Di
|
from: Di
|
||||||
reading_your_messages: Leture dai tiei messaçs
|
reading_your_messages: Leture dai tiei messaçs
|
||||||
|
reading_your_sent_messages: Leture dai messaçs che tu âs inviât
|
||||||
reply_button: Rispuint
|
reply_button: Rispuint
|
||||||
subject: Sogjet
|
subject: Sogjet
|
||||||
title: Leture messaç
|
title: Leture messaç
|
||||||
|
@ -569,6 +592,7 @@ fur:
|
||||||
success:
|
success:
|
||||||
loaded_successfully: al sedi stât cjamât cun sucès, cun {{trace_points}} suntun totât di {{possible_points}} ponts pussibii.
|
loaded_successfully: al sedi stât cjamât cun sucès, cun {{trace_points}} suntun totât di {{possible_points}} ponts pussibii.
|
||||||
subject: "[OpenStreetMap] Impuartazion GPX completade cun sucès"
|
subject: "[OpenStreetMap] Impuartazion GPX completade cun sucès"
|
||||||
|
with_description: cu la descrizion
|
||||||
your_gpx_file: Al somee che il to file GPX
|
your_gpx_file: Al somee che il to file GPX
|
||||||
message_notification:
|
message_notification:
|
||||||
hi: Mandi {{to_user}},
|
hi: Mandi {{to_user}},
|
||||||
|
@ -626,13 +650,16 @@ fur:
|
||||||
heading: Leiende par z{{zoom_level}}
|
heading: Leiende par z{{zoom_level}}
|
||||||
search:
|
search:
|
||||||
search: Cîr
|
search: Cîr
|
||||||
search_help: "esemplis: 'Cividât', 'Via Udine, Cormons', 'CB2 5AQ', o se no 'post offices near Gorizia' <a href='http://wiki.openstreetmap.org/wiki/Search'>altris esemplis...</a>"
|
search_help: "esemplis: 'Cividât', 'Vie Julie, Naiarêt', 'CB2 5AQ', o se no 'post offices near Gurize' <a href='http://wiki.openstreetmap.org/wiki/Search'>altris esemplis...</a>"
|
||||||
submit_text: Va
|
submit_text: Va
|
||||||
where_am_i: Dulà soio?
|
where_am_i: Dulà soio?
|
||||||
where_am_i_title: Descrîf il lûc atuâl doprant il motôr di ricercje
|
where_am_i_title: Descrîf il lûc atuâl doprant il motôr di ricercje
|
||||||
sidebar:
|
sidebar:
|
||||||
close: Siere
|
close: Siere
|
||||||
search_results: Risultâts de ricercje
|
search_results: Risultâts de ricercje
|
||||||
|
time:
|
||||||
|
formats:
|
||||||
|
friendly: "%e di %B %Y a lis %H:%M"
|
||||||
trace:
|
trace:
|
||||||
create:
|
create:
|
||||||
trace_uploaded: Il to file GPX al è stât cjamât e al è cumò daûr a spietâ di jessi zontât ae base di dâts. Chest al sucêt in gjenar jentri di une ore; ti mandarìn un messaç cuant che il lavôr al sarà stât completât.
|
trace_uploaded: Il to file GPX al è stât cjamât e al è cumò daûr a spietâ di jessi zontât ae base di dâts. Chest al sucêt in gjenar jentri di une ore; ti mandarìn un messaç cuant che il lavôr al sarà stât completât.
|
||||||
|
@ -721,6 +748,7 @@ fur:
|
||||||
longitude: "Longjitudin:"
|
longitude: "Longjitudin:"
|
||||||
make edits public button: Rint publics ducj i miei cambiaments
|
make edits public button: Rint publics ducj i miei cambiaments
|
||||||
my settings: Mês impostazions
|
my settings: Mês impostazions
|
||||||
|
new email address: "Gnove direzion di pueste:"
|
||||||
no home location: No tu âs configurât il lûc iniziâl.
|
no home location: No tu âs configurât il lûc iniziâl.
|
||||||
preferred languages: "Lenghis preferidis:"
|
preferred languages: "Lenghis preferidis:"
|
||||||
profile description: "Descrizion dal profîl:"
|
profile description: "Descrizion dal profîl:"
|
||||||
|
@ -728,6 +756,7 @@ fur:
|
||||||
disabled link text: parcè no puedio cambiâ?
|
disabled link text: parcè no puedio cambiâ?
|
||||||
enabled link: http://wiki.openstreetmap.org/wiki/Anonymous_edits
|
enabled link: http://wiki.openstreetmap.org/wiki/Anonymous_edits
|
||||||
enabled link text: ce isal chest?
|
enabled link text: ce isal chest?
|
||||||
|
replace image: Sostituìs la figure atuâl
|
||||||
return to profile: Torne al profîl
|
return to profile: Torne al profîl
|
||||||
save changes button: Salve cambiaments
|
save changes button: Salve cambiaments
|
||||||
title: Modifiche profîl
|
title: Modifiche profîl
|
||||||
|
@ -782,6 +811,11 @@ fur:
|
||||||
success: "{{name}} al è stât gjavât dai tiei amîs."
|
success: "{{name}} al è stât gjavât dai tiei amîs."
|
||||||
set_home:
|
set_home:
|
||||||
flash success: Lûc iniziâl salvât cun sucès
|
flash success: Lûc iniziâl salvât cun sucès
|
||||||
|
terms:
|
||||||
|
legale_names:
|
||||||
|
france: France
|
||||||
|
italy: Italie
|
||||||
|
rest_of_world: Rest dal mont
|
||||||
view:
|
view:
|
||||||
add as friend: zonte ai amîs
|
add as friend: zonte ai amîs
|
||||||
ago: ({{time_in_words_ago}} fa)
|
ago: ({{time_in_words_ago}} fa)
|
||||||
|
@ -791,6 +825,7 @@ fur:
|
||||||
confirm: Conferme
|
confirm: Conferme
|
||||||
create_block: bloche chest utent
|
create_block: bloche chest utent
|
||||||
created from: "Creât di:"
|
created from: "Creât di:"
|
||||||
|
delete_user: elimine chest utent
|
||||||
description: Descrizion
|
description: Descrizion
|
||||||
diary: diari
|
diary: diari
|
||||||
edits: cambiaments
|
edits: cambiaments
|
||||||
|
@ -812,6 +847,7 @@ fur:
|
||||||
remove as friend: gjave dai amîs
|
remove as friend: gjave dai amîs
|
||||||
send message: mande messaç
|
send message: mande messaç
|
||||||
settings_link_text: impostazions
|
settings_link_text: impostazions
|
||||||
|
status: "Stât:"
|
||||||
traces: percors
|
traces: percors
|
||||||
user location: Lûc dal utent
|
user location: Lûc dal utent
|
||||||
your friends: I tiei amîs
|
your friends: I tiei amîs
|
||||||
|
|
|
@ -1062,7 +1062,7 @@ gl:
|
||||||
webmaster: webmaster
|
webmaster: webmaster
|
||||||
terms:
|
terms:
|
||||||
agree: Acepto
|
agree: Acepto
|
||||||
consider_pd: Considero que as miñas contribucións están no dominio público
|
consider_pd: Ademais do acordo anterior, considero que as miñas contribucións están no dominio público
|
||||||
consider_pd_why: que é isto?
|
consider_pd_why: que é isto?
|
||||||
decline: Rexeitar
|
decline: Rexeitar
|
||||||
heading: Termos do colaborador
|
heading: Termos do colaborador
|
||||||
|
|
|
@ -919,7 +919,6 @@ hr:
|
||||||
shop_tooltip: Trgovina sa proizvodima OpenStreetMap marke
|
shop_tooltip: Trgovina sa proizvodima OpenStreetMap marke
|
||||||
sign_up: otvori račun
|
sign_up: otvori račun
|
||||||
sign_up_tooltip: Otvori korisnički račun za uređivanje
|
sign_up_tooltip: Otvori korisnički račun za uređivanje
|
||||||
sotm: Dođite na OpenStreetMap konferenciju "The State of the Map", koja se održava od 10. do 12. srpnja 2009. u Amsterdamu!
|
|
||||||
tag_line: Slobodna wiki karta Svijeta
|
tag_line: Slobodna wiki karta Svijeta
|
||||||
user_diaries: Dnevnik
|
user_diaries: Dnevnik
|
||||||
user_diaries_tooltip: Prikaži korisničke dnevnike
|
user_diaries_tooltip: Prikaži korisničke dnevnike
|
||||||
|
|
|
@ -926,7 +926,7 @@ hsb:
|
||||||
shop_tooltip: Předawarnja za markowe artikle OpenStreetMap
|
shop_tooltip: Předawarnja za markowe artikle OpenStreetMap
|
||||||
sign_up: registrować
|
sign_up: registrować
|
||||||
sign_up_tooltip: Konto za wobdźěłowanje załožić
|
sign_up_tooltip: Konto za wobdźěłowanje załožić
|
||||||
sotm: Wopytaj konferencu OpenStreetMap, The State of the Map, 10.-12. julija 2009 w Amsterdamje!
|
sotm2010: Wopytaj konferencu OpenStreetMap, The State of the Map, 09-11. julija 2009 w Gironje!
|
||||||
tag_line: Swobodna swětowa karta
|
tag_line: Swobodna swětowa karta
|
||||||
user_diaries: Dźeniki
|
user_diaries: Dźeniki
|
||||||
user_diaries_tooltip: Wužiwarske dźeniki čitać
|
user_diaries_tooltip: Wužiwarske dźeniki čitać
|
||||||
|
@ -1495,7 +1495,7 @@ hsb:
|
||||||
webmaster: webmišter
|
webmaster: webmišter
|
||||||
terms:
|
terms:
|
||||||
agree: Přihłosować
|
agree: Přihłosować
|
||||||
consider_pd: Mam swoje přinoški za zjawnosć přistupne.
|
consider_pd: Přidatnje k horjeka mjenowanemu dojednanju, mam swoje přinoški za zjawnosć přistupne.
|
||||||
consider_pd_why: Što to je?
|
consider_pd_why: Što to je?
|
||||||
decline: Wotpokazać
|
decline: Wotpokazać
|
||||||
heading: Wuměnjenja za sobuskutkowarjow
|
heading: Wuměnjenja za sobuskutkowarjow
|
||||||
|
|
|
@ -283,6 +283,8 @@ hu:
|
||||||
title_bbox: "Módosításcsomagok ezen belül: {{bbox}}"
|
title_bbox: "Módosításcsomagok ezen belül: {{bbox}}"
|
||||||
title_user: "{{user}} módosításcsomagjai"
|
title_user: "{{user}} módosításcsomagjai"
|
||||||
title_user_bbox: "{{user}} módosításcsomagjai ezen belül: {{bbox}}"
|
title_user_bbox: "{{user}} módosításcsomagjai ezen belül: {{bbox}}"
|
||||||
|
timeout:
|
||||||
|
sorry: Sajnálom, az általad kért módosításcsomagok listájának lekérése túl sokáig tartott.
|
||||||
diary_entry:
|
diary_entry:
|
||||||
diary_comment:
|
diary_comment:
|
||||||
comment_from: "{{link_user}} hozzászólása ekkor: {{comment_created_at}}"
|
comment_from: "{{link_user}} hozzászólása ekkor: {{comment_created_at}}"
|
||||||
|
@ -918,7 +920,7 @@ hu:
|
||||||
shop_tooltip: Bolt márkás OpenStreetMap árukkal
|
shop_tooltip: Bolt márkás OpenStreetMap árukkal
|
||||||
sign_up: regisztráció
|
sign_up: regisztráció
|
||||||
sign_up_tooltip: Új felhasználói fiók létrehozása szerkesztéshez
|
sign_up_tooltip: Új felhasználói fiók létrehozása szerkesztéshez
|
||||||
sotm: Gyere a 2009-es OpenStreetMap-konferenciára, a The State of the Mapra július 10-12. Amszterdamba!
|
sotm2010: Gyere a 2010-es OpenStreetMap konferenciára, The State of the Map, július 9-11. Amszterdamban!
|
||||||
tag_line: A szabad világtérkép
|
tag_line: A szabad világtérkép
|
||||||
user_diaries: Naplók
|
user_diaries: Naplók
|
||||||
user_diaries_tooltip: Felhasználói naplók megtekintése
|
user_diaries_tooltip: Felhasználói naplók megtekintése
|
||||||
|
@ -926,6 +928,16 @@ hu:
|
||||||
view_tooltip: Térkép megjelenítése
|
view_tooltip: Térkép megjelenítése
|
||||||
welcome_user: Üdvözlünk {{user_link}}
|
welcome_user: Üdvözlünk {{user_link}}
|
||||||
welcome_user_link_tooltip: Felhasználói oldalad
|
welcome_user_link_tooltip: Felhasználói oldalad
|
||||||
|
license_page:
|
||||||
|
foreign:
|
||||||
|
english_link: az eredeti angol nyelvű
|
||||||
|
text: Abban az esetben, ha ez a lefordított oldal és {{english_original_link}} eltér egymástól, akkor az angol nyelvű oldal élvez elsőbbséget
|
||||||
|
title: Erről a fordításról
|
||||||
|
native:
|
||||||
|
mapping_link: kezdheted a térképezést
|
||||||
|
native_link: magyar nyelvű változatára
|
||||||
|
text: Jelenleg a szerzői jogi oldal angol nyelvű változatát látod. Visszaléphetsz ezen oldal {{native_link}}, vagy befejezheted a szerzői jogról szóló oldal olvasását, és {{mapping_link}}.
|
||||||
|
title: Erről az oldalról
|
||||||
message:
|
message:
|
||||||
delete:
|
delete:
|
||||||
deleted: Üzenet törölve
|
deleted: Üzenet törölve
|
||||||
|
@ -1397,8 +1409,20 @@ hu:
|
||||||
not_an_administrator: Ennek a műveletnek az elvégzéséhez adminisztrátori jogosultsággal kell rendelkezned.
|
not_an_administrator: Ennek a műveletnek az elvégzéséhez adminisztrátori jogosultsággal kell rendelkezned.
|
||||||
go_public:
|
go_public:
|
||||||
flash success: Mostantól az összes szerkesztésed nyilvános, és engedélyezett a szerkesztés.
|
flash success: Mostantól az összes szerkesztésed nyilvános, és engedélyezett a szerkesztés.
|
||||||
|
list:
|
||||||
|
confirm: Kijelölt felhasználók megerősítése
|
||||||
|
empty: Nem találtam egyező felhasználót
|
||||||
|
heading: Felhasználók
|
||||||
|
hide: Kijelölt felhasználók elrejtése
|
||||||
|
showing:
|
||||||
|
one: "{{page}}. oldal ({{page}}. elem, összesen: {{page}})"
|
||||||
|
other: "{{page}}. oldal ({{page}}-{{page}}. elem, összesen: {{page}})"
|
||||||
|
summary: "{{name}} létrejött innen: {{ip_address}}, ekkor: {{date}}"
|
||||||
|
summary_no_ip: "{{name}} letrejött ekkor: {{date}}"
|
||||||
|
title: Felhasználók
|
||||||
login:
|
login:
|
||||||
account not active: Sajnálom, a felhasználói fiókod még nincs aktiválva.<br />Az aktiváláshoz, kattints a fiókodat megerősítő e-mailben lévő hivatkozásra.
|
account not active: Sajnálom, a felhasználói fiókod még nincs aktiválva.<br />Az aktiváláshoz, kattints a fiókodat megerősítő e-mailben lévő hivatkozásra.
|
||||||
|
account suspended: Sajnálom, felhasználói fiókod felfüggesztésre került gyanús tevékenységed miatt.<br />Kérlek, lépj kapcsolatba a {{webmaster}}rel, ha meg szeretnéd vitatni ezt.
|
||||||
auth failure: Sajnálom, ilyen adatokkal nem tudsz bejelentkezni.
|
auth failure: Sajnálom, ilyen adatokkal nem tudsz bejelentkezni.
|
||||||
create_account: hozz létre egy új felhasználói fiókot
|
create_account: hozz létre egy új felhasználói fiókot
|
||||||
email or username: "E-mail cím vagy felhasználónév:"
|
email or username: "E-mail cím vagy felhasználónév:"
|
||||||
|
@ -1409,6 +1433,7 @@ hu:
|
||||||
please login: Jelentkezz be, vagy {{create_user_link}}.
|
please login: Jelentkezz be, vagy {{create_user_link}}.
|
||||||
remember: "Emlékezz rám:"
|
remember: "Emlékezz rám:"
|
||||||
title: Bejelentkezés
|
title: Bejelentkezés
|
||||||
|
webmaster: webmester
|
||||||
logout:
|
logout:
|
||||||
heading: Kijelentkezés az OpenStreetMapból
|
heading: Kijelentkezés az OpenStreetMapból
|
||||||
logout_button: Kijelentkezés
|
logout_button: Kijelentkezés
|
||||||
|
@ -1429,13 +1454,14 @@ hu:
|
||||||
confirm email address: "E-mail cím megerősítése:"
|
confirm email address: "E-mail cím megerősítése:"
|
||||||
confirm password: "Jelszó megerősítése:"
|
confirm password: "Jelszó megerősítése:"
|
||||||
contact_webmaster: Kérlek fordulj a <a href="mailto:webmaster@openstreetmap.org">webmesterhez</a> (angolul), hogy lehetővé tegye felhasználói fiók létrehozását - mi igyekszünk olyan gyorsan foglalkozni a kéréssel, amilyen gyorsan csak lehet.
|
contact_webmaster: Kérlek fordulj a <a href="mailto:webmaster@openstreetmap.org">webmesterhez</a> (angolul), hogy lehetővé tegye felhasználói fiók létrehozását - mi igyekszünk olyan gyorsan foglalkozni a kéréssel, amilyen gyorsan csak lehet.
|
||||||
|
continue: Folytatás
|
||||||
display name: "Megjelenítendő név:"
|
display name: "Megjelenítendő név:"
|
||||||
display name description: A nyilvánosan megjelenített felhasználóneved. A beállításaidban később megváltoztathatod.
|
display name description: A nyilvánosan megjelenített felhasználóneved. A beállításaidban később megváltoztathatod.
|
||||||
email address: "E-mail cím:"
|
email address: "E-mail cím:"
|
||||||
fill_form: Töltsd ki az űrlapot, és küldünk neked egy gyors e-mailt felhasználói fiókod aktiválásához.
|
fill_form: Töltsd ki az űrlapot, és küldünk neked egy gyors e-mailt felhasználói fiókod aktiválásához.
|
||||||
flash create success message: A felhasználó sikeresen létrehozva. Nézd meg az e-mailjeidet a megerősítő levélhez, és pillanatokon belül szerkesztheted a térképet :-)<br /><br />Felhívom a figyelmed, hogy addig nem tudsz bejelentkezni, amíg nem kaptad meg és nem erősítetted meg az e-mail címedet.<br /><br />Ha olyan antispam rendszert használsz, ami megerősítő kérést küld, akkor bizonyosodj meg róla, hogy engedélyezőlistára tetted a webmaster@openstreetmap.org címet, mivel mi nem tudunk válaszolni megerősítő kérésekre.
|
flash create success message: A felhasználó sikeresen létrehozva. Nézd meg az e-mailjeidet a megerősítő levélhez, és pillanatokon belül szerkesztheted a térképet :-)<br /><br />Felhívom a figyelmed, hogy addig nem tudsz bejelentkezni, amíg nem kaptad meg és nem erősítetted meg az e-mail címedet.<br /><br />Ha olyan antispam rendszert használsz, ami megerősítő kérést küld, akkor bizonyosodj meg róla, hogy engedélyezőlistára tetted a webmaster@openstreetmap.org címet, mivel mi nem tudunk válaszolni megerősítő kérésekre.
|
||||||
heading: Felhasználói fiók létrehozása
|
heading: Felhasználói fiók létrehozása
|
||||||
license_agreement: Felhasználói fiók létrehozásával vállalod, hogy az összes adatra, amivel hozzájárulsz az Openstreetmap projekthez, (nem kizárólagosan) <a href="http://creativecommons.org/licenses/by-sa/2.0/deed.hu">ez a Creative Commons licenc (by-sa)</a> vonatkozik.
|
license_agreement: Amikor megerősíted a felhasználói fiókodat, el kell fogadnod a <a href="http://www.osmfoundation.org/wiki/License/Contributor_Terms">hozzájárulási feltételeket</a>.
|
||||||
no_auto_account_create: Sajnos jelenleg nem tudunk neked létrehozni automatikusan egy felhasználói fiókot.
|
no_auto_account_create: Sajnos jelenleg nem tudunk neked létrehozni automatikusan egy felhasználói fiókot.
|
||||||
not displayed publicly: Nem jelenik meg nyilvánosan (lásd <a href="http://wiki.openstreetmap.org/wiki/Privacy_Policy" title="a wiki adatvédelmi irányelvei tartalmazzák az e-mail címekről szóló részt">adatvédelmi irányelvek</a>)
|
not displayed publicly: Nem jelenik meg nyilvánosan (lásd <a href="http://wiki.openstreetmap.org/wiki/Privacy_Policy" title="a wiki adatvédelmi irányelvei tartalmazzák az e-mail címekről szóló részt">adatvédelmi irányelvek</a>)
|
||||||
password: "Jelszó:"
|
password: "Jelszó:"
|
||||||
|
@ -1461,6 +1487,23 @@ hu:
|
||||||
title: Jelszó alaphelyzetbe állítása
|
title: Jelszó alaphelyzetbe állítása
|
||||||
set_home:
|
set_home:
|
||||||
flash success: Otthon helye sikeresen mentve
|
flash success: Otthon helye sikeresen mentve
|
||||||
|
suspended:
|
||||||
|
body: "<p>\n Sajnálom, felhasználói fiókod automatikusan felfüggesztésre került\n gyanús tevékenységed miatt.\n</p>\n<p>\n Ezt a döntést rövidesen felül fogja vizsgálni egy adminisztrátor, vagy\n kapcsolatba léphetsz a {{webmaster}}rel, ha meg szeretnéd vitatni ezt.\n</p>"
|
||||||
|
heading: Felhasználói fiók felfüggesztve
|
||||||
|
title: Felhasználói fiók felfüggesztve
|
||||||
|
webmaster: webmester
|
||||||
|
terms:
|
||||||
|
agree: Elfogadom
|
||||||
|
consider_pd: A fenti megállapodáson felül, a hozzájárulásaimat közkinccsé nyilvánítom
|
||||||
|
consider_pd_why: mi ez?
|
||||||
|
decline: Elutasítom
|
||||||
|
heading: Hozzájárulási feltételek
|
||||||
|
legale_names:
|
||||||
|
france: Franciaország
|
||||||
|
italy: Olaszország
|
||||||
|
rest_of_world: A világ többi része
|
||||||
|
legale_select: "Kérlek, válaszd ki a lakóhelyed szerinti országot:"
|
||||||
|
press accept button: Kérlek, olvasd el az alábbi megállapodást, és nyomd meg az "Elfogadom" gombot felhasználói fiókod létrehozásához.
|
||||||
view:
|
view:
|
||||||
activate_user: felhasználó aktiválása
|
activate_user: felhasználó aktiválása
|
||||||
add as friend: felvétel barátnak
|
add as friend: felvétel barátnak
|
||||||
|
@ -1469,6 +1512,7 @@ hu:
|
||||||
blocks by me: általam kiosztott blokkolások
|
blocks by me: általam kiosztott blokkolások
|
||||||
blocks on me: saját blokkolásaim
|
blocks on me: saját blokkolásaim
|
||||||
confirm: Megerősítés
|
confirm: Megerősítés
|
||||||
|
confirm_user: felhasználó megerősítése
|
||||||
create_block: ezen felhasználó blokkolása
|
create_block: ezen felhasználó blokkolása
|
||||||
created from: "Készítve innen:"
|
created from: "Készítve innen:"
|
||||||
deactivate_user: felhasználó deaktiválása
|
deactivate_user: felhasználó deaktiválása
|
||||||
|
@ -1504,6 +1548,8 @@ hu:
|
||||||
moderator: Moderátori hozzáférés viszzavonása
|
moderator: Moderátori hozzáférés viszzavonása
|
||||||
send message: üzenet küldése
|
send message: üzenet küldése
|
||||||
settings_link_text: beállítások
|
settings_link_text: beállítások
|
||||||
|
spam score: "Spam pontszám:"
|
||||||
|
status: "Állapot:"
|
||||||
traces: nyomvonalak
|
traces: nyomvonalak
|
||||||
unhide_user: felhasználó elrejtésének megszüntetése
|
unhide_user: felhasználó elrejtésének megszüntetése
|
||||||
user location: Felhasználó helye
|
user location: Felhasználó helye
|
||||||
|
|
|
@ -6,7 +6,7 @@ ia:
|
||||||
activerecord:
|
activerecord:
|
||||||
attributes:
|
attributes:
|
||||||
diary_comment:
|
diary_comment:
|
||||||
body: Corpore
|
body: Texto
|
||||||
diary_entry:
|
diary_entry:
|
||||||
language: Lingua
|
language: Lingua
|
||||||
latitude: Latitude
|
latitude: Latitude
|
||||||
|
@ -17,7 +17,7 @@ ia:
|
||||||
friend: Amico
|
friend: Amico
|
||||||
user: Usator
|
user: Usator
|
||||||
message:
|
message:
|
||||||
body: Corpore
|
body: Texto
|
||||||
recipient: Destinatario
|
recipient: Destinatario
|
||||||
sender: Expeditor
|
sender: Expeditor
|
||||||
title: Titulo
|
title: Titulo
|
||||||
|
@ -280,6 +280,8 @@ ia:
|
||||||
title_bbox: Gruppos de modificationes intra {{bbox}}
|
title_bbox: Gruppos de modificationes intra {{bbox}}
|
||||||
title_user: Gruppos de modificationes per {{user}}
|
title_user: Gruppos de modificationes per {{user}}
|
||||||
title_user_bbox: Gruppos de modificationes per {{user}} intra {{bbox}}
|
title_user_bbox: Gruppos de modificationes per {{user}} intra {{bbox}}
|
||||||
|
timeout:
|
||||||
|
sorry: Le lista de gruppos de modificationes que tu requestava tardava troppo de tempore pro esser recuperate.
|
||||||
diary_entry:
|
diary_entry:
|
||||||
diary_comment:
|
diary_comment:
|
||||||
comment_from: Commento de {{link_user}} a {{comment_created_at}}
|
comment_from: Commento de {{link_user}} a {{comment_created_at}}
|
||||||
|
@ -296,7 +298,7 @@ ia:
|
||||||
posted_by: Publicate per {{link_user}} le {{created}} in {{language_link}}
|
posted_by: Publicate per {{link_user}} le {{created}} in {{language_link}}
|
||||||
reply_link: Responder a iste entrata
|
reply_link: Responder a iste entrata
|
||||||
edit:
|
edit:
|
||||||
body: "Corpore:"
|
body: "Texto:"
|
||||||
language: "Lingua:"
|
language: "Lingua:"
|
||||||
latitude: "Latitude:"
|
latitude: "Latitude:"
|
||||||
location: "Loco:"
|
location: "Loco:"
|
||||||
|
@ -913,7 +915,7 @@ ia:
|
||||||
shop_tooltip: Boteca con mercantias de OpenStreetMap
|
shop_tooltip: Boteca con mercantias de OpenStreetMap
|
||||||
sign_up: inscriber se
|
sign_up: inscriber se
|
||||||
sign_up_tooltip: Crear un conto pro modification
|
sign_up_tooltip: Crear un conto pro modification
|
||||||
sotm: Veni al conferentia OpenStreetMap 2009, The State of the Map, del 10 al 12 de julio in Amsterdam!
|
sotm2010: Veni al conferentia OpenStreetMap 2010, The State of the Map, del 9 al 11 de julio in Girona!
|
||||||
tag_line: Le wiki-carta libere del mundo
|
tag_line: Le wiki-carta libere del mundo
|
||||||
user_diaries: Diarios de usatores
|
user_diaries: Diarios de usatores
|
||||||
user_diaries_tooltip: Leger diarios de usatores
|
user_diaries_tooltip: Leger diarios de usatores
|
||||||
|
@ -955,7 +957,7 @@ ia:
|
||||||
unread_button: Marcar como non legite
|
unread_button: Marcar como non legite
|
||||||
new:
|
new:
|
||||||
back_to_inbox: Retornar al cassa de entrata
|
back_to_inbox: Retornar al cassa de entrata
|
||||||
body: Corpore
|
body: Texto
|
||||||
limit_exceeded: Tu ha inviate multe messages recentemente. Per favor attende un momento ante de tentar inviar alteres.
|
limit_exceeded: Tu ha inviate multe messages recentemente. Per favor attende un momento ante de tentar inviar alteres.
|
||||||
message_sent: Message inviate
|
message_sent: Message inviate
|
||||||
send_button: Inviar
|
send_button: Inviar
|
||||||
|
@ -1482,7 +1484,7 @@ ia:
|
||||||
webmaster: webmaster
|
webmaster: webmaster
|
||||||
terms:
|
terms:
|
||||||
agree: Acceptar
|
agree: Acceptar
|
||||||
consider_pd: Io considera mi contributiones como essente in le dominio public
|
consider_pd: In addition al contracto hic supra, io considera mi contributiones como essente in le dominio public
|
||||||
consider_pd_why: que es isto?
|
consider_pd_why: que es isto?
|
||||||
decline: Declinar
|
decline: Declinar
|
||||||
heading: Conditiones de contributor
|
heading: Conditiones de contributor
|
||||||
|
|
|
@ -611,7 +611,6 @@ is:
|
||||||
shop_url: http://wiki.openstreetmap.org/index.php?title=Merchandise&uselang=is
|
shop_url: http://wiki.openstreetmap.org/index.php?title=Merchandise&uselang=is
|
||||||
sign_up: búa til aðgang
|
sign_up: búa til aðgang
|
||||||
sign_up_tooltip: Búaðu til aðgang til að geta breytt kortinu
|
sign_up_tooltip: Búaðu til aðgang til að geta breytt kortinu
|
||||||
sotm: Komdu á „State of the map“ - OpenStreetMap ráðstefnuna sem verður haldin 10. - 12. júlí 2009 í Amsterdam!
|
|
||||||
tag_line: Frjálsa wiki heimskortið
|
tag_line: Frjálsa wiki heimskortið
|
||||||
user_diaries: Blogg notenda
|
user_diaries: Blogg notenda
|
||||||
user_diaries_tooltip: Sjá blogg notenda
|
user_diaries_tooltip: Sjá blogg notenda
|
||||||
|
|
|
@ -630,7 +630,6 @@ it:
|
||||||
shop: Negozio
|
shop: Negozio
|
||||||
sign_up: iscriviti
|
sign_up: iscriviti
|
||||||
sign_up_tooltip: Crea un profilo utente per apportare modifiche
|
sign_up_tooltip: Crea un profilo utente per apportare modifiche
|
||||||
sotm: Vieni alla conferenza OpenStreetMap 2009, The State of the Map, ad Amsterdam il 10-12 Luglio!
|
|
||||||
tag_line: La wiki-mappa Libera del Mondo
|
tag_line: La wiki-mappa Libera del Mondo
|
||||||
user_diaries: Diari degli utenti
|
user_diaries: Diari degli utenti
|
||||||
user_diaries_tooltip: Visualizza diari utente
|
user_diaries_tooltip: Visualizza diari utente
|
||||||
|
|
|
@ -75,6 +75,11 @@ ja:
|
||||||
way: ウェイ
|
way: ウェイ
|
||||||
way_node: ウェイのノード
|
way_node: ウェイのノード
|
||||||
way_tag: ウェイのタグ
|
way_tag: ウェイのタグ
|
||||||
|
application:
|
||||||
|
require_cookies:
|
||||||
|
cookies_needed: ブラウザのクッキーが無効になっているようです。続行する前にブラウザのクッキーをonにしてください。
|
||||||
|
setup_user_auth:
|
||||||
|
blocked: APIへのアクセスがブロックされました。Web インターフェースからログインし直して詳細を確認してください。
|
||||||
browse:
|
browse:
|
||||||
changeset:
|
changeset:
|
||||||
changeset: "変更セット: {{id}}"
|
changeset: "変更セット: {{id}}"
|
||||||
|
@ -209,7 +214,11 @@ ja:
|
||||||
zoom_or_select: ズームアップするか、表示する領域を選択
|
zoom_or_select: ズームアップするか、表示する領域を選択
|
||||||
tag_details:
|
tag_details:
|
||||||
tags: "タグ:"
|
tags: "タグ:"
|
||||||
|
wiki_link:
|
||||||
|
key: Wikiの {{key}} tagについての説明ページ
|
||||||
|
tag: Wikiの {{key}}={{value}} についての解説ページ
|
||||||
timeout:
|
timeout:
|
||||||
|
sorry: 申し訳ありません。{{type}} からのデータ {{id}} は取得するには大き過ぎます。
|
||||||
type:
|
type:
|
||||||
changeset: 変更セット
|
changeset: 変更セット
|
||||||
node: ノード
|
node: ノード
|
||||||
|
@ -266,6 +275,8 @@ ja:
|
||||||
title_bbox: "{{bbox}} 範囲内の変更セット"
|
title_bbox: "{{bbox}} 範囲内の変更セット"
|
||||||
title_user: "{{user}} の変更セット"
|
title_user: "{{user}} の変更セット"
|
||||||
title_user_bbox: "{{bbox}}内の{{user}}による変更セット"
|
title_user_bbox: "{{bbox}}内の{{user}}による変更セット"
|
||||||
|
timeout:
|
||||||
|
sorry: 申し訳ありません。あなたが要求した変更セットのリストは大きすぎて取得に失敗しました。
|
||||||
diary_entry:
|
diary_entry:
|
||||||
diary_comment:
|
diary_comment:
|
||||||
comment_from: "{{comment_created_at}} {{link_user}} からのコメント"
|
comment_from: "{{comment_created_at}} {{link_user}} からのコメント"
|
||||||
|
@ -301,6 +312,7 @@ ja:
|
||||||
title: "{{language_name}}のOpenStreetMap 日記エントリー"
|
title: "{{language_name}}のOpenStreetMap 日記エントリー"
|
||||||
user:
|
user:
|
||||||
description: "{{user}} さんの最近のOpenStreetMap 日記のエントリー"
|
description: "{{user}} さんの最近のOpenStreetMap 日記のエントリー"
|
||||||
|
title: "{{user}} さんの最近のOpenStreetMap 日記のエントリー"
|
||||||
list:
|
list:
|
||||||
in_language_title: "{{language}} の日記項目"
|
in_language_title: "{{language}} の日記項目"
|
||||||
new: 新規日記入力
|
new: 新規日記入力
|
||||||
|
@ -311,6 +323,10 @@ ja:
|
||||||
recent_entries: "最新の日記項目:"
|
recent_entries: "最新の日記項目:"
|
||||||
title: ユーザの日記
|
title: ユーザの日記
|
||||||
user_title: "{{user}} の日記"
|
user_title: "{{user}} の日記"
|
||||||
|
location:
|
||||||
|
edit: 編集
|
||||||
|
location: "場所:"
|
||||||
|
view: 表示
|
||||||
new:
|
new:
|
||||||
title: 新しい日記の入力
|
title: 新しい日記の入力
|
||||||
no_such_entry:
|
no_such_entry:
|
||||||
|
@ -326,7 +342,7 @@ ja:
|
||||||
login: ログイン
|
login: ログイン
|
||||||
login_to_leave_a_comment: コメントを書くには{{login_link}}してください。
|
login_to_leave_a_comment: コメントを書くには{{login_link}}してください。
|
||||||
save_button: 保存
|
save_button: 保存
|
||||||
title: ユーザ日記 | {{user}}
|
title: "{{user}}の日記 | {{title}}"
|
||||||
user_title: "{{user}} の日記"
|
user_title: "{{user}} の日記"
|
||||||
export:
|
export:
|
||||||
start:
|
start:
|
||||||
|
@ -363,6 +379,10 @@ ja:
|
||||||
view_larger_map: 大きな地図を表示...
|
view_larger_map: 大きな地図を表示...
|
||||||
geocoder:
|
geocoder:
|
||||||
description:
|
description:
|
||||||
|
title:
|
||||||
|
geonames: <a href="http://www.geonames.org/">GeoNames</a>からの結果
|
||||||
|
osm_namefinder: <a href="http://gazetteer.openstreetmap.org/namefinder/">OpenStreetMap Namefinder</a>からの{{types}}
|
||||||
|
osm_nominatim: <a href="http://nominatim.openstreetmap.org/">OpenStreetMap Nominatim</a>からの位置
|
||||||
types:
|
types:
|
||||||
cities: 都市
|
cities: 都市
|
||||||
places: 場所
|
places: 場所
|
||||||
|
@ -381,6 +401,7 @@ ja:
|
||||||
other: 約{{count}}キロメートル
|
other: 約{{count}}キロメートル
|
||||||
zero: 1キロメートル以下
|
zero: 1キロメートル以下
|
||||||
results:
|
results:
|
||||||
|
more_results: さらに検索...
|
||||||
no_results: 見つかりませんでした。
|
no_results: 見つかりませんでした。
|
||||||
search:
|
search:
|
||||||
title:
|
title:
|
||||||
|
@ -388,44 +409,277 @@ ja:
|
||||||
geonames: <a href="http://www.geonames.org/">GeoNames</a>からの結果
|
geonames: <a href="http://www.geonames.org/">GeoNames</a>からの結果
|
||||||
latlon: <a href="http://openstreetmap.org/">Internal</a>からの結果
|
latlon: <a href="http://openstreetmap.org/">Internal</a>からの結果
|
||||||
osm_namefinder: <a href="http://gazetteer.openstreetmap.org/namefinder/">OpenStreetMap Namefinder</a>からの結果
|
osm_namefinder: <a href="http://gazetteer.openstreetmap.org/namefinder/">OpenStreetMap Namefinder</a>からの結果
|
||||||
|
osm_nominatim: <a href="http://nominatim.openstreetmap.org/">OpenStreetMap Nominatim</a> からの結果
|
||||||
uk_postcode: <a href="http://www.npemap.org.uk/">NPEMap / FreeThe Postcode</a>からの結果
|
uk_postcode: <a href="http://www.npemap.org.uk/">NPEMap / FreeThe Postcode</a>からの結果
|
||||||
us_postcode: <a href="http://geocoder.us/">Geocoder.us</a>からの結果
|
us_postcode: <a href="http://geocoder.us/">Geocoder.us</a>からの結果
|
||||||
search_osm_nominatim:
|
search_osm_nominatim:
|
||||||
prefix:
|
prefix:
|
||||||
amenity:
|
amenity:
|
||||||
airport: 空港
|
airport: 空港
|
||||||
|
arts_centre: アートセンター
|
||||||
|
atm: ATM
|
||||||
|
auditorium: 講堂
|
||||||
bank: 銀行
|
bank: 銀行
|
||||||
|
bar: バー (立ち飲み屋)
|
||||||
|
bench: ベンチ
|
||||||
|
bicycle_parking: 駐輪場
|
||||||
|
bicycle_rental: レンタサイクル
|
||||||
|
brothel: 売春宿
|
||||||
|
bus_station: バス停
|
||||||
car_rental: レンタカー
|
car_rental: レンタカー
|
||||||
car_wash: 洗車
|
car_wash: 洗車
|
||||||
casino: 賭場
|
casino: 賭場
|
||||||
|
cinema: 映画館
|
||||||
|
clinic: クリニック
|
||||||
college: 大学
|
college: 大学
|
||||||
|
community_centre: コミュニティセンター
|
||||||
|
courthouse: 裁判所
|
||||||
dentist: 歯科医
|
dentist: 歯科医
|
||||||
|
dormitory: 寮
|
||||||
|
drinking_water: 飲み水
|
||||||
|
driving_school: 自動車学校
|
||||||
embassy: 大使館
|
embassy: 大使館
|
||||||
|
emergency_phone: 緊急電話
|
||||||
|
fast_food: ファストフード
|
||||||
|
ferry_terminal: フェリー乗り場
|
||||||
|
fire_hydrant: 消火栓
|
||||||
|
fire_station: 消防署
|
||||||
|
fountain: 噴水
|
||||||
|
grave_yard: 墓地
|
||||||
|
gym: フィットネスセンター
|
||||||
|
hall: ホール
|
||||||
|
health_centre: 保健所
|
||||||
|
hospital: 病院
|
||||||
hotel: ホテル
|
hotel: ホテル
|
||||||
|
ice_cream: アイスクリーム販売店
|
||||||
kindergarten: 幼稚園
|
kindergarten: 幼稚園
|
||||||
library: 図書館
|
library: 図書館
|
||||||
|
marketplace: 市場
|
||||||
|
mountain_rescue: 山岳救助
|
||||||
|
nightclub: ナイトクラブ
|
||||||
|
nursery: 保育所
|
||||||
|
nursing_home: 特別養護老人ホーム
|
||||||
|
park: 公園
|
||||||
|
parking: 駐車場
|
||||||
|
pharmacy: 薬局
|
||||||
|
place_of_worship: 神社仏閣
|
||||||
|
police: 警察所
|
||||||
|
post_box: 郵便ポスト
|
||||||
|
prison: 刑務所
|
||||||
pub: パブ(立ち吞み屋)
|
pub: パブ(立ち吞み屋)
|
||||||
|
public_building: 公共建築物
|
||||||
|
public_market: 公設市場
|
||||||
|
restaurant: レストラン
|
||||||
|
retirement_home: 老人ホーム
|
||||||
sauna: サウナ
|
sauna: サウナ
|
||||||
school: 学校
|
school: 学校
|
||||||
|
shelter: 避難所
|
||||||
shop: 店舗
|
shop: 店舗
|
||||||
|
social_club: 社交クラブ
|
||||||
|
studio: スタジオ
|
||||||
|
supermarket: スーパーマーケット
|
||||||
taxi: タクシー乗り場
|
taxi: タクシー乗り場
|
||||||
|
telephone: 公衆電話
|
||||||
|
theatre: 劇場
|
||||||
|
toilets: トイレ
|
||||||
|
townhall: 市庁舎
|
||||||
university: 大学
|
university: 大学
|
||||||
|
vending_machine: 自動販売機
|
||||||
|
veterinary: 獣医外科
|
||||||
wifi: WiFiアクセスポイント
|
wifi: WiFiアクセスポイント
|
||||||
|
youth_centre: 青少年センター
|
||||||
|
boundary:
|
||||||
|
administrative: 行政境界
|
||||||
|
building:
|
||||||
|
chapel: 礼拝堂
|
||||||
|
church: 教会
|
||||||
|
city_hall: 市役所
|
||||||
|
commercial: 商業ビル
|
||||||
|
dormitory: 寮
|
||||||
|
entrance: ビル入口
|
||||||
|
flats: アパート
|
||||||
|
garage: 車庫
|
||||||
|
hall: ホール
|
||||||
|
hospital: 病院
|
||||||
|
hotel: ホテル
|
||||||
|
house: 住宅
|
||||||
|
industrial: 工業ビル
|
||||||
|
office: オフィスビル
|
||||||
|
public: 公共建築物
|
||||||
|
school: 校舎
|
||||||
|
shop: 店舗
|
||||||
|
stadium: 球技場
|
||||||
|
store: 店舗
|
||||||
|
terrace: テラス
|
||||||
|
tower: 塔
|
||||||
|
train_station: 鉄道駅
|
||||||
|
"yes": 建造物
|
||||||
highway:
|
highway:
|
||||||
bus_stop: バス停
|
bus_stop: バス停
|
||||||
|
byway: 路地
|
||||||
|
cycleway: 自転車道
|
||||||
|
ford: 砦
|
||||||
|
motorway_junction: 高速道路ジャンクション
|
||||||
steps: 階段
|
steps: 階段
|
||||||
|
historic:
|
||||||
|
battlefield: 戦場
|
||||||
|
boundary_stone: 境界石
|
||||||
|
building: ビル
|
||||||
|
castle: 城
|
||||||
|
church: 教会
|
||||||
|
house: 住宅
|
||||||
|
icon: アイコン
|
||||||
|
manor: 荘園
|
||||||
|
memorial: 記念碑
|
||||||
|
mine: 鉱山
|
||||||
|
museum: 博物館
|
||||||
|
ruins: 廃墟
|
||||||
|
tower: 塔
|
||||||
|
wreck: 沈没船
|
||||||
|
landuse:
|
||||||
|
allotments: 家庭菜園
|
||||||
|
cemetery: 墓地
|
||||||
|
commercial: 商業地域
|
||||||
|
construction: 工事中
|
||||||
|
farmland: 農地
|
||||||
|
landfill: 埋め立て地
|
||||||
|
meadow: 牧草地
|
||||||
|
military: 軍用地域
|
||||||
|
mountain: 山
|
||||||
|
park: 公園
|
||||||
|
plaza: 広場
|
||||||
|
quarry: 採石場
|
||||||
|
railway: 鉄道
|
||||||
|
reservoir: 貯水池
|
||||||
|
residential: 住宅街
|
||||||
|
vineyard: Vineyard
|
||||||
|
wetland: 湿地帯
|
||||||
|
leisure:
|
||||||
|
beach_resort: ビーチリゾート
|
||||||
|
common: 共有地
|
||||||
|
fishing: 釣り場
|
||||||
|
garden: 庭園
|
||||||
|
golf_course: ゴルフ場
|
||||||
|
ice_rink: スケート場
|
||||||
|
marina: マリーナ
|
||||||
|
miniature_golf: ミニチュアゴルフ
|
||||||
|
nature_reserve: 自然保護区
|
||||||
|
park: 公園
|
||||||
|
pitch: 運動場
|
||||||
|
slipway: 造船台
|
||||||
|
sports_centre: スポーツセンター
|
||||||
|
stadium: スタジアム
|
||||||
|
swimming_pool: 水泳用プール
|
||||||
|
track: 陸上競技用トラック
|
||||||
|
natural:
|
||||||
|
bay: 入り江
|
||||||
|
beach: 砂浜
|
||||||
|
cape: 岬
|
||||||
|
cave_entrance: 洞窟入口
|
||||||
|
channel: 水路
|
||||||
|
cliff: 崖
|
||||||
|
coastline: 海岸線
|
||||||
|
crater: クレーター
|
||||||
|
feature: 地物
|
||||||
|
geyser: 間欠泉
|
||||||
|
glacier: 氷河
|
||||||
|
heath: 荒れ地
|
||||||
|
hill: 丘陵
|
||||||
|
island: 島
|
||||||
|
land: 陸地
|
||||||
|
marsh: 沼地
|
||||||
|
mud: 泥
|
||||||
|
peak: 山頂
|
||||||
|
point: 点
|
||||||
|
reef: 砂州
|
||||||
|
ridge: 海嶺
|
||||||
|
river: 河川
|
||||||
|
rock: 岩場
|
||||||
|
scree: がれ場
|
||||||
|
scrub: 低木林
|
||||||
|
shoal: 浅瀬
|
||||||
|
spring: 泉
|
||||||
|
strait: 海峡
|
||||||
|
tree: 木
|
||||||
|
valley: 谷
|
||||||
|
volcano: 噴火口
|
||||||
|
water: 湖水
|
||||||
|
wetland: 湿地帯
|
||||||
|
wetlands: 湿原
|
||||||
|
wood: 森林
|
||||||
place:
|
place:
|
||||||
airport: 空港
|
airport: 空港
|
||||||
city: 市
|
city: 市
|
||||||
|
farm: 牧場
|
||||||
|
hamlet: 村
|
||||||
|
houses: 住宅地
|
||||||
|
island: 島
|
||||||
|
islet: 小島
|
||||||
|
locality: 地域
|
||||||
|
municipality: 市町村
|
||||||
|
postcode: Postcode
|
||||||
|
region: 地域
|
||||||
|
sea: 海
|
||||||
|
state: 都道府県・州
|
||||||
|
subdivision: 区分
|
||||||
|
suburb: 郊外
|
||||||
|
town: 町
|
||||||
|
village: 村
|
||||||
|
railway:
|
||||||
|
disused: 廃線跡
|
||||||
|
funicular: ケーブル鉄道
|
||||||
|
halt: 列車停止
|
||||||
|
level_crossing: 踏切
|
||||||
|
light_rail: ライトレール
|
||||||
|
monorail: モノレール
|
||||||
|
narrow_gauge: 狭軌鉄道
|
||||||
|
platform: 鉄道プラットフォーム
|
||||||
|
station: 鉄道駅
|
||||||
|
subway: 地下鉄駅
|
||||||
|
subway_entrance: 地下鉄駅入口
|
||||||
|
tram: 路面軌道
|
||||||
|
tram_stop: トラム停留所
|
||||||
|
shop:
|
||||||
|
beauty: 美容室
|
||||||
|
beverages: 飲料ショップ
|
||||||
|
car: 自動車販売店
|
||||||
|
cosmetics: 化粧品販売店
|
||||||
|
electronics: 電気製品販売店
|
||||||
|
greengrocer: 八百屋
|
||||||
|
newsagent: 新聞販売店
|
||||||
|
outdoor: アウトドアショップ
|
||||||
|
pet: ペットショップ
|
||||||
|
shopping_centre: ショッピングセンター
|
||||||
tourism:
|
tourism:
|
||||||
|
museum: 博物館
|
||||||
theme_park: テーマパーク
|
theme_park: テーマパーク
|
||||||
valley: 谷
|
valley: 谷
|
||||||
zoo: 動物園
|
zoo: 動物園
|
||||||
|
waterway:
|
||||||
|
boatyard: ボートヤード
|
||||||
|
canal: 運河
|
||||||
|
dam: ダム
|
||||||
|
dock: 埠頭
|
||||||
|
lock: 岩場
|
||||||
|
lock_gate: 水門
|
||||||
|
river: 河川
|
||||||
|
riverbank: 川岸
|
||||||
|
stream: 小川
|
||||||
|
water_point: 給水所
|
||||||
|
waterfall: 滝
|
||||||
javascripts:
|
javascripts:
|
||||||
|
map:
|
||||||
|
base:
|
||||||
|
noname: 無名
|
||||||
site:
|
site:
|
||||||
|
edit_disabled_tooltip: 編集のために地図を拡大する
|
||||||
|
edit_tooltip: 地図を編集
|
||||||
edit_zoom_alert: 編集するにはもっと拡大してください
|
edit_zoom_alert: 編集するにはもっと拡大してください
|
||||||
|
history_disabled_tooltip: 編集履歴を参照するにはもっと拡大してください
|
||||||
|
history_tooltip: この範囲の編集履歴を見る
|
||||||
history_zoom_alert: 編集履歴を参照するにはもっと拡大してください
|
history_zoom_alert: 編集履歴を参照するにはもっと拡大してください
|
||||||
layouts:
|
layouts:
|
||||||
|
copyright: 著作権とライセンス
|
||||||
donate: ハードウェアーアップグレード基金への{{link}} で、OpenStreetMap を支援する。
|
donate: ハードウェアーアップグレード基金への{{link}} で、OpenStreetMap を支援する。
|
||||||
donate_link_text: 寄付
|
donate_link_text: 寄付
|
||||||
edit: 編集
|
edit: 編集
|
||||||
|
@ -446,8 +700,11 @@ ja:
|
||||||
zero: 受信箱に未読メッセージはありません
|
zero: 受信箱に未読メッセージはありません
|
||||||
intro_1: OpenStreetMap は自由に編集できる世界地図です。あなたのような人々が作りました。
|
intro_1: OpenStreetMap は自由に編集できる世界地図です。あなたのような人々が作りました。
|
||||||
intro_2: OpenStreetMap は地球上の誰でも、どこからでもこの共同作業の結果である地図データを編集、閲覧することを可能にしています。
|
intro_2: OpenStreetMap は地球上の誰でも、どこからでもこの共同作業の結果である地図データを編集、閲覧することを可能にしています。
|
||||||
intro_3: OpenStreetMap は {{ucl}} と {{bytemark}}.によってホスティングされています。
|
intro_3: OpenStreetMap は {{ucl}} と {{bytemark}}によってホスティングされています。{{partners}} には協賛組織の一覧があります。
|
||||||
|
intro_3_partners: ウィキ
|
||||||
intro_3_ucl: ユニヴァーシティ・カレッジ・ロンドン (UCL) VR センター
|
intro_3_ucl: ユニヴァーシティ・カレッジ・ロンドン (UCL) VR センター
|
||||||
|
license:
|
||||||
|
title: OpenStreetMapのデータは、クリエイティブコモンズ表示 - 継承2.0一般 でライセンスされています
|
||||||
log_in: ログイン
|
log_in: ログイン
|
||||||
log_in_tooltip: 自分のアカウントでログインする
|
log_in_tooltip: 自分のアカウントでログインする
|
||||||
logo:
|
logo:
|
||||||
|
@ -465,7 +722,6 @@ ja:
|
||||||
shop_tooltip: OpenStreetMap ブランドの店舗
|
shop_tooltip: OpenStreetMap ブランドの店舗
|
||||||
sign_up: 登録
|
sign_up: 登録
|
||||||
sign_up_tooltip: 編集できるアカウントを作成する
|
sign_up_tooltip: 編集できるアカウントを作成する
|
||||||
sotm: 2009 OpenStreetMapカンファレンスへ行こう! The State of the Map,アムステルダムにて7月10-12日開催!
|
|
||||||
tag_line: 自由なウィキ世界地図
|
tag_line: 自由なウィキ世界地図
|
||||||
user_diaries: ユーザの日記
|
user_diaries: ユーザの日記
|
||||||
user_diaries_tooltip: ユーザの日記を見る
|
user_diaries_tooltip: ユーザの日記を見る
|
||||||
|
@ -476,9 +732,11 @@ ja:
|
||||||
license_page:
|
license_page:
|
||||||
foreign:
|
foreign:
|
||||||
english_link: 英語の原文
|
english_link: 英語の原文
|
||||||
|
text: 翻訳したページと、{{english_original_link}} の間で競合が発生しました。英語版の内容が優先されるでしょう。
|
||||||
title: この翻訳について
|
title: この翻訳について
|
||||||
native:
|
native:
|
||||||
mapping_link: マッピングを始める
|
mapping_link: マッピングを始める
|
||||||
|
text: あなたは英語版の著作権情報のページを閲覧しています。{{native_link}} から戻る事ができます。または {{mapping_link}} からマッピングに戻れます。
|
||||||
title: このページについて
|
title: このページについて
|
||||||
message:
|
message:
|
||||||
delete:
|
delete:
|
||||||
|
@ -503,15 +761,20 @@ ja:
|
||||||
new:
|
new:
|
||||||
back_to_inbox: 受信箱に戻る
|
back_to_inbox: 受信箱に戻る
|
||||||
body: 本文
|
body: 本文
|
||||||
|
limit_exceeded: 短い間隔で大量のメッセージを送っていますね。次を送る前にしばらくお待ちください。
|
||||||
message_sent: 送信したメッセージ
|
message_sent: 送信したメッセージ
|
||||||
send_button: 送信
|
send_button: 送信
|
||||||
send_message_to: "{{name}}に新しいメッセージを送信"
|
send_message_to: "{{name}}に新しいメッセージを送信"
|
||||||
subject: タイトル
|
subject: タイトル
|
||||||
title: メッセージの送信
|
title: メッセージの送信
|
||||||
|
no_such_message:
|
||||||
|
body: 申し訳ありません。そのIDのメッセージは存在しないようです。
|
||||||
|
heading: そのようなメッセージはありません
|
||||||
|
title: そのようなメッセージはありません
|
||||||
no_such_user:
|
no_such_user:
|
||||||
body: そのような名前かIDのついたユーザーやメッセージがありません。
|
body: そのような名前のユーザーは存在しません
|
||||||
heading: そのようなユーザーまたはメッセージは存在しません。
|
heading: そのようなユーザーは存在しません
|
||||||
title: そのようなユーザーまたはメッセージは存在しません。
|
title: そのようなユーザは存在しません
|
||||||
outbox:
|
outbox:
|
||||||
date: 日付
|
date: 日付
|
||||||
inbox: 受信箱
|
inbox: 受信箱
|
||||||
|
@ -591,29 +854,58 @@ ja:
|
||||||
oauthorize:
|
oauthorize:
|
||||||
allow_read_gpx: あなたの非公開GPSトレースを読み込む。
|
allow_read_gpx: あなたの非公開GPSトレースを読み込む。
|
||||||
allow_read_prefs: あなたの利用者設定を読み込む。
|
allow_read_prefs: あなたの利用者設定を読み込む。
|
||||||
|
allow_to: "クライアントアプリケーションに以下の操作を許可する:"
|
||||||
allow_write_api: 地図を修正する。
|
allow_write_api: 地図を修正する。
|
||||||
allow_write_gpx: GPSトレースをアップロードする。
|
allow_write_gpx: GPSトレースをアップロードする。
|
||||||
allow_write_prefs: あなたの利用者設定を変更する。
|
allow_write_prefs: あなたの利用者設定を変更する。
|
||||||
|
request_access: アプリケーション {{app_name}} たあなたのアカウントへの接続許可を求めています。そのアプリケーションに許可してもよいかどうかを確認してください。複数のアプリケーションに許可を与える事もできます。
|
||||||
|
revoke:
|
||||||
|
flash: "{{application}} へのトークンを無効にしました。"
|
||||||
oauth_clients:
|
oauth_clients:
|
||||||
|
create:
|
||||||
|
flash: 正常に登録完了しました。
|
||||||
|
destroy:
|
||||||
|
flash: 破棄されたクライアントアプリケーションの登録
|
||||||
edit:
|
edit:
|
||||||
submit: 編集
|
submit: 編集
|
||||||
|
title: アプリケーションの編集
|
||||||
form:
|
form:
|
||||||
|
allow_read_gpx: 非公開GPSトレースを読み込む。
|
||||||
allow_read_prefs: 利用者設定を読み込む。
|
allow_read_prefs: 利用者設定を読み込む。
|
||||||
allow_write_api: 地図を修正する。
|
allow_write_api: 地図を修正する。
|
||||||
allow_write_gpx: GPSトレースをアップロードする。
|
allow_write_gpx: GPSトレースをアップロードする。
|
||||||
|
allow_write_prefs: ユーザー設定を変更する。
|
||||||
|
callback_url: コールバックURL
|
||||||
name: 名前
|
name: 名前
|
||||||
|
requests: "ユーザからのアクセス許可要求:"
|
||||||
|
required: 必須
|
||||||
|
support_url: サポートURL
|
||||||
|
url: メインアプリケーションのURL
|
||||||
index:
|
index:
|
||||||
application: アプリケーション
|
application: アプリケーション
|
||||||
|
issued_at: 発行
|
||||||
|
my_apps: クライアントアプリケーション
|
||||||
my_tokens: 認証を許可したアプリケーション
|
my_tokens: 認証を許可したアプリケーション
|
||||||
|
register_new: アプリケーションの登録
|
||||||
|
revoke: 取消し
|
||||||
|
title: OAuthの詳細
|
||||||
new:
|
new:
|
||||||
submit: 登録
|
submit: 登録
|
||||||
|
title: 新しいアプリケーションを登録
|
||||||
show:
|
show:
|
||||||
|
access_url: "アクセストークンURL:"
|
||||||
allow_read_gpx: 非公開GPSトレースを読み込む。
|
allow_read_gpx: 非公開GPSトレースを読み込む。
|
||||||
allow_read_prefs: 利用者設定を読み込む。
|
allow_read_prefs: 利用者設定を読み込む。
|
||||||
allow_write_api: 地図を修正する。
|
allow_write_api: 地図を修正する。
|
||||||
allow_write_gpx: GPS トレースをアップロードする。
|
allow_write_gpx: GPS トレースをアップロードする。
|
||||||
allow_write_prefs: 利用者設定を変更する。
|
allow_write_prefs: 利用者設定を変更する。
|
||||||
|
authorize_url: "承認URL:"
|
||||||
edit: 詳細の編集
|
edit: 詳細の編集
|
||||||
|
key: "コンシューマーキー:"
|
||||||
|
title: "{{app_name}} の OAuth 詳細"
|
||||||
|
url: "リクエストトークンURL:"
|
||||||
|
update:
|
||||||
|
flash: クライアント情報の更新が正常に終了しました
|
||||||
site:
|
site:
|
||||||
edit:
|
edit:
|
||||||
flash_player_required: OpenStreetMap エディタの Potlatch を使うには、Flash Player が必要です。Flash Player は<a href="http://www.adobe.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash">Adobe.com</a>からダウンロードできます。OpenStreetMapを編集する<a href="http://wiki.openstreetmap.org/wiki/Ja:Editing">他の方法</a>もあります。
|
flash_player_required: OpenStreetMap エディタの Potlatch を使うには、Flash Player が必要です。Flash Player は<a href="http://www.adobe.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash">Adobe.com</a>からダウンロードできます。OpenStreetMapを編集する<a href="http://wiki.openstreetmap.org/wiki/Ja:Editing">他の方法</a>もあります。
|
||||||
|
@ -636,6 +928,7 @@ ja:
|
||||||
table:
|
table:
|
||||||
entry:
|
entry:
|
||||||
admin: 行政境界
|
admin: 行政境界
|
||||||
|
allotments: 家庭菜園
|
||||||
apron:
|
apron:
|
||||||
- 空港ビル
|
- 空港ビル
|
||||||
- 空港ターミナル
|
- 空港ターミナル
|
||||||
|
@ -646,8 +939,11 @@ ja:
|
||||||
cable:
|
cable:
|
||||||
- ケーブル・カー
|
- ケーブル・カー
|
||||||
- リフト
|
- リフト
|
||||||
|
cemetery: 墓地
|
||||||
centre: スポーツセンター
|
centre: スポーツセンター
|
||||||
commercial: 商業地域
|
commercial: 商業地域
|
||||||
|
common:
|
||||||
|
1: 牧草地
|
||||||
construction: 建設中の道路
|
construction: 建設中の道路
|
||||||
cycleway: 自転車道
|
cycleway: 自転車道
|
||||||
destination: 目的通行
|
destination: 目的通行
|
||||||
|
@ -739,6 +1035,7 @@ ja:
|
||||||
heading: "{{user}} というユーザは存在しません。"
|
heading: "{{user}} というユーザは存在しません。"
|
||||||
title: そのようなユーザは存在しません
|
title: そのようなユーザは存在しません
|
||||||
offline:
|
offline:
|
||||||
|
heading: GPXのストレージが利用できません
|
||||||
message: GPXファイルのストレージとアップロードシステムは現在使用できません。
|
message: GPXファイルのストレージとアップロードシステムは現在使用できません。
|
||||||
offline_warning:
|
offline_warning:
|
||||||
message: GPXファイルアップロードシステムは現在利用できません
|
message: GPXファイルアップロードシステムは現在利用できません
|
||||||
|
@ -775,6 +1072,7 @@ ja:
|
||||||
trace_paging_nav:
|
trace_paging_nav:
|
||||||
next: 次へ »
|
next: 次へ »
|
||||||
previous: "« 前へ"
|
previous: "« 前へ"
|
||||||
|
showing_page: " {{page}} ページ"
|
||||||
view:
|
view:
|
||||||
delete_track: このトラックの削除
|
delete_track: このトラックの削除
|
||||||
description: "詳細:"
|
description: "詳細:"
|
||||||
|
@ -802,15 +1100,18 @@ ja:
|
||||||
user:
|
user:
|
||||||
account:
|
account:
|
||||||
current email address: 現在の電子メールアドレス:
|
current email address: 現在の電子メールアドレス:
|
||||||
|
delete image: 現在の画像を削除
|
||||||
email never displayed publicly: (公開しません)
|
email never displayed publicly: (公開しません)
|
||||||
flash update success: ユーザ情報の更新に成功しました。
|
flash update success: ユーザ情報の更新に成功しました。
|
||||||
flash update success confirm needed: ユーザ情報の更新に成功しました。登録したメールアドレスのメールを受信して、メールアドレスの確認を行ってください。
|
flash update success confirm needed: ユーザ情報の更新に成功しました。登録したメールアドレスのメールを受信して、メールアドレスの確認を行ってください。
|
||||||
home location: "活動地域:"
|
home location: "活動地域:"
|
||||||
image: "画像:"
|
image: "画像:"
|
||||||
|
keep image: 現在のイメージを保持
|
||||||
latitude: "緯度:"
|
latitude: "緯度:"
|
||||||
longitude: "経度:"
|
longitude: "経度:"
|
||||||
make edits public button: 私の編集を全て公開する
|
make edits public button: 私の編集を全て公開する
|
||||||
my settings: 私の設定
|
my settings: 私の設定
|
||||||
|
new email address: 新しい電子メールアドレス
|
||||||
new image: 画像を追加
|
new image: 画像を追加
|
||||||
no home location: あなたはまだ活動地域を登録していません。
|
no home location: あなたはまだ活動地域を登録していません。
|
||||||
preferred languages: "言語設定:"
|
preferred languages: "言語設定:"
|
||||||
|
@ -846,6 +1147,9 @@ ja:
|
||||||
flash success: あなたの全ての編集は公開されます。今から編集できます。
|
flash success: あなたの全ての編集は公開されます。今から編集できます。
|
||||||
list:
|
list:
|
||||||
confirm: 選択したユーザを確認
|
confirm: 選択したユーザを確認
|
||||||
|
empty: 条件に一致するユーザーが見つかりません
|
||||||
|
hide: 選択したユーザーを隠す
|
||||||
|
title: ユーザー
|
||||||
login:
|
login:
|
||||||
account not active: 申し訳ありません。あなたのアカウントはまだ有効ではありません。<br />アカウント確認メールに記載されている、アカウントを有効にするリンクをクリックしてください。
|
account not active: 申し訳ありません。あなたのアカウントはまだ有効ではありません。<br />アカウント確認メールに記載されている、アカウントを有効にするリンクをクリックしてください。
|
||||||
auth failure: 申し訳ありません、以下の理由によりログインできません。
|
auth failure: 申し訳ありません、以下の理由によりログインできません。
|
||||||
|
@ -858,6 +1162,11 @@ ja:
|
||||||
please login: ログインするか、{{create_user_link}}.
|
please login: ログインするか、{{create_user_link}}.
|
||||||
remember: パスワードを記憶する。
|
remember: パスワードを記憶する。
|
||||||
title: ログイン
|
title: ログイン
|
||||||
|
webmaster: ウェブマスター
|
||||||
|
logout:
|
||||||
|
heading: OpenStreetMapからログアウトする
|
||||||
|
logout_button: ログアウト
|
||||||
|
title: ログアウト
|
||||||
lost_password:
|
lost_password:
|
||||||
email address: "電子メールアドレス:"
|
email address: "電子メールアドレス:"
|
||||||
heading: パスワードを忘れましたか?
|
heading: パスワードを忘れましたか?
|
||||||
|
@ -876,6 +1185,7 @@ ja:
|
||||||
contact_webmaster: アカウントを作成できるよう、<a href="mailto:webmaster@openstreetmap.org">webmaster</a>に連絡してください。 できるだけ早期に、あなたの希望に対応するように努めます。
|
contact_webmaster: アカウントを作成できるよう、<a href="mailto:webmaster@openstreetmap.org">webmaster</a>に連絡してください。 できるだけ早期に、あなたの希望に対応するように努めます。
|
||||||
continue: 続行
|
continue: 続行
|
||||||
display name: "表示名:"
|
display name: "表示名:"
|
||||||
|
display name description: あなたのユーザー名は投稿者として公開されます。これは設定から変更できます。
|
||||||
email address: "Eメールアドレス:"
|
email address: "Eメールアドレス:"
|
||||||
fill_form: 以下のフォームを埋めてください。登録すると、あなたのアカウントを有効化するためにあなたにメールをお送りします。
|
fill_form: 以下のフォームを埋めてください。登録すると、あなたのアカウントを有効化するためにあなたにメールをお送りします。
|
||||||
flash create success message: ユーザ作成に成功しました。すぐに編集を開始するために電子メールを確認してアカウントを有効にしてください。<br /><br />あなたの指定したアドレスに確認メールが届くまであなたはログインすることはできません。<br /><br />メールボックスでスパムフィルタを使っているときには webmaster@openstreetmap.org からの確認メールを受信できるようホワイトリストを設定してください。
|
flash create success message: ユーザ作成に成功しました。すぐに編集を開始するために電子メールを確認してアカウントを有効にしてください。<br /><br />あなたの指定したアドレスに確認メールが届くまであなたはログインすることはできません。<br /><br />メールボックスでスパムフィルタを使っているときには webmaster@openstreetmap.org からの確認メールを受信できるようホワイトリストを設定してください。
|
||||||
|
@ -890,6 +1200,7 @@ ja:
|
||||||
heading: "{{user}} というユーザは存在しません。"
|
heading: "{{user}} というユーザは存在しません。"
|
||||||
title: ユーザが存在しません
|
title: ユーザが存在しません
|
||||||
popup:
|
popup:
|
||||||
|
friend: 友達
|
||||||
nearby mapper: 周辺のマッパー
|
nearby mapper: 周辺のマッパー
|
||||||
your location: あなたの位置
|
your location: あなたの位置
|
||||||
remove_friend:
|
remove_friend:
|
||||||
|
@ -910,17 +1221,22 @@ ja:
|
||||||
title: アカウント保留
|
title: アカウント保留
|
||||||
terms:
|
terms:
|
||||||
agree: 同意する
|
agree: 同意する
|
||||||
|
consider_pd: 私は私の投稿をパブリックドメインとします(著作権、著作隣接権を放棄し、著作人格権の行使を行いません)
|
||||||
consider_pd_why: これは何ですか?
|
consider_pd_why: これは何ですか?
|
||||||
legale_names:
|
legale_names:
|
||||||
france: フランス
|
france: フランス
|
||||||
italy: イタリア
|
italy: イタリア
|
||||||
rest_of_world: それ以外の国
|
rest_of_world: それ以外の国
|
||||||
|
legale_select: "お住まいの国もしくは地域を選択してください:"
|
||||||
|
press accept button: アカウントを作成するにあたり、以下の契約をよく読んで同意される場合にはボタンを押してください。
|
||||||
view:
|
view:
|
||||||
activate_user: このユーザーを有効にする
|
activate_user: このユーザーを有効にする
|
||||||
add as friend: 友達に追加
|
add as friend: 友達に追加
|
||||||
ago: ({{time_in_words_ago}} 前)
|
ago: ({{time_in_words_ago}} 前)
|
||||||
confirm: 確認する
|
confirm: 確認する
|
||||||
|
confirm_user: このユーザーを確認する
|
||||||
create_block: このユーザーをブロック
|
create_block: このユーザーをブロック
|
||||||
|
created from: "作成日:"
|
||||||
deactivate_user: このユーザーを無効にする
|
deactivate_user: このユーザーを無効にする
|
||||||
delete_user: このユーザーを消す
|
delete_user: このユーザーを消す
|
||||||
description: 詳細
|
description: 詳細
|
||||||
|
@ -936,10 +1252,11 @@ ja:
|
||||||
my edits: 私の編集
|
my edits: 私の編集
|
||||||
my settings: ユーザ情報の設定
|
my settings: ユーザ情報の設定
|
||||||
my traces: 私のトレース
|
my traces: 私のトレース
|
||||||
nearby users: "周辺のユーザ:"
|
nearby users: その他の近くのユーザ
|
||||||
new diary entry: 新しい日記エントリ
|
new diary entry: 新しい日記エントリ
|
||||||
no friends: あなたは誰も友達として登録していません。
|
no friends: あなたは誰も友達として登録していません。
|
||||||
no nearby users: あなたの活動地域周辺にマッパーはいないようです。
|
no nearby users: あなたの活動地域周辺に他のマッパーはいないようです。
|
||||||
|
oauth settings: OAuth設定
|
||||||
remove as friend: 友達から削除
|
remove as friend: 友達から削除
|
||||||
role:
|
role:
|
||||||
administrator: このユーザーは管理者です。
|
administrator: このユーザーは管理者です。
|
||||||
|
@ -949,26 +1266,88 @@ ja:
|
||||||
moderator: このユーザーはモデレータです
|
moderator: このユーザーはモデレータです
|
||||||
revoke:
|
revoke:
|
||||||
administrator: 管理者権限を剥奪する
|
administrator: 管理者権限を剥奪する
|
||||||
|
moderator: モデレート権限を剥奪する
|
||||||
send message: メッセージ送信
|
send message: メッセージ送信
|
||||||
settings_link_text: 設定
|
settings_link_text: 設定
|
||||||
|
spam score: スパム評価:
|
||||||
status: "ステータス:"
|
status: "ステータス:"
|
||||||
traces: トレース
|
traces: トレース
|
||||||
unhide_user: このユーザー再表示
|
unhide_user: このユーザー再表示
|
||||||
user location: ユーザの位置
|
user location: ユーザの位置
|
||||||
your friends: あなたの友達
|
your friends: あなたの友達
|
||||||
user_block:
|
user_block:
|
||||||
|
blocks_by:
|
||||||
|
empty: "{{name}} は一度もブロックしていません。"
|
||||||
|
heading: "{{name}} によるブロックのリスト"
|
||||||
|
title: "{{name}} が行ったブロック"
|
||||||
|
blocks_on:
|
||||||
|
empty: "{{name}} は一度もブロックされていません。"
|
||||||
|
heading: "{{name}} のブロックのリスト"
|
||||||
|
title: "{{name}} がされたブロック"
|
||||||
|
create:
|
||||||
|
flash: ユーザー {{name}} をブロックしました。
|
||||||
|
edit:
|
||||||
|
heading: "{{name}} のブロックを編集"
|
||||||
|
show: このブロックを閲覧
|
||||||
|
title: "{{name}} のブロックを編集"
|
||||||
|
filter:
|
||||||
|
block_expired: このブロック期間は既に終了しており、変更できません。
|
||||||
|
block_period: ブロック期間はドロップダウンリストから一つ選択してください。
|
||||||
|
not_a_moderator: その動作にはモデレータ権限が必要です。
|
||||||
|
helper:
|
||||||
|
time_past: "{{time}} 前に終了しました。"
|
||||||
|
index:
|
||||||
|
empty: ブロックはまだ行われていません。
|
||||||
|
heading: ユーザーブロックのリスト
|
||||||
|
title: ユーザーブロック
|
||||||
|
model:
|
||||||
|
non_moderator_revoke: ブロックを解除するにはモデレータ権限が必要です。
|
||||||
|
non_moderator_update: ブロックを編集するにはモデレータ権限が必要です。
|
||||||
|
new:
|
||||||
|
back: 全てのブロックを表示
|
||||||
|
heading: "{{name}} をブロック"
|
||||||
|
needs_view: ブロックを解除するにはログインし直す必要があります。
|
||||||
|
submit: ブロックする
|
||||||
|
title: "{{name}} をブロック"
|
||||||
|
tried_contacting: ユーザーにそれをやめるよう尋ねました。
|
||||||
|
not_found:
|
||||||
|
back: 索引に戻る
|
||||||
|
sorry: 申し訳ありません。ユーザーID{{id}} のブロックは見つかりませんでした。
|
||||||
partial:
|
partial:
|
||||||
confirm: 確かですか?
|
confirm: 確かですか?
|
||||||
creator_name: 製作者
|
creator_name: 製作者
|
||||||
display_name: ブロックされたユーザー
|
display_name: ブロックされたユーザー
|
||||||
edit: 編集
|
edit: 編集
|
||||||
reason: ブロックされた理由
|
reason: ブロックされた理由
|
||||||
|
revoke: 取消し
|
||||||
show: 見せる
|
show: 見せる
|
||||||
status: 状態
|
status: 状態
|
||||||
period: "{{count}} 時間"
|
period: "{{count}} 時間"
|
||||||
|
revoke:
|
||||||
|
confirm: このブロックを取り消してよろしいですか?
|
||||||
|
flash: このブロックは取り消されました。
|
||||||
|
heading: ブロックは {{block_on}} に {{block_by}} によって取り消されました。
|
||||||
|
past: このブロックは {{time}} 前に終了しました。今取り消す事はできません。
|
||||||
|
revoke: 取消し
|
||||||
|
time_future: このブロックは {{time}} に終了します。
|
||||||
|
title: "{{block_on}} のブロックを取消し"
|
||||||
show:
|
show:
|
||||||
|
back: すべてのブロックを表示
|
||||||
confirm: 確かですか?
|
confirm: 確かですか?
|
||||||
edit: 編集
|
edit: 編集
|
||||||
|
heading: "{{block_on}} {{block_by}} によってブロックされました"
|
||||||
|
needs_view: ブロックを解除する前に、ログインし直す必要があります。
|
||||||
|
reason: "ブロックの理由:"
|
||||||
|
revoke: 取消し
|
||||||
|
revoker: "取消:"
|
||||||
|
show: 表示
|
||||||
|
status: ステータス
|
||||||
|
time_future: "{{time}} に満了"
|
||||||
|
time_past: "{{time}} 前に終了しました"
|
||||||
|
title: "{{block_on}} {{block_by}} によってブロックされました"
|
||||||
|
update:
|
||||||
|
only_creator_can_edit: このブロックを編集するにはモデレータ権限が必要です。
|
||||||
|
success: ブロックを更新しました。
|
||||||
user_role:
|
user_role:
|
||||||
grant:
|
grant:
|
||||||
confirm: 確認
|
confirm: 確認
|
||||||
|
|
|
@ -915,7 +915,7 @@ mk:
|
||||||
shop_tooltip: Купете OpenStreetMap производи
|
shop_tooltip: Купете OpenStreetMap производи
|
||||||
sign_up: регистрација
|
sign_up: регистрација
|
||||||
sign_up_tooltip: Создај сметка за уредување
|
sign_up_tooltip: Создај сметка за уредување
|
||||||
sotm: Дојдете на конференцијата на OpenStreetMap за 2009 наречена „The State of the Map“ од 10-12 јули во Амстердам!
|
sotm2010: Дојдете на конференцијата на OpenStreetMap за 2010 наречена „The State of the Map“ од 9-11 јули во Жирона!
|
||||||
tag_line: Слободна вики-карта на светот
|
tag_line: Слободна вики-карта на светот
|
||||||
user_diaries: Кориснички дневници
|
user_diaries: Кориснички дневници
|
||||||
user_diaries_tooltip: Види кориснички дневници
|
user_diaries_tooltip: Види кориснички дневници
|
||||||
|
@ -1423,7 +1423,7 @@ mk:
|
||||||
please login: Најавете се или {{create_user_link}}.
|
please login: Најавете се или {{create_user_link}}.
|
||||||
remember: "Запомни ме:"
|
remember: "Запомни ме:"
|
||||||
title: Најавување
|
title: Најавување
|
||||||
webmaster: веб-управник
|
webmaster: мреж. управник
|
||||||
logout:
|
logout:
|
||||||
heading: Одјавување од OpenStreetMap
|
heading: Одјавување од OpenStreetMap
|
||||||
logout_button: Одјава
|
logout_button: Одјава
|
||||||
|
@ -1443,7 +1443,7 @@ mk:
|
||||||
new:
|
new:
|
||||||
confirm email address: "Потврдете ја е-поштата:"
|
confirm email address: "Потврдете ја е-поштата:"
|
||||||
confirm password: "Потврдете ја лозинката:"
|
confirm password: "Потврдете ја лозинката:"
|
||||||
contact_webmaster: Контактирајте го <a href="mailto:webmaster@openstreetmap.org">веб-мајсторот</a> за да побарате создавање на сметка - ќе се потрудиме да ве услужиме во најкраток можен рок.
|
contact_webmaster: Контактирајте го <a href="mailto:webmaster@openstreetmap.org">управникот</a> за да побарате создавање на сметка - ќе се потрудиме да ве услужиме во најкраток можен рок.
|
||||||
continue: Продолжи
|
continue: Продолжи
|
||||||
display name: "Име за прикажување:"
|
display name: "Име за прикажување:"
|
||||||
display name description: Вашето јавно прикажано име. Можете да го смените подоцна во прилагодувањата.
|
display name description: Вашето јавно прикажано име. Можете да го смените подоцна во прилагодувањата.
|
||||||
|
@ -1481,10 +1481,10 @@ mk:
|
||||||
body: "<p>\n Нажалост, вашата сметка беше автоматски закочена поради\n сомнителни активности.\n</p>\n<p>\n Донесената одлуката набргу ќе ја прегледа администратор, но\n можете да се обратите кај {{webmaster}} ако сакате да продискутирате за овој проблем.\n</p>"
|
body: "<p>\n Нажалост, вашата сметка беше автоматски закочена поради\n сомнителни активности.\n</p>\n<p>\n Донесената одлуката набргу ќе ја прегледа администратор, но\n можете да се обратите кај {{webmaster}} ако сакате да продискутирате за овој проблем.\n</p>"
|
||||||
heading: Сметката е закочена
|
heading: Сметката е закочена
|
||||||
title: Сметката е закочена
|
title: Сметката е закочена
|
||||||
webmaster: веб-управник
|
webmaster: мреж. управник
|
||||||
terms:
|
terms:
|
||||||
agree: Се согласувам
|
agree: Се согласувам
|
||||||
consider_pd: Сметам дека мојот придонес е јавнодоменски
|
consider_pd: Покрај горенаведената согласност, сметам дека мојот придонес е јавнодоменски
|
||||||
consider_pd_why: Што е ова?
|
consider_pd_why: Што е ова?
|
||||||
decline: Одбиј
|
decline: Одбиј
|
||||||
heading: Услови за учесници
|
heading: Услови за учесници
|
||||||
|
@ -1586,7 +1586,7 @@ mk:
|
||||||
heading: Правење на блок за {{name}}
|
heading: Правење на блок за {{name}}
|
||||||
needs_view: Корисникот треба да се најави пред да се исчисти овој блок.
|
needs_view: Корисникот треба да се најави пред да се исчисти овој блок.
|
||||||
period: Колку да трае блокот за овој корисник?
|
period: Колку да трае блокот за овој корисник?
|
||||||
reason: Причината зошто корисникот {{name}} е блокиран. Бидете што посмирени и поразумни, наведете што повеќе подробности за ситуацијата, имајќи на ум дека пораката ќе биде јавно видлива. Имајте во предвид и дека не сите корисници го разбираат жаргонот на заедницата, па затоа обидете се да користите лаички поими.
|
reason: Причината зошто корисникот {{name}} е блокиран. Бидете што посмирени и поразумни, наведете што повеќе подробности за ситуацијата, имајќи на ум дека пораката ќе биде јавно видлива. Имајте предвид и дека не сите корисници го разбираат жаргонот на заедницата, па затоа обидете се да користите лаички поими.
|
||||||
submit: Направи блок
|
submit: Направи блок
|
||||||
title: Правење на блок за {{name}}
|
title: Правење на блок за {{name}}
|
||||||
tried_contacting: Го контактирав корисникот и побарав да престане.
|
tried_contacting: Го контактирав корисникот и побарав да престане.
|
||||||
|
|
|
@ -916,7 +916,7 @@ nl:
|
||||||
shop_tooltip: Winkel met OpenStreetMap-producten
|
shop_tooltip: Winkel met OpenStreetMap-producten
|
||||||
sign_up: registreren
|
sign_up: registreren
|
||||||
sign_up_tooltip: Gebruiker voor bewerken aanmaken
|
sign_up_tooltip: Gebruiker voor bewerken aanmaken
|
||||||
sotm: Kom naar de OpenStreetMap-conferentie, de State of the Map, op 10-12 juli 2009 in Amsterdam!
|
sotm2010: Kom naar de OpenStreetMap Conferentie 2010, De staat van de kaart, van 9 tot 11 juli in Gerona!
|
||||||
tag_line: De vrije wikiwereldkaart
|
tag_line: De vrije wikiwereldkaart
|
||||||
user_diaries: Gebruikersdagboeken
|
user_diaries: Gebruikersdagboeken
|
||||||
user_diaries_tooltip: Gebruikersdagboeken bekijken
|
user_diaries_tooltip: Gebruikersdagboeken bekijken
|
||||||
|
@ -1382,14 +1382,14 @@ nl:
|
||||||
text: Op dit moment zijn uw bewerkingen anoniem en kunnen andere gebruikers u geen berichten sturen of uw locatie zien. Om uw bewerkingen weer te kunnen geven en andere gebruikers in staat te stellen in contact met u te komen, kunt u op de onderstaande knop klikken. <b>Sinds de overgang naar versie 0.6 van de API kunnen alleen publieke gebruikers de kaartgegevens bewerken</b> (<a href="http://wiki.openstreetmap.org/wiki/Anonymous_edits">meer informatie</a>).<ul><li>Uw e-mailadres wordt niet publiek gemaakt door uw bewerkingen publiek te maken.</li><li>Deze handeling kan niet ongedaan gemaakt worden en alle nieuwe gebrukers zijn nu standaard publiek.</li></ul>
|
text: Op dit moment zijn uw bewerkingen anoniem en kunnen andere gebruikers u geen berichten sturen of uw locatie zien. Om uw bewerkingen weer te kunnen geven en andere gebruikers in staat te stellen in contact met u te komen, kunt u op de onderstaande knop klikken. <b>Sinds de overgang naar versie 0.6 van de API kunnen alleen publieke gebruikers de kaartgegevens bewerken</b> (<a href="http://wiki.openstreetmap.org/wiki/Anonymous_edits">meer informatie</a>).<ul><li>Uw e-mailadres wordt niet publiek gemaakt door uw bewerkingen publiek te maken.</li><li>Deze handeling kan niet ongedaan gemaakt worden en alle nieuwe gebrukers zijn nu standaard publiek.</li></ul>
|
||||||
replace image: Huidige afbeelding vervangen
|
replace image: Huidige afbeelding vervangen
|
||||||
return to profile: Terug naar profiel
|
return to profile: Terug naar profiel
|
||||||
save changes button: Wijzgingen opslaan
|
save changes button: Wijzigingen opslaan
|
||||||
title: Gebruiker bewerken
|
title: Gebruiker bewerken
|
||||||
update home location on click: Thuislocatie aanpassen bij klikken op de kaart
|
update home location on click: Thuislocatie aanpassen bij klikken op de kaart
|
||||||
confirm:
|
confirm:
|
||||||
button: Bevestigen
|
button: Bevestigen
|
||||||
failure: Er bestaat al een gebruiker met deze naam.
|
failure: Er bestaat al een gebruiker met deze naam.
|
||||||
heading: Gebruikers bevestigen
|
heading: Gebruikers bevestigen
|
||||||
press confirm button: Klik op de "Bevestigen"-knop hieronder om uw gebruiker te activeren.
|
press confirm button: Klik op de knop "Bevestigen" hieronder om uw gebruiker te activeren.
|
||||||
success: De gebruiker is geactiveerd. Dank u wel voor het registreren!
|
success: De gebruiker is geactiveerd. Dank u wel voor het registreren!
|
||||||
confirm_email:
|
confirm_email:
|
||||||
button: Bevestigen
|
button: Bevestigen
|
||||||
|
@ -1486,7 +1486,7 @@ nl:
|
||||||
webmaster: webmaster
|
webmaster: webmaster
|
||||||
terms:
|
terms:
|
||||||
agree: Aanvaarden
|
agree: Aanvaarden
|
||||||
consider_pd: Mijn bijdragen bevinden zich in het publieke domein
|
consider_pd: Met inachtneming van de bovenstaande overeenkomst, bevinden mijn bijdragen zich in het publieke domein
|
||||||
consider_pd_why: wat is dit?
|
consider_pd_why: wat is dit?
|
||||||
decline: Weigeren
|
decline: Weigeren
|
||||||
heading: Voorwaarden voor bijdragen
|
heading: Voorwaarden voor bijdragen
|
||||||
|
|
|
@ -828,7 +828,6 @@
|
||||||
shop: Butikk
|
shop: Butikk
|
||||||
sign_up: registrer
|
sign_up: registrer
|
||||||
sign_up_tooltip: Opprett en konto for redigering
|
sign_up_tooltip: Opprett en konto for redigering
|
||||||
sotm: Kom til 2009 OpenStreetMap konferansen, The State of the Map, juli 10-12 i Amsterdam!
|
|
||||||
tag_line: Fritt Wiki-verdenskart
|
tag_line: Fritt Wiki-verdenskart
|
||||||
user_diaries: Brukerdagbok
|
user_diaries: Brukerdagbok
|
||||||
user_diaries_tooltip: Vis brukerens dagbok
|
user_diaries_tooltip: Vis brukerens dagbok
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
# Exported from translatewiki.net
|
# Exported from translatewiki.net
|
||||||
# Export driver: syck
|
# Export driver: syck
|
||||||
# Author: BdgwksxD
|
# Author: BdgwksxD
|
||||||
|
# Author: Deejay1
|
||||||
# Author: Soeb
|
# Author: Soeb
|
||||||
# Author: Sp5uhe
|
# Author: Sp5uhe
|
||||||
# Author: Wpedzich
|
# Author: Wpedzich
|
||||||
|
@ -126,11 +127,17 @@ pl:
|
||||||
node: Zobacz punkt na większej mapie
|
node: Zobacz punkt na większej mapie
|
||||||
relation: Zobacz relację na większej mapie
|
relation: Zobacz relację na większej mapie
|
||||||
way: Pokaż drogę na większej mapie
|
way: Pokaż drogę na większej mapie
|
||||||
loading: Wczytywanie...
|
loading: Wczytywanie…
|
||||||
navigation:
|
navigation:
|
||||||
all:
|
all:
|
||||||
next_changeset_tooltip: Następny zestaw zmian
|
next_changeset_tooltip: Następny zestaw zmian
|
||||||
|
next_node_tooltip: Następny węzeł
|
||||||
|
next_relation_tooltip: Poprzednia relacja
|
||||||
|
next_way_tooltip: Następna droga
|
||||||
prev_changeset_tooltip: Poprzedni zestaw zmian
|
prev_changeset_tooltip: Poprzedni zestaw zmian
|
||||||
|
prev_node_tooltip: Poprzedni węzeł
|
||||||
|
prev_relation_tooltip: Poprzednia relacja
|
||||||
|
prev_way_tooltip: Poprzednia droga
|
||||||
user:
|
user:
|
||||||
name_changeset_tooltip: Zobacz edycje wykonane przez użytkownika {{user}}
|
name_changeset_tooltip: Zobacz edycje wykonane przez użytkownika {{user}}
|
||||||
next_changeset_tooltip: Następna edycja wykonana przez użytkownika {{user}}
|
next_changeset_tooltip: Następna edycja wykonana przez użytkownika {{user}}
|
||||||
|
@ -194,7 +201,7 @@ pl:
|
||||||
history_for_feature: Historia zmian dla [[feature]]
|
history_for_feature: Historia zmian dla [[feature]]
|
||||||
load_data: Załaduj dane
|
load_data: Załaduj dane
|
||||||
loaded_an_area_with_num_features: Załadowano obszar zawierający [[num_features]] obiektów. Przeglądarki mogą nie radzić sobie z wyświetleniem tej ilości danych -- generalnie działają optymalnie przy wyświetlaniu mniej niż 100 obiektów jednocześnie, w przeciwnym wypadku przeglądarka może działac powoli lub przestać odpowiadać. Jeśli jesteś pewien że chcesz wyświetlić dane, kliknij przycisk poniżej.
|
loaded_an_area_with_num_features: Załadowano obszar zawierający [[num_features]] obiektów. Przeglądarki mogą nie radzić sobie z wyświetleniem tej ilości danych -- generalnie działają optymalnie przy wyświetlaniu mniej niż 100 obiektów jednocześnie, w przeciwnym wypadku przeglądarka może działac powoli lub przestać odpowiadać. Jeśli jesteś pewien że chcesz wyświetlić dane, kliknij przycisk poniżej.
|
||||||
loading: Wczytywanie...
|
loading: Wczytywanie
|
||||||
manually_select: Manualnie wybierz inny obszar
|
manually_select: Manualnie wybierz inny obszar
|
||||||
object_list:
|
object_list:
|
||||||
api: Pobierz ten obszar z API
|
api: Pobierz ten obszar z API
|
||||||
|
@ -215,10 +222,13 @@ pl:
|
||||||
private_user: prywatny użytkownika
|
private_user: prywatny użytkownika
|
||||||
show_history: Pokaż zmiany
|
show_history: Pokaż zmiany
|
||||||
unable_to_load_size: "Nie można załadować: prostokąt ograniczający [[bbox_size]] jest zbyt duży (nie może przekraczać {{max_bbox_size}} stopnia)"
|
unable_to_load_size: "Nie można załadować: prostokąt ograniczający [[bbox_size]] jest zbyt duży (nie może przekraczać {{max_bbox_size}} stopnia)"
|
||||||
wait: Moment...
|
wait: Moment…
|
||||||
zoom_or_select: Przybliż albo wybierz inny obszar mapy
|
zoom_or_select: Przybliż albo wybierz inny obszar mapy
|
||||||
tag_details:
|
tag_details:
|
||||||
tags: "Znaczniki:"
|
tags: "Znaczniki:"
|
||||||
|
wiki_link:
|
||||||
|
key: Strona wiki dla etykiety {{key}}
|
||||||
|
tag: Strona wiki dla etykiety {{key}}={{value}}
|
||||||
timeout:
|
timeout:
|
||||||
sorry: Niestety, pobranie danych dla {{type}} o identyfikatorze {{id}} trwało zbyt długo.
|
sorry: Niestety, pobranie danych dla {{type}} o identyfikatorze {{id}} trwało zbyt długo.
|
||||||
type:
|
type:
|
||||||
|
@ -366,6 +376,8 @@ pl:
|
||||||
output: Wynik
|
output: Wynik
|
||||||
paste_html: Użyj podanego kodu HTML, aby umieścić na stronie
|
paste_html: Użyj podanego kodu HTML, aby umieścić na stronie
|
||||||
scale: Skala
|
scale: Skala
|
||||||
|
too_large:
|
||||||
|
heading: Obszar zbyt duży
|
||||||
zoom: Zoom
|
zoom: Zoom
|
||||||
start_rjs:
|
start_rjs:
|
||||||
add_marker: Dodaj pinezkę na mapie
|
add_marker: Dodaj pinezkę na mapie
|
||||||
|
@ -857,9 +869,12 @@ pl:
|
||||||
cycle_map: Mapa Rowerowa
|
cycle_map: Mapa Rowerowa
|
||||||
noname: BrakNazwy
|
noname: BrakNazwy
|
||||||
site:
|
site:
|
||||||
|
edit_tooltip: Edytuje mapę
|
||||||
edit_zoom_alert: Musisz przybliżyć się, by edytować mape
|
edit_zoom_alert: Musisz przybliżyć się, by edytować mape
|
||||||
|
history_tooltip: Wyświetla przeprowadzone edycje dla tego obszaru
|
||||||
history_zoom_alert: Musisz przybliżyć się, by odczytać historię edycji
|
history_zoom_alert: Musisz przybliżyć się, by odczytać historię edycji
|
||||||
layouts:
|
layouts:
|
||||||
|
copyright: Prawa autorskie i licencja
|
||||||
donate: Wspomóż Projekt OpenStreetMap {{link}} na Konto Aktualizacji Naszego Sprzętu.
|
donate: Wspomóż Projekt OpenStreetMap {{link}} na Konto Aktualizacji Naszego Sprzętu.
|
||||||
donate_link_text: dokonując darowizny
|
donate_link_text: dokonując darowizny
|
||||||
edit: Edycja
|
edit: Edycja
|
||||||
|
@ -899,7 +914,6 @@ pl:
|
||||||
shop_tooltip: Sklep z markowymi towarami OpenStreetMap
|
shop_tooltip: Sklep z markowymi towarami OpenStreetMap
|
||||||
sign_up: zarejestruj
|
sign_up: zarejestruj
|
||||||
sign_up_tooltip: Załóż konto, aby edytować
|
sign_up_tooltip: Załóż konto, aby edytować
|
||||||
sotm: Wpadnij na tegoroczną Konferencję OpenStreetMap, The State of the Map, 10-12 Lipca w Amsterdamie!
|
|
||||||
tag_line: Swobodna Wiki-Mapa Świata
|
tag_line: Swobodna Wiki-Mapa Świata
|
||||||
user_diaries: Dzienniczki
|
user_diaries: Dzienniczki
|
||||||
user_diaries_tooltip: Przeglądaj dzienniczki użytkownika
|
user_diaries_tooltip: Przeglądaj dzienniczki użytkownika
|
||||||
|
@ -907,6 +921,10 @@ pl:
|
||||||
view_tooltip: Zobacz mapę
|
view_tooltip: Zobacz mapę
|
||||||
welcome_user: Witaj, {{user_link}}
|
welcome_user: Witaj, {{user_link}}
|
||||||
welcome_user_link_tooltip: Strona użytkownika
|
welcome_user_link_tooltip: Strona użytkownika
|
||||||
|
license_page:
|
||||||
|
foreign:
|
||||||
|
english_link: oryginalna angielska wersja
|
||||||
|
title: Informacje o tłumaczeniu
|
||||||
message:
|
message:
|
||||||
delete:
|
delete:
|
||||||
deleted: Wiadomość usunięta
|
deleted: Wiadomość usunięta
|
||||||
|
@ -979,6 +997,7 @@ pl:
|
||||||
greeting: Cześć,
|
greeting: Cześć,
|
||||||
hopefully_you: Ktoś (prawdopodobnie Ty) chce zmienić adres e-mail w {{server_url}} na {{new_address}}.
|
hopefully_you: Ktoś (prawdopodobnie Ty) chce zmienić adres e-mail w {{server_url}} na {{new_address}}.
|
||||||
email_confirm_plain:
|
email_confirm_plain:
|
||||||
|
greeting: Cześć,
|
||||||
hopefully_you_1: Ktoś (prawdopodobnie Ty sam(a)) chciałby zmienić adres e-mail w serwisie
|
hopefully_you_1: Ktoś (prawdopodobnie Ty sam(a)) chciałby zmienić adres e-mail w serwisie
|
||||||
hopefully_you_2: "{{server_url}} na {{new_address}}."
|
hopefully_you_2: "{{server_url}} na {{new_address}}."
|
||||||
friend_notification:
|
friend_notification:
|
||||||
|
@ -1064,7 +1083,11 @@ pl:
|
||||||
required: Wymagane
|
required: Wymagane
|
||||||
index:
|
index:
|
||||||
application: Nazwa aplikacji
|
application: Nazwa aplikacji
|
||||||
|
my_apps: Programy klienckie
|
||||||
|
my_tokens: Zarejestrowane programy
|
||||||
|
no_apps: Czy chcesz zarejestrować programy korzystające ze standardu {{oauth}}? Programy muszą być wcześniej zarejestrowane, nim będzie można skorzystać z zapytań OAuth do tego serwisu.
|
||||||
revoke: Odwołaj!
|
revoke: Odwołaj!
|
||||||
|
title: Szczegóły autoryzacji OAuth
|
||||||
show:
|
show:
|
||||||
edit: Edytuj szczegóły
|
edit: Edytuj szczegóły
|
||||||
site:
|
site:
|
||||||
|
@ -1272,6 +1295,7 @@ pl:
|
||||||
flash update success confirm needed: Zaktualizowano profil użytkownika. Sprawdź czy przyszedł już mail potwierdzający nowy adres mailowy.
|
flash update success confirm needed: Zaktualizowano profil użytkownika. Sprawdź czy przyszedł już mail potwierdzający nowy adres mailowy.
|
||||||
home location: "Lokalizacja domowa:"
|
home location: "Lokalizacja domowa:"
|
||||||
image: "Grafika:"
|
image: "Grafika:"
|
||||||
|
image size hint: (najlepiej sprawdzają się kwadratowe obrazy o rozmiarach przynajmniej 100x100)
|
||||||
latitude: "Szerokość:"
|
latitude: "Szerokość:"
|
||||||
longitude: "Długość geograficzna:"
|
longitude: "Długość geograficzna:"
|
||||||
make edits public button: Niech wszystkie edycje będą publiczne.
|
make edits public button: Niech wszystkie edycje będą publiczne.
|
||||||
|
@ -1312,6 +1336,9 @@ pl:
|
||||||
not_an_administrator: Musisz mieć uprawnienia administratora do wykonania tego działania.
|
not_an_administrator: Musisz mieć uprawnienia administratora do wykonania tego działania.
|
||||||
go_public:
|
go_public:
|
||||||
flash success: Wszystkie Twoje modyfikacje są od teraz publiczne i jesteś uprawniony/a do edycji.
|
flash success: Wszystkie Twoje modyfikacje są od teraz publiczne i jesteś uprawniony/a do edycji.
|
||||||
|
list:
|
||||||
|
heading: Użytkownicy
|
||||||
|
title: Użytkownicy
|
||||||
login:
|
login:
|
||||||
account not active: Niestety Twoje konto nie jest jeszcze aktywne.<br />Otwórz link zawarty w mailu potwierdzenia założenia konta aby je aktywować.
|
account not active: Niestety Twoje konto nie jest jeszcze aktywne.<br />Otwórz link zawarty w mailu potwierdzenia założenia konta aby je aktywować.
|
||||||
auth failure: Niestety podane dane nie pozwoliły na zalogowanie Cię.
|
auth failure: Niestety podane dane nie pozwoliły na zalogowanie Cię.
|
||||||
|
@ -1322,6 +1349,7 @@ pl:
|
||||||
lost password link: Zapomniane hasło?
|
lost password link: Zapomniane hasło?
|
||||||
password: "Hasło:"
|
password: "Hasło:"
|
||||||
please login: Zaloguj się lub {{create_user_link}}.
|
please login: Zaloguj się lub {{create_user_link}}.
|
||||||
|
remember: "Pamiętaj mnie:"
|
||||||
title: Logowanie
|
title: Logowanie
|
||||||
logout:
|
logout:
|
||||||
heading: Wyloguj z OpenStreetMap
|
heading: Wyloguj z OpenStreetMap
|
||||||
|
@ -1343,6 +1371,7 @@ pl:
|
||||||
confirm email address: "Potwierdzenie adresu e-mail:"
|
confirm email address: "Potwierdzenie adresu e-mail:"
|
||||||
confirm password: "Potwierdzenie hasła:"
|
confirm password: "Potwierdzenie hasła:"
|
||||||
contact_webmaster: Prosimy skontaktuj się z <a href="mailto:webmaster@openstreetmap.org">webmasterem</a> żeby poprosić o stworzenie konta - zajmiemy się Twoim zapytaniem najszybciej jak to możliwe.
|
contact_webmaster: Prosimy skontaktuj się z <a href="mailto:webmaster@openstreetmap.org">webmasterem</a> żeby poprosić o stworzenie konta - zajmiemy się Twoim zapytaniem najszybciej jak to możliwe.
|
||||||
|
continue: Kontynuuj
|
||||||
display name: "Przyjazna nazwa:"
|
display name: "Przyjazna nazwa:"
|
||||||
display name description: Twoja publiczna nazwa użytkownika. Można ją później zmienić w ustawieniach.
|
display name description: Twoja publiczna nazwa użytkownika. Można ją później zmienić w ustawieniach.
|
||||||
email address: "Adres e-mail:"
|
email address: "Adres e-mail:"
|
||||||
|
@ -1355,7 +1384,7 @@ pl:
|
||||||
password: "Hasło:"
|
password: "Hasło:"
|
||||||
title: Nowe konto
|
title: Nowe konto
|
||||||
no_such_user:
|
no_such_user:
|
||||||
body: Niestety nie znaleziono użytkownika o nazwie {{user}}, sprawdź pisownię. Być może użyłeś(aś) linku który był niepoprawny.
|
body: Niestety nie znaleziono użytkownika o nazwie {{user}}, sprawdź pisownię. Być może skorzystano z nieprawidłowego odnośnika.
|
||||||
heading: Użytkownik{{user}} nie istnieje
|
heading: Użytkownik{{user}} nie istnieje
|
||||||
title: Nie znaleziono użytkownika
|
title: Nie znaleziono użytkownika
|
||||||
popup:
|
popup:
|
||||||
|
@ -1375,6 +1404,17 @@ pl:
|
||||||
title: zresetuj hasło
|
title: zresetuj hasło
|
||||||
set_home:
|
set_home:
|
||||||
flash success: Nowa lokalizacja domowa zapisana
|
flash success: Nowa lokalizacja domowa zapisana
|
||||||
|
suspended:
|
||||||
|
heading: Konto zawieszone
|
||||||
|
title: Konto zawieszone
|
||||||
|
terms:
|
||||||
|
agree: Akceptuję
|
||||||
|
decline: Nie akceptuję
|
||||||
|
legale_names:
|
||||||
|
france: Francja
|
||||||
|
italy: Włochy
|
||||||
|
rest_of_world: Reszta świata
|
||||||
|
legale_select: "Proszę wybrać kraj zamieszkania:"
|
||||||
view:
|
view:
|
||||||
activate_user: aktywuj tego użytkownika
|
activate_user: aktywuj tego użytkownika
|
||||||
add as friend: dodaj do znajomych
|
add as friend: dodaj do znajomych
|
||||||
|
@ -1418,6 +1458,7 @@ pl:
|
||||||
moderator: Cofnij dostęp moderatora
|
moderator: Cofnij dostęp moderatora
|
||||||
send message: wyślij wiadomość
|
send message: wyślij wiadomość
|
||||||
settings_link_text: stronie ustawień
|
settings_link_text: stronie ustawień
|
||||||
|
status: "Stan:"
|
||||||
traces: ślady
|
traces: ślady
|
||||||
unhide_user: odkryj tego użytkownika
|
unhide_user: odkryj tego użytkownika
|
||||||
user location: Lokalizacja użytkownika
|
user location: Lokalizacja użytkownika
|
||||||
|
|
|
@ -944,7 +944,7 @@ pt-BR:
|
||||||
shop_url: http://wiki.openstreetmap.org/wiki/Merchandise?uselang=pt-br
|
shop_url: http://wiki.openstreetmap.org/wiki/Merchandise?uselang=pt-br
|
||||||
sign_up: registrar
|
sign_up: registrar
|
||||||
sign_up_tooltip: Criar uma conta para editar
|
sign_up_tooltip: Criar uma conta para editar
|
||||||
sotm: Venha para a OpenStreetMap Conference 2009 (The State of the Map) de 10 a 12 de julho em Amsterdam!
|
sotm2010: Venha para a OpenStreetMap Conference 2010, The State of the Map, de 9 a 11 de Julho em Girona!
|
||||||
tag_line: O Wiki de Mapas Livres
|
tag_line: O Wiki de Mapas Livres
|
||||||
user_diaries: Diários de Usuário
|
user_diaries: Diários de Usuário
|
||||||
user_diaries_tooltip: Ver os diários dos usuários
|
user_diaries_tooltip: Ver os diários dos usuários
|
||||||
|
|
|
@ -6,6 +6,7 @@
|
||||||
# Author: Calibrator
|
# Author: Calibrator
|
||||||
# Author: Chilin
|
# Author: Chilin
|
||||||
# Author: Ezhick
|
# Author: Ezhick
|
||||||
|
# Author: G0rn
|
||||||
# Author: Komzpa
|
# Author: Komzpa
|
||||||
# Author: Lockal
|
# Author: Lockal
|
||||||
# Author: Yuri Nazarov
|
# Author: Yuri Nazarov
|
||||||
|
@ -286,6 +287,8 @@ ru:
|
||||||
title_bbox: Пакет правок в рамке, охватывающей координаты {{bbox}}
|
title_bbox: Пакет правок в рамке, охватывающей координаты {{bbox}}
|
||||||
title_user: Пакеты правок пользователя {{user}}
|
title_user: Пакеты правок пользователя {{user}}
|
||||||
title_user_bbox: Пакеты правок пользователя {{user}} в рамке, охватывающей координаты {{bbox}}
|
title_user_bbox: Пакеты правок пользователя {{user}} в рамке, охватывающей координаты {{bbox}}
|
||||||
|
timeout:
|
||||||
|
sorry: К сожалению, список пакетов правок, который вы запросили, слишком большой для извлечения.
|
||||||
diary_entry:
|
diary_entry:
|
||||||
diary_comment:
|
diary_comment:
|
||||||
comment_from: Комментарий от {{link_user}}, {{comment_created_at}}
|
comment_from: Комментарий от {{link_user}}, {{comment_created_at}}
|
||||||
|
@ -923,7 +926,7 @@ ru:
|
||||||
shop_tooltip: Магазин с фирменной символикой OpenStreetMap
|
shop_tooltip: Магазин с фирменной символикой OpenStreetMap
|
||||||
sign_up: регистрация
|
sign_up: регистрация
|
||||||
sign_up_tooltip: Создать учётную запись для редактирования
|
sign_up_tooltip: Создать учётную запись для редактирования
|
||||||
sotm: Приглашаем на конференцию OpenStreetMap 2009, The State of the Map, проходящую 10-12 июля в Амстердаме!
|
sotm2010: Приезжайте на конференцию OpenStreetMap 2010 «The State of the Map» (9-11 июля, Жирона)
|
||||||
tag_line: Свободная вики-карта мира
|
tag_line: Свободная вики-карта мира
|
||||||
user_diaries: Дневники
|
user_diaries: Дневники
|
||||||
user_diaries_tooltip: Посмотреть дневники
|
user_diaries_tooltip: Посмотреть дневники
|
||||||
|
@ -1498,7 +1501,7 @@ ru:
|
||||||
webmaster: веб-мастер
|
webmaster: веб-мастер
|
||||||
terms:
|
terms:
|
||||||
agree: Принять
|
agree: Принять
|
||||||
consider_pd: Я считаю, что мой вклад находиться в общественном достоянии
|
consider_pd: В дополнение к вышеизложенному соглашению, я считаю, что мой вклад находиться в общественном достоянии
|
||||||
consider_pd_why: что это значит?
|
consider_pd_why: что это значит?
|
||||||
decline: Отклонить
|
decline: Отклонить
|
||||||
heading: Условия сотрудничества
|
heading: Условия сотрудничества
|
||||||
|
|
|
@ -215,10 +215,13 @@ sl:
|
||||||
still_editing: (še ureja)
|
still_editing: (še ureja)
|
||||||
view_changeset_details: Ogled podrobnosti paketa sprememb
|
view_changeset_details: Ogled podrobnosti paketa sprememb
|
||||||
changeset_paging_nav:
|
changeset_paging_nav:
|
||||||
|
next: Naslednja »
|
||||||
|
previous: "« Prejšnja"
|
||||||
showing_page: Prikazovanje strani {{page}}
|
showing_page: Prikazovanje strani {{page}}
|
||||||
changesets:
|
changesets:
|
||||||
area: Področje
|
area: Področje
|
||||||
comment: Komentar
|
comment: Komentar
|
||||||
|
id: ID
|
||||||
saved_at: Shranjen
|
saved_at: Shranjen
|
||||||
user: Uporabnik
|
user: Uporabnik
|
||||||
list:
|
list:
|
||||||
|
@ -237,12 +240,16 @@ sl:
|
||||||
diary_entry:
|
diary_entry:
|
||||||
diary_comment:
|
diary_comment:
|
||||||
comment_from: Komentar uporabnika {{link_user}} v {{comment_created_at}}
|
comment_from: Komentar uporabnika {{link_user}} v {{comment_created_at}}
|
||||||
|
confirm: Potrdi
|
||||||
|
hide_link: Skrij ta komentar
|
||||||
diary_entry:
|
diary_entry:
|
||||||
comment_count:
|
comment_count:
|
||||||
one: "{{count}} komentar"
|
one: "{{count}} komentar"
|
||||||
other: "{{count}} komentarjev"
|
other: "{{count}} komentarjev"
|
||||||
comment_link: Komentiraj ta vnos
|
comment_link: Komentiraj ta vnos
|
||||||
|
confirm: Potrdi
|
||||||
edit_link: Uredi ta vnos
|
edit_link: Uredi ta vnos
|
||||||
|
hide_link: Skrij ta vnos
|
||||||
posted_by: Objavil {{link_user}} v {{created}} v jeziku {{language_link}}
|
posted_by: Objavil {{link_user}} v {{created}} v jeziku {{language_link}}
|
||||||
reply_link: Odgovori na ta vnos
|
reply_link: Odgovori na ta vnos
|
||||||
edit:
|
edit:
|
||||||
|
@ -276,6 +283,8 @@ sl:
|
||||||
recent_entries: "Nedavni zapisi v dnevnik:"
|
recent_entries: "Nedavni zapisi v dnevnik:"
|
||||||
title: Dnevniki uporabnikov
|
title: Dnevniki uporabnikov
|
||||||
user_title: Dnevnik uporabnika {{user}}
|
user_title: Dnevnik uporabnika {{user}}
|
||||||
|
location:
|
||||||
|
edit: Uredi
|
||||||
new:
|
new:
|
||||||
title: Nov zapis v dnevnik uporabnikov
|
title: Nov zapis v dnevnik uporabnikov
|
||||||
no_such_entry:
|
no_such_entry:
|
||||||
|
@ -315,6 +324,8 @@ sl:
|
||||||
output: Rezultat
|
output: Rezultat
|
||||||
paste_html: Uporabite ta HTML za vključitev zemljevida na spletno stran
|
paste_html: Uporabite ta HTML za vključitev zemljevida na spletno stran
|
||||||
scale: Merilo
|
scale: Merilo
|
||||||
|
too_large:
|
||||||
|
heading: Preveliko območje
|
||||||
zoom: Povečava
|
zoom: Povečava
|
||||||
start_rjs:
|
start_rjs:
|
||||||
add_marker: Dodaj zaznamek na zemljevid
|
add_marker: Dodaj zaznamek na zemljevid
|
||||||
|
@ -349,6 +360,7 @@ sl:
|
||||||
other: približno {{count}} km
|
other: približno {{count}} km
|
||||||
zero: manj kot 1 km
|
zero: manj kot 1 km
|
||||||
results:
|
results:
|
||||||
|
more_results: Več zadetkov
|
||||||
no_results: Ni zadetkov
|
no_results: Ni zadetkov
|
||||||
search:
|
search:
|
||||||
title:
|
title:
|
||||||
|
@ -361,6 +373,103 @@ sl:
|
||||||
search_osm_namefinder:
|
search_osm_namefinder:
|
||||||
suffix_parent: "{{suffix}} ({{parentdistance}} {{parentdirection}} od {{parentname}})"
|
suffix_parent: "{{suffix}} ({{parentdistance}} {{parentdirection}} od {{parentname}})"
|
||||||
suffix_place: ", {{distance}} {{direction}} od {{placename}}"
|
suffix_place: ", {{distance}} {{direction}} od {{placename}}"
|
||||||
|
search_osm_nominatim:
|
||||||
|
prefix:
|
||||||
|
amenity:
|
||||||
|
airport: Letališče
|
||||||
|
atm: Bankomat
|
||||||
|
auditorium: Avditorij
|
||||||
|
bank: Banka
|
||||||
|
bench: Klop
|
||||||
|
bureau_de_change: Menjalnica
|
||||||
|
car_wash: Avtopralnica
|
||||||
|
casino: Kazino
|
||||||
|
cinema: Kinematograf
|
||||||
|
club: Klub
|
||||||
|
crematorium: Krematorij
|
||||||
|
dentist: Zobozdravnik
|
||||||
|
doctors: Zdravniki
|
||||||
|
fast_food: Hitra hrana
|
||||||
|
fire_station: Gasilska postaja
|
||||||
|
fountain: Vodomet
|
||||||
|
hospital: Bolnišnica
|
||||||
|
hotel: Hotel
|
||||||
|
kindergarten: Vrtec
|
||||||
|
library: Knjižnica
|
||||||
|
marketplace: Tržnica
|
||||||
|
nightclub: 'Nočni klub'
|
||||||
|
park: Park
|
||||||
|
police: Policija
|
||||||
|
post_box: Poštni nabiralnik
|
||||||
|
post_office: Pošta
|
||||||
|
prison: Zapor
|
||||||
|
restaurant: Restavracija
|
||||||
|
sauna: Savna
|
||||||
|
school: Šola
|
||||||
|
taxi: Taksi
|
||||||
|
theatre: Gledališče
|
||||||
|
toilets: Stranišča
|
||||||
|
university: Univerza
|
||||||
|
wifi: Dostop WiFi
|
||||||
|
building:
|
||||||
|
church: Cerkev
|
||||||
|
city_hall: Mestna hiša
|
||||||
|
garage: Garaža
|
||||||
|
hotel: Hotel
|
||||||
|
house: Hiša
|
||||||
|
stadium: Stadion
|
||||||
|
tower: Stolp
|
||||||
|
"yes": Zgradba
|
||||||
|
highway:
|
||||||
|
bus_stop: Avtobusna postaja
|
||||||
|
historic:
|
||||||
|
battlefield: Bojišče
|
||||||
|
castle: Grad
|
||||||
|
church: Cerkev
|
||||||
|
house: Hiša
|
||||||
|
manor: Graščina
|
||||||
|
ruins: Ruševine
|
||||||
|
tower: Stolp
|
||||||
|
leisure:
|
||||||
|
garden: Vrt
|
||||||
|
park: Park
|
||||||
|
stadium: Stadion
|
||||||
|
natural:
|
||||||
|
hill: Hrib
|
||||||
|
island: Otok
|
||||||
|
river: Reka
|
||||||
|
tree: Drevo
|
||||||
|
volcano: Vulkan
|
||||||
|
place:
|
||||||
|
airport: Letališče
|
||||||
|
city: Mesto
|
||||||
|
country: Država
|
||||||
|
farm: Kmetija
|
||||||
|
house: Hiša
|
||||||
|
houses: Hiše
|
||||||
|
postcode: Poštna številka
|
||||||
|
sea: Morje
|
||||||
|
town: Mesto
|
||||||
|
village: Vas
|
||||||
|
shop:
|
||||||
|
books: Knjigarna
|
||||||
|
butcher: Mesar
|
||||||
|
drugstore: Lekarna
|
||||||
|
florist: Cvetličarna
|
||||||
|
garden_centre: Vrtni center
|
||||||
|
optician: Optik
|
||||||
|
shopping_centre: Nakupovalno središče
|
||||||
|
sports: Športna trgovina
|
||||||
|
travel_agency: Potovalna agencija
|
||||||
|
tourism:
|
||||||
|
hotel: Hotel
|
||||||
|
information: Informacije
|
||||||
|
motel: Motel
|
||||||
|
museum: Muzej
|
||||||
|
zoo: Živalski vrt
|
||||||
|
waterway:
|
||||||
|
river: Reka
|
||||||
|
wadi: Vadi
|
||||||
layouts:
|
layouts:
|
||||||
donate: Podprite OpenStreetMap z {{link}} v fond za nadgradnjo strojne opreme.
|
donate: Podprite OpenStreetMap z {{link}} v fond za nadgradnjo strojne opreme.
|
||||||
donate_link_text: donacijo
|
donate_link_text: donacijo
|
||||||
|
@ -375,6 +484,7 @@ sl:
|
||||||
history: Zgodovina
|
history: Zgodovina
|
||||||
home: domov
|
home: domov
|
||||||
home_tooltip: Prikaži domači kraj
|
home_tooltip: Prikaži domači kraj
|
||||||
|
inbox: prejeto ({{count}})
|
||||||
inbox_tooltip:
|
inbox_tooltip:
|
||||||
one: Prejeli ste {{count}} novo sporočilo
|
one: Prejeli ste {{count}} novo sporočilo
|
||||||
other: Prejeli ste {{count}} novih sporočil
|
other: Prejeli ste {{count}} novih sporočil
|
||||||
|
@ -392,6 +502,7 @@ sl:
|
||||||
logout_tooltip: Odjava iz sistema
|
logout_tooltip: Odjava iz sistema
|
||||||
make_a_donation:
|
make_a_donation:
|
||||||
text: Prispevajte finančna sredstva
|
text: Prispevajte finančna sredstva
|
||||||
|
title: Podprite OpenStreetMap z denarnim prispevkom
|
||||||
news_blog: Novice
|
news_blog: Novice
|
||||||
news_blog_tooltip: Novice o OpenStreetMap, prostih geografskih podatkih, ipd.
|
news_blog_tooltip: Novice o OpenStreetMap, prostih geografskih podatkih, ipd.
|
||||||
osm_offline: Baza OpenStreetMap zaradi izvajanja nujnih vzdrževalnih del trenutno ni dostopna.
|
osm_offline: Baza OpenStreetMap zaradi izvajanja nujnih vzdrževalnih del trenutno ni dostopna.
|
||||||
|
@ -400,7 +511,6 @@ sl:
|
||||||
shop_tooltip: Nakup izdelkov z OpenStreetMap logotipi
|
shop_tooltip: Nakup izdelkov z OpenStreetMap logotipi
|
||||||
sign_up: vpis
|
sign_up: vpis
|
||||||
sign_up_tooltip: Ustvarite si nov uporabniški račun za urejanje
|
sign_up_tooltip: Ustvarite si nov uporabniški račun za urejanje
|
||||||
sotm: Udeležite se letošnje OpenStreetMap konference, The State of the Map, ki bo od 10 do 12 Julija v Amsterdamu!
|
|
||||||
tag_line: Prost wiki zemljevid sveta
|
tag_line: Prost wiki zemljevid sveta
|
||||||
user_diaries: Dnevnik
|
user_diaries: Dnevnik
|
||||||
user_diaries_tooltip: Pregled dnevnikov uporabnikov
|
user_diaries_tooltip: Pregled dnevnikov uporabnikov
|
||||||
|
@ -524,7 +634,7 @@ sl:
|
||||||
signup_confirm_html:
|
signup_confirm_html:
|
||||||
click_the_link: Če ste to vi, dobrodošli! Kliknite na spodnjo povezavo za potrditev računa in več informacij o projektu OpenStreetMap.
|
click_the_link: Če ste to vi, dobrodošli! Kliknite na spodnjo povezavo za potrditev računa in več informacij o projektu OpenStreetMap.
|
||||||
current_user: Seznam trenutnih uporabnikov po kategorijah glede na njihov geografski položaj je na voljo v kategoriji <a href="http://wiki.openstreetmap.org/wiki/Category:Users_by_geographical_region">Category:Users_by_geographical_region</a>.
|
current_user: Seznam trenutnih uporabnikov po kategorijah glede na njihov geografski položaj je na voljo v kategoriji <a href="http://wiki.openstreetmap.org/wiki/Category:Users_by_geographical_region">Category:Users_by_geographical_region</a>.
|
||||||
get_reading: Preberite si več o OpenStreetMap <a href="http://wiki.openstreetmap.org/wiki/Beginners%27_Guide">v wiki-ju</a> ali <a href="http://www.opengeodata.org/">na opengeodata blog-u</a> ki vsebuje tudi <a href="http://www.opengeodata.org/?cat=13">zvočne podcast-e</a>!
|
get_reading: Preberite več o OpenStreetMap <a href="http://wiki.openstreetmap.org/wiki/Beginners%27_Guide">na wikiju</a>, bodite na tekočem z najnovejšimi novicami preko <a href="http://blog.openstreetmap.org/">bloga OpenStreetMap </a> ali <a href="http://twitter.com/openstreetmap">Twitterja</a>, ali prebrskajte blog ustanovitelja OpenStreetMap Steva Coasta <a href="http://www.opengeodata.org/">OpenGeoData</a> za povzeto zgodovino projekta, ki vsebuje tudi <a href="http://www.opengeodata.org/?cat=13">zvočne podcaste</a>!
|
||||||
greeting: Pozdravljeni!
|
greeting: Pozdravljeni!
|
||||||
hopefully_you: Nekdo (najverjetneje vi) bi rad naredil uporabniški račun na
|
hopefully_you: Nekdo (najverjetneje vi) bi rad naredil uporabniški račun na
|
||||||
introductory_video: Ogledate si lahko {{introductory_video_link}}.
|
introductory_video: Ogledate si lahko {{introductory_video_link}}.
|
||||||
|
@ -542,7 +652,7 @@ sl:
|
||||||
hopefully_you: Nekdo (najverjetneje vi) bi rad naredil uporabniški račun na
|
hopefully_you: Nekdo (najverjetneje vi) bi rad naredil uporabniški račun na
|
||||||
introductory_video: "Uvodni video posnetek si lahko pogledate na naslovu:"
|
introductory_video: "Uvodni video posnetek si lahko pogledate na naslovu:"
|
||||||
more_videos: "Več video posnetkov je na naslovu:"
|
more_videos: "Več video posnetkov je na naslovu:"
|
||||||
opengeodata: "Blog o OpenStreetMap z zvočnimi podcasti je na OpenGeoData.org:"
|
opengeodata: "OpenGeoData.org je blog ustanovitelja OpenStreetMap Steva Coasta, ima pa tudi podcaste:"
|
||||||
the_wiki: "Več o projektu OpenStreetMap si preberite v wiki-ju:"
|
the_wiki: "Več o projektu OpenStreetMap si preberite v wiki-ju:"
|
||||||
user_wiki_1: Priporočljivo je, da si naredite svojo uporabniško wiki stran, ki naj vsebuje
|
user_wiki_1: Priporočljivo je, da si naredite svojo uporabniško wiki stran, ki naj vsebuje
|
||||||
user_wiki_2: oznako kategorije, ki določa vaš položaj, npr [[Category:Users_in_Slovenia]].
|
user_wiki_2: oznako kategorije, ki določa vaš položaj, npr [[Category:Users_in_Slovenia]].
|
||||||
|
|
|
@ -657,7 +657,6 @@ sv:
|
||||||
shop_tooltip: Affär med Openstreetmap loggan på alla grejer
|
shop_tooltip: Affär med Openstreetmap loggan på alla grejer
|
||||||
sign_up: registrera
|
sign_up: registrera
|
||||||
sign_up_tooltip: Skapa ett konto för kartering
|
sign_up_tooltip: Skapa ett konto för kartering
|
||||||
sotm: I somras var det OpenStreetMap konferens i Amsterdam.
|
|
||||||
tag_line: Den fria wiki-världskartan
|
tag_line: Den fria wiki-världskartan
|
||||||
user_diaries: Användardagböcker
|
user_diaries: Användardagböcker
|
||||||
user_diaries_tooltip: Visa användardagböcker
|
user_diaries_tooltip: Visa användardagböcker
|
||||||
|
|
|
@ -925,7 +925,6 @@ uk:
|
||||||
shop_tooltip: Магазин з фірмовою символікою OpenStreetMap
|
shop_tooltip: Магазин з фірмовою символікою OpenStreetMap
|
||||||
sign_up: реєстрація
|
sign_up: реєстрація
|
||||||
sign_up_tooltip: Створити обліковий запис для редагування
|
sign_up_tooltip: Створити обліковий запис для редагування
|
||||||
sotm: Запрошуємо на конференцію OpenStreetMap 2009, The State of the Map, що проходить 10-12 липня в Амстердамі!
|
|
||||||
tag_line: Вільна Вікі-мапа Світу
|
tag_line: Вільна Вікі-мапа Світу
|
||||||
user_diaries: Щоденники
|
user_diaries: Щоденники
|
||||||
user_diaries_tooltip: Подивитись щоденники
|
user_diaries_tooltip: Подивитись щоденники
|
||||||
|
|
|
@ -430,6 +430,7 @@ vi:
|
||||||
airport: Sân bay
|
airport: Sân bay
|
||||||
arts_centre: Trung tâm Nghệ thuật
|
arts_centre: Trung tâm Nghệ thuật
|
||||||
atm: Máy Rút tiền Tự động
|
atm: Máy Rút tiền Tự động
|
||||||
|
auditorium: Phòng hội họp
|
||||||
bank: Ngân hàng
|
bank: Ngân hàng
|
||||||
bar: Quán Rượu
|
bar: Quán Rượu
|
||||||
bench: Ghế
|
bench: Ghế
|
||||||
|
@ -447,6 +448,7 @@ vi:
|
||||||
college: Trường Cao đẳng
|
college: Trường Cao đẳng
|
||||||
community_centre: Trung tâm Cộng đồng
|
community_centre: Trung tâm Cộng đồng
|
||||||
courthouse: Tòa
|
courthouse: Tòa
|
||||||
|
crematorium: Lò Hỏa táng
|
||||||
dentist: Nha sĩ
|
dentist: Nha sĩ
|
||||||
doctors: Bác sĩ
|
doctors: Bác sĩ
|
||||||
dormitory: Ký túc xá
|
dormitory: Ký túc xá
|
||||||
|
@ -538,6 +540,7 @@ vi:
|
||||||
motorway_link: Đường Cao tốc
|
motorway_link: Đường Cao tốc
|
||||||
path: Lối
|
path: Lối
|
||||||
pedestrian: Đường bộ Lớn
|
pedestrian: Đường bộ Lớn
|
||||||
|
platform: Sân ga
|
||||||
primary: Đường Chính
|
primary: Đường Chính
|
||||||
primary_link: Đường Chính
|
primary_link: Đường Chính
|
||||||
raceway: Đường đua
|
raceway: Đường đua
|
||||||
|
@ -548,6 +551,7 @@ vi:
|
||||||
service: Đường phụ
|
service: Đường phụ
|
||||||
services: Dịch vụ Dọc đường Cao tốc
|
services: Dịch vụ Dọc đường Cao tốc
|
||||||
steps: Cầu thang
|
steps: Cầu thang
|
||||||
|
stile: Cửa xoay
|
||||||
tertiary: Đường Lớn
|
tertiary: Đường Lớn
|
||||||
track: Đường mòn
|
track: Đường mòn
|
||||||
trail: Đường mòn
|
trail: Đường mòn
|
||||||
|
@ -610,6 +614,7 @@ vi:
|
||||||
garden: Vườn
|
garden: Vườn
|
||||||
golf_course: Sân Golf
|
golf_course: Sân Golf
|
||||||
ice_rink: Sân băng
|
ice_rink: Sân băng
|
||||||
|
marina: Bến tàu
|
||||||
nature_reserve: Khu Bảo tồn Thiên niên
|
nature_reserve: Khu Bảo tồn Thiên niên
|
||||||
park: Công viên
|
park: Công viên
|
||||||
pitch: Bãi Thể thao
|
pitch: Bãi Thể thao
|
||||||
|
@ -627,15 +632,19 @@ vi:
|
||||||
channel: Eo biển
|
channel: Eo biển
|
||||||
cliff: Vách đá
|
cliff: Vách đá
|
||||||
coastline: Bờ biển
|
coastline: Bờ biển
|
||||||
|
fjord: Vịnh hẹp
|
||||||
geyser: Mạch nước Phun
|
geyser: Mạch nước Phun
|
||||||
glacier: Sông băng
|
glacier: Sông băng
|
||||||
heath: Bãi Hoang
|
heath: Bãi Hoang
|
||||||
hill: Đồi
|
hill: Đồi
|
||||||
island: Đảo
|
island: Đảo
|
||||||
land: Đất
|
land: Đất
|
||||||
|
marsh: Đầm lầy
|
||||||
moor: Truông
|
moor: Truông
|
||||||
peak: Đỉnh
|
peak: Đỉnh
|
||||||
|
point: Mũi đất
|
||||||
reef: Rạn san hô
|
reef: Rạn san hô
|
||||||
|
ridge: Luống đất
|
||||||
river: Sông
|
river: Sông
|
||||||
rock: Đá
|
rock: Đá
|
||||||
spring: Suối
|
spring: Suối
|
||||||
|
@ -644,6 +653,7 @@ vi:
|
||||||
valley: Thung lũng
|
valley: Thung lũng
|
||||||
volcano: Núi lửa
|
volcano: Núi lửa
|
||||||
water: Nước
|
water: Nước
|
||||||
|
wetland: Đầm lầy
|
||||||
wetlands: Đầm lầy
|
wetlands: Đầm lầy
|
||||||
wood: Rừng
|
wood: Rừng
|
||||||
place:
|
place:
|
||||||
|
@ -652,6 +662,7 @@ vi:
|
||||||
country: Quốc gia
|
country: Quốc gia
|
||||||
county: Quận hạt
|
county: Quận hạt
|
||||||
farm: Trại
|
farm: Trại
|
||||||
|
hamlet: Xóm
|
||||||
house: Nhà ở
|
house: Nhà ở
|
||||||
houses: Dãy Nhà
|
houses: Dãy Nhà
|
||||||
island: Đảo
|
island: Đảo
|
||||||
|
@ -671,6 +682,7 @@ vi:
|
||||||
funicular: Đường sắt Leo núi
|
funicular: Đường sắt Leo núi
|
||||||
historic_station: Nhà ga Lịch sử
|
historic_station: Nhà ga Lịch sử
|
||||||
junction: Ga Đầu mối
|
junction: Ga Đầu mối
|
||||||
|
light_rail: Đường sắt nhẹ
|
||||||
monorail: Đường Một Ray
|
monorail: Đường Một Ray
|
||||||
station: Nhà ga
|
station: Nhà ga
|
||||||
subway: Trạm Xe điện Ngầm
|
subway: Trạm Xe điện Ngầm
|
||||||
|
@ -680,6 +692,7 @@ vi:
|
||||||
bakery: Tiệm Bánh
|
bakery: Tiệm Bánh
|
||||||
bicycle: Tiệm Xe đạp
|
bicycle: Tiệm Xe đạp
|
||||||
books: Tiệm Sách
|
books: Tiệm Sách
|
||||||
|
butcher: Tiệm Thịt
|
||||||
car: Tiệm Xe hơi
|
car: Tiệm Xe hơi
|
||||||
car_dealer: Cửa hàng Xe hơi
|
car_dealer: Cửa hàng Xe hơi
|
||||||
car_repair: Tiệm Sửa Xe
|
car_repair: Tiệm Sửa Xe
|
||||||
|
@ -690,7 +703,9 @@ vi:
|
||||||
confectionery: Tiệm Kẹo
|
confectionery: Tiệm Kẹo
|
||||||
convenience: Tiệm Tập hóa
|
convenience: Tiệm Tập hóa
|
||||||
cosmetics: Tiệm Mỹ phẩm
|
cosmetics: Tiệm Mỹ phẩm
|
||||||
|
doityourself: Tiệm Ngũ kim
|
||||||
drugstore: Nhà thuốc
|
drugstore: Nhà thuốc
|
||||||
|
electronics: Tiệm Thiết bị Điện tử
|
||||||
fashion: Tiệm Thời trang
|
fashion: Tiệm Thời trang
|
||||||
fish: Tiệm Cá
|
fish: Tiệm Cá
|
||||||
florist: Tiệm Hoa
|
florist: Tiệm Hoa
|
||||||
|
@ -743,6 +758,7 @@ vi:
|
||||||
river: Sông
|
river: Sông
|
||||||
riverbank: Bờ sông
|
riverbank: Bờ sông
|
||||||
stream: Dòng suối
|
stream: Dòng suối
|
||||||
|
wadi: Dòng sông Vào mùa
|
||||||
waterfall: Thác
|
waterfall: Thác
|
||||||
javascripts:
|
javascripts:
|
||||||
map:
|
map:
|
||||||
|
@ -806,7 +822,7 @@ vi:
|
||||||
shop_url: http://wiki.openstreetmap.org/wiki/Merchandise?uselang=vi
|
shop_url: http://wiki.openstreetmap.org/wiki/Merchandise?uselang=vi
|
||||||
sign_up: đăng ký
|
sign_up: đăng ký
|
||||||
sign_up_tooltip: Mở tài khoản để sửa đổi
|
sign_up_tooltip: Mở tài khoản để sửa đổi
|
||||||
sotm: Mời tham gia Hội nghị OpenStreetMap 2009, The State of the Map (Trình trạng Bản đồ), ngày 10-12 tháng 7 tại Amsterdam!
|
sotm2010: Mời tham gia Hội nghị OpenStreetMap 2010, The State of the Map (Tình trạng Bản đồ), ngày 9–11 tháng 7 tại Girona, Tây Ban Nha!
|
||||||
tag_line: Bản đồ Wiki của Thế giới Mở
|
tag_line: Bản đồ Wiki của Thế giới Mở
|
||||||
user_diaries: Nhật ký Cá nhân
|
user_diaries: Nhật ký Cá nhân
|
||||||
user_diaries_tooltip: Đọc các nhật ký cá nhân
|
user_diaries_tooltip: Đọc các nhật ký cá nhân
|
||||||
|
@ -1381,7 +1397,7 @@ vi:
|
||||||
webmaster: chủ trang
|
webmaster: chủ trang
|
||||||
terms:
|
terms:
|
||||||
agree: Chấp nhận
|
agree: Chấp nhận
|
||||||
consider_pd: Tôi coi rằng các đóng góp của tôi thuộc về phạm vi công cộng
|
consider_pd: Ngoài các thỏa thuận ở trên, tôi coi rằng các đóng góp của tôi thuộc về phạm vi công cộng
|
||||||
consider_pd_why: có nghĩa là gì?
|
consider_pd_why: có nghĩa là gì?
|
||||||
decline: Từ chối
|
decline: Từ chối
|
||||||
heading: Điều kiện đóng góp
|
heading: Điều kiện đóng góp
|
||||||
|
|
|
@ -90,9 +90,9 @@ fr:
|
||||||
hint_drawmode: Clic pour ajouter un point\nDouble-clic/Entrée pour terminer le chemin
|
hint_drawmode: Clic pour ajouter un point\nDouble-clic/Entrée pour terminer le chemin
|
||||||
hint_latlon: "lat $1\nlon $2"
|
hint_latlon: "lat $1\nlon $2"
|
||||||
hint_loading: Chargement des chemins en cours
|
hint_loading: Chargement des chemins en cours
|
||||||
hint_overendpoint: Sur le dernier point du tracé\nClick pour joindre\nShift-click pour fusionner
|
hint_overendpoint: Sur le dernier point du tracé\nClic pour joindre\nMaj-clic pour fusionner
|
||||||
hint_overpoint: Point du dessus\nClick pour joindre
|
hint_overpoint: Point du dessus\nCliquer pour joindre
|
||||||
hint_pointselected: Point sélectionné\n(Shift-clic sur le point pour\ncommencer une nouvelle ligne)
|
hint_pointselected: Point sélectionné\n(Maj-clic sur le point pour\ncommencer une nouvelle ligne)
|
||||||
hint_saving: sauvegarde des données
|
hint_saving: sauvegarde des données
|
||||||
hint_saving_loading: Charger/sauvegarder les données
|
hint_saving_loading: Charger/sauvegarder les données
|
||||||
inspector: Inspecteur
|
inspector: Inspecteur
|
||||||
|
|
|
@ -183,6 +183,7 @@ ja:
|
||||||
retry: 再送
|
retry: 再送
|
||||||
revert: 差し戻し
|
revert: 差し戻し
|
||||||
save: 保存
|
save: 保存
|
||||||
|
tags_backtolist: リストに戻る
|
||||||
tip_addrelation: リレーションに追加
|
tip_addrelation: リレーションに追加
|
||||||
tip_addtag: 新しいタグを追加
|
tip_addtag: 新しいタグを追加
|
||||||
tip_alert: エラーが発生しました。クリックすると詳細が表示されます。
|
tip_alert: エラーが発生しました。クリックすると詳細が表示されます。
|
||||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -131,7 +131,6 @@ ActionController::Routing::Routes.draw do |map|
|
||||||
|
|
||||||
map.connect '/index.html', :controller => 'site', :action => 'index'
|
map.connect '/index.html', :controller => 'site', :action => 'index'
|
||||||
map.connect '/edit.html', :controller => 'site', :action => 'edit'
|
map.connect '/edit.html', :controller => 'site', :action => 'edit'
|
||||||
map.connect '/history.html', :controller => 'changeset', :action => 'list_bbox'
|
|
||||||
map.connect '/export.html', :controller => 'site', :action => 'export'
|
map.connect '/export.html', :controller => 'site', :action => 'export'
|
||||||
map.connect '/search.html', :controller => 'way_tag', :action => 'search'
|
map.connect '/search.html', :controller => 'way_tag', :action => 'search'
|
||||||
map.connect '/login.html', :controller => 'user', :action => 'login'
|
map.connect '/login.html', :controller => 'user', :action => 'login'
|
||||||
|
|
|
@ -6,6 +6,7 @@ cz:
|
||||||
key:
|
key:
|
||||||
historic: Cz:Key:historic
|
historic: Cz:Key:historic
|
||||||
railway: Cz:Key:railway
|
railway: Cz:Key:railway
|
||||||
|
tracktype: Cz:Key:tracktype
|
||||||
tag:
|
tag:
|
||||||
route=trolleybus: Cz:Tag:route=trolleybus
|
route=trolleybus: Cz:Tag:route=trolleybus
|
||||||
da:
|
da:
|
||||||
|
@ -35,9 +36,11 @@ de:
|
||||||
cycleway: DE:Key:cycleway
|
cycleway: DE:Key:cycleway
|
||||||
denomination: DE:Key:denomination
|
denomination: DE:Key:denomination
|
||||||
description: DE:Key:description
|
description: DE:Key:description
|
||||||
|
destination: DE:Key:destination
|
||||||
disused: DE:Key:disused
|
disused: DE:Key:disused
|
||||||
drink: DE:Key:drink
|
drink: DE:Key:drink
|
||||||
embankment: DE:Key:embankment
|
embankment: DE:Key:embankment
|
||||||
|
emergency: DE:Key:emergency
|
||||||
fixme: DE:Key:fixme
|
fixme: DE:Key:fixme
|
||||||
geological: DE:Key:geological
|
geological: DE:Key:geological
|
||||||
hazmat: DE:Key:hazmat
|
hazmat: DE:Key:hazmat
|
||||||
|
@ -70,6 +73,7 @@ de:
|
||||||
sac_scale: DE:Key:sac scale
|
sac_scale: DE:Key:sac scale
|
||||||
service: DE:Key:service
|
service: DE:Key:service
|
||||||
shop: DE:Key:shop
|
shop: DE:Key:shop
|
||||||
|
smoking: DE:Key:smoking
|
||||||
smoothness: DE:Key:smoothness
|
smoothness: DE:Key:smoothness
|
||||||
sport: DE:Key:sport
|
sport: DE:Key:sport
|
||||||
step_count: DE:Key:step count
|
step_count: DE:Key:step count
|
||||||
|
@ -105,10 +109,12 @@ de:
|
||||||
amenity=recycling: DE:Tag:amenity=recycling
|
amenity=recycling: DE:Tag:amenity=recycling
|
||||||
amenity=register_office: DE:Tag:amenity=register office
|
amenity=register_office: DE:Tag:amenity=register office
|
||||||
amenity=school: DE:Tag:amenity=school
|
amenity=school: DE:Tag:amenity=school
|
||||||
|
amenity=telephone: DE:Tag:amenity=telephone
|
||||||
amenity=toilets: DE:Tag:amenity=toilets
|
amenity=toilets: DE:Tag:amenity=toilets
|
||||||
amenity=vending_machine: DE:Tag:amenity=vending machine
|
amenity=vending_machine: DE:Tag:amenity=vending machine
|
||||||
amenity=waste_basket: DE:Tag:amenity=waste basket
|
amenity=waste_basket: DE:Tag:amenity=waste basket
|
||||||
barrier=cycle_barrier: DE:Tag:barrier=cycle barrier
|
barrier=cycle_barrier: DE:Tag:barrier=cycle barrier
|
||||||
|
barrier=lift_gate: DE:Tag:barrier=lift gate
|
||||||
boundary=water_protection_area: DE:Tag:boundary=water protection area
|
boundary=water_protection_area: DE:Tag:boundary=water protection area
|
||||||
club-mate=yes: DE:Tag:club-mate=yes
|
club-mate=yes: DE:Tag:club-mate=yes
|
||||||
highway=bus_stop: DE:Tag:highway=bus stop
|
highway=bus_stop: DE:Tag:highway=bus stop
|
||||||
|
@ -145,7 +151,10 @@ de:
|
||||||
landuse=farm: DE:Tag:landuse=farm
|
landuse=farm: DE:Tag:landuse=farm
|
||||||
landuse=farmyard: DE:Tag:landuse=farmyard
|
landuse=farmyard: DE:Tag:landuse=farmyard
|
||||||
landuse=forest: DE:Tag:landuse=forest
|
landuse=forest: DE:Tag:landuse=forest
|
||||||
|
landuse=meadow: DE:Tag:landuse=meadow
|
||||||
landuse=orchard: DE:Tag:landuse=orchard
|
landuse=orchard: DE:Tag:landuse=orchard
|
||||||
|
landuse=quarry: DE:Tag:landuse=quarry
|
||||||
|
landuse=village_green: DE:Tag:landuse=village green
|
||||||
leisure=dog_park: DE:Tag:leisure=dog park
|
leisure=dog_park: DE:Tag:leisure=dog park
|
||||||
leisure=playground: DE:Tag:leisure=playground
|
leisure=playground: DE:Tag:leisure=playground
|
||||||
leisure=slipway: DE:Tag:leisure=slipway
|
leisure=slipway: DE:Tag:leisure=slipway
|
||||||
|
@ -161,6 +170,7 @@ de:
|
||||||
natural=water: DE:Tag:natural=water
|
natural=water: DE:Tag:natural=water
|
||||||
natural=wetland: DE:Tag:natural=wetland
|
natural=wetland: DE:Tag:natural=wetland
|
||||||
natural=wood: DE:Tag:natural=wood
|
natural=wood: DE:Tag:natural=wood
|
||||||
|
pipeline=marker: DE:Tag:pipeline=marker
|
||||||
power=cable: DE:Tag:power=cable
|
power=cable: DE:Tag:power=cable
|
||||||
power=cable_distribution_cabinet: DE:Tag:power=cable distribution cabinet
|
power=cable_distribution_cabinet: DE:Tag:power=cable distribution cabinet
|
||||||
power=generator: DE:Tag:power=generator
|
power=generator: DE:Tag:power=generator
|
||||||
|
@ -205,6 +215,7 @@ en:
|
||||||
aerialway: Key:aerialway
|
aerialway: Key:aerialway
|
||||||
aeroway: Key:aeroway
|
aeroway: Key:aeroway
|
||||||
amenity: Key:amenity
|
amenity: Key:amenity
|
||||||
|
architect: Key:architect
|
||||||
area: Key:area
|
area: Key:area
|
||||||
atv: Key:atv
|
atv: Key:atv
|
||||||
barrier: Key:barrier
|
barrier: Key:barrier
|
||||||
|
@ -229,8 +240,10 @@ en:
|
||||||
cutting: Key:cutting
|
cutting: Key:cutting
|
||||||
cycleway: Key:cycleway
|
cycleway: Key:cycleway
|
||||||
denomination: Key:denomination
|
denomination: Key:denomination
|
||||||
|
depth: Key:depth
|
||||||
description: Key:description
|
description: Key:description
|
||||||
designation: Key:designation
|
designation: Key:designation
|
||||||
|
destination: Key:destination
|
||||||
direction: Key:direction
|
direction: Key:direction
|
||||||
dispensing: Key:dispensing
|
dispensing: Key:dispensing
|
||||||
disused: Key:disused
|
disused: Key:disused
|
||||||
|
@ -246,7 +259,10 @@ en:
|
||||||
fence_type: Key:fence type
|
fence_type: Key:fence type
|
||||||
fenced: Key:fenced
|
fenced: Key:fenced
|
||||||
fixme: Key:fixme
|
fixme: Key:fixme
|
||||||
|
flood_prone: Key:flood prone
|
||||||
foot: Key:foot
|
foot: Key:foot
|
||||||
|
ford: Key:ford
|
||||||
|
fuel:discount: Key:fuel:discount
|
||||||
gauge: Key:gauge
|
gauge: Key:gauge
|
||||||
geological: Key:geological
|
geological: Key:geological
|
||||||
hazmat: Key:hazmat
|
hazmat: Key:hazmat
|
||||||
|
@ -265,10 +281,12 @@ en:
|
||||||
layer: Key:layer
|
layer: Key:layer
|
||||||
lcn_ref: Key:lcn ref
|
lcn_ref: Key:lcn ref
|
||||||
leisure: Key:leisure
|
leisure: Key:leisure
|
||||||
|
length: Key:length
|
||||||
lit: Key:lit
|
lit: Key:lit
|
||||||
lit:perceived: Key:lit:perceived
|
lit:perceived: Key:lit:perceived
|
||||||
lock: Key:lock
|
lock: Key:lock
|
||||||
man_made: Key:man made
|
man_made: Key:man made
|
||||||
|
managed: Key:managed
|
||||||
manhole: Key:manhole
|
manhole: Key:manhole
|
||||||
maxairdraft: Key:maxairdraft
|
maxairdraft: Key:maxairdraft
|
||||||
maxaxleload: Key:maxaxleload
|
maxaxleload: Key:maxaxleload
|
||||||
|
@ -284,6 +302,8 @@ en:
|
||||||
maxwidth: Key:maxwidth
|
maxwidth: Key:maxwidth
|
||||||
military: Key:military
|
military: Key:military
|
||||||
minspeed: Key:minspeed
|
minspeed: Key:minspeed
|
||||||
|
monitoring:glonass: Key:monitoring:glonass
|
||||||
|
monitoring:gps: Key:monitoring:gps
|
||||||
mooring: Key:mooring
|
mooring: Key:mooring
|
||||||
motorcar: Key:motorcar
|
motorcar: Key:motorcar
|
||||||
motorcycle: Key:motorcycle
|
motorcycle: Key:motorcycle
|
||||||
|
@ -395,6 +415,7 @@ en:
|
||||||
amenity=baby_hatch: Tag:amenity=baby hatch
|
amenity=baby_hatch: Tag:amenity=baby hatch
|
||||||
amenity=bank: Tag:amenity=bank
|
amenity=bank: Tag:amenity=bank
|
||||||
amenity=bar: Tag:amenity=bar
|
amenity=bar: Tag:amenity=bar
|
||||||
|
amenity=bbq: Tag:amenity=bbq
|
||||||
amenity=bench: Tag:amenity=bench
|
amenity=bench: Tag:amenity=bench
|
||||||
amenity=bicycle_parking: Tag:amenity=bicycle parking
|
amenity=bicycle_parking: Tag:amenity=bicycle parking
|
||||||
amenity=bicycle_rental: Tag:amenity=bicycle rental
|
amenity=bicycle_rental: Tag:amenity=bicycle rental
|
||||||
|
@ -413,6 +434,8 @@ en:
|
||||||
amenity=compressed_air: Tag:amenity=compressed air
|
amenity=compressed_air: Tag:amenity=compressed air
|
||||||
amenity=courthouse: Tag:amenity=courthouse
|
amenity=courthouse: Tag:amenity=courthouse
|
||||||
amenity=crematorium: Tag:amenity=crematorium
|
amenity=crematorium: Tag:amenity=crematorium
|
||||||
|
amenity=dentist: Tag:amenity=dentist
|
||||||
|
amenity=doctors: Tag:amenity=doctors
|
||||||
amenity=drinking_water: Tag:amenity=drinking water
|
amenity=drinking_water: Tag:amenity=drinking water
|
||||||
amenity=embassy: Tag:amenity=embassy
|
amenity=embassy: Tag:amenity=embassy
|
||||||
amenity=emergency_phone: Tag:amenity=emergency phone
|
amenity=emergency_phone: Tag:amenity=emergency phone
|
||||||
|
@ -471,6 +494,8 @@ en:
|
||||||
barrier=fence: Tag:barrier=fence
|
barrier=fence: Tag:barrier=fence
|
||||||
barrier=gate: Tag:barrier=gate
|
barrier=gate: Tag:barrier=gate
|
||||||
barrier=hedge: Tag:barrier=hedge
|
barrier=hedge: Tag:barrier=hedge
|
||||||
|
barrier=horse_stile: Tag:barrier=horse stile
|
||||||
|
barrier=kent_carriage_gap: Tag:barrier=kent carriage gap
|
||||||
barrier=kissing_gate: Tag:barrier=kissing gate
|
barrier=kissing_gate: Tag:barrier=kissing gate
|
||||||
barrier=lift_gate: Tag:barrier=lift gate
|
barrier=lift_gate: Tag:barrier=lift gate
|
||||||
barrier=retaining_wall: Tag:barrier=retaining wall
|
barrier=retaining_wall: Tag:barrier=retaining wall
|
||||||
|
@ -503,6 +528,7 @@ en:
|
||||||
highway=emergency_access_point: Tag:highway=emergency access point
|
highway=emergency_access_point: Tag:highway=emergency access point
|
||||||
highway=footway: Tag:highway=footway
|
highway=footway: Tag:highway=footway
|
||||||
highway=ford: Tag:highway=ford
|
highway=ford: Tag:highway=ford
|
||||||
|
highway=give_way: Tag:highway=give way
|
||||||
highway=living_street: Tag:highway=living street
|
highway=living_street: Tag:highway=living street
|
||||||
highway=mini_roundabout: Tag:highway=mini roundabout
|
highway=mini_roundabout: Tag:highway=mini roundabout
|
||||||
highway=motorway: Tag:highway=motorway
|
highway=motorway: Tag:highway=motorway
|
||||||
|
@ -517,6 +543,7 @@ en:
|
||||||
highway=proposed: Tag:highway=proposed
|
highway=proposed: Tag:highway=proposed
|
||||||
highway=raceway: Tag:highway=raceway
|
highway=raceway: Tag:highway=raceway
|
||||||
highway=residential: Tag:highway=residential
|
highway=residential: Tag:highway=residential
|
||||||
|
highway=rest_area: Tag:highway=rest area
|
||||||
highway=road: Tag:highway=road
|
highway=road: Tag:highway=road
|
||||||
highway=secondary: Tag:highway=secondary
|
highway=secondary: Tag:highway=secondary
|
||||||
highway=secondary_link: Tag:highway=secondary link
|
highway=secondary_link: Tag:highway=secondary link
|
||||||
|
@ -593,26 +620,32 @@ en:
|
||||||
leisure=miniature_golf: Tag:leisure=miniature golf
|
leisure=miniature_golf: Tag:leisure=miniature golf
|
||||||
leisure=nature_reserve: Tag:leisure=nature reserve
|
leisure=nature_reserve: Tag:leisure=nature reserve
|
||||||
leisure=park: Tag:leisure=park
|
leisure=park: Tag:leisure=park
|
||||||
|
leisure=picnic_table: Tag:leisure=picnic table
|
||||||
leisure=pitch: Tag:leisure=pitch
|
leisure=pitch: Tag:leisure=pitch
|
||||||
leisure=playground: Tag:leisure=playground
|
leisure=playground: Tag:leisure=playground
|
||||||
leisure=slipway: Tag:leisure=slipway
|
leisure=slipway: Tag:leisure=slipway
|
||||||
leisure=sports_centre: Tag:leisure=sports centre
|
leisure=sports_centre: Tag:leisure=sports centre
|
||||||
leisure=track: Tag:leisure=track
|
leisure=track: Tag:leisure=track
|
||||||
leisure=water_park: Tag:leisure=water park
|
leisure=water_park: Tag:leisure=water park
|
||||||
|
man_made=beacon: Tag:man made=beacon
|
||||||
man_made=compass_rose: Tag:man made=compass rose
|
man_made=compass_rose: Tag:man made=compass rose
|
||||||
man_made=crane: Tag:man made=crane
|
man_made=crane: Tag:man made=crane
|
||||||
man_made=cutline: Tag:man made=cutline
|
man_made=cutline: Tag:man made=cutline
|
||||||
man_made=dyke: Tag:man made=dyke
|
man_made=dyke: Tag:man made=dyke
|
||||||
|
man_made=flagpole: Tag:man made=flagpole
|
||||||
man_made=ground_station: Tag:man made=ground station
|
man_made=ground_station: Tag:man made=ground station
|
||||||
|
man_made=groyne: Tag:man made=groyne
|
||||||
man_made=jetty: Tag:man made=jetty
|
man_made=jetty: Tag:man made=jetty
|
||||||
man_made=lighthouse: Tag:man made=lighthouse
|
man_made=lighthouse: Tag:man made=lighthouse
|
||||||
man_made=mineshaft: Tag:man made=mineshaft
|
man_made=mineshaft: Tag:man made=mineshaft
|
||||||
|
man_made=monitoring_station: Tag:man made=monitoring station
|
||||||
man_made=pier: Tag:man made=pier
|
man_made=pier: Tag:man made=pier
|
||||||
man_made=pipeline: Tag:man made=pipeline
|
man_made=pipeline: Tag:man made=pipeline
|
||||||
man_made=pumping_rig: Tag:man made=pumping rig
|
man_made=pumping_rig: Tag:man made=pumping rig
|
||||||
man_made=reservoir_covered: Tag:man made=reservoir covered
|
man_made=reservoir_covered: Tag:man made=reservoir covered
|
||||||
man_made=surveillance: Tag:man made=surveillance
|
man_made=surveillance: Tag:man made=surveillance
|
||||||
man_made=survey_point: Tag:man made=survey point
|
man_made=survey_point: Tag:man made=survey point
|
||||||
|
man_made=tower: Tag:man made=tower
|
||||||
man_made=wastewater_plant: Tag:man made=wastewater plant
|
man_made=wastewater_plant: Tag:man made=wastewater plant
|
||||||
man_made=water_tower: Tag:man made=water tower
|
man_made=water_tower: Tag:man made=water tower
|
||||||
man_made=water_well: Tag:man made=water well
|
man_made=water_well: Tag:man made=water well
|
||||||
|
@ -635,6 +668,7 @@ en:
|
||||||
natural=land: Tag:natural=land
|
natural=land: Tag:natural=land
|
||||||
natural=meadow: Tag:natural=meadow
|
natural=meadow: Tag:natural=meadow
|
||||||
natural=peak: Tag:natural=peak
|
natural=peak: Tag:natural=peak
|
||||||
|
natural=scrub: Tag:natural=scrub
|
||||||
natural=spring: Tag:natural=spring
|
natural=spring: Tag:natural=spring
|
||||||
natural=stone: Tag:natural=stone
|
natural=stone: Tag:natural=stone
|
||||||
natural=tree: Tag:natural=tree
|
natural=tree: Tag:natural=tree
|
||||||
|
@ -643,17 +677,28 @@ en:
|
||||||
natural=wetland: Tag:natural=wetland
|
natural=wetland: Tag:natural=wetland
|
||||||
natural=wood: Tag:natural=wood
|
natural=wood: Tag:natural=wood
|
||||||
office=accountant: Tag:office=accountant
|
office=accountant: Tag:office=accountant
|
||||||
|
office=architect: Tag:office=architect
|
||||||
|
office=company: Tag:office=company
|
||||||
office=employment_agency: Tag:office=employment agency
|
office=employment_agency: Tag:office=employment agency
|
||||||
|
office=estate_agent: Tag:office=estate agent
|
||||||
|
office=government: Tag:office=government
|
||||||
|
office=insurance: Tag:office=insurance
|
||||||
office=lawyer: Tag:office=lawyer
|
office=lawyer: Tag:office=lawyer
|
||||||
|
office=newspaper: Tag:office=newspaper
|
||||||
|
office=ngo: Tag:office=ngo
|
||||||
|
office=quango: Tag:office=quango
|
||||||
|
office=travel_agent: Tag:office=travel agent
|
||||||
pipeline=marker: Tag:pipeline=marker
|
pipeline=marker: Tag:pipeline=marker
|
||||||
pipeline=valve: Tag:pipeline=valve
|
pipeline=valve: Tag:pipeline=valve
|
||||||
place=city: Tag:place=city
|
place=city: Tag:place=city
|
||||||
place=continent: Tag:place=continent
|
place=continent: Tag:place=continent
|
||||||
place=country: Tag:place=country
|
place=country: Tag:place=country
|
||||||
place=county: Tag:place=county
|
place=county: Tag:place=county
|
||||||
|
place=farm: Tag:place=farm
|
||||||
place=hamlet: Tag:place=hamlet
|
place=hamlet: Tag:place=hamlet
|
||||||
place=island: Tag:place=island
|
place=island: Tag:place=island
|
||||||
place=islet: Tag:place=islet
|
place=islet: Tag:place=islet
|
||||||
|
place=isolated_dwelling: Tag:place=isolated dwelling
|
||||||
place=locality: Tag:place=locality
|
place=locality: Tag:place=locality
|
||||||
place=region: Tag:place=region
|
place=region: Tag:place=region
|
||||||
place=state: Tag:place=state
|
place=state: Tag:place=state
|
||||||
|
@ -673,6 +718,7 @@ en:
|
||||||
railway=crossing: Tag:railway=crossing
|
railway=crossing: Tag:railway=crossing
|
||||||
railway=halt: Tag:railway=halt
|
railway=halt: Tag:railway=halt
|
||||||
railway=level_crossing: Tag:railway=level crossing
|
railway=level_crossing: Tag:railway=level crossing
|
||||||
|
railway=miniature: Tag:railway=miniature
|
||||||
railway=monorail: Tag:railway=monorail
|
railway=monorail: Tag:railway=monorail
|
||||||
railway=platform: Tag:railway=platform
|
railway=platform: Tag:railway=platform
|
||||||
railway=rail: Tag:railway=rail
|
railway=rail: Tag:railway=rail
|
||||||
|
@ -683,6 +729,7 @@ en:
|
||||||
railway=tram: Tag:railway=tram
|
railway=tram: Tag:railway=tram
|
||||||
railway=tram_stop: Tag:railway=tram stop
|
railway=tram_stop: Tag:railway=tram stop
|
||||||
railway=turntable: Tag:railway=turntable
|
railway=turntable: Tag:railway=turntable
|
||||||
|
religion=pagan: Tag:religion=pagan
|
||||||
route=bus: Tag:route=bus
|
route=bus: Tag:route=bus
|
||||||
route=canal: Tag:route=canal
|
route=canal: Tag:route=canal
|
||||||
route=detour: Tag:route=detour
|
route=detour: Tag:route=detour
|
||||||
|
@ -705,9 +752,11 @@ en:
|
||||||
shop=SpotColor: Tag:shop=SpotColor
|
shop=SpotColor: Tag:shop=SpotColor
|
||||||
shop=alcohol: Tag:shop=alcohol
|
shop=alcohol: Tag:shop=alcohol
|
||||||
shop=bakery: Tag:shop=bakery
|
shop=bakery: Tag:shop=bakery
|
||||||
|
shop=beauty: Tag:shop=beauty
|
||||||
shop=beverages: Tag:shop=beverages
|
shop=beverages: Tag:shop=beverages
|
||||||
shop=bicycle: Tag:shop=bicycle
|
shop=bicycle: Tag:shop=bicycle
|
||||||
shop=books: Tag:shop=books
|
shop=books: Tag:shop=books
|
||||||
|
shop=boutique: Tag:shop=boutique
|
||||||
shop=butcher: Tag:shop=butcher
|
shop=butcher: Tag:shop=butcher
|
||||||
shop=car: Tag:shop=car
|
shop=car: Tag:shop=car
|
||||||
shop=car_repair: Tag:shop=car repair
|
shop=car_repair: Tag:shop=car repair
|
||||||
|
@ -736,17 +785,22 @@ en:
|
||||||
shop=hairdresser: Tag:shop=hairdresser
|
shop=hairdresser: Tag:shop=hairdresser
|
||||||
shop=hearing_aids: Tag:shop=hearing aids
|
shop=hearing_aids: Tag:shop=hearing aids
|
||||||
shop=hifi: Tag:shop=hifi
|
shop=hifi: Tag:shop=hifi
|
||||||
|
shop=ice_cream: Tag:shop=ice cream
|
||||||
shop=jewelry: Tag:shop=jewelry
|
shop=jewelry: Tag:shop=jewelry
|
||||||
shop=kiosk: Tag:shop=kiosk
|
shop=kiosk: Tag:shop=kiosk
|
||||||
shop=laundry: Tag:shop=laundry
|
shop=laundry: Tag:shop=laundry
|
||||||
shop=locksmith: Tag:shop=locksmith
|
shop=locksmith: Tag:shop=locksmith
|
||||||
shop=mall: Tag:shop=mall
|
shop=mall: Tag:shop=mall
|
||||||
shop=massage: Tag:shop=massage
|
shop=massage: Tag:shop=massage
|
||||||
|
shop=money_lender: Tag:shop=money lender
|
||||||
shop=motorcycle: Tag:shop=motorcycle
|
shop=motorcycle: Tag:shop=motorcycle
|
||||||
|
shop=motorcycle_repair: Tag:shop=motorcycle repair
|
||||||
shop=newsagent: Tag:shop=newsagent
|
shop=newsagent: Tag:shop=newsagent
|
||||||
shop=optician: Tag:shop=optician
|
shop=optician: Tag:shop=optician
|
||||||
shop=organic: Tag:shop=organic
|
shop=organic: Tag:shop=organic
|
||||||
shop=outdoor: Tag:shop=outdoor
|
shop=outdoor: Tag:shop=outdoor
|
||||||
|
shop=pawnbroker: Tag:shop=pawnbroker
|
||||||
|
shop=seafood: Tag:shop=seafood
|
||||||
shop=second_hand: Tag:shop=second hand
|
shop=second_hand: Tag:shop=second hand
|
||||||
shop=shoes: Tag:shop=shoes
|
shop=shoes: Tag:shop=shoes
|
||||||
shop=sports: Tag:shop=sports
|
shop=sports: Tag:shop=sports
|
||||||
|
@ -755,10 +809,15 @@ en:
|
||||||
shop=systembolaget: Tag:shop=systembolaget
|
shop=systembolaget: Tag:shop=systembolaget
|
||||||
shop=toys: Tag:shop=toys
|
shop=toys: Tag:shop=toys
|
||||||
shop=travel_agency: Tag:shop=travel agency
|
shop=travel_agency: Tag:shop=travel agency
|
||||||
|
shop=variety_store: Tag:shop=variety store
|
||||||
shop=video: Tag:shop=video
|
shop=video: Tag:shop=video
|
||||||
source:ele=barometric: Tag:source:ele=barometric
|
source:ele=barometric: Tag:source:ele=barometric
|
||||||
source=GURS: Tag:source=GURS
|
source=GURS: Tag:source=GURS
|
||||||
source=IBGE: Tag:source=IBGE
|
source=IBGE: Tag:source=IBGE
|
||||||
|
source=Isle_of_Man_Government_1:25000_map_(2007): Tag:source=Isle of Man Government
|
||||||
|
1:25000 map (2007)
|
||||||
|
source=Isle_of_Man_Government_aerial_imagery_(2001): Tag:source=Isle of Man Government
|
||||||
|
aerial imagery (2001)
|
||||||
sport=9pin: Tag:sport=9pin
|
sport=9pin: Tag:sport=9pin
|
||||||
sport=australian_football: Tag:sport=australian football
|
sport=australian_football: Tag:sport=australian football
|
||||||
sport=boules: Tag:sport=boules
|
sport=boules: Tag:sport=boules
|
||||||
|
@ -909,6 +968,7 @@ fr:
|
||||||
name: FR:Key:name
|
name: FR:Key:name
|
||||||
noname: FR:Key:noname
|
noname: FR:Key:noname
|
||||||
opening_hours: FR:Key:opening hours
|
opening_hours: FR:Key:opening hours
|
||||||
|
place: FR:Key:place
|
||||||
power: FR:Key:power
|
power: FR:Key:power
|
||||||
sac_scale: FR:Key:sac scale
|
sac_scale: FR:Key:sac scale
|
||||||
shop: FR:Key:shop
|
shop: FR:Key:shop
|
||||||
|
@ -943,11 +1003,13 @@ fr:
|
||||||
power=generator: FR:Tag:power=generator
|
power=generator: FR:Tag:power=generator
|
||||||
power=line: FR:Tag:power=line
|
power=line: FR:Tag:power=line
|
||||||
power=tower: FR:Tag:power=tower
|
power=tower: FR:Tag:power=tower
|
||||||
|
railway=station: FR:Tag:railway=station
|
||||||
railway=subway_entrance: FR:Tag:railway=subway entrance
|
railway=subway_entrance: FR:Tag:railway=subway entrance
|
||||||
shop=bakery: FR:Tag:shop=bakery
|
shop=bakery: FR:Tag:shop=bakery
|
||||||
shop=supermarket: FR:Tag:shop=supermarket
|
shop=supermarket: FR:Tag:shop=supermarket
|
||||||
waterway=riverbank: FR:Tag:waterway=riverbank
|
waterway=riverbank: FR:Tag:waterway=riverbank
|
||||||
waterway=stream: FR:Tag:waterway=stream
|
waterway=stream: FR:Tag:waterway=stream
|
||||||
|
waterway=weir: FR:Tag:waterway=weir
|
||||||
hr:
|
hr:
|
||||||
key:
|
key:
|
||||||
tracktype: Hr:Key:tracktype
|
tracktype: Hr:Key:tracktype
|
||||||
|
@ -962,6 +1024,7 @@ it:
|
||||||
aeroway: IT:Key:aeroway
|
aeroway: IT:Key:aeroway
|
||||||
amenity: IT:Key:amenity
|
amenity: IT:Key:amenity
|
||||||
barrier: IT:Key:barrier
|
barrier: IT:Key:barrier
|
||||||
|
basin: IT:Key:basin
|
||||||
boundary: IT:Key:boundary
|
boundary: IT:Key:boundary
|
||||||
bridge: IT:Key:bridge
|
bridge: IT:Key:bridge
|
||||||
building: IT:Key:building
|
building: IT:Key:building
|
||||||
|
@ -1038,93 +1101,95 @@ it:
|
||||||
shop=florist: IT:Tag:shop=florist
|
shop=florist: IT:Tag:shop=florist
|
||||||
ja:
|
ja:
|
||||||
key:
|
key:
|
||||||
abutters: Ja:Key:abutters
|
abutters: JA:Key:abutters
|
||||||
access: Ja:Key:access
|
access: JA:Key:access
|
||||||
aerialway: Ja:Key:aerialway
|
aerialway: JA:Key:aerialway
|
||||||
aeroway: Ja:Key:aeroway
|
aeroway: JA:Key:aeroway
|
||||||
amenity: Ja:Key:amenity
|
amenity: JA:Key:amenity
|
||||||
barrier: Ja:Key:barrier
|
barrier: JA:Key:barrier
|
||||||
boundary: Ja:Key:boundary
|
boundary: JA:Key:boundary
|
||||||
bridge: Ja:Key:bridge
|
bridge: JA:Key:bridge
|
||||||
building: Ja:Key:building
|
building: JA:Key:building
|
||||||
crossing: Ja:Key:crossing
|
crossing: JA:Key:crossing
|
||||||
cuisine: Ja:Key:cuisine
|
cuisine: JA:Key:cuisine
|
||||||
cycleway: Ja:Key:cycleway
|
cycleway: JA:Key:cycleway
|
||||||
electrified: Ja:Key:electrified
|
electrified: JA:Key:electrified
|
||||||
fixme: Ja:Key:fixme
|
fixme: JA:Key:fixme
|
||||||
foot: Ja:Key:foot
|
foot: JA:Key:foot
|
||||||
highway: Ja:Key:highway
|
highway: JA:Key:highway
|
||||||
historic: Ja:Key:historic
|
historic: JA:Key:historic
|
||||||
incline: Ja:Key:incline
|
incline: JA:Key:incline
|
||||||
information: Ja:Key:information
|
information: JA:Key:information
|
||||||
internet_access: Ja:Key:internet access
|
internet_access: JA:Key:internet access
|
||||||
landuse: Ja:Key:landuse
|
landuse: JA:Key:landuse
|
||||||
leisure: Ja:Key:leisure
|
leisure: JA:Key:leisure
|
||||||
man_made: Ja:Key:man made
|
man_made: JA:Key:man made
|
||||||
military: Ja:Key:military
|
military: JA:Key:military
|
||||||
name: Ja:Key:name
|
name: JA:Key:name
|
||||||
natural: Ja:Key:natural
|
natural: JA:Key:natural
|
||||||
operator: Ja:Key:operator
|
operator: JA:Key:operator
|
||||||
phone: Ja:Key:phone
|
phone: JA:Key:phone
|
||||||
power: Ja:Key:power
|
power: JA:Key:power
|
||||||
power_source: Ja:Key:power source
|
power_source: JA:Key:power source
|
||||||
railway: Ja:Key:railway
|
railway: JA:Key:railway
|
||||||
ref: Ja:Key:ref
|
ref: JA:Key:ref
|
||||||
route: Ja:Key:route
|
route: JA:Key:route
|
||||||
shop: Ja:Key:shop
|
shop: JA:Key:shop
|
||||||
step_count: Ja:Key:step count
|
step_count: JA:Key:step count
|
||||||
surface: Ja:Key:surface
|
surface: JA:Key:surface
|
||||||
tactile_paving: Ja:Key:tactile paving
|
tactile_paving: JA:Key:tactile paving
|
||||||
tourism: Ja:Key:tourism
|
tourism: JA:Key:tourism
|
||||||
tracktype: Ja:Key:tracktype
|
tracktype: JA:Key:tracktype
|
||||||
waterway: Ja:Key:waterway
|
type: JA:Key:type
|
||||||
wheelchair: Ja:Key:wheelchair
|
waterway: JA:Key:waterway
|
||||||
wikipedia: Ja:Key:wikipedia
|
wheelchair: JA:Key:wheelchair
|
||||||
wood: Ja:Key:wood
|
wikipedia: JA:Key:wikipedia
|
||||||
|
wood: JA:Key:wood
|
||||||
tag:
|
tag:
|
||||||
amenity=arts_centre: Ja:Tag:amenity=arts centre
|
amenity=arts_centre: JA:Tag:amenity=arts centre
|
||||||
amenity=baby_hatch: Ja:Tag:amenity=baby hatch
|
amenity=baby_hatch: JA:Tag:amenity=baby hatch
|
||||||
amenity=bus_station: Ja:Tag:amenity=bus station
|
amenity=bus_station: JA:Tag:amenity=bus station
|
||||||
amenity=cafe: Ja:Tag:amenity=cafe
|
amenity=cafe: JA:Tag:amenity=cafe
|
||||||
amenity=drinking_water: Ja:Tag:amenity=drinking water
|
amenity=drinking_water: JA:Tag:amenity=drinking water
|
||||||
amenity=fast_food: Ja:Tag:amenity=fast food
|
amenity=fast_food: JA:Tag:amenity=fast food
|
||||||
amenity=fire_station: Ja:Tag:amenity=fire station
|
amenity=fire_station: JA:Tag:amenity=fire station
|
||||||
amenity=parking: Ja:Tag:amenity=parking
|
amenity=parking: JA:Tag:amenity=parking
|
||||||
amenity=place_of_worship: Ja:Tag:amenity=place of worship
|
amenity=place_of_worship: JA:Tag:amenity=place of worship
|
||||||
amenity=pub: Ja:Tag:amenity=pub
|
amenity=pub: JA:Tag:amenity=pub
|
||||||
amenity=restaurant: Ja:Tag:amenity=restaurant
|
amenity=restaurant: JA:Tag:amenity=restaurant
|
||||||
amenity=toilets: Ja:Tag:amenity=toilets
|
amenity=toilets: JA:Tag:amenity=toilets
|
||||||
amenity=vending_machine: Ja:Tag:amenity=vending machine
|
amenity=vending_machine: JA:Tag:amenity=vending machine
|
||||||
amenity=veterinary: Ja:Tag:amenity=veterinary
|
amenity=veterinary: JA:Tag:amenity=veterinary
|
||||||
barrier=lift_gate: Ja:Tag:barrier=lift gate
|
barrier=lift_gate: JA:Tag:barrier=lift gate
|
||||||
highway=crossing: Ja:Tag:highway=crossing
|
highway=crossing: JA:Tag:highway=crossing
|
||||||
highway=footway: Ja:Tag:highway=footway
|
highway=footway: JA:Tag:highway=footway
|
||||||
highway=pedestrian: Ja:Tag:highway=pedestrian
|
highway=pedestrian: JA:Tag:highway=pedestrian
|
||||||
highway=residential: Ja:Tag:highway=residential
|
highway=residential: JA:Tag:highway=residential
|
||||||
highway=steps: Ja:Tag:highway=steps
|
highway=steps: JA:Tag:highway=steps
|
||||||
highway=track: Ja:Tag:highway=track
|
highway=track: JA:Tag:highway=track
|
||||||
highway=traffic_signals: Ja:Tag:highway=traffic signals
|
highway=traffic_signals: JA:Tag:highway=traffic signals
|
||||||
historic=archaeological_site: Ja:Tag:historic=archaeological site
|
historic=archaeological_site: JA:Tag:historic=archaeological site
|
||||||
landuse=forest: Ja:Tag:landuse=forest
|
landuse=forest: JA:Tag:landuse=forest
|
||||||
landuse=garages: Ja:Tag:landuse=garages
|
landuse=garages: JA:Tag:landuse=garages
|
||||||
landuse=wood: Ja:Tag:landuse=wood
|
landuse=wood: JA:Tag:landuse=wood
|
||||||
leisure=dog_park: Ja:Tag:leisure=dog park
|
leisure=dog_park: JA:Tag:leisure=dog park
|
||||||
leisure=ice_rink: Ja:Tag:leisure=ice rink
|
leisure=ice_rink: JA:Tag:leisure=ice rink
|
||||||
man_made=lighthouse: Ja:Tag:man made=lighthouse
|
man_made=lighthouse: JA:Tag:man made=lighthouse
|
||||||
natural=coastline: Ja:Tag:natural=coastline
|
natural=coastline: JA:Tag:natural=coastline
|
||||||
natural=wood: Ja:Tag:natural=wood
|
natural=wood: JA:Tag:natural=wood
|
||||||
power=generator: Ja:Tag:power=generator
|
power=generator: JA:Tag:power=generator
|
||||||
railway=crossing: Ja:Tag:railway=crossing
|
railway=crossing: JA:Tag:railway=crossing
|
||||||
railway=level_crossing: Ja:Tag:railway=level crossing
|
railway=level_crossing: JA:Tag:railway=level crossing
|
||||||
railway=rail: Ja:Tag:railway=rail
|
railway=rail: JA:Tag:railway=rail
|
||||||
railway=station: Ja:Tag:railway=station
|
railway=station: JA:Tag:railway=station
|
||||||
shop=doityourself: Ja:Tag:shop=doityourself
|
shop=doityourself: JA:Tag:shop=doityourself
|
||||||
shop=motorcycle: Ja:Tag:shop=motorcycle
|
shop=garden_centre: JA:Tag:shop=garden centre
|
||||||
shop=outdoor: Ja:Tag:shop=outdoor
|
shop=motorcycle: JA:Tag:shop=motorcycle
|
||||||
tourism=hotel: Ja:Tag:tourism=hotel
|
shop=outdoor: JA:Tag:shop=outdoor
|
||||||
tourism=information: Ja:Tag:tourism=information
|
tourism=hotel: JA:Tag:tourism=hotel
|
||||||
waterway=riverbank: Ja:Tag:waterway=riverbank
|
tourism=information: JA:Tag:tourism=information
|
||||||
waterway=water_point: Ja:Tag:waterway=water point
|
waterway=riverbank: JA:Tag:waterway=riverbank
|
||||||
|
waterway=water_point: JA:Tag:waterway=water point
|
||||||
nl:
|
nl:
|
||||||
key:
|
key:
|
||||||
cycleway: NL:Key:cycleway
|
cycleway: NL:Key:cycleway
|
||||||
|
@ -1148,6 +1213,7 @@ pl:
|
||||||
oneway: Pl:Key:oneway
|
oneway: Pl:Key:oneway
|
||||||
pt-br:
|
pt-br:
|
||||||
key:
|
key:
|
||||||
|
abutters: Pt-br:Key:abutters
|
||||||
access: Pt-br:Key:access
|
access: Pt-br:Key:access
|
||||||
addr: Pt-br:Key:addr
|
addr: Pt-br:Key:addr
|
||||||
aeroway: Pt-br:Key:aeroway
|
aeroway: Pt-br:Key:aeroway
|
||||||
|
@ -1161,16 +1227,21 @@ pt-br:
|
||||||
building: Pt-br:Key:building
|
building: Pt-br:Key:building
|
||||||
cep: Pt-br:Key:cep
|
cep: Pt-br:Key:cep
|
||||||
construction: Pt-br:Key:construction
|
construction: Pt-br:Key:construction
|
||||||
|
cycleway: Pt-br:Key:cycleway
|
||||||
ele: Pt-br:Key:ele
|
ele: Pt-br:Key:ele
|
||||||
emergency: Pt-br:Key:emergency
|
emergency: Pt-br:Key:emergency
|
||||||
fenced: Pt-br:Key:fenced
|
fenced: Pt-br:Key:fenced
|
||||||
foot: Pt-br:Key:foot
|
foot: Pt-br:Key:foot
|
||||||
|
geological: Pt-br:Key:geological
|
||||||
hgv: Pt-br:Key:hgv
|
hgv: Pt-br:Key:hgv
|
||||||
highway: Pt-br:Key:highway
|
highway: Pt-br:Key:highway
|
||||||
|
historic: Pt-br:Key:historic
|
||||||
horse: Pt-br:Key:horse
|
horse: Pt-br:Key:horse
|
||||||
|
internet_access: Pt-br:Key:internet access
|
||||||
landuse: Pt-br:Key:landuse
|
landuse: Pt-br:Key:landuse
|
||||||
lanes: Pt-br:Key:lanes
|
lanes: Pt-br:Key:lanes
|
||||||
leisure: Pt-br:Key:leisure
|
leisure: Pt-br:Key:leisure
|
||||||
|
lit: Pt-br:Key:lit
|
||||||
man_made: Pt-br:Key:man made
|
man_made: Pt-br:Key:man made
|
||||||
maxdraught: Pt-br:Key:maxdraught
|
maxdraught: Pt-br:Key:maxdraught
|
||||||
maxheight: Pt-br:Key:maxheight
|
maxheight: Pt-br:Key:maxheight
|
||||||
|
@ -1189,13 +1260,19 @@ pt-br:
|
||||||
oneway: Pt-br:Key:oneway
|
oneway: Pt-br:Key:oneway
|
||||||
operator: Pt-br:Key:operator
|
operator: Pt-br:Key:operator
|
||||||
psv: Pt-br:Key:psv
|
psv: Pt-br:Key:psv
|
||||||
|
railway: Pt-br:Key:railway
|
||||||
religion: Pt-br:Key:religion
|
religion: Pt-br:Key:religion
|
||||||
|
route: Pt-br:Key:route
|
||||||
seamark: Pt-br:Key:seamark
|
seamark: Pt-br:Key:seamark
|
||||||
|
service: Pt-br:Key:service
|
||||||
shop: Pt-br:Key:shop
|
shop: Pt-br:Key:shop
|
||||||
ski: Pt-br:Key:ski
|
ski: Pt-br:Key:ski
|
||||||
source: Pt-br:Key:source
|
source: Pt-br:Key:source
|
||||||
sport: Pt-br:Key:sport
|
sport: Pt-br:Key:sport
|
||||||
surface: Pt-br:Key:surface
|
surface: Pt-br:Key:surface
|
||||||
|
tourism: Pt-br:Key:tourism
|
||||||
|
tracktype: Pt-br:Key:tracktype
|
||||||
|
traffic_calming: Pt-br:Key:traffic calming
|
||||||
type: Pt-br:Key:type
|
type: Pt-br:Key:type
|
||||||
waterway: Pt-br:Key:waterway
|
waterway: Pt-br:Key:waterway
|
||||||
tag:
|
tag:
|
||||||
|
@ -1207,11 +1284,16 @@ pt-br:
|
||||||
amenity=place_of_worship: Pt-br:Tag:amenity=place of worship
|
amenity=place_of_worship: Pt-br:Tag:amenity=place of worship
|
||||||
amenity=stripclub: Pt-br:Tag:amenity=stripclub
|
amenity=stripclub: Pt-br:Tag:amenity=stripclub
|
||||||
boundary=maritime: Pt-br:Tag:boundary=maritime
|
boundary=maritime: Pt-br:Tag:boundary=maritime
|
||||||
|
highway=motorway: Pt-br:Tag:highway=motorway
|
||||||
|
highway=motorway_junction: Pt-br:Tag:highway=motorway junction
|
||||||
|
highway=motorway_link: Pt-br:Tag:highway=motorway link
|
||||||
highway=road: Pt-br:Tag:highway=road
|
highway=road: Pt-br:Tag:highway=road
|
||||||
highway=stop: Pt-br:Tag:highway=stop
|
highway=stop: Pt-br:Tag:highway=stop
|
||||||
highway=unclassified: Pt-br:Tag:highway=unclassified
|
highway=unclassified: Pt-br:Tag:highway=unclassified
|
||||||
landuse=cemetery: Pt-br:Tag:landuse=cemetery
|
landuse=cemetery: Pt-br:Tag:landuse=cemetery
|
||||||
|
landuse=meadow: Pt-br:Tag:landuse=meadow
|
||||||
man_made=survey_point: Pt-br:Tag:man made=survey point
|
man_made=survey_point: Pt-br:Tag:man made=survey point
|
||||||
|
natural=beach: Pt-br:Tag:natural=beach
|
||||||
natural=wetland: Pt-br:Tag:natural=wetland
|
natural=wetland: Pt-br:Tag:natural=wetland
|
||||||
railway=rail: Pt-br:Tag:railway=rail
|
railway=rail: Pt-br:Tag:railway=rail
|
||||||
shop=mall: Pt-br:Tag:shop=mall
|
shop=mall: Pt-br:Tag:shop=mall
|
||||||
|
@ -1326,6 +1408,7 @@ ru:
|
||||||
amenity=crematorium: RU:Tag:amenity=crematorium
|
amenity=crematorium: RU:Tag:amenity=crematorium
|
||||||
amenity=fast_food: RU:Tag:amenity=fast food
|
amenity=fast_food: RU:Tag:amenity=fast food
|
||||||
amenity=fire_station: RU:Tag:amenity=fire station
|
amenity=fire_station: RU:Tag:amenity=fire station
|
||||||
|
amenity=fountain: RU:Tag:amenity=fountain
|
||||||
amenity=fuel: RU:Tag:amenity=fuel
|
amenity=fuel: RU:Tag:amenity=fuel
|
||||||
amenity=grave_yard: RU:Tag:amenity=grave yard
|
amenity=grave_yard: RU:Tag:amenity=grave yard
|
||||||
amenity=nightclub: RU:Tag:amenity=nightclub
|
amenity=nightclub: RU:Tag:amenity=nightclub
|
||||||
|
@ -1405,6 +1488,7 @@ ru:
|
||||||
natural=water: RU:Tag:natural=water
|
natural=water: RU:Tag:natural=water
|
||||||
natural=wetland: RU:Tag:natural=wetland
|
natural=wetland: RU:Tag:natural=wetland
|
||||||
natural=wood: RU:Tag:natural=wood
|
natural=wood: RU:Tag:natural=wood
|
||||||
|
office=lawyer: RU:Tag:office=lawyer
|
||||||
opening_hours=24/7: RU:Tag:opening hours=24/7
|
opening_hours=24/7: RU:Tag:opening hours=24/7
|
||||||
place=island: RU:Tag:place=island
|
place=island: RU:Tag:place=island
|
||||||
place=town: RU:Tag:place=town
|
place=town: RU:Tag:place=town
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue