Merge 16012:16110 from trunk.
|
@ -15,12 +15,21 @@ class DiaryEntryController < ApplicationController
|
|||
@diary_entry.user = @user
|
||||
|
||||
if @diary_entry.save
|
||||
default_lang = @user.preferences.find(:first, :conditions => {:k => "diary.default_language"})
|
||||
if default_lang
|
||||
default_lang.v = @diary_entry.language_code
|
||||
default_lang.save!
|
||||
else
|
||||
@user.preferences.create(:k => "diary.default_language", :v => @diary_entry.language_code)
|
||||
end
|
||||
redirect_to :controller => 'diary_entry', :action => 'list', :display_name => @user.display_name
|
||||
else
|
||||
render :action => 'edit'
|
||||
end
|
||||
else
|
||||
@diary_entry = DiaryEntry.new(:language_code => @user.preferred_language)
|
||||
default_lang = @user.preferences.find(:first, :conditions => {:k => "diary.default_language"})
|
||||
lang_code = default_lang ? default_lang.v : @user.preferred_language
|
||||
@diary_entry = DiaryEntry.new(:language_code => lang_code)
|
||||
render :action => 'edit'
|
||||
end
|
||||
end
|
||||
|
@ -122,6 +131,7 @@ class DiaryEntryController < ApplicationController
|
|||
if @entry
|
||||
@title = t 'diary_entry.view.title', :user => params[:display_name]
|
||||
else
|
||||
@title = t 'diary_entry.no_such_entry.title', :id => params[:id]
|
||||
render :action => 'no_such_entry', :status => :not_found
|
||||
end
|
||||
else
|
||||
|
|
|
@ -12,7 +12,6 @@ class MessageController < ApplicationController
|
|||
# clicks send.
|
||||
# The display_name param is the display name of the user that the message is being sent to.
|
||||
def new
|
||||
@title = t 'message.new.title'
|
||||
@to_user = User.find_by_display_name(params[:display_name])
|
||||
if @to_user
|
||||
if params[:message]
|
||||
|
@ -27,7 +26,13 @@ class MessageController < ApplicationController
|
|||
redirect_to :controller => 'message', :action => 'inbox', :display_name => @user.display_name
|
||||
end
|
||||
else
|
||||
if params[:title]
|
||||
# ?title= is set when someone reponds to this user's diary entry
|
||||
@title = params[:title]
|
||||
else
|
||||
# The default /message/new/$user view
|
||||
@title = t 'message.new.title'
|
||||
end
|
||||
end
|
||||
else
|
||||
@title = t'message.no_such_user.title'
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
class SiteController < ApplicationController
|
||||
layout 'site',:except => [:key]
|
||||
|
||||
before_filter :authorize_web
|
||||
before_filter :set_locale
|
||||
before_filter :require_user, :only => [:edit]
|
||||
|
@ -6,4 +8,8 @@ class SiteController < ApplicationController
|
|||
def export
|
||||
render :action => 'index'
|
||||
end
|
||||
|
||||
def key
|
||||
expires_in 7.days, :public => true
|
||||
end
|
||||
end
|
||||
|
|
|
@ -109,7 +109,7 @@ class TraceController < ApplicationController
|
|||
|
||||
if @trace and @trace.visible? and
|
||||
(@trace.public? or @trace.user == @user)
|
||||
@title = t 'trace.view.viewing_trace', :name => @trace.name
|
||||
@title = t 'trace.view.title', :name => @trace.name
|
||||
else
|
||||
flash[:notice] = t 'trace.view.trace_not_found'
|
||||
redirect_to :controller => 'trace', :action => 'list'
|
||||
|
@ -166,6 +166,7 @@ class TraceController < ApplicationController
|
|||
@trace = Trace.find(params[:id])
|
||||
|
||||
if @user and @trace.user == @user
|
||||
@title = t 'trace.edit.title', :name => @trace.name
|
||||
if params[:trace]
|
||||
@trace.description = params[:trace][:description]
|
||||
@trace.tagstring = params[:trace][:tagstring]
|
||||
|
|
|
@ -53,7 +53,7 @@ class Notifier < ActionMailer::Base
|
|||
|
||||
def message_notification(message)
|
||||
common_headers message.recipient
|
||||
subject I18n.t('notifier.message_notification.subject', :user => message.sender.display_name)
|
||||
subject I18n.t('notifier.message_notification.subject', :user => message.sender.display_name, :locale => locale)
|
||||
body :to_user => message.recipient.display_name,
|
||||
:from_user => message.sender.display_name,
|
||||
:body => message.body,
|
||||
|
@ -68,7 +68,7 @@ class Notifier < ActionMailer::Base
|
|||
|
||||
def diary_comment_notification(comment)
|
||||
common_headers comment.diary_entry.user
|
||||
subject I18n.t('notifier.diary_comment_notification.subject', :user => comment.user.display_name)
|
||||
subject I18n.t('notifier.diary_comment_notification.subject', :user => comment.user.display_name, :locale => locale)
|
||||
body :to_user => comment.diary_entry.user.display_name,
|
||||
:from_user => comment.user.display_name,
|
||||
:body => comment.body,
|
||||
|
@ -97,7 +97,7 @@ class Notifier < ActionMailer::Base
|
|||
befriendee = User.find_by_id(friend.friend_user_id)
|
||||
|
||||
common_headers befriendee
|
||||
subject I18n.t('notifier.friend_notification.subject', :user => befriender.display_name)
|
||||
subject I18n.t('notifier.friend_notification.subject', :user => befriender.display_name, :locale => locale)
|
||||
body :user => befriender.display_name,
|
||||
:userurl => url_for(:host => SERVER_URL,
|
||||
:controller => "user", :action => "view",
|
||||
|
|
|
@ -15,10 +15,11 @@
|
|||
<td>
|
||||
<%= render :partial => "way_details", :object => @way %>
|
||||
<hr />
|
||||
<%= t'browse.way.download', :download_xml_link => link_to(t('browse.way.download_xml'), :controller => "way", :action => "read"),
|
||||
:view_history_link => link_to(t('browse.way.view_history'), :action => "way_history"),
|
||||
:edit_link => link_to(t('browse.way.edit'), :controller => "site", :action => "edit", :way => @way.id, :lat => @midnode.lat, :lon => @midnode.lon, :zoom => 16)
|
||||
%>
|
||||
<%= link_to(t('browse.way.download_xml'), :controller => "way", :action => "read") %>
|
||||
| <%= link_to(t('browse.way.view_history'), :action => "way_history") %>
|
||||
<% unless @midnode.nil? %>
|
||||
| <%= link_to(t('browse.way.edit'), :controller => "site", :action => "edit", :way => @way.id, :lat => @midnode.lat, :lon => @midnode.lon, :zoom => 16) %>
|
||||
<% end %>
|
||||
</td>
|
||||
<%= render :partial => "map", :object => @way %>
|
||||
</tr>
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
<br />
|
||||
<%= link_to t('diary_entry.diary_entry.comment_link'), :action => 'view', :display_name => diary_entry.user.display_name, :id => diary_entry.id, :anchor => 'newcomment' %>
|
||||
|
|
||||
<%= link_to t('diary_entry.diary_entry.reply_link'), :controller => 'message', :action => 'new', :user_id => diary_entry.user.id, :title => "Re: #{diary_entry.title}" %>
|
||||
<%= link_to t('diary_entry.diary_entry.reply_link'), :controller => 'message', :action => 'new', :display_name => diary_entry.user.display_name, :title => "Re: #{diary_entry.title}" %>
|
||||
|
|
||||
<%= link_to t('diary_entry.diary_entry.comment_count', :count => diary_entry.diary_comments.count), :action => 'view', :display_name => diary_entry.user.display_name, :id => diary_entry.id, :anchor => 'comments' %>
|
||||
<% end %>
|
||||
|
|
|
@ -1,26 +1,33 @@
|
|||
<% content_for :left_menu do %>
|
||||
<%= link_to_function t('site.key.map_key'), "showKey();", { :title => t('site.key.map_key_tooltip') } %>
|
||||
<% end %>
|
||||
|
||||
<script type="text/javascript">
|
||||
<!--
|
||||
function showKey() {
|
||||
var zoomlevel = map.getZoom();
|
||||
function openMapKey() {
|
||||
updateMapKey();
|
||||
|
||||
if (zoomlevel<7 ) { var imgname = 'keymapnik6.png'; }
|
||||
else if (zoomlevel<13) { var imgname = 'keymapnik'+zoomlevel+'.png'; }
|
||||
else if (zoomlevel<15) { var imgname = 'keymapnik13.png'; }
|
||||
else { var imgname = 'keymapnik15.png'; }
|
||||
openSidebar({
|
||||
title: "<%= t('site.key.map_key') %>",
|
||||
onclose: closeMapKey
|
||||
});
|
||||
|
||||
updateSidebar("<%= t('site.key.map_key') %>", "<p><img src='images/"+imgname+"' /><\/p>");
|
||||
openSidebar({ width: "210px" });
|
||||
map.events.register("zoomend", map, updateMapKey);
|
||||
map.events.register("changelayer", map, updateMapKey);
|
||||
}
|
||||
|
||||
function updateKey() {
|
||||
if (sidebarOpen("<%= t('site.key.map_key') %>"))
|
||||
{
|
||||
showKey();
|
||||
function closeMapKey() {
|
||||
map.events.unregister("zoomend", map, updateMapKey);
|
||||
map.events.unregister("changelayer", map, updateMapKey);
|
||||
}
|
||||
|
||||
function updateMapKey() {
|
||||
var layer = map.baseLayer.name.toLowerCase().replace(/\s+/g, "_");
|
||||
var zoom = map.getZoom();
|
||||
|
||||
<%= remote_function :update => "sidebar_content",
|
||||
:url => { :action => "key" },
|
||||
:with => "'layer=' + layer + '&zoom=' + zoom",
|
||||
:method => :get
|
||||
%>
|
||||
}
|
||||
// -->
|
||||
</script>
|
||||
|
||||
<% content_for :left_menu do %>
|
||||
<%= link_to_function t('site.key.map_key'), "openMapKey()", :title => t('site.key.map_key_tooltip') %>
|
||||
<% end %>
|
||||
|
|
|
@ -21,6 +21,8 @@
|
|||
onclose = null;
|
||||
}
|
||||
|
||||
if (options.title) { $("sidebar_title").innerHTML = options.title; }
|
||||
|
||||
if (options.width) { $("sidebar").style.width = options.width; }
|
||||
else { $("sidebar").style.width = "30%"; }
|
||||
|
||||
|
@ -46,10 +48,5 @@
|
|||
$("sidebar_title").innerHTML = title;
|
||||
$("sidebar_content").innerHTML = content;
|
||||
}
|
||||
|
||||
function sidebarOpen(title) {
|
||||
return $("sidebar").style.display == "block" &&
|
||||
$("sidebar_title").innerHTML == title;
|
||||
}
|
||||
// -->
|
||||
</script>
|
||||
|
|
|
@ -139,8 +139,6 @@ end
|
|||
marker = addMarkerToMap(new OpenLayers.LonLat(<%= mlon %>, <%= mlat %>));
|
||||
<% end %>
|
||||
|
||||
map.events.register("zoomend", map, updateKey);
|
||||
|
||||
map.events.register("moveend", map, updateLocation);
|
||||
map.events.register("changelayer", map, updateLocation);
|
||||
updateLocation();
|
||||
|
|
21
app/views/site/key.html.erb
Normal file
|
@ -0,0 +1,21 @@
|
|||
<div id="mapkey">
|
||||
<h3><%= t "site.key.table.heading", :zoom_level => params[:zoom] %></h3>
|
||||
<table class="mapkey-table">
|
||||
<% YAML.load_file("#{RAILS_ROOT}/config/key.yml").each do |name,data| %>
|
||||
<% if params[:layer] == name %>
|
||||
<% data.each do |entry| %>
|
||||
<% if params[:zoom].to_i >= entry['min_zoom'] && params[:zoom].to_i <= entry['max_zoom'] %>
|
||||
<tr>
|
||||
<td class="mapkey-table-key" align="center">
|
||||
<%= image_tag "key/#{name}/#{entry['image']}" %>
|
||||
</td>
|
||||
<td class="mapkey-table-value">
|
||||
<%= t "site.key.table.entry.#{entry['name']}" %>
|
||||
</td>
|
||||
</tr>
|
||||
<% end %>
|
||||
<% end %>
|
||||
<% end %>
|
||||
<% end %>
|
||||
</table>
|
||||
</div>
|
|
@ -3,7 +3,7 @@
|
|||
<tr><td align="right"><%= t'trace.trace_form.upload_gpx' %></td><td><%= f.file_field :gpx_file, :size => 50, :maxlength => 255 %></td></tr>
|
||||
<tr><td align="right"><%= t'trace.trace_form.description' %></td><td><%= f.text_field :description, :size => 50, :maxlength => 255 %></td></tr>
|
||||
<tr><td align="right"><%= t'trace.trace_form.tags' %></td><td><%= f.text_field :tagstring, :size => 50, :maxlength => 255 %></td></tr>
|
||||
<tr><td align="right"><%= t'trace.trace_form.public' %></td><td><%= f.check_box :public %></td></tr>
|
||||
<tr><td align="right"><%= t'trace.trace_form.public' %></td><td><%= f.check_box :public %> <span class="minorNote">(<a href="<%= t'trace.trace_form.public_help_url' %>"><%= t'trace.trace_form.public_help' %></a>)</span></td></tr>
|
||||
<tr><td></td><td><%= submit_tag t('trace.trace_form.upload_button') %> | <a href="<%= t'trace.trace_form.help_url' %>"><%= t'trace.trace_form.help' %></a></td></tr>
|
||||
</table>
|
||||
<% end %>
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<h2><%= h(@title) %></h2>
|
||||
<h2><%= t 'trace.edit.heading', :name => h(@trace.name) %></h2>
|
||||
|
||||
<img src="<%= url_for :controller => 'trace', :action => 'picture', :id => @trace.id, :display_name => @trace.user.display_name %>">
|
||||
|
||||
|
@ -7,7 +7,7 @@
|
|||
<table border="0">
|
||||
<tr>
|
||||
<td><%= t'trace.edit.filename' %></td>
|
||||
<td><%= @trace.name %> (<%= link_to 'download', :controller => 'trace', :action => 'data', :id => @trace.id %>)</td>
|
||||
<td><%= @trace.name %> (<%= link_to t('trace.edit.download'), :controller => 'trace', :action => 'data', :id => @trace.id %>)</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><%= t'trace.edit.uploaded_at' %></td>
|
||||
|
@ -18,8 +18,8 @@
|
|||
<td><%= t'trace.edit.points' %></td>
|
||||
<td><%= @trace.size.to_s.gsub(/(\d)(?=(\d{3})+$)/,'\1,') %></td></tr>
|
||||
<tr>
|
||||
<td><%= t'trace.edit.start_coord' %>Start coordinate:</td>
|
||||
<td><div class="geo" style="display: inline"><span class="latitude"><%= @trace.latitude %></span>; <span class="longitude"><%= @trace.longitude %></span></div> (<%=link_to 'map', :controller => 'site', :action => 'index', :lat => @trace.latitude, :lon => @trace.longitude, :zoom => 14 %> / <%=link_to t('trace.edit.edit'), :controller => 'site', :action => 'edit', :lat => @trace.latitude, :lon => @trace.longitude, :gpx=> @trace.id, :zoom => 14 %>)</td>
|
||||
<td><%= t'trace.edit.start_coord' %></td>
|
||||
<td><div class="geo" style="display: inline"><span class="latitude"><%= @trace.latitude %></span>; <span class="longitude"><%= @trace.longitude %></span></div> (<%=link_to t('trace.edit.map'), :controller => 'site', :action => 'index', :lat => @trace.latitude, :lon => @trace.longitude, :zoom => 14 %> / <%=link_to t('trace.edit.edit'), :controller => 'site', :action => 'edit', :lat => @trace.latitude, :lon => @trace.longitude, :gpx=> @trace.id, :zoom => 14 %>)</td>
|
||||
</tr>
|
||||
<% end %>
|
||||
<tr>
|
||||
|
@ -31,13 +31,13 @@
|
|||
<td><%= f.text_field :description %></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Tags:</td>
|
||||
<td><%= t'trace.edit.tags' %></td>
|
||||
<td><%= f.text_field :tagstring %></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<br /><br />
|
||||
|
||||
<%= submit_tag 'Save Changes' %>
|
||||
<%= submit_tag t'trace.edit.save_button' %>
|
||||
|
||||
<% end %>
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<h2><%= h(@title) %></h2>
|
||||
<h2><%= t 'trace.view.heading', :name => h(@trace.name) %></h2>
|
||||
|
||||
<% if @trace.inserted %>
|
||||
<img src="<%= url_for :controller => 'trace', :action => 'picture', :id => @trace.id, :display_name => @trace.user.display_name %>">
|
||||
|
@ -35,12 +35,12 @@
|
|||
<tr>
|
||||
<td><%= t'trace.view.tags' %></td>
|
||||
<td>
|
||||
<% if @trace.tags %>
|
||||
<% unless @trace.tags.empty? %>
|
||||
<% @trace.tags.each do |tag| %>
|
||||
<%= link_to tag.tag, { :controller => 'trace', :action => 'list', :tag => tag.tag, :id => nil } %>
|
||||
<% end %>
|
||||
<% else %>
|
||||
<%= t'trace.view.none' %>
|
||||
<i><%= t'trace.view.none' %></i>
|
||||
<% end %>
|
||||
</td>
|
||||
</tr>
|
||||
|
|
52
config/key.yml
Normal file
|
@ -0,0 +1,52 @@
|
|||
mapnik:
|
||||
- { min_zoom: 0, max_zoom: 18, name: motorway, image: motorway.png }
|
||||
- { min_zoom: 0, max_zoom: 11, name: trunk, image: trunk.png }
|
||||
- { min_zoom: 12, max_zoom: 18, name: trunk, image: trunk12.png }
|
||||
- { min_zoom: 7, max_zoom: 11, name: primary, image: primary.png }
|
||||
- { min_zoom: 12, max_zoom: 18, name: primary, image: primary12.png }
|
||||
- { min_zoom: 9, max_zoom: 11, name: secondary, image: secondary.png }
|
||||
- { min_zoom: 12, max_zoom: 18, name: secondary, image: secondary12.png }
|
||||
- { min_zoom: 13, max_zoom: 18, name: unsurfaced, image: unsurfaced.png }
|
||||
- { min_zoom: 13, max_zoom: 18, name: track, image: track.png }
|
||||
- { min_zoom: 13, max_zoom: 18, name: byway, image: byway.png }
|
||||
- { min_zoom: 13, max_zoom: 18, name: bridleway, image: bridleway.png }
|
||||
- { min_zoom: 13, max_zoom: 18, name: cycleway, image: cycleway.png }
|
||||
- { min_zoom: 13, max_zoom: 18, name: footway, image: footway.png }
|
||||
- { min_zoom: 8, max_zoom: 12, name: rail, image: rail.png }
|
||||
- { min_zoom: 13, max_zoom: 18, name: rail, image: rail13.png }
|
||||
- { min_zoom: 13, max_zoom: 18, name: subway, image: subway.png }
|
||||
- { min_zoom: 13, max_zoom: 18, name: tram, image: tram.png }
|
||||
- { min_zoom: 12, max_zoom: 18, name: cable, image: cable.png }
|
||||
- { min_zoom: 11, max_zoom: 18, name: runway, image: runway.png }
|
||||
- { min_zoom: 12, max_zoom: 18, name: apron, image: apron.png }
|
||||
- { min_zoom: 0, max_zoom: 18, name: admin, image: admin.png }
|
||||
- { min_zoom: 9, max_zoom: 18, name: forest, image: forest.png }
|
||||
- { min_zoom: 10, max_zoom: 18, name: wood, image: wood.png }
|
||||
- { min_zoom: 10, max_zoom: 18, name: golf, image: golf.png }
|
||||
- { min_zoom: 10, max_zoom: 18, name: park, image: park.png }
|
||||
- { min_zoom: 8, max_zoom: 18, name: resident, image: resident.png }
|
||||
- { min_zoom: 10, max_zoom: 18, name: tourist, image: tourist.png }
|
||||
- { min_zoom: 10, max_zoom: 18, name: common, image: common.png }
|
||||
- { min_zoom: 10, max_zoom: 18, name: retail, image: retail.png }
|
||||
- { min_zoom: 10, max_zoom: 18, name: industrial, image: industrial.png }
|
||||
- { min_zoom: 10, max_zoom: 18, name: commercial, image: commercial.png }
|
||||
- { min_zoom: 10, max_zoom: 18, name: heathland, image: heathland.png }
|
||||
- { min_zoom: 7, max_zoom: 18, name: lake, image: lake.png }
|
||||
- { min_zoom: 10, max_zoom: 18, name: farm, image: farm.png }
|
||||
- { min_zoom: 10, max_zoom: 18, name: brownfield, image: brownfield.png }
|
||||
- { min_zoom: 11, max_zoom: 18, name: cemetery, image: cemetery.png }
|
||||
- { min_zoom: 11, max_zoom: 18, name: allotments, image: allotments.png }
|
||||
- { min_zoom: 11, max_zoom: 18, name: pitch, image: pitch.png }
|
||||
- { min_zoom: 11, max_zoom: 18, name: centre, image: centre.png }
|
||||
- { min_zoom: 11, max_zoom: 18, name: reserve, image: reserve.png }
|
||||
- { min_zoom: 11, max_zoom: 18, name: military, image: military.png }
|
||||
- { min_zoom: 12, max_zoom: 18, name: school, image: school.png }
|
||||
- { min_zoom: 12, max_zoom: 18, name: building, image: building.png }
|
||||
- { min_zoom: 12, max_zoom: 18, name: station, image: station.png }
|
||||
- { min_zoom: 12, max_zoom: 18, name: summit, image: summit.png }
|
||||
- { min_zoom: 12, max_zoom: 18, name: tunnel, image: tunnel.png }
|
||||
- { min_zoom: 13, max_zoom: 18, name: bridge, image: bridge.png }
|
||||
- { min_zoom: 15, max_zoom: 18, name: private, image: private.png }
|
||||
- { min_zoom: 15, max_zoom: 18, name: permissive, image: permissive.png }
|
||||
- { min_zoom: 15, max_zoom: 18, name: destination, image: destination.png }
|
||||
- { min_zoom: 12, max_zoom: 18, name: construction, image: construction.png }
|
|
@ -485,7 +485,7 @@ be:
|
|||
make_public: "Зрабіць гэты трэк агульнадаступным назаўсёды"
|
||||
edit_track: "Змяніць бягучы трэк"
|
||||
delete_track: "Выдаліць гэты трэк"
|
||||
viewing_trace: "Прагляд трэку {{name}}"
|
||||
heading: "Прагляд трэку {{name}}"
|
||||
trace_not_found: "Трэк не знойдзены!"
|
||||
trace_paging_nav:
|
||||
showing: "Прагляд старонкі"
|
||||
|
|
|
@ -164,13 +164,13 @@ de:
|
|||
private_user: "Anonymer Benutzer"
|
||||
edited_by_user_at_timestamp: "Bearbeitet von [[user]] am [[timestamp]]"
|
||||
object_list:
|
||||
heading: "Object list"
|
||||
back: "Display object list"
|
||||
heading: "Objektliste"
|
||||
back: "Objektliste anzeigen"
|
||||
type:
|
||||
node: "Knoten"
|
||||
way: "Weg"
|
||||
# There's no 'relation' type because it isn't represented in OpenLayers
|
||||
api: "Retrieve this area from the API"
|
||||
api: "Diesen Bereich von der API abfragen"
|
||||
details: "Details"
|
||||
selected:
|
||||
type:
|
||||
|
@ -193,7 +193,7 @@ de:
|
|||
way_history:
|
||||
way_history: "Wege-Chronik"
|
||||
way_history_title: "Chronik des Wegs: {{way_name}}"
|
||||
download: "{{download_xml_link}} or {{view_details_link}}"
|
||||
download: "{{download_xml_link}} oder {{view_details_link}}"
|
||||
download_xml: "Download als XML"
|
||||
view_details: "Detailseite anzeigen"
|
||||
way:
|
||||
|
@ -275,6 +275,7 @@ de:
|
|||
login_to_leave_a_comment: "{{login_link}}, um einen Kommentar zu schreiben"
|
||||
login: "Anmelden"
|
||||
no_such_entry:
|
||||
title: "Blogeintrag nicht gefunden"
|
||||
heading: "Kein Blogeintrag mit der Nummer {{id}}"
|
||||
body: "Wir konnten leider keinen Blogeintrag oder Kommentar mit der Nummer {{id}} finden. Du hast dich möglicherweise vertippt oder du bist einem ungültigem Link gefolgt."
|
||||
no_such_user:
|
||||
|
@ -311,7 +312,7 @@ de:
|
|||
add_marker: "Markierung zur Karte hinzufügen"
|
||||
latitude: "Breitengrad:"
|
||||
longitude: "Längengrad:"
|
||||
output: "Output"
|
||||
output: "Ausgabe"
|
||||
paste_html: "HTML-Code kopieren, um ihn in eine Website einzufügen."
|
||||
export_button: "Export"
|
||||
start_rjs:
|
||||
|
@ -334,7 +335,7 @@ de:
|
|||
# in <h1>
|
||||
h1: OpenStreetMap
|
||||
logo:
|
||||
alt_text: OpenStreetMap logo
|
||||
alt_text: OpenStreetMap Logo
|
||||
welcome_user: "Willkommen, {{user_link}}"
|
||||
welcome_user_link_tooltip: Eigene Benutzerseite
|
||||
home: Standort
|
||||
|
@ -433,7 +434,7 @@ de:
|
|||
the_wiki_url: "http://wiki.openstreetmap.org/wiki/DE:Beginners_Guide"
|
||||
opengeodata: "OpenGeoData.org ist das OpenStreetMap Blog; dort gibt es auch einen Podcast:"
|
||||
wiki_signup: "Im Wiki von OpenStreetMap kannst du dich ebenfalls registrieren:"
|
||||
wiki_signup_url: "http://wiki.openstreetmap.org/index.php?title=Special:Userlogin&type=signup&returnto=Main_Page"
|
||||
wiki_signup_url: "http://wiki.openstreetmap.org/index.php?title=Special:Userlogin&type=signup&returnto=Hauptseite"
|
||||
# next four translations are in pairs : please word wrap appropriately
|
||||
user_wiki_1: "Es wird begrüßt wenn du dort eine Benutzerseite erstellst, welche"
|
||||
user_wiki_2: "einen Kategorie-Tag enthält der auf deinen Standort hinweist, zum Beispiel [[Category:Users_in_München]]."
|
||||
|
@ -567,15 +568,70 @@ de:
|
|||
key:
|
||||
map_key: "Legende"
|
||||
map_key_tooltip: "Legende für die Mapnik-Karte bei diesem Zoom-Level"
|
||||
table:
|
||||
heading: "Legende für Zoomstufe {{zoom_level}}"
|
||||
entry:
|
||||
motorway: "Autobahn"
|
||||
trunk: "Schnellstraße"
|
||||
primary: "Bundesstraße"
|
||||
secondary: "Landes-, Kreisstraße"
|
||||
unclassified: "Straße"
|
||||
unsurfaced: "Unbefestigte Straße"
|
||||
track: "Wald-, Feldweg"
|
||||
byway: "Nebenweg"
|
||||
bridleway: "Reitweg"
|
||||
cycleway: "Fahrradweg"
|
||||
footway: "Fussweg"
|
||||
rail: "Eisenbahn"
|
||||
subway: "U-Bahn"
|
||||
tram: "Straßenbahn, Stadtbahn"
|
||||
cable: "Seilbahn"
|
||||
runway: "Start-/Landebahn, Rollfeld"
|
||||
apron: "Vorfeld, Flughafengebäude"
|
||||
admin: "Landesgrenzen, sonstige Grenzen"
|
||||
forest: "Forst"
|
||||
wood: "Naturwald"
|
||||
golf: "Golfplatz"
|
||||
park: "Park"
|
||||
resident: "Wohngebiet"
|
||||
tourist: "Touristenattraktion"
|
||||
common: "Wiese, Grünfläche"
|
||||
retail: "Einkaufszentrum"
|
||||
industrial: "Industriegebiet"
|
||||
commercial: "Gewerbegebiet"
|
||||
heathland: "Heide"
|
||||
lake: "See, Stausee"
|
||||
farm: "Landwirtschaft"
|
||||
brownfield: "Brachland"
|
||||
cemetery: "Friedhof"
|
||||
allotments: "Kleingartenanlage"
|
||||
pitch: "Sportfeld"
|
||||
centre: "Sportzentum"
|
||||
reserve: "Naturschutzgebiet"
|
||||
military: "Militärgebiet"
|
||||
school: "Schule, Universität"
|
||||
building: "Besonderes Gebäude"
|
||||
station: "Bahnhof"
|
||||
summit: "Gipfel, Bergspitze"
|
||||
tunnel: "Gestrichelter Rand = Tunnel"
|
||||
bridge: "Dicker Rand = Brücke"
|
||||
private: "Privater Zugang"
|
||||
permissive: "Eingeschänkter Zugang"
|
||||
destination: "Nur für Anrainer"
|
||||
construction: "Straße im Bau"
|
||||
trace:
|
||||
create:
|
||||
upload_trace: "Lade einen GPS-Track hoch"
|
||||
trace_uploaded: "Deine GPX-Datei wurde hochgeladen und wartet auf die Aufnahme in die Datenbank. Dies geschieht normalerweise innerhalb einer halben Stunde, anschließend wird dir eine Bestätigungs-E-Mail gesendet."
|
||||
edit:
|
||||
title: "Track {{name}} bearbeiten"
|
||||
heading: "Track {{name}} bearbeiten"
|
||||
filename: "Dateiname:"
|
||||
download: "herunterladen"
|
||||
uploaded_at: "Hochgeladen am:"
|
||||
points: "Punkte:"
|
||||
start_coord: "Startkoordinate:"
|
||||
map: "Karte"
|
||||
edit: "bearbeiten"
|
||||
owner: "Besitzer:"
|
||||
description: "Beschreibung:"
|
||||
|
@ -590,6 +646,8 @@ de:
|
|||
description: "Beschreibung"
|
||||
tags: "Tags"
|
||||
public: "Öffentlich?"
|
||||
public_help: "Was heißt das?"
|
||||
public_help_url: "http://wiki.openstreetmap.org/wiki/Visibility_of_GPS_traces"
|
||||
upload_button: "Hochladen"
|
||||
help: "Hilfe"
|
||||
help_url: "http://wiki.openstreetmap.org/wiki/DE:Upload"
|
||||
|
@ -601,6 +659,8 @@ de:
|
|||
trace_optionals:
|
||||
tags: "Tags"
|
||||
view:
|
||||
title: "Track {{name}} betrachten"
|
||||
heading: "Track {{name}} betrachten"
|
||||
pending: "WARTEND"
|
||||
filename: "Dateiname:"
|
||||
download: "herunterladen"
|
||||
|
@ -616,7 +676,6 @@ de:
|
|||
make_public: "Mache diesen Track öffentlich"
|
||||
edit_track: "Diesen Track bearbeiten"
|
||||
delete_track: "Diesen Track löschen"
|
||||
viewing_trace: "Track {{name}} betrachten"
|
||||
trace_not_found: "Track nicht gefunden!"
|
||||
trace_paging_nav:
|
||||
showing: "Zeige Seite"
|
||||
|
|
|
@ -273,6 +273,7 @@ en:
|
|||
login: "Login"
|
||||
save_button: "Save"
|
||||
no_such_entry:
|
||||
title: "No such diary entry"
|
||||
heading: "No entry with the id: {{id}}"
|
||||
body: "Sorry, there is no diary entry or comment with the id {{id}}. Please check your spelling, or maybe the link you clicked is wrong."
|
||||
no_such_user:
|
||||
|
@ -565,15 +566,70 @@ en:
|
|||
key:
|
||||
map_key: "Map key"
|
||||
map_key_tooltip: "Map key for the mapnik rendering at this zoom level"
|
||||
table:
|
||||
heading: "Legend for z{{zoom_level}}"
|
||||
entry:
|
||||
motorway: "Motorway"
|
||||
trunk: "Trunk road"
|
||||
primary: "Primary road"
|
||||
secondary: "Secondary road"
|
||||
unclassified: "Unclassified road"
|
||||
unsurfaced: "Unsurfaced road"
|
||||
track: "Track"
|
||||
byway: "Byway"
|
||||
bridleway: "Bridleway"
|
||||
cycleway: "Cycleway"
|
||||
footway: "Footway"
|
||||
rail: "Railway"
|
||||
subway: "Subway"
|
||||
tram: "Light rail; tram"
|
||||
cable: "Cable car; chair lift"
|
||||
runway: "Airport Runway; taxiway"
|
||||
apron: "Airport apron; terminal"
|
||||
admin: "Administrative boundary"
|
||||
forest: "Forest"
|
||||
wood: "Wood"
|
||||
golf: "Golf course"
|
||||
park: "Park"
|
||||
resident: "Residential area"
|
||||
tourist: "Tourist attraction"
|
||||
common: "Common; meadow"
|
||||
retail: "Retail area"
|
||||
industrial: "Industrial area"
|
||||
commercial: "Commercial area"
|
||||
heathland: "Heathland"
|
||||
lake: "Lake; reservoir"
|
||||
farm: "Farm"
|
||||
brownfield: "Brownfield site"
|
||||
cemetery: "Cemetery"
|
||||
allotments: "Allotments"
|
||||
pitch: "Sports pitch"
|
||||
centre: "Sports centre"
|
||||
reserve: "Nature reserve"
|
||||
military: "Military area"
|
||||
school: "School; university"
|
||||
building: "Significant building"
|
||||
station: "Railway station"
|
||||
summit: "Summit; peak"
|
||||
tunnel: "Dashed casing = tunnel"
|
||||
bridge: "Black casing = bridge"
|
||||
private: "Private access"
|
||||
permissive: "Permissive access"
|
||||
destination: "Destination access"
|
||||
construction: "Roads under construction"
|
||||
trace:
|
||||
create:
|
||||
upload_trace: "Upload GPS Trace"
|
||||
trace_uploaded: "Your GPX file has been uploaded and is awaiting insertion in to the database. This will usually happen within half an hour, and an email will be sent to you on completion."
|
||||
edit:
|
||||
title: "Editing trace {{name}}"
|
||||
heading: "Editing trace {{name}}"
|
||||
filename: "Filename:"
|
||||
download: "download"
|
||||
uploaded_at: "Uploaded at:"
|
||||
points: "Points:"
|
||||
start_coord: "Start coordinate:"
|
||||
map: "map"
|
||||
edit: "edit"
|
||||
owner: "Owner:"
|
||||
description: "Description:"
|
||||
|
@ -588,6 +644,8 @@ en:
|
|||
description: "Description"
|
||||
tags: "Tags"
|
||||
public: "Public?"
|
||||
public_help: "what does this mean?"
|
||||
public_help_url: "http://wiki.openstreetmap.org/wiki/Visibility_of_GPS_traces"
|
||||
upload_button: "Upload"
|
||||
help: "Help"
|
||||
help_url: "http://wiki.openstreetmap.org/wiki/Upload"
|
||||
|
@ -599,6 +657,8 @@ en:
|
|||
trace_optionals:
|
||||
tags: "Tags"
|
||||
view:
|
||||
title: "Viewing trace {{name}}"
|
||||
heading: "Viewing trace {{name}}"
|
||||
pending: "PENDING"
|
||||
filename: "Filename:"
|
||||
download: "download"
|
||||
|
@ -614,7 +674,6 @@ en:
|
|||
make_public: "Make this track public permanently"
|
||||
edit_track: "Edit this track"
|
||||
delete_track: "Delete this track"
|
||||
viewing_trace: "Viewing trace {{name}}"
|
||||
trace_not_found: "Trace not found!"
|
||||
trace_paging_nav:
|
||||
showing: "Showing page"
|
||||
|
|
|
@ -97,7 +97,7 @@ es:
|
|||
in_changeset: "En el conjunto de cambios:"
|
||||
containing_relation:
|
||||
relation: "Relación {{relation_name}}"
|
||||
relation_as: "(como {{relacion_role}})"
|
||||
relation_as: "(como {{relation_role}})"
|
||||
map:
|
||||
loading: "Cargando..."
|
||||
deleted: "Borrado"
|
||||
|
@ -551,7 +551,7 @@ es:
|
|||
make_public: "Hacer esta traza pública de forma permanente"
|
||||
edit_track: "Editar esta traza"
|
||||
delete_track: "Borrar esta traza"
|
||||
viewing_trace: "Viendo traza {{name}}"
|
||||
heading: "Viendo traza {{name}}"
|
||||
trace_not_found: "¡No se ha encontrado la traza!"
|
||||
trace_paging_nav:
|
||||
showing: "Mostrando página"
|
||||
|
|
|
@ -488,7 +488,7 @@ he:
|
|||
make_public: "Make this track public permanently"
|
||||
edit_track: "Edit this track"
|
||||
delete_track: "Delete this track"
|
||||
viewing_trace: "Viewing trace {{name}}"
|
||||
heading: "Viewing trace {{name}}"
|
||||
trace_not_found: "Trace not found!"
|
||||
trace_paging_nav:
|
||||
showing: "Showing page"
|
||||
|
|
|
@ -552,7 +552,7 @@ hi:
|
|||
make_public: "Make this track public permanently"
|
||||
edit_track: "Edit this track"
|
||||
delete_track: "Delete this track"
|
||||
viewing_trace: "Viewing trace {{name}}"
|
||||
heading: "Viewing trace {{name}}"
|
||||
trace_not_found: "Trace not found!"
|
||||
trace_paging_nav:
|
||||
showing: "Showing page"
|
||||
|
|
|
@ -59,14 +59,14 @@ is:
|
|||
latitude: "Latitude"
|
||||
longitude: "Longitude"
|
||||
public: "Public"
|
||||
description: "Description"
|
||||
description: "Lýsing"
|
||||
message:
|
||||
sender: "Sender"
|
||||
title: "Title"
|
||||
body: "Body"
|
||||
recipient: "Recipient"
|
||||
user:
|
||||
email: "Tölvupóstfang"
|
||||
email: "Netfang"
|
||||
active: "Active"
|
||||
display_name: "Display Name"
|
||||
description: "Description"
|
||||
|
@ -291,8 +291,9 @@ is:
|
|||
login: "Innskráðu þig"
|
||||
save_button: "Vista"
|
||||
no_such_entry:
|
||||
heading: "No entry with the id: {{id}}"
|
||||
body: "Sorry, there is no diary entry or comment with the id {{id}}. Please check your spelling, or maybe the link you clicked is wrong."
|
||||
title: "Þessi bloggfærsla er ekki til"
|
||||
heading: "Bloggfærsla númer {{id}} er ekki til"
|
||||
body: "Bloggfærsla númer er ekki til {{id}}. Kannski slóstu slóðina vitlaust inn eða fylgdir ógildum tengli."
|
||||
no_such_user:
|
||||
title: "Notandi ekki til"
|
||||
heading: "Notandinn {{user}} er ekki til"
|
||||
|
@ -436,7 +437,7 @@ is:
|
|||
loaded successfully with {{trace_points}} out of a possible
|
||||
{{possible_points}} points.
|
||||
signup_confirm:
|
||||
subject: "[OpenStreetMap] Staðfestu tölvupóstfangið þitt"
|
||||
subject: "[OpenStreetMap] Staðfestu netfangið þitt"
|
||||
signup_confirm_plain:
|
||||
greeting: "Hi there!"
|
||||
hopefully_you: "Someone (hopefully you) would like to create an account over at"
|
||||
|
@ -468,26 +469,26 @@ is:
|
|||
user_wiki_page: 'It is recommended that you create a user wiki page, which includes category tags noting where you are, such as <a href="http://wiki.openstreetmap.org/wiki/Category:Users_in_London">[[Category:Users_in_London]]</a>.'
|
||||
current_user: 'A list of current users in categories, based on where in the world they are, is available from <a href="http://wiki.openstreetmap.org/wiki/Category:Users_by_geographical_region">Category:Users_by_geographical_region</a>.'
|
||||
email_confirm:
|
||||
subject: "[OpenStreetMap] Staðfestu tölvupóstfangið þitt"
|
||||
subject: "[OpenStreetMap] Staðfestu netfangið þitt"
|
||||
email_confirm_plain:
|
||||
greeting: "Hæ,"
|
||||
hopefully_you_1: "Einhver (vonandi þú) vill breyta tölvupóstfanginu sínu á"
|
||||
hopefully_you_1: "Einhver (vonandi þú) vill breyta netfanginu sínu á"
|
||||
hopefully_you_2: "{{server_url}} í {{new_address}}."
|
||||
click_the_link: "Ef þú óskaðir eftir þessari breytingu fylgdu tenglinum hér fyrir neðan til að staðfesta breytinguna."
|
||||
email_confirm_html:
|
||||
greeting: "Hi,"
|
||||
hopefully_you: "Einhver (vonandi þú) vill breyta tölvupóstfanginu sínu á {{server_url}} í {{new_address}}."
|
||||
hopefully_you: "Einhver (vonandi þú) vill breyta netfanginu sínu á {{server_url}} í {{new_address}}."
|
||||
click_the_link: "Ef þú óskaðir eftir þessari breytingu fylgdu tenglinum hér fyrir neðan til að staðfesta breytinguna."
|
||||
lost_password:
|
||||
subject: "[OpenStreetMap] Beðni um að endurstilla lykilorð"
|
||||
lost_password_plain:
|
||||
greeting: "Hæ,"
|
||||
hopefully_you_1: "Einhver (vonandi þú) hefur beðið um að endurstilla lykilorðið á reikningnum"
|
||||
hopefully_you_2: "með þetta tölvupóstfang á openstreetmap.org"
|
||||
hopefully_you_2: "með þetta netfang á openstreetmap.org"
|
||||
click_the_link: "Ef þú óskaðir eftir þessari endurstillingu fylgdu tenglinum hér fyrir neðan til að staðfesta breytinguna."
|
||||
lost_password_html:
|
||||
greeting: "Hæ,"
|
||||
hopefully_you: "Einhver (vonandi þú) hefur beðið um að endurstilla lykilorðið á reikningnum með þetta tölvupóstfang á openstreetmap.org"
|
||||
hopefully_you: "Einhver (vonandi þú) hefur beðið um að endurstilla lykilorðið á reikningnum með þetta netfang á openstreetmap.org"
|
||||
click_the_link: "Ef þú óskaðir eftir þessari endurstillingu fylgdu tenglinum hér fyrir neðan til að staðfesta breytinguna."
|
||||
reset_password:
|
||||
subject: "[OpenStreetMap] Lykilorði breytt"
|
||||
|
@ -506,14 +507,14 @@ is:
|
|||
from: "Frá"
|
||||
subject: "Titill"
|
||||
date: "Dagsetning"
|
||||
no_messages_yet: "You have no messages yet. Why not get in touch with some of the {{people_mapping_nearby_link}}?"
|
||||
people_mapping_nearby: "people mapping nearby"
|
||||
no_messages_yet: "Þú hefur ekki fengið nein skilboð. Hví ekki að hafa samband við einhverja {{people_mapping_nearby_link}}?"
|
||||
people_mapping_nearby: "nálæga notendur"
|
||||
message_summary:
|
||||
unread_button: "Merkja sem ólesin"
|
||||
read_button: "Merkja sem lesin"
|
||||
reply_button: "Svara"
|
||||
new:
|
||||
title: "Send message"
|
||||
title: "Senda skilaboð"
|
||||
send_message_to: "Senda skilaboð til {{name}}"
|
||||
subject: "Titill"
|
||||
body: "Texti"
|
||||
|
@ -588,15 +589,20 @@ is:
|
|||
upload_trace: "Upphala GPS feril"
|
||||
trace_uploaded: "Búið er að hlaða upp GPS ferlinum og bíður hann núna eftir því að vera settur inn í gagnagrunninn, sem gerist yfirleitt innan stundar. Póstur verður sendur á netfangið þitt þegar því er lokið."
|
||||
edit:
|
||||
filename: "Filename:"
|
||||
uploaded_at: "Uploaded at:"
|
||||
points: "Points:"
|
||||
start_coord: "Start coordinate:"
|
||||
edit: "edit"
|
||||
owner: "Owner:"
|
||||
title: "Breyti ferlinum {{name}}"
|
||||
heading: "Breyti ferlinum {{name}}"
|
||||
filename: "Skráanafn:"
|
||||
download: "niðurhala"
|
||||
uploaded_at: "Hlaðið upp:"
|
||||
points: "Punktar:"
|
||||
start_coord: "Byrjunarhnit:"
|
||||
map: "kort"
|
||||
edit: "breyta"
|
||||
owner: "Eigandi:"
|
||||
description: "Lýsing:"
|
||||
tags: "Tögg:"
|
||||
save_button: "Save Changes"
|
||||
editing_trace: "Breyti ferlinum {{name}}"
|
||||
save_button: "Vista breytingar"
|
||||
no_such_user:
|
||||
title: "Notandi ekki til"
|
||||
heading: "Notandinn {{user}} er ekki til"
|
||||
|
@ -606,6 +612,8 @@ is:
|
|||
description: "Lýsing"
|
||||
tags: "Tögg"
|
||||
public: "Sjáanleg öðrum?"
|
||||
public_help: "Hvað þýðir þetta?"
|
||||
public_help_url: "http://wiki.openstreetmap.org/wiki/Visibility_of_GPS_traces"
|
||||
upload_button: "Upphala"
|
||||
help: "Hjálp"
|
||||
help_url: "http://wiki.openstreetmap.org/wiki/Upload"
|
||||
|
@ -617,22 +625,23 @@ is:
|
|||
trace_optionals:
|
||||
tags: "Tögg"
|
||||
view:
|
||||
title: "Skoða ferilinn {{name}}"
|
||||
heading: "Skoða ferilinn {{name}}"
|
||||
pending: "Í BIÐ"
|
||||
filename: "Skráarnafn:"
|
||||
download: "niðurhala"
|
||||
uploaded: "Hlaðið upp:"
|
||||
points: "Points:"
|
||||
points: "Punktar:"
|
||||
start_coordinates: "Byrjunarhnit:"
|
||||
map: "kort"
|
||||
edit: "breyta"
|
||||
owner: "Eigandi:"
|
||||
description: "Lýsing:"
|
||||
tags: "Tögg"
|
||||
none: "None"
|
||||
none: "engin"
|
||||
make_public: "Gera þennan feril sjáanlegan öðrum til frambúðar"
|
||||
edit_track: "Breyta"
|
||||
delete_track: "Eyða"
|
||||
viewing_trace: "Skoða ferilinn {{name}}"
|
||||
trace_not_found: "Þessi ferill fannst ekki!"
|
||||
trace_paging_nav:
|
||||
showing: "Sýni síðu"
|
||||
|
@ -660,13 +669,28 @@ is:
|
|||
scheduled_for_deletion: "Þessum feril verður eitt"
|
||||
make_public:
|
||||
made_public: "Ferilinn var gerður sjáanlegur"
|
||||
oauth:
|
||||
client_application:
|
||||
request_access: "The application {{app_name}} is requesting access to your account. Please check whether you would like the application to have the following capabilities. You may choose as many or as few as you like."
|
||||
allow_to: "Allow the client application to:"
|
||||
allow_read_prefs: "read your user preferences."
|
||||
allow_write_prefs: "modify your user preferences."
|
||||
allow_write_diary: "create diary entries, comments and make friends."
|
||||
allow_write_api: "modify the map."
|
||||
allow_read_gpx: "read your private GPS traces."
|
||||
allow_write_gpx: "upload GPS traces."
|
||||
token:
|
||||
none: "You have not authorised any clients to act on your behalf. You do not have to do anything now to authorise them, as they will ask for authorisation when they need it. After that time you can return here to revoke those permissions if you do not want the clients to have your authorisation any more."
|
||||
application: "Application"
|
||||
issued: "Issued"
|
||||
revoke: "Revoke!"
|
||||
user:
|
||||
login:
|
||||
title: "Innskrá"
|
||||
heading: "Innskrá"
|
||||
please login: "Vinsamlegast innskráðu þig eða {{create_user_link}}."
|
||||
create_account: "stofnaðu aðgang"
|
||||
email or username: "Tölvupóstfang eða notandanafn: "
|
||||
email or username: "Netfang eða notandanafn: "
|
||||
password: "Lykilorð: "
|
||||
lost password link: "Gleymt lykilorð?"
|
||||
login_button: "Innskrá"
|
||||
|
@ -675,10 +699,10 @@ is:
|
|||
lost_password:
|
||||
title: "gleymt lykilorð"
|
||||
heading: "Gleymt lykilorð?"
|
||||
email address: "Tölvupóstfang:"
|
||||
new password button: "Senda nýtt lykilorð með tölvupósti"
|
||||
email address: "Netfang:"
|
||||
new password button: "Senda nýtt lykilorð á netfangið þitt"
|
||||
notice email on way: "Nýtt lykilorð er á leiðinni í innhólfið þitt."
|
||||
notice email cannot find: "Þetta tölvupóstfang fannst ekki."
|
||||
notice email cannot find: "Þetta netfang fannst ekki."
|
||||
reset_password:
|
||||
title: "lykilorð endurstillt"
|
||||
flash changed check mail: "Nýtt lykilorð hefur verið búið til fyrir þig og sent til þín í pósti"
|
||||
|
@ -686,13 +710,13 @@ is:
|
|||
new:
|
||||
title: "Nýskrá"
|
||||
heading: "Nýskrá"
|
||||
no_auto_account_create: "Unfortunately we are not currently able to create an account for you automatically."
|
||||
contact_webmaster: 'Please contact the <a href="mailto:webmaster@openstreetmap.org">webmaster</a> to arrange for an account to be created - we will try and deal with the request as quickly as possible. '
|
||||
fill_form: "Filltu út þetta form og við munum senda þér tölvupóst svo þú getir virkjað reikninginn þinn."
|
||||
no_auto_account_create: "Því miður getum við eki búið til reikning fyrir þig sjálfkrafa."
|
||||
contact_webmaster: 'Hafðu samband við <a href="mailto:webmaster@openstreetmap.org">vefstjóra</a> til að fá reikning búinn til.'
|
||||
fill_form: "Filltu út þetta form og við munum senda þér póst svo þú getir virkjað reikninginn þinn."
|
||||
license_agreement: 'Með því að búa til reikning samþykkiru að öll framlög þín til verkefnisins falli undir <a href="http://creativecommons.org/licenses/by-sa/2.0/">Creative Commons Attribution-Share Alike (BY-SA)</a> leyfið.'
|
||||
email address: "Tölvupóstfang: "
|
||||
confirm email address: "Staðfestu tölvupóstfang: "
|
||||
not displayed publicly: 'Ekki sýnt opinberlega (sjá <a href="http://wiki.openstreetmap.org/wiki/Privacy_Policy" title="Meðferð persónuupplýsinga, þ.á.m. tölvupóstfanga">meðferð persónuupplýsinga</a>)'
|
||||
email address: "Netfang: "
|
||||
confirm email address: "Staðfestu netfang: "
|
||||
not displayed publicly: 'Ekki sýnt opinberlega (sjá <a href="http://wiki.openstreetmap.org/wiki/Privacy_Policy" title="Meðferð persónuupplýsinga, þ.á.m. netfanga">meðferð persónuupplýsinga</a>)'
|
||||
display name: "Sýnilegt nafn: "
|
||||
password: "Lykilorð: "
|
||||
confirm password: "Staðfestu lykilorðið: "
|
||||
|
@ -715,7 +739,7 @@ is:
|
|||
remove as friend: fjarlægja sem vin
|
||||
add as friend: bæta við sem vin
|
||||
mapper since: "Notandi síðan: "
|
||||
ago: "({{time_in_words_ago}} ago)"
|
||||
ago: "({{time_in_words_ago}} síðan)"
|
||||
user image heading: Notandamynd
|
||||
delete image: Eyða myndinni
|
||||
upload an image: Upphala mynd
|
||||
|
@ -732,8 +756,8 @@ is:
|
|||
no nearby users: "Engir notendur hafa stillt staðsetningu sína nálægt þér."
|
||||
change your settings: "breyttu stillingunum þínum"
|
||||
friend_map:
|
||||
your location: Your location
|
||||
nearby mapper: "Nearby mapper: "
|
||||
your location: Þín staðsetning
|
||||
nearby mapper: "Nálægur notandi: "
|
||||
account:
|
||||
title: "Stillingar"
|
||||
my settings: Mínar stillingar
|
||||
|
@ -757,6 +781,12 @@ is:
|
|||
return to profile: "Aftur á mína síðu"
|
||||
flash update success confirm needed: "User information updated successfully. Check your email for a note to confirm your new email address."
|
||||
flash update success: "Stillingarnar þínar voru uppfærðar."
|
||||
my apps: "My client applications"
|
||||
developers: "Application Developers"
|
||||
dev_intro: "Have you written an application which you would like to register to make {{link}} requests to the OpenStreetMap server?"
|
||||
register_app: "Register your application"
|
||||
apps_registered: "You have the following client applications registered:"
|
||||
register_another_app: "Register another application"
|
||||
confirm:
|
||||
heading: "Staðfesta notanda"
|
||||
press confirm button: "Hér getur þú staðfest að þú viljir búa til notanda.."
|
||||
|
@ -764,13 +794,13 @@ is:
|
|||
success: "Notandinn þinn hefur verið staðfestur."
|
||||
failure: "Notandi hefur þegar verið staðfestur með þessum lykli."
|
||||
confirm_email:
|
||||
heading: "Staðfesta breytingu á tölvupóstfangi"
|
||||
press confirm button: "Hér getur þú staðfest breytingu á tölvupóstfangi."
|
||||
heading: "Staðfesta breytingu á netfangi"
|
||||
press confirm button: "Hér getur þú staðfest breytingu á netfangi."
|
||||
button: "Staðfesta"
|
||||
success: "Tölvupóstfangið þitt hefur verið staðfest."
|
||||
failure: "Tölvupóstfanga hefur þegar verið staðfest með þessum lykli."
|
||||
success: "Netfangið þitt hefur verið staðfest."
|
||||
failure: "Netfang hefur þegar verið staðfest með þessum lykli."
|
||||
set_home:
|
||||
flash success: "Home location saved successfully"
|
||||
flash success: "Staðsetning þín hefur verið stillt"
|
||||
go_public:
|
||||
flash success: "All your edits are now public, and you are now allowed to edit."
|
||||
make_friend:
|
||||
|
|
|
@ -486,7 +486,7 @@ it:
|
|||
make_public: "Rendi pubblico questo tracciato in modo permanente"
|
||||
edit_track: "Modifica questo tracciato"
|
||||
delete_track: "Elimina questo tracciato"
|
||||
viewing_trace: "Visualizzazione del tracciato {{name}}"
|
||||
heading: "Visualizzazione del tracciato {{name}}"
|
||||
trace_not_found: "Tracciato non trovato!"
|
||||
trace_paging_nav:
|
||||
showing: "Visualizzata la pagina"
|
||||
|
|
770
config/locales/ja.yml
Normal file
|
@ -0,0 +1,770 @@
|
|||
ja:
|
||||
html:
|
||||
dir: ltr
|
||||
activerecord:
|
||||
# Translates all the model names, which is used in error handling on the web site
|
||||
models:
|
||||
acl: "アクセス制御リスト"
|
||||
changeset: "変更セット"
|
||||
changeset_tag: "変更セットタグ"
|
||||
country: "国"
|
||||
diary_comment: "日記コメント"
|
||||
diary_entry: "日記エントリー"
|
||||
friend: "友達"
|
||||
language: "言語"
|
||||
message: "メッセージ"
|
||||
node: "ノード"
|
||||
node_tag: "ノードタグ"
|
||||
notifier: "Notifier"
|
||||
old_node: "古いノード"
|
||||
old_node_tag: "古いノードタグ"
|
||||
old_relation: "古い関連"
|
||||
old_relation_member: "古い関連のメンバー"
|
||||
old_relation_tag: "古い関連のタグ"
|
||||
old_way: "古いウエイ"
|
||||
old_way_node: "古いウエイのノード"
|
||||
old_way_tag: "古いウエイのタグ"
|
||||
relation: "関連"
|
||||
relation_member: "関連のメンバー"
|
||||
relation_tag: "関連のタグ"
|
||||
session: "セッション"
|
||||
trace: "トレース"
|
||||
tracepoint: "トレースポイント"
|
||||
tracetag: "トレースタグ"
|
||||
user: "ユーザ"
|
||||
user_preference: "ユーザ設定"
|
||||
user_token: "ユーザトークン"
|
||||
way: "ウエイ"
|
||||
way_node: "ウエイのノード"
|
||||
way_tag: "ウエイのタグ"
|
||||
# Translates all the model attributes, which is used in error handling on the web site
|
||||
# Only the ones that are used on the web site are translated at the moment
|
||||
attributes:
|
||||
diary_comment:
|
||||
body: "本文"
|
||||
diary_entry:
|
||||
user: "ユーザ"
|
||||
title: "タイトル"
|
||||
latitude: "緯度"
|
||||
longitude: "経度"
|
||||
language: "言語"
|
||||
friend:
|
||||
user: "ユーザ"
|
||||
friend: "友達"
|
||||
trace:
|
||||
user: "ユーザ"
|
||||
visible: "表示"
|
||||
name: "名前"
|
||||
size: "サイズ"
|
||||
latitude: "緯度"
|
||||
longitude: "経度"
|
||||
public: "公開"
|
||||
description: "説明"
|
||||
message:
|
||||
sender: "送信者"
|
||||
title: "タイトル"
|
||||
body: "本文"
|
||||
recipient: "受信者"
|
||||
user:
|
||||
email: "電子メール"
|
||||
active: "アクティブ"
|
||||
display_name: "表示名"
|
||||
description: "説明"
|
||||
languages: "言語"
|
||||
pass_crypt: "パスワード"
|
||||
map:
|
||||
view: "表示"
|
||||
edit: "編集"
|
||||
coordinates: "座標:"
|
||||
browse:
|
||||
changeset:
|
||||
title: "変更セット"
|
||||
changeset: "変更セット:"
|
||||
download: "ダウンロード{{changeset_xml_link}} or {{osmchange_xml_link}}"
|
||||
changesetxml: "変更セットXML"
|
||||
osmchangexml: "osm変更XML"
|
||||
changeset_details:
|
||||
created_at: "作成日時:"
|
||||
closed_at: "完了日時:"
|
||||
belongs_to: "ユーザ:"
|
||||
bounding_box: "境界囲み:"
|
||||
no_bounding_box: "この変更セットに境界囲みは格納しない。"
|
||||
show_area_box: "領域範囲表示"
|
||||
box: "box"
|
||||
has_nodes: "以下の {{count}} ノードで構成されています:"
|
||||
has_ways: "以下の {{count}} ウェイで構成されています:"
|
||||
has_relations: "Has the following {{count}} relations:"
|
||||
common_details:
|
||||
edited_at: "編集日:"
|
||||
edited_by: "編集者:"
|
||||
version: "バージョン:"
|
||||
in_changeset: "変更セット:"
|
||||
containing_relation:
|
||||
relation: "関連 {{relation_name}}"
|
||||
relation_as: "(as {{relation_role}})"
|
||||
map:
|
||||
loading: "ロード中..."
|
||||
deleted: "削除済み"
|
||||
view_larger_map: "大きなマップを表示"
|
||||
node_details:
|
||||
coordinates: "座標: "
|
||||
part_of: "Part of:"
|
||||
node_history:
|
||||
node_history: "ノードの履歴"
|
||||
download: "{{download_xml_link}} または {{view_details_link}}"
|
||||
download_xml: "XMLダウンロード"
|
||||
view_details: "詳細表示"
|
||||
node:
|
||||
node: "ノード"
|
||||
node_title: "ノード: {{node_name}}"
|
||||
download: "{{download_xml_link}} or {{view_history_link}}"
|
||||
download_xml: "XMLをダウンロード"
|
||||
view_history: "履歴表示"
|
||||
not_found:
|
||||
sorry: "ID {{id}} の {{type}} は見つかりません。"
|
||||
type:
|
||||
node: "ノード"
|
||||
way: "ウエイ"
|
||||
relation: "関連"
|
||||
paging_nav:
|
||||
showing_page: "ページ表示"
|
||||
of: "of"
|
||||
relation_details:
|
||||
members: "メンバー:"
|
||||
part_of: "Part of:"
|
||||
relation_history:
|
||||
relation_history: "関連の履歴"
|
||||
relation_history_title: "関連の履歴: {{relation_name}}"
|
||||
relation_member:
|
||||
as: "as"
|
||||
relation:
|
||||
relation: "関連"
|
||||
relation_title: "関連: {{relation_name}}"
|
||||
download: "{{download_xml_link}} または {{view_history_link}}"
|
||||
download_xml: "XMLのダウンロード"
|
||||
view_history: "履歴表示"
|
||||
start:
|
||||
view_data: "現在のマップのデータを表示"
|
||||
manually_select: "違うエリアを手動で選択"
|
||||
start_rjs:
|
||||
data_layer_name: "データ"
|
||||
data_frame_title: "データ"
|
||||
zoom_or_select: "ズームアップするか、表示する領域を選択"
|
||||
drag_a_box: "ボックスをマップにドラッグして領域を選択"
|
||||
manually_select: "違う領域を手動で選択"
|
||||
loaded_an_area_with_num_features: "[[num_features]]個の地物を含む領域を読み込みました。一般に、一部のブラウザーでは、この量のデータ表示をうまく処理できないことがあるようです。通常、ブラウザは一度に100未満の地物を表示させるとよいようです: 何かすると、ブラウザが遅くなったり、反応しなくなったりします。それでも、このデータを表示したいならば、以下のボタンをクリックしてください。"
|
||||
load_data: "データの読み込み"
|
||||
unable_to_load_size: "読み込みできません: 境界囲みのサイズ [[bbox_size]]が大きすぎます。({{max_bbox_size}}より小さい必要があります)"
|
||||
loading: "読み込み中..."
|
||||
show_history: "履歴表示"
|
||||
wait: "お待ちください..."
|
||||
history_for_feature: "[[feature]]の履歴"
|
||||
details: "詳細"
|
||||
private_user: "private user"
|
||||
edited_by_user_at_timestamp: "[[user]]による[[timestamp]]時点の編集"
|
||||
object_list:
|
||||
heading: "オブジェクト一覧"
|
||||
back: "オブジェクト一覧表示"
|
||||
type:
|
||||
node: "ノード"
|
||||
way: "ウエイ"
|
||||
# There's no 'relation' type because it isn't represented in OpenLayers
|
||||
api: "APIからこの領域を取り込み"
|
||||
details: "詳細"
|
||||
selected:
|
||||
type:
|
||||
node: "ノード [[id]]"
|
||||
way: "ウエイ [[id]]"
|
||||
# There's no 'relation' type because it isn't represented in OpenLayers
|
||||
history:
|
||||
type:
|
||||
node: "ノード [[id]]"
|
||||
way: "ウエイ [[id]]"
|
||||
# There's no 'relation' type because it isn't represented in OpenLayers
|
||||
tag_details:
|
||||
tags: "タグ:"
|
||||
way_details:
|
||||
nodes: "ノード:"
|
||||
part_of: "変更セット:"
|
||||
also_part_of:
|
||||
one: "ウェイ {{related_ways}} の一部です"
|
||||
other: "ウェイ {{related_ways}} の一部です"
|
||||
way_history:
|
||||
way_history: "ウエイの履歴"
|
||||
way_history_title: "ウエイの履歴: {{way_name}}"
|
||||
download: "{{download_xml_link}} または {{view_details_link}}"
|
||||
download_xml: "XMLダウンロード"
|
||||
view_details: "詳細表示"
|
||||
way:
|
||||
way: "ウエイ"
|
||||
way_title: "ウエイ: {{way_name}}"
|
||||
download: "{{download_xml_link}} または {{view_history_link}}"
|
||||
download_xml: "XMLダウンロード"
|
||||
view_history: "履歴表示"
|
||||
changeset:
|
||||
changeset_paging_nav:
|
||||
showing_page: "ページ表示"
|
||||
of: "of"
|
||||
changeset:
|
||||
still_editing: "(まだ編集中です)"
|
||||
anonymous: "匿名"
|
||||
no_comment: "(コメントがありません)"
|
||||
no_edits: "(編集がありません)"
|
||||
show_area_box: "領域境界を表示"
|
||||
big_area: "(大)"
|
||||
view_changeset_details: "変更セットの詳細表示"
|
||||
more: "詳細"
|
||||
changesets:
|
||||
id: "ID"
|
||||
saved_at: "保存日時"
|
||||
user: "ユーザ"
|
||||
comment: "コメント"
|
||||
area: "領域"
|
||||
list_bbox:
|
||||
history: "履歴"
|
||||
changesets_within_the_area: "領域内の変更セット:"
|
||||
show_area_box: "領域囲みの表示"
|
||||
no_changesets: "変更セットなし"
|
||||
all_changes_everywhere: "全体での変更は {{recent_changes_link}} を参照してください。"
|
||||
recent_changes: "最新の変更"
|
||||
no_area_specified: "領域の指定なし"
|
||||
first_use_view: "まず {{view_tab_link}} を使って詳細を見たい範囲をもっと拡大してから履歴タブをクリックしてください。"
|
||||
view_the_map: "地図表示"
|
||||
view_tab: "タブ表示"
|
||||
alternatively_view: "あるいは、全ての {{recent_changes_link}}を表示"
|
||||
list:
|
||||
recent_changes: "最新の変更"
|
||||
recently_edited_changesets: "最近編集された変更セット:"
|
||||
for_more_changesets: "さらに変更セットを観るには、ユーザを選択して、そのユーザの編集履歴をみるか、場所を指定して編集の'履歴'をみるようにしてください。"
|
||||
list_user:
|
||||
edits_by_username: "{{username_link}} による変更"
|
||||
no_visible_edits_by: "{{name}} による編集はありません"
|
||||
for_all_changes: "全てのユーザによる変更は {{recent_changes_link}} を参照してください"
|
||||
recent_changes: "最近の変更"
|
||||
diary_entry:
|
||||
new:
|
||||
title: "新しい日記の入力"
|
||||
list:
|
||||
title: "ユーザの日記"
|
||||
user_title: "{{user}} の日記"
|
||||
in_language_title: " {{language}} での日記入力"
|
||||
new: "新規日記入力"
|
||||
new_title: "あなたの日記に新規項目を作成"
|
||||
no_entries: "日記の項目がありません"
|
||||
recent_entries: "最新の日記項目: "
|
||||
older_entries: "古い項目"
|
||||
newer_entries: "新しい項目"
|
||||
edit:
|
||||
title: "日記の編集"
|
||||
subject: "タイトル: "
|
||||
body: "本文: "
|
||||
language: "言語: "
|
||||
location: "地域: "
|
||||
latitude: "緯度: "
|
||||
longitude: "経度: "
|
||||
use_map_link: "地図で指定する"
|
||||
save_button: "保存"
|
||||
marker_text: "日記のロケーション"
|
||||
view:
|
||||
title: "ユーザ日記 | {{user}}"
|
||||
user_title: "{{user}} の日記"
|
||||
leave_a_comment: "コメントを書いてください"
|
||||
login_to_leave_a_comment: "コメントを書くには{{login_link}}してください。"
|
||||
login: "ログイン"
|
||||
save_button: "保存"
|
||||
no_such_entry:
|
||||
heading: "ID {{id}} にコメントはまだありません。"
|
||||
body: "ID が {{id}} のコメントや日記は存在しません。URLにスペルミスが無いか確認をしてください。もしくはリンク元が間違ってます。"
|
||||
no_such_user:
|
||||
title: "ユーザが存在しません。"
|
||||
heading: "{{user}} というユーザは存在しません。"
|
||||
body: "{{user}} という名前のユーザは存在しません。スペルを確認してください。もしくはリンク元が間違っています。"
|
||||
diary_entry:
|
||||
posted_by: "{{link_user}} による {{created}}({{language_link}})の投稿。"
|
||||
comment_link: "このエントリへのコメント"
|
||||
reply_link: Reply to this entry
|
||||
comment_count:
|
||||
one: "1コメント"
|
||||
other: "{{count}} コメント"
|
||||
edit_link: "この記事の編集"
|
||||
diary_comment:
|
||||
comment_from: "{{comment_created_at}} {{link_user}} からのコメント "
|
||||
export:
|
||||
start:
|
||||
area_to_export: "エクスポートする範囲"
|
||||
manually_select: "別の領域を指定する"
|
||||
format_to_export: "エクスポートするファイル形式"
|
||||
osm_xml_data: "OSM XMLデータ"
|
||||
mapnik_image: "Mapnik 画像"
|
||||
osmarender_image: "Osmarender 画像"
|
||||
embeddable_html: "埋め込みHTML"
|
||||
licence: "ライセンス"
|
||||
export_details: 'OpenStreetMap のデータは <a href="http://creativecommons.org/licenses/by-sa/2.0/">クリエイティブコモンズ 表示-継承 2.0 (Creative Commons Attribution-ShareAlike 2.0)</a>.によって提供されています。'
|
||||
options: "オプション"
|
||||
format: "ファイル形式"
|
||||
scale: "縮尺"
|
||||
max: "最大"
|
||||
image_size: "画像サイズ"
|
||||
zoom: "ズーム"
|
||||
add_marker: "地図にマーカーを追加する"
|
||||
latitude: "緯度:"
|
||||
longitude: "経度:"
|
||||
output: "出力"
|
||||
paste_html: "以下の HTML をあなたのサイトに埋め込んでください"
|
||||
export_button: "出力"
|
||||
start_rjs:
|
||||
export: "出力"
|
||||
drag_a_box: "指定したい範囲でマウスをドラッグしてください。"
|
||||
manually_select: "別の範囲を指定する"
|
||||
click_add_marker: "マーカーを追加する位置をクリックしてください。"
|
||||
change_marker: "マーカーの位置を変更する"
|
||||
add_marker: "マーカーを地図に追加する"
|
||||
view_larger_map: "大きな地図を表示..."
|
||||
geocoder:
|
||||
results:
|
||||
results: "結果"
|
||||
type_from_source: "{{source_link}}からの{{type}}"
|
||||
no_results: "見つかりませんでした。"
|
||||
layouts:
|
||||
project_name:
|
||||
# in <title>
|
||||
title: OpenStreetMap
|
||||
# in <h1>
|
||||
h1: OpenStreetMap
|
||||
logo:
|
||||
alt_text: "OpenStreetMap ロゴ"
|
||||
welcome_user: "{{user_link}} さん、ようこそ。"
|
||||
welcome_user_link_tooltip: "あなたの個人ページ"
|
||||
home: "ホーム"
|
||||
home_tooltip: "ホームへ戻る"
|
||||
inbox: "受信箱 ({{count}})"
|
||||
inbox_tooltip:
|
||||
zero: "受信箱に未読メッセージはありません"
|
||||
one: "受信箱には1通の未読メッセージがあります"
|
||||
other: "受信箱には {{count}} 通の未読メッセージがあります"
|
||||
logout: "ログアウト"
|
||||
logout_tooltip: "ログアウト"
|
||||
log_in: "ログイン"
|
||||
log_in_tooltip: "自分のアカウントでログインする"
|
||||
sign_up: "登録"
|
||||
sign_up_tooltip: "編集できるアカウントを作成する"
|
||||
view: "閲覧"
|
||||
view_tooltip: "地図を見る"
|
||||
edit: "編集"
|
||||
edit_tooltip: "地図を編集する"
|
||||
history: "履歴"
|
||||
history_tooltip: "変更セットの履歴"
|
||||
export: "エクスポート"
|
||||
export_tooltip: "地図データのエクスポート"
|
||||
gps_traces: "GPS トレース"
|
||||
gps_traces_tooltip: "トレースの管理"
|
||||
user_diaries: "ユーザの日記"
|
||||
user_diaries_tooltip: "ユーザの日記を見る"
|
||||
tag_line: The Free Wiki World Map
|
||||
intro_1: "OpenStreetMap は自由に編集できる世界地図です。あなたのような人々が作りました。"
|
||||
intro_2: "OpenStreetMap は地球上の誰でも、どこからでもこの共同作業の結果である地図データを編集、閲覧することを可能にしています。"
|
||||
intro_3: "OpenStreetMap は {{ucl}} と {{bytemark}}.によってホスティングされています。"
|
||||
intro_3_ucl: "ユニヴァーシティ・カレッジ・ロンドン (UCL) VR センター"
|
||||
intro_3_bytemark: "bytemark"
|
||||
osm_offline: "OpenStreetMap のデータベースはメンテナンスのため一時的に停止しています。"
|
||||
osm_read_only: "OpenStreetMap のデータベースはメンテナンスのため一時的に読み込み専用モードになっています。"
|
||||
donate: "Support OpenStreetMap by {{link}} to the Hardware Upgrade Fund."
|
||||
donate_link_text: "寄付"
|
||||
help_wiki: "ヘルプと Wiki"
|
||||
help_wiki_tooltip: "プロジェクトのヘルプと Wiki"
|
||||
help_wiki_url: "http://wiki.openstreetmap.org"
|
||||
news_blog: "ニュースブログ"
|
||||
news_blog_tooltip: "OpenStreetMap に関するニュースブログ。free geographical data, etc."
|
||||
shop: 店
|
||||
shop_tooltip: "OpenStreetMap ブランドの店舗"
|
||||
shop_url: http://wiki.openstreetmap.org/wiki/Merchandise
|
||||
sotm: '2009 OpenStreetMapカンファレンスへ行こう! The State of the Map,アムステルダムにて7月10-12日開催!'
|
||||
alt_donation: "寄付"
|
||||
notifier:
|
||||
# メール関係は、文字コードの問題があるため、翻訳には慎重になる必要あり
|
||||
diary_comment_notification:
|
||||
# subjectのエンコーディングはISO-2022-JP/MIME/Q-ENCODINGだが、コード変換される?
|
||||
subject: "[OpenStreetMap] {{user}} commented on your diary entry"
|
||||
#bodyのエンコーディングはUTF-8でOKだが、MIME設定はよいか?
|
||||
banner1: "* Please do not reply to this email. *"
|
||||
banner2: "* Use the OpenStreetMap web site to reply. *"
|
||||
hi: "Hi {{to_user}},"
|
||||
header: "{{from_user}} has commented on your recent OpenStreetMap diary entry with the subject {{subject}}:"
|
||||
footer: "You can also read the comment at {{readurl}} and you can comment at {{commenturl}} or reply at {{replyurl}}"
|
||||
message_notification:
|
||||
subject: "[OpenStreetMap] {{user}} sent you a new message"
|
||||
banner1: "* Please do not reply to this email. *"
|
||||
banner2: "* Use the OpenStreetMap web site to reply. *"
|
||||
hi: "Hi {{to_user}},"
|
||||
header: "{{from_user}} has sent you a message through OpenStreetMap with the subject {{subject}}:"
|
||||
footer1: "You can also read the message at {{readurl}}"
|
||||
footer2: "and you can reply at {{replyurl}}"
|
||||
friend_notification:
|
||||
subject: "[OpenStreetMap] {{user}} added you as a friend"
|
||||
had_added_you: "{{user}} has added you as a friend on OpenStreetMap."
|
||||
see_their_profile: "You can see their profile at {{userurl}} and add them as a friend too if you wish."
|
||||
gpx_notification:
|
||||
greeting: "Hi,"
|
||||
your_gpx_file: "It looks like your GPX file"
|
||||
with_description: "with the description"
|
||||
and_the_tags: "and the following tags:"
|
||||
and_no_tags: "and no tags."
|
||||
failure:
|
||||
subject: "[OpenStreetMap] GPX Import failure"
|
||||
failed_to_import: "failed to import. Here's the error:"
|
||||
more_info_1: "More information about GPX import failures and how to avoid"
|
||||
more_info_2: "them can be found at:"
|
||||
import_failures_url: "http://wiki.openstreetmap.org/wiki/GPX_Import_Failures"
|
||||
success:
|
||||
subject: "[OpenStreetMap] GPX Import success"
|
||||
loaded_successfully: |
|
||||
loaded successfully with {{trace_points}} out of a possible
|
||||
{{possible_points}} points.
|
||||
signup_confirm:
|
||||
subject: "[OpenStreetMap] Confirm your email address"
|
||||
signup_confirm_plain:
|
||||
greeting: "Hi there!"
|
||||
hopefully_you: "Someone (hopefully you) would like to create an account over at"
|
||||
# next two translations run-on : please word wrap appropriately
|
||||
click_the_link_1: "If this is you, welcome! Please click the link below to confirm your"
|
||||
click_the_link_2: "account and read on for more information about OpenStreetMap."
|
||||
introductory_video: "You can watch an introductory video to OpenStreetMap here:"
|
||||
more_videos: "There are more videos here:"
|
||||
the_wiki: "Get reading about OpenStreetMap on the wiki:"
|
||||
the_wiki_url: "http://wiki.openstreetmap.org/wiki/Beginners%27_Guide"
|
||||
opengeodata: "OpenGeoData.org is OpenStreetMap's blog, and it has podcasts too:"
|
||||
wiki_signup: "You may also want to sign up to the OpenStreetMap wiki at:"
|
||||
wiki_signup_url: "http://wiki.openstreetmap.org/index.php?title=Special:Userlogin&type=signup&returnto=Main_Page"
|
||||
# next four translations are in pairs : please word wrap appropriately
|
||||
user_wiki_1: "It is recommended that you create a user wiki page, which includes"
|
||||
user_wiki_2: "category tags noting where you are, such as [[Category:Users_in_London]]."
|
||||
current_user_1: "A list of current users in categories, based on where in the world"
|
||||
current_user_2: "they are, is available from:"
|
||||
signup_confirm_html:
|
||||
greeting: "Hi there!"
|
||||
hopefully_you: "Someone (hopefully you) would like to create an account over at"
|
||||
click_the_link: "If this is you, welcome! Please click the link below to confirm that account and read on for more information about OpenStreetMap"
|
||||
introductory_video: "You can watch an {{introductory_video_link}}."
|
||||
video_to_openstreetmap: "introductory video to OpenStreetMap"
|
||||
more_videos: "There are {{more_videos_link}}."
|
||||
more_videos_here: "more videos here"
|
||||
get_reading: 'Get reading about OpenStreetMap <a href="http://wiki.openstreetmap.org/wiki/Beginners%27_Guide">on the wiki</p> or <a href="http://www.opengeodata.org/">the opengeodata blog</a> which has <a href="http://www.opengeodata.org/?cat=13">podcasts to listen to</a> also!'
|
||||
wiki_signup: 'You may also want to <a href="http://wiki.openstreetmap.org/index.php?title=Special:Userlogin&type=signup&returnto=Main_Page">sign up to the OpenStreetMap wiki</a>.'
|
||||
user_wiki_page: 'It is recommended that you create a user wiki page, which includes category tags noting where you are, such as <a href="http://wiki.openstreetmap.org/wiki/Category:Users_in_London">[[Category:Users_in_London]]</a>.'
|
||||
current_user: 'A list of current users in categories, based on where in the world they are, is available from <a href="http://wiki.openstreetmap.org/wiki/Category:Users_by_geographical_region">Category:Users_by_geographical_region</a>.'
|
||||
email_confirm:
|
||||
subject: "[OpenStreetMap] Confirm your email address"
|
||||
email_confirm_plain:
|
||||
greeting: "Hi,"
|
||||
hopefully_you_1: "Someone (hopefully you) would like to change their email address over at"
|
||||
hopefully_you_2: "{{server_url}} to {{new_address}}."
|
||||
click_the_link: "If this is you, please click the link below to confirm the change."
|
||||
email_confirm_html:
|
||||
greeting: "Hi,"
|
||||
hopefully_you: "Someone (hopefully you) would like to change their email address over at {{server_url}} to {{new_address}}."
|
||||
click_the_link: "If this is you, please click the link below to confirm the change."
|
||||
lost_password:
|
||||
subject: "[OpenStreetMap] Password reset request"
|
||||
lost_password_plain:
|
||||
greeting: "Hi,"
|
||||
hopefully_you_1: "Someone (possibly you) has asked for the password to be reset on this"
|
||||
hopefully_you_2: "email addresses openstreetmap.org account."
|
||||
click_the_link: "If this is you, please click the link below to reset your password."
|
||||
lost_password_html:
|
||||
greeting: "Hi,"
|
||||
hopefully_you: "Someone (possibly you) has asked for the password to be reset on this email address's openstreetmap.org account."
|
||||
click_the_link: "If this is you, please click the link below to reset your password."
|
||||
reset_password:
|
||||
subject: "[OpenStreetMap] Password reset"
|
||||
reset_password_plain:
|
||||
greeting: "Hi,"
|
||||
reset: "Your password has been reset to {{new_password}}"
|
||||
reset_password_html:
|
||||
greeting: "Hi,"
|
||||
reset: "Your password has been reset to {{new_password}}"
|
||||
message:
|
||||
inbox:
|
||||
title: "受信箱"
|
||||
my_inbox: "自分の受信箱"
|
||||
outbox: "outbox"
|
||||
you_have: "You have {{new_count}} new messages and {{old_count}} old messages"
|
||||
from: "差出人"
|
||||
subject: "タイトル"
|
||||
date: "日付"
|
||||
no_messages_yet: "You have no messages yet. Why not get in touch with some of the {{people_mapping_nearby_link}}?"
|
||||
people_mapping_nearby: "近所でマッピングしている人々"
|
||||
message_summary:
|
||||
unread_button: "未読に設定"
|
||||
read_button: "既読に設定"
|
||||
reply_button: "返信"
|
||||
new:
|
||||
title: "メッセージの送信"
|
||||
send_message_to: "新しいメッセージを{{name}}に送信"
|
||||
subject: "タイトル"
|
||||
body: "本文"
|
||||
send_button: "送信"
|
||||
back_to_inbox: "受信箱に戻る"
|
||||
message_sent: "送信したメッセージ"
|
||||
no_such_user:
|
||||
title: "No such user or message"
|
||||
heading: "No such user or message"
|
||||
body: "Sorry there is no user or message with that name or id"
|
||||
outbox:
|
||||
title: "送信箱"
|
||||
my_inbox: "わたしの {{inbox_link}}"
|
||||
inbox: "受信箱"
|
||||
outbox: "送信箱"
|
||||
you_have_sent_messages: "{{sent_count}}この送信済みメッセージがあります"
|
||||
to: "宛先"
|
||||
subject: "タイトル"
|
||||
date: "日付"
|
||||
no_sent_messages: "送信したメッセージはまだありません。{{people_mapping_nearby_link}}とお近づきになってはいかがですか?"
|
||||
people_mapping_nearby: "近所でマッピングしている人々"
|
||||
read:
|
||||
title: "メッセージを読む"
|
||||
reading_your_messages: "メッセージを読む"
|
||||
from: "差出人"
|
||||
subject: "タイトル"
|
||||
date: "日付"
|
||||
reply_button: "返信"
|
||||
unread_button: "未読に設定"
|
||||
back_to_inbox: "受信箱に戻る"
|
||||
reading_your_sent_messages: "送信したメッセージを読む"
|
||||
to: "宛先"
|
||||
back_to_outbox: "送信箱に戻る"
|
||||
mark:
|
||||
as_read: "既読メッセージ"
|
||||
as_unread: "未読メッセージ"
|
||||
site:
|
||||
index:
|
||||
js_1: "javascriptをサポートしていないブラウザを使用しているか、javascriptを使用不可に設定しています。"
|
||||
js_2: "OpenStreetMapは、地図表示にjavascriptを使用しています。"
|
||||
js_3: 'javascriptを使えない場合は<a href="http://tah.openstreetmap.org/Browse/">Tiles@Homeの静的な地図ブラウザ</a>を試してはいかがですか。'
|
||||
permalink: Permalink
|
||||
license:
|
||||
notice: " {{project_name}}とその貢献者により、{{license_name}} ライセンスの元提供されています。"
|
||||
license_name: "Creative Commons Attribution-Share Alike 2.0"
|
||||
license_url: "http://creativecommons.org/licenses/by-sa/2.0/"
|
||||
project_name: "OpenStreetMapプロジェクト"
|
||||
project_url: "http://openstreetmap.org"
|
||||
edit:
|
||||
not_public: "あなたの編集結果を公開できません。"
|
||||
not_public_description: "You can no longer edit the map unless you do so. You can set your edits as public from your {{user_page}}."
|
||||
user_page_link: "ユーザページ"
|
||||
anon_edits: "({{link}})"
|
||||
anon_edits_link: "http://wiki.openstreetmap.org/wiki/Disabling_anonymous_edits"
|
||||
anon_edits_link_text: "Find out why this is the case."
|
||||
flash_player_required: 'OpenStreetMap FlashエディターのPotlatchを使うには、フラッシュ・プレーヤーが必要です。<a href="http://www.adobe.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash">Adobe.com</a>からFlash Playerをダウンロードできます。OpenStreetMapを編集するには、<a href="http://wiki.openstreetmap.org/wiki/Ja:Editing">他の方法</a>もあります'
|
||||
potlatch_unsaved_changes: "You have unsaved changes. (To save in Potlatch, you should deselect the current way or point, if editing in list mode, or click save if you have a save button.)"
|
||||
sidebar:
|
||||
search_results: "検索結果"
|
||||
close: "閉じる"
|
||||
search:
|
||||
search: "検索"
|
||||
where_am_i: "いまどこ?"
|
||||
submit_text: "行く"
|
||||
searching: "検索中..."
|
||||
search_help: "例: 'Alkmaar', 'Regent Street, Cambridge', 'CB2 5AQ', or 'post offices near Lünen' <a href='http://wiki.openstreetmap.org/wiki/Search'>他の例...</a>"
|
||||
#いずれ、wiki.openstreetmap.org/wiki/Ja:Searchを作成すること
|
||||
key:
|
||||
map_key: "凡例"
|
||||
map_key_tooltip: "この縮尺におけるmapnikレンダリングの凡例"
|
||||
trace:
|
||||
create:
|
||||
upload_trace: "GPS トレースのアップロード"
|
||||
trace_uploaded: "あなたの GPX ファイルはアップロードされませいた。データベースへの登録に暫く時間がかかります。通常この作業は30分ほどで終了し、終了をお知らせするメールをあなたに送信します。"
|
||||
edit:
|
||||
filename: "ファイル名:"
|
||||
uploaded_at: "アップロード日時:"
|
||||
points: "ポイント数:"
|
||||
start_coord: "開始座標:"
|
||||
edit: "編集"
|
||||
owner: "アップロードしたユーザ:"
|
||||
description: "詳細:"
|
||||
tags: "タグ:"
|
||||
save_button: "変更を保存する"
|
||||
no_such_user:
|
||||
title: "ユーザが存在しません"
|
||||
heading: "{{user}} というユーザは存在しません。"
|
||||
body: "{{user}}.という名前のユーザは存在しません。スペルをチェックしてください。もしくはリンク元が誤っています。"
|
||||
trace_form:
|
||||
upload_gpx: "アップロードするGPXファイル"
|
||||
description: "詳細"
|
||||
tags: "タグ"
|
||||
public: "公開?"
|
||||
upload_button: "アップロード"
|
||||
help: "ヘルプ"
|
||||
help_url: "http://wiki.openstreetmap.org/wiki/Upload"
|
||||
trace_header:
|
||||
see_just_your_traces: "あなたのトレースだけ見るか、トレースをアップロードする。"
|
||||
see_all_traces: "全てのトレースを見る"
|
||||
see_your_traces: "あなたのトレースを全て見る"
|
||||
traces_waiting: "あなたは {{count}} のトレースがアップロード待ちになっています。それらのアップロードが終了するまでお待ちください。他のユーザーのアップロードが制限されてしまいます。"
|
||||
trace_optionals:
|
||||
tags: "タグ(複数可)"
|
||||
view:
|
||||
pending: "アップロード中"
|
||||
filename: "ファイル名:"
|
||||
download: "ダウンロード"
|
||||
uploaded: "アップロード日時:"
|
||||
points: "ポイント数:"
|
||||
start_coordinates: "開始座標:"
|
||||
map: "地図"
|
||||
edit: "編集"
|
||||
owner: "アップロードしたユーザ:"
|
||||
description: "詳細:"
|
||||
tags: "タグ"
|
||||
none: "無し"
|
||||
make_public: "このトラックを今後公開する"
|
||||
edit_track: "このトラックの編集"
|
||||
delete_track: "このトラックの削除"
|
||||
heading: "トレース{{name}}の表示"
|
||||
trace_not_found: "トレースが見つかりません!"
|
||||
trace_paging_nav:
|
||||
showing: "ページ表示"
|
||||
of: "of"
|
||||
trace:
|
||||
pending: "処理中"
|
||||
count_points: "{{count}} ポイント"
|
||||
ago: "{{time_in_words_ago}}前"
|
||||
more: "詳細"
|
||||
trace_details: "トレースの詳細表示"
|
||||
view_map: "地図で表示"
|
||||
edit: "編集"
|
||||
edit_map: "地図を編集"
|
||||
public: "公開"
|
||||
private: "非公開"
|
||||
by: "by"
|
||||
in: "in"
|
||||
map: "地図"
|
||||
list:
|
||||
public_traces: "公開GPSトレース"
|
||||
your_traces: "あなたのGPSトレース"
|
||||
public_traces_from: "{{user}}からの公開GPSトレース"
|
||||
tagged_with: "{{tags}}でタグ付けされた"
|
||||
delete:
|
||||
scheduled_for_deletion: "削除予定のトラック"
|
||||
make_public:
|
||||
made_public: "公開されたトラック"
|
||||
user:
|
||||
login:
|
||||
title: "ログイン"
|
||||
heading: "ログイン"
|
||||
please login: "ログインするか、{{create_user_link}}."
|
||||
create_account: "アカウント作成"
|
||||
email or username: "電子メールアドレスかユーザ名: "
|
||||
password: "パスワード: "
|
||||
lost password link: "パスワードを忘れましたか?"
|
||||
login_button: "ログイン"
|
||||
account not active: "申し訳ありません。あなたのアカウントはまだ有効ではありません。<br>アカウント確認メールに記載されている、アカウントを有効にするリンクをクリックしてください。"
|
||||
auth failure: "申し訳ありません、以下の理由によりログインできません。"
|
||||
lost_password:
|
||||
title: "パスワード失念"
|
||||
heading: "パスワードを忘れましたか?"
|
||||
email address: "電子メールアドレス:"
|
||||
new password button: "新しいメールを送ってください"
|
||||
notice email on way: "残念ながらパスワードをすでに消しました (-.-);; しかし、リセット用の電子メールを送っていますので、すぐに回復できるでしょう。"
|
||||
notice email cannot find: "残念ながら電子メールアドレスは見つかりません。"
|
||||
reset_password:
|
||||
title: "パスワードのリセット"
|
||||
flash changed check mail: "パスワードは変更されました。新パスワードは、メール受信箱に配送されます (^_^)"
|
||||
flash token bad: "キーワードを見つけられません。URLをチェックしてはいかがですか?"
|
||||
new:
|
||||
title: "アカウント作成"
|
||||
heading: "ユーザアカウントの作成"
|
||||
no_auto_account_create: "残念ながら、自動的にアカウントを作ることが出来ません。"
|
||||
contact_webmaster: 'アカウントを作成できるよう、<a href="mailto:webmaster@openstreetmap.org">webmaster</a>に連絡してください。 できるだけ早期に、あなたの希望に対応するように努めます。'
|
||||
fill_form: "以下のフォームを埋めてください。登録すると、あなたのアカウントを有効化するためにあなたにメールをお送りします。"
|
||||
license_agreement: 'アカウントを作成することで、あなたが openstreetmap.org にアップロードする全てのデータおよび作業内容、もしくは openstreetmap.org に接続するツールによる活動を全て非排他的な <a
|
||||
href="http://creativecommons.org/licenses/by-sa/2.0/">クリエイティブコモンズ 表示-継承 (Creative Commons by-sa) ライセンス</a>で使用許諾した物と見なされます。'
|
||||
email address: "電子メールアドレス: "
|
||||
confirm email address: "メールアドレスの確認: "
|
||||
not displayed publicly: '公開されません。(詳細は <a href="http://wiki.openstreetmap.org/wiki/Privacy_Policy"
|
||||
title="wiki privacy policy including section on email addresses">プライバシーポリシー</a>を御覧下さい)'
|
||||
display name: "表示名: "
|
||||
password: "パスワード: "
|
||||
confirm password: "パスワードの再入力: "
|
||||
signup: "登録"
|
||||
flash create success message: "ユーザ作成に成功しました。すぐに編集を開始するために電子メールを確認してアカウントを有効にしてください。<br /><br />あなたの指定したアドレスに確認メールが届くまであなたはログインすることはできません。<br /><br />メールボックスでスパムフィルタを使っているときには webmaster@openstreetmap.org からの確認メールを受信できるようホワイトリストを設定してください。"
|
||||
no_such_user:
|
||||
title: "ユーザが存在しません"
|
||||
heading: "{{user}} というユーザは存在しません。"
|
||||
body: "{{user}}. という名前のユーザは存在しません。スペルミスが無いかチェックしてください。もしくはリンク元が間違っています。"
|
||||
view:
|
||||
my diary: "私の日記"
|
||||
new diary entry: "新しい日記エントリ"
|
||||
my edits: "私の編集"
|
||||
my traces: "私のトレース"
|
||||
my settings: "ユーザ情報の設定"
|
||||
send message: "メッセージ送信"
|
||||
diary: "日記"
|
||||
edits: "編集"
|
||||
traces: "トレース"
|
||||
remove as friend: "友達から削除"
|
||||
add as friend: "友達に追加"
|
||||
mapper since: "マッパー歴: "
|
||||
ago: "({{time_in_words_ago}} 前)"
|
||||
user image heading: "ユーザの画像"
|
||||
delete image: "画像の削除"
|
||||
upload an image: "画像のアップロード"
|
||||
add image: "画像追加"
|
||||
description: "詳細"
|
||||
user location: "ユーザの位置"
|
||||
no home location: "活動地域が設定されていません。"
|
||||
if set location: "活動地域を指定すると、この下に周辺の地図と、近くで活動するマッパーが表示されます。{{settings_link}} から設定をしてください。"
|
||||
settings_link_text: "設定"
|
||||
your friends: "あなたの友達"
|
||||
no friends: あなたは誰も友達として登録していません。
|
||||
km away: "距離 {{count}}km"
|
||||
nearby users: "周辺のユーザ: "
|
||||
no nearby users: "あなたの活動地域周辺にマッパーはいないようです。"
|
||||
change your settings: "設定を変更する"
|
||||
friend_map:
|
||||
your location: "あなたの位置"
|
||||
nearby mapper: "周辺のマッパー: "
|
||||
account:
|
||||
title: "アカウントを編集"
|
||||
my settings: "私の設定"
|
||||
email never displayed publicly: "(公開しません)"
|
||||
public editing:
|
||||
heading: "公開編集: "
|
||||
enabled: "Enabled. 匿名ではなく、編集可能です。"
|
||||
enabled link: "http://wiki.openstreetmap.org/wiki/Disabling_anonymous_edits"
|
||||
enabled link text: "これは何ですか?"
|
||||
disabled: "Disabled 編集できません。これまでの編集は全て匿名の物として扱われます。"
|
||||
disabled link text: "なぜ編集できないのですか?"
|
||||
profile description: "ユーザ情報の詳細: "
|
||||
preferred languages: "言語設定: "
|
||||
home location: "活動地域: "
|
||||
no home location: "あなたはまだ活動地域を登録していません。"
|
||||
latitude: "緯度: "
|
||||
longitude: "経度: "
|
||||
update home location on click: "クリックした地点をあなたの活動地域として登録を更新しますか?"
|
||||
save changes button: "変更を保存する"
|
||||
make edits public button: "私の編集を全て公開する"
|
||||
return to profile: "プロフィールに戻る"
|
||||
flash update success confirm needed: "ユーザ情報の更新に成功しました。登録したメールアドレスのメールを受信して、メールアドレスの確認を行ってください。"
|
||||
flash update success: "ユーザ情報の更新に成功しました。"
|
||||
confirm:
|
||||
heading: "ユーザアカウントの確認"
|
||||
press confirm button: "アカウントを有効にして良ければ、以下の確認ボタンを押してください。"
|
||||
button: "確認"
|
||||
success: "あなたのアカウントを確認しました。登録ありがとうございます!"
|
||||
failure: "このキーワードによって、ユーザアカウントはすでに確認されています。"
|
||||
confirm_email:
|
||||
heading: "電子メールアドレス変更の確認"
|
||||
press confirm button: "新しいメールアドレスを確認するために確認ボタンを押して下さい。"
|
||||
button: "確認"
|
||||
success: "あなたのメールアドレスが確認できました。登録ありがとうございます。"
|
||||
failure: "このメールアドレス確認トークンは既に確認が済んでいます。"
|
||||
set_home:
|
||||
flash success: "活動地域を保存しました。"
|
||||
go_public:
|
||||
flash success: "あなたの全ての編集は公開されます。今から編集できます。"
|
||||
make_friend:
|
||||
success: "{{name}} はあなたの友達になりました。"
|
||||
failed: "{{name}} を友達と登録できませんでした。"
|
||||
already_a_friend: "あなたは {{name}}.と既に友達です。"
|
||||
remove_friend:
|
||||
success: "{{name}} はあなたの友達から外しました。"
|
||||
not_a_friend: "{{name}} はあなたの友達ではありません。"
|
|
@ -280,7 +280,7 @@ ko:
|
|||
heading: "The user {{user}} does not exist"
|
||||
body: "Sorry, there is no user with the name {{user}}. Please check your spelling, or maybe the link you clicked is wrong."
|
||||
diary_entry:
|
||||
posted_by: "Posted by {{link_user}} at {{created}} in {{language}}"
|
||||
posted_by: "Posted by {{link_user}} at {{created}} in {{language_link}}"
|
||||
comment_link: 이 항목에 댓글 남기기
|
||||
reply_link: 이 항목에 답변하기
|
||||
comment_count:
|
||||
|
@ -614,7 +614,7 @@ ko:
|
|||
make_public: "Make this track public permanently"
|
||||
edit_track: "Edit this track"
|
||||
delete_track: "Delete this track"
|
||||
viewing_trace: "Viewing trace {{name}}"
|
||||
heading: "Viewing trace {{name}}"
|
||||
trace_not_found: "Trace not found!"
|
||||
trace_paging_nav:
|
||||
showing: "Showing page"
|
||||
|
|
|
@ -455,7 +455,7 @@ nl:
|
|||
tags: "Tags:"
|
||||
save_button: "Wijzigingen opslaan"
|
||||
no_such_user:
|
||||
body: "Sorry, er is geen gebruiker {{name}}. Controleer de spelling, of misschien is de link waarop je klikte verkeerd."
|
||||
body: "Sorry, er is geen gebruiker {{user}}. Controleer de spelling, of misschien is de link waarop je klikte verkeerd."
|
||||
trace_form:
|
||||
upload_gpx: "Upload GPX-bestand"
|
||||
description: "Beschrijving"
|
||||
|
@ -486,7 +486,7 @@ nl:
|
|||
make_public: "Deze track permanent openbaar maken"
|
||||
edit_track: "Deze track bewerken"
|
||||
delete_track: "Deze track wissen"
|
||||
viewing_trace: "Track {{name}} bekijken"
|
||||
heading: "Track {{name}} bekijken"
|
||||
trace_not_found: "Track niet gevonden!"
|
||||
trace_paging_nav:
|
||||
showing: "Pagina"
|
||||
|
|
|
@ -500,7 +500,7 @@ pl:
|
|||
make_public: "Na stałe oznacz ten ślad jako publiczny"
|
||||
edit_track: "Edytuj ten ślad"
|
||||
delete_track: "Wykasuj ten ślad"
|
||||
viewing_trace: "Przeglądanie śladu {{name}}"
|
||||
heading: "Przeglądanie śladu {{name}}"
|
||||
trace_not_found: "Ślad nie znaleziony!"
|
||||
trace_paging_nav:
|
||||
showing: "Widoczna jest strona"
|
||||
|
|
|
@ -91,9 +91,9 @@ pt-BR:
|
|||
no_bounding_box: "Nenhum limite de área foi armazenado para estas alterações."
|
||||
show_area_box: "Área de exibição"
|
||||
box: "Área"
|
||||
has_nodes: "Tem os seguintes {{node_count}} pontos:"
|
||||
has_ways: "Tem os seguintes {{way_count}} caminhos:"
|
||||
has_relations: "tem as seguintes {{relation_count}} relações:"
|
||||
has_nodes: "Tem os seguintes {{count}} pontos:"
|
||||
has_ways: "Tem os seguintes {{count}} caminhos:"
|
||||
has_relations: "tem as seguintes {{count}} relações:"
|
||||
common_details:
|
||||
edited_at: "Editado em:"
|
||||
edited_by: "Editado por:"
|
||||
|
@ -280,7 +280,7 @@ pt-BR:
|
|||
heading: "O usuário {{user}} não existe"
|
||||
body: "Desculpe, não há usuário com o nome {{user}}. Por favor, verifique se digitou corretamente, ou talvez o link que clicou esteja errado."
|
||||
diary_entry:
|
||||
posted_by: "Postado por {{link_user}} em {{created}} em {{language}}"
|
||||
posted_by: "Postado por {{link_user}} em {{created}} em {{language_link}}"
|
||||
comment_link: "Comentar nesta entrada"
|
||||
reply_link: "Responder esta entrada"
|
||||
comment_count:
|
||||
|
@ -614,7 +614,7 @@ OpenStreetMap em:"
|
|||
make_public: "Torne esta trilha permanentemente pública"
|
||||
edit_track: "Edite esta trilha"
|
||||
delete_track: "Apague esta trilha"
|
||||
viewing_trace: "Visualizando trilha {{name}}"
|
||||
heading: "Visualizando trilha {{name}}"
|
||||
trace_not_found: "Trilha não encontrada!"
|
||||
trace_paging_nav:
|
||||
showing: "Mostrando página"
|
||||
|
@ -709,7 +709,7 @@ OpenStreetMap em:"
|
|||
settings_link_text: "configurações"
|
||||
your friends: "Seus amigos"
|
||||
no friends: "Você ainda não adicionou amigos."
|
||||
km away: "{{distance}} km de distância"
|
||||
km away: "{{count}} km de distância"
|
||||
nearby users: "Usuários próximos: "
|
||||
no nearby users: "Não existem usuários mapeando por perto."
|
||||
change your settings: "mudar suas configurações"
|
||||
|
|
|
@ -486,7 +486,7 @@ ru:
|
|||
make_public: "Сделать этот трек публичным бессрочно"
|
||||
edit_track: "Редактировать свойства"
|
||||
delete_track: "Удалить трек"
|
||||
viewing_trace: "Просмотр трека {{name}}"
|
||||
heading: "Просмотр трека {{name}}"
|
||||
trace_not_found: "Трек не найден!"
|
||||
trace_paging_nav:
|
||||
showing: "Страница"
|
||||
|
|
|
@ -593,7 +593,7 @@ sl:
|
|||
make_public: "Naj ta sled postane trajno javna"
|
||||
edit_track: "Uredi to sled"
|
||||
delete_track: "Izbriši to sled"
|
||||
viewing_trace: "Prikaz sledi {{name}}"
|
||||
heading: "Prikaz sledi {{name}}"
|
||||
trace_not_found: "Sledi ni bilo mogoče najti!"
|
||||
trace_paging_nav:
|
||||
showing: "Prikaz strani"
|
||||
|
|
|
@ -614,7 +614,7 @@ yo:
|
|||
make_public: "Make this track public permanently"
|
||||
edit_track: "Edit this track"
|
||||
delete_track: "Delete this track"
|
||||
viewing_trace: "Viewing trace {{name}}"
|
||||
heading: "Viewing trace {{name}}"
|
||||
trace_not_found: "Trace not found!"
|
||||
trace_paging_nav:
|
||||
showing: "Showing page"
|
||||
|
|
|
@ -511,7 +511,7 @@ zh-CN:
|
|||
make_public: "永久公开这条路径"
|
||||
edit_track: "编辑这条路径"
|
||||
delete_track: "删除这条路径"
|
||||
viewing_trace: "查看路径 {{name}}"
|
||||
heading: "查看路径 {{name}}"
|
||||
trace_not_found: "路径为找到!"
|
||||
trace_paging_nav:
|
||||
showing: "显示页"
|
||||
|
|
|
@ -614,7 +614,7 @@ zh-TW:
|
|||
make_public: "將這個追蹤永遠標記為公開"
|
||||
edit_track: "編輯這個追蹤"
|
||||
delete_track: "刪除這個追蹤"
|
||||
viewing_trace: "正在檢視追蹤 {{name}}"
|
||||
heading: "正在檢視追蹤 {{name}}"
|
||||
trace_not_found: "找不到追蹤!"
|
||||
trace_paging_nav:
|
||||
showing: "正在顯示頁面"
|
||||
|
|
|
@ -29,6 +29,7 @@ OpenLayers/Format/GML.js
|
|||
OpenLayers/Format/OSM.js
|
||||
OpenLayers/Geometry/Point.js
|
||||
OpenLayers/Geometry/LinearRing.js
|
||||
OpenLayers/Handler/Point.js
|
||||
OpenLayers/Handler/RegularPolygon.js
|
||||
OpenLayers/Renderer.js
|
||||
OpenLayers/Renderer/Canvas.js
|
||||
|
@ -41,11 +42,15 @@ OpenLayers/Popup/AnchoredBuddle.js
|
|||
OpenLayers/Projection.js
|
||||
OpenLayers/Console.js
|
||||
OpenLayers/Lang.js
|
||||
OpenLayers/Lang/ca.js
|
||||
OpenLayers/Lang/de.js
|
||||
OpenLayers/Lang/en.js
|
||||
OpenLayers/Lang/es.js
|
||||
OpenLayers/Lang/fr.js
|
||||
OpenLayers/Lang/it.js
|
||||
OpenLayers/Lang/nl.js
|
||||
OpenLayers/Lang/pt-BR.js
|
||||
OpenLayers/Lang/zh-CN.js
|
||||
OpenLayers/Lang/zh-TW.js
|
||||
|
||||
[exclude]
|
||||
|
|
|
@ -95,6 +95,7 @@ ActionController::Routing::Routes.draw do |map|
|
|||
map.connect '/login', :controller => 'user', :action => 'login'
|
||||
map.connect '/logout', :controller => 'user', :action => 'logout'
|
||||
map.connect '/offline', :controller => 'site', :action => 'offline'
|
||||
map.connect '/key', :controller => 'site', :action => 'key'
|
||||
map.connect '/user/new', :controller => 'user', :action => 'new'
|
||||
map.connect '/user/save', :controller => 'user', :action => 'save'
|
||||
map.connect '/user/confirm', :controller => 'user', :action => 'confirm'
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<h1>Application error</h1>
|
||||
<p>The OpenStreetMap server encountered an unexpected condition that prevented it from fulfilling the request (HTTP 500)</p>
|
||||
<p>Feel free to <a href="http://wiki.openstreetmap.org/wiki/Contact" title="Various contact channels explained">contact</a> the OpenStreetMap community if your problem persists. Make a note of the exact URL / post data of your request.</p>
|
||||
<p>This may be a problem in our Ruby On Rails code. 500 ocurrs with exceptions thrown outside of an action (like in Dispatcher setups or broken Ruby code)</p>
|
||||
<p>This may be a problem in our Ruby On Rails code. 500 occurs with exceptions thrown outside of an action (like in Dispatcher setups or broken Ruby code)</p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
BIN
public/images/key/mapnik/admin.png
Normal file
After Width: | Height: | Size: 148 B |
BIN
public/images/key/mapnik/allotments.png
Normal file
After Width: | Height: | Size: 173 B |
BIN
public/images/key/mapnik/apron.png
Normal file
After Width: | Height: | Size: 229 B |
BIN
public/images/key/mapnik/bridge.png
Normal file
After Width: | Height: | Size: 167 B |
BIN
public/images/key/mapnik/bridleway.png
Normal file
After Width: | Height: | Size: 268 B |
BIN
public/images/key/mapnik/brownfield.png
Normal file
After Width: | Height: | Size: 195 B |
BIN
public/images/key/mapnik/building.png
Normal file
After Width: | Height: | Size: 185 B |
BIN
public/images/key/mapnik/byway.png
Normal file
After Width: | Height: | Size: 234 B |
BIN
public/images/key/mapnik/cable.png
Normal file
After Width: | Height: | Size: 323 B |
BIN
public/images/key/mapnik/cemetery.png
Normal file
After Width: | Height: | Size: 163 B |
BIN
public/images/key/mapnik/centre.png
Normal file
After Width: | Height: | Size: 178 B |
BIN
public/images/key/mapnik/commercial.png
Normal file
After Width: | Height: | Size: 195 B |
BIN
public/images/key/mapnik/common.png
Normal file
After Width: | Height: | Size: 195 B |
BIN
public/images/key/mapnik/construction.png
Normal file
After Width: | Height: | Size: 427 B |
BIN
public/images/key/mapnik/cycleway.png
Normal file
After Width: | Height: | Size: 292 B |
BIN
public/images/key/mapnik/destination.png
Normal file
After Width: | Height: | Size: 285 B |
BIN
public/images/key/mapnik/farm.png
Normal file
After Width: | Height: | Size: 195 B |
BIN
public/images/key/mapnik/footway.png
Normal file
After Width: | Height: | Size: 168 B |
BIN
public/images/key/mapnik/forest.png
Normal file
After Width: | Height: | Size: 178 B |
BIN
public/images/key/mapnik/golf.png
Normal file
After Width: | Height: | Size: 182 B |
BIN
public/images/key/mapnik/heathland.png
Normal file
After Width: | Height: | Size: 183 B |
BIN
public/images/key/mapnik/industrial.png
Normal file
After Width: | Height: | Size: 193 B |
BIN
public/images/key/mapnik/lake.png
Normal file
After Width: | Height: | Size: 182 B |
BIN
public/images/key/mapnik/military.png
Normal file
After Width: | Height: | Size: 183 B |
BIN
public/images/key/mapnik/motorway.png
Normal file
After Width: | Height: | Size: 182 B |
BIN
public/images/key/mapnik/park.png
Normal file
After Width: | Height: | Size: 176 B |
BIN
public/images/key/mapnik/permissive.png
Normal file
After Width: | Height: | Size: 284 B |
BIN
public/images/key/mapnik/pitch.png
Normal file
After Width: | Height: | Size: 182 B |
BIN
public/images/key/mapnik/primary.png
Normal file
After Width: | Height: | Size: 180 B |
BIN
public/images/key/mapnik/primary12.png
Normal file
After Width: | Height: | Size: 222 B |
BIN
public/images/key/mapnik/private.png
Normal file
After Width: | Height: | Size: 282 B |
BIN
public/images/key/mapnik/rail.png
Normal file
After Width: | Height: | Size: 167 B |
BIN
public/images/key/mapnik/rail13.png
Normal file
After Width: | Height: | Size: 203 B |
BIN
public/images/key/mapnik/reserve.png
Normal file
After Width: | Height: | Size: 183 B |
BIN
public/images/key/mapnik/resident.png
Normal file
After Width: | Height: | Size: 176 B |
BIN
public/images/key/mapnik/retail.png
Normal file
After Width: | Height: | Size: 192 B |
BIN
public/images/key/mapnik/runway.png
Normal file
After Width: | Height: | Size: 236 B |
BIN
public/images/key/mapnik/school.png
Normal file
After Width: | Height: | Size: 227 B |
BIN
public/images/key/mapnik/secondary.png
Normal file
After Width: | Height: | Size: 171 B |
BIN
public/images/key/mapnik/secondary12.png
Normal file
After Width: | Height: | Size: 216 B |
BIN
public/images/key/mapnik/station.png
Normal file
After Width: | Height: | Size: 197 B |
BIN
public/images/key/mapnik/subway.png
Normal file
After Width: | Height: | Size: 172 B |
BIN
public/images/key/mapnik/summit.png
Normal file
After Width: | Height: | Size: 245 B |
BIN
public/images/key/mapnik/tourist.png
Normal file
After Width: | Height: | Size: 180 B |
BIN
public/images/key/mapnik/track.png
Normal file
After Width: | Height: | Size: 247 B |
BIN
public/images/key/mapnik/tram.png
Normal file
After Width: | Height: | Size: 198 B |
BIN
public/images/key/mapnik/trunk.png
Normal file
After Width: | Height: | Size: 182 B |
BIN
public/images/key/mapnik/trunk12.png
Normal file
After Width: | Height: | Size: 226 B |
BIN
public/images/key/mapnik/tunnel.png
Normal file
After Width: | Height: | Size: 256 B |
BIN
public/images/key/mapnik/unclassified.png
Normal file
After Width: | Height: | Size: 156 B |
BIN
public/images/key/mapnik/unclassified13.png
Normal file
After Width: | Height: | Size: 194 B |
BIN
public/images/key/mapnik/unsurfaced.png
Normal file
After Width: | Height: | Size: 323 B |
BIN
public/images/key/mapnik/wood.png
Normal file
After Width: | Height: | Size: 182 B |
Before Width: | Height: | Size: 18 KiB |
Before Width: | Height: | Size: 23 KiB |
Before Width: | Height: | Size: 35 KiB |
Before Width: | Height: | Size: 42 KiB |
Before Width: | Height: | Size: 45 KiB |
Before Width: | Height: | Size: 5.3 KiB |
Before Width: | Height: | Size: 6 KiB |
Before Width: | Height: | Size: 8.5 KiB |
Before Width: | Height: | Size: 9.9 KiB |
|
@ -1,5 +0,0 @@
|
|||
|
||||
.olFramedCloudPopupContent {
|
||||
padding: 5px;
|
||||
overflow: auto;
|
||||
}
|