merge 19364:19600 of rails_port into the openID branch
renamed migration 049_add_open_id_authentication_tables.rb to 050_add_open_id_authentication_tables.rb
This commit is contained in:
commit
84db1d66b7
70 changed files with 1149 additions and 241 deletions
|
@ -208,9 +208,11 @@ class ApplicationController < ActionController::Base
|
||||||
end
|
end
|
||||||
|
|
||||||
def api_call_timeout
|
def api_call_timeout
|
||||||
Timeout::timeout(APP_CONFIG['api_timeout'], OSM::APITimeoutError) do
|
SystemTimer.timeout_after(APP_CONFIG['api_timeout']) do
|
||||||
yield
|
yield
|
||||||
end
|
end
|
||||||
|
rescue Timeout::Error
|
||||||
|
raise OSM::APITimeoutError
|
||||||
end
|
end
|
||||||
|
|
||||||
##
|
##
|
||||||
|
@ -226,6 +228,8 @@ class ApplicationController < ActionController::Base
|
||||||
case
|
case
|
||||||
when user.nil? then user = :none
|
when user.nil? then user = :none
|
||||||
when user.display_name == controller.params[:display_name] then user = :self
|
when user.display_name == controller.params[:display_name] then user = :self
|
||||||
|
when user.administrator? then user = :administrator
|
||||||
|
when user.moderator? then user = :moderator
|
||||||
else user = :other
|
else user = :other
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -240,10 +244,16 @@ class ApplicationController < ActionController::Base
|
||||||
##
|
##
|
||||||
# extend expire_action to expire all variants
|
# extend expire_action to expire all variants
|
||||||
def expire_action(options = {})
|
def expire_action(options = {})
|
||||||
path = fragment_cache_key(options).gsub('?', '.').gsub(':', '.')
|
path = ActionCachePath.path_for(self, options, false).gsub('?', '.').gsub(':', '.')
|
||||||
expire_fragment(Regexp.new(Regexp.escape(path) + "\\..*"))
|
expire_fragment(Regexp.new(Regexp.escape(path) + "\\..*"))
|
||||||
end
|
end
|
||||||
|
|
||||||
|
##
|
||||||
|
# is the requestor logged in?
|
||||||
|
def logged_in?
|
||||||
|
!@user.nil?
|
||||||
|
end
|
||||||
|
|
||||||
private
|
private
|
||||||
|
|
||||||
# extract authorisation credentials from headers, returns user = nil if none
|
# extract authorisation credentials from headers, returns user = nil if none
|
||||||
|
|
|
@ -81,9 +81,15 @@ class BrowseController < ApplicationController
|
||||||
private
|
private
|
||||||
|
|
||||||
def timeout
|
def timeout
|
||||||
Timeout::timeout(30) do
|
SystemTimer.timeout_after(30) do
|
||||||
yield
|
yield
|
||||||
end
|
end
|
||||||
|
rescue ActionView::TemplateError => ex
|
||||||
|
if ex.original_exception.is_a?(Timeout::Error)
|
||||||
|
render :action => "timeout", :status => :request_timeout
|
||||||
|
else
|
||||||
|
raise
|
||||||
|
end
|
||||||
rescue Timeout::Error
|
rescue Timeout::Error
|
||||||
render :action => "timeout", :status => :request_timeout
|
render :action => "timeout", :status => :request_timeout
|
||||||
end
|
end
|
||||||
|
|
|
@ -15,6 +15,12 @@ class TraceController < ApplicationController
|
||||||
before_filter :offline_redirect, :only => [:create, :edit, :delete, :data, :api_data, :api_create]
|
before_filter :offline_redirect, :only => [:create, :edit, :delete, :data, :api_data, :api_create]
|
||||||
around_filter :api_call_handle_error, :only => [:api_details, :api_data, :api_create]
|
around_filter :api_call_handle_error, :only => [:api_details, :api_data, :api_create]
|
||||||
|
|
||||||
|
caches_action :list, :unless => :logged_in?, :layout => false
|
||||||
|
caches_action :view, :layout => false
|
||||||
|
caches_action :georss, :layout => true
|
||||||
|
cache_sweeper :trace_sweeper, :only => [:create, :edit, :delete, :api_create]
|
||||||
|
cache_sweeper :tracetag_sweeper, :only => [:create, :edit, :delete, :api_create]
|
||||||
|
|
||||||
# Counts and selects pages of GPX traces for various criteria (by user, tags, public etc.).
|
# Counts and selects pages of GPX traces for various criteria (by user, tags, public etc.).
|
||||||
# target_user - if set, specifies the user to fetch traces for. if not set will fetch all traces
|
# target_user - if set, specifies the user to fetch traces for. if not set will fetch all traces
|
||||||
def list(target_user = nil, action = "list")
|
def list(target_user = nil, action = "list")
|
||||||
|
@ -75,11 +81,15 @@ class TraceController < ApplicationController
|
||||||
conditions[0] += " AND gpx_files.visible = ?"
|
conditions[0] += " AND gpx_files.visible = ?"
|
||||||
conditions << true
|
conditions << true
|
||||||
|
|
||||||
@trace_pages, @traces = paginate(:traces,
|
@page = (params[:page] || 1).to_i
|
||||||
:include => [:user, :tags],
|
@page_size = 20
|
||||||
:conditions => conditions,
|
|
||||||
:order => "gpx_files.timestamp DESC",
|
@traces = Trace.find(:all,
|
||||||
:per_page => 20)
|
:include => [:user, :tags],
|
||||||
|
:conditions => conditions,
|
||||||
|
:order => "gpx_files.timestamp DESC",
|
||||||
|
:offset => (@page - 1) * @page_size,
|
||||||
|
:limit => @page_size)
|
||||||
|
|
||||||
# put together SET of tags across traces, for related links
|
# put together SET of tags across traces, for related links
|
||||||
tagset = Hash.new
|
tagset = Hash.new
|
||||||
|
|
|
@ -16,6 +16,8 @@ class UserController < ApplicationController
|
||||||
|
|
||||||
filter_parameter_logging :password, :pass_crypt, :pass_crypt_confirmation
|
filter_parameter_logging :password, :pass_crypt, :pass_crypt_confirmation
|
||||||
|
|
||||||
|
cache_sweeper :user_sweeper, :only => [:account, :hide, :unhide, :delete]
|
||||||
|
|
||||||
def save
|
def save
|
||||||
@title = t 'user.new.title'
|
@title = t 'user.new.title'
|
||||||
|
|
||||||
|
|
|
@ -84,7 +84,7 @@ class Notifier < ActionMailer::Base
|
||||||
:replyurl => url_for(:host => SERVER_URL,
|
:replyurl => url_for(:host => SERVER_URL,
|
||||||
:controller => "message",
|
:controller => "message",
|
||||||
:action => "new",
|
:action => "new",
|
||||||
:user_id => comment.user.id,
|
:display_name => comment.user.display_name,
|
||||||
:title => "Re: #{comment.diary_entry.title}")
|
:title => "Re: #{comment.diary_entry.title}")
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
28
app/models/trace_sweeper.rb
Normal file
28
app/models/trace_sweeper.rb
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
class TraceSweeper < ActionController::Caching::Sweeper
|
||||||
|
observe Trace
|
||||||
|
|
||||||
|
def after_create(record)
|
||||||
|
expire_cache_for(record)
|
||||||
|
end
|
||||||
|
|
||||||
|
def after_update(record)
|
||||||
|
expire_cache_for(record)
|
||||||
|
end
|
||||||
|
|
||||||
|
def after_destroy(record)
|
||||||
|
expire_cache_for(record)
|
||||||
|
end
|
||||||
|
|
||||||
|
private
|
||||||
|
|
||||||
|
def expire_cache_for(record)
|
||||||
|
expire_action(:controller => 'trace', :action => 'view', :id => record.id)
|
||||||
|
expire_action(:controller => 'trace', :action => 'view', :display_name => record.user.display_name, :id => record.id)
|
||||||
|
|
||||||
|
expire_action(:controller => 'trace', :action => 'list', :display_name => nil, :tag => nil)
|
||||||
|
expire_action(:controller => 'trace', :action => 'list', :display_name => record.user.display_name, :tag => nil)
|
||||||
|
|
||||||
|
expire_action(:controller => 'trace', :action => 'georss', :display_name => nil, :tag => nil)
|
||||||
|
expire_action(:controller => 'trace', :action => 'georss', :display_name => record.user.display_name, :tag => nil)
|
||||||
|
end
|
||||||
|
end
|
25
app/models/tracetag_sweeper.rb
Normal file
25
app/models/tracetag_sweeper.rb
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
class TracetagSweeper < ActionController::Caching::Sweeper
|
||||||
|
observe Tracetag
|
||||||
|
|
||||||
|
def after_create(record)
|
||||||
|
expire_cache_for(record)
|
||||||
|
end
|
||||||
|
|
||||||
|
def after_update(record)
|
||||||
|
expire_cache_for(record)
|
||||||
|
end
|
||||||
|
|
||||||
|
def after_destroy(record)
|
||||||
|
expire_cache_for(record)
|
||||||
|
end
|
||||||
|
|
||||||
|
private
|
||||||
|
|
||||||
|
def expire_cache_for(record)
|
||||||
|
expire_action(:controller => 'trace', :action => 'list', :display_name => nil, :tag => record.tag)
|
||||||
|
expire_action(:controller => 'trace', :action => 'list', :display_name => record.trace.user.display_name, :tag => record.tag)
|
||||||
|
|
||||||
|
expire_action(:controller => 'trace', :action => 'georss', :display_name => nil, :tag => record.tag)
|
||||||
|
expire_action(:controller => 'trace', :action => 'georss', :display_name => record.trace.user.display_name, :tag => record.tag)
|
||||||
|
end
|
||||||
|
end
|
51
app/models/user_sweeper.rb
Normal file
51
app/models/user_sweeper.rb
Normal file
|
@ -0,0 +1,51 @@
|
||||||
|
class UserSweeper < ActionController::Caching::Sweeper
|
||||||
|
observe User
|
||||||
|
|
||||||
|
def before_update(record)
|
||||||
|
expire_cache_for(User.find(record.id), record)
|
||||||
|
end
|
||||||
|
|
||||||
|
def before_destroy(record)
|
||||||
|
expire_cache_for(record, nil)
|
||||||
|
end
|
||||||
|
|
||||||
|
private
|
||||||
|
|
||||||
|
def expire_cache_for(old_record, new_record)
|
||||||
|
if old_record and
|
||||||
|
(new_record.nil? or
|
||||||
|
old_record.visible != new_record.visible or
|
||||||
|
old_record.display_name != new_record.display_name)
|
||||||
|
old_record.diary_entries.each do |entry|
|
||||||
|
expire_action(:controller => 'diary_entry', :action => 'view', :id => entry.id)
|
||||||
|
expire_action(:controller => 'diary_entry', :action => 'list', :language => entry.language_code, :display_name => nil)
|
||||||
|
expire_action(:controller => 'diary_entry', :action => 'rss', :language => entry.language_code, :display_name => nil)
|
||||||
|
end
|
||||||
|
|
||||||
|
expire_action(:controller => 'diary_entry', :action => 'list', :language => nil, :display_name => nil)
|
||||||
|
expire_action(:controller => 'diary_entry', :action => 'list', :language => nil, :display_name => old_record.display_name)
|
||||||
|
|
||||||
|
expire_action(:controller => 'diary_entry', :action => 'rss', :language => nil, :display_name => nil)
|
||||||
|
expire_action(:controller => 'diary_entry', :action => 'rss', :language => nil, :display_name => old_record.display_name)
|
||||||
|
|
||||||
|
old_record.traces.each do |trace|
|
||||||
|
expire_action(:controller => 'trace', :action => 'view', :id => trace.id)
|
||||||
|
expire_action(:controller => 'trace', :action => 'view', :display_name => old_record.display_name, :id => trace.id)
|
||||||
|
|
||||||
|
trace.tags.each do |tag|
|
||||||
|
expire_action(:controller => 'trace', :action => 'list', :display_name => nil, :tag => tag.tag)
|
||||||
|
expire_action(:controller => 'trace', :action => 'list', :display_name => old_record.display_name, :tag => tag.tag)
|
||||||
|
|
||||||
|
expire_action(:controller => 'trace', :action => 'georss', :display_name => nil, :tag => tag.tag)
|
||||||
|
expire_action(:controller => 'trace', :action => 'georss', :display_name => old_record.display_name, :tag => tag.tag)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
expire_action(:controller => 'trace', :action => 'list', :display_name => nil, :tag => nil)
|
||||||
|
expire_action(:controller => 'trace', :action => 'list', :display_name => old_record.display_name, :tag => nil)
|
||||||
|
|
||||||
|
expire_action(:controller => 'trace', :action => 'georss', :display_name => nil, :tag => nil)
|
||||||
|
expire_action(:controller => 'trace', :action => 'georss', :display_name => old_record.display_name, :tag => nil)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
|
@ -1,12 +1,17 @@
|
||||||
<% current_page = @trace_pages.current_page %>
|
<p>
|
||||||
|
|
||||||
<%= t'trace.trace_paging_nav.showing' %>
|
<% if @page > 1 %>
|
||||||
<%= current_page.number %> (<%= current_page.first_item %><%
|
<%= link_to t('trace.trace_paging_nav.previous'), params.merge({ :page => @page - 1 }) %>
|
||||||
if (current_page.first_item < current_page.last_item) # if more than 1 trace on page
|
<% else %>
|
||||||
%>-<%= current_page.last_item %><%
|
<%= t('trace.trace_paging_nav.previous') %>
|
||||||
end %>
|
|
||||||
<%= t'trace.trace_paging_nav.of' %> <%= @trace_pages.item_count %>)
|
|
||||||
|
|
||||||
<% if @trace_pages.page_count > 1 %>
|
|
||||||
| <%= pagination_links_each(@trace_pages, {}) { |n| link_to_page(n) } %>
|
|
||||||
<% end %>
|
<% end %>
|
||||||
|
|
||||||
|
| <%= t('trace.trace_paging_nav.showing_page', :page => @page) %> |
|
||||||
|
|
||||||
|
<% if @traces.size < @page_size %>
|
||||||
|
<%= t('trace.trace_paging_nav.next') %>
|
||||||
|
<% else %>
|
||||||
|
<%= link_to t('trace.trace_paging_nav.next'), params.merge({ :page => @page + 1 }) %>
|
||||||
|
<% end %>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
|
|
@ -42,7 +42,7 @@ Rails::Initializer.run do |config|
|
||||||
config.frameworks -= [ :active_record ]
|
config.frameworks -= [ :active_record ]
|
||||||
end
|
end
|
||||||
|
|
||||||
# Specify gems that this application depends on.
|
# Specify gems that this application depends on.
|
||||||
# They can then be installed with "rake gems:install" on new installations.
|
# They can then be installed with "rake gems:install" on new installations.
|
||||||
# config.gem "bj"
|
# config.gem "bj"
|
||||||
# config.gem "hpricot", :version => '0.6', :source => "http://code.whytheluckystiff.net"
|
# config.gem "hpricot", :version => '0.6', :source => "http://code.whytheluckystiff.net"
|
||||||
|
@ -53,8 +53,9 @@ Rails::Initializer.run do |config|
|
||||||
config.gem 'oauth', :version => '>= 0.3.6'
|
config.gem 'oauth', :version => '>= 0.3.6'
|
||||||
config.gem 'httpclient'
|
config.gem 'httpclient'
|
||||||
config.gem 'ruby-openid', :lib => 'openid', :version => '>=2.0.4'
|
config.gem 'ruby-openid', :lib => 'openid', :version => '>=2.0.4'
|
||||||
|
config.gem 'SystemTimer', :version => '>= 1.1.3', :lib => 'system_timer'
|
||||||
|
|
||||||
# Only load the plugins named here, in the order given. By default, all plugins
|
# Only load the plugins named here, in the order given. By default, all plugins
|
||||||
# in vendor/plugins are loaded in alphabetical order.
|
# in vendor/plugins are loaded in alphabetical order.
|
||||||
# :all can be used as a placeholder for all plugins not explicitly named
|
# :all can be used as a placeholder for all plugins not explicitly named
|
||||||
# config.plugins = [ :exception_notification, :ssl_requirement, :all ]
|
# config.plugins = [ :exception_notification, :ssl_requirement, :all ]
|
||||||
|
@ -71,7 +72,7 @@ Rails::Initializer.run do |config|
|
||||||
|
|
||||||
# Your secret key for verifying cookie session data integrity.
|
# Your secret key for verifying cookie session data integrity.
|
||||||
# If you change this key, all old sessions will become invalid!
|
# If you change this key, all old sessions will become invalid!
|
||||||
# Make sure the secret is at least 30 characters and all random,
|
# Make sure the secret is at least 30 characters and all random,
|
||||||
# no regular words or you'll be exposed to dictionary attacks.
|
# no regular words or you'll be exposed to dictionary attacks.
|
||||||
config.action_controller.session = {
|
config.action_controller.session = {
|
||||||
:session_key => '_osm_session',
|
:session_key => '_osm_session',
|
||||||
|
|
|
@ -15,6 +15,8 @@ module ActiveRecord
|
||||||
rescue ActiveRecord::StatementInvalid => ex
|
rescue ActiveRecord::StatementInvalid => ex
|
||||||
if ex.message =~ /^OSM::APITimeoutError: /
|
if ex.message =~ /^OSM::APITimeoutError: /
|
||||||
raise OSM::APITimeoutError.new
|
raise OSM::APITimeoutError.new
|
||||||
|
elsif ex.message =~ /^Timeout::Error: /
|
||||||
|
raise Timeout::Error.new("time's up!")
|
||||||
else
|
else
|
||||||
raise
|
raise
|
||||||
end
|
end
|
||||||
|
|
|
@ -685,9 +685,6 @@ af:
|
||||||
see_your_traces: Sien al u spore
|
see_your_traces: Sien al u spore
|
||||||
trace_optionals:
|
trace_optionals:
|
||||||
tags: Etikette
|
tags: Etikette
|
||||||
trace_paging_nav:
|
|
||||||
of: van
|
|
||||||
showing: Wys bladsy
|
|
||||||
view:
|
view:
|
||||||
delete_track: Verwyder hierdie spoor
|
delete_track: Verwyder hierdie spoor
|
||||||
description: "Beskrywing:"
|
description: "Beskrywing:"
|
||||||
|
|
|
@ -220,6 +220,13 @@ ar:
|
||||||
zoom_or_select: قم بالتكبير أو اختر منطقة من الخريطة لعرضها
|
zoom_or_select: قم بالتكبير أو اختر منطقة من الخريطة لعرضها
|
||||||
tag_details:
|
tag_details:
|
||||||
tags: "الوسوم:"
|
tags: "الوسوم:"
|
||||||
|
timeout:
|
||||||
|
sorry: عذرًا، بيانات {{type}} بالمعرّف {{id}} استغرقت وقتًا طويلا للاسترداد.
|
||||||
|
type:
|
||||||
|
changeset: حزمة التغييرات
|
||||||
|
node: العقدة
|
||||||
|
relation: العلاقة
|
||||||
|
way: الطريق
|
||||||
way:
|
way:
|
||||||
download: "{{download_xml_link}}، {{view_history_link}} أو {{edit_link}}"
|
download: "{{download_xml_link}}، {{view_history_link}} أو {{edit_link}}"
|
||||||
download_xml: نزّل إكس إم إل
|
download_xml: نزّل إكس إم إل
|
||||||
|
@ -395,6 +402,7 @@ ar:
|
||||||
other: حوالي {{count}}كم
|
other: حوالي {{count}}كم
|
||||||
zero: أقل من 1 كم
|
zero: أقل من 1 كم
|
||||||
results:
|
results:
|
||||||
|
more_results: المزيد من النتائج
|
||||||
no_results: لم يتم العثور على نتائج
|
no_results: لم يتم العثور على نتائج
|
||||||
search:
|
search:
|
||||||
title:
|
title:
|
||||||
|
@ -1285,8 +1293,9 @@ ar:
|
||||||
trace_optionals:
|
trace_optionals:
|
||||||
tags: الوسوم
|
tags: الوسوم
|
||||||
trace_paging_nav:
|
trace_paging_nav:
|
||||||
of: من
|
next: التالي »
|
||||||
showing: إظهار الصفحة
|
previous: "« السابق"
|
||||||
|
showing_page: إظهار الصفحة {{page}}
|
||||||
view:
|
view:
|
||||||
delete_track: احذف هذا الأثر
|
delete_track: احذف هذا الأثر
|
||||||
description: "الوصف:"
|
description: "الوصف:"
|
||||||
|
|
|
@ -1224,9 +1224,6 @@ arz:
|
||||||
traces_waiting: لديك {{count}} أثر فى انتظار التحميل. يرجى مراعاه الانتظار قبل تحميل أكثر من ذلك، بحيث تتجنب إعاقه طابور التحميل لباقى المستخدمين.
|
traces_waiting: لديك {{count}} أثر فى انتظار التحميل. يرجى مراعاه الانتظار قبل تحميل أكثر من ذلك، بحيث تتجنب إعاقه طابور التحميل لباقى المستخدمين.
|
||||||
trace_optionals:
|
trace_optionals:
|
||||||
tags: الوسوم
|
tags: الوسوم
|
||||||
trace_paging_nav:
|
|
||||||
of: من
|
|
||||||
showing: إظهار الصفحة
|
|
||||||
view:
|
view:
|
||||||
delete_track: احذف هذا الأثر
|
delete_track: احذف هذا الأثر
|
||||||
description: "الوصف:"
|
description: "الوصف:"
|
||||||
|
|
|
@ -541,9 +541,6 @@ be:
|
||||||
traces_waiting: У вас {{count}} трэкаў у чарзе. Калі ласка, пачакайце, пакуль яны будуць апрацаваныя, каб не блакірваць чаргу для астатніх карстальнікаў.
|
traces_waiting: У вас {{count}} трэкаў у чарзе. Калі ласка, пачакайце, пакуль яны будуць апрацаваныя, каб не блакірваць чаргу для астатніх карстальнікаў.
|
||||||
trace_optionals:
|
trace_optionals:
|
||||||
tags: Цэтлікі
|
tags: Цэтлікі
|
||||||
trace_paging_nav:
|
|
||||||
of: з
|
|
||||||
showing: Прагляд старонкі
|
|
||||||
view:
|
view:
|
||||||
delete_track: Выдаліць гэты трэк
|
delete_track: Выдаліць гэты трэк
|
||||||
description: "Апісанне:"
|
description: "Апісанне:"
|
||||||
|
|
|
@ -1271,9 +1271,6 @@ br:
|
||||||
traces_waiting: Bez' hoc'h eus {{count}} roud a c'hortoz bezañ kaset. Gwell e vefe gortoz a-raok kas re all, evit chom hep stankañ al lostennad evit an implijerien all.
|
traces_waiting: Bez' hoc'h eus {{count}} roud a c'hortoz bezañ kaset. Gwell e vefe gortoz a-raok kas re all, evit chom hep stankañ al lostennad evit an implijerien all.
|
||||||
trace_optionals:
|
trace_optionals:
|
||||||
tags: Balizennoù
|
tags: Balizennoù
|
||||||
trace_paging_nav:
|
|
||||||
of: eus
|
|
||||||
showing: O tiskouez ar bajenn
|
|
||||||
view:
|
view:
|
||||||
delete_track: Dilemel ar roudenn-mañ
|
delete_track: Dilemel ar roudenn-mañ
|
||||||
description: "Deskrivadur :"
|
description: "Deskrivadur :"
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
# Exported from translatewiki.net
|
# Exported from translatewiki.net
|
||||||
# Export driver: syck
|
# Export driver: syck
|
||||||
# Author: Bilbo
|
# Author: Bilbo
|
||||||
|
# Author: Masox
|
||||||
# Author: Mormegil
|
# Author: Mormegil
|
||||||
cs:
|
cs:
|
||||||
activerecord:
|
activerecord:
|
||||||
|
@ -156,17 +157,22 @@ cs:
|
||||||
node: Uzel
|
node: Uzel
|
||||||
relation: Relace
|
relation: Relace
|
||||||
way: Cesta
|
way: Cesta
|
||||||
|
start:
|
||||||
|
manually_select: Ručně vybrat jinou oblast
|
||||||
|
view_data: Ukázat data k zobrazené mapě
|
||||||
start_rjs:
|
start_rjs:
|
||||||
data_frame_title: Data
|
data_frame_title: Data
|
||||||
data_layer_name: Data
|
data_layer_name: Data
|
||||||
details: Detaily
|
details: Detaily
|
||||||
drag_a_box: Myší na mapě označte zvolenou oblast
|
drag_a_box: Myší na mapě označte zvolenou oblast
|
||||||
|
edited_by_user_at_timestamp: Upravil [[user]] dne [[timestamp]]
|
||||||
history_for_feature: Historie pro [[feature]]
|
history_for_feature: Historie pro [[feature]]
|
||||||
load_data: Nahrát data
|
load_data: Nahrát data
|
||||||
loaded_an_area_with_num_features: Máte načtenu oblast, která obsahuje [[num_features]] prvků. Některé prohlížeče mohou mít potíže při zobrazování takového množství dat. Obecně fungují prohlížeče nejlépe při zobrazování ne více než sta prvků současně – větší množství může způsobit, že bude prohlížeč reagovat pomalu či vůbec. Pokud jste si jisti, že chcete tato data zobrazit, klikněte na tlačítko níže.
|
loaded_an_area_with_num_features: Máte načtenu oblast, která obsahuje [[num_features]] prvků. Některé prohlížeče mohou mít potíže při zobrazování takového množství dat. Obecně fungují prohlížeče nejlépe při zobrazování ne více než sta prvků současně – větší množství může způsobit, že bude prohlížeč reagovat pomalu či vůbec. Pokud jste si jisti, že chcete tato data zobrazit, klikněte na tlačítko níže.
|
||||||
loading: Načítá se…
|
loading: Načítá se…
|
||||||
manually_select: Ručně vybrat jinou oblast
|
manually_select: Ručně vybrat jinou oblast
|
||||||
object_list:
|
object_list:
|
||||||
|
api: Získat tuto oblast pomocí API
|
||||||
back: Zobrazit seznam objektů
|
back: Zobrazit seznam objektů
|
||||||
details: Detaily
|
details: Detaily
|
||||||
heading: Seznam objektů
|
heading: Seznam objektů
|
||||||
|
@ -187,6 +193,13 @@ cs:
|
||||||
zoom_or_select: Zvolte větší měřítko nebo vyberte nějakou oblast mapy
|
zoom_or_select: Zvolte větší měřítko nebo vyberte nějakou oblast mapy
|
||||||
tag_details:
|
tag_details:
|
||||||
tags: "Tagy:"
|
tags: "Tagy:"
|
||||||
|
timeout:
|
||||||
|
sorry: Promiňte, ale načítání dat {{type}} číslo {{id}} trvalo příliš dlouho.
|
||||||
|
type:
|
||||||
|
changeset: sady změn
|
||||||
|
node: uzlu
|
||||||
|
relation: relace
|
||||||
|
way: cesty
|
||||||
way:
|
way:
|
||||||
download: "{{download_xml_link}}, {{view_history_link}} nebo {{edit_link}}"
|
download: "{{download_xml_link}}, {{view_history_link}} nebo {{edit_link}}"
|
||||||
download_xml: Stáhnout XML
|
download_xml: Stáhnout XML
|
||||||
|
@ -235,11 +248,28 @@ cs:
|
||||||
title_user: Sady změn uživatele {{user}}
|
title_user: Sady změn uživatele {{user}}
|
||||||
title_user_bbox: Sady změn uživatele {{user}} v {{bbox}}
|
title_user_bbox: Sady změn uživatele {{user}} v {{bbox}}
|
||||||
diary_entry:
|
diary_entry:
|
||||||
|
diary_entry:
|
||||||
|
comment_count:
|
||||||
|
few: "{{count}} komentáře"
|
||||||
|
one: 1 komentář
|
||||||
|
other: "{{count}} komentářů"
|
||||||
|
comment_link: Okomentovat tento zápis
|
||||||
|
posted_by: Zapsal {{link_user}} v {{created}} v jazyce {{language_link}}
|
||||||
|
reply_link: Odpovědět na tento zápis
|
||||||
edit:
|
edit:
|
||||||
language: "Jazyk:"
|
language: "Jazyk:"
|
||||||
save_button: Uložit
|
save_button: Uložit
|
||||||
subject: "Předmět:"
|
subject: "Předmět:"
|
||||||
use_map_link: použít mapu
|
use_map_link: použít mapu
|
||||||
|
feed:
|
||||||
|
language:
|
||||||
|
description: Aktuální záznamy v deníčcích uživatelů OpenStreetMap v jazyce {{language_name}}
|
||||||
|
title: Deníčkové záznamy OpenStreetMap v jazyce {{language_name}}
|
||||||
|
list:
|
||||||
|
in_language_title: Deníčkové záznamy v jazyce {{language}}
|
||||||
|
recent_entries: "Aktuální deníčkové záznamy:"
|
||||||
|
title: Deníčky uživatelů
|
||||||
|
user_title: Deníček uživatele {{user}}
|
||||||
no_such_user:
|
no_such_user:
|
||||||
heading: Uživatel {{user}} neexistuje
|
heading: Uživatel {{user}} neexistuje
|
||||||
view:
|
view:
|
||||||
|
@ -247,6 +277,7 @@ cs:
|
||||||
login: Přihlaste se
|
login: Přihlaste se
|
||||||
login_to_leave_a_comment: "{{login_link}} k zanechání komentáře"
|
login_to_leave_a_comment: "{{login_link}} k zanechání komentáře"
|
||||||
save_button: Uložit
|
save_button: Uložit
|
||||||
|
title: Deníčky uživatelů | {{user}}
|
||||||
export:
|
export:
|
||||||
start:
|
start:
|
||||||
add_marker: Přidat do mapy značku
|
add_marker: Přidat do mapy značku
|
||||||
|
@ -260,6 +291,7 @@ cs:
|
||||||
latitude: "Šířka:"
|
latitude: "Šířka:"
|
||||||
licence: Licence
|
licence: Licence
|
||||||
longitude: "Délka:"
|
longitude: "Délka:"
|
||||||
|
manually_select: Ručně vybrat jinou oblast
|
||||||
mapnik_image: Obrázek z Mapniku
|
mapnik_image: Obrázek z Mapniku
|
||||||
max: max.
|
max: max.
|
||||||
options: Nastavení
|
options: Nastavení
|
||||||
|
@ -306,11 +338,52 @@ cs:
|
||||||
geonames: Výsledky z <a href="http://www.geonames.org/">GeoNames</a>
|
geonames: Výsledky z <a href="http://www.geonames.org/">GeoNames</a>
|
||||||
latlon: Výsledky z <a href="http://openstreetmap.org/">interní databáze</a>
|
latlon: Výsledky z <a href="http://openstreetmap.org/">interní databáze</a>
|
||||||
osm_namefinder: Výsledky z <a href="http://gazetteer.openstreetmap.org/namefinder/">OpenStreetMap Namefinder</a>
|
osm_namefinder: Výsledky z <a href="http://gazetteer.openstreetmap.org/namefinder/">OpenStreetMap Namefinder</a>
|
||||||
|
osm_nominatim: Výsledky z <a href="http://nominatim.openstreetmap.org/">OpenStreetMap Nominatim</a>
|
||||||
uk_postcode: Výsledky z <a href="http://www.npemap.org.uk/">NPEMap / FreeThe Postcode</a>
|
uk_postcode: Výsledky z <a href="http://www.npemap.org.uk/">NPEMap / FreeThe Postcode</a>
|
||||||
us_postcode: Výsledky z <a href="http://geocoder.us/">Geocoder.us</a>
|
us_postcode: Výsledky z <a href="http://geocoder.us/">Geocoder.us</a>
|
||||||
search_osm_namefinder:
|
search_osm_namefinder:
|
||||||
suffix_parent: "{{suffix}} ({{parentdistance}} na {{parentdirection}} od {{parentname}})"
|
suffix_parent: "{{suffix}} ({{parentdistance}} na {{parentdirection}} od {{parentname}})"
|
||||||
suffix_place: ", {{distance}} na {{direction}} od {{placename}}"
|
suffix_place: ", {{distance}} na {{direction}} od {{placename}}"
|
||||||
|
search_osm_nominatim:
|
||||||
|
prefix:
|
||||||
|
leisure:
|
||||||
|
garden: Zahrada
|
||||||
|
miniature_golf: Minigolf
|
||||||
|
park: Park
|
||||||
|
place:
|
||||||
|
airport: Letiště
|
||||||
|
city: Velkoměsto
|
||||||
|
country: Stát
|
||||||
|
farm: Farma
|
||||||
|
hamlet: Osada
|
||||||
|
house: Dům
|
||||||
|
houses: Budovy
|
||||||
|
island: Ostrov
|
||||||
|
locality: Oblast
|
||||||
|
municipality: Obecní úřad
|
||||||
|
postcode: PSČ
|
||||||
|
region: Region
|
||||||
|
sea: Moře
|
||||||
|
state: Stát
|
||||||
|
town: Město
|
||||||
|
village: Vesnice
|
||||||
|
tourism:
|
||||||
|
alpine_hut: Vysokohorská chata
|
||||||
|
attraction: Turistická atrakce
|
||||||
|
camp_site: Tábořiště, kemp
|
||||||
|
caravan_site: Autokemping
|
||||||
|
chalet: Velká chata
|
||||||
|
guest_house: Penzion
|
||||||
|
hostel: Hostel
|
||||||
|
hotel: Hotel
|
||||||
|
information: Turistické informace
|
||||||
|
lean_to: Přístřešek
|
||||||
|
motel: Motel
|
||||||
|
museum: Muzeum
|
||||||
|
theme_park: Zábavní park
|
||||||
|
valley: Údolí
|
||||||
|
viewpoint: Místo s dobrým výhledem
|
||||||
|
zoo: Zoo
|
||||||
javascripts:
|
javascripts:
|
||||||
map:
|
map:
|
||||||
base:
|
base:
|
||||||
|
@ -505,24 +578,34 @@ cs:
|
||||||
close: Zavřít
|
close: Zavřít
|
||||||
search_results: Výsledky vyhledávání
|
search_results: Výsledky vyhledávání
|
||||||
trace:
|
trace:
|
||||||
|
create:
|
||||||
|
trace_uploaded: Váš GPX soubor byl uložen a čeká na zařazení do databáze. Obvykle to netrvá víc jak půl hodiny. Až bude zařazen, budete informováni emailem.
|
||||||
|
upload_trace: Nahrát GPS záznam
|
||||||
edit:
|
edit:
|
||||||
description: "Popis:"
|
description: "Popis:"
|
||||||
download: stáhnout
|
download: stáhnout
|
||||||
edit: upravit
|
edit: upravit
|
||||||
filename: "Název souboru:"
|
filename: "Název souboru:"
|
||||||
|
heading: Úprava GPS záznamu {{name}}
|
||||||
map: mapa
|
map: mapa
|
||||||
owner: "Vlastník:"
|
owner: "Vlastník:"
|
||||||
|
points: "Body:"
|
||||||
save_button: Uložit změny
|
save_button: Uložit změny
|
||||||
|
start_coord: "Souřadnice začátku:"
|
||||||
tags: "Tagy:"
|
tags: "Tagy:"
|
||||||
tags_help: oddělené čárkou
|
tags_help: oddělené čárkou
|
||||||
uploaded_at: "Nahráno v:"
|
uploaded_at: "Nahráno v:"
|
||||||
visibility: "Viditelnost:"
|
visibility: "Viditelnost:"
|
||||||
visibility_help: co tohle znamená?
|
visibility_help: co tohle znamená?
|
||||||
|
list:
|
||||||
|
your_traces: Vaše GPS záznamy
|
||||||
no_such_user:
|
no_such_user:
|
||||||
heading: Uživatel {{user}} neexistuje
|
heading: Uživatel {{user}} neexistuje
|
||||||
trace:
|
trace:
|
||||||
ago: před {{time_in_words_ago}}
|
ago: před {{time_in_words_ago}}
|
||||||
|
count_points: "{{count}} body"
|
||||||
edit: upravit
|
edit: upravit
|
||||||
|
edit_map: Upravit mapu
|
||||||
in: v
|
in: v
|
||||||
map: mapa
|
map: mapa
|
||||||
more: více
|
more: více
|
||||||
|
@ -536,11 +619,14 @@ cs:
|
||||||
upload_gpx: Nahrát GPX soubor
|
upload_gpx: Nahrát GPX soubor
|
||||||
visibility: Viditelnost
|
visibility: Viditelnost
|
||||||
visibility_help: co tohle znamená?
|
visibility_help: co tohle znamená?
|
||||||
|
trace_header:
|
||||||
|
see_all_traces: Zobrazit všechny GPS záznamy
|
||||||
|
see_just_your_traces: Zobrazit pouze vaše GPS záznamy nebo nahrát nový GPS záznam
|
||||||
|
see_your_traces: Zobrazit všechny vaše GPS záznamy
|
||||||
trace_optionals:
|
trace_optionals:
|
||||||
tags: Tagy
|
tags: Tagy
|
||||||
trace_paging_nav:
|
trace_paging_nav:
|
||||||
of: z
|
showing_page: Zobrazuji stranu {{page}}
|
||||||
showing: Zobrazuji stranu
|
|
||||||
view:
|
view:
|
||||||
description: "Popis:"
|
description: "Popis:"
|
||||||
download: stáhnout
|
download: stáhnout
|
||||||
|
@ -549,8 +635,14 @@ cs:
|
||||||
map: mapa
|
map: mapa
|
||||||
owner: "Vlastník:"
|
owner: "Vlastník:"
|
||||||
tags: "Tagy:"
|
tags: "Tagy:"
|
||||||
|
trace_not_found: GPS záznam nenalezen!
|
||||||
uploaded: "Nahráno v:"
|
uploaded: "Nahráno v:"
|
||||||
visibility: "Viditelnost:"
|
visibility: "Viditelnost:"
|
||||||
|
visibility:
|
||||||
|
identifiable: Identifikovatelný (zobrazuje se v seznamu a jako identifikovatelné, uspořádané body s časovou značkou)
|
||||||
|
private: Soukromý (dostupná jedině jako anonymní, neuspořádané body)
|
||||||
|
public: Veřejný (zobrazuje se v seznamu i jako anonymní, neuspořádané body)
|
||||||
|
trackable: Trackable (dostupný jedině jako anonymní, uspořádané body s časovými značkami)
|
||||||
user:
|
user:
|
||||||
account:
|
account:
|
||||||
email never displayed publicly: (nikde se veřejně nezobrazuje)
|
email never displayed publicly: (nikde se veřejně nezobrazuje)
|
||||||
|
@ -559,6 +651,7 @@ cs:
|
||||||
longitude: "Délka:"
|
longitude: "Délka:"
|
||||||
make edits public button: Zvěřejnit všechny moje úpravy
|
make edits public button: Zvěřejnit všechny moje úpravy
|
||||||
my settings: Moje nastavení
|
my settings: Moje nastavení
|
||||||
|
no home location: Nezadali jste polohu svého bydliště.
|
||||||
preferred languages: "Preferované jazyky:"
|
preferred languages: "Preferované jazyky:"
|
||||||
profile description: "Popis profilu:"
|
profile description: "Popis profilu:"
|
||||||
public editing:
|
public editing:
|
||||||
|
@ -575,6 +668,8 @@ cs:
|
||||||
button: Potvrdit
|
button: Potvrdit
|
||||||
confirm_email:
|
confirm_email:
|
||||||
button: Potvrdit
|
button: Potvrdit
|
||||||
|
failure: Tento kód byl už pro potvrzení e-mailové adresy použit.
|
||||||
|
success: Vaše e-mailová adresa byla potvrzena, děkujeme za registraci!
|
||||||
friend_map:
|
friend_map:
|
||||||
nearby mapper: "Nedaleký uživatel: [[nearby_user]]"
|
nearby mapper: "Nedaleký uživatel: [[nearby_user]]"
|
||||||
your location: Vaše poloha
|
your location: Vaše poloha
|
||||||
|
@ -625,6 +720,7 @@ cs:
|
||||||
reset_password:
|
reset_password:
|
||||||
confirm password: "Potvrdit heslo:"
|
confirm password: "Potvrdit heslo:"
|
||||||
flash changed: Vaše heslo bylo změněno.
|
flash changed: Vaše heslo bylo změněno.
|
||||||
|
flash token bad: Odpovídající kód nebyl nalezen, možná zkontrolujte URL?
|
||||||
heading: Vyresetovat heslo pro {{user}}
|
heading: Vyresetovat heslo pro {{user}}
|
||||||
password: "Heslo:"
|
password: "Heslo:"
|
||||||
reset: Vyresetovat heslo
|
reset: Vyresetovat heslo
|
||||||
|
@ -637,6 +733,7 @@ cs:
|
||||||
ago: (před {{time_in_words_ago}})
|
ago: (před {{time_in_words_ago}})
|
||||||
blocks on me: moje zablokování
|
blocks on me: moje zablokování
|
||||||
change your settings: změnit vaše nastavení
|
change your settings: změnit vaše nastavení
|
||||||
|
confirm: Potvrdit
|
||||||
delete image: Smazat obrázek
|
delete image: Smazat obrázek
|
||||||
description: Popis
|
description: Popis
|
||||||
diary: deníček
|
diary: deníček
|
||||||
|
@ -660,3 +757,8 @@ cs:
|
||||||
user image heading: Obrázek uživatele
|
user image heading: Obrázek uživatele
|
||||||
user location: Pozice uživatele
|
user location: Pozice uživatele
|
||||||
your friends: Vaši přátelé
|
your friends: Vaši přátelé
|
||||||
|
user_role:
|
||||||
|
grant:
|
||||||
|
confirm: Potvrdit
|
||||||
|
revoke:
|
||||||
|
confirm: Potvrdit
|
||||||
|
|
|
@ -6,18 +6,26 @@
|
||||||
da:
|
da:
|
||||||
activerecord:
|
activerecord:
|
||||||
attributes:
|
attributes:
|
||||||
|
diary_comment:
|
||||||
|
body: Brødtekst
|
||||||
diary_entry:
|
diary_entry:
|
||||||
|
language: Sprog
|
||||||
|
latitude: Breddegrad
|
||||||
|
longitude: Længdegrad
|
||||||
title: Titel
|
title: Titel
|
||||||
user: Bruger
|
user: Bruger
|
||||||
friend:
|
friend:
|
||||||
friend: Ven
|
friend: Ven
|
||||||
user: Bruger
|
user: Bruger
|
||||||
message:
|
message:
|
||||||
|
body: Brødtekst
|
||||||
recipient: Modtager
|
recipient: Modtager
|
||||||
sender: Afsender
|
sender: Afsender
|
||||||
title: Titel
|
title: Titel
|
||||||
trace:
|
trace:
|
||||||
description: Beskrivelse
|
description: Beskrivelse
|
||||||
|
latitude: Breddegrad
|
||||||
|
longitude: Længdegrad
|
||||||
name: Navn
|
name: Navn
|
||||||
public: Offentlig
|
public: Offentlig
|
||||||
size: Størrelse
|
size: Størrelse
|
||||||
|
@ -28,7 +36,7 @@ da:
|
||||||
description: Beskrivelse
|
description: Beskrivelse
|
||||||
email: E-mail
|
email: E-mail
|
||||||
languages: Sprog
|
languages: Sprog
|
||||||
pass_crypt: Kodeord
|
pass_crypt: Adgangskode
|
||||||
models:
|
models:
|
||||||
country: Land
|
country: Land
|
||||||
diary_comment: Dagbogskommentar
|
diary_comment: Dagbogskommentar
|
||||||
|
@ -92,6 +100,7 @@ da:
|
||||||
loading: Indlæsning...
|
loading: Indlæsning...
|
||||||
node:
|
node:
|
||||||
download: "{{download_xml_link}}, {{view_history_link}} eller {{edit_link}}"
|
download: "{{download_xml_link}}, {{view_history_link}} eller {{edit_link}}"
|
||||||
|
download_xml: Hent XML
|
||||||
edit: redigér
|
edit: redigér
|
||||||
node: Punkt
|
node: Punkt
|
||||||
node_title: "Punkt: {{node_name}}"
|
node_title: "Punkt: {{node_name}}"
|
||||||
|
@ -101,6 +110,7 @@ da:
|
||||||
part_of: "Del af:"
|
part_of: "Del af:"
|
||||||
node_history:
|
node_history:
|
||||||
download: "{{download_xml_link}} eller {{view_details_link}}"
|
download: "{{download_xml_link}} eller {{view_details_link}}"
|
||||||
|
download_xml: Hent XML
|
||||||
node_history: Punkthistorik
|
node_history: Punkthistorik
|
||||||
node_history_title: "Punkthistorik: {{node_name}}"
|
node_history_title: "Punkthistorik: {{node_name}}"
|
||||||
view_details: vis detaljer
|
view_details: vis detaljer
|
||||||
|
@ -125,6 +135,7 @@ da:
|
||||||
part_of: "Del af:"
|
part_of: "Del af:"
|
||||||
relation_history:
|
relation_history:
|
||||||
download: "{{download_xml_link}} eller {{view_details_link}}"
|
download: "{{download_xml_link}} eller {{view_details_link}}"
|
||||||
|
download_xml: Hent XML
|
||||||
relation_history: Relationshistorik
|
relation_history: Relationshistorik
|
||||||
relation_history_title: "Relationshistorik: {{relation_name}}"
|
relation_history_title: "Relationshistorik: {{relation_name}}"
|
||||||
view_details: vis detaljer
|
view_details: vis detaljer
|
||||||
|
@ -144,6 +155,7 @@ da:
|
||||||
drag_a_box: Træk en kasse på kortet for at vælge et område
|
drag_a_box: Træk en kasse på kortet for at vælge et område
|
||||||
edited_by_user_at_timestamp: Redigeret af [[user]], [[timestamp]]
|
edited_by_user_at_timestamp: Redigeret af [[user]], [[timestamp]]
|
||||||
history_for_feature: Historik for [[feature]]
|
history_for_feature: Historik for [[feature]]
|
||||||
|
load_data: Indlæs data
|
||||||
loaded_an_area_with_num_features: "Du har indlæst et område som indeholder [[num_features]] objekter. Nogle browsere kan have problemer ved håndtering af så meget data. Browsere fungerer generelt bedst med mindre end 100 objekter ad gangen: flere objekter kan gøre at din browser bliver langsom. Hvis du er sikker på, at du vil se alle disse data, så klik på knappen nedenfor."
|
loaded_an_area_with_num_features: "Du har indlæst et område som indeholder [[num_features]] objekter. Nogle browsere kan have problemer ved håndtering af så meget data. Browsere fungerer generelt bedst med mindre end 100 objekter ad gangen: flere objekter kan gøre at din browser bliver langsom. Hvis du er sikker på, at du vil se alle disse data, så klik på knappen nedenfor."
|
||||||
loading: Indlæsning...
|
loading: Indlæsning...
|
||||||
manually_select: Vælg et andet område manuelt
|
manually_select: Vælg et andet område manuelt
|
||||||
|
@ -172,6 +184,7 @@ da:
|
||||||
tags: "Egenskaber:"
|
tags: "Egenskaber:"
|
||||||
way:
|
way:
|
||||||
download: "{{download_xml_link}}, {{view_history_link}} eller {{edit_link}}"
|
download: "{{download_xml_link}}, {{view_history_link}} eller {{edit_link}}"
|
||||||
|
download_xml: Hent XML
|
||||||
edit: redigér
|
edit: redigér
|
||||||
view_history: vis historik
|
view_history: vis historik
|
||||||
way: Vej
|
way: Vej
|
||||||
|
@ -184,6 +197,7 @@ da:
|
||||||
part_of: "Del af:"
|
part_of: "Del af:"
|
||||||
way_history:
|
way_history:
|
||||||
download: "{{download_xml_link}} eller {{view_details_link}}"
|
download: "{{download_xml_link}} eller {{view_details_link}}"
|
||||||
|
download_xml: Hent XML
|
||||||
view_details: vis detaljer
|
view_details: vis detaljer
|
||||||
way_history: Vejhistorik
|
way_history: Vejhistorik
|
||||||
way_history_title: "Vejhistorik: {{way_name}}"
|
way_history_title: "Vejhistorik: {{way_name}}"
|
||||||
|
@ -211,6 +225,8 @@ da:
|
||||||
confirm: Bekræft
|
confirm: Bekræft
|
||||||
edit:
|
edit:
|
||||||
language: "Sprog:"
|
language: "Sprog:"
|
||||||
|
latitude: "Breddegrad:"
|
||||||
|
longitude: "Længdegrad:"
|
||||||
save_button: Gem
|
save_button: Gem
|
||||||
subject: "Emne:"
|
subject: "Emne:"
|
||||||
use_map_link: brug kort
|
use_map_link: brug kort
|
||||||
|
@ -218,13 +234,17 @@ da:
|
||||||
start:
|
start:
|
||||||
add_marker: Tilføj en markør på kortet
|
add_marker: Tilføj en markør på kortet
|
||||||
area_to_export: Område at eksportere
|
area_to_export: Område at eksportere
|
||||||
|
embeddable_html: HTML-kode
|
||||||
export_button: Eksportér
|
export_button: Eksportér
|
||||||
format: "Format:"
|
format: "Format:"
|
||||||
format_to_export: Format for eksport
|
format_to_export: Format for eksport
|
||||||
image_size: "Billedestørrelse:"
|
image_size: "Billedestørrelse:"
|
||||||
|
latitude: "Bredde:"
|
||||||
licence: Licens
|
licence: Licens
|
||||||
|
longitude: "Længde:"
|
||||||
manually_select: Vælg et andet område manuelt
|
manually_select: Vælg et andet område manuelt
|
||||||
mapnik_image: Mapnik billede
|
mapnik_image: Mapnik billede
|
||||||
|
max: maks
|
||||||
osm_xml_data: OpenStreetMap XML-data
|
osm_xml_data: OpenStreetMap XML-data
|
||||||
osmarender_image: Osmarender billede
|
osmarender_image: Osmarender billede
|
||||||
scale: Skala
|
scale: Skala
|
||||||
|
@ -238,6 +258,8 @@ da:
|
||||||
manually_select: Vælg et andet område manuelt
|
manually_select: Vælg et andet område manuelt
|
||||||
view_larger_map: Vis større kort
|
view_larger_map: Vis større kort
|
||||||
geocoder:
|
geocoder:
|
||||||
|
description_osm_namefinder:
|
||||||
|
prefix: "{{distance}} {{direction}} for {{type}}"
|
||||||
direction:
|
direction:
|
||||||
east: øst
|
east: øst
|
||||||
north: nord
|
north: nord
|
||||||
|
@ -253,6 +275,15 @@ da:
|
||||||
zero: mindre end 1 km
|
zero: mindre end 1 km
|
||||||
results:
|
results:
|
||||||
no_results: Ingen resultater fundet
|
no_results: Ingen resultater fundet
|
||||||
|
search:
|
||||||
|
title:
|
||||||
|
ca_postcode: Resultater fra <a href="http://geocoder.ca/">Geocoder.CA</a>
|
||||||
|
geonames: Resultater fra <a href="http://www.geonames.org/">GeoNames</a>
|
||||||
|
latlon: Resultater for koordinater
|
||||||
|
osm_namefinder: Resultater fra <a href="http://gazetteer.openstreetmap.org/namefinder/">OpenStreetMap Namefinder</a>
|
||||||
|
osm_nominatim: Resultater fra <a href="http://nominatim.openstreetmap.org/">OpenStreetMap Nominatim</a>
|
||||||
|
uk_postcode: Resultater fra <a href="http://www.npemap.org.uk/">NPEMap / FreeThe Postcode</a>
|
||||||
|
us_postcode: Resultater fra <a href="http://geocoder.us/">Geocoder.us</a>
|
||||||
search_osm_namefinder:
|
search_osm_namefinder:
|
||||||
suffix_parent: "{{suffix}} ({{parentdistance}} {{parentdirection}} for {{parentname}})"
|
suffix_parent: "{{suffix}} ({{parentdistance}} {{parentdirection}} for {{parentname}})"
|
||||||
suffix_place: ", {{distance}} {{direction}} for {{placename}}"
|
suffix_place: ", {{distance}} {{direction}} for {{placename}}"
|
||||||
|
@ -330,6 +361,7 @@ da:
|
||||||
unread_button: Marker som ulæst
|
unread_button: Marker som ulæst
|
||||||
new:
|
new:
|
||||||
back_to_inbox: Tilbage til indbakke
|
back_to_inbox: Tilbage til indbakke
|
||||||
|
body: Brødtekst
|
||||||
limit_exceeded: Du har sendt mange beskeder på det sidste. Vent venligst lidt før du forsøger at sende flere.
|
limit_exceeded: Du har sendt mange beskeder på det sidste. Vent venligst lidt før du forsøger at sende flere.
|
||||||
message_sent: Besked sendt
|
message_sent: Besked sendt
|
||||||
send_button: Send
|
send_button: Send
|
||||||
|
@ -367,7 +399,9 @@ da:
|
||||||
delete_button: Slet
|
delete_button: Slet
|
||||||
site:
|
site:
|
||||||
key:
|
key:
|
||||||
map_key: Kortnøgle
|
map_key: Signaturforklaring
|
||||||
|
table:
|
||||||
|
heading: Signaturforklaring for z{{zoom_level}}
|
||||||
search:
|
search:
|
||||||
search: Søg
|
search: Søg
|
||||||
where_am_i: Hvor er jeg?
|
where_am_i: Hvor er jeg?
|
||||||
|
@ -381,6 +415,7 @@ da:
|
||||||
scheduled_for_deletion: Spor planlagt for sletning
|
scheduled_for_deletion: Spor planlagt for sletning
|
||||||
edit:
|
edit:
|
||||||
description: "Beskrivelse:"
|
description: "Beskrivelse:"
|
||||||
|
download: hent
|
||||||
edit: redigér
|
edit: redigér
|
||||||
filename: "Filnavn:"
|
filename: "Filnavn:"
|
||||||
heading: Redigerer spor {{name}}
|
heading: Redigerer spor {{name}}
|
||||||
|
@ -417,13 +452,15 @@ da:
|
||||||
count_points: "{{count}} punkter"
|
count_points: "{{count}} punkter"
|
||||||
edit: redigér
|
edit: redigér
|
||||||
edit_map: Redigér kort
|
edit_map: Redigér kort
|
||||||
|
identifiable: IDENTIFICERBAR
|
||||||
in: i
|
in: i
|
||||||
map: kort
|
map: kort
|
||||||
more: mere
|
more: detaljer
|
||||||
pending: VENTENDE
|
pending: VENTENDE
|
||||||
private: PRIVAT
|
private: PRIVAT
|
||||||
public: OFFENTLIG
|
public: OFFENTLIG
|
||||||
trace_details: Vis spordetaljer
|
trace_details: Vis spordetaljer
|
||||||
|
trackable: SPORBAR
|
||||||
view_map: Vis kort
|
view_map: Vis kort
|
||||||
trace_form:
|
trace_form:
|
||||||
description: "Beskrivelse:"
|
description: "Beskrivelse:"
|
||||||
|
@ -442,11 +479,13 @@ da:
|
||||||
trace_optionals:
|
trace_optionals:
|
||||||
tags: Egenskaber
|
tags: Egenskaber
|
||||||
trace_paging_nav:
|
trace_paging_nav:
|
||||||
of: af
|
next: Næste »
|
||||||
showing: Viser side
|
previous: "« Forrige"
|
||||||
|
showing_page: Viser side {{page}}
|
||||||
view:
|
view:
|
||||||
delete_track: Slet dette spor
|
delete_track: Slet dette spor
|
||||||
description: "Beskrivelse:"
|
description: "Beskrivelse:"
|
||||||
|
download: hent
|
||||||
edit: redigér
|
edit: redigér
|
||||||
edit_track: Rediger dette spor
|
edit_track: Rediger dette spor
|
||||||
filename: "Filnavn:"
|
filename: "Filnavn:"
|
||||||
|
@ -472,6 +511,8 @@ da:
|
||||||
email never displayed publicly: (vises aldrig offentligt)
|
email never displayed publicly: (vises aldrig offentligt)
|
||||||
flash update success: Brugerinformation opdateret.
|
flash update success: Brugerinformation opdateret.
|
||||||
home location: "Hjemmeposition:"
|
home location: "Hjemmeposition:"
|
||||||
|
latitude: "Breddegrad:"
|
||||||
|
longitude: "Længdegrad:"
|
||||||
my settings: Mine indstillinger
|
my settings: Mine indstillinger
|
||||||
no home location: Du har ikke angivet din hjemmeposition.
|
no home location: Du har ikke angivet din hjemmeposition.
|
||||||
preferred languages: "Foretrukne sprog:"
|
preferred languages: "Foretrukne sprog:"
|
||||||
|
@ -504,10 +545,10 @@ da:
|
||||||
title: Log på
|
title: Log på
|
||||||
lost_password:
|
lost_password:
|
||||||
email address: "E-mailadresse:"
|
email address: "E-mailadresse:"
|
||||||
heading: Glemt kodeord?
|
heading: Glemt adgangskode?
|
||||||
new password button: Nulstil kodeord
|
new password button: Nulstil adgangskode
|
||||||
notice email cannot find: Kunne ikke finde din e-mail. Beklager.
|
notice email cannot find: Kunne ikke finde din e-mail. Beklager.
|
||||||
title: Glemt kodeord
|
title: Glemt adgangskode
|
||||||
make_friend:
|
make_friend:
|
||||||
already_a_friend: Du er allerede ven med {{name}}.
|
already_a_friend: Du er allerede ven med {{name}}.
|
||||||
failed: Desværre, kunne ikke tilføje {{name}} som din ven.
|
failed: Desværre, kunne ikke tilføje {{name}} som din ven.
|
||||||
|
@ -520,9 +561,9 @@ da:
|
||||||
heading: Brugeren {{user}} findes ikke
|
heading: Brugeren {{user}} findes ikke
|
||||||
title: Ingen sådan bruger
|
title: Ingen sådan bruger
|
||||||
reset_password:
|
reset_password:
|
||||||
confirm password: "Bekræft kodeord:"
|
confirm password: "Bekræft adgangskode:"
|
||||||
password: "Kodeord:"
|
password: "Adgangskode:"
|
||||||
reset: Nulstil kodeord
|
reset: Nulstil adgangskode
|
||||||
set_home:
|
set_home:
|
||||||
flash success: Hjemmeposition gemt
|
flash success: Hjemmeposition gemt
|
||||||
view:
|
view:
|
||||||
|
|
|
@ -1287,9 +1287,6 @@ de:
|
||||||
traces_waiting: "{{count}} deiner Tracks sind momentan in der Warteschlange. Bitte warte bis diese fertig sind, um die Verarbeitung nicht für andere Nutzer zu blockieren."
|
traces_waiting: "{{count}} deiner Tracks sind momentan in der Warteschlange. Bitte warte bis diese fertig sind, um die Verarbeitung nicht für andere Nutzer zu blockieren."
|
||||||
trace_optionals:
|
trace_optionals:
|
||||||
tags: Tags
|
tags: Tags
|
||||||
trace_paging_nav:
|
|
||||||
of: von
|
|
||||||
showing: Zeige Seite
|
|
||||||
view:
|
view:
|
||||||
delete_track: Diesen Track löschen
|
delete_track: Diesen Track löschen
|
||||||
description: "Beschreibung:"
|
description: "Beschreibung:"
|
||||||
|
|
|
@ -218,6 +218,13 @@ dsb:
|
||||||
zoom_or_select: Kórtu powětšyś abo kórtowy wurězk wubraś
|
zoom_or_select: Kórtu powětšyś abo kórtowy wurězk wubraś
|
||||||
tag_details:
|
tag_details:
|
||||||
tags: "Atributy:"
|
tags: "Atributy:"
|
||||||
|
timeout:
|
||||||
|
sorry: Wódaj, trajo pśedłujko, daty za {{type}} z ID {{id}} wótwołaś.
|
||||||
|
type:
|
||||||
|
changeset: sajźba změnow
|
||||||
|
node: suk
|
||||||
|
relation: relacija
|
||||||
|
way: puś
|
||||||
way:
|
way:
|
||||||
download: "{{download_xml_link}}, {{view_history_link}} abo {{edit_link}}"
|
download: "{{download_xml_link}}, {{view_history_link}} abo {{edit_link}}"
|
||||||
download_xml: XML ześěgnuś
|
download_xml: XML ześěgnuś
|
||||||
|
@ -1207,8 +1214,9 @@ dsb:
|
||||||
trace_optionals:
|
trace_optionals:
|
||||||
tags: Atributy
|
tags: Atributy
|
||||||
trace_paging_nav:
|
trace_paging_nav:
|
||||||
of: z
|
next: Pśiducy »
|
||||||
showing: Pokazujo se bok
|
previous: "« Pjerwjejšny"
|
||||||
|
showing_page: Pokazujo se bok {{page}}
|
||||||
view:
|
view:
|
||||||
delete_track: Toś tu ceru wulašowaś
|
delete_track: Toś tu ceru wulašowaś
|
||||||
description: "Wopisanje:"
|
description: "Wopisanje:"
|
||||||
|
|
|
@ -1235,8 +1235,9 @@ en:
|
||||||
trace_not_found: "Trace not found!"
|
trace_not_found: "Trace not found!"
|
||||||
visibility: "Visibility:"
|
visibility: "Visibility:"
|
||||||
trace_paging_nav:
|
trace_paging_nav:
|
||||||
showing: "Showing page"
|
showing_page: "Showing page {{page}}"
|
||||||
of: "of"
|
next: "Next »"
|
||||||
|
previous: "« Previous"
|
||||||
trace:
|
trace:
|
||||||
pending: "PENDING"
|
pending: "PENDING"
|
||||||
count_points: "{{count}} points"
|
count_points: "{{count}} points"
|
||||||
|
|
|
@ -482,7 +482,7 @@ eo:
|
||||||
building: Grava konstruaĵo
|
building: Grava konstruaĵo
|
||||||
byway: Flanka strato
|
byway: Flanka strato
|
||||||
cable:
|
cable:
|
||||||
- seĝtelfero
|
1: seĝtelfero
|
||||||
cemetery: Tombejo
|
cemetery: Tombejo
|
||||||
common:
|
common:
|
||||||
- herbejo
|
- herbejo
|
||||||
|
@ -594,9 +594,6 @@ eo:
|
||||||
traces_waiting: Vi havas {{count}} spurojn atendanta alŝutado. Bonvolu konsideri atendi ke ili terminas alŝuti antaŭ alŝuti aliajn. Tiel vi ne blokus la atendovicon por aliaj uzantoj.
|
traces_waiting: Vi havas {{count}} spurojn atendanta alŝutado. Bonvolu konsideri atendi ke ili terminas alŝuti antaŭ alŝuti aliajn. Tiel vi ne blokus la atendovicon por aliaj uzantoj.
|
||||||
trace_optionals:
|
trace_optionals:
|
||||||
tags: Etikedoj
|
tags: Etikedoj
|
||||||
trace_paging_nav:
|
|
||||||
of: de
|
|
||||||
showing: Montrante paĝon
|
|
||||||
view:
|
view:
|
||||||
delete_track: Forviŝi tiun spuron
|
delete_track: Forviŝi tiun spuron
|
||||||
description: "Priskribo:"
|
description: "Priskribo:"
|
||||||
|
|
|
@ -214,6 +214,13 @@ es:
|
||||||
zoom_or_select: Para ver los datos, haga más zoom o seleccione un Área del mapa
|
zoom_or_select: Para ver los datos, haga más zoom o seleccione un Área del mapa
|
||||||
tag_details:
|
tag_details:
|
||||||
tags: Etiquetas
|
tags: Etiquetas
|
||||||
|
timeout:
|
||||||
|
sorry: Lo sentimos, los datos para el {{type}} con el identificador {{id}} han tomado demasiado tiempo para obtenerse.
|
||||||
|
type:
|
||||||
|
changeset: conjunto de cambios
|
||||||
|
node: nodo
|
||||||
|
relation: relación
|
||||||
|
way: vía
|
||||||
way:
|
way:
|
||||||
download: "{{download_xml_link}} o {{view_history_link}}"
|
download: "{{download_xml_link}} o {{view_history_link}}"
|
||||||
download_xml: Descargar XML
|
download_xml: Descargar XML
|
||||||
|
@ -385,6 +392,7 @@ es:
|
||||||
other: aproximadamente {{count}}km
|
other: aproximadamente {{count}}km
|
||||||
zero: menos de 1Km
|
zero: menos de 1Km
|
||||||
results:
|
results:
|
||||||
|
more_results: Más resultados
|
||||||
no_results: No se han encontrado resultados
|
no_results: No se han encontrado resultados
|
||||||
search:
|
search:
|
||||||
title:
|
title:
|
||||||
|
@ -415,6 +423,7 @@ es:
|
||||||
bus_station: Estación de autobuses
|
bus_station: Estación de autobuses
|
||||||
cafe: Café
|
cafe: Café
|
||||||
car_rental: Alquiler de vehículos
|
car_rental: Alquiler de vehículos
|
||||||
|
car_sharing: Car Sharing
|
||||||
car_wash: Autolavado
|
car_wash: Autolavado
|
||||||
casino: Casino
|
casino: Casino
|
||||||
cinema: Cine
|
cinema: Cine
|
||||||
|
@ -493,6 +502,7 @@ es:
|
||||||
administrative: Frontera administrativa
|
administrative: Frontera administrativa
|
||||||
building:
|
building:
|
||||||
apartments: Bloque de apartamentos
|
apartments: Bloque de apartamentos
|
||||||
|
block: Bloque de edificios
|
||||||
bunker: Búnker
|
bunker: Búnker
|
||||||
chapel: Capilla
|
chapel: Capilla
|
||||||
church: Iglesia
|
church: Iglesia
|
||||||
|
@ -504,6 +514,7 @@ es:
|
||||||
farm: Granja
|
farm: Granja
|
||||||
flats: Apartamentos
|
flats: Apartamentos
|
||||||
garage: Garaje
|
garage: Garaje
|
||||||
|
hall: Mansión
|
||||||
hospital: Edificio hospitalario
|
hospital: Edificio hospitalario
|
||||||
hotel: Hotel
|
hotel: Hotel
|
||||||
house: Casa
|
house: Casa
|
||||||
|
@ -533,6 +544,7 @@ es:
|
||||||
footway: Sendero
|
footway: Sendero
|
||||||
ford: Vado
|
ford: Vado
|
||||||
gate: Puerta
|
gate: Puerta
|
||||||
|
living_street: Calle residencial
|
||||||
motorway: Autovía
|
motorway: Autovía
|
||||||
motorway_junction: Cruce de autovías
|
motorway_junction: Cruce de autovías
|
||||||
path: Camino
|
path: Camino
|
||||||
|
@ -572,6 +584,8 @@ es:
|
||||||
museum: Museo
|
museum: Museo
|
||||||
ruins: Ruinas
|
ruins: Ruinas
|
||||||
tower: Torre
|
tower: Torre
|
||||||
|
wayside_cross: Cruz de término
|
||||||
|
wayside_shrine: Sepulcro
|
||||||
wreck: Pecio
|
wreck: Pecio
|
||||||
landuse:
|
landuse:
|
||||||
allotments: Huertos
|
allotments: Huertos
|
||||||
|
@ -579,6 +593,7 @@ es:
|
||||||
brownfield: Terreno baldío
|
brownfield: Terreno baldío
|
||||||
cemetery: Cementerio
|
cemetery: Cementerio
|
||||||
commercial: área comercial
|
commercial: área comercial
|
||||||
|
conservation: Conservación
|
||||||
construction: Construcción
|
construction: Construcción
|
||||||
farm: Granja
|
farm: Granja
|
||||||
farmland: Tierra de labranza
|
farmland: Tierra de labranza
|
||||||
|
@ -698,6 +713,7 @@ es:
|
||||||
historic_station: Estación histórica de trenes
|
historic_station: Estación histórica de trenes
|
||||||
junction: Encrucijada de vías ferroviarias
|
junction: Encrucijada de vías ferroviarias
|
||||||
level_crossing: Paso a nivel
|
level_crossing: Paso a nivel
|
||||||
|
light_rail: Metro ligero
|
||||||
monorail: Monorail
|
monorail: Monorail
|
||||||
narrow_gauge: Vía ferroviaria angosta
|
narrow_gauge: Vía ferroviaria angosta
|
||||||
platform: Plataforma de tren
|
platform: Plataforma de tren
|
||||||
|
@ -707,6 +723,7 @@ es:
|
||||||
subway_entrance: Entrada al metro
|
subway_entrance: Entrada al metro
|
||||||
tram: Ruta de tranvía
|
tram: Ruta de tranvía
|
||||||
tram_stop: Parada de tranvía
|
tram_stop: Parada de tranvía
|
||||||
|
yard: Estación de clasificación
|
||||||
shop:
|
shop:
|
||||||
alcohol: Licorería
|
alcohol: Licorería
|
||||||
apparel: Tienda de ropa
|
apparel: Tienda de ropa
|
||||||
|
@ -742,6 +759,7 @@ es:
|
||||||
fish: Tienda de artículos de pesca
|
fish: Tienda de artículos de pesca
|
||||||
florist: Floristería
|
florist: Floristería
|
||||||
food: Tienda de alimentación
|
food: Tienda de alimentación
|
||||||
|
funeral_directors: Tanatorio
|
||||||
furniture: Mobiliario
|
furniture: Mobiliario
|
||||||
gallery: Galería
|
gallery: Galería
|
||||||
garden_centre: Vivero
|
garden_centre: Vivero
|
||||||
|
@ -767,6 +785,7 @@ es:
|
||||||
outdoor: Tienda de deportes de aventura
|
outdoor: Tienda de deportes de aventura
|
||||||
pet: Tienda de mascotas
|
pet: Tienda de mascotas
|
||||||
photo: Tienda fotográfica
|
photo: Tienda fotográfica
|
||||||
|
salon: Salón de belleza
|
||||||
shoes: Zapatería
|
shoes: Zapatería
|
||||||
shopping_centre: Centro comercial
|
shopping_centre: Centro comercial
|
||||||
sports: Tienda de artículos deportivos
|
sports: Tienda de artículos deportivos
|
||||||
|
@ -789,6 +808,7 @@ es:
|
||||||
hostel: Hostel
|
hostel: Hostel
|
||||||
hotel: Hotel
|
hotel: Hotel
|
||||||
information: Información
|
information: Información
|
||||||
|
lean_to: Nave
|
||||||
motel: Motel
|
motel: Motel
|
||||||
museum: Museo
|
museum: Museo
|
||||||
picnic_site: Área de picnic
|
picnic_site: Área de picnic
|
||||||
|
@ -803,6 +823,7 @@ es:
|
||||||
ditch: Acequia
|
ditch: Acequia
|
||||||
dock: Muelle
|
dock: Muelle
|
||||||
drain: Desagüe
|
drain: Desagüe
|
||||||
|
lock: Esclusa
|
||||||
lock_gate: Esclusa
|
lock_gate: Esclusa
|
||||||
mineral_spring: Fuente mineral
|
mineral_spring: Fuente mineral
|
||||||
mooring: Amarradero
|
mooring: Amarradero
|
||||||
|
@ -1254,8 +1275,9 @@ es:
|
||||||
trace_optionals:
|
trace_optionals:
|
||||||
tags: Etiquetas
|
tags: Etiquetas
|
||||||
trace_paging_nav:
|
trace_paging_nav:
|
||||||
of: de
|
next: Siguiente »
|
||||||
showing: Mostrando página
|
previous: "« Anterior"
|
||||||
|
showing_page: Mostrando página {{page}}
|
||||||
view:
|
view:
|
||||||
delete_track: Borrar esta traza
|
delete_track: Borrar esta traza
|
||||||
description: "Descripción:"
|
description: "Descripción:"
|
||||||
|
|
|
@ -42,12 +42,14 @@ eu:
|
||||||
old_relation: Erlazio zaharra
|
old_relation: Erlazio zaharra
|
||||||
old_way: Bide zaharra
|
old_way: Bide zaharra
|
||||||
relation: Erlazioa
|
relation: Erlazioa
|
||||||
|
user: Lankide
|
||||||
way: Bidea
|
way: Bidea
|
||||||
way_tag: Bidearen etiketa
|
way_tag: Bidearen etiketa
|
||||||
browse:
|
browse:
|
||||||
changeset:
|
changeset:
|
||||||
download: "{{changeset_xml_link}} edo {{osmchange_xml_link}} jaitsi"
|
download: "{{changeset_xml_link}} edo {{osmchange_xml_link}} jaitsi"
|
||||||
changeset_details:
|
changeset_details:
|
||||||
|
box: kutxa
|
||||||
closed_at: "Noiz itxita:"
|
closed_at: "Noiz itxita:"
|
||||||
created_at: "Noiz sortua:"
|
created_at: "Noiz sortua:"
|
||||||
common_details:
|
common_details:
|
||||||
|
@ -94,6 +96,7 @@ eu:
|
||||||
start_rjs:
|
start_rjs:
|
||||||
data_frame_title: Datuak
|
data_frame_title: Datuak
|
||||||
data_layer_name: Datuak
|
data_layer_name: Datuak
|
||||||
|
details: Xehetasunak
|
||||||
loading: Kargatzen...
|
loading: Kargatzen...
|
||||||
object_list:
|
object_list:
|
||||||
history:
|
history:
|
||||||
|
@ -212,6 +215,7 @@ eu:
|
||||||
cinema: Zinema
|
cinema: Zinema
|
||||||
clinic: Klinika
|
clinic: Klinika
|
||||||
club: Diskoteka
|
club: Diskoteka
|
||||||
|
community_centre: Komunitate Zentroa
|
||||||
courthouse: Epaitegia
|
courthouse: Epaitegia
|
||||||
crematorium: Errauste labe
|
crematorium: Errauste labe
|
||||||
dentist: Dentista
|
dentist: Dentista
|
||||||
|
@ -243,10 +247,12 @@ eu:
|
||||||
pharmacy: Farmazia
|
pharmacy: Farmazia
|
||||||
place_of_worship: Otoitzerako Lekua
|
place_of_worship: Otoitzerako Lekua
|
||||||
police: Polizia
|
police: Polizia
|
||||||
|
post_box: Postontzia
|
||||||
post_office: Postetxe
|
post_office: Postetxe
|
||||||
preschool: Eskolaurre
|
preschool: Eskolaurre
|
||||||
prison: Espetxe
|
prison: Espetxe
|
||||||
public_building: Eraikin publiko
|
public_building: Eraikin publiko
|
||||||
|
public_market: Herri Azoka
|
||||||
recycling: Birziklatze gune
|
recycling: Birziklatze gune
|
||||||
restaurant: Jatetxe
|
restaurant: Jatetxe
|
||||||
sauna: Sauna
|
sauna: Sauna
|
||||||
|
@ -264,6 +270,8 @@ eu:
|
||||||
vending_machine: Salmenta automatiko
|
vending_machine: Salmenta automatiko
|
||||||
wifi: WiFi Sarbidea
|
wifi: WiFi Sarbidea
|
||||||
youth_centre: Gaztelekua
|
youth_centre: Gaztelekua
|
||||||
|
boundary:
|
||||||
|
administrative: Muga Administratiboa
|
||||||
building:
|
building:
|
||||||
bunker: Bunker
|
bunker: Bunker
|
||||||
chapel: Kapera
|
chapel: Kapera
|
||||||
|
@ -277,6 +285,7 @@ eu:
|
||||||
stadium: Estadio
|
stadium: Estadio
|
||||||
store: Denda
|
store: Denda
|
||||||
tower: Dorre
|
tower: Dorre
|
||||||
|
train_station: Tren Geltokia
|
||||||
"yes": Eraikina
|
"yes": Eraikina
|
||||||
highway:
|
highway:
|
||||||
bus_stop: Autobus-geraleku
|
bus_stop: Autobus-geraleku
|
||||||
|
@ -390,6 +399,7 @@ eu:
|
||||||
railway:
|
railway:
|
||||||
construction: Eraikitze-lanetan dagoen Trenbidea
|
construction: Eraikitze-lanetan dagoen Trenbidea
|
||||||
halt: Tren Geralekua
|
halt: Tren Geralekua
|
||||||
|
historic_station: Tren Geltoki Historikoa
|
||||||
light_rail: Tren Arina
|
light_rail: Tren Arina
|
||||||
monorail: Monoraila
|
monorail: Monoraila
|
||||||
station: Tren Geltokia
|
station: Tren Geltokia
|
||||||
|
@ -469,10 +479,15 @@ eu:
|
||||||
export: Esportatu
|
export: Esportatu
|
||||||
help_wiki: Laguntza eta Wiki
|
help_wiki: Laguntza eta Wiki
|
||||||
history: Historia
|
history: Historia
|
||||||
|
home: hasiera
|
||||||
inbox: sarrera-ontzia ({{count}})
|
inbox: sarrera-ontzia ({{count}})
|
||||||
license:
|
license:
|
||||||
title: OpenStreetMap-eko datuak Creative Commons Aitortu-Partekatu 2.0 Generiko baimen baten mende daude.
|
title: OpenStreetMap-eko datuak Creative Commons Aitortu-Partekatu 2.0 Generiko baimen baten mende daude.
|
||||||
|
log_in: Saioa hasi
|
||||||
|
logo:
|
||||||
|
alt_text: OpenStreetMap logoa
|
||||||
logout: saioa itxi
|
logout: saioa itxi
|
||||||
|
logout_tooltip: Saioa itxi
|
||||||
make_a_donation:
|
make_a_donation:
|
||||||
text: Dohaintza egin
|
text: Dohaintza egin
|
||||||
shop: Denda
|
shop: Denda
|
||||||
|
@ -480,6 +495,7 @@ eu:
|
||||||
view: Ikusi
|
view: Ikusi
|
||||||
view_tooltip: Mapak ikusi
|
view_tooltip: Mapak ikusi
|
||||||
welcome_user: Ongietorri, {{user_link}}
|
welcome_user: Ongietorri, {{user_link}}
|
||||||
|
welcome_user_link_tooltip: Zure lankide orrialdea
|
||||||
map:
|
map:
|
||||||
coordinates: "Koordenatuak:"
|
coordinates: "Koordenatuak:"
|
||||||
edit: Aldatu
|
edit: Aldatu
|
||||||
|
@ -560,8 +576,9 @@ eu:
|
||||||
key:
|
key:
|
||||||
table:
|
table:
|
||||||
entry:
|
entry:
|
||||||
|
admin: Muga administratiboa
|
||||||
apron:
|
apron:
|
||||||
- terminala
|
1: terminala
|
||||||
cable:
|
cable:
|
||||||
- Funikularra
|
- Funikularra
|
||||||
cemetery: Hilerri
|
cemetery: Hilerri
|
||||||
|
@ -588,7 +605,7 @@ eu:
|
||||||
station: Tren geltokia
|
station: Tren geltokia
|
||||||
subway: Metroa
|
subway: Metroa
|
||||||
tram:
|
tram:
|
||||||
- tranbia
|
1: tranbia
|
||||||
search:
|
search:
|
||||||
search: Bilatu
|
search: Bilatu
|
||||||
submit_text: Joan
|
submit_text: Joan
|
||||||
|
@ -600,6 +617,7 @@ eu:
|
||||||
description: "Deskribapen:"
|
description: "Deskribapen:"
|
||||||
download: jaitsi
|
download: jaitsi
|
||||||
edit: aldatu
|
edit: aldatu
|
||||||
|
filename: "Fitxategi izena:"
|
||||||
map: mapa
|
map: mapa
|
||||||
points: "Puntuak:"
|
points: "Puntuak:"
|
||||||
save_button: Aldaketak gorde
|
save_button: Aldaketak gorde
|
||||||
|
|
|
@ -201,6 +201,12 @@ fi:
|
||||||
zoom_or_select: Katso pienempää aluetta tai valitse kartalta alue, jonka tiedot haluat
|
zoom_or_select: Katso pienempää aluetta tai valitse kartalta alue, jonka tiedot haluat
|
||||||
tag_details:
|
tag_details:
|
||||||
tags: "Tägit:"
|
tags: "Tägit:"
|
||||||
|
timeout:
|
||||||
|
type:
|
||||||
|
changeset: muutoskokoelma
|
||||||
|
node: piste
|
||||||
|
relation: relaatio
|
||||||
|
way: polku
|
||||||
way:
|
way:
|
||||||
download: "{{download_xml_link}}, {{view_history_link}} tai {{edit_link}}"
|
download: "{{download_xml_link}}, {{view_history_link}} tai {{edit_link}}"
|
||||||
download_xml: Lataa XML
|
download_xml: Lataa XML
|
||||||
|
@ -496,6 +502,7 @@ fi:
|
||||||
pedestrian: Jalkakäytävä
|
pedestrian: Jalkakäytävä
|
||||||
primary: Kantatie
|
primary: Kantatie
|
||||||
primary_link: Kantatie
|
primary_link: Kantatie
|
||||||
|
raceway: Kilparata
|
||||||
road: Tie
|
road: Tie
|
||||||
secondary: Seututie
|
secondary: Seututie
|
||||||
secondary_link: Seututie
|
secondary_link: Seututie
|
||||||
|
@ -665,6 +672,7 @@ fi:
|
||||||
drain: Oja
|
drain: Oja
|
||||||
lock_gate: Sulku
|
lock_gate: Sulku
|
||||||
rapids: Pohjapato
|
rapids: Pohjapato
|
||||||
|
river: Joki
|
||||||
riverbank: Joki
|
riverbank: Joki
|
||||||
stream: Puro
|
stream: Puro
|
||||||
javascripts:
|
javascripts:
|
||||||
|
@ -1013,9 +1021,6 @@ fi:
|
||||||
traces_waiting: Lähettämiäsi jälkiä on jo {{count}} käsittelyjonossa odottamassa tallennusta tietokantaan. Olisi huomaavaista jos odottaisit näiden valmistuvan ennen kuin lähetät lisää jälkiä. Näin muidenkin käyttäjien lähettämät jäljet pääsevät aiemmin tietokantaan.
|
traces_waiting: Lähettämiäsi jälkiä on jo {{count}} käsittelyjonossa odottamassa tallennusta tietokantaan. Olisi huomaavaista jos odottaisit näiden valmistuvan ennen kuin lähetät lisää jälkiä. Näin muidenkin käyttäjien lähettämät jäljet pääsevät aiemmin tietokantaan.
|
||||||
trace_optionals:
|
trace_optionals:
|
||||||
tags: Tägit
|
tags: Tägit
|
||||||
trace_paging_nav:
|
|
||||||
of: " /"
|
|
||||||
showing: Sivu
|
|
||||||
view:
|
view:
|
||||||
delete_track: Poista tämä jälki
|
delete_track: Poista tämä jälki
|
||||||
description: "Kuvaus:"
|
description: "Kuvaus:"
|
||||||
|
|
|
@ -218,6 +218,13 @@ fr:
|
||||||
zoom_or_select: Zoomer ou sélectionner une zone de la carte pour la visualiser
|
zoom_or_select: Zoomer ou sélectionner une zone de la carte pour la visualiser
|
||||||
tag_details:
|
tag_details:
|
||||||
tags: "Balises :"
|
tags: "Balises :"
|
||||||
|
timeout:
|
||||||
|
sorry: Désolé, les données pour le type {{type}} avec l'id {{id}} prennent trop de temps à être récupérées.
|
||||||
|
type:
|
||||||
|
changeset: groupe de modifications
|
||||||
|
node: nœud
|
||||||
|
relation: relation
|
||||||
|
way: chemin
|
||||||
way:
|
way:
|
||||||
download: "{{download_xml_link}}, {{view_history_link}} ou {{edit_link}}"
|
download: "{{download_xml_link}}, {{view_history_link}} ou {{edit_link}}"
|
||||||
download_xml: Télécharger XML
|
download_xml: Télécharger XML
|
||||||
|
@ -389,6 +396,7 @@ fr:
|
||||||
other: environ {{count}} km
|
other: environ {{count}} km
|
||||||
zero: moins de 1 km
|
zero: moins de 1 km
|
||||||
results:
|
results:
|
||||||
|
more_results: Plus de résultats
|
||||||
no_results: Aucun résultat n'a été trouvé
|
no_results: Aucun résultat n'a été trouvé
|
||||||
search:
|
search:
|
||||||
title:
|
title:
|
||||||
|
@ -1037,6 +1045,7 @@ fr:
|
||||||
more_videos: "Davantage de vidéos sont disponibles ici :"
|
more_videos: "Davantage de vidéos sont disponibles ici :"
|
||||||
opengeodata: "OpenGeoData.org est le blog de Steve Coast, le fondateur d’OpenStreetMap et il propose également des podcasts :"
|
opengeodata: "OpenGeoData.org est le blog de Steve Coast, le fondateur d’OpenStreetMap et il propose également des podcasts :"
|
||||||
the_wiki: "Lisez à propos d'OpenStreetMap sur le wiki :"
|
the_wiki: "Lisez à propos d'OpenStreetMap sur le wiki :"
|
||||||
|
the_wiki_url: http://wiki.openstreetmap.org/wiki/FR:Beginners_Guide
|
||||||
user_wiki_1: Il est recommandé de créer une page utilisateur qui inclut
|
user_wiki_1: Il est recommandé de créer une page utilisateur qui inclut
|
||||||
user_wiki_2: des catégories qui indiquent votre localisation, comme [[Category:Users_in_London]].
|
user_wiki_2: des catégories qui indiquent votre localisation, comme [[Category:Users_in_London]].
|
||||||
wiki_signup: "Vous pouvez également vous créer un compte sur le wiki d'OpenStreetMap sur :"
|
wiki_signup: "Vous pouvez également vous créer un compte sur le wiki d'OpenStreetMap sur :"
|
||||||
|
@ -1276,8 +1285,9 @@ fr:
|
||||||
trace_optionals:
|
trace_optionals:
|
||||||
tags: Balises
|
tags: Balises
|
||||||
trace_paging_nav:
|
trace_paging_nav:
|
||||||
of: sur
|
next: Suivant »
|
||||||
showing: Affichage de la page
|
previous: "« Précédent"
|
||||||
|
showing_page: Affichage de la page {{page}}
|
||||||
view:
|
view:
|
||||||
delete_track: Supprimer cette piste
|
delete_track: Supprimer cette piste
|
||||||
description: "Description :"
|
description: "Description :"
|
||||||
|
|
|
@ -510,9 +510,6 @@ fur:
|
||||||
see_all_traces: Cjale ducj i percors
|
see_all_traces: Cjale ducj i percors
|
||||||
see_just_your_traces: Cjale dome i tiei percors o cjame un percors
|
see_just_your_traces: Cjale dome i tiei percors o cjame un percors
|
||||||
see_your_traces: Cjale ducj i miei percors
|
see_your_traces: Cjale ducj i miei percors
|
||||||
trace_paging_nav:
|
|
||||||
of: su
|
|
||||||
showing: Mostrant la pagjine
|
|
||||||
view:
|
view:
|
||||||
delete_track: Elimine chest percors
|
delete_track: Elimine chest percors
|
||||||
description: "Descrizion:"
|
description: "Descrizion:"
|
||||||
|
|
|
@ -218,6 +218,13 @@ hr:
|
||||||
zoom_or_select: Zoomiraj ili izaberi područje karte za pregled
|
zoom_or_select: Zoomiraj ili izaberi područje karte za pregled
|
||||||
tag_details:
|
tag_details:
|
||||||
tags: "Oznake:"
|
tags: "Oznake:"
|
||||||
|
timeout:
|
||||||
|
sorry: Žao mi je, podaci za {{type}} sa id {{id}}, predugo se čekaju.
|
||||||
|
type:
|
||||||
|
changeset: changeset
|
||||||
|
node: točka
|
||||||
|
relation: relacija
|
||||||
|
way: put
|
||||||
way:
|
way:
|
||||||
download: "{{download_xml_link}}, {{view_history_link}} ili {{edit_link}}"
|
download: "{{download_xml_link}}, {{view_history_link}} ili {{edit_link}}"
|
||||||
download_xml: Preuzimanje XML
|
download_xml: Preuzimanje XML
|
||||||
|
@ -389,6 +396,7 @@ hr:
|
||||||
other: oko {{count}}km
|
other: oko {{count}}km
|
||||||
zero: manje od 1km
|
zero: manje od 1km
|
||||||
results:
|
results:
|
||||||
|
more_results: Više rezultata
|
||||||
no_results: Nisu nađeni rezultati
|
no_results: Nisu nađeni rezultati
|
||||||
search:
|
search:
|
||||||
title:
|
title:
|
||||||
|
@ -402,6 +410,402 @@ hr:
|
||||||
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: Zračna luka
|
||||||
|
arts_centre: Umjetnički centar
|
||||||
|
atm: Bankomat
|
||||||
|
auditorium: Auditorij
|
||||||
|
bank: Banka
|
||||||
|
bar: Bar
|
||||||
|
bench: Klupa
|
||||||
|
bicycle_parking: Biciklistički parking
|
||||||
|
bicycle_rental: Rent a bicikl
|
||||||
|
brothel: Bordel
|
||||||
|
bureau_de_change: Mjenjačnica
|
||||||
|
bus_station: Autobusni kolodvor
|
||||||
|
cafe: Caffe bar
|
||||||
|
car_rental: Rent-a-car
|
||||||
|
car_sharing: Carsharing
|
||||||
|
car_wash: Autopraonica
|
||||||
|
casino: Casino
|
||||||
|
cinema: Kino
|
||||||
|
clinic: Klinika
|
||||||
|
club: Klub
|
||||||
|
college: Fakultet
|
||||||
|
community_centre: Društveni centar
|
||||||
|
courthouse: Sud
|
||||||
|
crematorium: Krematorij
|
||||||
|
dentist: Zubar
|
||||||
|
doctors: Doktor
|
||||||
|
dormitory: Studentski dom
|
||||||
|
drinking_water: Pitka voda
|
||||||
|
driving_school: Autoškola
|
||||||
|
embassy: Veleposlanstvo
|
||||||
|
emergency_phone: Telefon (S.O.S)
|
||||||
|
fast_food: Fast food
|
||||||
|
ferry_terminal: Trajektni terminal
|
||||||
|
fire_hydrant: Hidrant
|
||||||
|
fire_station: Vatrogasna postaja
|
||||||
|
fountain: Fontana
|
||||||
|
fuel: Benzinska
|
||||||
|
grave_yard: Groblje
|
||||||
|
gym: Fitness centar
|
||||||
|
hall: Hala
|
||||||
|
health_centre: Zdravstveni centar
|
||||||
|
hospital: Bolnica
|
||||||
|
hotel: Hotel
|
||||||
|
hunting_stand: Čeka
|
||||||
|
ice_cream: Slastičarna
|
||||||
|
kindergarten: Dječji vrtić
|
||||||
|
library: Knjižnica
|
||||||
|
market: Tržnica
|
||||||
|
marketplace: Tržnica
|
||||||
|
mountain_rescue: GSS - Gorska služba spašavanja
|
||||||
|
nightclub: 'Noćni klub'
|
||||||
|
nursery: Čuvanje djece
|
||||||
|
nursing_home: Starački dom
|
||||||
|
office: Kancelarija
|
||||||
|
park: Park
|
||||||
|
parking: Parking
|
||||||
|
pharmacy: Ljekarna
|
||||||
|
place_of_worship: Crkva
|
||||||
|
police: Policija
|
||||||
|
post_box: Poštanski sandučić
|
||||||
|
post_office: Pošta
|
||||||
|
preschool: Predškolska ustanova
|
||||||
|
prison: Zatvor
|
||||||
|
pub: Pub
|
||||||
|
public_building: Ustanova
|
||||||
|
reception_area: Recepcija
|
||||||
|
recycling: Reciklažna točka
|
||||||
|
restaurant: Restoran
|
||||||
|
retirement_home: Dom za starije osobe
|
||||||
|
sauna: Sauna
|
||||||
|
school: Škola
|
||||||
|
shelter: Sklonište
|
||||||
|
shop: Trgovina
|
||||||
|
shopping: Trgovački centar
|
||||||
|
social_club: Društveni klub
|
||||||
|
studio: Studio
|
||||||
|
supermarket: Supermarket
|
||||||
|
taxi: Taxi
|
||||||
|
telephone: Telefonska govornica
|
||||||
|
theatre: Kazalište
|
||||||
|
toilets: WC
|
||||||
|
townhall: Gradsko poglavarstvo
|
||||||
|
university: Sveučilište
|
||||||
|
vending_machine: Automat
|
||||||
|
veterinary: Veterinar
|
||||||
|
waste_basket: Kanta za otpatke
|
||||||
|
wifi: WiFi pristupna točka
|
||||||
|
youth_centre: Centar za mladež
|
||||||
|
boundary:
|
||||||
|
administrative: Administrativna granica
|
||||||
|
building:
|
||||||
|
bunker: Bunker
|
||||||
|
chapel: Kapelica
|
||||||
|
church: Crkva
|
||||||
|
city_hall: Gradska vjećnica
|
||||||
|
commercial: Poslovna zgrada
|
||||||
|
dormitory: Studentski dom
|
||||||
|
entrance: Ulaz
|
||||||
|
faculty: Zgrada fakulteta
|
||||||
|
flats: Stanovi
|
||||||
|
garage: Garaža
|
||||||
|
hall: Dvorana
|
||||||
|
hospital: Bolnica
|
||||||
|
hotel: Hotel
|
||||||
|
house: Kuća
|
||||||
|
office: Uredska zgrada
|
||||||
|
residential: Stambena zgrada
|
||||||
|
school: Školska zgrada
|
||||||
|
shop: Trgovina
|
||||||
|
stadium: Stadion
|
||||||
|
store: Trgovina
|
||||||
|
terrace: Terasa
|
||||||
|
tower: Toranj
|
||||||
|
train_station: Željeznički kolodvor
|
||||||
|
university: Zgrada Sveučilišta
|
||||||
|
"yes": Zgrada
|
||||||
|
highway:
|
||||||
|
bridleway: Konjička staza
|
||||||
|
bus_guideway: Autobusna traka
|
||||||
|
bus_stop: Autobusno stajalište
|
||||||
|
byway: Prečica
|
||||||
|
construction: Autocesta u izgradnji
|
||||||
|
cycleway: Biciklistička staza
|
||||||
|
distance_marker: Oznaka km
|
||||||
|
emergency_access_point: S.O.S. točka
|
||||||
|
footway: Pješačka staza
|
||||||
|
ford: Ford
|
||||||
|
gate: Kapija
|
||||||
|
living_street: Ulica smirenog prometa
|
||||||
|
minor: Drugorazredna cesta
|
||||||
|
motorway: Autocesta
|
||||||
|
motorway_junction: Čvor (autoputa)
|
||||||
|
motorway_link: Autocesta (pristupna cesta)
|
||||||
|
path: Staza
|
||||||
|
pedestrian: Pješački put
|
||||||
|
platform: Platforma
|
||||||
|
primary: Državna cesta
|
||||||
|
primary_link: Državna cesta
|
||||||
|
raceway: Trkalište
|
||||||
|
residential: Ulica
|
||||||
|
road: Cesta
|
||||||
|
secondary: Županijska cesta
|
||||||
|
secondary_link: Županijska cesta
|
||||||
|
service: Servisna cesta
|
||||||
|
services: Autocesta - usluge
|
||||||
|
steps: Stepenice
|
||||||
|
stile: Prijelaz preko ograde
|
||||||
|
tertiary: Lokalna cesta
|
||||||
|
track: Makadam
|
||||||
|
trail: Staza
|
||||||
|
trunk: Cesta rezervirana za motorna vozila
|
||||||
|
trunk_link: Cesta rezrevirana za mot. voz. - prilazna cesta
|
||||||
|
unclassified: Nerazvrstana cesta
|
||||||
|
unsurfaced: Neasfaltirana cesta
|
||||||
|
historic:
|
||||||
|
archaeological_site: Arheološko nalazište
|
||||||
|
battlefield: Bojno polje
|
||||||
|
boundary_stone: Granični kamen
|
||||||
|
building: Zgrada
|
||||||
|
castle: Dvorac
|
||||||
|
church: Crkva
|
||||||
|
house: Kuća
|
||||||
|
manor: Zamak
|
||||||
|
memorial: Spomen dom
|
||||||
|
mine: Rudnik
|
||||||
|
monument: Spomenik
|
||||||
|
museum: Muzej
|
||||||
|
ruins: Ruševine
|
||||||
|
tower: Toranj
|
||||||
|
wreck: Olupina
|
||||||
|
landuse:
|
||||||
|
allotments: Vrtovi
|
||||||
|
basin: Bazen
|
||||||
|
cemetery: Groblje
|
||||||
|
commercial: Poslovno područje
|
||||||
|
construction: Gradilište
|
||||||
|
farm: Farma
|
||||||
|
farmland: Polje
|
||||||
|
farmyard: Farma
|
||||||
|
forest: Šuma
|
||||||
|
grass: Trava
|
||||||
|
industrial: Industrijsko područje
|
||||||
|
landfill: Deponija
|
||||||
|
meadow: Livada
|
||||||
|
military: Vojno područje
|
||||||
|
mine: Rudnik
|
||||||
|
mountain: Planina
|
||||||
|
nature_reserve: Rezervat prirode
|
||||||
|
park: Park
|
||||||
|
piste: Pista
|
||||||
|
plaza: Plaza
|
||||||
|
quarry: Kamenolom
|
||||||
|
railway: Željeznica
|
||||||
|
recreation_ground: Rekreacijsko područje
|
||||||
|
reservoir: Rezervoar
|
||||||
|
residential: Stambeno područje
|
||||||
|
retail: Trgovina
|
||||||
|
vineyard: Vinograd
|
||||||
|
wetland: Močvara
|
||||||
|
wood: Šuma
|
||||||
|
leisure:
|
||||||
|
beach_resort: Plaža
|
||||||
|
common: Općinsko zemljište
|
||||||
|
fishing: Ribičko područje
|
||||||
|
garden: Vrt
|
||||||
|
golf_course: Golf igralište
|
||||||
|
ice_rink: Klizalište
|
||||||
|
marina: Marina
|
||||||
|
miniature_golf: Minigolf
|
||||||
|
nature_reserve: Rezervat prirode
|
||||||
|
park: Park
|
||||||
|
pitch: Sportski teren
|
||||||
|
playground: Igralište
|
||||||
|
recreation_ground: Rekreacijski teren
|
||||||
|
slipway: Navoz
|
||||||
|
sports_centre: Sportski centar
|
||||||
|
stadium: Stadion
|
||||||
|
swimming_pool: Bazen
|
||||||
|
track: Staza za trčanje
|
||||||
|
water_park: Vodeni park
|
||||||
|
natural:
|
||||||
|
bay: Zaljev
|
||||||
|
beach: Plaža
|
||||||
|
cape: Rt
|
||||||
|
cave_entrance: Pećina (ulaz)
|
||||||
|
channel: Kanal
|
||||||
|
cliff: Litica
|
||||||
|
coastline: Obala
|
||||||
|
crater: Krater
|
||||||
|
feature: Obilježje
|
||||||
|
fell: Brdo
|
||||||
|
fjord: Fjord
|
||||||
|
geyser: Gejzir
|
||||||
|
glacier: Glečer
|
||||||
|
heath: Ravnica
|
||||||
|
hill: Brdo
|
||||||
|
island: Otok
|
||||||
|
land: Zemlja
|
||||||
|
marsh: Močvara
|
||||||
|
moor: Močvara
|
||||||
|
mud: Blato
|
||||||
|
peak: Vrh
|
||||||
|
point: Točka
|
||||||
|
reef: Greben
|
||||||
|
ridge: Greben
|
||||||
|
river: Rijeka
|
||||||
|
rock: Stijena
|
||||||
|
scree: Šljunak
|
||||||
|
scrub: Guštara
|
||||||
|
shoal: Sprud
|
||||||
|
spring: Izvor
|
||||||
|
strait: Tjesnac
|
||||||
|
tree: Drvo
|
||||||
|
valley: Dolina
|
||||||
|
volcano: Vulkan
|
||||||
|
water: Voda
|
||||||
|
wetland: Močvara
|
||||||
|
wetlands: Močvara
|
||||||
|
wood: Šuma
|
||||||
|
place:
|
||||||
|
airport: Zračna luka
|
||||||
|
city: Grad
|
||||||
|
country: Država
|
||||||
|
county: Županija/grofovija
|
||||||
|
farm: Farma
|
||||||
|
hamlet: Zaseok
|
||||||
|
house: Kuća
|
||||||
|
houses: Kuće
|
||||||
|
island: Otok
|
||||||
|
islet: Otočić
|
||||||
|
locality: Lokalitet
|
||||||
|
moor: Močvara
|
||||||
|
municipality: Općina
|
||||||
|
postcode: Poštanski broj
|
||||||
|
region: Područje
|
||||||
|
sea: More
|
||||||
|
state: Pokrajina / država (USA)
|
||||||
|
subdivision: Podgrupa
|
||||||
|
suburb: Predgrađe
|
||||||
|
town: grad
|
||||||
|
unincorporated_area: Slobodna zemlja
|
||||||
|
village: Selo
|
||||||
|
railway:
|
||||||
|
construction: Pruga u izgradnji
|
||||||
|
disused: Napuštena pruga
|
||||||
|
disused_station: Željeznička stanica (nije u upotrebi)
|
||||||
|
halt: Željeznička stanica
|
||||||
|
historic_station: Povijesna željeznička stanica
|
||||||
|
junction: Željeznički čvor
|
||||||
|
level_crossing: Pružni prijelaz
|
||||||
|
light_rail: Laka željeznica
|
||||||
|
monorail: Jednotračna pruga
|
||||||
|
station: Željeznički kolodvor
|
||||||
|
subway: Podzemna - stanica
|
||||||
|
subway_entrance: Podzemna - ulaz
|
||||||
|
tram: Tramvaj
|
||||||
|
tram_stop: Tramvajska stanica
|
||||||
|
yard: Ranžirni kolodvor
|
||||||
|
shop:
|
||||||
|
alcohol: Trgovina pićem
|
||||||
|
art: Atelje
|
||||||
|
bakery: Pekara
|
||||||
|
beauty: Parfumerija
|
||||||
|
beverages: Trgovina pićem
|
||||||
|
bicycle: Trgovina biciklima
|
||||||
|
books: Knjižara
|
||||||
|
butcher: Mesnica
|
||||||
|
car: Autokuća
|
||||||
|
car_dealer: Autokuća
|
||||||
|
car_parts: Autodijelovi
|
||||||
|
car_repair: Autoservis
|
||||||
|
carpet: Trgovina tepisima
|
||||||
|
chemist: Ljekarna
|
||||||
|
clothes: Butik
|
||||||
|
computer: Computer Shop
|
||||||
|
confectionery: Delikatesa
|
||||||
|
convenience: Minimarket
|
||||||
|
copyshop: Kopiraona
|
||||||
|
cosmetics: Parfumerija
|
||||||
|
department_store: Robna kuća
|
||||||
|
discount: Diskont
|
||||||
|
doityourself: Uradi sam
|
||||||
|
drugstore: Drogerija
|
||||||
|
dry_cleaning: Kemijska čistionica
|
||||||
|
electronics: Trgovina elektronikom
|
||||||
|
estate_agent: Agencija za nekretnine
|
||||||
|
farm: Poljo-apoteka
|
||||||
|
fish: Ribarnica
|
||||||
|
florist: Cvjećarnica
|
||||||
|
food: Trgovina prehranom
|
||||||
|
funeral_directors: Pogrebno poduzeće
|
||||||
|
furniture: Namještaj
|
||||||
|
gallery: Galerija
|
||||||
|
garden_centre: Vrtni centar
|
||||||
|
gift: Poklon trgovina
|
||||||
|
greengrocer: Voćarna
|
||||||
|
grocery: Trgovina prehranom
|
||||||
|
hairdresser: Frizer
|
||||||
|
hardware: Željezar
|
||||||
|
hifi: Hi-Fi
|
||||||
|
insurance: Osiguranje
|
||||||
|
jewelry: Zlatarna
|
||||||
|
kiosk: Kiosk
|
||||||
|
laundry: Praonica rublja
|
||||||
|
mall: Trgovački centar
|
||||||
|
market: Tržnica
|
||||||
|
music: Trgovina glazbom
|
||||||
|
newsagent: Novinar
|
||||||
|
optician: Optičar
|
||||||
|
outdoor: Trgovina za slobodno vrijeme
|
||||||
|
pet: Trgovina za kućne ljubimce
|
||||||
|
photo: Fotograf
|
||||||
|
salon: Salon
|
||||||
|
shoes: Trgovina obućom
|
||||||
|
shopping_centre: Trgovački centar
|
||||||
|
sports: Trgovina sportskom opremom
|
||||||
|
stationery: Papirnica
|
||||||
|
supermarket: Supermarket
|
||||||
|
toys: Trgovina igračkama
|
||||||
|
travel_agency: Putnička agencija
|
||||||
|
video: Videoteka
|
||||||
|
wine: Vinoteka
|
||||||
|
tourism:
|
||||||
|
alpine_hut: Alpska kuća
|
||||||
|
artwork: Umjetničko djelo
|
||||||
|
attraction: Atrakcija
|
||||||
|
bed_and_breakfast: 'Noćenje i doručak'
|
||||||
|
cabin: Koliba
|
||||||
|
camp_site: Kamp
|
||||||
|
caravan_site: Kamp-kućice (mjesto)
|
||||||
|
chalet: Planinska kuća
|
||||||
|
guest_house: Apartman
|
||||||
|
hostel: Hostel
|
||||||
|
hotel: Hotel
|
||||||
|
information: Informacije
|
||||||
|
lean_to: Lean to
|
||||||
|
motel: Motel
|
||||||
|
museum: Muzej
|
||||||
|
picnic_site: Piknik-mjesto
|
||||||
|
theme_park: Tematski park
|
||||||
|
valley: Dolina
|
||||||
|
viewpoint: Vidikovac
|
||||||
|
zoo: Zoo
|
||||||
|
waterway:
|
||||||
|
canal: Kanal
|
||||||
|
dam: Brana
|
||||||
|
dock: Dok
|
||||||
|
mineral_spring: Mineralni izvor
|
||||||
|
mooring: Sidrište
|
||||||
|
river: Rijeka
|
||||||
|
riverbank: Riječna obala
|
||||||
|
stream: Potok
|
||||||
|
waterfall: Vodopad
|
||||||
javascripts:
|
javascripts:
|
||||||
map:
|
map:
|
||||||
base:
|
base:
|
||||||
|
@ -804,12 +1208,18 @@ hr:
|
||||||
body: Žao mi je, ali ne postoji korisnik s imenom {{user}}. Provjerite svoj upis, ili link kojeg ste kliknuli.
|
body: Žao mi je, ali ne postoji korisnik s imenom {{user}}. Provjerite svoj upis, ili link kojeg ste kliknuli.
|
||||||
heading: Korisnik {{user}} ne postoji
|
heading: Korisnik {{user}} ne postoji
|
||||||
title: Nema takvog korisnika
|
title: Nema takvog korisnika
|
||||||
|
offline:
|
||||||
|
heading: GPX spremište Offline
|
||||||
|
message: Sustav za GPX spremanje i upload trenutno nisu u funkciji.
|
||||||
|
offline_warning:
|
||||||
|
message: Sustav za GPX upload trenutno nije u funkciji.
|
||||||
trace:
|
trace:
|
||||||
ago: prije {{time_in_words_ago}}
|
ago: prije {{time_in_words_ago}}
|
||||||
by: od
|
by: od
|
||||||
count_points: "{{count}} točaka"
|
count_points: "{{count}} točaka"
|
||||||
edit: uredi
|
edit: uredi
|
||||||
edit_map: Uredi kartu
|
edit_map: Uredi kartu
|
||||||
|
identifiable: IDENTIFICIRAJUĆI
|
||||||
in: u
|
in: u
|
||||||
map: karta
|
map: karta
|
||||||
more: više
|
more: više
|
||||||
|
@ -817,6 +1227,7 @@ hr:
|
||||||
private: PRIVATNI
|
private: PRIVATNI
|
||||||
public: JAVNI
|
public: JAVNI
|
||||||
trace_details: Detalji trase
|
trace_details: Detalji trase
|
||||||
|
trackable: TRACKABLE
|
||||||
view_map: Prikaži kartu
|
view_map: Prikaži kartu
|
||||||
trace_form:
|
trace_form:
|
||||||
description: Opis
|
description: Opis
|
||||||
|
@ -835,8 +1246,9 @@ hr:
|
||||||
trace_optionals:
|
trace_optionals:
|
||||||
tags: Oznake
|
tags: Oznake
|
||||||
trace_paging_nav:
|
trace_paging_nav:
|
||||||
of: od
|
next: Slijedeća »
|
||||||
showing: Prikazujem stranicu
|
previous: "« Prethodna"
|
||||||
|
showing_page: Prikazujem stranicu {{page}}
|
||||||
view:
|
view:
|
||||||
delete_track: Izbriši ovu trasu
|
delete_track: Izbriši ovu trasu
|
||||||
description: "Opis:"
|
description: "Opis:"
|
||||||
|
|
|
@ -218,6 +218,13 @@ hsb:
|
||||||
zoom_or_select: Wobłuk karty powjetšić abo wubrać
|
zoom_or_select: Wobłuk karty powjetšić abo wubrać
|
||||||
tag_details:
|
tag_details:
|
||||||
tags: "Atributy:"
|
tags: "Atributy:"
|
||||||
|
timeout:
|
||||||
|
sorry: Wodaj, traje předołho, daty za {{type}} z ID {{id}} wotwołać.
|
||||||
|
type:
|
||||||
|
changeset: sadźba změnow
|
||||||
|
node: suk
|
||||||
|
relation: relacija
|
||||||
|
way: puć
|
||||||
way:
|
way:
|
||||||
download: "{{download_xml_link}}, {{view_history_link}} abo {{edit_link}}"
|
download: "{{download_xml_link}}, {{view_history_link}} abo {{edit_link}}"
|
||||||
download_xml: XML sćahnyć
|
download_xml: XML sćahnyć
|
||||||
|
@ -393,6 +400,7 @@ hsb:
|
||||||
other: něhdźe {{count}} km
|
other: něhdźe {{count}} km
|
||||||
zero: mjenje hač 1 km
|
zero: mjenje hač 1 km
|
||||||
results:
|
results:
|
||||||
|
more_results: Dalše wuslědki
|
||||||
no_results: Žane wuslědki namakane
|
no_results: Žane wuslědki namakane
|
||||||
search:
|
search:
|
||||||
title:
|
title:
|
||||||
|
@ -1283,8 +1291,9 @@ hsb:
|
||||||
trace_optionals:
|
trace_optionals:
|
||||||
tags: Atributy
|
tags: Atributy
|
||||||
trace_paging_nav:
|
trace_paging_nav:
|
||||||
of: wot
|
next: Přichodny »
|
||||||
showing: Pokazuje so strona
|
previous: "« Předchadny"
|
||||||
|
showing_page: Pokazuje so strona {{page}}
|
||||||
view:
|
view:
|
||||||
delete_track: Tutu čaru zničić
|
delete_track: Tutu čaru zničić
|
||||||
description: "Wopisanje:"
|
description: "Wopisanje:"
|
||||||
|
|
|
@ -947,9 +947,6 @@ hu:
|
||||||
traces_waiting: "{{count}} nyomvonalad várakozik feltöltésre. Kérlek fontold meg, hogy megvárod, amíg ezek befejeződnek mielőtt feltöltesz továbbiakat, hogy így ne tartsd fel a többi felhasználót a sorban."
|
traces_waiting: "{{count}} nyomvonalad várakozik feltöltésre. Kérlek fontold meg, hogy megvárod, amíg ezek befejeződnek mielőtt feltöltesz továbbiakat, hogy így ne tartsd fel a többi felhasználót a sorban."
|
||||||
trace_optionals:
|
trace_optionals:
|
||||||
tags: Címkék
|
tags: Címkék
|
||||||
trace_paging_nav:
|
|
||||||
of: "összesen:"
|
|
||||||
showing: "Jelenlegi oldal:"
|
|
||||||
view:
|
view:
|
||||||
delete_track: Ezen nyomvonal törlése
|
delete_track: Ezen nyomvonal törlése
|
||||||
description: "Leírás:"
|
description: "Leírás:"
|
||||||
|
|
|
@ -933,9 +933,6 @@ ia:
|
||||||
traces_waiting: Tu ha {{count}} tracias attendente cargamento. Per favor considera attender le completion de istes ante de cargar alteres, pro non blocar le cauda pro altere usatores.
|
traces_waiting: Tu ha {{count}} tracias attendente cargamento. Per favor considera attender le completion de istes ante de cargar alteres, pro non blocar le cauda pro altere usatores.
|
||||||
trace_optionals:
|
trace_optionals:
|
||||||
tags: Etiquettas
|
tags: Etiquettas
|
||||||
trace_paging_nav:
|
|
||||||
of: de
|
|
||||||
showing: Monstrante pagina
|
|
||||||
view:
|
view:
|
||||||
delete_track: Deler iste tracia
|
delete_track: Deler iste tracia
|
||||||
description: "Description:"
|
description: "Description:"
|
||||||
|
|
|
@ -917,9 +917,6 @@ is:
|
||||||
traces_waiting: Þú ert með {{count}} ferla í bið. Íhugaðu að bíða með að senda inn fleiri ferla til að aðrir notendur komist að.
|
traces_waiting: Þú ert með {{count}} ferla í bið. Íhugaðu að bíða með að senda inn fleiri ferla til að aðrir notendur komist að.
|
||||||
trace_optionals:
|
trace_optionals:
|
||||||
tags: Tögg
|
tags: Tögg
|
||||||
trace_paging_nav:
|
|
||||||
of: af
|
|
||||||
showing: Sýni síðu
|
|
||||||
view:
|
view:
|
||||||
delete_track: Eyða
|
delete_track: Eyða
|
||||||
description: "Lýsing:"
|
description: "Lýsing:"
|
||||||
|
|
|
@ -861,7 +861,7 @@ it:
|
||||||
station: Stazione ferroviaria
|
station: Stazione ferroviaria
|
||||||
subway: Metropolitana
|
subway: Metropolitana
|
||||||
summit:
|
summit:
|
||||||
- picco
|
1: picco
|
||||||
tourist: Attrazione turistica
|
tourist: Attrazione turistica
|
||||||
tram:
|
tram:
|
||||||
- Metropolitana di superficie
|
- Metropolitana di superficie
|
||||||
|
@ -942,9 +942,6 @@ it:
|
||||||
traces_waiting: Ci sono {{count}} tracciati in attesa di caricamento. Si consiglia di aspettare il loro completamento prima di caricarne altri, altrimenti si blocca la lista di attesa per altri utenti.
|
traces_waiting: Ci sono {{count}} tracciati in attesa di caricamento. Si consiglia di aspettare il loro completamento prima di caricarne altri, altrimenti si blocca la lista di attesa per altri utenti.
|
||||||
trace_optionals:
|
trace_optionals:
|
||||||
tags: Etichette
|
tags: Etichette
|
||||||
trace_paging_nav:
|
|
||||||
of: di
|
|
||||||
showing: Visualizzata la pagina
|
|
||||||
view:
|
view:
|
||||||
delete_track: Elimina questo tracciato
|
delete_track: Elimina questo tracciato
|
||||||
description: "Descrizione:"
|
description: "Descrizione:"
|
||||||
|
|
|
@ -752,8 +752,6 @@ ja:
|
||||||
traces_waiting: あなたは {{count}} のトレースがアップロード待ちになっています。それらのアップロードが終了するまでお待ちください。他のユーザーのアップロードが制限されてしまいます。
|
traces_waiting: あなたは {{count}} のトレースがアップロード待ちになっています。それらのアップロードが終了するまでお待ちください。他のユーザーのアップロードが制限されてしまいます。
|
||||||
trace_optionals:
|
trace_optionals:
|
||||||
tags: タグ(複数可)
|
tags: タグ(複数可)
|
||||||
trace_paging_nav:
|
|
||||||
showing: ページ表示
|
|
||||||
view:
|
view:
|
||||||
delete_track: このトラックの削除
|
delete_track: このトラックの削除
|
||||||
description: "詳細:"
|
description: "詳細:"
|
||||||
|
|
|
@ -369,8 +369,6 @@ km:
|
||||||
visibility_help: តើនេះមានន័យដូចម្ដេច?
|
visibility_help: តើនេះមានន័យដូចម្ដេច?
|
||||||
trace_optionals:
|
trace_optionals:
|
||||||
tags: ស្លាក
|
tags: ស្លាក
|
||||||
trace_paging_nav:
|
|
||||||
of: នៃ
|
|
||||||
view:
|
view:
|
||||||
description: បរិយាយ៖
|
description: បរិយាយ៖
|
||||||
download: ទាញយក
|
download: ទាញយក
|
||||||
|
|
|
@ -212,6 +212,13 @@ mk:
|
||||||
zoom_or_select: Приближи и избери простор на картата за преглед
|
zoom_or_select: Приближи и избери простор на картата за преглед
|
||||||
tag_details:
|
tag_details:
|
||||||
tags: "Ознаки:"
|
tags: "Ознаки:"
|
||||||
|
timeout:
|
||||||
|
sorry: Жалиме, но добивањето на податоците за {{type}} со id {{id}} трае предолго.
|
||||||
|
type:
|
||||||
|
changeset: менувач
|
||||||
|
node: јазол
|
||||||
|
relation: релација
|
||||||
|
way: пат
|
||||||
way:
|
way:
|
||||||
download: "{{download_xml_link}}, {{view_history_link}} или {{edit_link}}"
|
download: "{{download_xml_link}}, {{view_history_link}} или {{edit_link}}"
|
||||||
download_xml: Преземи XML
|
download_xml: Преземи XML
|
||||||
|
@ -383,6 +390,7 @@ mk:
|
||||||
other: околу {{count}}km
|
other: околу {{count}}km
|
||||||
zero: помалку од 1km
|
zero: помалку од 1km
|
||||||
results:
|
results:
|
||||||
|
more_results: Повеќе резултати
|
||||||
no_results: Нема пронајдено резултати
|
no_results: Нема пронајдено резултати
|
||||||
search:
|
search:
|
||||||
title:
|
title:
|
||||||
|
@ -1245,6 +1253,7 @@ mk:
|
||||||
count_points: "{{count}} точки"
|
count_points: "{{count}} точки"
|
||||||
edit: уреди
|
edit: уреди
|
||||||
edit_map: Уредување
|
edit_map: Уредување
|
||||||
|
identifiable: ПРЕПОЗНАТЛИВ
|
||||||
in: во
|
in: во
|
||||||
map: карта
|
map: карта
|
||||||
more: повеќе
|
more: повеќе
|
||||||
|
@ -1252,6 +1261,7 @@ mk:
|
||||||
private: ПРИВАТНО
|
private: ПРИВАТНО
|
||||||
public: ЈАВНО
|
public: ЈАВНО
|
||||||
trace_details: Погледајте ги деталите за трагата
|
trace_details: Погледајте ги деталите за трагата
|
||||||
|
trackable: ПРОСЛЕДЛИВ
|
||||||
view_map: Погледај ја картата
|
view_map: Погледај ја картата
|
||||||
trace_form:
|
trace_form:
|
||||||
description: Опис
|
description: Опис
|
||||||
|
@ -1270,8 +1280,9 @@ mk:
|
||||||
trace_optionals:
|
trace_optionals:
|
||||||
tags: Ознаки
|
tags: Ознаки
|
||||||
trace_paging_nav:
|
trace_paging_nav:
|
||||||
of: од
|
next: Следна »
|
||||||
showing: Приказ на страницата
|
previous: "« Претходна"
|
||||||
|
showing_page: Прикажувам страница {{page}}
|
||||||
view:
|
view:
|
||||||
delete_track: Избриши ја трагава
|
delete_track: Избриши ја трагава
|
||||||
description: "Опис:"
|
description: "Опис:"
|
||||||
|
@ -1322,7 +1333,7 @@ mk:
|
||||||
return to profile: Назад кон профилот
|
return to profile: Назад кон профилот
|
||||||
save changes button: Зачувај ги промените
|
save changes button: Зачувај ги промените
|
||||||
title: Уреди сметка
|
title: Уреди сметка
|
||||||
update home location on click: Ажурирање на домашната локација кога ќе се кликне на картата?
|
update home location on click: Подновувај ја домашната локација кога ќе кликнам на картата
|
||||||
confirm:
|
confirm:
|
||||||
button: Потврди
|
button: Потврди
|
||||||
failure: Веќе имаме потврдено корисничка сметка со овој жетон.
|
failure: Веќе имаме потврдено корисничка сметка со овој жетон.
|
||||||
|
|
|
@ -437,8 +437,6 @@ nds:
|
||||||
upload_button: Hoochladen
|
upload_button: Hoochladen
|
||||||
upload_gpx: GPX-Datei hoochladen
|
upload_gpx: GPX-Datei hoochladen
|
||||||
visibility: Sichtborkeit
|
visibility: Sichtborkeit
|
||||||
trace_paging_nav:
|
|
||||||
of: von
|
|
||||||
view:
|
view:
|
||||||
description: "Beschrieven:"
|
description: "Beschrieven:"
|
||||||
download: dalladen
|
download: dalladen
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
# Export driver: syck
|
# Export driver: syck
|
||||||
# Author: Freek
|
# Author: Freek
|
||||||
# Author: Fruggo
|
# Author: Fruggo
|
||||||
|
# Author: Greencaps
|
||||||
# Author: McDutchie
|
# Author: McDutchie
|
||||||
# Author: SPQRobin
|
# Author: SPQRobin
|
||||||
# Author: Siebrand
|
# Author: Siebrand
|
||||||
|
@ -47,7 +48,7 @@ nl:
|
||||||
changeset_tag: Label van set wijzigingen
|
changeset_tag: Label van set wijzigingen
|
||||||
country: Land
|
country: Land
|
||||||
diary_comment: Dagboekopmerking
|
diary_comment: Dagboekopmerking
|
||||||
diary_entry: Dagboekingave
|
diary_entry: Dagboekbericht
|
||||||
friend: Vriend
|
friend: Vriend
|
||||||
language: Taal
|
language: Taal
|
||||||
message: Bericht
|
message: Bericht
|
||||||
|
@ -281,49 +282,49 @@ nl:
|
||||||
comment_count:
|
comment_count:
|
||||||
one: 1 reactie
|
one: 1 reactie
|
||||||
other: "{{count}} reacties"
|
other: "{{count}} reacties"
|
||||||
comment_link: Reactie op deze ingave geven
|
comment_link: Reageren op dit bericht
|
||||||
confirm: Bevestigen
|
confirm: Bevestigen
|
||||||
edit_link: Deze ingave bewerken
|
edit_link: Dit bericht bewerken
|
||||||
hide_link: Ingave verbergen
|
hide_link: Bericht verbergen
|
||||||
posted_by: Geplaatst door {{link_user}} op {{created}} in het {{language_link}}
|
posted_by: Geplaatst door {{link_user}} op {{created}} in het {{language_link}}
|
||||||
reply_link: Op deze ingave reageren
|
reply_link: Reageren op dit bericht
|
||||||
edit:
|
edit:
|
||||||
body: "Tekst:"
|
body: "Tekst:"
|
||||||
language: "Taal:"
|
language: "Taal:"
|
||||||
latitude: "Breedtegraad:"
|
latitude: "Breedtegraad:"
|
||||||
location: "Locatie:"
|
location: "Locatie:"
|
||||||
longitude: "Lengtegraad:"
|
longitude: "Lengtegraad:"
|
||||||
marker_text: Locatie van ingave
|
marker_text: Locatie van bericht
|
||||||
save_button: Opslaan
|
save_button: Opslaan
|
||||||
subject: "Onderwerp:"
|
subject: "Onderwerp:"
|
||||||
title: Dagboekingave bewerken
|
title: Dagboekbericht bewerken
|
||||||
use_map_link: kaart gebruiken
|
use_map_link: kaart gebruiken
|
||||||
feed:
|
feed:
|
||||||
all:
|
all:
|
||||||
description: Recente dagboekingaven van OpenStreetMap-gebruikers
|
description: Recente dagboekberichten van OpenStreetMap-gebruikers
|
||||||
title: OpenStreetMap dagboekingaven
|
title: OpenStreetMap dagboekberichten
|
||||||
language:
|
language:
|
||||||
description: Recente dagboekingaven van OpenStreetMap-gebruikers in het {{language_name}}
|
description: Recente dagboekberichten van OpenStreetMap-gebruikers in het {{language_name}}
|
||||||
title: OpenStreetMap dagboekingaven in het {{language_name}}
|
title: OpenStreetMap dagboekberichten in het {{language_name}}
|
||||||
user:
|
user:
|
||||||
description: Recente OpenStreetMap dagboekingaven van {{user}}
|
description: Recente OpenStreetMap dagboekberichten van {{user}}
|
||||||
title: OpenStreetMap dagboekingaven van {{user}}
|
title: OpenStreetMap dagboekberichten van {{user}}
|
||||||
list:
|
list:
|
||||||
in_language_title: Dagboekingaven in het {{language}}
|
in_language_title: Dagboekberichten in het {{language}}
|
||||||
new: Nieuwe dagboekingave
|
new: Nieuw dagboekbericht
|
||||||
new_title: Nieuwe ingave voor uw dagboek schrijven
|
new_title: Nieuwe bericht voor uw dagboek schrijven
|
||||||
newer_entries: Nieuwere ingaven
|
newer_entries: Nieuwere berichten
|
||||||
no_entries: Geen dagboekingaven
|
no_entries: Het dagboek is leeg
|
||||||
older_entries: Oudere ingaven
|
older_entries: Oudere berichten
|
||||||
recent_entries: "Recente dagboekingaven:"
|
recent_entries: "Recente dagboekberichten:"
|
||||||
title: Gebruikersdagboeken
|
title: Gebruikersdagboeken
|
||||||
user_title: Dagboek van {{user}}
|
user_title: Dagboek van {{user}}
|
||||||
new:
|
new:
|
||||||
title: Nieuwe dagboekingave
|
title: Nieuw dagboekbericht
|
||||||
no_such_entry:
|
no_such_entry:
|
||||||
body: Sorry, er is geen dagboekingave of opmerking met het id {{id}}. Controleer de spelling, of misschien is de verwijzing waarop u geklikt hebt onjuist.
|
body: Sorry, er is geen dagboekbericht of opmerking met het id {{id}}. Controleer de spelling, of misschien is de verwijzing waarop u geklikt hebt onjuist.
|
||||||
heading: De ingave met het id {{id}} bestaat niet
|
heading: Een bericht met id {{id}} bestaat niet
|
||||||
title: De opgevraagde dagboekingave bestaat niet
|
title: Het opgevraagde dagboekbericht bestaat niet
|
||||||
no_such_user:
|
no_such_user:
|
||||||
body: Sorry, er is geen gebruiker met de naam {{user}}. Controleer de spelling, of misschien is de verwijzing waarop u geklikt hebt onjuist.
|
body: Sorry, er is geen gebruiker met de naam {{user}}. Controleer de spelling, of misschien is de verwijzing waarop u geklikt hebt onjuist.
|
||||||
heading: De gebruiker {{user}} bestaat niet
|
heading: De gebruiker {{user}} bestaat niet
|
||||||
|
@ -931,7 +932,7 @@ nl:
|
||||||
limit_exceeded: U hebt recentelijk veel berichten verstuurd. Wacht even voordat u weer berichten kunt versturen.
|
limit_exceeded: U hebt recentelijk veel berichten verstuurd. Wacht even voordat u weer berichten kunt versturen.
|
||||||
message_sent: Bericht verzonden
|
message_sent: Bericht verzonden
|
||||||
send_button: Verzenden
|
send_button: Verzenden
|
||||||
send_message_to: Nieuw bericht naar {{name}} verzenden
|
send_message_to: Een persoonlijk bericht naar {{name}} versturen
|
||||||
subject: Onderwerp
|
subject: Onderwerp
|
||||||
title: Bericht verzenden
|
title: Bericht verzenden
|
||||||
no_such_user:
|
no_such_user:
|
||||||
|
@ -1050,7 +1051,7 @@ nl:
|
||||||
allow_read_prefs: uw gebruikersvoorkeuren lezen
|
allow_read_prefs: uw gebruikersvoorkeuren lezen
|
||||||
allow_to: "De clienttoepassing de volgende rechten geven:"
|
allow_to: "De clienttoepassing de volgende rechten geven:"
|
||||||
allow_write_api: de kaart wijzigen
|
allow_write_api: de kaart wijzigen
|
||||||
allow_write_diary: dagboekingaven aanmaken, reacties geven en vrienden maken
|
allow_write_diary: dagboekberichten schrijven, reacties geven en vrienden maken
|
||||||
allow_write_gpx: GPS-tracks uploaden
|
allow_write_gpx: GPS-tracks uploaden
|
||||||
allow_write_prefs: uw gebruikersvoorkeuren wijzigen
|
allow_write_prefs: uw gebruikersvoorkeuren wijzigen
|
||||||
request_access: De applicatie {{app_name}} vraagt toegang tot uw gebruiker. Controleer of u deze applicatie de volgende mogelijkheden wilt bieden. U kunt zoveel of zo weinig rechten toewijzen als u wilt.
|
request_access: De applicatie {{app_name}} vraagt toegang tot uw gebruiker. Controleer of u deze applicatie de volgende mogelijkheden wilt bieden. U kunt zoveel of zo weinig rechten toewijzen als u wilt.
|
||||||
|
@ -1068,7 +1069,7 @@ nl:
|
||||||
allow_read_gpx: privé-GPS-tracks lezen
|
allow_read_gpx: privé-GPS-tracks lezen
|
||||||
allow_read_prefs: gebruikersinstellingen lezen
|
allow_read_prefs: gebruikersinstellingen lezen
|
||||||
allow_write_api: de kaart wijzigen
|
allow_write_api: de kaart wijzigen
|
||||||
allow_write_diary: dagboekingaven aanmaken, reacties en vrienden toevoegen
|
allow_write_diary: dagboekberichten schrijven, reacties en vrienden toevoegen
|
||||||
allow_write_gpx: GPS-tracks uploaden
|
allow_write_gpx: GPS-tracks uploaden
|
||||||
allow_write_prefs: gebruikersinstellingen wijzigen
|
allow_write_prefs: gebruikersinstellingen wijzigen
|
||||||
callback_url: Callback-URL
|
callback_url: Callback-URL
|
||||||
|
@ -1098,7 +1099,7 @@ nl:
|
||||||
allow_read_gpx: eigen GPS-tracks bekijken
|
allow_read_gpx: eigen GPS-tracks bekijken
|
||||||
allow_read_prefs: gebruikerseigenschappen bekijken.
|
allow_read_prefs: gebruikerseigenschappen bekijken.
|
||||||
allow_write_api: kaart wijzigen
|
allow_write_api: kaart wijzigen
|
||||||
allow_write_diary: dagboekingaven maken, reacties geven en vrienden maken
|
allow_write_diary: dagboekberichten schrijven, reacties geven en vrienden maken
|
||||||
allow_write_gpx: GPS-tracks uploaden
|
allow_write_gpx: GPS-tracks uploaden
|
||||||
allow_write_prefs: gebruikerseigenschappen wijzigen
|
allow_write_prefs: gebruikerseigenschappen wijzigen
|
||||||
authorize_url: "URL voor autorisatie:"
|
authorize_url: "URL voor autorisatie:"
|
||||||
|
@ -1281,8 +1282,9 @@ nl:
|
||||||
trace_optionals:
|
trace_optionals:
|
||||||
tags: Labels
|
tags: Labels
|
||||||
trace_paging_nav:
|
trace_paging_nav:
|
||||||
of: van
|
next: Volgende »
|
||||||
showing: Bezig met weergeven van pagina
|
previous: "« Vorige"
|
||||||
|
showing_page: Pagina {{page}}
|
||||||
view:
|
view:
|
||||||
delete_track: Deze track verwijderen
|
delete_track: Deze track verwijderen
|
||||||
description: "Beschrijving:"
|
description: "Beschrijving:"
|
||||||
|
@ -1440,7 +1442,7 @@ nl:
|
||||||
my traces: mijn tracks
|
my traces: mijn tracks
|
||||||
my_oauth_details: Mijn OAuth-gegevens bekijken
|
my_oauth_details: Mijn OAuth-gegevens bekijken
|
||||||
nearby users: "Dichtbijzijnde mappers:"
|
nearby users: "Dichtbijzijnde mappers:"
|
||||||
new diary entry: nieuwe dagboekingave
|
new diary entry: nieuw dagboekbericht
|
||||||
no friends: U hebt nog geen vrienden toegevoegd.
|
no friends: U hebt nog geen vrienden toegevoegd.
|
||||||
no home location: Geen thuislocatie ingesteld.
|
no home location: Geen thuislocatie ingesteld.
|
||||||
no nearby users: Er zijn geen dichtbijzijnde mappers.
|
no nearby users: Er zijn geen dichtbijzijnde mappers.
|
||||||
|
|
|
@ -813,9 +813,6 @@
|
||||||
traces_waiting: Du har {{count}} spor som venter på opplasting. Du bør vurdere å la disse bli ferdig før du laster opp flere spor slik at du ikke blokkerer køa for andre brukere.
|
traces_waiting: Du har {{count}} spor som venter på opplasting. Du bør vurdere å la disse bli ferdig før du laster opp flere spor slik at du ikke blokkerer køa for andre brukere.
|
||||||
trace_optionals:
|
trace_optionals:
|
||||||
tags: Markelapper
|
tags: Markelapper
|
||||||
trace_paging_nav:
|
|
||||||
of: av
|
|
||||||
showing: Viser side
|
|
||||||
view:
|
view:
|
||||||
delete_track: Slett dette sporet
|
delete_track: Slett dette sporet
|
||||||
description: "Beskrivelse:"
|
description: "Beskrivelse:"
|
||||||
|
|
|
@ -218,6 +218,13 @@ pl:
|
||||||
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:"
|
||||||
|
timeout:
|
||||||
|
sorry: Niestety, pobranie danych dla {{type}} o identyfikatorze {{id}} trwało zbyt długo.
|
||||||
|
type:
|
||||||
|
changeset: Zestaw zmian
|
||||||
|
node: węzeł
|
||||||
|
relation: relacja
|
||||||
|
way: droga
|
||||||
way:
|
way:
|
||||||
download: "{{download_xml_link}} lub {{view_history_link}}"
|
download: "{{download_xml_link}} lub {{view_history_link}}"
|
||||||
download_xml: Ściągnij XML
|
download_xml: Ściągnij XML
|
||||||
|
@ -389,6 +396,7 @@ pl:
|
||||||
other: około {{count}}km
|
other: około {{count}}km
|
||||||
zero: mniej niż 1km
|
zero: mniej niż 1km
|
||||||
results:
|
results:
|
||||||
|
more_results: Więcej wyników
|
||||||
no_results: Nie znaleziono
|
no_results: Nie znaleziono
|
||||||
search:
|
search:
|
||||||
title:
|
title:
|
||||||
|
@ -971,6 +979,9 @@ pl:
|
||||||
click_the_link: Jeśli to ty, kliknij na poniższy link, aby potwierdzić zmianę.
|
click_the_link: Jeśli to ty, kliknij na poniższy link, aby potwierdzić zmianę.
|
||||||
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:
|
||||||
|
hopefully_you_1: Ktoś (prawdopodobnie Ty sam(a)) chciałby zmienić adres e-mail w serwisie
|
||||||
|
hopefully_you_2: "{{server_url}} na {{new_address}}."
|
||||||
friend_notification:
|
friend_notification:
|
||||||
had_added_you: "{{user}} dodał(a) Cię jako swojego znajomego na OpenStreetMap."
|
had_added_you: "{{user}} dodał(a) Cię jako swojego znajomego na OpenStreetMap."
|
||||||
see_their_profile: Możesz przeczytać jego/jej profil pod {{userurl}} oraz dodać jako Twojego znajomego/ą jeśli chcesz.
|
see_their_profile: Możesz przeczytać jego/jej profil pod {{userurl}} oraz dodać jako Twojego znajomego/ą jeśli chcesz.
|
||||||
|
@ -979,19 +990,33 @@ pl:
|
||||||
and_no_tags: i brak znaczników
|
and_no_tags: i brak znaczników
|
||||||
and_the_tags: i następujące znaczniki
|
and_the_tags: i następujące znaczniki
|
||||||
failure:
|
failure:
|
||||||
|
failed_to_import: "nie udało się zaimportować. Komunikat błędu:"
|
||||||
|
more_info_1: Więcej informacji na temat błędów przesyłania danych GPX i sposobach ich
|
||||||
|
more_info_2: "uniknięcia można znaleźć na stronie:"
|
||||||
subject: "[OpenStreetMap] Błąd importu pliku GPX"
|
subject: "[OpenStreetMap] Błąd importu pliku GPX"
|
||||||
greeting: Witaj,
|
greeting: Witaj,
|
||||||
success:
|
success:
|
||||||
|
loaded_successfully: udało się załadować, wraz z {{trace_points}} z {{possible_points}} punktów łącznie.
|
||||||
subject: "[OpenStreetMap] Sukces importu pliku GPX"
|
subject: "[OpenStreetMap] Sukces importu pliku GPX"
|
||||||
with_description: z opisem
|
with_description: z opisem
|
||||||
your_gpx_file: Wygląda, ze Twój plik GPX
|
your_gpx_file: Wygląda, ze Twój plik GPX
|
||||||
|
lost_password_html:
|
||||||
|
click_the_link: Jeśli to Ty, kliknij na poniższy link, aby zresetować hasło.
|
||||||
|
greeting: Witaj,
|
||||||
|
hopefully_you: Ktoś - prawdopodobnie Ty - poprosił w serwisie openstreetmap.org o zresetowanie hasła do konta należącego do tego adresu e-mail.
|
||||||
lost_password_plain:
|
lost_password_plain:
|
||||||
click_the_link: Jeśli to ty, kliknij na poniższy link, aby zresetować hasło.
|
click_the_link: Jeśli to ty, kliknij na poniższy link, aby zresetować hasło.
|
||||||
greeting: Cześć,
|
greeting: Cześć,
|
||||||
hopefully_you_1: Ktoś (prawdopodobnie Ty) poprosił o zresetowanie hasła dla tego
|
hopefully_you_1: Ktoś (prawdopodobnie Ty) poprosił o zresetowanie hasła dla tego
|
||||||
hopefully_you_2: adresy e-mail konto openstreetmap.org.
|
hopefully_you_2: adresy e-mail konto openstreetmap.org.
|
||||||
message_notification:
|
message_notification:
|
||||||
|
footer1: Możesz też przeczytać tę wiadomość pod adresem {{readurl}}
|
||||||
|
footer2: możesz odpowiedzieć pod adresem {{replyurl}}
|
||||||
|
header: "{{from_user}} wysłał do Ciebie wiadomość z OpenStreetMap o temacie {{subject}}:"
|
||||||
|
hi: Witaj {{to_user}},
|
||||||
subject: "[OpenStreetMap] Użytkownik {{user}} przysłał nową wiadomość"
|
subject: "[OpenStreetMap] Użytkownik {{user}} przysłał nową wiadomość"
|
||||||
|
signup_confirm:
|
||||||
|
subject: "[OpenStreetMap] Prośba o potwierdzenie adresu e-mail"
|
||||||
signup_confirm_html:
|
signup_confirm_html:
|
||||||
click_the_link: Jeśli to Ty, witamy! Kliknij poniższy link żeby potwierdzić Twoje nowe konto i dowiedzieć się więcej o OpenStreetMap.
|
click_the_link: Jeśli to Ty, witamy! Kliknij poniższy link żeby potwierdzić Twoje nowe konto i dowiedzieć się więcej o OpenStreetMap.
|
||||||
current_user: Aktualne listy użytkowników według ich położenia na Ziemi znajdziesz na stronie <a href="http://wiki.openstreetmap.org/wiki/Category:Users_by_geographical_region">Category:Users_by_geographical_region</a>.
|
current_user: Aktualne listy użytkowników według ich położenia na Ziemi znajdziesz na stronie <a href="http://wiki.openstreetmap.org/wiki/Category:Users_by_geographical_region">Category:Users_by_geographical_region</a>.
|
||||||
|
@ -1031,6 +1056,9 @@ pl:
|
||||||
request_access: Aplikacja {{app_name}} żąda dostępu do Twojego konta użytkownika. Sprawdź, czy chcesz pozwolić aplikacji na poniższe działania. Możesz wybrać dowolną liczbę opcji.
|
request_access: Aplikacja {{app_name}} żąda dostępu do Twojego konta użytkownika. Sprawdź, czy chcesz pozwolić aplikacji na poniższe działania. Możesz wybrać dowolną liczbę opcji.
|
||||||
revoke:
|
revoke:
|
||||||
flash: Cofnąłeś prawa dostępu dla aplikacji {{application}}
|
flash: Cofnąłeś prawa dostępu dla aplikacji {{application}}
|
||||||
|
oauth_clients:
|
||||||
|
edit:
|
||||||
|
submit: Edytuj
|
||||||
site:
|
site:
|
||||||
edit:
|
edit:
|
||||||
anon_edits_link_text: Tu dowiesz się dlaczego.
|
anon_edits_link_text: Tu dowiesz się dlaczego.
|
||||||
|
@ -1173,7 +1201,7 @@ pl:
|
||||||
count_points: "{{count}} punktów"
|
count_points: "{{count}} punktów"
|
||||||
edit: edycja
|
edit: edycja
|
||||||
edit_map: Edytuj Mapę
|
edit_map: Edytuj Mapę
|
||||||
identifiable: Możliwy do zidentyfikowania
|
identifiable: IDENTYFIKOWALNY
|
||||||
in: w
|
in: w
|
||||||
map: mapa
|
map: mapa
|
||||||
more: więcej
|
more: więcej
|
||||||
|
@ -1181,7 +1209,7 @@ pl:
|
||||||
private: PRYWATNY
|
private: PRYWATNY
|
||||||
public: PUBLICZNY
|
public: PUBLICZNY
|
||||||
trace_details: Pokaż szczegóły śladu
|
trace_details: Pokaż szczegóły śladu
|
||||||
trackable: Możliwy do śledzenia
|
trackable: MOŻLIWY DO ŚLEDZENIA
|
||||||
view_map: Pokaż mapę
|
view_map: Pokaż mapę
|
||||||
trace_form:
|
trace_form:
|
||||||
description: Opis
|
description: Opis
|
||||||
|
@ -1200,8 +1228,9 @@ pl:
|
||||||
trace_optionals:
|
trace_optionals:
|
||||||
tags: Znaczniki
|
tags: Znaczniki
|
||||||
trace_paging_nav:
|
trace_paging_nav:
|
||||||
of: z
|
next: Następny »
|
||||||
showing: Widoczna jest strona
|
previous: "« Poprzedni"
|
||||||
|
showing_page: Wyświetlanie strony {{page}}
|
||||||
view:
|
view:
|
||||||
delete_track: Wykasuj ten ślad
|
delete_track: Wykasuj ten ślad
|
||||||
description: "Opis:"
|
description: "Opis:"
|
||||||
|
@ -1403,9 +1432,20 @@ pl:
|
||||||
block_expired: Blokada zakończyła się i nie można jej edytować.
|
block_expired: Blokada zakończyła się i nie można jej edytować.
|
||||||
block_period: Długość blokady należy wybrać z listy rozwijanej.
|
block_period: Długość blokady należy wybrać z listy rozwijanej.
|
||||||
not_a_moderator: Musisz być moderatorem, by wykonać to działanie.
|
not_a_moderator: Musisz być moderatorem, by wykonać to działanie.
|
||||||
|
helper:
|
||||||
|
time_future: Blokada wygasa {{time}}.
|
||||||
|
time_past: Zakończono {{time}} temu.
|
||||||
|
until_login: Aktywne do momentu zalogowania użytkownika.
|
||||||
|
index:
|
||||||
|
empty: Nie nałożono do tej pory żadnych blokad.
|
||||||
|
heading: Lista blokad użytkowników
|
||||||
|
title: Blokady użytkownika
|
||||||
model:
|
model:
|
||||||
non_moderator_revoke: Musisz być moderatorem, żeby odwoływać blokady.
|
non_moderator_revoke: Musisz być moderatorem, żeby odwoływać blokady.
|
||||||
non_moderator_update: Musisz być moderatorem, żeby ustalać i edytować blokady.
|
non_moderator_update: Musisz być moderatorem, żeby ustalać i edytować blokady.
|
||||||
|
not_found:
|
||||||
|
back: Powrót do spisu
|
||||||
|
sorry: Niestety, nie udało się odnaleźć blokady użytkownika o identyfikatorze {{id}}.
|
||||||
partial:
|
partial:
|
||||||
confirm: Na pewno?
|
confirm: Na pewno?
|
||||||
creator_name: Twórca
|
creator_name: Twórca
|
||||||
|
@ -1420,6 +1460,14 @@ pl:
|
||||||
period:
|
period:
|
||||||
one: 1 godzina
|
one: 1 godzina
|
||||||
other: "{{count}} godzin"
|
other: "{{count}} godzin"
|
||||||
|
revoke:
|
||||||
|
confirm: Czy na pewno chcesz odwołać tę blokadę?
|
||||||
|
flash: Blokada została odwołana.
|
||||||
|
heading: Odwoływanie blokady użytkownika {{block_on}} nałożonej przez użytkownika {{block_by}}
|
||||||
|
past: Blokada zakończyła się {{time}} temu i nie można jej odwołać.
|
||||||
|
revoke: Odwołaj
|
||||||
|
time_future: Blokada zakończy się za {{time}}.
|
||||||
|
title: Odwoływanie blokady użytkownika {{block_on}}
|
||||||
show:
|
show:
|
||||||
back: Przejrzyj wszystkie blokady
|
back: Przejrzyj wszystkie blokady
|
||||||
confirm: Na pewno?
|
confirm: Na pewno?
|
||||||
|
|
|
@ -969,9 +969,6 @@ pt-BR:
|
||||||
traces_waiting: Você tem {{count}} trilhas esperando para subir. Por favor considere esperar que elas terminem antes de subir mais, para não bloquear a fila para outros usuários.
|
traces_waiting: Você tem {{count}} trilhas esperando para subir. Por favor considere esperar que elas terminem antes de subir mais, para não bloquear a fila para outros usuários.
|
||||||
trace_optionals:
|
trace_optionals:
|
||||||
tags: Etiquetas
|
tags: Etiquetas
|
||||||
trace_paging_nav:
|
|
||||||
of: de
|
|
||||||
showing: Mostrando página
|
|
||||||
view:
|
view:
|
||||||
delete_track: Apague esta trilha
|
delete_track: Apague esta trilha
|
||||||
description: "Descrição:"
|
description: "Descrição:"
|
||||||
|
|
|
@ -130,9 +130,6 @@ pt:
|
||||||
more: mais
|
more: mais
|
||||||
pending: PENDENTE
|
pending: PENDENTE
|
||||||
view_map: Ver Mapa
|
view_map: Ver Mapa
|
||||||
trace_paging_nav:
|
|
||||||
of: de
|
|
||||||
showing: Mostrando página
|
|
||||||
view:
|
view:
|
||||||
edit: editar
|
edit: editar
|
||||||
map: mapa
|
map: mapa
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
# Author: Chilin
|
# Author: Chilin
|
||||||
# Author: Ezhick
|
# Author: Ezhick
|
||||||
# Author: Komzpa
|
# Author: Komzpa
|
||||||
|
# Author: Lockal
|
||||||
# Author: Yuri Nazarov
|
# Author: Yuri Nazarov
|
||||||
# Author: Александр Сигачёв
|
# Author: Александр Сигачёв
|
||||||
ru:
|
ru:
|
||||||
|
@ -217,6 +218,13 @@ ru:
|
||||||
zoom_or_select: Увеличьте или выберите область для просмотра
|
zoom_or_select: Увеличьте или выберите область для просмотра
|
||||||
tag_details:
|
tag_details:
|
||||||
tags: "Теги:"
|
tags: "Теги:"
|
||||||
|
timeout:
|
||||||
|
sorry: Извините, данные для {{type}} с id {{id}} слишком длинные для извлечения.
|
||||||
|
type:
|
||||||
|
changeset: пакета правок
|
||||||
|
node: точки
|
||||||
|
relation: отношения
|
||||||
|
way: линии
|
||||||
way:
|
way:
|
||||||
download: "{{download_xml_link}}, {{view_history_link}} или {{edit_link}}"
|
download: "{{download_xml_link}}, {{view_history_link}} или {{edit_link}}"
|
||||||
download_xml: Скачать XML
|
download_xml: Скачать XML
|
||||||
|
@ -388,6 +396,7 @@ ru:
|
||||||
other: около {{count}} км
|
other: около {{count}} км
|
||||||
zero: менее 1 км
|
zero: менее 1 км
|
||||||
results:
|
results:
|
||||||
|
more_results: Ещё результаты
|
||||||
no_results: Ничего не найдено
|
no_results: Ничего не найдено
|
||||||
search:
|
search:
|
||||||
title:
|
title:
|
||||||
|
@ -1287,8 +1296,9 @@ ru:
|
||||||
trace_optionals:
|
trace_optionals:
|
||||||
tags: "Теги:"
|
tags: "Теги:"
|
||||||
trace_paging_nav:
|
trace_paging_nav:
|
||||||
of: из
|
next: Следующая →
|
||||||
showing: Страница
|
previous: ← Предыдущая
|
||||||
|
showing_page: Показывается страница {{page}}
|
||||||
view:
|
view:
|
||||||
delete_track: Удалить этот трек
|
delete_track: Удалить этот трек
|
||||||
description: "Описание:"
|
description: "Описание:"
|
||||||
|
|
|
@ -7,15 +7,19 @@
|
||||||
sk:
|
sk:
|
||||||
activerecord:
|
activerecord:
|
||||||
attributes:
|
attributes:
|
||||||
|
diary_comment:
|
||||||
|
body: Telo
|
||||||
diary_entry:
|
diary_entry:
|
||||||
language: Jazyk
|
language: Jazyk
|
||||||
latitude: Zem. šírka
|
latitude: Zem. šírka
|
||||||
longitude: Zem. dĺžka
|
longitude: Zem. dĺžka
|
||||||
|
title: Nadpis
|
||||||
user: Užívateľ
|
user: Užívateľ
|
||||||
friend:
|
friend:
|
||||||
friend: Priateľ
|
friend: Priateľ
|
||||||
user: Užívateľ
|
user: Užívateľ
|
||||||
message:
|
message:
|
||||||
|
body: Telo
|
||||||
sender: Odosielateľ
|
sender: Odosielateľ
|
||||||
trace:
|
trace:
|
||||||
description: Popis
|
description: Popis
|
||||||
|
@ -33,6 +37,7 @@ sk:
|
||||||
languages: Jazyky
|
languages: Jazyky
|
||||||
pass_crypt: Heslo
|
pass_crypt: Heslo
|
||||||
models:
|
models:
|
||||||
|
country: Krajina
|
||||||
friend: Priateľ
|
friend: Priateľ
|
||||||
language: Jazyk
|
language: Jazyk
|
||||||
message: Správa
|
message: Správa
|
||||||
|
@ -181,6 +186,9 @@ sk:
|
||||||
zoom_or_select: Priblížiť alebo zvoliť oblasť na mape na zobrazenie
|
zoom_or_select: Priblížiť alebo zvoliť oblasť na mape na zobrazenie
|
||||||
tag_details:
|
tag_details:
|
||||||
tags: "Tagy:"
|
tags: "Tagy:"
|
||||||
|
timeout:
|
||||||
|
type:
|
||||||
|
node: uzol
|
||||||
way:
|
way:
|
||||||
download: "{{download_xml_link}}, {{view_history_link}} alebo {{edit_link}}"
|
download: "{{download_xml_link}}, {{view_history_link}} alebo {{edit_link}}"
|
||||||
download_xml: Stiahnuť XML
|
download_xml: Stiahnuť XML
|
||||||
|
@ -201,13 +209,26 @@ sk:
|
||||||
way_history: História Cesty
|
way_history: História Cesty
|
||||||
way_history_title: "História Cesty: {{way_name}}"
|
way_history_title: "História Cesty: {{way_name}}"
|
||||||
changeset:
|
changeset:
|
||||||
|
changeset:
|
||||||
|
still_editing: (stále sa upravuje)
|
||||||
|
changeset_paging_nav:
|
||||||
|
next: Ďalšia »
|
||||||
|
previous: "« Predošlá"
|
||||||
|
showing_page: Zobrazená stránka {{page}}
|
||||||
changesets:
|
changesets:
|
||||||
area: Oblasť
|
area: Oblasť
|
||||||
comment: Komentár
|
comment: Komentár
|
||||||
id: ID
|
id: ID
|
||||||
saved_at: Uložené
|
saved_at: Uložené
|
||||||
user: Používateľ
|
user: Používateľ
|
||||||
|
list:
|
||||||
|
description: Posledné zmeny
|
||||||
diary_entry:
|
diary_entry:
|
||||||
|
diary_entry:
|
||||||
|
comment_count:
|
||||||
|
few: "{{count}} komentáre"
|
||||||
|
one: 1 komentár
|
||||||
|
other: "{{count}} komentárov"
|
||||||
edit:
|
edit:
|
||||||
language: "Jazyk:"
|
language: "Jazyk:"
|
||||||
save_button: Uložiť
|
save_button: Uložiť
|
||||||
|
@ -219,11 +240,11 @@ sk:
|
||||||
export:
|
export:
|
||||||
start:
|
start:
|
||||||
add_marker: Pridať marker na mapu
|
add_marker: Pridať marker na mapu
|
||||||
area_to_export: Oblasť pre Export
|
area_to_export: Oblasť pre export
|
||||||
export_button: Export
|
export_button: Export
|
||||||
export_details: OpenStreetMap údaje sú licencované pod <a href="http://creativecommons.org/licenses/by-sa/2.0/">Creative Commons Attribution-ShareAlike 2.0 license</a>.
|
export_details: OpenStreetMap údaje sú licencované pod <a href="http://creativecommons.org/licenses/by-sa/2.0/">Creative Commons Attribution-ShareAlike 2.0 license</a>.
|
||||||
format: Format
|
format: Formát
|
||||||
format_to_export: Formát pre Export
|
format_to_export: Formát pre export
|
||||||
image_size: Veľkosť Obrazu
|
image_size: Veľkosť Obrazu
|
||||||
latitude: "Zem.šírka:"
|
latitude: "Zem.šírka:"
|
||||||
licence: Licencia
|
licence: Licencia
|
||||||
|
@ -239,14 +260,18 @@ sk:
|
||||||
add_marker: Pridať marker na mapu
|
add_marker: Pridať marker na mapu
|
||||||
change_marker: Zmena polohy markera
|
change_marker: Zmena polohy markera
|
||||||
click_add_marker: Kliknite na mapu, pre pridanie markera
|
click_add_marker: Kliknite na mapu, pre pridanie markera
|
||||||
|
drag_a_box: Označte myšou na mape zvolenú oblasť
|
||||||
export: Export
|
export: Export
|
||||||
manually_select: Ručne vyberte rôzne oblasti
|
manually_select: Ručne vyberte rôzne oblasti
|
||||||
|
view_larger_map: Zobraziť väčšiu mapu
|
||||||
geocoder:
|
geocoder:
|
||||||
description:
|
description:
|
||||||
types:
|
types:
|
||||||
cities: Veľkomestá
|
cities: Veľkomestá
|
||||||
places: Miesta
|
places: Miesta
|
||||||
towns: Mestá
|
towns: Mestá
|
||||||
|
description_osm_namefinder:
|
||||||
|
prefix: "{{distance}} na {{direction}} od {{type}}"
|
||||||
direction:
|
direction:
|
||||||
east: východ
|
east: východ
|
||||||
north: sever
|
north: sever
|
||||||
|
@ -254,10 +279,21 @@ sk:
|
||||||
north_west: severozápad
|
north_west: severozápad
|
||||||
south: juh
|
south: juh
|
||||||
south_east: juhovýchod
|
south_east: juhovýchod
|
||||||
south_west: johozápad
|
south_west: juhozápad
|
||||||
west: západ
|
west: západ
|
||||||
|
distance:
|
||||||
|
one: asi 1 km
|
||||||
|
other: asi {{count}} km
|
||||||
|
zero: menej ako 1 km
|
||||||
results:
|
results:
|
||||||
|
more_results: Viac výsledkov
|
||||||
no_results: Neboli nájdené žiadne výsledky
|
no_results: Neboli nájdené žiadne výsledky
|
||||||
|
search:
|
||||||
|
title:
|
||||||
|
ca_postcode: Výsledky z <a href="http://geocoder.ca/">Geocoder.CA</a>
|
||||||
|
geonames: Výsledky z <a href="http://www.geonames.org/">GeoNames</a>
|
||||||
|
osm_namefinder: Výsledky z <a href="http://gazetteer.openstreetmap.org/namefinder/">OpenStreetMap Namefinder</a>
|
||||||
|
us_postcode: Výsledky z <a href="http://geocoder.us/">Geocoder.us</a>
|
||||||
search_osm_nominatim:
|
search_osm_nominatim:
|
||||||
prefix:
|
prefix:
|
||||||
amenity:
|
amenity:
|
||||||
|
@ -272,6 +308,8 @@ sk:
|
||||||
brothel: Nevestinec
|
brothel: Nevestinec
|
||||||
bus_station: Autobusová stanica
|
bus_station: Autobusová stanica
|
||||||
cafe: Kaviareň
|
cafe: Kaviareň
|
||||||
|
car_rental: Požičovňa áut
|
||||||
|
car_wash: Autoumývareň
|
||||||
casino: Kasíno
|
casino: Kasíno
|
||||||
cinema: Kino
|
cinema: Kino
|
||||||
clinic: Poliklinika
|
clinic: Poliklinika
|
||||||
|
@ -288,10 +326,14 @@ sk:
|
||||||
emergency_phone: Núdzový telefón
|
emergency_phone: Núdzový telefón
|
||||||
fast_food: Rýchle občerstvenie
|
fast_food: Rýchle občerstvenie
|
||||||
ferry_terminal: Terminál trajektu
|
ferry_terminal: Terminál trajektu
|
||||||
|
fire_hydrant: Požiarny hydrant
|
||||||
fire_station: Požiarna stanica
|
fire_station: Požiarna stanica
|
||||||
fountain: Fontána
|
fountain: Fontána
|
||||||
fuel: Benzínová pumpa
|
fuel: Benzínová pumpa
|
||||||
grave_yard: Cintorín
|
grave_yard: Cintorín
|
||||||
|
gym: Fitnes centrum / telocvičňa
|
||||||
|
health_centre: Zdravotné stredisko
|
||||||
|
hospital: Nemocnica
|
||||||
hotel: Hotel
|
hotel: Hotel
|
||||||
hunting_stand: Poľovnícky posed
|
hunting_stand: Poľovnícky posed
|
||||||
ice_cream: Zmrzlina
|
ice_cream: Zmrzlina
|
||||||
|
@ -329,11 +371,14 @@ sk:
|
||||||
townhall: Radnica
|
townhall: Radnica
|
||||||
vending_machine: Predajný automat
|
vending_machine: Predajný automat
|
||||||
veterinary: Veterinárna ordinácia
|
veterinary: Veterinárna ordinácia
|
||||||
|
waste_basket: Odpadkový kôš
|
||||||
|
wifi: Prístup Wi-Fi
|
||||||
youth_centre: Mládežnícke centrum
|
youth_centre: Mládežnícke centrum
|
||||||
boundary:
|
boundary:
|
||||||
administrative: Administratívne hranice
|
administrative: Administratívne hranice
|
||||||
building:
|
building:
|
||||||
apartments: Bytový dom
|
apartments: Bytový dom
|
||||||
|
bunker: Bunker
|
||||||
chapel: Kaplnka
|
chapel: Kaplnka
|
||||||
church: Kostol,cirkev
|
church: Kostol,cirkev
|
||||||
city_hall: Radnica,magistrát
|
city_hall: Radnica,magistrát
|
||||||
|
@ -369,6 +414,7 @@ sk:
|
||||||
pedestrian: Chodník pre chodcov
|
pedestrian: Chodník pre chodcov
|
||||||
primary: Cesta I. triedy
|
primary: Cesta I. triedy
|
||||||
primary_link: Cesta I. triedy
|
primary_link: Cesta I. triedy
|
||||||
|
road: Cesta
|
||||||
secondary: Cesta II. triedy
|
secondary: Cesta II. triedy
|
||||||
secondary_link: Cesta II. triedy
|
secondary_link: Cesta II. triedy
|
||||||
steps: Schody
|
steps: Schody
|
||||||
|
@ -399,29 +445,33 @@ sk:
|
||||||
cemetery: Cintorín
|
cemetery: Cintorín
|
||||||
commercial: Obchodná štvrť
|
commercial: Obchodná štvrť
|
||||||
farm: Farma
|
farm: Farma
|
||||||
|
farmyard: Dvor
|
||||||
forest: Les
|
forest: Les
|
||||||
grass: Tráva
|
grass: Tráva
|
||||||
industrial: Priemyslová oblasť
|
industrial: Priemyslová oblasť
|
||||||
|
landfill: Skládka odpadu
|
||||||
meadow: Lúka
|
meadow: Lúka
|
||||||
military: Vojenský priestor
|
military: Vojenský priestor
|
||||||
mine: Baňa
|
mine: Baňa
|
||||||
|
mountain: Hora
|
||||||
nature_reserve: Prírodná rezervácia
|
nature_reserve: Prírodná rezervácia
|
||||||
park: Park
|
park: Park
|
||||||
piste: Zjazdovka
|
piste: Zjazdovka
|
||||||
quarry: Lom
|
quarry: Lom
|
||||||
|
railway: Železnica
|
||||||
village_green: Verejná zeleň
|
village_green: Verejná zeleň
|
||||||
vineyard: Vinica
|
vineyard: Vinica
|
||||||
wetland: Mokrina
|
wetland: Mokrina
|
||||||
wood: Drevo
|
wood: Drevo
|
||||||
leisure:
|
leisure:
|
||||||
common: Verejné priestranstvo
|
common: Verejné priestranstvo
|
||||||
fishing: Rybolov(športový)
|
fishing: Rybolov (športový)
|
||||||
garden: Záhrada
|
garden: Záhrada
|
||||||
golf_course: Golfové ihrisko
|
golf_course: Golfové ihrisko
|
||||||
ice_rink: Umelé klzisko
|
ice_rink: Umelé klzisko
|
||||||
marina: Prístav pre jachty
|
marina: Prístav pre jachty
|
||||||
miniature_golf: Mini golf
|
miniature_golf: Mini golf
|
||||||
nature_reserve: Prírodná Rezervácia
|
nature_reserve: Prírodná rezervácia
|
||||||
park: Park
|
park: Park
|
||||||
pitch: Športové ihrisko
|
pitch: Športové ihrisko
|
||||||
playground: Detské ihrisko
|
playground: Detské ihrisko
|
||||||
|
@ -431,9 +481,9 @@ sk:
|
||||||
stadium: Štadión
|
stadium: Štadión
|
||||||
swimming_pool: Plaváreň
|
swimming_pool: Plaváreň
|
||||||
track: Bežecká dráha
|
track: Bežecká dráha
|
||||||
water_park: Vodný Park
|
water_park: Aquapark
|
||||||
natural:
|
natural:
|
||||||
bay: Zátoka,Záliv
|
bay: Zátoka, záliv
|
||||||
beach: Pláž
|
beach: Pláž
|
||||||
cape: Mys
|
cape: Mys
|
||||||
cave_entrance: Vstup do jaskyne
|
cave_entrance: Vstup do jaskyne
|
||||||
|
@ -452,6 +502,7 @@ sk:
|
||||||
moor: Močiar
|
moor: Močiar
|
||||||
mud: Bahno
|
mud: Bahno
|
||||||
peak: Vrchol
|
peak: Vrchol
|
||||||
|
point: Bod
|
||||||
reef: Bradlo, Skalisko
|
reef: Bradlo, Skalisko
|
||||||
ridge: Hrebeň
|
ridge: Hrebeň
|
||||||
river: Rieka
|
river: Rieka
|
||||||
|
@ -498,6 +549,8 @@ sk:
|
||||||
historic_station: Zastávka historickej železnice
|
historic_station: Zastávka historickej železnice
|
||||||
junction: Železničný uzol
|
junction: Železničný uzol
|
||||||
level_crossing: Železničný prejazd
|
level_crossing: Železničný prejazd
|
||||||
|
light_rail: Ľahká železnica
|
||||||
|
monorail: Jednokoľajka
|
||||||
narrow_gauge: Úzkokoľajná železnica
|
narrow_gauge: Úzkokoľajná železnica
|
||||||
spur: Železničná vlečka
|
spur: Železničná vlečka
|
||||||
station: Železničná stanica
|
station: Železničná stanica
|
||||||
|
@ -523,15 +576,18 @@ sk:
|
||||||
confectionery: Cukráreň
|
confectionery: Cukráreň
|
||||||
department_store: Obchodný dom
|
department_store: Obchodný dom
|
||||||
doityourself: Urob si sám
|
doityourself: Urob si sám
|
||||||
|
drugstore: Lekáreň
|
||||||
dry_cleaning: Chemická čistiareň
|
dry_cleaning: Chemická čistiareň
|
||||||
electronics: Elektro
|
electronics: Elektro
|
||||||
estate_agent: Realitná kancelária
|
estate_agent: Realitná kancelária
|
||||||
fish: Obchod s rybami
|
fish: Obchod s rybami
|
||||||
florist: Kvetinárstvo
|
florist: Kvetinárstvo
|
||||||
|
food: Obchod s potravinami
|
||||||
furniture: Nábytok
|
furniture: Nábytok
|
||||||
gallery: Galéria
|
gallery: Galéria
|
||||||
garden_centre: Záhradnícke centrum
|
garden_centre: Záhradnícke centrum
|
||||||
general: Zmiešaný tovar
|
general: Zmiešaný tovar
|
||||||
|
gift: Suveníry
|
||||||
greengrocer: Obchod so zeleninou
|
greengrocer: Obchod so zeleninou
|
||||||
grocery: Potraviny
|
grocery: Potraviny
|
||||||
hairdresser: Kaderníctvo,holičstvo
|
hairdresser: Kaderníctvo,holičstvo
|
||||||
|
@ -547,19 +603,20 @@ sk:
|
||||||
shoes: Obuva
|
shoes: Obuva
|
||||||
sports: Športový obchod
|
sports: Športový obchod
|
||||||
stationery: Papierníctvo
|
stationery: Papierníctvo
|
||||||
|
supermarket: Supermarket
|
||||||
toys: Hračkárstvo
|
toys: Hračkárstvo
|
||||||
travel_agency: Cestovná kancelária
|
travel_agency: Cestovná kancelária
|
||||||
tourism:
|
tourism:
|
||||||
alpine_hut: Vysokohorská chata
|
alpine_hut: Vysokohorská chata
|
||||||
artwork: Umelecké dielo
|
artwork: Umelecké dielo
|
||||||
attraction: Atrakcia
|
attraction: Atrakcia
|
||||||
bed_and_breakfast: Posteľ a Raňajky
|
bed_and_breakfast: Nocľah a raňajky
|
||||||
cabin: Malá chata
|
cabin: Malá chata
|
||||||
camp_site: Kemping
|
camp_site: Kemping
|
||||||
caravan_site: Autokemping
|
caravan_site: Autokemping
|
||||||
chalet: Veľká chata
|
chalet: Veľká chata
|
||||||
guest_house: Penzión
|
guest_house: Penzión
|
||||||
hostel: Ubytovňa,Internát
|
hostel: Ubytovňa, internát
|
||||||
hotel: Hotel
|
hotel: Hotel
|
||||||
information: Informácie
|
information: Informácie
|
||||||
lean_to: Prístrešok
|
lean_to: Prístrešok
|
||||||
|
@ -582,6 +639,7 @@ sk:
|
||||||
river: Rieka
|
river: Rieka
|
||||||
stream: Potok
|
stream: Potok
|
||||||
wadi: Občasné riečisko(Vádí)
|
wadi: Občasné riečisko(Vádí)
|
||||||
|
water_point: Vodný bod
|
||||||
waterfall: Vodopád
|
waterfall: Vodopád
|
||||||
weir: Splav
|
weir: Splav
|
||||||
javascripts:
|
javascripts:
|
||||||
|
@ -592,17 +650,24 @@ sk:
|
||||||
edit: Upraviť
|
edit: Upraviť
|
||||||
edit_tooltip: Upravovať mapy
|
edit_tooltip: Upravovať mapy
|
||||||
export: Export
|
export: Export
|
||||||
|
export_tooltip: Export mapových dát
|
||||||
help_wiki: Pomocník & Wiki
|
help_wiki: Pomocník & Wiki
|
||||||
history: História
|
history: História
|
||||||
home: domov
|
home: domov
|
||||||
inbox: správy ({{count}})
|
inbox: správy ({{count}})
|
||||||
|
inbox_tooltip:
|
||||||
|
few: V schránke máte {{count}} neprečítané správy
|
||||||
|
one: V schránke máte 1 neprečítanú správu
|
||||||
|
other: V schránke máte {{count}} neprečítaných správ
|
||||||
|
zero: Nemáte žiadne neprečítané správy
|
||||||
log_in: prihlásiť sa
|
log_in: prihlásiť sa
|
||||||
logo:
|
logo:
|
||||||
alt_text: Logo OpenStreetMap
|
alt_text: Logo OpenStreetMap
|
||||||
logout: odhlásiť
|
logout: odhlásiť
|
||||||
logout_tooltip: Odhlásiť
|
logout_tooltip: Odhlásiť
|
||||||
|
news_blog: Novinkový blog
|
||||||
shop: Obchod
|
shop: Obchod
|
||||||
sign_up: prihlásenie
|
sign_up: zaregistrovať sa
|
||||||
sign_up_tooltip: Vytvorte si účet pre úpravy
|
sign_up_tooltip: Vytvorte si účet pre úpravy
|
||||||
view: Zobraziť
|
view: Zobraziť
|
||||||
view_tooltip: Zobraziť mapy
|
view_tooltip: Zobraziť mapy
|
||||||
|
@ -616,7 +681,12 @@ sk:
|
||||||
delete:
|
delete:
|
||||||
deleted: Správa vymazaná
|
deleted: Správa vymazaná
|
||||||
inbox:
|
inbox:
|
||||||
|
date: Dátum
|
||||||
from: Od
|
from: Od
|
||||||
|
you_have: Máte {{new_count}} nových a {{old_count}} starých správ
|
||||||
|
mark:
|
||||||
|
as_read: Správa označená ako prečítaná
|
||||||
|
as_unread: Správa označená ako neprečítaná
|
||||||
message_summary:
|
message_summary:
|
||||||
delete_button: Zmazať
|
delete_button: Zmazať
|
||||||
read_button: Označiť ako prečítané
|
read_button: Označiť ako prečítané
|
||||||
|
@ -628,15 +698,18 @@ sk:
|
||||||
send_button: Odoslať
|
send_button: Odoslať
|
||||||
send_message_to: Poslať novú správu užívateľovi {{name}}
|
send_message_to: Poslať novú správu užívateľovi {{name}}
|
||||||
subject: Predmet
|
subject: Predmet
|
||||||
|
title: Odoslať správu
|
||||||
outbox:
|
outbox:
|
||||||
date: Dátum
|
date: Dátum
|
||||||
to: Komu
|
to: Komu
|
||||||
|
you_have_sent_messages: Máte {{count}} odoslaných správ
|
||||||
read:
|
read:
|
||||||
date: Dátum
|
date: Dátum
|
||||||
from: Od
|
from: Od
|
||||||
reply_button: Odpovedať
|
reply_button: Odpovedať
|
||||||
subject: Predmet
|
subject: Predmet
|
||||||
to: Komu
|
to: Komu
|
||||||
|
unread_button: Označiť ako neprečítané
|
||||||
sent_message_summary:
|
sent_message_summary:
|
||||||
delete_button: Zmazať
|
delete_button: Zmazať
|
||||||
notifier:
|
notifier:
|
||||||
|
@ -666,7 +739,7 @@ sk:
|
||||||
table:
|
table:
|
||||||
entry:
|
entry:
|
||||||
apron:
|
apron:
|
||||||
- terminál
|
1: terminál
|
||||||
bridleway: Chodník pre kone
|
bridleway: Chodník pre kone
|
||||||
building: Významná budova
|
building: Významná budova
|
||||||
cable:
|
cable:
|
||||||
|
@ -676,7 +749,7 @@ sk:
|
||||||
centre: Športové centrum
|
centre: Športové centrum
|
||||||
commercial: Komerčná oblasť
|
commercial: Komerčná oblasť
|
||||||
common:
|
common:
|
||||||
- lúka
|
1: lúka
|
||||||
cycleway: Cyklotrasa
|
cycleway: Cyklotrasa
|
||||||
farm: Farma
|
farm: Farma
|
||||||
footway: Chodník pre peších
|
footway: Chodník pre peších
|
||||||
|
@ -706,7 +779,7 @@ sk:
|
||||||
tourist: Turistická atrakcia
|
tourist: Turistická atrakcia
|
||||||
track: Lesná, poľná cesta
|
track: Lesná, poľná cesta
|
||||||
tram:
|
tram:
|
||||||
- električka
|
1: električka
|
||||||
heading: Legenda pre z{{zoom_level}}
|
heading: Legenda pre z{{zoom_level}}
|
||||||
search:
|
search:
|
||||||
search: Vyhľadať
|
search: Vyhľadať
|
||||||
|
@ -728,7 +801,7 @@ sk:
|
||||||
map: mapa
|
map: mapa
|
||||||
owner: "Vlastník:"
|
owner: "Vlastník:"
|
||||||
points: "Body:"
|
points: "Body:"
|
||||||
save_button: Uložiť Zmeny
|
save_button: Uložiť zmeny
|
||||||
tags: "Tagy:"
|
tags: "Tagy:"
|
||||||
title: Úprava stopy {{name}}
|
title: Úprava stopy {{name}}
|
||||||
uploaded_at: "Nahrať na:"
|
uploaded_at: "Nahrať na:"
|
||||||
|
@ -747,11 +820,12 @@ sk:
|
||||||
offline:
|
offline:
|
||||||
message: Ukladací priestor GPX súborov a nahrávací systém je teraz neprístupný.
|
message: Ukladací priestor GPX súborov a nahrávací systém je teraz neprístupný.
|
||||||
trace:
|
trace:
|
||||||
ago: "{{time_in_words_ago}} pred"
|
ago: pred {{time_in_words_ago}}
|
||||||
by: od
|
by: od
|
||||||
count_points: "{{count}} body"
|
count_points: "{{count}} body"
|
||||||
edit: upraviť
|
edit: upraviť
|
||||||
edit_map: Upraviť Mapu
|
edit_map: Upraviť Mapu
|
||||||
|
identifiable: IDENTIFIKOVATEĽNÝ
|
||||||
in: v
|
in: v
|
||||||
map: mapa
|
map: mapa
|
||||||
more: viac
|
more: viac
|
||||||
|
@ -764,6 +838,7 @@ sk:
|
||||||
description: Popis
|
description: Popis
|
||||||
help: Pomoc
|
help: Pomoc
|
||||||
tags: Tagy
|
tags: Tagy
|
||||||
|
tags_help: oddelené čiarkou
|
||||||
upload_button: Nahrať
|
upload_button: Nahrať
|
||||||
upload_gpx: Nahrať GPX Súbor
|
upload_gpx: Nahrať GPX Súbor
|
||||||
visibility: Viditeľnosť
|
visibility: Viditeľnosť
|
||||||
|
@ -775,9 +850,6 @@ sk:
|
||||||
traces_waiting: Máte {{count}} stopy čakajúce na nahratie. Prosím zvážte toto čakanie, dokedy neukončíte nahrávanie niečoho iného, pokiaľ nie je blok v rade pre iných užívateľov.
|
traces_waiting: Máte {{count}} stopy čakajúce na nahratie. Prosím zvážte toto čakanie, dokedy neukončíte nahrávanie niečoho iného, pokiaľ nie je blok v rade pre iných užívateľov.
|
||||||
trace_optionals:
|
trace_optionals:
|
||||||
tags: Tagy
|
tags: Tagy
|
||||||
trace_paging_nav:
|
|
||||||
of: z
|
|
||||||
showing: Náhľad stránky
|
|
||||||
view:
|
view:
|
||||||
delete_track: Vymazať túto stopu
|
delete_track: Vymazať túto stopu
|
||||||
description: "Popis:"
|
description: "Popis:"
|
||||||
|
@ -806,18 +878,18 @@ sk:
|
||||||
email never displayed publicly: (nezobrazovaný verejne)
|
email never displayed publicly: (nezobrazovaný verejne)
|
||||||
flash update success: Informácie používateľa boli obnovené.
|
flash update success: Informácie používateľa boli obnovené.
|
||||||
flash update success confirm needed: Užívateľské informácie boli úspešne aktualizované. Skontrolujte vašu emailovú adresu pre správu na potvrdenie vašej novej emailovej adresy.
|
flash update success confirm needed: Užívateľské informácie boli úspešne aktualizované. Skontrolujte vašu emailovú adresu pre správu na potvrdenie vašej novej emailovej adresy.
|
||||||
home location: "Domáca poloha:"
|
home location: "Domovské miesto:"
|
||||||
latitude: "Zem. šírka:"
|
latitude: "Zem. šírka:"
|
||||||
longitude: "Zem. dĺžka:"
|
longitude: "Zem. dĺžka:"
|
||||||
make edits public button: Zverejniť všetky moje úpravy
|
make edits public button: Zverejniť všetky moje úpravy
|
||||||
my settings: Moje nastavenia
|
my settings: Moje nastavenia
|
||||||
no home location: Nemáte zapísanú vašu domácu polohu.
|
no home location: Nezadali ste svoje domovské miesto.
|
||||||
preferred languages: "Prioritné jazyky:"
|
preferred languages: "Uprednostňované jazyky:"
|
||||||
profile description: "Popis Profilu:"
|
profile description: "Popis profilu:"
|
||||||
public editing:
|
public editing:
|
||||||
disabled: Vypnutý a nemôže upravovať údaje, všetky predchádzajúce úpravy sú anonymné.
|
disabled: Vypnutý a nemôže upravovať údaje, všetky predchádzajúce úpravy sú anonymné.
|
||||||
disabled link text: prečo nemôžem upravovať?
|
disabled link text: prečo nemôžem upravovať?
|
||||||
enabled: Zapnutý. Neanonymný a môže upravovať dáta.
|
enabled: Zapnutý. Nie je anonym a môže upravovať dáta.
|
||||||
enabled link text: čo je toto?
|
enabled link text: čo je toto?
|
||||||
heading: "Verejná úprava:"
|
heading: "Verejná úprava:"
|
||||||
public editing note:
|
public editing note:
|
||||||
|
@ -826,7 +898,7 @@ sk:
|
||||||
return to profile: Návrat do profilu
|
return to profile: Návrat do profilu
|
||||||
save changes button: Uložiť Zmeny
|
save changes button: Uložiť Zmeny
|
||||||
title: Upraviť účet
|
title: Upraviť účet
|
||||||
update home location on click: Aktualizujem domácu polohu, keď kliknem na mapu?
|
update home location on click: Upraviť polohu domova, kliknutím na mapu?
|
||||||
confirm:
|
confirm:
|
||||||
button: Potvrdiť
|
button: Potvrdiť
|
||||||
failure: Užívateľský účet s týmito údajmi už bol založený.
|
failure: Užívateľský účet s týmito údajmi už bol založený.
|
||||||
|
@ -903,6 +975,7 @@ sk:
|
||||||
activate_user: aktivovať tohto užívateľa
|
activate_user: aktivovať tohto užívateľa
|
||||||
add as friend: pridať ako priateľa
|
add as friend: pridať ako priateľa
|
||||||
add image: Pridať Obrázok
|
add image: Pridať Obrázok
|
||||||
|
ago: (pred {{time_in_words_ago}})
|
||||||
block_history: zobraziť prijaté položky
|
block_history: zobraziť prijaté položky
|
||||||
blocks on me: v mojom bloku
|
blocks on me: v mojom bloku
|
||||||
change your settings: zmeniť vaše nastavenia
|
change your settings: zmeniť vaše nastavenia
|
||||||
|
@ -910,7 +983,7 @@ sk:
|
||||||
create_block: blokovať tohto užívateľa
|
create_block: blokovať tohto užívateľa
|
||||||
created from: "Vytvorené od:"
|
created from: "Vytvorené od:"
|
||||||
deactivate_user: deaktivovať tohto užívateľa
|
deactivate_user: deaktivovať tohto užívateľa
|
||||||
delete image: Zmazať Obrázok
|
delete image: Zmazať obrázok
|
||||||
delete_user: vymazať tohto užívateľa
|
delete_user: vymazať tohto užívateľa
|
||||||
description: Popis
|
description: Popis
|
||||||
diary: denník
|
diary: denník
|
||||||
|
|
|
@ -692,9 +692,6 @@ sl:
|
||||||
see_your_traces: Seznam vseh mojih sledi
|
see_your_traces: Seznam vseh mojih sledi
|
||||||
trace_optionals:
|
trace_optionals:
|
||||||
tags: Oznake
|
tags: Oznake
|
||||||
trace_paging_nav:
|
|
||||||
of: od
|
|
||||||
showing: Prikaz strani
|
|
||||||
view:
|
view:
|
||||||
delete_track: Izbriši to sled
|
delete_track: Izbriši to sled
|
||||||
description: "Opis:"
|
description: "Opis:"
|
||||||
|
|
|
@ -537,7 +537,7 @@ sr-EC:
|
||||||
entry:
|
entry:
|
||||||
admin: Административна граница
|
admin: Административна граница
|
||||||
common:
|
common:
|
||||||
- ливада
|
1: ливада
|
||||||
cycleway: Бициклистичка стаза
|
cycleway: Бициклистичка стаза
|
||||||
farm: Фарма
|
farm: Фарма
|
||||||
footway: Пешачка стаза
|
footway: Пешачка стаза
|
||||||
|
@ -613,8 +613,6 @@ sr-EC:
|
||||||
see_your_traces: Види све твоје трагове
|
see_your_traces: Види све твоје трагове
|
||||||
trace_optionals:
|
trace_optionals:
|
||||||
tags: Ознаке
|
tags: Ознаке
|
||||||
trace_paging_nav:
|
|
||||||
of: од
|
|
||||||
view:
|
view:
|
||||||
description: "Опис:"
|
description: "Опис:"
|
||||||
download: преузми
|
download: преузми
|
||||||
|
|
|
@ -442,7 +442,7 @@ sv:
|
||||||
terrace: Terass
|
terrace: Terass
|
||||||
train_station: Järnvägsstation
|
train_station: Järnvägsstation
|
||||||
highway:
|
highway:
|
||||||
bus_stop: Busstopp
|
bus_stop: Busshållplats
|
||||||
construction: Väg under konstruktion
|
construction: Väg under konstruktion
|
||||||
cycleway: Cykelspår
|
cycleway: Cykelspår
|
||||||
footway: Gångväg
|
footway: Gångväg
|
||||||
|
@ -927,9 +927,6 @@ sv:
|
||||||
traces_waiting: Du har {{count}} GPS-spår som laddas upp. Det är en bra idé att låta dessa bli klara innan du laddar upp fler, så att du inte blockerar uppladdningskön för andra användare.
|
traces_waiting: Du har {{count}} GPS-spår som laddas upp. Det är en bra idé att låta dessa bli klara innan du laddar upp fler, så att du inte blockerar uppladdningskön för andra användare.
|
||||||
trace_optionals:
|
trace_optionals:
|
||||||
tags: Taggar
|
tags: Taggar
|
||||||
trace_paging_nav:
|
|
||||||
of: av
|
|
||||||
showing: Visar sida
|
|
||||||
view:
|
view:
|
||||||
delete_track: Radera detta spår
|
delete_track: Radera detta spår
|
||||||
description: "Beskrivning:"
|
description: "Beskrivning:"
|
||||||
|
|
|
@ -217,6 +217,12 @@ uk:
|
||||||
zoom_or_select: Збільшить масштаб або виберіть ділянку на мапі для перегляду
|
zoom_or_select: Збільшить масштаб або виберіть ділянку на мапі для перегляду
|
||||||
tag_details:
|
tag_details:
|
||||||
tags: "Теґи:"
|
tags: "Теґи:"
|
||||||
|
timeout:
|
||||||
|
type:
|
||||||
|
changeset: набір змін
|
||||||
|
node: точка
|
||||||
|
relation: зв’язок
|
||||||
|
way: лінія
|
||||||
way:
|
way:
|
||||||
download: "{{download_xml_link}}, {{view_history_link}} або {{edit_link}}"
|
download: "{{download_xml_link}}, {{view_history_link}} або {{edit_link}}"
|
||||||
download_xml: Завантажити XML
|
download_xml: Завантажити XML
|
||||||
|
@ -389,6 +395,7 @@ uk:
|
||||||
other: близько {{count}} км
|
other: близько {{count}} км
|
||||||
zero: менше ніж 1 км
|
zero: менше ніж 1 км
|
||||||
results:
|
results:
|
||||||
|
more_results: Більше результатів
|
||||||
no_results: Нічого не знайдено
|
no_results: Нічого не знайдено
|
||||||
search:
|
search:
|
||||||
title:
|
title:
|
||||||
|
@ -528,6 +535,7 @@ uk:
|
||||||
tower: Башта
|
tower: Башта
|
||||||
train_station: Залізнична станція
|
train_station: Залізнична станція
|
||||||
university: Університет
|
university: Університет
|
||||||
|
"yes": Будівля
|
||||||
highway:
|
highway:
|
||||||
bridleway: Дорога для їзди верхи
|
bridleway: Дорога для їзди верхи
|
||||||
bus_stop: Автобусна зупинка
|
bus_stop: Автобусна зупинка
|
||||||
|
@ -1259,8 +1267,9 @@ uk:
|
||||||
trace_optionals:
|
trace_optionals:
|
||||||
tags: "Теґи:"
|
tags: "Теґи:"
|
||||||
trace_paging_nav:
|
trace_paging_nav:
|
||||||
of: з
|
next: Наступна →
|
||||||
showing: Сторінка
|
previous: ← Попередня
|
||||||
|
showing_page: Сторінка {{page}}
|
||||||
view:
|
view:
|
||||||
delete_track: Вилучити цей трек
|
delete_track: Вилучити цей трек
|
||||||
description: "Опис:"
|
description: "Опис:"
|
||||||
|
|
|
@ -1115,9 +1115,6 @@ vi:
|
||||||
traces_waiting: Bạn có {{count}} tuyến đường đang chờ được tải lên. Xin hãy chờ đợi việc xong trước khi tải lên thêm tuyến đường, để cho người khác vào hàng đợi kịp.
|
traces_waiting: Bạn có {{count}} tuyến đường đang chờ được tải lên. Xin hãy chờ đợi việc xong trước khi tải lên thêm tuyến đường, để cho người khác vào hàng đợi kịp.
|
||||||
trace_optionals:
|
trace_optionals:
|
||||||
tags: Thẻ
|
tags: Thẻ
|
||||||
trace_paging_nav:
|
|
||||||
of: trong
|
|
||||||
showing: Xem trang
|
|
||||||
view:
|
view:
|
||||||
delete_track: Xóa tuyến đường này
|
delete_track: Xóa tuyến đường này
|
||||||
description: "Miêu tả:"
|
description: "Miêu tả:"
|
||||||
|
|
|
@ -463,8 +463,6 @@ zh-CN:
|
||||||
traces_waiting: 您有 {{count}} 条追踪路径正等待上传,请再您上传更多路径前等待这些传完,以确保不会给其他用户造成队列拥堵。
|
traces_waiting: 您有 {{count}} 条追踪路径正等待上传,请再您上传更多路径前等待这些传完,以确保不会给其他用户造成队列拥堵。
|
||||||
trace_optionals:
|
trace_optionals:
|
||||||
tags: 标签
|
tags: 标签
|
||||||
trace_paging_nav:
|
|
||||||
showing: 显示页
|
|
||||||
view:
|
view:
|
||||||
delete_track: 删除这条路径
|
delete_track: 删除这条路径
|
||||||
description: "描述:"
|
description: "描述:"
|
||||||
|
|
|
@ -770,9 +770,6 @@ zh-TW:
|
||||||
traces_waiting: 您有 {{count}} 個軌跡等待上傳。請先等待這些結束後才做進一步的上傳,如此才不會阻擋其他使用者的排程。
|
traces_waiting: 您有 {{count}} 個軌跡等待上傳。請先等待這些結束後才做進一步的上傳,如此才不會阻擋其他使用者的排程。
|
||||||
trace_optionals:
|
trace_optionals:
|
||||||
tags: 標籤
|
tags: 標籤
|
||||||
trace_paging_nav:
|
|
||||||
of: /
|
|
||||||
showing: 正在顯示頁面
|
|
||||||
view:
|
view:
|
||||||
delete_track: 刪除這個軌跡
|
delete_track: 刪除這個軌跡
|
||||||
description: 描述:
|
description: 描述:
|
||||||
|
|
|
@ -87,9 +87,9 @@ is_in/way -
|
||||||
note/point -
|
note/point -
|
||||||
note/POI -
|
note/POI -
|
||||||
note/way -
|
note/way -
|
||||||
source/point survey,Yahoo,NPE,local_knowledge,GPS,cadastre,OS7,nearmap
|
source/point survey,Yahoo,NPE,local_knowledge,GPS,cadastre,OS7,nearmap,GeoEye,digitalglobe
|
||||||
source/POI survey,Yahoo,NPE,local_knowledge,GPS,cadastre,OS7,nearmap
|
source/POI survey,Yahoo,NPE,local_knowledge,GPS,cadastre,OS7,nearmap,GeoEye,digitalglobe
|
||||||
source/way survey,Yahoo,NPE,local_knowledge,GPS,cadastre,OS7,nearmap
|
source/way survey,Yahoo,NPE,local_knowledge,GPS,cadastre,OS7,nearmap,GeoEye,digitalglobe
|
||||||
postal_code/point -
|
postal_code/point -
|
||||||
postal_code/POI -
|
postal_code/POI -
|
||||||
postal_code/way -
|
postal_code/way -
|
||||||
|
@ -122,3 +122,6 @@ wikipedia/point -
|
||||||
website/POI -
|
website/POI -
|
||||||
website/way -
|
website/way -
|
||||||
website/point -
|
website/point -
|
||||||
|
earthquake_damage/POI no,moderate,severe,collapsed
|
||||||
|
earthquake_damage/way no,moderate,severe,collapsed
|
||||||
|
earthquake_damage/point no,moderate,severe,collapsed
|
||||||
|
|
|
@ -24,3 +24,4 @@ police amenity=police
|
||||||
place_of_worship amenity=place_of_worship
|
place_of_worship amenity=place_of_worship
|
||||||
museum tourism=museum
|
museum tourism=museum
|
||||||
school amenity=school
|
school amenity=school
|
||||||
|
disaster building=yes;earthquake_damage=(type damage here)
|
||||||
|
|
|
@ -124,6 +124,10 @@ en:
|
||||||
option_external: "External launch:"
|
option_external: "External launch:"
|
||||||
option_fadebackground: Fade background
|
option_fadebackground: Fade background
|
||||||
option_layer_cycle_map: OSM - cycle map
|
option_layer_cycle_map: OSM - cycle map
|
||||||
|
option_layer_streets_haiti: "Haiti: street names"
|
||||||
|
option_layer_geoeye_gravitystorm_haiti: "Haiti: GeoEye Jan 13"
|
||||||
|
option_layer_geoeye_nypl_haiti: "Haiti: GeoEye Jan 13+"
|
||||||
|
option_layer_digitalglobe_haiti: "Haiti: DigitalGlobe"
|
||||||
option_layer_maplint: OSM - Maplint (errors)
|
option_layer_maplint: OSM - Maplint (errors)
|
||||||
option_layer_mapnik: OSM - Mapnik
|
option_layer_mapnik: OSM - Mapnik
|
||||||
option_layer_nearmap: "Australia: NearMap"
|
option_layer_nearmap: "Australia: NearMap"
|
||||||
|
@ -149,6 +153,7 @@ en:
|
||||||
preset_icon_cafe: Cafe
|
preset_icon_cafe: Cafe
|
||||||
preset_icon_cinema: Cinema
|
preset_icon_cinema: Cinema
|
||||||
preset_icon_convenience: Convenience shop
|
preset_icon_convenience: Convenience shop
|
||||||
|
preset_icon_disaster: Haiti building
|
||||||
preset_icon_fast_food: Fast food
|
preset_icon_fast_food: Fast food
|
||||||
preset_icon_ferry_terminal: Ferry
|
preset_icon_ferry_terminal: Ferry
|
||||||
preset_icon_fire_station: Fire station
|
preset_icon_fire_station: Fire station
|
||||||
|
|
|
@ -78,6 +78,7 @@ es:
|
||||||
heading_introduction: Introducción
|
heading_introduction: Introducción
|
||||||
heading_pois: Primeros pasos
|
heading_pois: Primeros pasos
|
||||||
heading_quickref: Referencia rápida
|
heading_quickref: Referencia rápida
|
||||||
|
heading_surveying: Recogida de datos
|
||||||
heading_tagging: Etiquetando
|
heading_tagging: Etiquetando
|
||||||
heading_troubleshooting: Problemas
|
heading_troubleshooting: Problemas
|
||||||
help: Ayuda
|
help: Ayuda
|
||||||
|
@ -127,6 +128,7 @@ es:
|
||||||
option_layer_ooc_25k: "Histórico de UK: 1:25k"
|
option_layer_ooc_25k: "Histórico de UK: 1:25k"
|
||||||
option_layer_ooc_7th: "Histórico de UK: 7th"
|
option_layer_ooc_7th: "Histórico de UK: 7th"
|
||||||
option_layer_ooc_npe: "Histórico de UK: NPE"
|
option_layer_ooc_npe: "Histórico de UK: NPE"
|
||||||
|
option_layer_streets_haiti: "Haiti: nombres de calles"
|
||||||
option_layer_tip: Elija el fondo a mostrar
|
option_layer_tip: Elija el fondo a mostrar
|
||||||
option_limitways: Lanza una advertencia al cargar gran cantidad de datos.
|
option_limitways: Lanza una advertencia al cargar gran cantidad de datos.
|
||||||
option_microblog_id: "Nombre del microblog:"
|
option_microblog_id: "Nombre del microblog:"
|
||||||
|
@ -144,6 +146,7 @@ es:
|
||||||
preset_icon_cafe: Cafetería
|
preset_icon_cafe: Cafetería
|
||||||
preset_icon_cinema: Cine
|
preset_icon_cinema: Cine
|
||||||
preset_icon_convenience: Tienda de abarrotes, badulaque
|
preset_icon_convenience: Tienda de abarrotes, badulaque
|
||||||
|
preset_icon_disaster: Edificio en Haití
|
||||||
preset_icon_fast_food: Comida rápida
|
preset_icon_fast_food: Comida rápida
|
||||||
preset_icon_ferry_terminal: Transbordador
|
preset_icon_ferry_terminal: Transbordador
|
||||||
preset_icon_fire_station: Parque de bomberos
|
preset_icon_fire_station: Parque de bomberos
|
||||||
|
|
|
@ -149,6 +149,7 @@ fr:
|
||||||
preset_icon_cafe: Café
|
preset_icon_cafe: Café
|
||||||
preset_icon_cinema: Cinéma
|
preset_icon_cinema: Cinéma
|
||||||
preset_icon_convenience: Épicerie
|
preset_icon_convenience: Épicerie
|
||||||
|
preset_icon_disaster: Bâtiment à Haiti
|
||||||
preset_icon_fast_food: Restauration rapide
|
preset_icon_fast_food: Restauration rapide
|
||||||
preset_icon_ferry_terminal: Terminal de ferry
|
preset_icon_ferry_terminal: Terminal de ferry
|
||||||
preset_icon_fire_station: Caserne de pompiers
|
preset_icon_fire_station: Caserne de pompiers
|
||||||
|
|
|
@ -125,6 +125,7 @@ gl:
|
||||||
option_layer_ooc_25k: "Historial UK: 1:25k"
|
option_layer_ooc_25k: "Historial UK: 1:25k"
|
||||||
option_layer_ooc_7th: "Historial UK: 7º"
|
option_layer_ooc_7th: "Historial UK: 7º"
|
||||||
option_layer_ooc_npe: "Historial UK: NPE"
|
option_layer_ooc_npe: "Historial UK: NPE"
|
||||||
|
option_layer_streets_haiti: "Haití: nomes de rúas"
|
||||||
option_layer_tip: Escolla o fondo a mostrar
|
option_layer_tip: Escolla o fondo a mostrar
|
||||||
option_limitways: Avisar ao cargar moitos datos
|
option_limitways: Avisar ao cargar moitos datos
|
||||||
option_microblog_id: "Nome do blogue de mensaxes curtas:"
|
option_microblog_id: "Nome do blogue de mensaxes curtas:"
|
||||||
|
@ -142,6 +143,7 @@ gl:
|
||||||
preset_icon_cafe: Cafetaría
|
preset_icon_cafe: Cafetaría
|
||||||
preset_icon_cinema: Sala de cine
|
preset_icon_cinema: Sala de cine
|
||||||
preset_icon_convenience: Tenda
|
preset_icon_convenience: Tenda
|
||||||
|
preset_icon_disaster: Construción en Haití
|
||||||
preset_icon_fast_food: Comida rápida
|
preset_icon_fast_food: Comida rápida
|
||||||
preset_icon_ferry_terminal: Terminal de transbordador
|
preset_icon_ferry_terminal: Terminal de transbordador
|
||||||
preset_icon_fire_station: Parque de bombeiros
|
preset_icon_fire_station: Parque de bombeiros
|
||||||
|
|
|
@ -34,6 +34,7 @@ hr:
|
||||||
advice_bendy: Previše zavojito za izravnavanje (SHIFT za nasilno)
|
advice_bendy: Previše zavojito za izravnavanje (SHIFT za nasilno)
|
||||||
advice_deletingpoi: Brisanje POI (Z - poništi)
|
advice_deletingpoi: Brisanje POI (Z - poništi)
|
||||||
advice_deletingway: Brisanje puta (poništi sa Z)
|
advice_deletingway: Brisanje puta (poništi sa Z)
|
||||||
|
advice_microblogged: $1 status je ažuriran
|
||||||
advice_nocommonpoint: Putevi ne dijele zajedničku točku
|
advice_nocommonpoint: Putevi ne dijele zajedničku točku
|
||||||
advice_revertingpoi: Vraćam nazad na zadnje spremljeno POI (poništi sa Z)
|
advice_revertingpoi: Vraćam nazad na zadnje spremljeno POI (poništi sa Z)
|
||||||
advice_revertingway: Vraćanje na zadnji spremljeni put (Z za poništavanje)
|
advice_revertingway: Vraćanje na zadnji spremljeni put (Z za poništavanje)
|
||||||
|
@ -62,6 +63,7 @@ hr:
|
||||||
emailauthor: \n\nMolim pošalji e-mail richard\@systemeD.net sa izvješćem o bug-u, recite što ste radili u to vrijeme.
|
emailauthor: \n\nMolim pošalji e-mail richard\@systemeD.net sa izvješćem o bug-u, recite što ste radili u to vrijeme.
|
||||||
error_anonymous: Ne možete kontaktirati anonimnog mappera.
|
error_anonymous: Ne možete kontaktirati anonimnog mappera.
|
||||||
error_connectionfailed: Žao mi je, veza sa OpenstreetMap serverom nije uspjela. Neke nedavne promjene nisu spremljene.\n\nŽelite li pokušati ponovno?
|
error_connectionfailed: Žao mi je, veza sa OpenstreetMap serverom nije uspjela. Neke nedavne promjene nisu spremljene.\n\nŽelite li pokušati ponovno?
|
||||||
|
error_microblog_long: "Slanje na $1 nije uspjelo:\nHTTP code: $2\nPoruka o grešci: $3\n$1 greška: $4"
|
||||||
error_nopoi: POI se ne može naći (možda ste pomakli kartu), tako da nemogu poništiti.
|
error_nopoi: POI se ne može naći (možda ste pomakli kartu), tako da nemogu poništiti.
|
||||||
error_nosharedpoint: Putevi $1 i $2 više ne dijele zajedničku točku, pa se ne mogu razdvojiti.
|
error_nosharedpoint: Putevi $1 i $2 više ne dijele zajedničku točku, pa se ne mogu razdvojiti.
|
||||||
error_noway: Put $1 se ne može pronaći (možda ste pomakli kartu?), pa ne mogu poništiti.
|
error_noway: Put $1 se ne može pronaći (možda ste pomakli kartu?), pa ne mogu poništiti.
|
||||||
|
@ -126,6 +128,8 @@ hr:
|
||||||
option_layer_ooc_npe: "UK povijesni: NPE"
|
option_layer_ooc_npe: "UK povijesni: NPE"
|
||||||
option_layer_tip: Izaberite pozadinu za prikaz
|
option_layer_tip: Izaberite pozadinu za prikaz
|
||||||
option_limitways: Upozori kada se učitava puno podataka
|
option_limitways: Upozori kada se učitava puno podataka
|
||||||
|
option_microblog_id: "Naziv Microbloga:"
|
||||||
|
option_microblog_pwd: "Microblog lozinka:"
|
||||||
option_noname: Osvjetli neimenovane ceste
|
option_noname: Osvjetli neimenovane ceste
|
||||||
option_photo: "Fotografija KML:"
|
option_photo: "Fotografija KML:"
|
||||||
option_thinareas: Koristi take linije za područja
|
option_thinareas: Koristi take linije za područja
|
||||||
|
@ -139,6 +143,7 @@ hr:
|
||||||
preset_icon_cafe: Caffe bar
|
preset_icon_cafe: Caffe bar
|
||||||
preset_icon_cinema: Kino
|
preset_icon_cinema: Kino
|
||||||
preset_icon_convenience: Trgovina (dućan)
|
preset_icon_convenience: Trgovina (dućan)
|
||||||
|
preset_icon_disaster: Zgrada u Haiti-u
|
||||||
preset_icon_fast_food: Fast food
|
preset_icon_fast_food: Fast food
|
||||||
preset_icon_ferry_terminal: Trajektni terminal
|
preset_icon_ferry_terminal: Trajektni terminal
|
||||||
preset_icon_fire_station: Vatrogasna postaja
|
preset_icon_fire_station: Vatrogasna postaja
|
||||||
|
@ -170,6 +175,7 @@ hr:
|
||||||
prompt_launch: Pokreni eksterni URL
|
prompt_launch: Pokreni eksterni URL
|
||||||
prompt_live: U načinu "Uredi uživo", svaka stavka koju promjenite će biti trenutno spremljena u OpenstreetMap bazu podataka - nije preporučljivo za početnike. Jeste li sigurni?
|
prompt_live: U načinu "Uredi uživo", svaka stavka koju promjenite će biti trenutno spremljena u OpenstreetMap bazu podataka - nije preporučljivo za početnike. Jeste li sigurni?
|
||||||
prompt_manyways: Ovo područje je vrlo detaljno i trebati će puno vremena za učitavanje. Želite li zoomirati?
|
prompt_manyways: Ovo područje je vrlo detaljno i trebati će puno vremena za učitavanje. Želite li zoomirati?
|
||||||
|
prompt_microblog: Šalji na $1 ($2 ostalo)
|
||||||
prompt_revertversion: "Vrati na prijašnju spremljenu verziju:"
|
prompt_revertversion: "Vrati na prijašnju spremljenu verziju:"
|
||||||
prompt_savechanges: Spremi promjene
|
prompt_savechanges: Spremi promjene
|
||||||
prompt_taggedpoints: Neke točke na ovom putu su označene (Tags). Stvarno obrisati?
|
prompt_taggedpoints: Neke točke na ovom putu su označene (Tags). Stvarno obrisati?
|
||||||
|
|
|
@ -36,6 +36,7 @@ hu:
|
||||||
advice_bendy: Túl görbe a kiegyenesítéshez (SHIFT a kényszerítéshez)
|
advice_bendy: Túl görbe a kiegyenesítéshez (SHIFT a kényszerítéshez)
|
||||||
advice_deletingpoi: POI törlése (Z a visszavonáshoz)
|
advice_deletingpoi: POI törlése (Z a visszavonáshoz)
|
||||||
advice_deletingway: Vonal törlése (Z a visszavonáshoz)
|
advice_deletingway: Vonal törlése (Z a visszavonáshoz)
|
||||||
|
advice_microblogged: $1 állapotod frissítve
|
||||||
advice_nocommonpoint: A vonalaknak nincs közös pontjuk
|
advice_nocommonpoint: A vonalaknak nincs közös pontjuk
|
||||||
advice_revertingpoi: Visszaállítás a legutóbb mentett POI-ra (Z a viszavonáshoz)
|
advice_revertingpoi: Visszaállítás a legutóbb mentett POI-ra (Z a viszavonáshoz)
|
||||||
advice_revertingway: Visszaállítás a legutóbb mentett vonalra (Z a visszavonáshoz)
|
advice_revertingway: Visszaállítás a legutóbb mentett vonalra (Z a visszavonáshoz)
|
||||||
|
@ -128,6 +129,8 @@ hu:
|
||||||
option_layer_ooc_npe: "UK történelmi: NPE"
|
option_layer_ooc_npe: "UK történelmi: NPE"
|
||||||
option_layer_tip: Válaszd ki a megjelenítendő hátteret
|
option_layer_tip: Válaszd ki a megjelenítendő hátteret
|
||||||
option_limitways: Figyelmeztetés sok adat betöltése előtt
|
option_limitways: Figyelmeztetés sok adat betöltése előtt
|
||||||
|
option_microblog_id: "Mikroblog neve:"
|
||||||
|
option_microblog_pwd: "Mikroblog jelszava:"
|
||||||
option_noname: Névtelen utak kiemelése
|
option_noname: Névtelen utak kiemelése
|
||||||
option_photo: "Fotó KML:"
|
option_photo: "Fotó KML:"
|
||||||
option_thinareas: Vékonyabb vonalak használata területekhez
|
option_thinareas: Vékonyabb vonalak használata területekhez
|
||||||
|
|
|
@ -126,6 +126,7 @@ mk:
|
||||||
option_layer_ooc_25k: "Историски британски: 1:25k"
|
option_layer_ooc_25k: "Историски британски: 1:25k"
|
||||||
option_layer_ooc_7th: "Историски британски: 7-ми"
|
option_layer_ooc_7th: "Историски британски: 7-ми"
|
||||||
option_layer_ooc_npe: "Историски британски: NPE"
|
option_layer_ooc_npe: "Историски британски: NPE"
|
||||||
|
option_layer_streets_haiti: "Хаити: имиња на улици"
|
||||||
option_layer_tip: Изберете позадина
|
option_layer_tip: Изберете позадина
|
||||||
option_limitways: Предупреди ме кога се вчитува голем број на податоци
|
option_limitways: Предупреди ме кога се вчитува голем број на податоци
|
||||||
option_microblog_id: "Име на микроблогот:"
|
option_microblog_id: "Име на микроблогот:"
|
||||||
|
@ -143,6 +144,7 @@ mk:
|
||||||
preset_icon_cafe: Кафуле
|
preset_icon_cafe: Кафуле
|
||||||
preset_icon_cinema: Кино
|
preset_icon_cinema: Кино
|
||||||
preset_icon_convenience: Продавница
|
preset_icon_convenience: Продавница
|
||||||
|
preset_icon_disaster: Објект во Хаити
|
||||||
preset_icon_fast_food: Брза храна
|
preset_icon_fast_food: Брза храна
|
||||||
preset_icon_ferry_terminal: Ферибот
|
preset_icon_ferry_terminal: Ферибот
|
||||||
preset_icon_fire_station: Пожарна
|
preset_icon_fire_station: Пожарна
|
||||||
|
|
|
@ -127,6 +127,7 @@ nl:
|
||||||
option_layer_ooc_25k: "VK historisch: 1:25k"
|
option_layer_ooc_25k: "VK historisch: 1:25k"
|
||||||
option_layer_ooc_7th: "VK historisch: 7e"
|
option_layer_ooc_7th: "VK historisch: 7e"
|
||||||
option_layer_ooc_npe: "VK historisch: NPE"
|
option_layer_ooc_npe: "VK historisch: NPE"
|
||||||
|
option_layer_streets_haiti: "Haïti: straatnamen"
|
||||||
option_layer_tip: De achtergrondweergave kiezen
|
option_layer_tip: De achtergrondweergave kiezen
|
||||||
option_limitways: Waarschuwen als er veel gegevens geladen moeten worden
|
option_limitways: Waarschuwen als er veel gegevens geladen moeten worden
|
||||||
option_microblog_id: "Naam microblogdienst:"
|
option_microblog_id: "Naam microblogdienst:"
|
||||||
|
@ -144,6 +145,7 @@ nl:
|
||||||
preset_icon_cafe: Café
|
preset_icon_cafe: Café
|
||||||
preset_icon_cinema: Bioscoop
|
preset_icon_cinema: Bioscoop
|
||||||
preset_icon_convenience: Gemakswinkel
|
preset_icon_convenience: Gemakswinkel
|
||||||
|
preset_icon_disaster: Gebouw op Haïti
|
||||||
preset_icon_fast_food: Fastfood
|
preset_icon_fast_food: Fastfood
|
||||||
preset_icon_ferry_terminal: Veer
|
preset_icon_ferry_terminal: Veer
|
||||||
preset_icon_fire_station: Brandweerkazerne
|
preset_icon_fire_station: Brandweerkazerne
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
# Exported from translatewiki.net
|
# Exported from translatewiki.net
|
||||||
# Export driver: syck
|
# Export driver: syck
|
||||||
# Author: Calibrator
|
# Author: Calibrator
|
||||||
|
# Author: Chilin
|
||||||
# Author: Ilis
|
# Author: Ilis
|
||||||
# Author: Александр Сигачёв
|
# Author: Александр Сигачёв
|
||||||
ru:
|
ru:
|
||||||
|
@ -132,6 +133,7 @@ ru:
|
||||||
option_layer_ooc_7th: "UK historic: 7th"
|
option_layer_ooc_7th: "UK historic: 7th"
|
||||||
option_layer_ooc_npe: "UK historic: NPE"
|
option_layer_ooc_npe: "UK historic: NPE"
|
||||||
option_layer_osmarender: OSM - Osmarender
|
option_layer_osmarender: OSM - Osmarender
|
||||||
|
option_layer_streets_haiti: "Гаити: названия улиц"
|
||||||
option_layer_tip: Выберите фон
|
option_layer_tip: Выберите фон
|
||||||
option_layer_yahoo: Yahoo!
|
option_layer_yahoo: Yahoo!
|
||||||
option_limitways: Предупрежд. когда много данных
|
option_limitways: Предупрежд. когда много данных
|
||||||
|
@ -150,11 +152,12 @@ ru:
|
||||||
preset_icon_cafe: Кафе
|
preset_icon_cafe: Кафе
|
||||||
preset_icon_cinema: Кинотеатр
|
preset_icon_cinema: Кинотеатр
|
||||||
preset_icon_convenience: Минимаркет
|
preset_icon_convenience: Минимаркет
|
||||||
preset_icon_fast_food: Палатка с едой
|
preset_icon_disaster: Здание на Гаити
|
||||||
|
preset_icon_fast_food: Фастфуд
|
||||||
preset_icon_ferry_terminal: Паром
|
preset_icon_ferry_terminal: Паром
|
||||||
preset_icon_fire_station: Пожарная часть
|
preset_icon_fire_station: Пожарная часть
|
||||||
preset_icon_hospital: Больница
|
preset_icon_hospital: Больница
|
||||||
preset_icon_hotel: Гостинница
|
preset_icon_hotel: Гостиница
|
||||||
preset_icon_museum: Музей
|
preset_icon_museum: Музей
|
||||||
preset_icon_parking: Стоянка
|
preset_icon_parking: Стоянка
|
||||||
preset_icon_pharmacy: Аптека
|
preset_icon_pharmacy: Аптека
|
||||||
|
|
|
@ -106,7 +106,7 @@ sk:
|
||||||
offset_choose: Zvoliť vyrovnanie (m)
|
offset_choose: Zvoliť vyrovnanie (m)
|
||||||
offset_dual: Dvojprúdová cesta (D2)
|
offset_dual: Dvojprúdová cesta (D2)
|
||||||
offset_motorway: Dialnica (D3)
|
offset_motorway: Dialnica (D3)
|
||||||
ok: V poriadku(Ok)
|
ok: Ok
|
||||||
openchangeset: Otvorenie súboru zmien
|
openchangeset: Otvorenie súboru zmien
|
||||||
option_custompointers: Použitie ukazovateľa pera a ruky
|
option_custompointers: Použitie ukazovateľa pera a ruky
|
||||||
option_external: "Externé spustenie:"
|
option_external: "Externé spustenie:"
|
||||||
|
|
|
@ -117,7 +117,7 @@ sv:
|
||||||
openchangeset: Öppnar ändringsset
|
openchangeset: Öppnar ändringsset
|
||||||
option_custompointers: Använd penna och handpekare
|
option_custompointers: Använd penna och handpekare
|
||||||
option_fadebackground: Mattad bakgrund
|
option_fadebackground: Mattad bakgrund
|
||||||
option_layer_cycle_map: OSM - cykel karta
|
option_layer_cycle_map: OSM - cykelkarta
|
||||||
option_layer_maplint: OSM - Maplint (fel)
|
option_layer_maplint: OSM - Maplint (fel)
|
||||||
option_layer_nearmap: "Australien: NearMap"
|
option_layer_nearmap: "Australien: NearMap"
|
||||||
option_layer_ooc_25k: Historisk UK karta 1:25k
|
option_layer_ooc_25k: Historisk UK karta 1:25k
|
||||||
|
|
11
db/migrate/049_improve_changeset_user_index.rb
Normal file
11
db/migrate/049_improve_changeset_user_index.rb
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
class ImproveChangesetUserIndex < ActiveRecord::Migration
|
||||||
|
def self.up
|
||||||
|
add_index :changesets, [:user_id, :id], :name => "changesets_user_id_id_idx"
|
||||||
|
remove_index :changesets, :name => "changesets_user_id_idx"
|
||||||
|
end
|
||||||
|
|
||||||
|
def self.down
|
||||||
|
add_index :changesets, [:user_id], :name => "changesets_user_id_idx"
|
||||||
|
remove_index :changesets, [:user_id, :id], :name => "changesets_user_id_id_idx"
|
||||||
|
end
|
||||||
|
end
|
Binary file not shown.
16
test/fixtures/changesets.yml
vendored
16
test/fixtures/changesets.yml
vendored
|
@ -1,5 +1,5 @@
|
||||||
# FIXME! all of these changesets need their bounding boxes set correctly!
|
# FIXME! all of these changesets need their bounding boxes set correctly!
|
||||||
#
|
#
|
||||||
<% SCALE = 10000000 unless defined?(SCALE) %>
|
<% SCALE = 10000000 unless defined?(SCALE) %>
|
||||||
|
|
||||||
# Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html
|
# Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html
|
||||||
|
@ -7,18 +7,18 @@ normal_user_first_change:
|
||||||
id: 1
|
id: 1
|
||||||
user_id: 1
|
user_id: 1
|
||||||
created_at: "2007-01-01 00:00:00"
|
created_at: "2007-01-01 00:00:00"
|
||||||
closed_at: <%= DateTime.now + Rational(1,24) %>
|
closed_at: <%= Time.now.utc + 86400 %>
|
||||||
min_lon: <%= 1 * SCALE %>
|
min_lon: <%= 1 * SCALE %>
|
||||||
min_lat: <%= 1 * SCALE %>
|
min_lat: <%= 1 * SCALE %>
|
||||||
max_lon: <%= 5 * SCALE %>
|
max_lon: <%= 5 * SCALE %>
|
||||||
max_lat: <%= 5 * SCALE %>
|
max_lat: <%= 5 * SCALE %>
|
||||||
num_changes: 11
|
num_changes: 11
|
||||||
|
|
||||||
public_user_first_change:
|
public_user_first_change:
|
||||||
id: 2
|
id: 2
|
||||||
user_id: 2
|
user_id: 2
|
||||||
created_at: <%= DateTime.now.utc %>
|
created_at: <%= Time.now.utc %>
|
||||||
closed_at: <%= DateTime.now + Rational(1,24) %>
|
closed_at: <%= Time.now.utc + 86400 %>
|
||||||
num_changes: 0
|
num_changes: 0
|
||||||
|
|
||||||
normal_user_closed_change:
|
normal_user_closed_change:
|
||||||
|
@ -38,8 +38,8 @@ public_user_closed_change:
|
||||||
public_user_version_change:
|
public_user_version_change:
|
||||||
id: 4
|
id: 4
|
||||||
user_id: 2
|
user_id: 2
|
||||||
created_at: <%= DateTime.now.utc %>
|
created_at: <%= Time.now.utc %>
|
||||||
closed_at: <%= DateTime.now + Rational(1,24) %>
|
closed_at: <%= Time.now.utc + 86400 %>
|
||||||
min_lon: <%= 1 * SCALE %>
|
min_lon: <%= 1 * SCALE %>
|
||||||
min_lat: <%= 1 * SCALE %>
|
min_lat: <%= 1 * SCALE %>
|
||||||
max_lon: <%= 4 * SCALE %>
|
max_lon: <%= 4 * SCALE %>
|
||||||
|
@ -62,7 +62,7 @@ too_many_elements_changeset:
|
||||||
id: 6
|
id: 6
|
||||||
user_id: 1
|
user_id: 1
|
||||||
created_at: "2008-01-01 00:00:00"
|
created_at: "2008-01-01 00:00:00"
|
||||||
closed_at: <%= DateTime.now + Rational(1,24) %>
|
closed_at: <%= Time.now.utc + 86400 %>
|
||||||
min_lon: <%= 1 * SCALE %>
|
min_lon: <%= 1 * SCALE %>
|
||||||
min_lat: <%= 1 * SCALE %>
|
min_lat: <%= 1 * SCALE %>
|
||||||
max_lon: <%= 4 * SCALE %>
|
max_lon: <%= 4 * SCALE %>
|
||||||
|
|
|
@ -4,82 +4,80 @@ class TraceControllerTest < ActionController::TestCase
|
||||||
fixtures :users, :gpx_files
|
fixtures :users, :gpx_files
|
||||||
set_fixture_class :gpx_files => 'Trace'
|
set_fixture_class :gpx_files => 'Trace'
|
||||||
|
|
||||||
|
|
||||||
# Check that the list of changesets is displayed
|
# Check that the list of changesets is displayed
|
||||||
def test_list
|
def test_list
|
||||||
get :list
|
get :list
|
||||||
assert_response :success
|
assert_response :success
|
||||||
assert_template 'list'
|
assert_template 'list'
|
||||||
end
|
end
|
||||||
|
|
||||||
# Check that I can get mine
|
# Check that I can get mine
|
||||||
def test_list_mine
|
def test_list_mine
|
||||||
# First try to get it when not logged in
|
# First try to get it when not logged in
|
||||||
get :mine
|
get :mine
|
||||||
assert_redirected_to :controller => 'user', :action => 'login', :referer => '/traces/mine'
|
assert_redirected_to :controller => 'user', :action => 'login', :referer => '/traces/mine'
|
||||||
|
|
||||||
# Now try when logged in
|
# Now try when logged in
|
||||||
get :mine, {}, {:user => users(:public_user).id}
|
get :mine, {}, {:user => users(:public_user).id}
|
||||||
assert_response :success
|
assert_redirected_to :controller => 'trace', :action => 'list', :display_name => users(:public_user).display_name
|
||||||
assert_template 'mine'
|
|
||||||
# Should really test to see which files are shown to the user
|
|
||||||
end
|
end
|
||||||
|
|
||||||
# Check that the rss loads
|
# Check that the rss loads
|
||||||
def test_rss
|
def test_rss
|
||||||
get :georss
|
get :georss
|
||||||
assert_rss_success
|
assert_rss_success
|
||||||
|
|
||||||
get :georss, :display_name => users(:normal_user).display_name
|
get :georss, :display_name => users(:normal_user).display_name
|
||||||
assert_rss_success
|
assert_rss_success
|
||||||
end
|
end
|
||||||
|
|
||||||
def assert_rss_success
|
def assert_rss_success
|
||||||
assert_response :success
|
assert_response :success
|
||||||
assert_template nil
|
assert_template nil
|
||||||
assert_equal "application/rss+xml", @response.content_type
|
assert_equal "application/rss+xml", @response.content_type
|
||||||
end
|
end
|
||||||
|
|
||||||
# Check getting a specific trace through the api
|
# Check getting a specific trace through the api
|
||||||
def test_api_details
|
def test_api_details
|
||||||
# First with no auth
|
# First with no auth
|
||||||
get :api_details, :id => gpx_files(:public_trace_file).id
|
get :api_details, :id => gpx_files(:public_trace_file).id
|
||||||
assert_response :unauthorized
|
assert_response :unauthorized
|
||||||
|
|
||||||
# Now with some other user, which should work since the trace is public
|
# Now with some other user, which should work since the trace is public
|
||||||
basic_authorization(users(:public_user).display_name, "test")
|
basic_authorization(users(:public_user).display_name, "test")
|
||||||
get :api_details, :id => gpx_files(:public_trace_file).id
|
get :api_details, :id => gpx_files(:public_trace_file).id
|
||||||
assert_response :success
|
assert_response :success
|
||||||
|
|
||||||
# And finally we should be able to do it with the owner of the trace
|
# And finally we should be able to do it with the owner of the trace
|
||||||
basic_authorization(users(:normal_user).display_name, "test")
|
basic_authorization(users(:normal_user).display_name, "test")
|
||||||
get :api_details, :id => gpx_files(:public_trace_file).id
|
get :api_details, :id => gpx_files(:public_trace_file).id
|
||||||
assert_response :success
|
assert_response :success
|
||||||
end
|
end
|
||||||
|
|
||||||
# Check an anoymous trace can't be specifically fetched by another user
|
# Check an anoymous trace can't be specifically fetched by another user
|
||||||
def test_api_details_anon
|
def test_api_details_anon
|
||||||
# Furst with no auth
|
# Furst with no auth
|
||||||
get :api_details, :id => gpx_files(:anon_trace_file).id
|
get :api_details, :id => gpx_files(:anon_trace_file).id
|
||||||
assert_response :unauthorized
|
assert_response :unauthorized
|
||||||
|
|
||||||
# Now try with another user, which shouldn't work since the trace is anon
|
# Now try with another user, which shouldn't work since the trace is anon
|
||||||
basic_authorization(users(:normal_user).display_name, "test")
|
basic_authorization(users(:normal_user).display_name, "test")
|
||||||
get :api_details, :id => gpx_files(:anon_trace_file).id
|
get :api_details, :id => gpx_files(:anon_trace_file).id
|
||||||
assert_response :forbidden
|
assert_response :forbidden
|
||||||
|
|
||||||
# And finally we should be able to get the trace details with the trace owner
|
# And finally we should be able to get the trace details with the trace owner
|
||||||
basic_authorization(users(:public_user).display_name, "test")
|
basic_authorization(users(:public_user).display_name, "test")
|
||||||
get :api_details, :id => gpx_files(:anon_trace_file).id
|
get :api_details, :id => gpx_files(:anon_trace_file).id
|
||||||
assert_response :success
|
assert_response :success
|
||||||
end
|
end
|
||||||
|
|
||||||
# Check the api details for a trace that doesn't exist
|
# Check the api details for a trace that doesn't exist
|
||||||
def test_api_details_not_found
|
def test_api_details_not_found
|
||||||
# Try first with no auth, as it should requure it
|
# Try first with no auth, as it should requure it
|
||||||
get :api_details, :id => 0
|
get :api_details, :id => 0
|
||||||
assert_response :unauthorized
|
assert_response :unauthorized
|
||||||
|
|
||||||
# Login, and try again
|
# Login, and try again
|
||||||
basic_authorization(users(:public_user).display_name, "test")
|
basic_authorization(users(:public_user).display_name, "test")
|
||||||
get :api_details, :id => 0
|
get :api_details, :id => 0
|
||||||
|
|
|
@ -10,19 +10,19 @@ class UserCreationTest < ActionController::IntegrationTest
|
||||||
assert_template 'user/new'
|
assert_template 'user/new'
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_user_create_submit_duplicate_email
|
def test_user_create_submit_duplicate_email
|
||||||
I18n.available_locales.each do |localer|
|
I18n.available_locales.each do |localer|
|
||||||
dup_email = users(:public_user).email
|
dup_email = users(:public_user).email
|
||||||
display_name = "#{localer.to_s}_new_tester"
|
display_name = "#{localer.to_s}_new_tester"
|
||||||
assert_difference('User.count', 0) do
|
assert_difference('User.count', 0) do
|
||||||
assert_difference('ActionMailer::Base.deliveries.size', 0) do
|
assert_difference('ActionMailer::Base.deliveries.size', 0) do
|
||||||
post '/user/save',
|
post '/user/save',
|
||||||
{:user => { :email => dup_email, :email_confirmation => dup_email, :display_name => display_name, :pass_crypt => "testtest", :pass_crypt_confirmation => "testtest"}},
|
{:user => { :email => dup_email, :email_confirmation => dup_email, :display_name => display_name, :pass_crypt => "testtest", :pass_crypt_confirmation => "testtest"}},
|
||||||
{"accept_language" => localer.to_s}
|
{"accept_language" => localer.to_s}
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
assert_response :success
|
assert_response :success
|
||||||
assert_template 'user/new'
|
assert_template 'user/new'
|
||||||
assert_equal response.headers['Content-Language'][0..1], localer.to_s[0..1] unless localer == :root
|
assert_equal response.headers['Content-Language'][0..1], localer.to_s[0..1] unless localer == :root
|
||||||
assert_select "div#errorExplanation"
|
assert_select "div#errorExplanation"
|
||||||
|
@ -30,7 +30,7 @@ class UserCreationTest < ActionController::IntegrationTest
|
||||||
assert_no_missing_translations
|
assert_no_missing_translations
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_user_create_submit_duplicate_username
|
def test_user_create_submit_duplicate_username
|
||||||
I18n.available_locales.each do |locale|
|
I18n.available_locales.each do |locale|
|
||||||
dup_display_name = users(:public_user).display_name
|
dup_display_name = users(:public_user).display_name
|
||||||
|
@ -49,34 +49,34 @@ class UserCreationTest < ActionController::IntegrationTest
|
||||||
assert_no_missing_translations
|
assert_no_missing_translations
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_user_create_success
|
def test_user_create_success
|
||||||
I18n.available_locales.each do |locale|
|
I18n.available_locales.each do |locale|
|
||||||
new_email = "#{locale.to_s}newtester@osm.org"
|
new_email = "#{locale.to_s}newtester@osm.org"
|
||||||
display_name = "#{locale.to_s}_new_tester"
|
display_name = "#{locale.to_s}_new_tester"
|
||||||
assert_difference('User.count') do
|
assert_difference('User.count') do
|
||||||
assert_difference('ActionMailer::Base.deliveries.size', 1) do
|
assert_difference('ActionMailer::Base.deliveries.size', 1) do
|
||||||
post_via_redirect "/user/save",
|
post_via_redirect "/user/save",
|
||||||
{:user => { :email => new_email, :email_confirmation => new_email, :display_name => display_name, :pass_crypt => "testtest", :pass_crypt_confirmation => "testtest"}},
|
{:user => { :email => new_email, :email_confirmation => new_email, :display_name => display_name, :pass_crypt => "testtest", :pass_crypt_confirmation => "testtest"}},
|
||||||
{"accept_language" => "#{locale.to_s}"}
|
{"accept_language" => "#{locale.to_s}"}
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
# Check the e-mail
|
# Check the e-mail
|
||||||
register_email = ActionMailer::Base.deliveries.first
|
register_email = ActionMailer::Base.deliveries.first
|
||||||
|
|
||||||
assert_equal register_email.to[0], new_email
|
assert_equal register_email.to[0], new_email
|
||||||
# Check that the confirm account url is correct
|
# Check that the confirm account url is correct
|
||||||
assert_match /#{@url}/, register_email.body
|
assert_match /#{@url}/, register_email.body
|
||||||
|
|
||||||
# Check the page
|
# Check the page
|
||||||
assert_response :success
|
assert_response :success
|
||||||
assert_template 'login'
|
assert_template 'login'
|
||||||
|
|
||||||
ActionMailer::Base.deliveries.clear
|
ActionMailer::Base.deliveries.clear
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
# Check that the user can successfully recover their password
|
# Check that the user can successfully recover their password
|
||||||
def lost_password_recovery_success
|
def lost_password_recovery_success
|
||||||
# Open the lost password form
|
# Open the lost password form
|
||||||
|
@ -94,24 +94,24 @@ class UserCreationTest < ActionController::IntegrationTest
|
||||||
referer = "/traces/mine"
|
referer = "/traces/mine"
|
||||||
assert_difference('User.count') do
|
assert_difference('User.count') do
|
||||||
assert_difference('ActionMailer::Base.deliveries.size', 1) do
|
assert_difference('ActionMailer::Base.deliveries.size', 1) do
|
||||||
post_via_redirect "/user/save",
|
post_via_redirect "/user/save",
|
||||||
{:user => { :email => new_email, :email_confirmation => new_email, :display_name => display_name, :pass_crypt => password, :pass_crypt_confirmation => password}, :referer => referer }
|
{:user => { :email => new_email, :email_confirmation => new_email, :display_name => display_name, :pass_crypt => password, :pass_crypt_confirmation => password}, :referer => referer }
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
# Check the e-mail
|
# Check the e-mail
|
||||||
register_email = ActionMailer::Base.deliveries.first
|
register_email = ActionMailer::Base.deliveries.first
|
||||||
|
|
||||||
assert_equal register_email.to[0], new_email
|
assert_equal register_email.to[0], new_email
|
||||||
# Check that the confirm account url is correct
|
# Check that the confirm account url is correct
|
||||||
confirm_regex = Regexp.new("/user/confirm\\?confirm_string=([a-zA-Z0-9]*)")
|
confirm_regex = Regexp.new("/user/confirm\\?confirm_string=([a-zA-Z0-9]*)")
|
||||||
assert_match(confirm_regex, register_email.body)
|
assert_match(confirm_regex, register_email.body)
|
||||||
confirm_string = confirm_regex.match(register_email.body)[1]
|
confirm_string = confirm_regex.match(register_email.body)[1]
|
||||||
|
|
||||||
# Check the page
|
# Check the page
|
||||||
assert_response :success
|
assert_response :success
|
||||||
assert_template 'login'
|
assert_template 'login'
|
||||||
|
|
||||||
ActionMailer::Base.deliveries.clear
|
ActionMailer::Base.deliveries.clear
|
||||||
|
|
||||||
# Go to the confirmation page
|
# Go to the confirmation page
|
||||||
|
@ -120,9 +120,11 @@ class UserCreationTest < ActionController::IntegrationTest
|
||||||
assert_template 'user/confirm'
|
assert_template 'user/confirm'
|
||||||
|
|
||||||
post 'user/confirm', { :confirm_string => confirm_string, :confirm_action => 'submit' }
|
post 'user/confirm', { :confirm_string => confirm_string, :confirm_action => 'submit' }
|
||||||
assert_response :redirect
|
assert_response :redirect # to trace/mine in original referrer
|
||||||
|
follow_redirect!
|
||||||
|
assert_response :redirect # but it not redirects to /user/<display_name>/traces
|
||||||
follow_redirect!
|
follow_redirect!
|
||||||
assert_response :success
|
assert_response :success
|
||||||
assert_template "trace/mine"
|
assert_template "trace/list.html.erb"
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue