Merge branch 'master' into notes
This commit is contained in:
commit
56db9ca2b7
116 changed files with 2059 additions and 1069 deletions
10
Vendorfile
10
Vendorfile
|
@ -1,27 +1,27 @@
|
||||||
folder 'vendor/assets' do
|
folder 'vendor/assets' do
|
||||||
folder 'leaflet' do
|
folder 'leaflet' do
|
||||||
from 'https://github.com/CloudMade/Leaflet.git' do
|
from 'git://github.com/Leaflet/Leaflet.git', :tag => 'v0.5' do
|
||||||
file 'leaflet.css', 'dist/leaflet.css'
|
file 'leaflet.css', 'dist/leaflet.css'
|
||||||
file 'leaflet.ie.css', 'dist/leaflet.ie.css'
|
file 'leaflet.ie.css', 'dist/leaflet.ie.css'
|
||||||
file 'leaflet.js', 'dist/leaflet-src.js'
|
file 'leaflet.js', 'dist/leaflet-src.js'
|
||||||
folder 'images', 'dist/images'
|
folder 'images', 'dist/images'
|
||||||
end
|
end
|
||||||
|
|
||||||
from 'https://github.com/tripbirds/leaflet-locationfilter.git' do
|
from 'git://github.com/kajic/leaflet-locationfilter.git' do
|
||||||
file 'leaflet.locationfilter.css', 'src/locationfilter.css'
|
file 'leaflet.locationfilter.css', 'src/locationfilter.css'
|
||||||
file 'leaflet.locationfilter.js', 'src/locationfilter.js'
|
file 'leaflet.locationfilter.js', 'src/locationfilter.js'
|
||||||
folder 'img', 'src/img'
|
folder 'img', 'src/img'
|
||||||
end
|
end
|
||||||
|
|
||||||
from 'https://github.com/kartena/Leaflet.Pancontrol.git' do
|
from 'git://github.com/kartena/Leaflet.Pancontrol.git' do
|
||||||
file 'leaflet.pan.js', 'src/L.Control.Pan.js'
|
file 'leaflet.pan.js', 'src/L.Control.Pan.js'
|
||||||
end
|
end
|
||||||
|
|
||||||
from 'https://github.com/kartena/Leaflet.zoomslider.git' do
|
from 'git://github.com/kartena/Leaflet.zoomslider.git' do
|
||||||
file 'leaflet.zoom.js', 'src/L.Control.Zoomslider.js'
|
file 'leaflet.zoom.js', 'src/L.Control.Zoomslider.js'
|
||||||
end
|
end
|
||||||
|
|
||||||
from 'https://github.com/jfirebaugh/leaflet-osm.git' do
|
from 'git://github.com/jfirebaugh/leaflet-osm.git' do
|
||||||
file 'leaflet.osm.js', 'leaflet-osm.js'
|
file 'leaflet.osm.js', 'leaflet-osm.js'
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
BIN
app/assets/images/browse/aerodrome.p.16.png
Normal file
BIN
app/assets/images/browse/aerodrome.p.16.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 377 B |
Before Width: | Height: | Size: 315 B After Width: | Height: | Size: 315 B |
|
@ -1,27 +1,11 @@
|
||||||
function maximiseMap() {
|
function maximiseMap() {
|
||||||
$("#left").hide();
|
$("#content").addClass("maximised");
|
||||||
$("#top-bar").hide();
|
|
||||||
|
|
||||||
$("#content").css("top", "0px");
|
|
||||||
if ($("html").attr("dir") == "ltr") {
|
|
||||||
$("#content").css("margin-left", "0px");
|
|
||||||
} else {
|
|
||||||
$("#content").css("margin-right", "0px");
|
|
||||||
}
|
|
||||||
|
|
||||||
handleResize();
|
handleResize();
|
||||||
}
|
}
|
||||||
|
|
||||||
function minimiseMap() {
|
function minimiseMap() {
|
||||||
$("#left").show();
|
$("#content").removeClass("maximised");
|
||||||
$("#top-bar").show();
|
|
||||||
|
|
||||||
$("#content").css("top", "30px");
|
|
||||||
if ($("html").attr("dir") == "ltr") {
|
|
||||||
$("#content").css("margin-left", "185px");
|
|
||||||
} else {
|
|
||||||
$("#content").css("margin-right", "185px");
|
|
||||||
}
|
|
||||||
|
|
||||||
handleResize();
|
handleResize();
|
||||||
}
|
}
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
//= require index/notes
|
//= require index/notes
|
||||||
|
|
||||||
$(document).ready(function () {
|
$(document).ready(function () {
|
||||||
var permalinks = $("#permalink").html();
|
var permalinks = $("#permalink").detach().html();
|
||||||
var marker;
|
var marker;
|
||||||
var params = OSM.mapParams();
|
var params = OSM.mapParams();
|
||||||
var map = createMap("map");
|
var map = createMap("map");
|
||||||
|
@ -66,10 +66,10 @@ $(document).ready(function () {
|
||||||
});
|
});
|
||||||
|
|
||||||
function updateLocation() {
|
function updateLocation() {
|
||||||
var center = map.getCenter();
|
var center = map.getCenter().wrap();
|
||||||
var zoom = map.getZoom();
|
var zoom = map.getZoom();
|
||||||
var layers = getMapLayers();
|
var layers = getMapLayers();
|
||||||
var extents = map.getBounds();
|
var extents = map.getBounds().wrap();
|
||||||
|
|
||||||
updatelinks(center.lng,
|
updatelinks(center.lng,
|
||||||
center.lat,
|
center.lat,
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
// Leaflet extensions
|
// Leaflet extensions
|
||||||
L.LatLngBounds.include({
|
L.extend(L.LatLngBounds.prototype, {
|
||||||
getSouthLat: function () {
|
getSouthLat: function () {
|
||||||
return this._southWest.lat;
|
return this._southWest.lat;
|
||||||
},
|
},
|
||||||
|
@ -29,10 +29,14 @@ L.LatLngBounds.include({
|
||||||
getSize: function () {
|
getSize: function () {
|
||||||
return (this._northEast.lat - this._southWest.lat) *
|
return (this._northEast.lat - this._southWest.lat) *
|
||||||
(this._northEast.lng - this._southWest.lng);
|
(this._northEast.lng - this._southWest.lng);
|
||||||
|
},
|
||||||
|
|
||||||
|
wrap: function () {
|
||||||
|
return new L.LatLngBounds(this._southWest.wrap(), this._northEast.wrap());
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
L.Bounds.include({
|
L.extend(L.Bounds.prototype, {
|
||||||
getWidth: function () {
|
getWidth: function () {
|
||||||
return this.max.x - this.min.x;
|
return this.max.x - this.min.x;
|
||||||
},
|
},
|
||||||
|
|
|
@ -41,8 +41,8 @@ $(document).ready(function () {
|
||||||
$(".richtext_dopreview").click(function (event) {
|
$(".richtext_dopreview").click(function (event) {
|
||||||
var editor = $(this).parents(".richtext_container").find("textarea");
|
var editor = $(this).parents(".richtext_container").find("textarea");
|
||||||
var preview = $(this).parents(".richtext_container").find(".richtext_preview");
|
var preview = $(this).parents(".richtext_container").find(".richtext_preview");
|
||||||
var width = editor.outerWidth() - preview.outerWidth() + preview.innerWidth();
|
var width = editor.outerWidth() - preview.outerWidth() + preview.width();
|
||||||
var minHeight = editor.outerHeight() - preview.outerHeight() + preview.innerHeight();
|
var minHeight = editor.outerHeight() - preview.outerHeight() + preview.height();
|
||||||
|
|
||||||
if (preview.contents().length == 0) {
|
if (preview.contents().length == 0) {
|
||||||
preview.oneTime(500, "loading", function () {
|
preview.oneTime(500, "loading", function () {
|
||||||
|
|
|
@ -469,7 +469,7 @@ table {
|
||||||
|
|
||||||
.site-index #tabnav a#viewanchor,
|
.site-index #tabnav a#viewanchor,
|
||||||
.site-edit #tabnav a#editanchor,
|
.site-edit #tabnav a#editanchor,
|
||||||
.changeset_list #tabnav a#historyanchor,
|
.changeset-list #tabnav a#historyanchor,
|
||||||
.site-export #tabnav a#exportanchor {
|
.site-export #tabnav a#exportanchor {
|
||||||
border-bottom: 1px solid #aaa;
|
border-bottom: 1px solid #aaa;
|
||||||
background: #9ed485;
|
background: #9ed485;
|
||||||
|
@ -789,6 +789,15 @@ ul.results-list li { border-bottom: 1px solid #ccc; }
|
||||||
top: 30px;
|
top: 30px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#content.maximised {
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
right: 0;
|
||||||
|
bottom: 0;
|
||||||
|
border: 0;
|
||||||
|
z-index: 1000;
|
||||||
|
}
|
||||||
|
|
||||||
#slim_container {
|
#slim_container {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
@ -805,12 +814,16 @@ ul.results-list li { border-bottom: 1px solid #ccc; }
|
||||||
|
|
||||||
#slim_content {
|
#slim_content {
|
||||||
margin: 10px;
|
margin: 10px;
|
||||||
margin-top: 90px;
|
margin-top: 95px;
|
||||||
max-width: 50em;
|
max-width: 50em;
|
||||||
|
|
||||||
|
.content-heading {
|
||||||
|
margin-bottom: 15px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#slim_header {
|
#slim_header {
|
||||||
margin: 10px;
|
margin: 30px 10px;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 0px;
|
top: 0px;
|
||||||
margin-right: 5px;
|
margin-right: 5px;
|
||||||
|
@ -891,7 +904,7 @@ ul.results-list li { border-bottom: 1px solid #ccc; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.selected {
|
.selected {
|
||||||
background-color: rgb(255, 255, 160);
|
background: #FFFFC0;
|
||||||
}
|
}
|
||||||
.date,
|
.date,
|
||||||
.user {
|
.user {
|
||||||
|
@ -1021,6 +1034,7 @@ ul.results-list li { border-bottom: 1px solid #ccc; }
|
||||||
}
|
}
|
||||||
|
|
||||||
.activity-block {
|
.activity-block {
|
||||||
|
clear: left;
|
||||||
border-bottom: 1px solid #ccc;
|
border-bottom: 1px solid #ccc;
|
||||||
padding-bottom: 20px;
|
padding-bottom: 20px;
|
||||||
float: left;
|
float: left;
|
||||||
|
@ -1139,15 +1153,7 @@ ul.results-list li { border-bottom: 1px solid #ccc; }
|
||||||
}
|
}
|
||||||
ul,
|
ul,
|
||||||
ol {
|
ol {
|
||||||
margin-bottom: 20px;
|
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
margin-left: 20px;
|
|
||||||
}
|
|
||||||
ul li {
|
|
||||||
list-style: disc;
|
|
||||||
}
|
|
||||||
ol li {
|
|
||||||
list-style: decimal;
|
|
||||||
}
|
}
|
||||||
ul.secondary-actions { display: inline-block;}
|
ul.secondary-actions { display: inline-block;}
|
||||||
}
|
}
|
||||||
|
@ -1436,8 +1442,8 @@ textarea {
|
||||||
/* Rules for user images */
|
/* Rules for user images */
|
||||||
|
|
||||||
img.user_image {
|
img.user_image {
|
||||||
width: 100px;
|
max-width: 100px;
|
||||||
height: 100px;
|
max-height: 100px;
|
||||||
border: 1px solid #ccc;
|
border: 1px solid #ccc;
|
||||||
margin-bottom: 20px;
|
margin-bottom: 20px;
|
||||||
float: left;
|
float: left;
|
||||||
|
@ -1445,8 +1451,8 @@ img.user_image {
|
||||||
}
|
}
|
||||||
|
|
||||||
img.user_thumbnail {
|
img.user_thumbnail {
|
||||||
width: 50px;
|
max-width: 50px;
|
||||||
height: 50px;
|
max-height: 50px;
|
||||||
border: 1px solid #ccc;
|
border: 1px solid #ccc;
|
||||||
margin-right: 20px;
|
margin-right: 20px;
|
||||||
}
|
}
|
||||||
|
@ -1499,18 +1505,6 @@ ul.secondary-actions {
|
||||||
padding-left: 0;
|
padding-left: 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.hidden li,
|
|
||||||
.hide_unless_logged_in li,
|
|
||||||
.hide_unless_administrator li {
|
|
||||||
border-left: 1px solid #ccc;
|
|
||||||
padding-left: 5px;
|
|
||||||
}
|
|
||||||
.hidden:first-child li,
|
|
||||||
.hide_unless_logged_in:first-child li,
|
|
||||||
.hide_unless_administrator:first-child li {
|
|
||||||
border-left: 0;
|
|
||||||
padding-left: 0;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Utility for managing inner content areas */
|
/* Utility for managing inner content areas */
|
||||||
|
@ -1548,6 +1542,7 @@ a.button.submit {
|
||||||
background-color: #9ed485;
|
background-color: #9ed485;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Rules for doing distinct colour of alternate table rows */
|
/* Rules for doing distinct colour of alternate table rows */
|
||||||
|
|
||||||
.table0,
|
.table0,
|
||||||
|
@ -1567,55 +1562,79 @@ a.button.submit {
|
||||||
border: 0;
|
border: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Rules for rich text */
|
||||||
|
|
||||||
|
.richtext {
|
||||||
|
ul,
|
||||||
|
ol {
|
||||||
|
margin-bottom: 20px;
|
||||||
|
margin-left: 20px;
|
||||||
|
}
|
||||||
|
ul li {
|
||||||
|
list-style: disc;
|
||||||
|
}
|
||||||
|
|
||||||
|
ol li {
|
||||||
|
list-style: decimal;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/* Rules for rich text editors */
|
/* Rules for rich text editors */
|
||||||
|
|
||||||
.richtext_container {
|
.richtext_container {
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
|
|
||||||
.richtext_content {
|
.richtext_content {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
vertical-align: top;
|
vertical-align: top;
|
||||||
|
|
||||||
.richtext_preview {
|
.richtext_preview {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
padding: 20px;
|
padding: 20px;
|
||||||
background-color: #f4f4ff;
|
background-color: #f4f4ff;
|
||||||
white-space: normal;
|
white-space: normal;
|
||||||
|
|
||||||
&.loading {
|
&.loading {
|
||||||
background-image: image-url("loading.gif");
|
background-image: image-url("loading.gif");
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
background-position: center;
|
background-position: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
> :first-child {
|
> :first-child {
|
||||||
margin-top: 0px;
|
margin-top: 0px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.richtext_help {
|
.richtext_help {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
vertical-align: top;
|
vertical-align: top;
|
||||||
margin-left: 15px;
|
margin-left: 15px;
|
||||||
background-color: #f8f8ff;
|
background-color: #f8f8ff;
|
||||||
padding: 20px;
|
padding: 20px;
|
||||||
|
|
||||||
p {
|
p {
|
||||||
margin: 0px;
|
margin: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
th {
|
th {
|
||||||
vertical-align: top;
|
vertical-align: top;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
padding: 0px 15px 0px 0px !important;
|
padding: 0px 15px 0px 0px !important;
|
||||||
}
|
}
|
||||||
table > thead th {
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
td {
|
td {
|
||||||
font-family: fixed;
|
font-family: fixed;
|
||||||
line-height: 16px;
|
line-height: 16px;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
padding: 0px !important;
|
padding: 0px !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
input.richtext_doedit {
|
input.richtext_doedit {
|
||||||
margin-top: 5px !important;
|
margin-top: 5px !important;
|
||||||
margin-right: 10px !important;
|
margin-right: 10px !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
input.richtext_dopreview {
|
input.richtext_dopreview {
|
||||||
margin-top: 5px !important;
|
margin-top: 5px !important;
|
||||||
margin-left: 10px !important;
|
margin-left: 10px !important;
|
||||||
|
|
|
@ -17,11 +17,3 @@ body {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.leaflet-control-zoom-in {
|
|
||||||
background-image: image-url("images/zoom-in.png");
|
|
||||||
}
|
|
||||||
|
|
||||||
.leaflet-control-zoom-out {
|
|
||||||
background-image: image-url("images/zoom-out.png");
|
|
||||||
}
|
|
||||||
|
|
|
@ -6,14 +6,6 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* Override to serve images through the asset pipeline. */
|
/* Override to serve images through the asset pipeline. */
|
||||||
.leaflet-control-zoom-in {
|
|
||||||
background-image: image-url("images/zoom-in.png");
|
|
||||||
}
|
|
||||||
|
|
||||||
.leaflet-control-zoom-out {
|
|
||||||
background-image: image-url("images/zoom-out.png");
|
|
||||||
}
|
|
||||||
|
|
||||||
.leaflet-control-layers-toggle {
|
.leaflet-control-layers-toggle {
|
||||||
background-image: image-url("images/layers.png");
|
background-image: image-url("images/layers.png");
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,15 +3,15 @@
|
||||||
/* Default rules for the body of every page */
|
/* Default rules for the body of every page */
|
||||||
|
|
||||||
body {
|
body {
|
||||||
font-size: 12px;
|
font-size: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
h1 {
|
h1 {
|
||||||
font-size: 16px;
|
font-size: 12px;
|
||||||
}
|
}
|
||||||
|
|
||||||
h2, h3, h4 {
|
h2, h3, h4 {
|
||||||
font-size: 14px;
|
font-size: 12px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.wrapper {
|
.wrapper {
|
||||||
|
@ -30,6 +30,10 @@ h2, h3, h4 {
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.site-edit #content, .site-index #content, .site-export #content {
|
||||||
|
position: absolute;
|
||||||
|
}
|
||||||
|
|
||||||
.column-1 {
|
.column-1 {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
@ -89,7 +93,7 @@ h2, h3, h4 {
|
||||||
|
|
||||||
#small-title h1 {
|
#small-title h1 {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
font-size: 12px;
|
font-size: 10px;
|
||||||
line-height: 18px;
|
line-height: 18px;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
left: 22px;
|
left: 22px;
|
||||||
|
@ -106,6 +110,7 @@ h2, h3, h4 {
|
||||||
|
|
||||||
#browse_map ul.secondary-actions {
|
#browse_map ul.secondary-actions {
|
||||||
float: right;
|
float: right;
|
||||||
|
font-size: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#map {
|
#map {
|
||||||
|
@ -132,7 +137,7 @@ h2, h3, h4 {
|
||||||
|
|
||||||
.site-index .leaflet-top,
|
.site-index .leaflet-top,
|
||||||
.site-export .leaflet-top {
|
.site-export .leaflet-top {
|
||||||
top: 47px !important;
|
top: 10px !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Rules for the main content area */
|
/* Rules for the main content area */
|
||||||
|
@ -155,14 +160,10 @@ h2, h3, h4 {
|
||||||
#sidebar {
|
#sidebar {
|
||||||
border: 0px;
|
border: 0px;
|
||||||
margin: 0px;
|
margin: 0px;
|
||||||
width: 50%;
|
width: 50% !important;
|
||||||
border-right: 1px solid #ccccdd;
|
border-right: 1px solid #ccccdd;
|
||||||
}
|
}
|
||||||
|
|
||||||
.sidebar_title, #sidebar_content {
|
|
||||||
font-size: 10px !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
p.search_results_entry {
|
p.search_results_entry {
|
||||||
padding: 2px 0px;
|
padding: 2px 0px;
|
||||||
}
|
}
|
||||||
|
|
|
@ -20,12 +20,12 @@ module ApplicationHelper
|
||||||
def style_rules
|
def style_rules
|
||||||
css = ""
|
css = ""
|
||||||
|
|
||||||
css << ".hidden { display: none }";
|
css << ".hidden { display: none !important }";
|
||||||
css << ".hide_unless_logged_in { display: none }" unless @user;
|
css << ".hide_unless_logged_in { display: none !important }" unless @user;
|
||||||
css << ".hide_if_logged_in { display: none }" if @user;
|
css << ".hide_if_logged_in { display: none !important }" if @user;
|
||||||
css << ".hide_if_user_#{@user.id} { display: none }" if @user;
|
css << ".hide_if_user_#{@user.id} { display: none !important }" if @user;
|
||||||
css << ".show_if_user_#{@user.id} { display: inline }" if @user;
|
css << ".show_if_user_#{@user.id} { display: inline !important }" if @user;
|
||||||
css << ".hide_unless_administrator { display: none }" unless @user and @user.administrator?;
|
css << ".hide_unless_administrator { display: none !important }" unless @user and @user.administrator?;
|
||||||
|
|
||||||
return content_tag(:style, css, :type => "text/css")
|
return content_tag(:style, css, :type => "text/css")
|
||||||
end
|
end
|
||||||
|
@ -77,7 +77,7 @@ module ApplicationHelper
|
||||||
content_tag(:div, :id => "#{id}_container", :class => "richtext_container") do
|
content_tag(:div, :id => "#{id}_container", :class => "richtext_container") do
|
||||||
output_buffer << content_tag(:div, :id => "#{id}_content", :class => "richtext_content") do
|
output_buffer << content_tag(:div, :id => "#{id}_content", :class => "richtext_content") do
|
||||||
output_buffer << text_area(object_name, method, options.merge("data-preview-url" => preview_url(:format => format)))
|
output_buffer << text_area(object_name, method, options.merge("data-preview-url" => preview_url(:format => format)))
|
||||||
output_buffer << content_tag(:div, "", :id => "#{id}_preview", :class => "richtext_preview")
|
output_buffer << content_tag(:div, "", :id => "#{id}_preview", :class => "richtext_preview richtext")
|
||||||
end
|
end
|
||||||
|
|
||||||
output_buffer << content_tag(:div, :id => "#{id}_help", :class => "richtext_help") do
|
output_buffer << content_tag(:div, :id => "#{id}_help", :class => "richtext_help") do
|
||||||
|
|
|
@ -52,7 +52,7 @@
|
||||||
<% end -%>
|
<% end -%>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<%= link_to h(t("browse.map.edit.area")) + content_tag(:span, "▾", :class => "menuicon"),
|
<%= link_to h(t("browse.map.edit.area")) + content_tag(:span, "▼", :class => "menuicon"),
|
||||||
edit_path,
|
edit_path,
|
||||||
:id => "area_edit",
|
:id => "area_edit",
|
||||||
:data => { :editor => preferred_editor },
|
:data => { :editor => preferred_editor },
|
||||||
|
@ -69,7 +69,7 @@
|
||||||
:class => "geolink object" %>
|
:class => "geolink object" %>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<%= link_to h(t("browse.map.edit." + map.class.to_s.downcase)) + content_tag(:span, "▾", :class => "menuicon"),
|
<%= link_to h(t("browse.map.edit." + map.class.to_s.downcase)) + content_tag(:span, "▼", :class => "menuicon"),
|
||||||
edit_path,
|
edit_path,
|
||||||
:id => "object_edit",
|
:id => "object_edit",
|
||||||
:data => { :editor => preferred_editor },
|
:data => { :editor => preferred_editor },
|
||||||
|
|
|
@ -1,8 +1,9 @@
|
||||||
<% if node_details.redacted? %>
|
|
||||||
<p><%= t 'browse.redacted.message_html', :type => t('browse.redacted.type.node'), :redaction_link => link_to(t('browse.redacted.redaction', :id => node_details.redaction.id), node_details.redaction), :version => node_details.version %></p>
|
|
||||||
<% else %>
|
|
||||||
<div class="browse_details" id="<%= node_details.version %>">
|
<div class="browse_details" id="<%= node_details.version %>">
|
||||||
|
<% if node_details.redacted? %>
|
||||||
|
<div class='browse-section'>
|
||||||
|
<%= t 'browse.redacted.message_html', :type => t('browse.redacted.type.node'), :redaction_link => link_to(t('browse.redacted.redaction', :id => node_details.redaction.id), node_details.redaction), :version => node_details.version %>
|
||||||
|
</div>
|
||||||
|
<% else %>
|
||||||
<%= render :partial => "common_details", :object => node_details %>
|
<%= render :partial => "common_details", :object => node_details %>
|
||||||
|
|
||||||
<% if node_details.visible -%>
|
<% if node_details.visible -%>
|
||||||
|
@ -23,6 +24,5 @@
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
|
||||||
</div>
|
|
||||||
<% end %>
|
<% end %>
|
||||||
|
</div>
|
||||||
|
|
|
@ -1,8 +1,9 @@
|
||||||
<% if relation_details.redacted? %>
|
|
||||||
<p><%= t 'browse.redacted.message_html', :type => t('browse.redacted.type.relation'), :redaction_link => link_to(t('browse.redacted.redaction', :id => relation_details.redaction.id), relation_details.redaction), :version => relation_details.version %></p>
|
|
||||||
<% else %>
|
|
||||||
<div class="browse_details" id="<%= relation_details.version %>">
|
<div class="browse_details" id="<%= relation_details.version %>">
|
||||||
|
<% if relation_details.redacted? %>
|
||||||
|
<div class='browse-section'>
|
||||||
|
<%= t 'browse.redacted.message_html', :type => t('browse.redacted.type.relation'), :redaction_link => link_to(t('browse.redacted.redaction', :id => relation_details.redaction.id), relation_details.redaction), :version => relation_details.version %><
|
||||||
|
</div>
|
||||||
|
<% else %>
|
||||||
<%= render :partial => "common_details", :object => relation_details %>
|
<%= render :partial => "common_details", :object => relation_details %>
|
||||||
|
|
||||||
<% unless relation_details.relation_members.empty? %>
|
<% unless relation_details.relation_members.empty? %>
|
||||||
|
@ -18,6 +19,5 @@
|
||||||
<ul><%= render :partial => "containing_relation", :collection => relation_details.containing_relation_members %></ul>
|
<ul><%= render :partial => "containing_relation", :collection => relation_details.containing_relation_members %></ul>
|
||||||
</div>
|
</div>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
|
||||||
</div>
|
|
||||||
<% end %>
|
<% end %>
|
||||||
|
</div>
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
<% if way_details.redacted? %>
|
|
||||||
<p><%= t 'browse.redacted.message_html', :type => t('browse.redacted.type.way'), :redaction_link => link_to(t('browse.redacted.redaction', :id => way_details.redaction.id), way_details.redaction), :version => way_details.version %></p>
|
|
||||||
<% else %>
|
|
||||||
|
|
||||||
<div class="browse_details" id="<%= way_details.version %>">
|
<div class="browse_details" id="<%= way_details.version %>">
|
||||||
|
<% if way_details.redacted? %>
|
||||||
|
<div class='browse-section'>
|
||||||
|
<%= t 'browse.redacted.message_html', :type => t('browse.redacted.type.way'), :redaction_link => link_to(t('browse.redacted.redaction', :id => way_details.redaction.id), way_details.redaction), :version => way_details.version %>
|
||||||
|
</div>
|
||||||
|
<% else %>
|
||||||
<%= render :partial => "common_details", :object => way_details %>
|
<%= render :partial => "common_details", :object => way_details %>
|
||||||
|
|
||||||
<% unless way_details.way_nodes.empty? %>
|
<% unless way_details.way_nodes.empty? %>
|
||||||
|
@ -30,6 +30,5 @@
|
||||||
<%= render :partial => "containing_relation", :collection => way_details.containing_relation_members %>
|
<%= render :partial => "containing_relation", :collection => way_details.containing_relation_members %>
|
||||||
</ul>
|
</ul>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
|
||||||
</div>
|
|
||||||
<% end %>
|
<% end %>
|
||||||
|
</div>
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<div class='clearfix diary-comment'>
|
<div class="clearfix diary-comment">
|
||||||
<%= user_thumbnail diary_comment.user %>
|
<%= user_thumbnail diary_comment.user %>
|
||||||
<p class='deemphasize comment-heading' id="comment<%= diary_comment.id %>"><%= raw(t('diary_entry.diary_comment.comment_from', :link_user => (link_to h(diary_comment.user.display_name), :controller => 'user', :action => 'view', :display_name => diary_comment.user.display_name), :comment_created_at => l(diary_comment.created_at, :format => :friendly))) %></p>
|
<p class="deemphasize comment-heading" id="comment<%= diary_comment.id %>"><%= raw(t('diary_entry.diary_comment.comment_from', :link_user => (link_to h(diary_comment.user.display_name), :controller => 'user', :action => 'view', :display_name => diary_comment.user.display_name), :comment_created_at => l(diary_comment.created_at, :format => :friendly))) %></p>
|
||||||
<%= diary_comment.body.to_html %>
|
<div class="richtext"><%= diary_comment.body.to_html %></div>
|
||||||
<%= if_administrator(:span) do %>
|
<%= if_administrator(:span) do %>
|
||||||
<%= link_to t('diary_entry.diary_comment.hide_link'), hide_diary_comment_path(:display_name => diary_comment.diary_entry.user.display_name, :id => diary_comment.diary_entry.id, :comment => diary_comment.id), :method => :post, :data=> { :confirm => t('diary_entry.diary_comment.confirm') } %>
|
<%= link_to t('diary_entry.diary_comment.hide_link'), hide_diary_comment_path(:display_name => diary_comment.diary_entry.user.display_name, :id => diary_comment.diary_entry.id, :comment => diary_comment.id), :method => :post, :data=> { :confirm => t('diary_entry.diary_comment.confirm') } %>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
|
|
@ -6,7 +6,8 @@
|
||||||
|
|
||||||
<h2><%= link_to h(diary_entry.title), :action => 'view', :display_name => diary_entry.user.display_name, :id => diary_entry.id %></h2>
|
<h2><%= link_to h(diary_entry.title), :action => 'view', :display_name => diary_entry.user.display_name, :id => diary_entry.id %></h2>
|
||||||
</div>
|
</div>
|
||||||
<div xml:lang="<%= diary_entry.language_code %>" lang="<%= diary_entry.language_code %>">
|
|
||||||
|
<div class="richtext" xml:lang="<%= diary_entry.language_code %>" lang="<%= diary_entry.language_code %>">
|
||||||
<%= diary_entry.body.to_html %>
|
<%= diary_entry.body.to_html %>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -25,12 +26,12 @@
|
||||||
<li><%= link_to t('diary_entry.diary_entry.comment_count', :count => diary_entry.visible_comments.count), :action => 'view', :display_name => diary_entry.user.display_name, :id => diary_entry.id, :anchor => 'comments' %></li>
|
<li><%= link_to t('diary_entry.diary_entry.comment_count', :count => diary_entry.visible_comments.count), :action => 'view', :display_name => diary_entry.user.display_name, :id => diary_entry.id, :anchor => 'comments' %></li>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
|
||||||
<%= if_user(diary_entry.user, :span) do %>
|
<%= if_user(diary_entry.user, :li) do %>
|
||||||
<li><%= link_to t('diary_entry.diary_entry.edit_link'), :action => 'edit', :display_name => diary_entry.user.display_name, :id => diary_entry.id %></li>
|
<%= link_to t('diary_entry.diary_entry.edit_link'), :action => 'edit', :display_name => diary_entry.user.display_name, :id => diary_entry.id %>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
|
||||||
<%= if_administrator(:span) do %>
|
<%= if_administrator(:li) do %>
|
||||||
<li><%= link_to t('diary_entry.diary_entry.hide_link'), hide_diary_entry_path(:display_name => diary_entry.user.display_name, :id => diary_entry.id), :method => :post, :data => { :confirm => t('diary_entry.diary_entry.confirm') } %></li>
|
<%= link_to t('diary_entry.diary_entry.hide_link'), hide_diary_entry_path(:display_name => diary_entry.user.display_name, :id => diary_entry.id), :method => :post, :data => { :confirm => t('diary_entry.diary_entry.confirm') } %>
|
||||||
<% end %>
|
<% end %>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
<tr class="<%= cl %>">
|
<tr class="<%= cl %>">
|
||||||
<td width="25%"><%= link_to comment.diary_entry.title, :action => :view, :display_name => comment.diary_entry.user.display_name, :id => comment.diary_entry.id %></td>
|
<td width="25%"><%= link_to comment.diary_entry.title, :action => :view, :display_name => comment.diary_entry.user.display_name, :id => comment.diary_entry.id %></td>
|
||||||
<td width="25%"><span title="<%= l comment.created_at, :format => :friendly %>"><%= t 'diary_entry.comments.ago', :ago => time_ago_in_words(comment.created_at) %></span></td>
|
<td width="25%"><span title="<%= l comment.created_at, :format => :friendly %>"><%= t 'diary_entry.comments.ago', :ago => time_ago_in_words(comment.created_at) %></span></td>
|
||||||
<td width="50%"><%= comment.body.to_html %></td>
|
<td width="50%" class="richtext"><%= comment.body.to_html %></td>
|
||||||
</tr>
|
</tr>
|
||||||
<% end -%>
|
<% end -%>
|
||||||
</table>
|
</table>
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
<% else %>
|
<% else %>
|
||||||
<ul class='results-list'>
|
<ul class='results-list'>
|
||||||
<% @results.each do |result| %>
|
<% @results.each do |result| %>
|
||||||
<li><p class="inner12 search_results_entry deemphasize"><%= result_to_html(result) %></p></li>
|
<li><p class="inner12 search_results_entry"><%= result_to_html(result) %></p></li>
|
||||||
<% end %>
|
<% end %>
|
||||||
</ul>
|
</ul>
|
||||||
<% if @more_params %>
|
<% if @more_params %>
|
||||||
|
|
|
@ -100,7 +100,7 @@
|
||||||
:title => t('layouts.view_tooltip'),
|
:title => t('layouts.view_tooltip'),
|
||||||
:class => 'geolink llz layers'
|
:class => 'geolink llz layers'
|
||||||
} %></li>
|
} %></li>
|
||||||
<li><%= link_to h(t('layouts.edit')) + content_tag(:span, "▾", :class => "menuicon"), edit_path, {
|
<li><%= link_to h(t('layouts.edit')) + content_tag(:span, "▼", :class => "menuicon"), edit_path, {
|
||||||
:id => 'editanchor',
|
:id => 'editanchor',
|
||||||
:title => t('javascripts.site.edit_tooltip'),
|
:title => t('javascripts.site.edit_tooltip'),
|
||||||
:data => { :minzoom => 13, :editor => preferred_editor },
|
:data => { :minzoom => 13, :editor => preferred_editor },
|
||||||
|
|
|
@ -1,17 +1,23 @@
|
||||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
<!DOCTYPE html>
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<%= I18n.locale %>" lang="<%= I18n.locale %>" dir="<%= dir %>">
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<%= I18n.locale %>" lang="<%= I18n.locale %>" dir="<%= dir %>">
|
||||||
<%= render :partial => "layouts/head" %>
|
<%= render :partial => "layouts/head" %>
|
||||||
<body class="slim">
|
<body class="slim">
|
||||||
<div id="slim_container">
|
<div id="slim_container">
|
||||||
<div id="slim_container_content">
|
<div id="slim_container_content">
|
||||||
|
<div id="slim_header">
|
||||||
|
<h1><%= image_tag("osm_logo.png", :size => "60x60", :border => 0, :alt => t('layouts.logo.alt_text')) %><%= t 'layouts.project_name.h1' %></h1>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div id="slim_content">
|
<div id="slim_content">
|
||||||
<%= render :partial => "layouts/flash", :locals => { :flash => flash } %>
|
<%= render :partial => "layouts/flash", :locals => { :flash => flash } %>
|
||||||
|
|
||||||
<%= yield %>
|
<% if content_for? :heading %>
|
||||||
</div>
|
<div class="content-heading">
|
||||||
|
<%= yield :heading %>
|
||||||
|
</div>
|
||||||
|
<% end %>
|
||||||
|
|
||||||
<div id="slim_header">
|
<%= yield %>
|
||||||
<h1><%= image_tag("osm_logo.png", :size => "60x60", :border => 0, :alt => t('layouts.logo.alt_text')) %><%= t 'layouts.project_name.h1' %></h1>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<%= @message.body.to_html %></td>
|
<div class="richtext"><%= @message.body.to_html %></div>
|
||||||
|
|
||||||
<%= link_to t('message.read.back_to_inbox'), :controller => 'message', :action => 'inbox', :display_name => @user.display_name %>
|
<%= link_to t('message.read.back_to_inbox'), :controller => 'message', :action => 'inbox', :display_name => @user.display_name %>
|
||||||
|
|
||||||
|
@ -29,7 +29,7 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<%= @message.body.to_html %></td>
|
<div class="richtext"><%= @message.body.to_html %></div>
|
||||||
|
|
||||||
<%= link_to t('message.read.back_to_outbox'), :controller => 'message', :action => 'outbox', :display_name => @user.display_name %>
|
<%= link_to t('message.read.back_to_outbox'), :controller => 'message', :action => 'outbox', :display_name => @user.display_name %>
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
<b><%= t 'redaction.show.user' %></b>
|
<b><%= t 'redaction.show.user' %></b>
|
||||||
<%= link_to(@redaction.user.display_name, {:controller => 'user', :action => 'view', :display_name => @redaction.user.display_name}) %>
|
<%= link_to(@redaction.user.display_name, {:controller => 'user', :action => 'view', :display_name => @redaction.user.display_name}) %>
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p class="richtext">
|
||||||
<b><%= t 'redaction.show.description' %></b>
|
<b><%= t 'redaction.show.description' %></b>
|
||||||
<%= @redaction.description.to_html %>
|
<%= @redaction.description.to_html %>
|
||||||
</p>
|
</p>
|
||||||
|
|
|
@ -20,7 +20,7 @@
|
||||||
<%= link_to t('trace.trace.edit'), {:controller => 'site', :action => 'edit', :gpx => trace.id }, {:title => t('trace.trace.edit_map')} %>
|
<%= link_to t('trace.trace.edit'), {:controller => 'site', :action => 'edit', :gpx => trace.id }, {:title => t('trace.trace.edit_map')} %>
|
||||||
<span class="trace_<%= trace.visibility %>"><%= t('trace.trace.' + trace.visibility) %></span>
|
<span class="trace_<%= trace.visibility %>"><%= t('trace.trace.' + trace.visibility) %></span>
|
||||||
<br />
|
<br />
|
||||||
<%= t('trace.list.description') %>
|
<%= trace.description %>
|
||||||
<br />
|
<br />
|
||||||
<%= t'trace.trace.by' %> <%=link_to h(trace.user.display_name), {:controller => 'user', :action => 'view', :display_name => trace.user.display_name} %>
|
<%= t'trace.trace.by' %> <%=link_to h(trace.user.display_name), {:controller => 'user', :action => 'view', :display_name => trace.user.display_name} %>
|
||||||
<% if !trace.tags.empty? %>
|
<% if !trace.tags.empty? %>
|
||||||
|
|
|
@ -26,11 +26,15 @@
|
||||||
<%= render :partial => 'trace_paging_nav' %>
|
<%= render :partial => 'trace_paging_nav' %>
|
||||||
|
|
||||||
<table id="trace_list" cellpadding="3">
|
<table id="trace_list" cellpadding="3">
|
||||||
<tr>
|
<thead>
|
||||||
<th></th>
|
<tr>
|
||||||
<th></th>
|
<th></th>
|
||||||
</tr>
|
<th></th>
|
||||||
<%= render :partial => 'trace', :collection => @traces unless @traces.nil? %>
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<%= render :partial => 'trace', :collection => @traces unless @traces.nil? %>
|
||||||
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
<%= render :partial => 'trace_paging_nav' %>
|
<%= render :partial => 'trace_paging_nav' %>
|
||||||
|
|
|
@ -1,15 +1,13 @@
|
||||||
<div class='contact-activity clearfix'>
|
<%
|
||||||
<%
|
user_data = {
|
||||||
user_data = {
|
:lon => contact.home_lon,
|
||||||
:lon => contact.home_lon,
|
:lat => contact.home_lat,
|
||||||
:lat => contact.home_lat,
|
:icon => image_path(type == "friend" ? "marker-blue.png" : "marker-green.png"),
|
||||||
:icon => image_path(type == "friend" ? "marker-blue.png" : "marker-green.png"),
|
:description => render(:partial => "popup", :object => contact, :locals => {:type => type})
|
||||||
:description => render(:partial => "popup", :object => contact, :locals => {:type => type})
|
}
|
||||||
}
|
%>
|
||||||
%>
|
<%= content_tag :div, :class => "contact-activity clearfix", :data => {:user => user_data} do %>
|
||||||
<%= content_tag "td", :rowspan => 3, :data => {:user => user_data} do %>
|
<%= user_thumbnail contact %>
|
||||||
<%= user_thumbnail contact %>
|
|
||||||
<% end %>
|
|
||||||
<div class='activity-details'>
|
<div class='activity-details'>
|
||||||
<p class='deemphasize'>
|
<p class='deemphasize'>
|
||||||
<%= link_to h(contact.display_name), :controller => 'user', :action => 'view', :display_name => contact.display_name %>
|
<%= link_to h(contact.display_name), :controller => 'user', :action => 'view', :display_name => contact.display_name %>
|
||||||
|
@ -47,4 +45,4 @@
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
<% end %>
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
%>
|
%>
|
||||||
<% end %>
|
<% end %>
|
||||||
</p>
|
</p>
|
||||||
<%= user.description.to_html %>
|
<div class="richtext"><%= user.description.to_html %></div>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<%= check_box_tag "user_#{user.id}", "", false, :name => "user[#{user.id}]" %>
|
<%= check_box_tag "user_#{user.id}", "", false, :name => "user[#{user.id}]" %>
|
||||||
|
|
|
@ -10,8 +10,8 @@
|
||||||
<p><%= t 'user.login.no account' %> <%= link_to t('user.login.register now'), :action => :new, :referer => params[:referer] %></p>
|
<p><%= t 'user.login.no account' %> <%= link_to t('user.login.register now'), :action => :new, :referer => params[:referer] %></p>
|
||||||
|
|
||||||
<table id="loginForm">
|
<table id="loginForm">
|
||||||
<tr><td class="fieldName"><%= t 'user.login.email or username' %></td><td><%= text_field_tag "username", params[:username], :size => 28, :maxlength => 255, :tabindex => 1 %></td></tr>
|
<tr><td class="fieldName"><%= t 'user.login.email or username' %></td><td><%= text_field_tag "username", params[:username], :maxlength => 255, :tabindex => 1 %></td></tr>
|
||||||
<tr><td class="fieldName"><%= t 'user.login.password' %></td><td><%= password_field_tag "password", "", :size => 28, :maxlength => 255, :tabindex => 2 %> <span class="minorNote">(<%= link_to t('user.login.lost password link'), :controller => 'user', :action => 'lost_password' %>)</span></td></tr>
|
<tr><td class="fieldName"><%= t 'user.login.password' %></td><td><%= password_field_tag "password", "", :maxlength => 255, :tabindex => 2 %> <span class="minorNote">(<%= link_to t('user.login.lost password link'), :controller => 'user', :action => 'lost_password' %>)</span></td></tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td></td>
|
<td></td>
|
||||||
<td><%= check_box_tag "remember_me", "yes", false, :tabindex => 3 %>
|
<td><%= check_box_tag "remember_me", "yes", false, :tabindex => 3 %>
|
||||||
|
@ -43,7 +43,7 @@
|
||||||
<%= raw t 'user.login.openid', :logo => openid_logo %>
|
<%= raw t 'user.login.openid', :logo => openid_logo %>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<%= url_field_tag("openid_url", "", { :size => 28, :maxlength => 255, :tabindex => 3, :class => "openid_url" }) %>
|
<%= url_field_tag("openid_url", "", { :maxlength => 255, :tabindex => 3, :class => "openid_url" }) %>
|
||||||
<span class="minorNote">(<a href="<%= t 'user.account.openid.link' %>" target="_new"><%= t 'user.account.openid.link text' %></a>)</span>
|
<span class="minorNote">(<a href="<%= t 'user.account.openid.link' %>" target="_new"><%= t 'user.account.openid.link text' %></a>)</span>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
|
@ -152,7 +152,7 @@
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class='user-description'><%= @this_user.description.to_html %></div>
|
<div class="user-description richtext"><%= @this_user.description.to_html %></div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
|
@ -33,4 +33,4 @@
|
||||||
<p><b><%= t'user_block.show.status' %></b>: <%= block_status(@user_block) %></p>
|
<p><b><%= t'user_block.show.status' %></b>: <%= block_status(@user_block) %></p>
|
||||||
|
|
||||||
<p><b><%= t'user_block.show.reason' %></b></p>
|
<p><b><%= t'user_block.show.reason' %></b></p>
|
||||||
<%= @user_block.reason.to_html %>
|
<div class="richtext"><%= @user_block.reason.to_html %></div>
|
||||||
|
|
|
@ -728,7 +728,6 @@ af:
|
||||||
user_diaries_tooltip: Wys gebruikersdagboeke
|
user_diaries_tooltip: Wys gebruikersdagboeke
|
||||||
view: Wys
|
view: Wys
|
||||||
view_tooltip: Wys die kaart
|
view_tooltip: Wys die kaart
|
||||||
welcome_user: Welkom, %{user_link}
|
|
||||||
welcome_user_link_tooltip: U gebruikersblad
|
welcome_user_link_tooltip: U gebruikersblad
|
||||||
license_page:
|
license_page:
|
||||||
foreign:
|
foreign:
|
||||||
|
|
|
@ -849,7 +849,6 @@ aln:
|
||||||
user_diaries_tooltip: përdorues ditaret Shiko
|
user_diaries_tooltip: përdorues ditaret Shiko
|
||||||
view: Kshyr
|
view: Kshyr
|
||||||
view_tooltip: Kshyre hartën
|
view_tooltip: Kshyre hartën
|
||||||
welcome_user: Mirë se erdhe, %{user_link}
|
|
||||||
welcome_user_link_tooltip: përdorues juaj faqe
|
welcome_user_link_tooltip: përdorues juaj faqe
|
||||||
license_page:
|
license_page:
|
||||||
foreign:
|
foreign:
|
||||||
|
|
|
@ -982,7 +982,6 @@ ar:
|
||||||
user_diaries_tooltip: اعرض يوميات المستخدمين
|
user_diaries_tooltip: اعرض يوميات المستخدمين
|
||||||
view: اعرض
|
view: اعرض
|
||||||
view_tooltip: اعرض الخريطة
|
view_tooltip: اعرض الخريطة
|
||||||
welcome_user: مرحبًا بك، %{user_link}
|
|
||||||
welcome_user_link_tooltip: صفحة المستخدم الخاصة بك
|
welcome_user_link_tooltip: صفحة المستخدم الخاصة بك
|
||||||
wiki: الويكي
|
wiki: الويكي
|
||||||
wiki_title: موقع الويكي للمشروع
|
wiki_title: موقع الويكي للمشروع
|
||||||
|
|
|
@ -788,7 +788,6 @@ arz:
|
||||||
user_diaries_tooltip: اعرض يوميات المستخدمين
|
user_diaries_tooltip: اعرض يوميات المستخدمين
|
||||||
view: اعرض
|
view: اعرض
|
||||||
view_tooltip: اعرض الخرائط
|
view_tooltip: اعرض الخرائط
|
||||||
welcome_user: مرحبًا بك، %{user_link}
|
|
||||||
welcome_user_link_tooltip: صفحه المستخدم الخاصه بك
|
welcome_user_link_tooltip: صفحه المستخدم الخاصه بك
|
||||||
message:
|
message:
|
||||||
delete:
|
delete:
|
||||||
|
|
|
@ -166,7 +166,7 @@ ast:
|
||||||
way: vía
|
way: vía
|
||||||
paging_nav:
|
paging_nav:
|
||||||
of: de
|
of: de
|
||||||
showing_page: Amosando páxina
|
showing_page: páxina
|
||||||
redacted:
|
redacted:
|
||||||
message_html: La versión %{version} de %{type} nun se pue amosar porque ta redactada. Por favor consulta %{redaction_link} pa más detalles.
|
message_html: La versión %{version} de %{type} nun se pue amosar porque ta redactada. Por favor consulta %{redaction_link} pa más detalles.
|
||||||
redaction: Redaición de %{id}
|
redaction: Redaición de %{id}
|
||||||
|
@ -206,7 +206,7 @@ ast:
|
||||||
manually_select: Seleiciona manualmente un área distinta
|
manually_select: Seleiciona manualmente un área distinta
|
||||||
object_list:
|
object_list:
|
||||||
api: Recuperar esti área de l'API
|
api: Recuperar esti área de l'API
|
||||||
back: Amosar llista d'oxetos
|
back: Volver a la llista d'oxetos
|
||||||
details: Detalles
|
details: Detalles
|
||||||
heading: Llista d'oxetos
|
heading: Llista d'oxetos
|
||||||
history:
|
history:
|
||||||
|
@ -248,8 +248,8 @@ ast:
|
||||||
way_title: "Vía: %{way_name}"
|
way_title: "Vía: %{way_name}"
|
||||||
way_details:
|
way_details:
|
||||||
also_part_of:
|
also_part_of:
|
||||||
one: tamién ye parte de la vía %{related_ways}
|
one: parte de la vía %{related_ways}
|
||||||
other: tamién ye parte de les víes %{related_ways}
|
other: parte de les víes %{related_ways}
|
||||||
nodes: "Nodos:"
|
nodes: "Nodos:"
|
||||||
part_of: "Parte de:"
|
part_of: "Parte de:"
|
||||||
way_history:
|
way_history:
|
||||||
|
@ -269,7 +269,7 @@ ast:
|
||||||
changeset_paging_nav:
|
changeset_paging_nav:
|
||||||
next: Siguiente »
|
next: Siguiente »
|
||||||
previous: « Anterior
|
previous: « Anterior
|
||||||
showing_page: Tas na páxina %{page}
|
showing_page: Páxina %{page}
|
||||||
changesets:
|
changesets:
|
||||||
area: Área
|
area: Área
|
||||||
comment: Comentariu
|
comment: Comentariu
|
||||||
|
@ -277,13 +277,13 @@ ast:
|
||||||
saved_at: Guardao el
|
saved_at: Guardao el
|
||||||
user: Usuariu
|
user: Usuariu
|
||||||
list:
|
list:
|
||||||
description: Cambios recientes
|
description: Ver les collaboraciones más nueves del mapa
|
||||||
description_bbox: Conxuntos de cambeos en %{bbox}
|
description_bbox: Conxuntos de cambeos en %{bbox}
|
||||||
description_friend: Conxuntos de cambios de los tos collacios
|
description_friend: Conxuntos de cambios de los tos collacios
|
||||||
description_nearby: Conxuntos de cambios d'usuarios cercanos
|
description_nearby: Conxuntos de cambios d'usuarios cercanos
|
||||||
description_user: Conxuntos de cambeos de %{user}
|
description_user: Conxuntos de cambeos de %{user}
|
||||||
description_user_bbox: Conxuntos de cambeos de %{user} en %{bbox}
|
description_user_bbox: Conxuntos de cambeos de %{user} en %{bbox}
|
||||||
empty_anon_html: Entá nun se ficieron ediciones
|
empty_anon_html: Entá nun se ficieron ediciones.
|
||||||
empty_user_html: Paez qu'entá nun ficisti denguna edición. Pa comenzar, consulta la <a href='http://wiki.openstreetmap.org/wiki/Beginners_Guide_1.3'>Guía pa principiantes</a>.
|
empty_user_html: Paez qu'entá nun ficisti denguna edición. Pa comenzar, consulta la <a href='http://wiki.openstreetmap.org/wiki/Beginners_Guide_1.3'>Guía pa principiantes</a>.
|
||||||
heading: Conxuntos de cambios
|
heading: Conxuntos de cambios
|
||||||
heading_bbox: Conxuntos de cambios
|
heading_bbox: Conxuntos de cambios
|
||||||
|
@ -351,7 +351,7 @@ ast:
|
||||||
newer_entries: Entraes más nueves
|
newer_entries: Entraes más nueves
|
||||||
no_entries: Nun hai entraes nel diariu
|
no_entries: Nun hai entraes nel diariu
|
||||||
older_entries: Entraes anteriores
|
older_entries: Entraes anteriores
|
||||||
recent_entries: "Entraes recientes del diariu:"
|
recent_entries: Entraes más nueves del diariu
|
||||||
title: Diarios d'usuarios
|
title: Diarios d'usuarios
|
||||||
title_friends: Diarios de collacios
|
title_friends: Diarios de collacios
|
||||||
title_nearby: Diarios d'usuarios cercanos
|
title_nearby: Diarios d'usuarios cercanos
|
||||||
|
@ -983,7 +983,6 @@ ast:
|
||||||
user_diaries_tooltip: Ver los diarios d'usuariu
|
user_diaries_tooltip: Ver los diarios d'usuariu
|
||||||
view: Ver
|
view: Ver
|
||||||
view_tooltip: Ver el mapa
|
view_tooltip: Ver el mapa
|
||||||
welcome_user: Bienveníu, %{user_link}
|
|
||||||
welcome_user_link_tooltip: La to páxina d'usuariu
|
welcome_user_link_tooltip: La to páxina d'usuariu
|
||||||
wiki: Wiki
|
wiki: Wiki
|
||||||
wiki_title: Sitiu wiki del proyeutu
|
wiki_title: Sitiu wiki del proyeutu
|
||||||
|
@ -1415,6 +1414,7 @@ ast:
|
||||||
visibility: "Visibilidá:"
|
visibility: "Visibilidá:"
|
||||||
visibility_help: ¿qué ye esto?
|
visibility_help: ¿qué ye esto?
|
||||||
list:
|
list:
|
||||||
|
description: Ver les xubes más nueves de traces GPS
|
||||||
empty_html: Entá nun hai nada equí. <a href='%{upload_link}'>Carga una nueva traza</a> o deprendi más tocante a cómo trazar col GPS na <a href='http://wiki.openstreetmap.org/wiki/Beginners_Guide_1.2'>página de la wiki</a>.
|
empty_html: Entá nun hai nada equí. <a href='%{upload_link}'>Carga una nueva traza</a> o deprendi más tocante a cómo trazar col GPS na <a href='http://wiki.openstreetmap.org/wiki/Beginners_Guide_1.2'>página de la wiki</a>.
|
||||||
public_traces: Traces GPS públiques
|
public_traces: Traces GPS públiques
|
||||||
public_traces_from: Traces GPS públiques de %{user}
|
public_traces_from: Traces GPS públiques de %{user}
|
||||||
|
@ -1462,7 +1462,7 @@ ast:
|
||||||
trace_paging_nav:
|
trace_paging_nav:
|
||||||
newer: Traces más nueves
|
newer: Traces más nueves
|
||||||
older: Traces más antigües
|
older: Traces más antigües
|
||||||
showing_page: Tas na páxina %{page}
|
showing_page: Páxina %{page}
|
||||||
view:
|
view:
|
||||||
delete_track: Desaniciar esta traza
|
delete_track: Desaniciar esta traza
|
||||||
description: "Descripción:"
|
description: "Descripción:"
|
||||||
|
@ -1566,8 +1566,8 @@ ast:
|
||||||
heading: Usuarios
|
heading: Usuarios
|
||||||
hide: Anubrir los usuarios esbillaos
|
hide: Anubrir los usuarios esbillaos
|
||||||
showing:
|
showing:
|
||||||
one: Amosando la páxina %{page} (%{first_item} de %{items})
|
one: Páxina %{page} (%{first_item} de %{items})
|
||||||
other: Amosando la páxina %{page} (%{first_item}-%{last_item} de %{items})
|
other: Páxina %{page} (%{first_item}-%{last_item} de %{items})
|
||||||
summary: "%{name} creáu dende %{ip_address} el %{date}"
|
summary: "%{name} creáu dende %{ip_address} el %{date}"
|
||||||
summary_no_ip: "%{name} creáu el %{date}"
|
summary_no_ip: "%{name} creáu el %{date}"
|
||||||
title: Usuarios
|
title: Usuarios
|
||||||
|
@ -1629,7 +1629,7 @@ ast:
|
||||||
button: Amestar como amigu
|
button: Amestar como amigu
|
||||||
failed: Lo sentimos, hebo un fallu al amestar a %{name} como collaciu.
|
failed: Lo sentimos, hebo un fallu al amestar a %{name} como collaciu.
|
||||||
heading: ¿Amestar a %{user} a los amigos?
|
heading: ¿Amestar a %{user} a los amigos?
|
||||||
success: "%{name} agora ye amigu tuyu."
|
success: ¡%{name} agora ye'l to amigu!
|
||||||
new:
|
new:
|
||||||
confirm email address: "Confirmar direición de corréu:"
|
confirm email address: "Confirmar direición de corréu:"
|
||||||
confirm password: "Confirma la contraseña:"
|
confirm password: "Confirma la contraseña:"
|
||||||
|
@ -1663,7 +1663,7 @@ ast:
|
||||||
your location: El to allugamientu
|
your location: El to allugamientu
|
||||||
remove_friend:
|
remove_friend:
|
||||||
button: Desaniciar como amigu
|
button: Desaniciar como amigu
|
||||||
heading: ¿Desaniciar a %{user} de los amigos?
|
heading: ¿Desaniciar como amigu a %{user}?
|
||||||
not_a_friend: "%{name} nun ye un de los tos amigos."
|
not_a_friend: "%{name} nun ye un de los tos amigos."
|
||||||
success: "%{name} se desanició de los tos amigos."
|
success: "%{name} se desanició de los tos amigos."
|
||||||
reset_password:
|
reset_password:
|
||||||
|
@ -1698,7 +1698,7 @@ ast:
|
||||||
you need to accept or decline: Por favor, llei y aceuta o refuga les nueves Condiciones de Collaboración pa siguir.
|
you need to accept or decline: Por favor, llei y aceuta o refuga les nueves Condiciones de Collaboración pa siguir.
|
||||||
view:
|
view:
|
||||||
activate_user: activar esti usuariu
|
activate_user: activar esti usuariu
|
||||||
add as friend: amestar como amigu
|
add as friend: amestar amigu
|
||||||
ago: (hai %{time_in_words_ago})
|
ago: (hai %{time_in_words_ago})
|
||||||
block_history: bloqueos recibíos
|
block_history: bloqueos recibíos
|
||||||
blocks by me: bloqueos puestos
|
blocks by me: bloqueos puestos
|
||||||
|
@ -1718,10 +1718,10 @@ ast:
|
||||||
diary: diariu
|
diary: diariu
|
||||||
edits: ediciones
|
edits: ediciones
|
||||||
email address: "Direición de corréu electrónicu:"
|
email address: "Direición de corréu electrónicu:"
|
||||||
friends_changesets: Esplorar tolos conxuntos de cambios de los collacios
|
friends_changesets: conxuntos de cambios de los amigos
|
||||||
friends_diaries: Ver toles entraes de diariu de los collacios
|
friends_diaries: entraes de diariu de los amigos
|
||||||
hide_user: anubrir esti usuariu
|
hide_user: anubrir esti usuariu
|
||||||
if set location: Si defines el to allugamientu, equí apaecerá un guapu mapa. Pues conseñar un llugar d'orixe na to páxina de %{settings_link}.
|
if set location: Configura'l to allugamientu na páxina de %{settings_link} pa ver los usuarios cercanos.
|
||||||
km away: a %{count}km de distancia
|
km away: a %{count}km de distancia
|
||||||
latest edit: "Cabera edición %{ago}:"
|
latest edit: "Cabera edición %{ago}:"
|
||||||
m away: a %{count}m de distancia
|
m away: a %{count}m de distancia
|
||||||
|
@ -1733,8 +1733,8 @@ ast:
|
||||||
my settings: les mios preferencies
|
my settings: les mios preferencies
|
||||||
my traces: les mios traces
|
my traces: les mios traces
|
||||||
nearby users: Otros usuarios próximos
|
nearby users: Otros usuarios próximos
|
||||||
nearby_changesets: Ver tolos conxuntos de cambios d'usuarios cercanos
|
nearby_changesets: conxuntos de cambios d'usuarios cercanos
|
||||||
nearby_diaries: Ver toles entraes de diariu d'usuarios cercanos
|
nearby_diaries: entraes de diariu d'usuarios cercanos
|
||||||
new diary entry: nueva entrada del diariu
|
new diary entry: nueva entrada del diariu
|
||||||
no friends: Entá nun amestasti dengún amigu.
|
no friends: Entá nun amestasti dengún amigu.
|
||||||
no nearby users: Entá nun hai otros usuarios que tean mapeando cerca de ti.
|
no nearby users: Entá nun hai otros usuarios que tean mapeando cerca de ti.
|
||||||
|
@ -1818,7 +1818,7 @@ ast:
|
||||||
revoke: ¡Desaniciar!
|
revoke: ¡Desaniciar!
|
||||||
revoker_name: Desaniciáu por
|
revoker_name: Desaniciáu por
|
||||||
show: Amosar
|
show: Amosar
|
||||||
showing_page: Tas na páxina %{page}
|
showing_page: Páxina %{page}
|
||||||
status: Estáu
|
status: Estáu
|
||||||
period:
|
period:
|
||||||
one: 1 hora
|
one: 1 hora
|
||||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -933,7 +933,6 @@ be-Tarask:
|
||||||
user_diaries_tooltip: Паказаць дзёньнікі карыстальнікаў
|
user_diaries_tooltip: Паказаць дзёньнікі карыстальнікаў
|
||||||
view: Прагляд
|
view: Прагляд
|
||||||
view_tooltip: Паказаць мапу
|
view_tooltip: Паказаць мапу
|
||||||
welcome_user: Вітаем, %{user_link}
|
|
||||||
welcome_user_link_tooltip: Ваша старонка ўдзельніка
|
welcome_user_link_tooltip: Ваша старонка ўдзельніка
|
||||||
wiki: Вікі
|
wiki: Вікі
|
||||||
wiki_title: Вікі-сайт праекту
|
wiki_title: Вікі-сайт праекту
|
||||||
|
|
|
@ -987,7 +987,6 @@ br:
|
||||||
user_diaries_tooltip: Gwelet deizlevrioù an implijerien
|
user_diaries_tooltip: Gwelet deizlevrioù an implijerien
|
||||||
view: Gwelet
|
view: Gwelet
|
||||||
view_tooltip: Gwelet ar gartenn
|
view_tooltip: Gwelet ar gartenn
|
||||||
welcome_user: Degemer mat, %{user_link}
|
|
||||||
welcome_user_link_tooltip: Ho pajenn implijer
|
welcome_user_link_tooltip: Ho pajenn implijer
|
||||||
wiki: Wiki
|
wiki: Wiki
|
||||||
wiki_title: Lec'hienn wiki evit ar raktres
|
wiki_title: Lec'hienn wiki evit ar raktres
|
||||||
|
|
|
@ -988,7 +988,6 @@ bs:
|
||||||
user_diaries_tooltip: Prikazati dnevnike korisnika
|
user_diaries_tooltip: Prikazati dnevnike korisnika
|
||||||
view: Karta
|
view: Karta
|
||||||
view_tooltip: Pogledati kartu
|
view_tooltip: Pogledati kartu
|
||||||
welcome_user: Dobrodošli, %{user_link}
|
|
||||||
welcome_user_link_tooltip: Vaša korisnička stranica
|
welcome_user_link_tooltip: Vaša korisnička stranica
|
||||||
wiki: Wiki
|
wiki: Wiki
|
||||||
wiki_title: Wiki stranice projekta
|
wiki_title: Wiki stranice projekta
|
||||||
|
|
|
@ -181,7 +181,7 @@ ca:
|
||||||
way: via
|
way: via
|
||||||
paging_nav:
|
paging_nav:
|
||||||
of: de
|
of: de
|
||||||
showing_page: S'està mostrant pàgina
|
showing_page: pàgina
|
||||||
redacted:
|
redacted:
|
||||||
message_html: La versió %{version} d'aquest %{type} no pot ser mostrada com ha estat redactada. Si us plau, vegeu %{redaction_link} per més detalls.
|
message_html: La versió %{version} d'aquest %{type} no pot ser mostrada com ha estat redactada. Si us plau, vegeu %{redaction_link} per més detalls.
|
||||||
redaction: Redacció %{id}
|
redaction: Redacció %{id}
|
||||||
|
@ -221,7 +221,7 @@ ca:
|
||||||
manually_select: Selecciona manualment una àrea diferent
|
manually_select: Selecciona manualment una àrea diferent
|
||||||
object_list:
|
object_list:
|
||||||
api: Obté aquesta àrea mitjançant l'API
|
api: Obté aquesta àrea mitjançant l'API
|
||||||
back: Mostra llista d'objectes
|
back: Torna a la llista d'objectes
|
||||||
details: Detalls
|
details: Detalls
|
||||||
heading: Llista d'objectes
|
heading: Llista d'objectes
|
||||||
history:
|
history:
|
||||||
|
@ -263,8 +263,8 @@ ca:
|
||||||
way_title: "Via: %{way_name}"
|
way_title: "Via: %{way_name}"
|
||||||
way_details:
|
way_details:
|
||||||
also_part_of:
|
also_part_of:
|
||||||
one: també part de la via %{related_ways}
|
one: part de la via %{related_ways}
|
||||||
other: també part de les vies %{related_ways}
|
other: part de les vies %{related_ways}
|
||||||
nodes: "Nodes:"
|
nodes: "Nodes:"
|
||||||
part_of: "Part de:"
|
part_of: "Part de:"
|
||||||
way_history:
|
way_history:
|
||||||
|
@ -284,7 +284,7 @@ ca:
|
||||||
changeset_paging_nav:
|
changeset_paging_nav:
|
||||||
next: Endavant »
|
next: Endavant »
|
||||||
previous: « Enrere
|
previous: « Enrere
|
||||||
showing_page: Mostrant pàgina %{page}
|
showing_page: Pàgina %{page}
|
||||||
changesets:
|
changesets:
|
||||||
area: Àrea
|
area: Àrea
|
||||||
comment: Comentari
|
comment: Comentari
|
||||||
|
@ -292,13 +292,13 @@ ca:
|
||||||
saved_at: Desat a
|
saved_at: Desat a
|
||||||
user: Usuari
|
user: Usuari
|
||||||
list:
|
list:
|
||||||
description: Canvis recents
|
description: Navega pels canvis recents al mapa
|
||||||
description_bbox: Conjunt de canvis dins de %{bbox}
|
description_bbox: Conjunt de canvis dins de %{bbox}
|
||||||
description_friend: Conjunts de canvis dels vostres amics
|
description_friend: Conjunts de canvis dels vostres amics
|
||||||
description_nearby: Conjunts de canvis d'usuaris propers
|
description_nearby: Conjunts de canvis d'usuaris propers
|
||||||
description_user: Conjunt de canvis fets per %{user}
|
description_user: Conjunt de canvis fets per %{user}
|
||||||
description_user_bbox: Conjunt de canvis de %{user} dins de %{bbox}
|
description_user_bbox: Conjunt de canvis de %{user} dins de %{bbox}
|
||||||
empty_anon_html: Encara no ha estat feta cap modificació
|
empty_anon_html: Encara no ha estat feta cap modificació.
|
||||||
empty_user_html: Sembla que encara no heu fet cap modificació. Per començar feu un cop d'ull a la <a href='http://wiki.openstreetmap.org/wiki/Beginners_Guide_1.3'>Guia d'iniciació </a>.
|
empty_user_html: Sembla que encara no heu fet cap modificació. Per començar feu un cop d'ull a la <a href='http://wiki.openstreetmap.org/wiki/Beginners_Guide_1.3'>Guia d'iniciació </a>.
|
||||||
heading: Conjunt de canvis
|
heading: Conjunt de canvis
|
||||||
heading_bbox: Conjunt de canvis
|
heading_bbox: Conjunt de canvis
|
||||||
|
@ -366,7 +366,7 @@ ca:
|
||||||
newer_entries: Entrades més Recents
|
newer_entries: Entrades més Recents
|
||||||
no_entries: No hi ha entrades al diari
|
no_entries: No hi ha entrades al diari
|
||||||
older_entries: Entrades més Antigues
|
older_entries: Entrades més Antigues
|
||||||
recent_entries: "Entrades Recents al diari:"
|
recent_entries: "Entrades recents al diari:"
|
||||||
title: Diaris d'usuari/a
|
title: Diaris d'usuari/a
|
||||||
title_friends: Diaris dels amics
|
title_friends: Diaris dels amics
|
||||||
title_nearby: Diaris d'amics propers
|
title_nearby: Diaris d'amics propers
|
||||||
|
@ -998,7 +998,6 @@ ca:
|
||||||
user_diaries_tooltip: Mostra els diaris d'usuari
|
user_diaries_tooltip: Mostra els diaris d'usuari
|
||||||
view: Mostra
|
view: Mostra
|
||||||
view_tooltip: Mostra el mapa
|
view_tooltip: Mostra el mapa
|
||||||
welcome_user: Benvingut/da, %{user_link}
|
|
||||||
welcome_user_link_tooltip: La teva pàgina d'usuari
|
welcome_user_link_tooltip: La teva pàgina d'usuari
|
||||||
wiki: Wikia
|
wiki: Wikia
|
||||||
wiki_title: Lloc web de wiki per al projecte
|
wiki_title: Lloc web de wiki per al projecte
|
||||||
|
@ -1430,6 +1429,7 @@ ca:
|
||||||
visibility: "Visibilitat:"
|
visibility: "Visibilitat:"
|
||||||
visibility_help: Què vol dir això?
|
visibility_help: Què vol dir això?
|
||||||
list:
|
list:
|
||||||
|
description: Navega pels tracks pujats recentment
|
||||||
empty_html: Aquí encara no hi ha res. <a href='%{upload_link}'>Pujeu un nou track</a> o apreneu més sobre els tracks GPS a la <a href='http://wiki.openstreetmap.org/wiki/Beginners_Guide_1.2'>pàgina wiki</a>.
|
empty_html: Aquí encara no hi ha res. <a href='%{upload_link}'>Pujeu un nou track</a> o apreneu més sobre els tracks GPS a la <a href='http://wiki.openstreetmap.org/wiki/Beginners_Guide_1.2'>pàgina wiki</a>.
|
||||||
public_traces: Traces GPS públiques
|
public_traces: Traces GPS públiques
|
||||||
public_traces_from: Tracks GPS públics de %{user}
|
public_traces_from: Tracks GPS públics de %{user}
|
||||||
|
@ -1477,7 +1477,7 @@ ca:
|
||||||
trace_paging_nav:
|
trace_paging_nav:
|
||||||
newer: Tracks més recents
|
newer: Tracks més recents
|
||||||
older: Tracks més antics
|
older: Tracks més antics
|
||||||
showing_page: S'està mostrant pàgina %{page}
|
showing_page: Pàgina %{page}
|
||||||
view:
|
view:
|
||||||
delete_track: Elimina aquesta traça
|
delete_track: Elimina aquesta traça
|
||||||
description: "Descripció:"
|
description: "Descripció:"
|
||||||
|
@ -1581,8 +1581,8 @@ ca:
|
||||||
heading: Usuaris
|
heading: Usuaris
|
||||||
hide: Amaga els usuaris seleccionats
|
hide: Amaga els usuaris seleccionats
|
||||||
showing:
|
showing:
|
||||||
one: "mostrant pàgina %{page} (%{first_item} de %{items}) "
|
one: Pàgina %{page} (%{first_item} de %{items})
|
||||||
other: Mostrant pàgina %{page} (%{first_item}-%{last_item} de %{items})
|
other: Pàgina %{page} (%{first_item}-%{last_item} de %{items})
|
||||||
summary: "%{name} creat a partir de %{ip_address} el %{date}"
|
summary: "%{name} creat a partir de %{ip_address} el %{date}"
|
||||||
summary_no_ip: "%{name} creat el %{date}"
|
summary_no_ip: "%{name} creat el %{date}"
|
||||||
title: Usuaris
|
title: Usuaris
|
||||||
|
@ -1644,7 +1644,7 @@ ca:
|
||||||
button: Afegeix als amics
|
button: Afegeix als amics
|
||||||
failed: Ho sentim, no afegir %{name} com un amic.
|
failed: Ho sentim, no afegir %{name} com un amic.
|
||||||
heading: Voleu afegir % {user} com un amic?
|
heading: Voleu afegir % {user} com un amic?
|
||||||
success: "%{name} ara és el vostre amic."
|
success: "%{name} és ara el vostre amic!"
|
||||||
new:
|
new:
|
||||||
confirm email address: "Confirmeu l'adreça de correu electrònic:"
|
confirm email address: "Confirmeu l'adreça de correu electrònic:"
|
||||||
confirm password: "Confirmeu la contrasenya:"
|
confirm password: "Confirmeu la contrasenya:"
|
||||||
|
@ -1678,7 +1678,7 @@ ca:
|
||||||
your location: La vostra ubicació
|
your location: La vostra ubicació
|
||||||
remove_friend:
|
remove_friend:
|
||||||
button: Suprimeix dels amics
|
button: Suprimeix dels amics
|
||||||
heading: Voleu suprimir % {user} dels amics?
|
heading: Voleu suprimir %{user} dels amics?
|
||||||
not_a_friend: "%{name} no és un dels seus amics."
|
not_a_friend: "%{name} no és un dels seus amics."
|
||||||
success: "%{name} s'ha suprimit dels teus amics."
|
success: "%{name} s'ha suprimit dels teus amics."
|
||||||
reset_password:
|
reset_password:
|
||||||
|
@ -1733,10 +1733,10 @@ ca:
|
||||||
diary: diari
|
diary: diari
|
||||||
edits: modificacions
|
edits: modificacions
|
||||||
email address: "Adreça de correu:"
|
email address: "Adreça de correu:"
|
||||||
friends_changesets: Navega per tots els conjunts de canvis dels vostres amics
|
friends_changesets: conjunts de canvis dels vostres amics
|
||||||
friends_diaries: Navega totes les entrades de diari dels amics
|
friends_diaries: entrades de diari dels amics
|
||||||
hide_user: amagar aquest usuari
|
hide_user: amagar aquest usuari
|
||||||
if set location: Si establiu la vostra ubicació, aquí es mostrarà un mapa i altre coses interessants. Podeu configurar la vostra ubicació a la pàgina %{settings_link}.
|
if set location: Podeu configurar la vostra ubicació a la pàgina %{settings_link} per veure els usuaris propers a vostè.
|
||||||
km away: "%{count}km de distància"
|
km away: "%{count}km de distància"
|
||||||
latest edit: "Última edició %{ago}:"
|
latest edit: "Última edició %{ago}:"
|
||||||
m away: "%{count}m de distància"
|
m away: "%{count}m de distància"
|
||||||
|
@ -1748,8 +1748,8 @@ ca:
|
||||||
my settings: les meves preferències
|
my settings: les meves preferències
|
||||||
my traces: les meves traces
|
my traces: les meves traces
|
||||||
nearby users: Altres usuaris propers
|
nearby users: Altres usuaris propers
|
||||||
nearby_changesets: Navega tots els conjunts de canvis dels usuaris propers
|
nearby_changesets: conjunts de canvis dels usuaris propers
|
||||||
nearby_diaries: Navega totes les entrades de diari dels usuaris propers
|
nearby_diaries: entrades de diari dels usuaris propers
|
||||||
new diary entry: Nova entrada del diari
|
new diary entry: Nova entrada del diari
|
||||||
no friends: No has afegit cap amics encara.
|
no friends: No has afegit cap amics encara.
|
||||||
no nearby users: Hi ha altres usuaris que admetre a Cartografia prop encara.
|
no nearby users: Hi ha altres usuaris que admetre a Cartografia prop encara.
|
||||||
|
@ -1833,7 +1833,7 @@ ca:
|
||||||
revoke: Revoca!
|
revoke: Revoca!
|
||||||
revoker_name: Revocat per
|
revoker_name: Revocat per
|
||||||
show: Mostra
|
show: Mostra
|
||||||
showing_page: Mostrant pàgina %{page}
|
showing_page: Pàgina %{page}
|
||||||
status: Estat
|
status: Estat
|
||||||
period:
|
period:
|
||||||
one: 1 hora
|
one: 1 hora
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
# Export driver: syck-pecl
|
# Export driver: syck-pecl
|
||||||
# Author: Bilbo
|
# Author: Bilbo
|
||||||
# Author: Chmee2
|
# Author: Chmee2
|
||||||
|
# Author: JAn Dudík
|
||||||
# Author: Jezevec
|
# Author: Jezevec
|
||||||
# Author: Jkjk
|
# Author: Jkjk
|
||||||
# Author: Kuvaly
|
# Author: Kuvaly
|
||||||
|
@ -181,7 +182,7 @@ cs:
|
||||||
way: cesta
|
way: cesta
|
||||||
paging_nav:
|
paging_nav:
|
||||||
of: z
|
of: z
|
||||||
showing_page: Zobrazuji stranu
|
showing_page: stránka
|
||||||
redacted:
|
redacted:
|
||||||
message_html: Verzi %{version} tohoto objektu %{type} nelze zobrazit, protože byla skryta. Více informací uvádí stránka %{redaction_link}.
|
message_html: Verzi %{version} tohoto objektu %{type} nelze zobrazit, protože byla skryta. Více informací uvádí stránka %{redaction_link}.
|
||||||
redaction: Redakce %{id}
|
redaction: Redakce %{id}
|
||||||
|
@ -221,7 +222,7 @@ cs:
|
||||||
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
|
api: Získat tuto oblast pomocí API
|
||||||
back: Zobrazit seznam objektů
|
back: Zpět na seznam objektů
|
||||||
details: Detaily
|
details: Detaily
|
||||||
heading: Seznam objektů
|
heading: Seznam objektů
|
||||||
history:
|
history:
|
||||||
|
@ -263,8 +264,8 @@ cs:
|
||||||
way_title: "Cesta: %{way_name}"
|
way_title: "Cesta: %{way_name}"
|
||||||
way_details:
|
way_details:
|
||||||
also_part_of:
|
also_part_of:
|
||||||
one: patří také do cesty %{related_ways}
|
one: patří do cesty %{related_ways}
|
||||||
other: patří také do cest %{related_ways}
|
other: patří do cest %{related_ways}
|
||||||
nodes: "Uzly:"
|
nodes: "Uzly:"
|
||||||
part_of: "Součást:"
|
part_of: "Součást:"
|
||||||
way_history:
|
way_history:
|
||||||
|
@ -284,7 +285,7 @@ cs:
|
||||||
changeset_paging_nav:
|
changeset_paging_nav:
|
||||||
next: Následující »
|
next: Následující »
|
||||||
previous: « Předchozí
|
previous: « Předchozí
|
||||||
showing_page: Zobrazuji stranu %{page}
|
showing_page: Stránka %{page}
|
||||||
changesets:
|
changesets:
|
||||||
area: Oblast
|
area: Oblast
|
||||||
comment: Komentář
|
comment: Komentář
|
||||||
|
@ -292,13 +293,13 @@ cs:
|
||||||
saved_at: Uloženo v
|
saved_at: Uloženo v
|
||||||
user: Uživatel
|
user: Uživatel
|
||||||
list:
|
list:
|
||||||
description: Poslední změny
|
description: Procházení nedávných příspěvků do mapy
|
||||||
description_bbox: Sady změn v %{bbox}
|
description_bbox: Sady změn v %{bbox}
|
||||||
description_friend: Sady změn vašich přátel
|
description_friend: Sady změn vašich přátel
|
||||||
description_nearby: Sady změn uživatelů poblíž
|
description_nearby: Sady změn uživatelů poblíž
|
||||||
description_user: Sady změn uživatele %{user}
|
description_user: Sady změn uživatele %{user}
|
||||||
description_user_bbox: Sady změn uživatele %{user} v %{bbox}
|
description_user_bbox: Sady změn uživatele %{user} v %{bbox}
|
||||||
empty_anon_html: Zatím žádné editace
|
empty_anon_html: Zatím žádné editace.
|
||||||
empty_user_html: Vypadá to, že jste zatím neprovedli žádné editace. Pokud chcete začít, podívejte se do <a href='http://wiki.openstreetmap.org/wiki/CS:Beginners_Guide_1.3'>Příručky pro začátečníka</a>.
|
empty_user_html: Vypadá to, že jste zatím neprovedli žádné editace. Pokud chcete začít, podívejte se do <a href='http://wiki.openstreetmap.org/wiki/CS:Beginners_Guide_1.3'>Příručky pro začátečníka</a>.
|
||||||
heading: Sady změn
|
heading: Sady změn
|
||||||
heading_bbox: Sady změn
|
heading_bbox: Sady změn
|
||||||
|
@ -367,7 +368,7 @@ cs:
|
||||||
newer_entries: Novější záznamy
|
newer_entries: Novější záznamy
|
||||||
no_entries: Žádné záznamy v deníčku
|
no_entries: Žádné záznamy v deníčku
|
||||||
older_entries: Starší záznamy
|
older_entries: Starší záznamy
|
||||||
recent_entries: "Aktuální deníčkové záznamy:"
|
recent_entries: Aktuální deníčkové záznamy
|
||||||
title: Deníčky uživatelů
|
title: Deníčky uživatelů
|
||||||
title_friends: Deníčky přátel
|
title_friends: Deníčky přátel
|
||||||
title_nearby: Deníčky uživatelů poblíž
|
title_nearby: Deníčky uživatelů poblíž
|
||||||
|
@ -1000,7 +1001,6 @@ cs:
|
||||||
user_diaries_tooltip: Zobrazit deníčky uživatelů
|
user_diaries_tooltip: Zobrazit deníčky uživatelů
|
||||||
view: Zobrazit
|
view: Zobrazit
|
||||||
view_tooltip: Zobrazit mapu
|
view_tooltip: Zobrazit mapu
|
||||||
welcome_user: Vítejte, %{user_link}
|
|
||||||
welcome_user_link_tooltip: Vaše uživatelská stránka
|
welcome_user_link_tooltip: Vaše uživatelská stránka
|
||||||
wiki: wiki
|
wiki: wiki
|
||||||
wiki_title: Wiki k tomuto projektu
|
wiki_title: Wiki k tomuto projektu
|
||||||
|
@ -1438,6 +1438,7 @@ cs:
|
||||||
visibility: "Viditelnost:"
|
visibility: "Viditelnost:"
|
||||||
visibility_help: co tohle znamená?
|
visibility_help: co tohle znamená?
|
||||||
list:
|
list:
|
||||||
|
description: Procházení nedávno nahraných GPS stop
|
||||||
empty_html: Nic tu ještě není. <a href='%{upload_link}'>Nahrajte novou stopu</a> nebo si něco o GPS stopách přečtěte na <a href='http://wiki.openstreetmap.org/wiki/CS:Beginners_Guide_1.2'>wiki</a>.
|
empty_html: Nic tu ještě není. <a href='%{upload_link}'>Nahrajte novou stopu</a> nebo si něco o GPS stopách přečtěte na <a href='http://wiki.openstreetmap.org/wiki/CS:Beginners_Guide_1.2'>wiki</a>.
|
||||||
public_traces: Veřejné GPS stopy
|
public_traces: Veřejné GPS stopy
|
||||||
public_traces_from: Veřejné GPS stopy uživatele %{user}
|
public_traces_from: Veřejné GPS stopy uživatele %{user}
|
||||||
|
@ -1485,7 +1486,7 @@ cs:
|
||||||
trace_paging_nav:
|
trace_paging_nav:
|
||||||
newer: Novější stopy
|
newer: Novější stopy
|
||||||
older: Starší stopy
|
older: Starší stopy
|
||||||
showing_page: Zobrazuji stranu %{page}
|
showing_page: Stránka %{page}
|
||||||
view:
|
view:
|
||||||
delete_track: Smazat tuto stopu
|
delete_track: Smazat tuto stopu
|
||||||
description: "Popis:"
|
description: "Popis:"
|
||||||
|
@ -1590,8 +1591,8 @@ cs:
|
||||||
heading: Uživatelé
|
heading: Uživatelé
|
||||||
hide: Skrýt vybrané uživatele
|
hide: Skrýt vybrané uživatele
|
||||||
showing:
|
showing:
|
||||||
one: Zobrazuje se stránka %{page} (%{first_item} z %{items})
|
one: Stránka %{page} (%{first_item} z %{items})
|
||||||
other: Zobrazuje se stránka %{page} (%{first_item}–%{last_item} z %{items})
|
other: Stránka %{page} (%{first_item}–%{last_item} z %{items})
|
||||||
summary: "%{name} vytvořeno %{date} z %{ip_address}"
|
summary: "%{name} vytvořeno %{date} z %{ip_address}"
|
||||||
summary_no_ip: "%{name} vytvořen %{date}"
|
summary_no_ip: "%{name} vytvořen %{date}"
|
||||||
title: Uživatelé
|
title: Uživatelé
|
||||||
|
@ -1653,7 +1654,7 @@ cs:
|
||||||
button: Přidat jako přítele
|
button: Přidat jako přítele
|
||||||
failed: Je mi líto, nepodařilo se přidat %{name} jako přítele.
|
failed: Je mi líto, nepodařilo se přidat %{name} jako přítele.
|
||||||
heading: Přidat uživatele %{user} jako přítele?
|
heading: Přidat uživatele %{user} jako přítele?
|
||||||
success: "%{name} je nyní váš přítel."
|
success: "%{name} je nyní váš přítel!"
|
||||||
new:
|
new:
|
||||||
confirm email address: "Potvrdit e-mailovou adresu:"
|
confirm email address: "Potvrdit e-mailovou adresu:"
|
||||||
confirm password: "Potvrdit heslo:"
|
confirm password: "Potvrdit heslo:"
|
||||||
|
@ -1724,7 +1725,7 @@ cs:
|
||||||
you need to accept or decline: Pro pokračování si prosím přečtěte a přijměte nebo odmítněte nové Podmínky pro přispěvatele.
|
you need to accept or decline: Pro pokračování si prosím přečtěte a přijměte nebo odmítněte nové Podmínky pro přispěvatele.
|
||||||
view:
|
view:
|
||||||
activate_user: aktivovat tohoto uživatele
|
activate_user: aktivovat tohoto uživatele
|
||||||
add as friend: přidat jako přítele
|
add as friend: přidat do přátel
|
||||||
ago: (před %{time_in_words_ago})
|
ago: (před %{time_in_words_ago})
|
||||||
block_history: zablokování
|
block_history: zablokování
|
||||||
blocks by me: zablokování mnou
|
blocks by me: zablokování mnou
|
||||||
|
@ -1744,10 +1745,10 @@ cs:
|
||||||
diary: deníček
|
diary: deníček
|
||||||
edits: editace
|
edits: editace
|
||||||
email address: "E-mailová adresa:"
|
email address: "E-mailová adresa:"
|
||||||
friends_changesets: Procházet všechny sady změn mých přátel
|
friends_changesets: sady změn přátel
|
||||||
friends_diaries: Procházet všechny záznamy v deníčcích přátel
|
friends_diaries: záznamy v deníčcích přátel
|
||||||
hide_user: skrýt tohoto uživatele
|
hide_user: skrýt tohoto uživatele
|
||||||
if set location: Když si nastavíte svou polohu, objeví se níže hezká mapka atp. Polohu domova si můžete nastavit na stránce %{settings_link}.
|
if set location: Nastavte si domácí souřadnice na stránce %{settings_link} abyste viděli blízké uživatele.
|
||||||
km away: "%{count} km"
|
km away: "%{count} km"
|
||||||
latest edit: "Poslední editace %{ago}:"
|
latest edit: "Poslední editace %{ago}:"
|
||||||
m away: "%{count} m"
|
m away: "%{count} m"
|
||||||
|
@ -1759,13 +1760,13 @@ cs:
|
||||||
my settings: moje nastavení
|
my settings: moje nastavení
|
||||||
my traces: moje stopy
|
my traces: moje stopy
|
||||||
nearby users: Další uživatelé poblíž
|
nearby users: Další uživatelé poblíž
|
||||||
nearby_changesets: Procházet všechny sady změn uživatelů poblíž
|
nearby_changesets: sady změn uživatelů poblíž
|
||||||
nearby_diaries: Procházet všechny záznamy v deníčcích uživatelů poblíž
|
nearby_diaries: záznamy v deníčcích uživatelů poblíž
|
||||||
new diary entry: nový záznam do deníčku
|
new diary entry: nový záznam do deníčku
|
||||||
no friends: Zatím jste nepřidali žádné přátele.
|
no friends: Zatím jste nepřidali žádné přátele.
|
||||||
no nearby users: Nejsou známi žádní uživatelé, kteří by uvedli domov blízko vás.
|
no nearby users: Nejsou známi žádní uživatelé, kteří by uvedli domov blízko vás.
|
||||||
oauth settings: nastavení oauth
|
oauth settings: nastavení oauth
|
||||||
remove as friend: odstranit jako přítele
|
remove as friend: odebrat z přátel
|
||||||
role:
|
role:
|
||||||
administrator: Tento uživatel je správce
|
administrator: Tento uživatel je správce
|
||||||
grant:
|
grant:
|
||||||
|
@ -1844,7 +1845,7 @@ cs:
|
||||||
revoke: Zrušit !
|
revoke: Zrušit !
|
||||||
revoker_name: Zrušno
|
revoker_name: Zrušno
|
||||||
show: Zobrazit
|
show: Zobrazit
|
||||||
showing_page: Zobrazuji stranu %{page}
|
showing_page: Stránka %{page}
|
||||||
status: Stav
|
status: Stav
|
||||||
period:
|
period:
|
||||||
one: 1 hodina
|
one: 1 hodina
|
||||||
|
|
|
@ -176,7 +176,7 @@ da:
|
||||||
way: vej
|
way: vej
|
||||||
paging_nav:
|
paging_nav:
|
||||||
of: af
|
of: af
|
||||||
showing_page: Viser side
|
showing_page: side
|
||||||
redacted:
|
redacted:
|
||||||
message_html: Version %{version} af denne %{type} kan ikke vises, da den er omarbejdet. Se venligst %{redaction_link} for detaljer.
|
message_html: Version %{version} af denne %{type} kan ikke vises, da den er omarbejdet. Se venligst %{redaction_link} for detaljer.
|
||||||
redaction: Omarbejdelse %{id}
|
redaction: Omarbejdelse %{id}
|
||||||
|
@ -216,7 +216,7 @@ da:
|
||||||
manually_select: Vælg et andet område manuelt
|
manually_select: Vælg et andet område manuelt
|
||||||
object_list:
|
object_list:
|
||||||
api: Hent dette område fra API'et
|
api: Hent dette område fra API'et
|
||||||
back: Vis objektliste
|
back: Tilbage til objektliste
|
||||||
details: Detaljer
|
details: Detaljer
|
||||||
heading: Objektliste
|
heading: Objektliste
|
||||||
history:
|
history:
|
||||||
|
@ -258,8 +258,8 @@ da:
|
||||||
way_title: "Vej: %{way_name}"
|
way_title: "Vej: %{way_name}"
|
||||||
way_details:
|
way_details:
|
||||||
also_part_of:
|
also_part_of:
|
||||||
one: også del af vejen %{related_ways}
|
one: del af vejen %{related_ways}
|
||||||
other: også del af vejene %{related_ways}
|
other: del af vejene %{related_ways}
|
||||||
nodes: "Punkter:"
|
nodes: "Punkter:"
|
||||||
part_of: "Del af:"
|
part_of: "Del af:"
|
||||||
way_history:
|
way_history:
|
||||||
|
@ -279,7 +279,7 @@ da:
|
||||||
changeset_paging_nav:
|
changeset_paging_nav:
|
||||||
next: Næste »
|
next: Næste »
|
||||||
previous: « Forrige
|
previous: « Forrige
|
||||||
showing_page: Viser side %{page}
|
showing_page: Side %{page}
|
||||||
changesets:
|
changesets:
|
||||||
area: Område
|
area: Område
|
||||||
comment: Kommentar
|
comment: Kommentar
|
||||||
|
@ -287,13 +287,13 @@ da:
|
||||||
saved_at: Gemt
|
saved_at: Gemt
|
||||||
user: Bruger
|
user: Bruger
|
||||||
list:
|
list:
|
||||||
description: Seneste ændringer
|
description: Seneste ændringer af kortet
|
||||||
description_bbox: Ændringer inden for %{bbox}
|
description_bbox: Ændringer inden for %{bbox}
|
||||||
description_friend: Ændringssæt af dine venner
|
description_friend: Ændringssæt af dine venner
|
||||||
description_nearby: Ændringssæt af nærliggende brugere
|
description_nearby: Ændringssæt af nærliggende brugere
|
||||||
description_user: Ændringssæt af %{user}
|
description_user: Ændringssæt af %{user}
|
||||||
description_user_bbox: Ændringssæt af %{user} inden for %{bbox}
|
description_user_bbox: Ændringssæt af %{user} inden for %{bbox}
|
||||||
empty_anon_html: Ingen redigeringer foretaget endnu
|
empty_anon_html: Ingen redigeringer foretaget endnu.
|
||||||
empty_user_html: Det ser ud til du endnu ikke har lavet nogen redigeringer. Tjek <a href='http://wiki.openstreetmap.org/wiki/Beginners_Guide_1.3'>begynderens' guide</a> for at komme i gang.
|
empty_user_html: Det ser ud til du endnu ikke har lavet nogen redigeringer. Tjek <a href='http://wiki.openstreetmap.org/wiki/Beginners_Guide_1.3'>begynderens' guide</a> for at komme i gang.
|
||||||
heading: Ændringssæt
|
heading: Ændringssæt
|
||||||
heading_bbox: Ændringssæt
|
heading_bbox: Ændringssæt
|
||||||
|
@ -361,7 +361,7 @@ da:
|
||||||
newer_entries: Nyere indlæg
|
newer_entries: Nyere indlæg
|
||||||
no_entries: Ingen blogindlæg
|
no_entries: Ingen blogindlæg
|
||||||
older_entries: Ældre indlæg
|
older_entries: Ældre indlæg
|
||||||
recent_entries: "Seneste blogindlæg:"
|
recent_entries: Seneste blogindlæg
|
||||||
title: Brugerblogs
|
title: Brugerblogs
|
||||||
title_friends: Venners blogs
|
title_friends: Venners blogs
|
||||||
title_nearby: Blogs fra brugere i nærheden
|
title_nearby: Blogs fra brugere i nærheden
|
||||||
|
@ -992,7 +992,6 @@ da:
|
||||||
user_diaries_tooltip: Vis brugerblogs
|
user_diaries_tooltip: Vis brugerblogs
|
||||||
view: Vis
|
view: Vis
|
||||||
view_tooltip: Vis kortet
|
view_tooltip: Vis kortet
|
||||||
welcome_user: Velkommen, %{user_link}
|
|
||||||
welcome_user_link_tooltip: Din brugerside
|
welcome_user_link_tooltip: Din brugerside
|
||||||
wiki: Wiki
|
wiki: Wiki
|
||||||
wiki_title: Wikisite for projektet
|
wiki_title: Wikisite for projektet
|
||||||
|
@ -1424,6 +1423,7 @@ da:
|
||||||
visibility: "Synlighed:"
|
visibility: "Synlighed:"
|
||||||
visibility_help: hvad betyder det her?
|
visibility_help: hvad betyder det her?
|
||||||
list:
|
list:
|
||||||
|
description: Gennemse de seneste GPS track uploads
|
||||||
empty_html: Der er ingenting her endnu. <a href='%{upload_link}'>Upload et nyt spor</a> eller lær mere om GPS sporing på <a href='http://wiki.openstreetmap.org/wiki/Beginners_Guide_1.2'>wiki siden</a>.
|
empty_html: Der er ingenting her endnu. <a href='%{upload_link}'>Upload et nyt spor</a> eller lær mere om GPS sporing på <a href='http://wiki.openstreetmap.org/wiki/Beginners_Guide_1.2'>wiki siden</a>.
|
||||||
public_traces: Offentlige GPS-spor
|
public_traces: Offentlige GPS-spor
|
||||||
public_traces_from: Offentlige GPS-spor fra %{user}
|
public_traces_from: Offentlige GPS-spor fra %{user}
|
||||||
|
@ -1471,7 +1471,7 @@ da:
|
||||||
trace_paging_nav:
|
trace_paging_nav:
|
||||||
newer: Nyere spor
|
newer: Nyere spor
|
||||||
older: Ældre spor
|
older: Ældre spor
|
||||||
showing_page: Viser side %{page}
|
showing_page: Side %{page}
|
||||||
view:
|
view:
|
||||||
delete_track: Slet dette spor
|
delete_track: Slet dette spor
|
||||||
description: "Beskrivelse:"
|
description: "Beskrivelse:"
|
||||||
|
@ -1575,8 +1575,8 @@ da:
|
||||||
heading: Brugere
|
heading: Brugere
|
||||||
hide: Skjul valgte brugere
|
hide: Skjul valgte brugere
|
||||||
showing:
|
showing:
|
||||||
one: Viser side %{page} (%{first_item} af %{items})
|
one: Side %{page} (%{first_item} af %{items})
|
||||||
other: Viser side %{page} (%{first_item}-%{last_item} af %{items})
|
other: Side %{page} (%{first_item}-%{last_item} af %{items})
|
||||||
summary: "%{name} oprettet fra %{ip_address} på %{date}"
|
summary: "%{name} oprettet fra %{ip_address} på %{date}"
|
||||||
summary_no_ip: "%{name} oprettet på %{date}"
|
summary_no_ip: "%{name} oprettet på %{date}"
|
||||||
title: Brugere
|
title: Brugere
|
||||||
|
@ -1638,7 +1638,7 @@ da:
|
||||||
button: Tilføj som en ven
|
button: Tilføj som en ven
|
||||||
failed: Desværre, kunne ikke tilføje %{name} som din ven.
|
failed: Desværre, kunne ikke tilføje %{name} som din ven.
|
||||||
heading: Tilføj %{user} som en ven?
|
heading: Tilføj %{user} som en ven?
|
||||||
success: "%{name} er nu din ven."
|
success: "%{name} er nu din ven!"
|
||||||
new:
|
new:
|
||||||
confirm email address: "Bekræft e-mail-adresse:"
|
confirm email address: "Bekræft e-mail-adresse:"
|
||||||
confirm password: "Bekræft adgangskode:"
|
confirm password: "Bekræft adgangskode:"
|
||||||
|
@ -1671,8 +1671,8 @@ da:
|
||||||
nearby mapper: Bruger i nærheden
|
nearby mapper: Bruger i nærheden
|
||||||
your location: Din position
|
your location: Din position
|
||||||
remove_friend:
|
remove_friend:
|
||||||
button: Fjern som en ven
|
button: Fjern som ven
|
||||||
heading: Fjern %{user} som en ven?
|
heading: Fjern %{user} som ven?
|
||||||
not_a_friend: "%{name} er ikke en af dine venner."
|
not_a_friend: "%{name} er ikke en af dine venner."
|
||||||
success: "%{name} blev fjernet fra din liste af venner."
|
success: "%{name} blev fjernet fra din liste af venner."
|
||||||
reset_password:
|
reset_password:
|
||||||
|
@ -1727,10 +1727,10 @@ da:
|
||||||
diary: blog
|
diary: blog
|
||||||
edits: ændringer
|
edits: ændringer
|
||||||
email address: "E-mail-adresse:"
|
email address: "E-mail-adresse:"
|
||||||
friends_changesets: Gennemse alle ændringssæt af venner
|
friends_changesets: venners ændringssæt
|
||||||
friends_diaries: Gennemse alle blogindlæg af venner
|
friends_diaries: venners blogindlæg
|
||||||
hide_user: skjul denne bruger
|
hide_user: skjul denne bruger
|
||||||
if set location: Hvis du indstiller din position, viser der sig et pænt kort her. Du kan indstille din hjemmeposition på din %{settings_link}-side.
|
if set location: Indstil din hjemmeposition på siden %{settings_link} for at se andre brugere i nærheden.
|
||||||
km away: "%{count}km væk"
|
km away: "%{count}km væk"
|
||||||
latest edit: "Seneste ændring %{ago}:"
|
latest edit: "Seneste ændring %{ago}:"
|
||||||
m away: "%{count}m væk"
|
m away: "%{count}m væk"
|
||||||
|
@ -1742,8 +1742,8 @@ da:
|
||||||
my settings: mine indstillinger
|
my settings: mine indstillinger
|
||||||
my traces: mine GPS-spor
|
my traces: mine GPS-spor
|
||||||
nearby users: "Andre brugere i nærheden:"
|
nearby users: "Andre brugere i nærheden:"
|
||||||
nearby_changesets: Gennemse alle ændringssæt af brugere i nærheden
|
nearby_changesets: ændringssæt af brugere i nærheden
|
||||||
nearby_diaries: Gennemse alle blogindlæg af brugere i nærheden
|
nearby_diaries: blogindlæg af brugere i nærheden
|
||||||
new diary entry: nyt blogindlæg
|
new diary entry: nyt blogindlæg
|
||||||
no friends: Du har ikke tilføjet nogle venner endnu.
|
no friends: Du har ikke tilføjet nogle venner endnu.
|
||||||
no nearby users: Der er ingen andre brugere der har angivet at de kortlægger i nærheden.
|
no nearby users: Der er ingen andre brugere der har angivet at de kortlægger i nærheden.
|
||||||
|
@ -1827,7 +1827,7 @@ da:
|
||||||
revoke: Tilbagekald!
|
revoke: Tilbagekald!
|
||||||
revoker_name: Tilbagekaldt af
|
revoker_name: Tilbagekaldt af
|
||||||
show: Vis
|
show: Vis
|
||||||
showing_page: Viser side %{page}
|
showing_page: Side %{page}
|
||||||
status: Status
|
status: Status
|
||||||
period:
|
period:
|
||||||
one: 1 time
|
one: 1 time
|
||||||
|
|
|
@ -191,7 +191,7 @@ de:
|
||||||
way: Der Weg
|
way: Der Weg
|
||||||
paging_nav:
|
paging_nav:
|
||||||
of: von
|
of: von
|
||||||
showing_page: Zeige Seite
|
showing_page: Seite
|
||||||
redacted:
|
redacted:
|
||||||
message_html: "Version %{version} dieses %{type}s kann nicht angezeigt werden. Weitere Informationen sind hier angegeben: %{redaction_link}."
|
message_html: "Version %{version} dieses %{type}s kann nicht angezeigt werden. Weitere Informationen sind hier angegeben: %{redaction_link}."
|
||||||
redaction: Ausgabe %{id}
|
redaction: Ausgabe %{id}
|
||||||
|
@ -231,7 +231,7 @@ de:
|
||||||
manually_select: Einen anderen Kartenausschnitt manuell auswählen
|
manually_select: Einen anderen Kartenausschnitt manuell auswählen
|
||||||
object_list:
|
object_list:
|
||||||
api: Diesen Bereich von der API abfragen
|
api: Diesen Bereich von der API abfragen
|
||||||
back: Objektliste anzeigen
|
back: Zurück zur Objektliste
|
||||||
details: Details
|
details: Details
|
||||||
heading: Objektliste
|
heading: Objektliste
|
||||||
history:
|
history:
|
||||||
|
@ -273,8 +273,8 @@ de:
|
||||||
way_title: "Weg: %{way_name}"
|
way_title: "Weg: %{way_name}"
|
||||||
way_details:
|
way_details:
|
||||||
also_part_of:
|
also_part_of:
|
||||||
one: Auch Teil des Wegs %{related_ways}
|
one: Teil des Wegs %{related_ways}
|
||||||
other: Auch Teil der Wege %{related_ways}
|
other: Teil der Wege %{related_ways}
|
||||||
nodes: "Knoten:"
|
nodes: "Knoten:"
|
||||||
part_of: "Teil von:"
|
part_of: "Teil von:"
|
||||||
way_history:
|
way_history:
|
||||||
|
@ -302,7 +302,7 @@ de:
|
||||||
saved_at: Gespeichert am
|
saved_at: Gespeichert am
|
||||||
user: Benutzer
|
user: Benutzer
|
||||||
list:
|
list:
|
||||||
description: Letzte Änderungen
|
description: Die letzten Beiträge an der Karte durchstöbern
|
||||||
description_bbox: Letzte Änderungen in %{bbox}
|
description_bbox: Letzte Änderungen in %{bbox}
|
||||||
description_friend: Änderungssätze deiner Freunde
|
description_friend: Änderungssätze deiner Freunde
|
||||||
description_nearby: Änderungssätze von Benutzern in der Nähe
|
description_nearby: Änderungssätze von Benutzern in der Nähe
|
||||||
|
@ -376,7 +376,7 @@ de:
|
||||||
newer_entries: Neuere
|
newer_entries: Neuere
|
||||||
no_entries: Dieser Benutzer hat noch kein Blog
|
no_entries: Dieser Benutzer hat noch kein Blog
|
||||||
older_entries: Ältere
|
older_entries: Ältere
|
||||||
recent_entries: "Neuste Einträge:"
|
recent_entries: Neueste Einträge
|
||||||
title: Blogs
|
title: Blogs
|
||||||
title_friends: Tagebücher meiner Freunde
|
title_friends: Tagebücher meiner Freunde
|
||||||
title_nearby: Tagebücher von Nutzern in der Nähe
|
title_nearby: Tagebücher von Nutzern in der Nähe
|
||||||
|
@ -1026,7 +1026,6 @@ de:
|
||||||
user_diaries_tooltip: Benutzer-Blogs lesen
|
user_diaries_tooltip: Benutzer-Blogs lesen
|
||||||
view: Karte
|
view: Karte
|
||||||
view_tooltip: Karte anzeigen
|
view_tooltip: Karte anzeigen
|
||||||
welcome_user: Willkommen, %{user_link}
|
|
||||||
welcome_user_link_tooltip: Eigene Benutzerseite
|
welcome_user_link_tooltip: Eigene Benutzerseite
|
||||||
wiki: Wiki
|
wiki: Wiki
|
||||||
wiki_title: Wiki des Projekts
|
wiki_title: Wiki des Projekts
|
||||||
|
@ -1040,7 +1039,7 @@ de:
|
||||||
attribution_example:
|
attribution_example:
|
||||||
alt: Beispiel, wie man auf OpenStreetMap auf einer Webseite hinweist
|
alt: Beispiel, wie man auf OpenStreetMap auf einer Webseite hinweist
|
||||||
title: Hinweisbeispiel
|
title: Hinweisbeispiel
|
||||||
contributors_at_html: "<strong>Österreich</strong>: Enthält Daten der <a href=\"http://data.wien.gv.at/\">Stadt Wien</a> (lizenziert gemäß <a href=\"http://creativecommons.org/licenses/by/3.0/at/deed.de\">CC BY AT</a>), <a href=\"http://www.vorarlberg.at/vorarlberg/bauen_wohnen/bauen/vermessung_geoinformation/weitereinformationen/services/wmsdienste.htm\">des Landes Vorarlberg</a> und des Landes Tirol (<a href=\"http://www.tirol.gv.at/applikationen/e-government/data/nutzungsbedingungen/\">beides lizenziert gemäß CC BY AT mit Anpassungen zur Lizenz</a>)."
|
contributors_at_html: "<strong>Österreich</strong>: Enthält Daten der <a href=\"http://data.wien.gv.at/\">Stadt Wien</a> (lizenziert gemäß <a href=\"http://creativecommons.org/licenses/by/3.0/at/deed.de\">CC BY AT</a>), <a href=\"http://www.vorarlberg.at/vorarlberg/bauen_wohnen/bauen/vermessung_geoinformation/weitereinformationen/services/wmsdienste.htm\">des Landes Vorarlberg</a> und des Landes Tirol (<a href=\"http://www.tirol.gv.at/applikationen/e-government/data/nutzungsbedingungen/\">lizenziert gemäß CC BY AT samt Erweiterungen zur Lizenz</a>)."
|
||||||
contributors_ca_html: "<strong>Kanada</strong>: Enthält Daten von GeoBase®, GeoGratis (© <i>Department of Natural Resources Canada</i>), CanVec (© <i>Department of Natural Resources Canada</i>) und StatCan (<i>Geography Division, Statistics Canada</i>)."
|
contributors_ca_html: "<strong>Kanada</strong>: Enthält Daten von GeoBase®, GeoGratis (© <i>Department of Natural Resources Canada</i>), CanVec (© <i>Department of Natural Resources Canada</i>) und StatCan (<i>Geography Division, Statistics Canada</i>)."
|
||||||
contributors_footer_1_html: Für weitere diesbezügliche Einzelheiten sowie anderer Datenquellen, die zur Verbesserung von OpenStreetMap genutzt wurden, besuche bitte <a href="http://wiki.openstreetmap.org/wiki/Contributors">die Seite über die Mitwirkenden</a> im Wiki von OpenStreetMap.
|
contributors_footer_1_html: Für weitere diesbezügliche Einzelheiten sowie anderer Datenquellen, die zur Verbesserung von OpenStreetMap genutzt wurden, besuche bitte <a href="http://wiki.openstreetmap.org/wiki/Contributors">die Seite über die Mitwirkenden</a> im Wiki von OpenStreetMap.
|
||||||
contributors_footer_2_html: Die Einbeziehung von Daten bei OpenStreetMap impliziert nicht, dass der ursprüngliche Datenlieferant OpenStreetMap unterstützt, Gewährleistung gibt, noch Haftung übernimmt.
|
contributors_footer_2_html: Die Einbeziehung von Daten bei OpenStreetMap impliziert nicht, dass der ursprüngliche Datenlieferant OpenStreetMap unterstützt, Gewährleistung gibt, noch Haftung übernimmt.
|
||||||
|
@ -1461,6 +1460,7 @@ de:
|
||||||
visibility: "Sichtbarkeit:"
|
visibility: "Sichtbarkeit:"
|
||||||
visibility_help: Was heißt das?
|
visibility_help: Was heißt das?
|
||||||
list:
|
list:
|
||||||
|
description: Letzte GPS-Track-Uploads durchsuchen
|
||||||
empty_html: Bislang ist hier noch nichts vorhanden. <a href='%{upload_link}'>Lade eine neue Spur hoch</a> oder informiere dich auf folgender <a href='http://wiki.openstreetmap.org/wiki/Beginners_Guide_1.2'>Wikiseite</a> über das Aufzeichnen von GPS-Spuren.
|
empty_html: Bislang ist hier noch nichts vorhanden. <a href='%{upload_link}'>Lade eine neue Spur hoch</a> oder informiere dich auf folgender <a href='http://wiki.openstreetmap.org/wiki/Beginners_Guide_1.2'>Wikiseite</a> über das Aufzeichnen von GPS-Spuren.
|
||||||
public_traces: Öffentliche GPS-Tracks
|
public_traces: Öffentliche GPS-Tracks
|
||||||
public_traces_from: Öffentliche GPS-Tracks von %{user}
|
public_traces_from: Öffentliche GPS-Tracks von %{user}
|
||||||
|
@ -1613,8 +1613,8 @@ de:
|
||||||
heading: Benutzer
|
heading: Benutzer
|
||||||
hide: Ausgewählte Benutzer ausblenden
|
hide: Ausgewählte Benutzer ausblenden
|
||||||
showing:
|
showing:
|
||||||
one: Anzeige von Seite %{page} (%{first_item} von %{items})
|
one: Seite %{page} (%{first_item} von %{items})
|
||||||
other: Anzeige von Seite %{page} (%{first_item}-%{last_item} von %{items})
|
other: Seite %{page} (%{first_item}–%{last_item} von %{items})
|
||||||
summary: "%{name} erstellt von %{ip_address} am %{date}"
|
summary: "%{name} erstellt von %{ip_address} am %{date}"
|
||||||
summary_no_ip: "%{name} erstellt am %{date}"
|
summary_no_ip: "%{name} erstellt am %{date}"
|
||||||
title: Benutzer
|
title: Benutzer
|
||||||
|
@ -1676,7 +1676,7 @@ de:
|
||||||
button: Als Freund hinzufügen
|
button: Als Freund hinzufügen
|
||||||
failed: Sorry, %{name} konnte nicht als dein Freund hinzugefügt werden.
|
failed: Sorry, %{name} konnte nicht als dein Freund hinzugefügt werden.
|
||||||
heading: "%{user} als Freund hinzufügen?"
|
heading: "%{user} als Freund hinzufügen?"
|
||||||
success: "%{name} ist nun dein Freund."
|
success: "%{name} ist nun dein Freund!"
|
||||||
new:
|
new:
|
||||||
confirm email address: "Bestätige deine E-Mail-Adresse:"
|
confirm email address: "Bestätige deine E-Mail-Adresse:"
|
||||||
confirm password: "Passwort bestätigen:"
|
confirm password: "Passwort bestätigen:"
|
||||||
|
@ -1709,8 +1709,8 @@ de:
|
||||||
nearby mapper: Mapper in der Nähe
|
nearby mapper: Mapper in der Nähe
|
||||||
your location: Eigener Standort
|
your location: Eigener Standort
|
||||||
remove_friend:
|
remove_friend:
|
||||||
button: Als Freund entfernen
|
button: Freund entfernen
|
||||||
heading: "%{user} als Freund entfernen?"
|
heading: Freund %{user} entfernen?
|
||||||
not_a_friend: "%{name} ist nicht dein Freund."
|
not_a_friend: "%{name} ist nicht dein Freund."
|
||||||
success: "%{name} wurde als Freund entfernt."
|
success: "%{name} wurde als Freund entfernt."
|
||||||
reset_password:
|
reset_password:
|
||||||
|
@ -1745,7 +1745,7 @@ de:
|
||||||
you need to accept or decline: Bitte lese die neuen Bedingungen für Mitwirkende und nehme sie an oder lehne sie ab, bevor du weitermachst.
|
you need to accept or decline: Bitte lese die neuen Bedingungen für Mitwirkende und nehme sie an oder lehne sie ab, bevor du weitermachst.
|
||||||
view:
|
view:
|
||||||
activate_user: Benutzer aktivieren
|
activate_user: Benutzer aktivieren
|
||||||
add as friend: Als Freund hinzufügen
|
add as friend: Freund hinzufügen
|
||||||
ago: (%{time_in_words_ago} her)
|
ago: (%{time_in_words_ago} her)
|
||||||
block_history: Erhaltene Sperren
|
block_history: Erhaltene Sperren
|
||||||
blocks by me: Selbst vergebene Sperren
|
blocks by me: Selbst vergebene Sperren
|
||||||
|
@ -1765,10 +1765,10 @@ de:
|
||||||
diary: Blog
|
diary: Blog
|
||||||
edits: Bearbeitungen
|
edits: Bearbeitungen
|
||||||
email address: "E-Mail-Adresse:"
|
email address: "E-Mail-Adresse:"
|
||||||
friends_changesets: Alle Änderungssätze deiner Freunde durchsuchen
|
friends_changesets: Änderungssätze deiner Freunde
|
||||||
friends_diaries: Alle Tagebucheinträge von Freunden durchsuchen
|
friends_diaries: Tagebucheinträge von Freunden
|
||||||
hide_user: Benutzer verstecken
|
hide_user: Benutzer verstecken
|
||||||
if set location: Wenn du deinen Standort angegeben hast, erscheint eine Karte am Seitenende. Du kannst deinen Standort in deinen %{settings_link} ändern.
|
if set location: Lege in den %{settings_link} deinen Heimatort fest, um Benutzer in der Nähe anzuzeigen.
|
||||||
km away: "%{count} km entfernt"
|
km away: "%{count} km entfernt"
|
||||||
latest edit: "Letzte Änderung %{ago}:"
|
latest edit: "Letzte Änderung %{ago}:"
|
||||||
m away: "%{count} m entfernt"
|
m away: "%{count} m entfernt"
|
||||||
|
@ -1780,13 +1780,13 @@ de:
|
||||||
my settings: Eigene Einstellungen
|
my settings: Eigene Einstellungen
|
||||||
my traces: Eigene Tracks
|
my traces: Eigene Tracks
|
||||||
nearby users: Anwender in der Nähe
|
nearby users: Anwender in der Nähe
|
||||||
nearby_changesets: Alle Änderungssätze von Benutzern in der Nähe durchsuchen
|
nearby_changesets: Änderungssätze von Benutzern in der Nähe
|
||||||
nearby_diaries: Alle Tagebucheinträge von Benutzern in der Nähe durchsuchen
|
nearby_diaries: Tagebucheinträge von Benutzern in der Nähe
|
||||||
new diary entry: Neuer Blogeintrag
|
new diary entry: Neuer Blogeintrag
|
||||||
no friends: Du hast bis jetzt keine Freunde hinzugefügt.
|
no friends: Du hast bis jetzt keine Freunde hinzugefügt.
|
||||||
no nearby users: Es gibt bisher keine Benutzer, die einen Standort in deiner Nähe angegeben haben.
|
no nearby users: Es gibt bisher keine Benutzer, die einen Standort in deiner Nähe angegeben haben.
|
||||||
oauth settings: OAuth-Einstellungen
|
oauth settings: OAuth-Einstellungen
|
||||||
remove as friend: Als Freund entfernen
|
remove as friend: Freund entfernen
|
||||||
role:
|
role:
|
||||||
administrator: Dieser Benutzer ist ein Administrator
|
administrator: Dieser Benutzer ist ein Administrator
|
||||||
grant:
|
grant:
|
||||||
|
|
|
@ -591,7 +591,7 @@ diq:
|
||||||
subject: Mersel
|
subject: Mersel
|
||||||
title: Ameyan
|
title: Ameyan
|
||||||
message_summary:
|
message_summary:
|
||||||
delete_button: Besterne
|
delete_button: Bestere
|
||||||
reply_button: Cewab bıde
|
reply_button: Cewab bıde
|
||||||
new:
|
new:
|
||||||
body: Vêrey mesaci
|
body: Vêrey mesaci
|
||||||
|
@ -610,7 +610,7 @@ diq:
|
||||||
subject: Mersel
|
subject: Mersel
|
||||||
to: Kêrê
|
to: Kêrê
|
||||||
sent_message_summary:
|
sent_message_summary:
|
||||||
delete_button: Besterne
|
delete_button: Bestere
|
||||||
notifier:
|
notifier:
|
||||||
diary_comment_notification:
|
diary_comment_notification:
|
||||||
hi: Merheba %{to_user},
|
hi: Merheba %{to_user},
|
||||||
|
|
|
@ -995,7 +995,6 @@ dsb:
|
||||||
user_diaries_tooltip: Wužywarske dnjowniki cytaś
|
user_diaries_tooltip: Wužywarske dnjowniki cytaś
|
||||||
view: Kórta
|
view: Kórta
|
||||||
view_tooltip: Kórtu se woglědaś
|
view_tooltip: Kórtu se woglědaś
|
||||||
welcome_user: Witaj, %{user_link}
|
|
||||||
welcome_user_link_tooltip: Twój wužywarski bok
|
welcome_user_link_tooltip: Twój wužywarski bok
|
||||||
wiki: Wiki
|
wiki: Wiki
|
||||||
wiki_title: Wikisedło za projekt
|
wiki_title: Wikisedło za projekt
|
||||||
|
|
|
@ -894,7 +894,6 @@ el:
|
||||||
user_diaries_tooltip: Προβολή ημερολογίων χρηστών
|
user_diaries_tooltip: Προβολή ημερολογίων χρηστών
|
||||||
view: Προβολή
|
view: Προβολή
|
||||||
view_tooltip: Προβολή του χάρτη
|
view_tooltip: Προβολή του χάρτη
|
||||||
welcome_user: Καλώς ορίσατε, %{user_link}
|
|
||||||
welcome_user_link_tooltip: Η προσωπική σας σελίδα
|
welcome_user_link_tooltip: Η προσωπική σας σελίδα
|
||||||
wiki: Wiki
|
wiki: Wiki
|
||||||
wiki_title: Ιστοσελίδα wiki για το έργο
|
wiki_title: Ιστοσελίδα wiki για το έργο
|
||||||
|
|
|
@ -269,8 +269,8 @@ en:
|
||||||
nodes: "Nodes:"
|
nodes: "Nodes:"
|
||||||
part_of: "Part of:"
|
part_of: "Part of:"
|
||||||
also_part_of:
|
also_part_of:
|
||||||
one: "also part of way %{related_ways}"
|
one: "part of way %{related_ways}"
|
||||||
other: "also part of ways %{related_ways}"
|
other: "part of ways %{related_ways}"
|
||||||
way_history:
|
way_history:
|
||||||
way_history: "Way History"
|
way_history: "Way History"
|
||||||
way_history_title: "Way History: %{way_name}"
|
way_history_title: "Way History: %{way_name}"
|
||||||
|
|
|
@ -401,7 +401,6 @@ eo:
|
||||||
user_diaries_tooltip: Vidi uzantĵurnalojn
|
user_diaries_tooltip: Vidi uzantĵurnalojn
|
||||||
view: Vidi
|
view: Vidi
|
||||||
view_tooltip: Vidi la mapon
|
view_tooltip: Vidi la mapon
|
||||||
welcome_user: Bonvenon, %{user_link}
|
|
||||||
welcome_user_link_tooltip: Via uzantpaĝo
|
welcome_user_link_tooltip: Via uzantpaĝo
|
||||||
license_page:
|
license_page:
|
||||||
foreign:
|
foreign:
|
||||||
|
|
|
@ -1000,7 +1000,6 @@ es:
|
||||||
user_diaries_tooltip: Ver diarios de usuario
|
user_diaries_tooltip: Ver diarios de usuario
|
||||||
view: Ver
|
view: Ver
|
||||||
view_tooltip: Ver el mapa
|
view_tooltip: Ver el mapa
|
||||||
welcome_user: Bienvenido, %{user_link}
|
|
||||||
welcome_user_link_tooltip: Tu página de usuario
|
welcome_user_link_tooltip: Tu página de usuario
|
||||||
wiki: Wiki
|
wiki: Wiki
|
||||||
wiki_title: Sitio Wiki del proyecto
|
wiki_title: Sitio Wiki del proyecto
|
||||||
|
@ -1412,7 +1411,7 @@ es:
|
||||||
friendly: "%e %B %Y a las %H:%M"
|
friendly: "%e %B %Y a las %H:%M"
|
||||||
trace:
|
trace:
|
||||||
create:
|
create:
|
||||||
trace_uploaded: Su archivo GPX ha sido cargado y está esperando ser agregado a la Base de Datos. Esto normalmente ocurre dentro de la próxima media hora, y un ''email'' le será enviado al terminar.
|
trace_uploaded: Tu archivo GPX ha sido subido y está pendiente de inserción en la base de datos. Esto normalmente ocurre en la próxima media hora, y se te enviará un correo electrónico al terminar.
|
||||||
upload_trace: Subir Traza GPS
|
upload_trace: Subir Traza GPS
|
||||||
delete:
|
delete:
|
||||||
scheduled_for_deletion: Traza programada para eliminación
|
scheduled_for_deletion: Traza programada para eliminación
|
||||||
|
|
|
@ -159,9 +159,11 @@ et:
|
||||||
hide_areas: Peida alad
|
hide_areas: Peida alad
|
||||||
history_for_feature: Omaduse %{feature} ajalugu
|
history_for_feature: Omaduse %{feature} ajalugu
|
||||||
load_data: Laadi andmed
|
load_data: Laadi andmed
|
||||||
|
loaded_an_area_with_num_features: Oled laadinud ala, mis sisaldab %{num_features} objekti. Mõned brauserid ei saa hästi hakkama sellise hulga andmete kuvamisega. Üldiselt suudavad brauserid kuvada korraga kuni %{max_features} objekti. Suurema arvu laadimine võib muuta brauseri aeglaseks või see lakkab üldse toimimast. Kui soovid siiski neid andmeid kuvada, võid seda teha, klõpsates nupul allpool.
|
||||||
loading: Laadin andmeid...
|
loading: Laadin andmeid...
|
||||||
manually_select: Vali uus ala
|
manually_select: Vali uus ala
|
||||||
object_list:
|
object_list:
|
||||||
|
api: Laadi antud ala APIst
|
||||||
back: Näita objektide nimekirja
|
back: Näita objektide nimekirja
|
||||||
details: Detailid
|
details: Detailid
|
||||||
heading: Objektide nimekiri
|
heading: Objektide nimekiri
|
||||||
|
@ -179,6 +181,7 @@ et:
|
||||||
show_areas: Näita alasid
|
show_areas: Näita alasid
|
||||||
show_history: Näita ajalugu
|
show_history: Näita ajalugu
|
||||||
unable_to_load_size: "Laadimine ebaõnnestus: valitud ala küjepikkus %{bbox_size} on liiga suur (see peab olema väiksem kui %{max_bbox_size})"
|
unable_to_load_size: "Laadimine ebaõnnestus: valitud ala küjepikkus %{bbox_size} on liiga suur (see peab olema väiksem kui %{max_bbox_size})"
|
||||||
|
view_data: Näita andmeid praeguse kaardivaate kohta
|
||||||
wait: Oota...
|
wait: Oota...
|
||||||
zoom_or_select: Suurenda või vali soovitud ala kaardil
|
zoom_or_select: Suurenda või vali soovitud ala kaardil
|
||||||
tag_details:
|
tag_details:
|
||||||
|
@ -193,7 +196,7 @@ et:
|
||||||
relation: relatsiooni
|
relation: relatsiooni
|
||||||
way: joone
|
way: joone
|
||||||
way:
|
way:
|
||||||
download_xml: Lae XML
|
download_xml: Laadi alla XML
|
||||||
edit: redigeeri
|
edit: redigeeri
|
||||||
view_history: vaata ajalugu
|
view_history: vaata ajalugu
|
||||||
way: Joon
|
way: Joon
|
||||||
|
@ -205,7 +208,7 @@ et:
|
||||||
nodes: "Sõlmed:"
|
nodes: "Sõlmed:"
|
||||||
part_of: "Osa:"
|
part_of: "Osa:"
|
||||||
way_history:
|
way_history:
|
||||||
download_xml: Lae alla XML-fail.
|
download_xml: Laadi alla XML
|
||||||
view_details: vaata detaile
|
view_details: vaata detaile
|
||||||
way_history: Joone muudatuste ajalugu
|
way_history: Joone muudatuste ajalugu
|
||||||
way_history_title: "Joone: %{way_name} ajalugu"
|
way_history_title: "Joone: %{way_name} ajalugu"
|
||||||
|
@ -251,6 +254,7 @@ et:
|
||||||
confirm: Kinnita
|
confirm: Kinnita
|
||||||
edit_link: Muuda seda sissekannet
|
edit_link: Muuda seda sissekannet
|
||||||
hide_link: Peida see sissekanne
|
hide_link: Peida see sissekanne
|
||||||
|
posted_by: Postitas %{link_user} %{created} %{language_link}
|
||||||
reply_link: Vasta sellele sissekandele
|
reply_link: Vasta sellele sissekandele
|
||||||
edit:
|
edit:
|
||||||
body: "Tekst:"
|
body: "Tekst:"
|
||||||
|
@ -258,6 +262,7 @@ et:
|
||||||
latitude: "Laiuskraad:"
|
latitude: "Laiuskraad:"
|
||||||
location: "Asukoht:"
|
location: "Asukoht:"
|
||||||
longitude: "Pikkuskraad:"
|
longitude: "Pikkuskraad:"
|
||||||
|
marker_text: Päeviku sissekande tegemise asukoht
|
||||||
save_button: Salvesta
|
save_button: Salvesta
|
||||||
subject: "Teema:"
|
subject: "Teema:"
|
||||||
title: Muuda päeviku sissekannet
|
title: Muuda päeviku sissekannet
|
||||||
|
@ -336,6 +341,7 @@ et:
|
||||||
add_marker: Lisa kaardile marker
|
add_marker: Lisa kaardile marker
|
||||||
change_marker: Muuda märgi asukohta
|
change_marker: Muuda märgi asukohta
|
||||||
export: Ekspordi
|
export: Ekspordi
|
||||||
|
manually_select: Vali käsitsi teine ala
|
||||||
view_larger_map: Näita suuremat kaarti
|
view_larger_map: Näita suuremat kaarti
|
||||||
geocoder:
|
geocoder:
|
||||||
description:
|
description:
|
||||||
|
@ -372,6 +378,7 @@ et:
|
||||||
gate: Värav
|
gate: Värav
|
||||||
terminal: Terminal
|
terminal: Terminal
|
||||||
amenity:
|
amenity:
|
||||||
|
WLAN: WiFi-ühendus
|
||||||
airport: Lennujaam
|
airport: Lennujaam
|
||||||
artwork: Kunstiteos
|
artwork: Kunstiteos
|
||||||
atm: Pangaautomaat
|
atm: Pangaautomaat
|
||||||
|
@ -388,6 +395,7 @@ et:
|
||||||
car_rental: Autorent
|
car_rental: Autorent
|
||||||
car_wash: Autopesu
|
car_wash: Autopesu
|
||||||
casino: Kasiino
|
casino: Kasiino
|
||||||
|
charging_station: Laadimisjaam
|
||||||
cinema: Kino
|
cinema: Kino
|
||||||
clinic: Kliinik
|
clinic: Kliinik
|
||||||
club: Klubi
|
club: Klubi
|
||||||
|
@ -400,10 +408,12 @@ et:
|
||||||
emergency_phone: Hädaabi telefon
|
emergency_phone: Hädaabi telefon
|
||||||
fast_food: Kiirtoit
|
fast_food: Kiirtoit
|
||||||
ferry_terminal: Praamiterminal
|
ferry_terminal: Praamiterminal
|
||||||
|
fire_hydrant: Tuletõrjehüdrant
|
||||||
fire_station: Tuletõrjedepoo
|
fire_station: Tuletõrjedepoo
|
||||||
fountain: Purskkaev
|
fountain: Purskkaev
|
||||||
fuel: Kütus
|
fuel: Kütus
|
||||||
grave_yard: Surnuaed
|
grave_yard: Surnuaed
|
||||||
|
health_centre: Tervisekeskus
|
||||||
hospital: Haigla
|
hospital: Haigla
|
||||||
hotel: Hotell
|
hotel: Hotell
|
||||||
ice_cream: Jäätis
|
ice_cream: Jäätis
|
||||||
|
@ -412,6 +422,7 @@ et:
|
||||||
market: Turg
|
market: Turg
|
||||||
marketplace: Turg
|
marketplace: Turg
|
||||||
nightclub: Ööklubi
|
nightclub: Ööklubi
|
||||||
|
office: Kontor
|
||||||
park: Park
|
park: Park
|
||||||
parking: Parkimisplats
|
parking: Parkimisplats
|
||||||
pharmacy: Apteek
|
pharmacy: Apteek
|
||||||
|
@ -434,7 +445,7 @@ et:
|
||||||
toilets: WC
|
toilets: WC
|
||||||
university: Ülikool
|
university: Ülikool
|
||||||
waste_basket: Prügikast
|
waste_basket: Prügikast
|
||||||
wifi: WiFi
|
wifi: WiFi-ühendus
|
||||||
youth_centre: Noortekeskus
|
youth_centre: Noortekeskus
|
||||||
boundary:
|
boundary:
|
||||||
administrative: Halduspiir
|
administrative: Halduspiir
|
||||||
|
@ -583,12 +594,14 @@ et:
|
||||||
miniature: Miniatuurraudtee
|
miniature: Miniatuurraudtee
|
||||||
narrow_gauge: Kitsarööpmeline raudtee
|
narrow_gauge: Kitsarööpmeline raudtee
|
||||||
platform: Raudteeperroon
|
platform: Raudteeperroon
|
||||||
|
spur: Raudtee harutee
|
||||||
station: Raudteejaam
|
station: Raudteejaam
|
||||||
subway: Metroojaam
|
subway: Metroojaam
|
||||||
switch: Pöörangud
|
switch: Pöörangud
|
||||||
tram: Trammitee
|
tram: Trammitee
|
||||||
tram_stop: Trammipeatus
|
tram_stop: Trammipeatus
|
||||||
shop:
|
shop:
|
||||||
|
antiques: Antikvariaat
|
||||||
bicycle: Rattapood
|
bicycle: Rattapood
|
||||||
books: Raamatupood
|
books: Raamatupood
|
||||||
butcher: Lihunik
|
butcher: Lihunik
|
||||||
|
@ -598,6 +611,7 @@ et:
|
||||||
computer: Arvutikauplus
|
computer: Arvutikauplus
|
||||||
cosmetics: Kosmeetikapood
|
cosmetics: Kosmeetikapood
|
||||||
dry_cleaning: Keemiline puhastus
|
dry_cleaning: Keemiline puhastus
|
||||||
|
electronics: Elektroonikapood
|
||||||
fish: Kalapood
|
fish: Kalapood
|
||||||
florist: Lillepood
|
florist: Lillepood
|
||||||
food: Toidupood
|
food: Toidupood
|
||||||
|
@ -631,6 +645,8 @@ et:
|
||||||
picnic_site: piknikuplats
|
picnic_site: piknikuplats
|
||||||
theme_park: Teemapark
|
theme_park: Teemapark
|
||||||
zoo: Loomaaed
|
zoo: Loomaaed
|
||||||
|
tunnel:
|
||||||
|
"yes": Tunnel
|
||||||
waterway:
|
waterway:
|
||||||
canal: Kanal
|
canal: Kanal
|
||||||
dam: Tamm
|
dam: Tamm
|
||||||
|
@ -668,17 +684,19 @@ et:
|
||||||
gps_traces: GPS rajad
|
gps_traces: GPS rajad
|
||||||
gps_traces_tooltip: Halda GPS radasid
|
gps_traces_tooltip: Halda GPS radasid
|
||||||
help: Juhend
|
help: Juhend
|
||||||
|
help_centre: Abikeskus
|
||||||
help_title: Projekti abiinfo
|
help_title: Projekti abiinfo
|
||||||
history: Ajalugu
|
history: Ajalugu
|
||||||
home: kodu
|
home: kodu
|
||||||
home_tooltip: Mine kodupaika
|
home_tooltip: Mine kodupaika
|
||||||
|
inbox_html: sisendkaust %{count}
|
||||||
inbox_tooltip:
|
inbox_tooltip:
|
||||||
one: Sul on üks lugemata sõnum
|
one: Sul on üks lugemata sõnum
|
||||||
other: Sul on %{count} lugemata sõnumit
|
other: Sul on %{count} lugemata sõnumit
|
||||||
zero: Sul ei ole lugemata sõnumeid
|
zero: Sul ei ole lugemata sõnumeid
|
||||||
intro_1: OpenStreetMap on vaba, kogu maailma hõlmav kaart, mille on loonud inimesed, nagu sina.
|
intro_1: OpenStreetMap on vaba, kogu maailma hõlmav kaart, mille on loonud inimesed, nagu sina.
|
||||||
intro_2_create_account: loo oma konto
|
intro_2_create_account: loo oma konto
|
||||||
intro_2_download: allalaadida
|
intro_2_download: alla laadida
|
||||||
intro_2_html: Andmeid võib olemasoleva %{license} alusel tasuta %{download} ja %{use}. Kaardi täiendamiseks %{create_account}.
|
intro_2_html: Andmeid võib olemasoleva %{license} alusel tasuta %{download} ja %{use}. Kaardi täiendamiseks %{create_account}.
|
||||||
intro_2_license: avatud litsentsi
|
intro_2_license: avatud litsentsi
|
||||||
intro_2_use: kasutada
|
intro_2_use: kasutada
|
||||||
|
@ -691,6 +709,13 @@ et:
|
||||||
make_a_donation:
|
make_a_donation:
|
||||||
text: Anneta
|
text: Anneta
|
||||||
title: Toeta OpenStreetMapi rahaliselt
|
title: Toeta OpenStreetMapi rahaliselt
|
||||||
|
osm_offline: OpenStreetMapi andmebaas ei ole hetkel juurdepääsetav sest teostatakse vajalikke hooldustöid.
|
||||||
|
osm_read_only: OpenStreetMapi andmebaas on hetkel oluliste hooldustööde tõttu ligipääsetav ainult lugemiseks.
|
||||||
|
partners_bytemark: Bytemark Hosting
|
||||||
|
partners_html: Majutust toetavad %{ucl}, %{ic} ja %{bytemark} ning teised %{partners}.
|
||||||
|
partners_ic: Imperial College London
|
||||||
|
partners_partners: partnerid
|
||||||
|
partners_ucl: UCL VR Centre
|
||||||
sign_up: registreeru
|
sign_up: registreeru
|
||||||
sign_up_tooltip: Redigeerimiseks loo omale konto
|
sign_up_tooltip: Redigeerimiseks loo omale konto
|
||||||
tag_line: Vaba viki-maailmakaart
|
tag_line: Vaba viki-maailmakaart
|
||||||
|
@ -698,17 +723,22 @@ et:
|
||||||
user_diaries_tooltip: Vaata kasutajate päevikuid
|
user_diaries_tooltip: Vaata kasutajate päevikuid
|
||||||
view: Vaata
|
view: Vaata
|
||||||
view_tooltip: Vaata kaarti
|
view_tooltip: Vaata kaarti
|
||||||
welcome_user: Tere tulemast, %{user_link}
|
|
||||||
welcome_user_link_tooltip: Sinu kasutajaleht
|
welcome_user_link_tooltip: Sinu kasutajaleht
|
||||||
wiki: Viki
|
wiki: Viki
|
||||||
|
wiki_title: Projekti wiki leht
|
||||||
license_page:
|
license_page:
|
||||||
foreign:
|
foreign:
|
||||||
english_link: ingliskeelne originaal
|
english_link: ingliskeelse originaali
|
||||||
|
text: Juhul kui tekib vastuolu käesoleva tõlgitud lehe ja %{english_original_link} vahel, on ingliskeelne leht ülimuslik.
|
||||||
title: Info selle tõlke kohta
|
title: Info selle tõlke kohta
|
||||||
|
legal_babble:
|
||||||
|
intro_1_html: "OpenStreetMap on <i>avatud andmed</i>, mis on litsenseeritud <a\nhref=\"http://opendatacommons.org/licenses/odbl/\">Open Data\nCommons Open Database License</a> (ODbL) tingimustel."
|
||||||
|
title_html: Autoriõigused ja litsents
|
||||||
native:
|
native:
|
||||||
mapping_link: alustada kaardistamist
|
mapping_link: alustada kaardistamist
|
||||||
native_link: eestikeelse versiooni
|
native_link: eestikeelse versiooni
|
||||||
text: Sa vaatad ingliskeelset versiooni autoriõiguste leheküljest. Sa võid minna tagasi selle lehe %{native_link} juurde või lõpetada autoriõiguste lugemise ja %{mapping_link}.
|
text: Sa vaatad ingliskeelset versiooni autoriõiguste leheküljest. Sa võid minna tagasi selle lehe %{native_link} juurde või lõpetada autoriõiguste lugemise ja %{mapping_link}.
|
||||||
|
title: Sellest leheküljest
|
||||||
message:
|
message:
|
||||||
delete:
|
delete:
|
||||||
deleted: Sõnum kustutatud
|
deleted: Sõnum kustutatud
|
||||||
|
@ -787,6 +817,7 @@ et:
|
||||||
email_confirm_plain:
|
email_confirm_plain:
|
||||||
greeting: Tere,
|
greeting: Tere,
|
||||||
friend_notification:
|
friend_notification:
|
||||||
|
had_added_you: "% {user} lisas sind OpenStreetMap'is sõbraks."
|
||||||
subject: "[OpenStreetMap] %{user} lisas sind oma sõbraks"
|
subject: "[OpenStreetMap] %{user} lisas sind oma sõbraks"
|
||||||
gpx_notification:
|
gpx_notification:
|
||||||
greeting: Tere,
|
greeting: Tere,
|
||||||
|
@ -795,10 +826,30 @@ et:
|
||||||
lost_password_plain:
|
lost_password_plain:
|
||||||
greeting: Tere,
|
greeting: Tere,
|
||||||
message_notification:
|
message_notification:
|
||||||
|
footer1: "Sa saad lugeda sõnumit ka lehel: %{readurl}"
|
||||||
header: "%{from_user} on saatnud sulle OpenStreetMapi kaudu sõnumi teemaga %{subject}:"
|
header: "%{from_user} on saatnud sulle OpenStreetMapi kaudu sõnumi teemaga %{subject}:"
|
||||||
hi: Tere, %{to_user},
|
hi: Tere, %{to_user},
|
||||||
signup_confirm:
|
signup_confirm:
|
||||||
|
confirm: "Enne kasutajakonto loomist peame saama kinnituse, et see taotlus tuli sinult ja selleks klõpsa alloleval lingil:"
|
||||||
|
created: Keegi (loodetavasti sina) lõi äsja %{site_url} kasutajakonto.
|
||||||
|
greeting: Tere!
|
||||||
subject: "[OpenStreetMap] E-posti aadressi kinnitamine"
|
subject: "[OpenStreetMap] E-posti aadressi kinnitamine"
|
||||||
|
welcome: Teretulemast OpenStreetMap kaardirakendusse! Soovime pakkuda sulle lisainfot, et saaksid selle kasutamist hõlpsalt alustada.
|
||||||
|
signup_confirm_html:
|
||||||
|
introductory_video: Võid vaadata %{introductory_video_link}.
|
||||||
|
more_videos: Vaata %{more_videos_link}.
|
||||||
|
more_videos_here: rohkem videosid siit
|
||||||
|
video_to_openstreetmap: OpenStreetMapi esitlusvideot
|
||||||
|
signup_confirm_plain:
|
||||||
|
ask_questions: "Võid esitada huvipakkuvaid küsimusi OpenStreetMapi kohta meie küsimuste ja vastuste veebisaidil:"
|
||||||
|
blog_and_twitter: "Loe viimaseid uudiseid OpenStreetMapi blogist või Twitterist:"
|
||||||
|
current_user: "Nimekiri kasutajatest kategooriates, sõltuvalt nende asukohast, on nähtav siin:"
|
||||||
|
introductory_video: "Sa võid vaadata OpenStreetMapi tutvustavat videot siit:"
|
||||||
|
more_videos: "Rohkem videosid võib näha siit:"
|
||||||
|
opengeodata: "OpenGeoData.org on OpenStreetMapi asutaja Steve Coasti blogi. Ka taskuhääling on saadaval:"
|
||||||
|
the_wiki: "Loe lisaks OpenStreetMapi kohta vikist:"
|
||||||
|
user_wiki_page: Soovitatav on luua kasutaja viki-leht, mis sisaldab sinu asukohta näitavaid kategooria-silte, näiteks [[Category:Users_in_Estonia]].
|
||||||
|
wiki_signup: "Soovi korral võid samuti registreeruda OpenStreetMapi viki kasutajaks:"
|
||||||
oauth:
|
oauth:
|
||||||
oauthorize:
|
oauthorize:
|
||||||
allow_write_api: muuda kaarti.
|
allow_write_api: muuda kaarti.
|
||||||
|
@ -822,9 +873,11 @@ et:
|
||||||
issued_at: Väljastatud
|
issued_at: Väljastatud
|
||||||
list_tokens: "Järgmised turvamärgid on rakendustele väljastatud sinu nime all:"
|
list_tokens: "Järgmised turvamärgid on rakendustele väljastatud sinu nime all:"
|
||||||
my_apps: Minu kliendirakendused
|
my_apps: Minu kliendirakendused
|
||||||
|
my_tokens: Minu autoriseeritud rakendused
|
||||||
no_apps: Kas omad rakendust, mida soovid siin kasutamiseks registreerida, kasutades %(oauth) standardit? Selleks tuleb kõigepealt registreerida oma veebirakendus enne kui see saab teostada OAuth päringuid antud teenusele.
|
no_apps: Kas omad rakendust, mida soovid siin kasutamiseks registreerida, kasutades %(oauth) standardit? Selleks tuleb kõigepealt registreerida oma veebirakendus enne kui see saab teostada OAuth päringuid antud teenusele.
|
||||||
register_new: Registreeri oma rakendus
|
register_new: Registreeri oma rakendus
|
||||||
revoke: Tühista!
|
revoke: Tühista!
|
||||||
|
title: Minu OAuth seaded
|
||||||
new:
|
new:
|
||||||
submit: Registreeri
|
submit: Registreeri
|
||||||
title: Registreeri uus rakendus
|
title: Registreeri uus rakendus
|
||||||
|
@ -949,7 +1002,9 @@ et:
|
||||||
visibility: "Nähtavus:"
|
visibility: "Nähtavus:"
|
||||||
visibility_help: Mida see tähendab?
|
visibility_help: Mida see tähendab?
|
||||||
list:
|
list:
|
||||||
|
description: Sirvi viimati üles laaditud GPS-radasid
|
||||||
public_traces: Avalikud GPS rajad
|
public_traces: Avalikud GPS rajad
|
||||||
|
tagged_with: ", millel on silt %{tags}"
|
||||||
your_traces: Sinu GPS rajad
|
your_traces: Sinu GPS rajad
|
||||||
trace:
|
trace:
|
||||||
ago: "%{time_in_words_ago} tagasi"
|
ago: "%{time_in_words_ago} tagasi"
|
||||||
|
@ -965,12 +1020,12 @@ et:
|
||||||
trace_details: Vaata Jälje Detaile
|
trace_details: Vaata Jälje Detaile
|
||||||
view_map: Vaata kaarti
|
view_map: Vaata kaarti
|
||||||
trace_form:
|
trace_form:
|
||||||
description: Kirjeldus
|
description: "Kirjeldus:"
|
||||||
help: Abi
|
help: Abi
|
||||||
tags: "Sildid:"
|
tags: "Sildid:"
|
||||||
upload_button: Laadi üles
|
upload_button: Laadi üles
|
||||||
upload_gpx: "Laadi üles GPX-fail:"
|
upload_gpx: "Laadi üles GPX-fail:"
|
||||||
visibility: Nähtavus
|
visibility: "Nähtavus:"
|
||||||
visibility_help: mida see tähendab?
|
visibility_help: mida see tähendab?
|
||||||
trace_header:
|
trace_header:
|
||||||
see_all_traces: Vaata kõiki GPS-radasid
|
see_all_traces: Vaata kõiki GPS-radasid
|
||||||
|
@ -1001,13 +1056,18 @@ et:
|
||||||
account:
|
account:
|
||||||
contributor terms:
|
contributor terms:
|
||||||
agreed: Oled nõustunud uute Kaastöö tingimustega.
|
agreed: Oled nõustunud uute Kaastöö tingimustega.
|
||||||
|
agreed_with_pd: Samuti oled deklareerinud oma kaastöö autoriõigustest vabaks (Public Domain).
|
||||||
heading: "Kaastöö tingimused:"
|
heading: "Kaastöö tingimused:"
|
||||||
link text: Mis see on?
|
link text: Mis see on?
|
||||||
not yet agreed: Sa ei ole veel nõustunud uute Kaastöö tingimustega.
|
not yet agreed: Sa ei ole veel nõustunud uute Kaastöö tingimustega.
|
||||||
|
review link text: Loe ja nõustu uute Kaastöö tingimustega klõpsates endale sobival ajal antud lingil.
|
||||||
current email address: "Praegune e-posti aadress:"
|
current email address: "Praegune e-posti aadress:"
|
||||||
delete image: Eemalda praegune pilt
|
delete image: Eemalda praegune pilt
|
||||||
email never displayed publicly: (ei näidata mitte kunagi avalikult)
|
email never displayed publicly: (ei näidata mitte kunagi avalikult)
|
||||||
flash update success: Kasutaja informatsioon uuendatud edukalt.
|
flash update success: Kasutaja informatsioon uuendatud edukalt.
|
||||||
|
gravatar:
|
||||||
|
gravatar: Kasuta Gravatari
|
||||||
|
link text: mis see on?
|
||||||
home location: "Kodu asukoht:"
|
home location: "Kodu asukoht:"
|
||||||
image: "Pilt:"
|
image: "Pilt:"
|
||||||
image size hint: (ruudukujuline pilt mõõtudega vähemalt 100x100 on sobiv)
|
image size hint: (ruudukujuline pilt mõõtudega vähemalt 100x100 on sobiv)
|
||||||
|
@ -1039,6 +1099,7 @@ et:
|
||||||
update home location on click: Kas uuendan kodu asukohta kui ma klõpsan kaardil?
|
update home location on click: Kas uuendan kodu asukohta kui ma klõpsan kaardil?
|
||||||
confirm:
|
confirm:
|
||||||
already active: See konto on juba kinnitatud.
|
already active: See konto on juba kinnitatud.
|
||||||
|
before you start: Kindlasti soovid juba kiiresti alustada kaardistamist, kuid enne seda võiksid lisada allpool olevasse vormi rohkem teavet enda kohta.
|
||||||
button: Kinnita
|
button: Kinnita
|
||||||
heading: Kinnita kasutajakonto
|
heading: Kinnita kasutajakonto
|
||||||
press confirm button: Vajuta allolevale kinnitamise nupule, et oma kasutajakonto aktiveerida.
|
press confirm button: Vajuta allolevale kinnitamise nupule, et oma kasutajakonto aktiveerida.
|
||||||
|
@ -1122,7 +1183,7 @@ et:
|
||||||
flash success: Kodukoht edukalt salvestatud
|
flash success: Kodukoht edukalt salvestatud
|
||||||
terms:
|
terms:
|
||||||
agree: Nõustun
|
agree: Nõustun
|
||||||
consider_pd_why: Mis see on?
|
consider_pd_why: mis see on?
|
||||||
decline: Ei nõustu
|
decline: Ei nõustu
|
||||||
heading: "Kaastöötingimused:"
|
heading: "Kaastöötingimused:"
|
||||||
legale_names:
|
legale_names:
|
||||||
|
|
|
@ -504,7 +504,6 @@ eu:
|
||||||
sign_up: izena eman
|
sign_up: izena eman
|
||||||
view: Ikusi
|
view: Ikusi
|
||||||
view_tooltip: Mapa ikusi
|
view_tooltip: Mapa ikusi
|
||||||
welcome_user: Ongietorri, %{user_link}
|
|
||||||
welcome_user_link_tooltip: Zure lankide orrialdea
|
welcome_user_link_tooltip: Zure lankide orrialdea
|
||||||
wiki: Wikia
|
wiki: Wikia
|
||||||
license_page:
|
license_page:
|
||||||
|
|
|
@ -729,7 +729,6 @@ fa:
|
||||||
user_diaries: یادداشت کاربر
|
user_diaries: یادداشت کاربر
|
||||||
view: نمایش
|
view: نمایش
|
||||||
view_tooltip: نمایش نقشه
|
view_tooltip: نمایش نقشه
|
||||||
welcome_user: خوش آمدید، %{user_link}
|
|
||||||
welcome_user_link_tooltip: صفحهٔ کاربری شما
|
welcome_user_link_tooltip: صفحهٔ کاربری شما
|
||||||
wiki: ویکی
|
wiki: ویکی
|
||||||
wiki_title: سایت ویکی برای پروژه
|
wiki_title: سایت ویکی برای پروژه
|
||||||
|
|
|
@ -996,7 +996,6 @@ fi:
|
||||||
user_diaries_tooltip: Näytä käyttäjän päiväkirjat
|
user_diaries_tooltip: Näytä käyttäjän päiväkirjat
|
||||||
view: Kartta
|
view: Kartta
|
||||||
view_tooltip: Näytä kartta
|
view_tooltip: Näytä kartta
|
||||||
welcome_user: Tervetuloa, %{user_link}!
|
|
||||||
welcome_user_link_tooltip: Käyttäjäsivusi
|
welcome_user_link_tooltip: Käyttäjäsivusi
|
||||||
wiki: Wiki
|
wiki: Wiki
|
||||||
wiki_title: Projektin wikisivusto
|
wiki_title: Projektin wikisivusto
|
||||||
|
|
|
@ -193,7 +193,7 @@ fr:
|
||||||
way: chemin
|
way: chemin
|
||||||
paging_nav:
|
paging_nav:
|
||||||
of: de
|
of: de
|
||||||
showing_page: Page en cours
|
showing_page: page
|
||||||
redacted:
|
redacted:
|
||||||
message_html: La version %{version} de ce(tte) %{type} ne peut être affichée car elle a été masquée. Veuillez consulter %{redaction_link} pour plus d'informations.
|
message_html: La version %{version} de ce(tte) %{type} ne peut être affichée car elle a été masquée. Veuillez consulter %{redaction_link} pour plus d'informations.
|
||||||
redaction: Masquage %{id}
|
redaction: Masquage %{id}
|
||||||
|
@ -233,7 +233,7 @@ fr:
|
||||||
manually_select: Sélectionner manuellement une zone différente
|
manually_select: Sélectionner manuellement une zone différente
|
||||||
object_list:
|
object_list:
|
||||||
api: Obtenir cette zone depuis l’API
|
api: Obtenir cette zone depuis l’API
|
||||||
back: Afficher la liste d’objets
|
back: Revenir à la liste d’objets
|
||||||
details: Détails
|
details: Détails
|
||||||
heading: Liste d’objets
|
heading: Liste d’objets
|
||||||
history:
|
history:
|
||||||
|
@ -275,8 +275,8 @@ fr:
|
||||||
way_title: "Chemin : %{way_name}"
|
way_title: "Chemin : %{way_name}"
|
||||||
way_details:
|
way_details:
|
||||||
also_part_of:
|
also_part_of:
|
||||||
one: faisant aussi partie du chemin %{related_ways}
|
one: partie du chemin %{related_ways}
|
||||||
other: faisant aussi partie des chemins %{related_ways}
|
other: partie des chemins %{related_ways}
|
||||||
nodes: "Nœuds :"
|
nodes: "Nœuds :"
|
||||||
part_of: "Faisant partie de :"
|
part_of: "Faisant partie de :"
|
||||||
way_history:
|
way_history:
|
||||||
|
@ -296,7 +296,7 @@ fr:
|
||||||
changeset_paging_nav:
|
changeset_paging_nav:
|
||||||
next: Suivants »
|
next: Suivants »
|
||||||
previous: « Précédents
|
previous: « Précédents
|
||||||
showing_page: Affichage de la page %{page}
|
showing_page: Page %{page}
|
||||||
changesets:
|
changesets:
|
||||||
area: Zone
|
area: Zone
|
||||||
comment: Commentaire
|
comment: Commentaire
|
||||||
|
@ -304,13 +304,13 @@ fr:
|
||||||
saved_at: Sauvegardé à
|
saved_at: Sauvegardé à
|
||||||
user: Utilisateur
|
user: Utilisateur
|
||||||
list:
|
list:
|
||||||
description: Modifications récentes
|
description: Parcourir les contributions récentes sur la carte
|
||||||
description_bbox: Groupes de modifications dans %{bbox}
|
description_bbox: Groupes de modifications dans %{bbox}
|
||||||
description_friend: Groupes de modifications par vos amis
|
description_friend: Groupes de modifications par vos amis
|
||||||
description_nearby: Groupes de modifications par les utilisateurs à proximité
|
description_nearby: Groupes de modifications par les utilisateurs à proximité
|
||||||
description_user: Groupes de modifications par %{user}
|
description_user: Groupes de modifications par %{user}
|
||||||
description_user_bbox: Groupes de modifications par %{user} dans %{bbox}
|
description_user_bbox: Groupes de modifications par %{user} dans %{bbox}
|
||||||
empty_anon_html: Aucune modification encore faite
|
empty_anon_html: Encore aucune modification faite.
|
||||||
empty_user_html: Il semble que vous n'avez pas encore fait de modification. Pour commencer, regardez le <a href='http://wiki.openstreetmap.org/wiki/Beginners_Guide_1.3'>Guide du débutant</a>.
|
empty_user_html: Il semble que vous n'avez pas encore fait de modification. Pour commencer, regardez le <a href='http://wiki.openstreetmap.org/wiki/Beginners_Guide_1.3'>Guide du débutant</a>.
|
||||||
heading: Groupes de modifications
|
heading: Groupes de modifications
|
||||||
heading_bbox: Groupes de modifications
|
heading_bbox: Groupes de modifications
|
||||||
|
@ -378,7 +378,7 @@ fr:
|
||||||
newer_entries: Entrées plus récentes
|
newer_entries: Entrées plus récentes
|
||||||
no_entries: Aucune entrée dans votre journal
|
no_entries: Aucune entrée dans votre journal
|
||||||
older_entries: Entrées plus anciennes
|
older_entries: Entrées plus anciennes
|
||||||
recent_entries: "Entrées récentes du journal :"
|
recent_entries: "Entrées récentes du journal:"
|
||||||
title: Journaux des utilisateurs
|
title: Journaux des utilisateurs
|
||||||
title_friends: Journaux des amis
|
title_friends: Journaux des amis
|
||||||
title_nearby: Journaux des utilisateurs à proximité
|
title_nearby: Journaux des utilisateurs à proximité
|
||||||
|
@ -1012,7 +1012,6 @@ fr:
|
||||||
user_diaries_tooltip: Voir les journaux d'utilisateurs
|
user_diaries_tooltip: Voir les journaux d'utilisateurs
|
||||||
view: Voir
|
view: Voir
|
||||||
view_tooltip: Afficher la carte
|
view_tooltip: Afficher la carte
|
||||||
welcome_user: Bienvenue, %{user_link}
|
|
||||||
welcome_user_link_tooltip: Votre page utilisateur
|
welcome_user_link_tooltip: Votre page utilisateur
|
||||||
wiki: Wiki
|
wiki: Wiki
|
||||||
wiki_title: site Wiki pour le projet
|
wiki_title: site Wiki pour le projet
|
||||||
|
@ -1445,6 +1444,7 @@ fr:
|
||||||
visibility: "Visibilité :"
|
visibility: "Visibilité :"
|
||||||
visibility_help: que signifie ceci ?
|
visibility_help: que signifie ceci ?
|
||||||
list:
|
list:
|
||||||
|
description: Parcourir les récentes traces GPS téléchargées
|
||||||
empty_html: Rien à voir par ici. <a href='%{upload_link}'>Télécharger une nouvelle trace</a> ou pour en savoir plus sur le traçage GPS, consultez la <a href='http://wiki.openstreetmap.org/wiki/Beginners_Guide_1.2'>page wiki</a>.
|
empty_html: Rien à voir par ici. <a href='%{upload_link}'>Télécharger une nouvelle trace</a> ou pour en savoir plus sur le traçage GPS, consultez la <a href='http://wiki.openstreetmap.org/wiki/Beginners_Guide_1.2'>page wiki</a>.
|
||||||
public_traces: Traces GPS publiques
|
public_traces: Traces GPS publiques
|
||||||
public_traces_from: Traces GPS publiques de %{user}
|
public_traces_from: Traces GPS publiques de %{user}
|
||||||
|
@ -1492,7 +1492,7 @@ fr:
|
||||||
trace_paging_nav:
|
trace_paging_nav:
|
||||||
newer: Nouvelles traces
|
newer: Nouvelles traces
|
||||||
older: Anciennes traces
|
older: Anciennes traces
|
||||||
showing_page: Affichage de la page %{page}
|
showing_page: Page %{page}
|
||||||
view:
|
view:
|
||||||
delete_track: Supprimer cette piste
|
delete_track: Supprimer cette piste
|
||||||
description: "Description :"
|
description: "Description :"
|
||||||
|
@ -1596,8 +1596,8 @@ fr:
|
||||||
heading: Utilisateurs
|
heading: Utilisateurs
|
||||||
hide: Masquer les utilisateurs sélectionnés
|
hide: Masquer les utilisateurs sélectionnés
|
||||||
showing:
|
showing:
|
||||||
one: Affichage de la page %{page} (%{first_item} sur %{items})
|
one: Page %{page} (%{first_item} sur %{items})
|
||||||
other: Affichage de la page %{page} (%{first_item}-%{last_item} sur %{items})
|
other: Page %{page} (%{first_item}-%{last_item} sur %{items})
|
||||||
summary: "%{name} créé depuis %{ip_address} le %{date}"
|
summary: "%{name} créé depuis %{ip_address} le %{date}"
|
||||||
summary_no_ip: "%{name} créé le %{date}"
|
summary_no_ip: "%{name} créé le %{date}"
|
||||||
title: Utilisateurs
|
title: Utilisateurs
|
||||||
|
@ -1659,7 +1659,7 @@ fr:
|
||||||
button: Ajouter en tant qu'ami
|
button: Ajouter en tant qu'ami
|
||||||
failed: Désolé, échec lors de l'ajout de %{name} comme votre ami
|
failed: Désolé, échec lors de l'ajout de %{name} comme votre ami
|
||||||
heading: Ajouter %{user} en tant qu'ami?
|
heading: Ajouter %{user} en tant qu'ami?
|
||||||
success: "%{name} est à présent votre ami."
|
success: "%{name} est désormais votre ami!"
|
||||||
new:
|
new:
|
||||||
confirm email address: "Confirmer l'adresse e-mail :"
|
confirm email address: "Confirmer l'adresse e-mail :"
|
||||||
confirm password: "Confirmez le mot de passe :"
|
confirm password: "Confirmez le mot de passe :"
|
||||||
|
@ -1692,8 +1692,8 @@ fr:
|
||||||
nearby mapper: Mappeur dans les environs
|
nearby mapper: Mappeur dans les environs
|
||||||
your location: Votre emplacement
|
your location: Votre emplacement
|
||||||
remove_friend:
|
remove_friend:
|
||||||
button: Supprimer en tant qu'ami
|
button: Supprimer en tant qu’ami
|
||||||
heading: Supprimer %{user} en tant qu'ami?
|
heading: Supprimer %{user} en tant qu’ami?
|
||||||
not_a_friend: "%{name} n'est pas parmi vos amis."
|
not_a_friend: "%{name} n'est pas parmi vos amis."
|
||||||
success: "%{name} a été retiré de vos amis."
|
success: "%{name} a été retiré de vos amis."
|
||||||
reset_password:
|
reset_password:
|
||||||
|
@ -1728,7 +1728,7 @@ fr:
|
||||||
you need to accept or decline: Veuillez lire et ensuite soit accepter ou refuser les nouvelles conditions de contributeur pour continuer.
|
you need to accept or decline: Veuillez lire et ensuite soit accepter ou refuser les nouvelles conditions de contributeur pour continuer.
|
||||||
view:
|
view:
|
||||||
activate_user: activer cet utilisateur
|
activate_user: activer cet utilisateur
|
||||||
add as friend: ajouter en tant qu'ami
|
add as friend: ajouter en tant qu’ami
|
||||||
ago: (il y a %{time_in_words_ago})
|
ago: (il y a %{time_in_words_ago})
|
||||||
block_history: blocages reçus
|
block_history: blocages reçus
|
||||||
blocks by me: blocages donnés
|
blocks by me: blocages donnés
|
||||||
|
@ -1748,10 +1748,10 @@ fr:
|
||||||
diary: journal
|
diary: journal
|
||||||
edits: modifications
|
edits: modifications
|
||||||
email address: "Adresse email :"
|
email address: "Adresse email :"
|
||||||
friends_changesets: Parcourir tous les groupes de modifications des amis
|
friends_changesets: Groupes de modifications des amis
|
||||||
friends_diaries: Parcourir toutes les entrées de journal des amis
|
friends_diaries: Entrées de journal des amis
|
||||||
hide_user: masquer cet utilisateur
|
hide_user: masquer cet utilisateur
|
||||||
if set location: Si vous définissez un lieu, une jolie carte va apparaître en dessous. Vous pouvez définir votre lieu sur votre page %{settings_link}.
|
if set location: Positionner votre lieu d’habitation sur la page %{settings_link} pour voir les utilisateurs à proximité.
|
||||||
km away: "%{count} km"
|
km away: "%{count} km"
|
||||||
latest edit: "Dernière modification %{ago} :"
|
latest edit: "Dernière modification %{ago} :"
|
||||||
m away: distant de %{count} m
|
m away: distant de %{count} m
|
||||||
|
@ -1763,13 +1763,13 @@ fr:
|
||||||
my settings: mes options
|
my settings: mes options
|
||||||
my traces: mes traces
|
my traces: mes traces
|
||||||
nearby users: Autres utilisateurs à proximité
|
nearby users: Autres utilisateurs à proximité
|
||||||
nearby_changesets: Parcourir tous les groupes de modifications des utilisateurs à proximité
|
nearby_changesets: Groupes de modifications des utilisateurs à proximité
|
||||||
nearby_diaries: Parcourir toutes les entrées de journal des utilisateurs à proximité
|
nearby_diaries: Entrées de journal des utilisateurs à proximité
|
||||||
new diary entry: nouvelle entrée dans le journal
|
new diary entry: nouvelle entrée dans le journal
|
||||||
no friends: Vous n'avez pas encore ajouté d'ami
|
no friends: Vous n'avez pas encore ajouté d'ami
|
||||||
no nearby users: Aucun utilisateur n'a encore signalé qu'il cartographiait à proximité.
|
no nearby users: Aucun utilisateur n'a encore signalé qu'il cartographiait à proximité.
|
||||||
oauth settings: paramètres OAuth
|
oauth settings: paramètres OAuth
|
||||||
remove as friend: enlever en tant qu'ami
|
remove as friend: supprimer en tant qu’ami
|
||||||
role:
|
role:
|
||||||
administrator: Cet utilisateur est un adminstrateur
|
administrator: Cet utilisateur est un adminstrateur
|
||||||
grant:
|
grant:
|
||||||
|
@ -1848,7 +1848,7 @@ fr:
|
||||||
revoke: Révoquer !
|
revoke: Révoquer !
|
||||||
revoker_name: Révoqué par
|
revoker_name: Révoqué par
|
||||||
show: Afficher
|
show: Afficher
|
||||||
showing_page: Affichage de la page %{page}
|
showing_page: Page %{page}
|
||||||
status: État
|
status: État
|
||||||
period:
|
period:
|
||||||
one: 1 heure
|
one: 1 heure
|
||||||
|
|
|
@ -124,10 +124,10 @@ fur:
|
||||||
prev_changeset_tooltip: Cambiament precedent di %{user}
|
prev_changeset_tooltip: Cambiament precedent di %{user}
|
||||||
node:
|
node:
|
||||||
download_xml: Discjame XML
|
download_xml: Discjame XML
|
||||||
edit: cambie
|
edit: Cambie il grop
|
||||||
node: Grop
|
node: Grop
|
||||||
node_title: "Grop: %{node_name}"
|
node_title: "Grop: %{node_name}"
|
||||||
view_history: cjale storic
|
view_history: Cjale il storic
|
||||||
node_details:
|
node_details:
|
||||||
coordinates: "Coordenadis:"
|
coordinates: "Coordenadis:"
|
||||||
part_of: "Part di:"
|
part_of: "Part di:"
|
||||||
|
@ -135,7 +135,7 @@ fur:
|
||||||
download_xml: Discjame XML
|
download_xml: Discjame XML
|
||||||
node_history: Storic dal grop
|
node_history: Storic dal grop
|
||||||
node_history_title: "Storic dal grop: %{node_name}"
|
node_history_title: "Storic dal grop: %{node_name}"
|
||||||
view_details: cjale i detais
|
view_details: Cjale i detais
|
||||||
not_found:
|
not_found:
|
||||||
sorry: Nus displâs, nol è stât pussibil cjatâ il %{type} cun id %{id}.
|
sorry: Nus displâs, nol è stât pussibil cjatâ il %{type} cun id %{id}.
|
||||||
type:
|
type:
|
||||||
|
@ -146,11 +146,16 @@ fur:
|
||||||
paging_nav:
|
paging_nav:
|
||||||
of: su
|
of: su
|
||||||
showing_page: Mostrant la pagjine
|
showing_page: Mostrant la pagjine
|
||||||
|
redacted:
|
||||||
|
type:
|
||||||
|
node: grop
|
||||||
|
relation: relazion
|
||||||
|
way: vie
|
||||||
relation:
|
relation:
|
||||||
download_xml: Discjame XML
|
download_xml: Discjame XML
|
||||||
relation: Relazion
|
relation: Relazion
|
||||||
relation_title: "Relazion: %{relation_name}"
|
relation_title: "Relazion: %{relation_name}"
|
||||||
view_history: cjale storic
|
view_history: Cjale il storic
|
||||||
relation_details:
|
relation_details:
|
||||||
members: "Membris:"
|
members: "Membris:"
|
||||||
part_of: "Part di:"
|
part_of: "Part di:"
|
||||||
|
@ -158,7 +163,7 @@ fur:
|
||||||
download_xml: Discjame XML
|
download_xml: Discjame XML
|
||||||
relation_history: Storic relazion
|
relation_history: Storic relazion
|
||||||
relation_history_title: "Storic de relazion: %{relation_name}"
|
relation_history_title: "Storic de relazion: %{relation_name}"
|
||||||
view_details: cjale detais
|
view_details: Cjale i detais
|
||||||
relation_member:
|
relation_member:
|
||||||
entry_role: "%{type} %{name} come %{role}"
|
entry_role: "%{type} %{name} come %{role}"
|
||||||
type:
|
type:
|
||||||
|
@ -167,13 +172,13 @@ fur:
|
||||||
way: Vie
|
way: Vie
|
||||||
start_rjs:
|
start_rjs:
|
||||||
data_frame_title: Dâts
|
data_frame_title: Dâts
|
||||||
data_layer_name: Dâts
|
data_layer_name: Esplore i dâts de mape
|
||||||
details: Detais
|
details: Detais
|
||||||
edited_by_user_at_timestamp: Cambiât di %{user} ai %{timestamp}
|
edited_by_user_at_timestamp: Cambiât di %{user} ai %{timestamp}
|
||||||
hide_areas: Plate areis
|
hide_areas: Plate areis
|
||||||
history_for_feature: Storic par %{feature}
|
history_for_feature: Storic par %{feature}
|
||||||
load_data: Cjame i dâts
|
load_data: Cjame i dâts
|
||||||
loaded_an_area_with_num_features: "Tu âs cjamât une aree che e conten %{num_features} carateristichis. In gjenerâl, cualchi sgarfadôr al podarès no rivâ a gjestî ben cheste cuantitât di dâts. I sgarfadôrs par solit a lavorin miôr se a mostrin mancul di 100 carataristichis ae volte: cualsisei altri numar al podarès ralentâ/no fâ plui rispuindi il sgarfadôr. Se tu sês sigûr di volê mostrâ chescj dâts, frache sul boton ca sot."
|
loaded_an_area_with_num_features: "Tu âs cjamât une aree che e conten %{num_features} carataristichis. In gjenerâl, cualchi sgarfadôr al podarès no rivâ a gjestî ben cheste cuantitât di dâts. I sgarfadôrs par solit a lavorin miôr se a mostrin mancul di %{max_features} carataristichis ae volte: cualsisei altri numar al podarès ralentâ/no fâ plui rispuindi il sgarfadôr. Se tu sês sigûr di volê mostrâ chescj dâts, frache sul boton ca sot."
|
||||||
loading: Daûr a cjamâ...
|
loading: Daûr a cjamâ...
|
||||||
manually_select: Sielç a man une aree divierse
|
manually_select: Sielç a man une aree divierse
|
||||||
object_list:
|
object_list:
|
||||||
|
@ -195,6 +200,7 @@ fur:
|
||||||
private_user: utent privât
|
private_user: utent privât
|
||||||
show_areas: Mostre areis
|
show_areas: Mostre areis
|
||||||
show_history: Mostre storic
|
show_history: Mostre storic
|
||||||
|
view_data: Viôt i dâts pe viodude atuâl de mape
|
||||||
wait: Daûr a spietâ...
|
wait: Daûr a spietâ...
|
||||||
zoom_or_select: Ingrandìs o sielç la aree de mape che tu vuelis viodi
|
zoom_or_select: Ingrandìs o sielç la aree de mape che tu vuelis viodi
|
||||||
tag_details:
|
tag_details:
|
||||||
|
@ -211,8 +217,8 @@ fur:
|
||||||
way: vie
|
way: vie
|
||||||
way:
|
way:
|
||||||
download_xml: Discjame XML
|
download_xml: Discjame XML
|
||||||
edit: cambie
|
edit: Cambie la vie
|
||||||
view_history: cjale storic
|
view_history: Cjale il storic
|
||||||
way: Vie
|
way: Vie
|
||||||
way_title: "Vie: %{way_name}"
|
way_title: "Vie: %{way_name}"
|
||||||
way_details:
|
way_details:
|
||||||
|
@ -223,7 +229,7 @@ fur:
|
||||||
part_of: "Part di:"
|
part_of: "Part di:"
|
||||||
way_history:
|
way_history:
|
||||||
download_xml: Discjame XML
|
download_xml: Discjame XML
|
||||||
view_details: cjale i detais
|
view_details: Cjale i detais
|
||||||
way_history: Storic de vie
|
way_history: Storic de vie
|
||||||
way_history_title: "Storic de vie: %{way_name}"
|
way_history_title: "Storic de vie: %{way_name}"
|
||||||
changeset:
|
changeset:
|
||||||
|
@ -248,8 +254,11 @@ fur:
|
||||||
list:
|
list:
|
||||||
description: Ultins cambiaments
|
description: Ultins cambiaments
|
||||||
description_bbox: Grups di cambiaments jentri di %{bbox}
|
description_bbox: Grups di cambiaments jentri di %{bbox}
|
||||||
|
description_friend: Grups di cambiaments dai tiei amîs
|
||||||
|
description_nearby: Grups di cambiaments dai utents dongje
|
||||||
description_user: Grups di cambiaments di %{user}
|
description_user: Grups di cambiaments di %{user}
|
||||||
description_user_bbox: Grups di cambiaments di %{user} jentri di %{bbox}
|
description_user_bbox: Grups di cambiaments di %{user} jentri di %{bbox}
|
||||||
|
empty_anon_html: Ancjemò nissun cambiament
|
||||||
heading: Grups di cambiaments
|
heading: Grups di cambiaments
|
||||||
heading_bbox: Grups di cambiaments
|
heading_bbox: Grups di cambiaments
|
||||||
heading_friend: Grups di cambiaments
|
heading_friend: Grups di cambiaments
|
||||||
|
@ -258,9 +267,18 @@ fur:
|
||||||
heading_user_bbox: Grups di cambiaments
|
heading_user_bbox: Grups di cambiaments
|
||||||
title: Grups di cambiaments
|
title: Grups di cambiaments
|
||||||
title_bbox: Grups di cambiaments jentri di %{bbox}
|
title_bbox: Grups di cambiaments jentri di %{bbox}
|
||||||
|
title_friend: Grups di cambiaments dai tiei amîs
|
||||||
|
title_nearby: Grups di cambiaments dai utents dongje
|
||||||
title_user: Grups di cambiaments di %{user}
|
title_user: Grups di cambiaments di %{user}
|
||||||
title_user_bbox: Grups di cambiaments di %{user} jentri di %{bbox}
|
title_user_bbox: Grups di cambiaments di %{user} jentri di %{bbox}
|
||||||
diary_entry:
|
diary_entry:
|
||||||
|
comments:
|
||||||
|
ago: "%{ago} indaûr"
|
||||||
|
comment: Coment
|
||||||
|
newer_comments: Coments plui gnûfs
|
||||||
|
older_comments: Coments plui vieris
|
||||||
|
post: Publiche
|
||||||
|
when: Cuant
|
||||||
diary_comment:
|
diary_comment:
|
||||||
comment_from: Coment di %{link_user} ai %{comment_created_at}
|
comment_from: Coment di %{link_user} ai %{comment_created_at}
|
||||||
confirm: Conferme
|
confirm: Conferme
|
||||||
|
@ -305,6 +323,8 @@ fur:
|
||||||
older_entries: Vôs plui vieris
|
older_entries: Vôs plui vieris
|
||||||
recent_entries: "Ultimis vôs dal diari:"
|
recent_entries: "Ultimis vôs dal diari:"
|
||||||
title: Diaris dai utents
|
title: Diaris dai utents
|
||||||
|
title_friends: Diaris dai amîs
|
||||||
|
title_nearby: Diaris dai utents dongje
|
||||||
user_title: Diari di %{user}
|
user_title: Diari di %{user}
|
||||||
location:
|
location:
|
||||||
edit: Cambie
|
edit: Cambie
|
||||||
|
@ -338,7 +358,7 @@ fur:
|
||||||
add_marker: Zonte un segnalut ae mape
|
add_marker: Zonte un segnalut ae mape
|
||||||
area_to_export: Aree di espuartâ
|
area_to_export: Aree di espuartâ
|
||||||
export_button: Espuarte
|
export_button: Espuarte
|
||||||
export_details: I dâts di OpenStreetMap a son dâts fûr sot de licence <a href="http://creativecommons.org/licenses/by-sa/2.0/">Creative Commons Attribution-ShareAlike 2.0 license</a>.
|
export_details: I dâts di OpenStreetMap a son dâts fûr sot de licence <a href="http://opendatacommons.org/licenses/odbl/1.0/">Open Data Commons Open Database License</a> (ODbL).
|
||||||
format: "Formât:"
|
format: "Formât:"
|
||||||
format_to_export: Formât di espuartâ
|
format_to_export: Formât di espuartâ
|
||||||
image_size: "Dimensions figure:"
|
image_size: "Dimensions figure:"
|
||||||
|
@ -399,7 +419,10 @@ fur:
|
||||||
us_postcode: Risultâts cjolts di <a href="http://geocoder.us/">Geocoder.us</a>
|
us_postcode: Risultâts cjolts di <a href="http://geocoder.us/">Geocoder.us</a>
|
||||||
search_osm_nominatim:
|
search_osm_nominatim:
|
||||||
prefix:
|
prefix:
|
||||||
|
aeroway:
|
||||||
|
terminal: Terminâl
|
||||||
amenity:
|
amenity:
|
||||||
|
WLAN: Pont di acès WiFi
|
||||||
airport: Aeropuart
|
airport: Aeropuart
|
||||||
arts_centre: Centri pes arts
|
arts_centre: Centri pes arts
|
||||||
atm: Bancomat
|
atm: Bancomat
|
||||||
|
@ -407,6 +430,7 @@ fur:
|
||||||
bank: Bancje
|
bank: Bancje
|
||||||
bar: Bar
|
bar: Bar
|
||||||
bench: Bancjute
|
bench: Bancjute
|
||||||
|
bicycle_parking: Parc pes bicicletis
|
||||||
bicycle_rental: Nauli di bicicletis
|
bicycle_rental: Nauli di bicicletis
|
||||||
bureau_de_change: Ufizi di cambi
|
bureau_de_change: Ufizi di cambi
|
||||||
bus_station: Stazion des corieris
|
bus_station: Stazion des corieris
|
||||||
|
@ -423,6 +447,7 @@ fur:
|
||||||
driving_school: Scuele guide
|
driving_school: Scuele guide
|
||||||
embassy: Ambassade
|
embassy: Ambassade
|
||||||
emergency_phone: Telefon di emergjence
|
emergency_phone: Telefon di emergjence
|
||||||
|
ferry_terminal: Terminâl traghets
|
||||||
fire_hydrant: Idrant
|
fire_hydrant: Idrant
|
||||||
fire_station: Stazion dai pompîrs
|
fire_station: Stazion dai pompîrs
|
||||||
fountain: Fontane
|
fountain: Fontane
|
||||||
|
@ -452,6 +477,7 @@ fur:
|
||||||
school: Scuele
|
school: Scuele
|
||||||
shop: Buteghe
|
shop: Buteghe
|
||||||
supermarket: Supermarcjât
|
supermarket: Supermarcjât
|
||||||
|
swimming_pool: Pissine
|
||||||
taxi: Taxi
|
taxi: Taxi
|
||||||
telephone: Telefon public
|
telephone: Telefon public
|
||||||
theatre: Teatri
|
theatre: Teatri
|
||||||
|
@ -460,10 +486,14 @@ fur:
|
||||||
vending_machine: Distributôr automatic
|
vending_machine: Distributôr automatic
|
||||||
veterinary: Veterinari
|
veterinary: Veterinari
|
||||||
village_hall: Centri civic
|
village_hall: Centri civic
|
||||||
wifi: Acès a internet WiFi
|
wifi: Pont di acès WiFi
|
||||||
youth_centre: Centri zovanîl
|
youth_centre: Centri zovanîl
|
||||||
boundary:
|
boundary:
|
||||||
administrative: Confin aministratîf
|
administrative: Confin aministratîf
|
||||||
|
national_park: Parc nazionâl
|
||||||
|
protected_area: Aree protezude
|
||||||
|
bridge:
|
||||||
|
"yes": Puint
|
||||||
building:
|
building:
|
||||||
"yes": Edifici
|
"yes": Edifici
|
||||||
highway:
|
highway:
|
||||||
|
@ -481,6 +511,7 @@ fur:
|
||||||
building: Edifici
|
building: Edifici
|
||||||
castle: Cjiscjel
|
castle: Cjiscjel
|
||||||
church: Glesie
|
church: Glesie
|
||||||
|
fort: Fuart
|
||||||
house: Cjase
|
house: Cjase
|
||||||
icon: Icone
|
icon: Icone
|
||||||
monument: Monument
|
monument: Monument
|
||||||
|
@ -527,6 +558,9 @@ fur:
|
||||||
tree: Arbul
|
tree: Arbul
|
||||||
valley: Val
|
valley: Val
|
||||||
volcano: Vulcan
|
volcano: Vulcan
|
||||||
|
water: Aghe
|
||||||
|
office:
|
||||||
|
architect: Architet
|
||||||
place:
|
place:
|
||||||
airport: Aeropuart
|
airport: Aeropuart
|
||||||
city: Citât
|
city: Citât
|
||||||
|
@ -627,6 +661,7 @@ fur:
|
||||||
history: Storic
|
history: Storic
|
||||||
home: lûc iniziâl
|
home: lûc iniziâl
|
||||||
home_tooltip: Va al lûc iniziâl
|
home_tooltip: Va al lûc iniziâl
|
||||||
|
inbox_html: in jentrade %{count}
|
||||||
inbox_tooltip:
|
inbox_tooltip:
|
||||||
one: Al è un messaç di lei te pueste in jentrade
|
one: Al è un messaç di lei te pueste in jentrade
|
||||||
other: A son %{count} messaçs di lei te pueste in jentrade
|
other: A son %{count} messaçs di lei te pueste in jentrade
|
||||||
|
@ -658,7 +693,6 @@ fur:
|
||||||
user_diaries_tooltip: Viôt i diaris dai utents
|
user_diaries_tooltip: Viôt i diaris dai utents
|
||||||
view: Viôt
|
view: Viôt
|
||||||
view_tooltip: Viôt la mape
|
view_tooltip: Viôt la mape
|
||||||
welcome_user: Benvignût/de, %{user_link}
|
|
||||||
welcome_user_link_tooltip: La tô pagjine utent
|
welcome_user_link_tooltip: La tô pagjine utent
|
||||||
wiki: Vichi
|
wiki: Vichi
|
||||||
wiki_title: Vichi dal progjet
|
wiki_title: Vichi dal progjet
|
||||||
|
@ -761,7 +795,7 @@ fur:
|
||||||
header: "%{from_user} ti à mandât un messaç su OpenStreetMap cun sogjet %{subject}:"
|
header: "%{from_user} ti à mandât un messaç su OpenStreetMap cun sogjet %{subject}:"
|
||||||
hi: Mandi %{to_user},
|
hi: Mandi %{to_user},
|
||||||
signup_confirm:
|
signup_confirm:
|
||||||
subject: "[OpenStreetMap] Conferme la tô direzion di pueste eletroniche"
|
subject: "[OpenStreetMap] Benvignût in OpenStreetMap"
|
||||||
signup_confirm_html:
|
signup_confirm_html:
|
||||||
introductory_video: Tu puedis viodi un %{introductory_video_link}.
|
introductory_video: Tu puedis viodi un %{introductory_video_link}.
|
||||||
more_videos: A son %{more_videos_link}.
|
more_videos: A son %{more_videos_link}.
|
||||||
|
@ -787,8 +821,17 @@ fur:
|
||||||
submit: Regjistre
|
submit: Regjistre
|
||||||
title: Regjistre une gnove aplicazion
|
title: Regjistre une gnove aplicazion
|
||||||
show:
|
show:
|
||||||
|
confirm: Sêstu sigûr?
|
||||||
edit: Cambie i detais
|
edit: Cambie i detais
|
||||||
title: Detais OAuth par {app_name}
|
title: Detais OAuth par {app_name}
|
||||||
|
redaction:
|
||||||
|
edit:
|
||||||
|
description: Descrizion
|
||||||
|
show:
|
||||||
|
confirm: Sêstu sigûr?
|
||||||
|
description: "Descrizion:"
|
||||||
|
update:
|
||||||
|
flash: Cambiaments salvâts.
|
||||||
site:
|
site:
|
||||||
edit:
|
edit:
|
||||||
anon_edits_link_text: Discuvierç parcè che al è cussì.
|
anon_edits_link_text: Discuvierç parcè che al è cussì.
|
||||||
|
@ -802,6 +845,8 @@ fur:
|
||||||
index:
|
index:
|
||||||
js_1: Tu stâs doprant un sgarfadôr che nol supuarte JavaScript o ben JavaScript al è stât disativât.
|
js_1: Tu stâs doprant un sgarfadôr che nol supuarte JavaScript o ben JavaScript al è stât disativât.
|
||||||
js_2: OpenStreetMap al dopre JavaScript par mostrâ la sô mape.
|
js_2: OpenStreetMap al dopre JavaScript par mostrâ la sô mape.
|
||||||
|
license:
|
||||||
|
copyright: Copyright di OpenStreetMap e dai siei colaboradôrs, sot di une licence vierte
|
||||||
permalink: Leam permanent
|
permalink: Leam permanent
|
||||||
remote_failed: Cambiament falît - siguriti che JOSM o Merkaartor a sedin inviâts e la opzion pal remote control e sedi ativade
|
remote_failed: Cambiament falît - siguriti che JOSM o Merkaartor a sedin inviâts e la opzion pal remote control e sedi ativade
|
||||||
shortlink: Leam curt
|
shortlink: Leam curt
|
||||||
|
@ -844,6 +889,23 @@ fur:
|
||||||
- tram
|
- tram
|
||||||
tunnel: Rie a trats = galarie
|
tunnel: Rie a trats = galarie
|
||||||
unsurfaced: Strade blancje
|
unsurfaced: Strade blancje
|
||||||
|
markdown_help:
|
||||||
|
alt: Test alternatîf
|
||||||
|
first: Prin element
|
||||||
|
heading: Titul
|
||||||
|
headings: Intestazions
|
||||||
|
image: Figure
|
||||||
|
link: Leam
|
||||||
|
ordered: Liste ordenade
|
||||||
|
second: Secont element
|
||||||
|
subheading: Sottitul
|
||||||
|
text: Test
|
||||||
|
title_html: Analizât cun <a href="http://daringfireball.net/projects/markdown/">Markdown</a>
|
||||||
|
unordered: Liste no ordenade
|
||||||
|
url: URL
|
||||||
|
richtext_area:
|
||||||
|
edit: Cambie
|
||||||
|
preview: Anteprime
|
||||||
search:
|
search:
|
||||||
search: Cîr
|
search: Cîr
|
||||||
search_help: "esemplis: 'Cividât', 'Vie Julie, Naiarêt', 'CB2 5AQ', o se no 'post offices near Gurize' <a href='http://wiki.openstreetmap.org/wiki/Search'>altris esemplis...</a>"
|
search_help: "esemplis: 'Cividât', 'Vie Julie, Naiarêt', 'CB2 5AQ', o se no 'post offices near Gurize' <a href='http://wiki.openstreetmap.org/wiki/Search'>altris esemplis...</a>"
|
||||||
|
@ -946,6 +1008,9 @@ fur:
|
||||||
email never displayed publicly: (mai mostrade in public)
|
email never displayed publicly: (mai mostrade in public)
|
||||||
flash update success: Informazions dal utent inzornadis cun sucès.
|
flash update success: Informazions dal utent inzornadis cun sucès.
|
||||||
flash update success confirm needed: Informazions dal utent inzornadis cun sucès. Controle la tô pueste par confermâ la tô gnove direzion di pueste eletroniche.
|
flash update success confirm needed: Informazions dal utent inzornadis cun sucès. Controle la tô pueste par confermâ la tô gnove direzion di pueste eletroniche.
|
||||||
|
gravatar:
|
||||||
|
gravatar: Dopre Gravatar
|
||||||
|
link text: ce isal chest?
|
||||||
home location: "Lûc iniziâl:"
|
home location: "Lûc iniziâl:"
|
||||||
image: "Figure:"
|
image: "Figure:"
|
||||||
image size hint: (figuris cuadris di almancul 100x100 a van miôr)
|
image size hint: (figuris cuadris di almancul 100x100 a van miôr)
|
||||||
|
@ -1052,6 +1117,8 @@ fur:
|
||||||
title: Password pierdude
|
title: Password pierdude
|
||||||
make_friend:
|
make_friend:
|
||||||
already_a_friend: Tu sês za amì di %{name}.
|
already_a_friend: Tu sês za amì di %{name}.
|
||||||
|
button: Zonte ai amîs
|
||||||
|
heading: Zontâ %{user} ai amîs?
|
||||||
success: "%{name} al è cumò to amì."
|
success: "%{name} al è cumò to amì."
|
||||||
new:
|
new:
|
||||||
confirm email address: "Conferme direzion pueste:"
|
confirm email address: "Conferme direzion pueste:"
|
||||||
|
@ -1105,9 +1172,10 @@ fur:
|
||||||
view:
|
view:
|
||||||
add as friend: zonte ai amîs
|
add as friend: zonte ai amîs
|
||||||
ago: (%{time_in_words_ago} indaûr)
|
ago: (%{time_in_words_ago} indaûr)
|
||||||
block_history: viôt i blocs ricevûts
|
block_history: blocs ricevûts
|
||||||
blocks by me: blocs aplicâts di me
|
blocks by me: blocs aplicâts di me
|
||||||
blocks on me: blocs su di me
|
blocks on me: blocs su di me
|
||||||
|
comments: coments
|
||||||
confirm: Conferme
|
confirm: Conferme
|
||||||
confirm_user: conferme chest utent
|
confirm_user: conferme chest utent
|
||||||
create_block: bloche chest utent
|
create_block: bloche chest utent
|
||||||
|
@ -1129,7 +1197,8 @@ fur:
|
||||||
latest edit: "Ultin cambiament %{ago}:"
|
latest edit: "Ultin cambiament %{ago}:"
|
||||||
m away: "%{count}m di distance"
|
m away: "%{count}m di distance"
|
||||||
mapper since: "Al mape dai:"
|
mapper since: "Al mape dai:"
|
||||||
moderator_history: viôt i blocs ricevûts
|
moderator_history: blocs aplicâts
|
||||||
|
my comments: i mei coments
|
||||||
my diary: il gno diari
|
my diary: il gno diari
|
||||||
my edits: miei cambiaments
|
my edits: miei cambiaments
|
||||||
my settings: mês impostazions
|
my settings: mês impostazions
|
||||||
|
|
|
@ -168,7 +168,7 @@ gl:
|
||||||
way: camiño
|
way: camiño
|
||||||
paging_nav:
|
paging_nav:
|
||||||
of: de
|
of: de
|
||||||
showing_page: Mostrando a páxina
|
showing_page: páxina
|
||||||
redacted:
|
redacted:
|
||||||
message_html: A versión %{version} deste %{type} non se pode mostrar tal como foi redactada. Consulte %{redaction_link} para obter máis detalles.
|
message_html: A versión %{version} deste %{type} non se pode mostrar tal como foi redactada. Consulte %{redaction_link} para obter máis detalles.
|
||||||
redaction: Redacción %{id}
|
redaction: Redacción %{id}
|
||||||
|
@ -208,7 +208,7 @@ gl:
|
||||||
manually_select: Escoller manualmente unha zona distinta
|
manually_select: Escoller manualmente unha zona distinta
|
||||||
object_list:
|
object_list:
|
||||||
api: Obter esta área desde a API
|
api: Obter esta área desde a API
|
||||||
back: Mostrar a lista de obxectos
|
back: Volver á lista de obxectos
|
||||||
details: Detalles
|
details: Detalles
|
||||||
heading: Lista de obxectos
|
heading: Lista de obxectos
|
||||||
history:
|
history:
|
||||||
|
@ -250,8 +250,8 @@ gl:
|
||||||
way_title: "Camiño: %{way_name}"
|
way_title: "Camiño: %{way_name}"
|
||||||
way_details:
|
way_details:
|
||||||
also_part_of:
|
also_part_of:
|
||||||
one: tamén parte do camiño %{related_ways}
|
one: parte do camiño %{related_ways}
|
||||||
other: tamén parte dos camiños %{related_ways}
|
other: parte dos camiños %{related_ways}
|
||||||
nodes: "Nodos:"
|
nodes: "Nodos:"
|
||||||
part_of: "Parte de:"
|
part_of: "Parte de:"
|
||||||
way_history:
|
way_history:
|
||||||
|
@ -271,7 +271,7 @@ gl:
|
||||||
changeset_paging_nav:
|
changeset_paging_nav:
|
||||||
next: Seguinte »
|
next: Seguinte »
|
||||||
previous: « Anterior
|
previous: « Anterior
|
||||||
showing_page: Mostrando a páxina %{page}
|
showing_page: Páxina %{page}
|
||||||
changesets:
|
changesets:
|
||||||
area: Zona
|
area: Zona
|
||||||
comment: Comentario
|
comment: Comentario
|
||||||
|
@ -279,13 +279,13 @@ gl:
|
||||||
saved_at: Gardado o
|
saved_at: Gardado o
|
||||||
user: Usuario
|
user: Usuario
|
||||||
list:
|
list:
|
||||||
description: Cambios recentes
|
description: Examinar os cambios recentes feitos no mapa
|
||||||
description_bbox: Conxuntos de cambios en %{bbox}
|
description_bbox: Conxuntos de cambios en %{bbox}
|
||||||
description_friend: Conxuntos de cambios dos seus amigos
|
description_friend: Conxuntos de cambios dos seus amigos
|
||||||
description_nearby: Conxuntos de cambios dos usuarios de lugares próximos
|
description_nearby: Conxuntos de cambios dos usuarios de lugares próximos
|
||||||
description_user: Conxuntos de cambios por %{user}
|
description_user: Conxuntos de cambios por %{user}
|
||||||
description_user_bbox: Conxuntos de cambios por %{user} en %{bbox}
|
description_user_bbox: Conxuntos de cambios por %{user} en %{bbox}
|
||||||
empty_anon_html: Aínda non se fixo ningunha edición
|
empty_anon_html: Aínda non se fixo ningunha edición.
|
||||||
empty_user_html: Semella que aínda non fixo ningunha edición. Para comezar, bote unha ollada á <a href='http://wiki.openstreetmap.org/wiki/Beginners_Guide_1.3'>guía para principiantes</a>.
|
empty_user_html: Semella que aínda non fixo ningunha edición. Para comezar, bote unha ollada á <a href='http://wiki.openstreetmap.org/wiki/Beginners_Guide_1.3'>guía para principiantes</a>.
|
||||||
heading: Conxuntos de cambios
|
heading: Conxuntos de cambios
|
||||||
heading_bbox: Conxuntos de cambios
|
heading_bbox: Conxuntos de cambios
|
||||||
|
@ -353,7 +353,7 @@ gl:
|
||||||
newer_entries: Entradas máis novas
|
newer_entries: Entradas máis novas
|
||||||
no_entries: Non hai entradas no diario
|
no_entries: Non hai entradas no diario
|
||||||
older_entries: Entradas máis vellas
|
older_entries: Entradas máis vellas
|
||||||
recent_entries: "Entradas recentes no diario:"
|
recent_entries: Entradas recentes no diario
|
||||||
title: Diarios de usuarios
|
title: Diarios de usuarios
|
||||||
title_friends: Diarios de amigos
|
title_friends: Diarios de amigos
|
||||||
title_nearby: Diarios de usuarios de lugares próximos
|
title_nearby: Diarios de usuarios de lugares próximos
|
||||||
|
@ -985,7 +985,6 @@ gl:
|
||||||
user_diaries_tooltip: Ollar os diarios do usuario
|
user_diaries_tooltip: Ollar os diarios do usuario
|
||||||
view: Ver
|
view: Ver
|
||||||
view_tooltip: Ver o mapa
|
view_tooltip: Ver o mapa
|
||||||
welcome_user: Benvido, %{user_link}
|
|
||||||
welcome_user_link_tooltip: A súa páxina de usuario
|
welcome_user_link_tooltip: A súa páxina de usuario
|
||||||
wiki: wiki
|
wiki: wiki
|
||||||
wiki_title: Wiki de axuda do proxecto
|
wiki_title: Wiki de axuda do proxecto
|
||||||
|
@ -1417,6 +1416,7 @@ gl:
|
||||||
visibility: "Visibilidade:"
|
visibility: "Visibilidade:"
|
||||||
visibility_help: que significa isto?
|
visibility_help: que significa isto?
|
||||||
list:
|
list:
|
||||||
|
description: Examinar as cargas recentes de pistas GPS
|
||||||
empty_html: Aínda non hai nada por aquí. <a href='%{upload_link}'>Cargue unha nova pista</a> ou obteña máis información sobre as pistas GPS na <a href='http://wiki.openstreetmap.org/wiki/Beginners_Guide_1.2'>páxina do wiki</a>.
|
empty_html: Aínda non hai nada por aquí. <a href='%{upload_link}'>Cargue unha nova pista</a> ou obteña máis información sobre as pistas GPS na <a href='http://wiki.openstreetmap.org/wiki/Beginners_Guide_1.2'>páxina do wiki</a>.
|
||||||
public_traces: Pistas GPS públicas
|
public_traces: Pistas GPS públicas
|
||||||
public_traces_from: Pistas GPS públicas de %{user}
|
public_traces_from: Pistas GPS públicas de %{user}
|
||||||
|
@ -1464,7 +1464,7 @@ gl:
|
||||||
trace_paging_nav:
|
trace_paging_nav:
|
||||||
newer: Pistas máis novas
|
newer: Pistas máis novas
|
||||||
older: Pistas máis antigas
|
older: Pistas máis antigas
|
||||||
showing_page: Mostrando a páxina %{page}
|
showing_page: Páxina %{page}
|
||||||
view:
|
view:
|
||||||
delete_track: Borrar esta pista
|
delete_track: Borrar esta pista
|
||||||
description: "Descrición:"
|
description: "Descrición:"
|
||||||
|
@ -1568,8 +1568,8 @@ gl:
|
||||||
heading: Usuarios
|
heading: Usuarios
|
||||||
hide: Agochar os usuarios seleccionados
|
hide: Agochar os usuarios seleccionados
|
||||||
showing:
|
showing:
|
||||||
one: Mostrando a páxina "%{page}" (%{first_item} de %{items})
|
one: Páxina %{page} (%{first_item} de %{items})
|
||||||
other: Mostrando a páxina "%{page}" (%{first_item}-%{last_item} de %{items})
|
other: Páxina %{page} (%{first_item}-%{last_item} de %{items})
|
||||||
summary: "%{name} creado desde %{ip_address} o %{date}"
|
summary: "%{name} creado desde %{ip_address} o %{date}"
|
||||||
summary_no_ip: "%{name} creado o %{date}"
|
summary_no_ip: "%{name} creado o %{date}"
|
||||||
title: Usuarios
|
title: Usuarios
|
||||||
|
@ -1631,7 +1631,7 @@ gl:
|
||||||
button: Engadir como amigo
|
button: Engadir como amigo
|
||||||
failed: Houbo un erro ao engadir a %{name} como amigo.
|
failed: Houbo un erro ao engadir a %{name} como amigo.
|
||||||
heading: Quere engadir a %{user} como amigo?
|
heading: Quere engadir a %{user} como amigo?
|
||||||
success: "%{name} xa é o seu amigo."
|
success: "%{name} xa é o seu amigo!"
|
||||||
new:
|
new:
|
||||||
confirm email address: Confirmar o enderezo de correo electrónico
|
confirm email address: Confirmar o enderezo de correo electrónico
|
||||||
confirm password: "Confirmar o contrasinal:"
|
confirm password: "Confirmar o contrasinal:"
|
||||||
|
@ -1720,10 +1720,10 @@ gl:
|
||||||
diary: diario
|
diary: diario
|
||||||
edits: edicións
|
edits: edicións
|
||||||
email address: "Enderezo de correo electrónico:"
|
email address: "Enderezo de correo electrónico:"
|
||||||
friends_changesets: Explorar todos os conxuntos de cambios dos seus amigos
|
friends_changesets: conxuntos de cambios dos amigos
|
||||||
friends_diaries: Explorar todas as entradas de diario dos amigos
|
friends_diaries: entradas de diario dos amigos
|
||||||
hide_user: agochar este usuario
|
hide_user: agochar este usuario
|
||||||
if set location: Se define a súa localización, aquí aparecerá un mapa. Pode establecer o seu lugar de orixe na súa páxina de %{settings_link}.
|
if set location: Defina a súa localización na páxina de %{settings_link} para ollar usuarios de lugares próximos.
|
||||||
km away: a %{count}km de distancia
|
km away: a %{count}km de distancia
|
||||||
latest edit: "Última edición %{ago}:"
|
latest edit: "Última edición %{ago}:"
|
||||||
m away: a %{count}m de distancia
|
m away: a %{count}m de distancia
|
||||||
|
@ -1735,8 +1735,8 @@ gl:
|
||||||
my settings: os meus axustes
|
my settings: os meus axustes
|
||||||
my traces: as miñas pistas
|
my traces: as miñas pistas
|
||||||
nearby users: Outros usuarios próximos
|
nearby users: Outros usuarios próximos
|
||||||
nearby_changesets: Explorar todos os conxuntos de cambios dos usuarios de lugares próximos
|
nearby_changesets: conxuntos de cambios dos usuarios de lugares próximos
|
||||||
nearby_diaries: Explorar todas as entradas de diario dos usuarios de lugares próximos
|
nearby_diaries: entradas de diario dos usuarios de lugares próximos
|
||||||
new diary entry: nova entrada no diario
|
new diary entry: nova entrada no diario
|
||||||
no friends: Aínda non engadiu ningún amigo.
|
no friends: Aínda non engadiu ningún amigo.
|
||||||
no nearby users: Aínda non hai usuarios que estean situados na súa proximidade.
|
no nearby users: Aínda non hai usuarios que estean situados na súa proximidade.
|
||||||
|
@ -1820,7 +1820,7 @@ gl:
|
||||||
revoke: Revogar!
|
revoke: Revogar!
|
||||||
revoker_name: Revogado por
|
revoker_name: Revogado por
|
||||||
show: Mostrar
|
show: Mostrar
|
||||||
showing_page: Mostrando a páxina %{page}
|
showing_page: Páxina %{page}
|
||||||
status: Estado
|
status: Estado
|
||||||
period:
|
period:
|
||||||
one: 1 hora
|
one: 1 hora
|
||||||
|
|
|
@ -995,7 +995,6 @@ he:
|
||||||
user_diaries_tooltip: צפייה ביומני המשתמש
|
user_diaries_tooltip: צפייה ביומני המשתמש
|
||||||
view: תצוגה
|
view: תצוגה
|
||||||
view_tooltip: לצפייה במפה
|
view_tooltip: לצפייה במפה
|
||||||
welcome_user: ברוך בואך, %{user_link}
|
|
||||||
welcome_user_link_tooltip: דף המשתמש שלך
|
welcome_user_link_tooltip: דף המשתמש שלך
|
||||||
wiki: ויקי
|
wiki: ויקי
|
||||||
wiki_title: אתר ויקי עבור המיזם
|
wiki_title: אתר ויקי עבור המיזם
|
||||||
|
|
|
@ -888,7 +888,6 @@ hr:
|
||||||
user_diaries_tooltip: Prikaži korisničke dnevnike
|
user_diaries_tooltip: Prikaži korisničke dnevnike
|
||||||
view: Karta
|
view: Karta
|
||||||
view_tooltip: Pogledaj na karti
|
view_tooltip: Pogledaj na karti
|
||||||
welcome_user: Dobrodošli, %{user_link}
|
|
||||||
welcome_user_link_tooltip: Tvoja korisnička stranica
|
welcome_user_link_tooltip: Tvoja korisnička stranica
|
||||||
wiki: Wiki
|
wiki: Wiki
|
||||||
wiki_title: Wiki stranice projekta
|
wiki_title: Wiki stranice projekta
|
||||||
|
|
|
@ -997,7 +997,6 @@ hsb:
|
||||||
user_diaries_tooltip: Wužiwarske dźeniki čitać
|
user_diaries_tooltip: Wužiwarske dźeniki čitać
|
||||||
view: Karta
|
view: Karta
|
||||||
view_tooltip: Kartu pokazać
|
view_tooltip: Kartu pokazać
|
||||||
welcome_user: Witaj, %{user_link}
|
|
||||||
welcome_user_link_tooltip: Twoja wužiwarska strona
|
welcome_user_link_tooltip: Twoja wužiwarska strona
|
||||||
wiki: Wiki
|
wiki: Wiki
|
||||||
wiki_title: Wikisydło za projekt
|
wiki_title: Wikisydło za projekt
|
||||||
|
|
|
@ -986,7 +986,6 @@ hu:
|
||||||
user_diaries_tooltip: Felhasználói naplók megtekintése
|
user_diaries_tooltip: Felhasználói naplók megtekintése
|
||||||
view: Térkép
|
view: Térkép
|
||||||
view_tooltip: Térkép megjelenítése
|
view_tooltip: Térkép megjelenítése
|
||||||
welcome_user: Üdvözlünk %{user_link}
|
|
||||||
welcome_user_link_tooltip: Felhasználói oldalad
|
welcome_user_link_tooltip: Felhasználói oldalad
|
||||||
wiki: wiki
|
wiki: wiki
|
||||||
wiki_title: A projekt wiki oldala
|
wiki_title: A projekt wiki oldala
|
||||||
|
|
|
@ -985,7 +985,6 @@ ia:
|
||||||
user_diaries_tooltip: Leger diarios de usatores
|
user_diaries_tooltip: Leger diarios de usatores
|
||||||
view: Vider
|
view: Vider
|
||||||
view_tooltip: Vider le carta
|
view_tooltip: Vider le carta
|
||||||
welcome_user: Benvenite, %{user_link}
|
|
||||||
welcome_user_link_tooltip: Tu pagina de usator
|
welcome_user_link_tooltip: Tu pagina de usator
|
||||||
wiki: Wiki
|
wiki: Wiki
|
||||||
wiki_title: Sito wiki pro le projecto
|
wiki_title: Sito wiki pro le projecto
|
||||||
|
|
|
@ -947,7 +947,6 @@ id:
|
||||||
user_diaries_tooltip: Lihat catatan harian pengguna
|
user_diaries_tooltip: Lihat catatan harian pengguna
|
||||||
view: Tampilkan
|
view: Tampilkan
|
||||||
view_tooltip: Tampilkan peta
|
view_tooltip: Tampilkan peta
|
||||||
welcome_user: Selamat Datang, %{user_link}
|
|
||||||
welcome_user_link_tooltip: Halaman Anda
|
welcome_user_link_tooltip: Halaman Anda
|
||||||
wiki: Wiki
|
wiki: Wiki
|
||||||
wiki_title: Situs wiki untuk proyek
|
wiki_title: Situs wiki untuk proyek
|
||||||
|
|
|
@ -616,7 +616,6 @@ is:
|
||||||
user_diaries_tooltip: Sjá blogg notenda
|
user_diaries_tooltip: Sjá blogg notenda
|
||||||
view: Kort
|
view: Kort
|
||||||
view_tooltip: Kortasýn
|
view_tooltip: Kortasýn
|
||||||
welcome_user: Hæ %{user_link}
|
|
||||||
welcome_user_link_tooltip: Notandasíðan þín
|
welcome_user_link_tooltip: Notandasíðan þín
|
||||||
license_page:
|
license_page:
|
||||||
foreign:
|
foreign:
|
||||||
|
|
|
@ -180,7 +180,7 @@ it:
|
||||||
way: percorso
|
way: percorso
|
||||||
paging_nav:
|
paging_nav:
|
||||||
of: di
|
of: di
|
||||||
showing_page: Visualizzata la pagina
|
showing_page: pagina
|
||||||
redacted:
|
redacted:
|
||||||
message_html: La versione %{version} di questo %{type} non può essere mostrata in quanto è stata redatta. Per favore, fai riferimento a %{redaction_link} per i dettagli.
|
message_html: La versione %{version} di questo %{type} non può essere mostrata in quanto è stata redatta. Per favore, fai riferimento a %{redaction_link} per i dettagli.
|
||||||
redaction: Redazione %{id}
|
redaction: Redazione %{id}
|
||||||
|
@ -220,7 +220,7 @@ it:
|
||||||
manually_select: Seleziona manualmente un'area differente
|
manually_select: Seleziona manualmente un'area differente
|
||||||
object_list:
|
object_list:
|
||||||
api: Ottieni quest'area dalle API
|
api: Ottieni quest'area dalle API
|
||||||
back: Visualizza la lista degli oggetti
|
back: Ritorna all'elenco degli oggetti
|
||||||
details: Dettagli
|
details: Dettagli
|
||||||
heading: Lista degli oggetti
|
heading: Lista degli oggetti
|
||||||
history:
|
history:
|
||||||
|
@ -262,8 +262,8 @@ it:
|
||||||
way_title: "Percorso: %{way_name}"
|
way_title: "Percorso: %{way_name}"
|
||||||
way_details:
|
way_details:
|
||||||
also_part_of:
|
also_part_of:
|
||||||
one: anche parte del percorso %{related_ways}
|
one: parte del percorso %{related_ways}
|
||||||
other: anche parte dei percorsi %{related_ways}
|
other: parte dei percorsi %{related_ways}
|
||||||
nodes: "Nodi:"
|
nodes: "Nodi:"
|
||||||
part_of: "Parte di:"
|
part_of: "Parte di:"
|
||||||
way_history:
|
way_history:
|
||||||
|
@ -283,7 +283,7 @@ it:
|
||||||
changeset_paging_nav:
|
changeset_paging_nav:
|
||||||
next: Successivo »
|
next: Successivo »
|
||||||
previous: « Precedente
|
previous: « Precedente
|
||||||
showing_page: Visualizzata la pagina %{page}
|
showing_page: Pagina %{page}
|
||||||
changesets:
|
changesets:
|
||||||
area: Area
|
area: Area
|
||||||
comment: Commento
|
comment: Commento
|
||||||
|
@ -297,7 +297,7 @@ it:
|
||||||
description_nearby: Gruppi di modifiche da parte di utenti nelle vicinanze
|
description_nearby: Gruppi di modifiche da parte di utenti nelle vicinanze
|
||||||
description_user: Modifiche dell'utente %{user}
|
description_user: Modifiche dell'utente %{user}
|
||||||
description_user_bbox: Gruppi di modifiche dell'utente %{user} all'interno di %{bbox}
|
description_user_bbox: Gruppi di modifiche dell'utente %{user} all'interno di %{bbox}
|
||||||
empty_anon_html: Non sono state fatte modifiche ancora
|
empty_anon_html: Non sono state fatte modifiche ancora.
|
||||||
empty_user_html: Sembra che tu non abbia mai fatto modifiche ancora. Per iniziare, controlla la <a href='http://wiki.openstreetmap.org/wiki/Beginners_Guide_1.3'>guida per principianti</a>.
|
empty_user_html: Sembra che tu non abbia mai fatto modifiche ancora. Per iniziare, controlla la <a href='http://wiki.openstreetmap.org/wiki/Beginners_Guide_1.3'>guida per principianti</a>.
|
||||||
heading: Gruppi di modifiche
|
heading: Gruppi di modifiche
|
||||||
heading_bbox: Gruppi di modifiche
|
heading_bbox: Gruppi di modifiche
|
||||||
|
@ -365,7 +365,7 @@ it:
|
||||||
newer_entries: Voci più recenti
|
newer_entries: Voci più recenti
|
||||||
no_entries: Nessuna voce nel diario
|
no_entries: Nessuna voce nel diario
|
||||||
older_entries: Voci più vecchie
|
older_entries: Voci più vecchie
|
||||||
recent_entries: "Voci del diario recenti:"
|
recent_entries: Voci del diario recenti
|
||||||
title: Diari degli utenti
|
title: Diari degli utenti
|
||||||
title_friends: Diari degli amici
|
title_friends: Diari degli amici
|
||||||
title_nearby: Diari degli utenti nelle vicinanze
|
title_nearby: Diari degli utenti nelle vicinanze
|
||||||
|
@ -997,7 +997,6 @@ it:
|
||||||
user_diaries_tooltip: Visualizza diari utente
|
user_diaries_tooltip: Visualizza diari utente
|
||||||
view: Visualizza
|
view: Visualizza
|
||||||
view_tooltip: Visualizza la mappa
|
view_tooltip: Visualizza la mappa
|
||||||
welcome_user: Benvenuto, %{user_link}
|
|
||||||
welcome_user_link_tooltip: Pagina utente personale
|
welcome_user_link_tooltip: Pagina utente personale
|
||||||
wiki: Wiki
|
wiki: Wiki
|
||||||
wiki_title: Wiki del progetto
|
wiki_title: Wiki del progetto
|
||||||
|
@ -1476,7 +1475,7 @@ it:
|
||||||
trace_paging_nav:
|
trace_paging_nav:
|
||||||
newer: Tracce più recenti
|
newer: Tracce più recenti
|
||||||
older: Tracce più vecchie
|
older: Tracce più vecchie
|
||||||
showing_page: Visualizzata la pagina %{page}
|
showing_page: Pagina %{page}
|
||||||
view:
|
view:
|
||||||
delete_track: Elimina questo tracciato
|
delete_track: Elimina questo tracciato
|
||||||
description: "Descrizione:"
|
description: "Descrizione:"
|
||||||
|
@ -1642,7 +1641,7 @@ it:
|
||||||
button: Aggiungi agli amici
|
button: Aggiungi agli amici
|
||||||
failed: Spiacenti, non è stato possibile aggiungere %{name} come un amico.
|
failed: Spiacenti, non è stato possibile aggiungere %{name} come un amico.
|
||||||
heading: Aggiungere %{user} agli amici?
|
heading: Aggiungere %{user} agli amici?
|
||||||
success: "%{name} è ora tuo amico."
|
success: "%{name} è ora tuo amico!"
|
||||||
new:
|
new:
|
||||||
confirm email address: "Conferma indirizzo email:"
|
confirm email address: "Conferma indirizzo email:"
|
||||||
confirm password: "Conferma password:"
|
confirm password: "Conferma password:"
|
||||||
|
@ -1711,7 +1710,7 @@ it:
|
||||||
you need to accept or decline: Si prega di leggere e poi accettare o rifiutare i nuovi termini di contribuzione per continuare.
|
you need to accept or decline: Si prega di leggere e poi accettare o rifiutare i nuovi termini di contribuzione per continuare.
|
||||||
view:
|
view:
|
||||||
activate_user: attiva questo utente
|
activate_user: attiva questo utente
|
||||||
add as friend: aggiungi come amico
|
add as friend: aggiungi amico
|
||||||
ago: (%{time_in_words_ago} fa)
|
ago: (%{time_in_words_ago} fa)
|
||||||
block_history: blocchi ricevuti
|
block_history: blocchi ricevuti
|
||||||
blocks by me: blocchi applicati da me
|
blocks by me: blocchi applicati da me
|
||||||
|
@ -1752,7 +1751,7 @@ it:
|
||||||
no friends: Non ci sono ancora amici.
|
no friends: Non ci sono ancora amici.
|
||||||
no nearby users: Non ci sono ancora altri utenti che ammettono di mappare nelle vicinanze.
|
no nearby users: Non ci sono ancora altri utenti che ammettono di mappare nelle vicinanze.
|
||||||
oauth settings: impostazioni oauth
|
oauth settings: impostazioni oauth
|
||||||
remove as friend: rimuovi come amico
|
remove as friend: rimuovi amico
|
||||||
role:
|
role:
|
||||||
administrator: Questo utente è un amministratore
|
administrator: Questo utente è un amministratore
|
||||||
grant:
|
grant:
|
||||||
|
@ -1831,7 +1830,7 @@ it:
|
||||||
revoke: Revoca!
|
revoke: Revoca!
|
||||||
revoker_name: Revocato da
|
revoker_name: Revocato da
|
||||||
show: Mostra
|
show: Mostra
|
||||||
showing_page: Visualizzata la pagina %{page}
|
showing_page: Pagina %{page}
|
||||||
status: Stato
|
status: Stato
|
||||||
period:
|
period:
|
||||||
one: 1 ora
|
one: 1 ora
|
||||||
|
|
|
@ -176,7 +176,7 @@ ja:
|
||||||
way: ウェイ
|
way: ウェイ
|
||||||
paging_nav:
|
paging_nav:
|
||||||
of: /
|
of: /
|
||||||
showing_page: ページ表示
|
showing_page: ページ
|
||||||
redacted:
|
redacted:
|
||||||
message_html: この %{type} の %{version} 版は、改訂されたため表示できません。詳細は %{redaction_link} をご覧ください。
|
message_html: この %{type} の %{version} 版は、改訂されたため表示できません。詳細は %{redaction_link} をご覧ください。
|
||||||
redaction: 改訂 %{id}
|
redaction: 改訂 %{id}
|
||||||
|
@ -216,7 +216,7 @@ ja:
|
||||||
manually_select: ドラッグして別の領域を選択
|
manually_select: ドラッグして別の領域を選択
|
||||||
object_list:
|
object_list:
|
||||||
api: API でこの領域を取得
|
api: API でこの領域を取得
|
||||||
back: オブジェクト一覧を表示
|
back: オブジェクト一覧に戻る
|
||||||
details: 詳細
|
details: 詳細
|
||||||
heading: オブジェクト一覧
|
heading: オブジェクト一覧
|
||||||
history:
|
history:
|
||||||
|
@ -257,7 +257,7 @@ ja:
|
||||||
way_title: "ウェイ: %{way_name}"
|
way_title: "ウェイ: %{way_name}"
|
||||||
way_details:
|
way_details:
|
||||||
also_part_of:
|
also_part_of:
|
||||||
other: ウェイ %{related_ways} の一部でもあります
|
other: ウェイ %{related_ways} の一部
|
||||||
nodes: "ノード:"
|
nodes: "ノード:"
|
||||||
part_of: "以下の一部:"
|
part_of: "以下の一部:"
|
||||||
way_history:
|
way_history:
|
||||||
|
@ -285,13 +285,13 @@ ja:
|
||||||
saved_at: 保存日時
|
saved_at: 保存日時
|
||||||
user: ユーザー
|
user: ユーザー
|
||||||
list:
|
list:
|
||||||
description: 最近の変更
|
description: 地図への最近の変更を参照
|
||||||
description_bbox: "%{bbox} の範囲内の変更セット"
|
description_bbox: "%{bbox} の範囲内の変更セット"
|
||||||
description_friend: 友達による変更セット
|
description_friend: 友達による変更セット
|
||||||
description_nearby: 周辺のユーザによる変更セット
|
description_nearby: 周辺のユーザーによる変更セット
|
||||||
description_user: "%{user} による変更セット"
|
description_user: "%{user} による変更セット"
|
||||||
description_user_bbox: "%{bbox} の範囲内の %{user} による変更セット"
|
description_user_bbox: "%{bbox} の範囲内の %{user} による変更セット"
|
||||||
empty_anon_html: まだ編集が行われていません
|
empty_anon_html: まだ編集されていません。
|
||||||
empty_user_html: まだ何も編集していないようですね。<a href='http://wiki.openstreetmap.org/wiki/Beginners_Guide_1.3'>初心者ガイド</a> をチェックして始めましょう。
|
empty_user_html: まだ何も編集していないようですね。<a href='http://wiki.openstreetmap.org/wiki/Beginners_Guide_1.3'>初心者ガイド</a> をチェックして始めましょう。
|
||||||
heading: 変更セット
|
heading: 変更セット
|
||||||
heading_bbox: 変更セット
|
heading_bbox: 変更セット
|
||||||
|
@ -359,7 +359,7 @@ ja:
|
||||||
newer_entries: 以降のエントリ
|
newer_entries: 以降のエントリ
|
||||||
no_entries: 日記エントリはありません
|
no_entries: 日記エントリはありません
|
||||||
older_entries: 以前のエントリ
|
older_entries: 以前のエントリ
|
||||||
recent_entries: "最近の日記エントリ:"
|
recent_entries: 最近の日記エントリ
|
||||||
title: ユーザーの日記
|
title: ユーザーの日記
|
||||||
title_friends: 友達の日記
|
title_friends: 友達の日記
|
||||||
title_nearby: 周辺のユーザーの日記
|
title_nearby: 周辺のユーザーの日記
|
||||||
|
@ -987,7 +987,6 @@ ja:
|
||||||
user_diaries_tooltip: ユーザーの日記を閲覧する
|
user_diaries_tooltip: ユーザーの日記を閲覧する
|
||||||
view: 閲覧
|
view: 閲覧
|
||||||
view_tooltip: 地図を閲覧
|
view_tooltip: 地図を閲覧
|
||||||
welcome_user: ようこそ、%{user_link} さん
|
|
||||||
welcome_user_link_tooltip: 自分のユーザー ページ
|
welcome_user_link_tooltip: 自分のユーザー ページ
|
||||||
wiki: ウィキ
|
wiki: ウィキ
|
||||||
wiki_title: プロジェクトのウィキサイト
|
wiki_title: プロジェクトのウィキサイト
|
||||||
|
@ -997,12 +996,19 @@ ja:
|
||||||
text: 翻訳したページと、%{english_original_link} の間で競合が発生しました。英語版の内容が優先されるでしょう。
|
text: 翻訳したページと、%{english_original_link} の間で競合が発生しました。英語版の内容が優先されるでしょう。
|
||||||
title: この翻訳について
|
title: この翻訳について
|
||||||
legal_babble:
|
legal_babble:
|
||||||
|
contributors_at_html: "<strong>オーストリア</strong>: <a href=\"http://data.wien.gv.at/\">Stadt Wien</a> (ライセンス <a href=\"http://creativecommons.org/licenses/by/3.0/at/deed.de\">CC BY</a>)、<a href=\"http://www.vorarlberg.at/vorarlberg/bauen_wohnen/bauen/vermessung_geoinformation/weitereinformationen/services/wmsdienste.htm\">Land Vorarlberg</a>、Land Tirol (ライセンス <a href=\"http://www.tirol.gv.at/applikationen/e-government/data/nutzungsbedingungen/\">CC-BY AT with amendments</a>) によるデータを含みます。"
|
||||||
|
contributors_ca_html: "<strong>カナダ</strong>: GeoBase®、GeoGratis (© Department of Natural Resources Canada)、CanVec (© Department of Natural Resources Canada)、StatCan (Geography Division, Statistics Canada) によるデータを含みます。"
|
||||||
|
contributors_fr_html: "<strong>フランス</strong>: Direction Générale des Impôts によるデータを含みます。"
|
||||||
|
contributors_gb_html: "<strong>イギリス</strong>: 陸地測量データ © Crown copyright and database right 2010-12 を含みます。"
|
||||||
contributors_intro_html: 協力者は数千人もの個人です。それに加え、国立の地図作成組織や、次のようなその他の情報源による公開できるライセンスによるデータを含みます。
|
contributors_intro_html: 協力者は数千人もの個人です。それに加え、国立の地図作成組織や、次のようなその他の情報源による公開できるライセンスによるデータを含みます。
|
||||||
|
contributors_nl_html: "<strong>オランダ</strong>: © AND データ、2007 (<a href=\"http://www.and.com\">www.and.com</a>) を含みます。"
|
||||||
|
contributors_nz_html: "<strong>ニュージーランド</strong>: Land Information New Zealand によるデータを含みます。Crown が著作権を保持します。"
|
||||||
contributors_title_html: 協力者
|
contributors_title_html: 協力者
|
||||||
|
contributors_za_html: "<strong>南アフリカ</strong>: <a href=\"http://www.ngi.gov.za/\">Chief Directorate: National Geo-Spatial Information</a>, State によるデータを含み、著作権を保持します。"
|
||||||
credit_title_html: OpenStreetMap のクレジット表記の仕方
|
credit_title_html: OpenStreetMap のクレジット表記の仕方
|
||||||
infringement_1_html: OSMの協力者は、著作権者から明確な許諾を得ずに、著作権のある情報源(例:Google Mapsや印刷された地図)からデータを持ち込まないよう注意するものとします。
|
infringement_1_html: "OSM の協力者は、著作権者から明確な許諾を得ずに、著作権のある情報源 (例: Google マップや印刷された地図) からデータを持ち込まないよう注意するものとします。"
|
||||||
infringement_title_html: 著作権侵害
|
infringement_title_html: 著作権侵害
|
||||||
intro_1_html: "OpenStreetMap は<i>オープンデータ</i>であり、<a\nhref=\"http://opendatacommons.org/licenses/odbl/\">Open Data\nCommons Open Database License</a>(ODbL)の下にライセンスされています。"
|
intro_1_html: "OpenStreetMap は<i>オープンデータ</i>であり、<a\nhref=\"http://opendatacommons.org/licenses/odbl/\">Open Data\nCommons Open Database License</a> (ODbL) の下にライセンスされています。"
|
||||||
title_html: 著作権とライセンス
|
title_html: 著作権とライセンス
|
||||||
native:
|
native:
|
||||||
mapping_link: マッピングを開始
|
mapping_link: マッピングを開始
|
||||||
|
@ -1438,11 +1444,11 @@ ja:
|
||||||
older: 以前のトレース
|
older: 以前のトレース
|
||||||
showing_page: ページ %{page}
|
showing_page: ページ %{page}
|
||||||
view:
|
view:
|
||||||
delete_track: このトラックを削除
|
delete_track: このトレースを削除
|
||||||
description: "詳細:"
|
description: "詳細:"
|
||||||
download: ダウンロード
|
download: ダウンロード
|
||||||
edit: 編集
|
edit: 編集
|
||||||
edit_track: このトラックを編集
|
edit_track: このトレースを編集
|
||||||
filename: "ファイル名:"
|
filename: "ファイル名:"
|
||||||
heading: トレース %{name} の表示
|
heading: トレース %{name} の表示
|
||||||
map: 地図
|
map: 地図
|
||||||
|
@ -1539,8 +1545,8 @@ ja:
|
||||||
heading: ユーザー
|
heading: ユーザー
|
||||||
hide: 選択したユーザーを隠す
|
hide: 選択したユーザーを隠す
|
||||||
showing:
|
showing:
|
||||||
one: ページ %{page} (%{items} 件中 %{first_item} 件目) を表示中
|
one: ページ %{page} (%{items} 件中 %{first_item} 件目)
|
||||||
other: ページ %{page} (%{items} 件中 %{first_item}-%{last_item} 件目を表示中)
|
other: ページ %{page} (%{items} 件中 %{first_item}-%{last_item} 件目)
|
||||||
summary: "%{name} は %{ip_address}から%{date}に作成されました。"
|
summary: "%{name} は %{ip_address}から%{date}に作成されました。"
|
||||||
summary_no_ip: "%{name} は%{date}に作成されました。"
|
summary_no_ip: "%{name} は%{date}に作成されました。"
|
||||||
title: ユーザー
|
title: ユーザー
|
||||||
|
@ -1602,7 +1608,7 @@ ja:
|
||||||
button: 友達に追加
|
button: 友達に追加
|
||||||
failed: "%{name} を友達と登録できませんでした。"
|
failed: "%{name} を友達と登録できませんでした。"
|
||||||
heading: "%{user} を友達に追加しますか?"
|
heading: "%{user} を友達に追加しますか?"
|
||||||
success: "%{name} はあなたの友達になりました。"
|
success: "%{name} と友達になりました!"
|
||||||
new:
|
new:
|
||||||
confirm email address: "メール アドレスの確認:"
|
confirm email address: "メール アドレスの確認:"
|
||||||
confirm password: "パスワードの確認:"
|
confirm password: "パスワードの確認:"
|
||||||
|
@ -1613,10 +1619,11 @@ ja:
|
||||||
email address: "メール アドレス:"
|
email address: "メール アドレス:"
|
||||||
fill_form: 以下のフォームを埋めてください。アカウントを有効にするためのメールをお送りします。
|
fill_form: 以下のフォームを埋めてください。アカウントを有効にするためのメールをお送りします。
|
||||||
flash create success message: "%{email} に確認メッセージを送信しました。メールを確認してアカウントを有効にし次第、編集を開始できます。<br /><br />あなたの指定したアドレスに確認メールが届くまであなたはログインすることはできません。メールボックスでスパムフィルタを使っているときには webmaster@openstreetmap.org からの確認メールを受信できるようホワイトリストを設定してください。"
|
flash create success message: "%{email} に確認メッセージを送信しました。メールを確認してアカウントを有効にし次第、編集を開始できます。<br /><br />あなたの指定したアドレスに確認メールが届くまであなたはログインすることはできません。メールボックスでスパムフィルタを使っているときには webmaster@openstreetmap.org からの確認メールを受信できるようホワイトリストを設定してください。"
|
||||||
|
flash welcome: 登録ありがとうございます。歓迎メッセージと使い始めるためのヒントを %{email} にお送りしました。
|
||||||
heading: ユーザー アカウントの作成
|
heading: ユーザー アカウントの作成
|
||||||
license_agreement: アカウントを確認するときには <a href="http://www.osmfoundation.org/wiki/License/Contributor_Terms">contributor terms</a> に同意する必要があります。
|
license_agreement: アカウントを確認するときには <a href="http://www.osmfoundation.org/wiki/License/Contributor_Terms">contributor terms</a> に同意する必要があります。
|
||||||
no_auto_account_create: 残念ながら、現在、自動ではアカウントを作成できません。
|
no_auto_account_create: 残念ながら、現在、自動ではアカウントを作成できません。
|
||||||
not displayed publicly: 非公開です (詳細は <a href="http://wiki.openstreetmap.org/wiki/Privacy_Policy" title="メールアドレスの節を含む、ウィキのプライバシー ポリシー">プライバシー ポリシー</a>を参照してください)
|
not displayed publicly: 非公開です (詳細は <a href="http://wiki.openstreetmap.org/wiki/Privacy_Policy" title="メール アドレスの節を含む、ウィキのプライバシー ポリシー">プライバシー ポリシー</a>を参照してください)
|
||||||
openid: "%{logo} OpenID:"
|
openid: "%{logo} OpenID:"
|
||||||
openid association: "<p>あなたの OpenID は、まだ OpenStreetMap のどのアカウントとも関連付けられていません。</p>\n<ul>\n <li>OpenStreetMap が初めての場合は、下のフォームで新規アカウントを作成してください。</li>\n <li>\n 既にアカウントを持っている場合は、あなたのユーザー名とパスワードでログインしてください。\n ログイン後、ユーザー設定であなたの OpenID と関連付けることができます。\n </li>\n</ul>"
|
openid association: "<p>あなたの OpenID は、まだ OpenStreetMap のどのアカウントとも関連付けられていません。</p>\n<ul>\n <li>OpenStreetMap が初めての場合は、下のフォームで新規アカウントを作成してください。</li>\n <li>\n 既にアカウントを持っている場合は、あなたのユーザー名とパスワードでログインしてください。\n ログイン後、ユーザー設定であなたの OpenID と関連付けることができます。\n </li>\n</ul>"
|
||||||
openid no password: OpenID ではパスワードは不要ですが、特殊なツール/サーバーでは必要な場合があります。
|
openid no password: OpenID ではパスワードは不要ですが、特殊なツール/サーバーでは必要な場合があります。
|
||||||
|
@ -1670,7 +1677,7 @@ ja:
|
||||||
you need to accept or decline: 続行するには新しい投稿規約を読んで同意または拒否してください。
|
you need to accept or decline: 続行するには新しい投稿規約を読んで同意または拒否してください。
|
||||||
view:
|
view:
|
||||||
activate_user: このユーザーを有効にする
|
activate_user: このユーザーを有効にする
|
||||||
add as friend: 友達に追加
|
add as friend: 友達を追加
|
||||||
ago: (%{time_in_words_ago}前)
|
ago: (%{time_in_words_ago}前)
|
||||||
block_history: 受けたブロック
|
block_history: 受けたブロック
|
||||||
blocks by me: 自分が実行したブロック
|
blocks by me: 自分が実行したブロック
|
||||||
|
@ -1690,8 +1697,8 @@ ja:
|
||||||
diary: 日記
|
diary: 日記
|
||||||
edits: 編集
|
edits: 編集
|
||||||
email address: "メール アドレス:"
|
email address: "メール アドレス:"
|
||||||
friends_changesets: 友達によるすべての変更セットを参照
|
friends_changesets: 友達による変更セット
|
||||||
friends_diaries: 友達の日記エントリをすべて参照
|
friends_diaries: 友達の日記エントリ
|
||||||
hide_user: このユーザーを隠す
|
hide_user: このユーザーを隠す
|
||||||
if set location: 活動地域を指定すると、この下に周辺の地図と、近くで活動するマッパーが表示されます。%{settings_link} から設定をしてください。
|
if set location: 活動地域を指定すると、この下に周辺の地図と、近くで活動するマッパーが表示されます。%{settings_link} から設定をしてください。
|
||||||
km away: 距離 %{count} km
|
km away: 距離 %{count} km
|
||||||
|
@ -1705,8 +1712,8 @@ ja:
|
||||||
my settings: 設定
|
my settings: 設定
|
||||||
my traces: 自分のトレース
|
my traces: 自分のトレース
|
||||||
nearby users: 周辺のその他のユーザー
|
nearby users: 周辺のその他のユーザー
|
||||||
nearby_changesets: ユーザーの周辺のすべての変更セットを参照
|
nearby_changesets: 周辺のユーザーの変更セット
|
||||||
nearby_diaries: ユーザーの周辺のすべての日記エントリを参照
|
nearby_diaries: 周辺のユーザーの日記エントリ
|
||||||
new diary entry: 新しい日記エントリ
|
new diary entry: 新しい日記エントリ
|
||||||
no friends: あなたはまだ誰も友達として登録していません。
|
no friends: あなたはまだ誰も友達として登録していません。
|
||||||
no nearby users: あなたの活動地域周辺に他のマッパーはいないようです。
|
no nearby users: あなたの活動地域周辺に他のマッパーはいないようです。
|
||||||
|
@ -1814,7 +1821,7 @@ ja:
|
||||||
time_past: "%{time}前に終了しました"
|
time_past: "%{time}前に終了しました"
|
||||||
title: "%{block_by} が %{block_on} をブロックしました"
|
title: "%{block_by} が %{block_on} をブロックしました"
|
||||||
update:
|
update:
|
||||||
only_creator_can_edit: このブロックを編集するにはモデレータ権限が必要です。
|
only_creator_can_edit: このブロックを編集するにはモデレーター権限が必要です。
|
||||||
success: ブロックを更新しました。
|
success: ブロックを更新しました。
|
||||||
user_role:
|
user_role:
|
||||||
filter:
|
filter:
|
||||||
|
|
|
@ -791,7 +791,6 @@ ka:
|
||||||
user_diaries_tooltip: მომხმარებლების დღიურების ნახვა
|
user_diaries_tooltip: მომხმარებლების დღიურების ნახვა
|
||||||
view: იხილეთ
|
view: იხილეთ
|
||||||
view_tooltip: რუკის ხილვა
|
view_tooltip: რუკის ხილვა
|
||||||
welcome_user: კეთილი იყოს თქვენი მობრძანება, %{user_link}
|
|
||||||
welcome_user_link_tooltip: თქვენი მომხმარებლის გვერდი
|
welcome_user_link_tooltip: თქვენი მომხმარებლის გვერდი
|
||||||
wiki: ვიკი
|
wiki: ვიკი
|
||||||
license_page:
|
license_page:
|
||||||
|
|
|
@ -165,7 +165,7 @@ ko:
|
||||||
way: 길
|
way: 길
|
||||||
paging_nav:
|
paging_nav:
|
||||||
of: 중
|
of: 중
|
||||||
showing_page: 페이지 보기
|
showing_page: 페이지
|
||||||
redacted:
|
redacted:
|
||||||
message_html: 이 %{type}의 %{version} 버전은 수정한 버전으로 볼 수 없습니다. 자세한 내용은 %{redaction_link}(을)를 참고하세요.
|
message_html: 이 %{type}의 %{version} 버전은 수정한 버전으로 볼 수 없습니다. 자세한 내용은 %{redaction_link}(을)를 참고하세요.
|
||||||
redaction: 개정 %{id}
|
redaction: 개정 %{id}
|
||||||
|
@ -205,7 +205,7 @@ ko:
|
||||||
manually_select: 다른 지역 선택
|
manually_select: 다른 지역 선택
|
||||||
object_list:
|
object_list:
|
||||||
api: API로부터 이 지역 회수
|
api: API로부터 이 지역 회수
|
||||||
back: 개체 목록 표시
|
back: 개체 목록으로 돌아가기
|
||||||
details: 자세한 사항
|
details: 자세한 사항
|
||||||
heading: 개체 목록
|
heading: 개체 목록
|
||||||
history:
|
history:
|
||||||
|
@ -247,8 +247,8 @@ ko:
|
||||||
way_title: "길: %{way_name}"
|
way_title: "길: %{way_name}"
|
||||||
way_details:
|
way_details:
|
||||||
also_part_of:
|
also_part_of:
|
||||||
one: "%{related_ways}의 일부"
|
one: "%{related_ways} 길의 일부"
|
||||||
other: "%{related_ways}의 일부"
|
other: "%{related_ways} 길의 일부"
|
||||||
nodes: "노드:"
|
nodes: "노드:"
|
||||||
part_of: "포함되는 길:"
|
part_of: "포함되는 길:"
|
||||||
way_history:
|
way_history:
|
||||||
|
@ -268,7 +268,7 @@ ko:
|
||||||
changeset_paging_nav:
|
changeset_paging_nav:
|
||||||
next: 다음 »
|
next: 다음 »
|
||||||
previous: « 이전
|
previous: « 이전
|
||||||
showing_page: 페이지 %{page} 보는 중
|
showing_page: 페이지 %{page}
|
||||||
changesets:
|
changesets:
|
||||||
area: 지역
|
area: 지역
|
||||||
comment: 설명
|
comment: 설명
|
||||||
|
@ -276,13 +276,13 @@ ko:
|
||||||
saved_at: 저장 시간
|
saved_at: 저장 시간
|
||||||
user: 사용자
|
user: 사용자
|
||||||
list:
|
list:
|
||||||
description: 최근 바뀜
|
description: 지도에 최근 기여 찾아보기
|
||||||
description_bbox: "%{bbox} 안에서 바뀜집합"
|
description_bbox: "%{bbox} 안에서 바뀜집합"
|
||||||
description_friend: 내 친구의 바뀜집합
|
description_friend: 내 친구의 바뀜집합
|
||||||
description_nearby: 근처 사용자의 바뀜집합
|
description_nearby: 근처 사용자의 바뀜집합
|
||||||
description_user: "%{user} 사용자의 바뀜집합"
|
description_user: "%{user} 사용자의 바뀜집합"
|
||||||
description_user_bbox: "%{bbox} 안에서 %{user} 사용자의 바뀜집합"
|
description_user_bbox: "%{bbox} 안에서 %{user} 사용자의 바뀜집합"
|
||||||
empty_anon_html: 아직 수정한 사항이 없습니다
|
empty_anon_html: 아직 편집이 없습니다.
|
||||||
empty_user_html: 아직 어떠한 편집을 하지 않은 것으로 보입니다. 시작하려면, <a href='http://wiki.openstreetmap.org/wiki/Beginners_Guide_1.3'>초보자 가이드</a>를 참고하세요.
|
empty_user_html: 아직 어떠한 편집을 하지 않은 것으로 보입니다. 시작하려면, <a href='http://wiki.openstreetmap.org/wiki/Beginners_Guide_1.3'>초보자 가이드</a>를 참고하세요.
|
||||||
heading: 바뀜집합
|
heading: 바뀜집합
|
||||||
heading_bbox: 바뀜집합
|
heading_bbox: 바뀜집합
|
||||||
|
@ -320,7 +320,7 @@ ko:
|
||||||
confirm: 확인
|
confirm: 확인
|
||||||
edit_link: 이 항목 수정
|
edit_link: 이 항목 수정
|
||||||
hide_link: 이 항목 숨기기
|
hide_link: 이 항목 숨기기
|
||||||
posted_by: "%{link_user} 사용자가 %{language_link}에서 %{created}에 게시함"
|
posted_by: "%{link_user} 사용자가 %{language_link}로 %{created}에 게시함"
|
||||||
reply_link: 이 항목에 답변하기
|
reply_link: 이 항목에 답변하기
|
||||||
edit:
|
edit:
|
||||||
body: "내용:"
|
body: "내용:"
|
||||||
|
@ -335,13 +335,13 @@ ko:
|
||||||
use_map_link: 지도 사용
|
use_map_link: 지도 사용
|
||||||
feed:
|
feed:
|
||||||
all:
|
all:
|
||||||
description: OpenStreetMap의 사용자에서 최근 일지 항목
|
description: OpenStreetMap의 사용자의 최근 일지 항목
|
||||||
title: OpenStreetMap 일지 항목
|
title: OpenStreetMap 일지 항목
|
||||||
language:
|
language:
|
||||||
description: "%{language_name}로 된 OpenStreetMap 최근 일지 항목"
|
description: "%{language_name}로 된 OpenStreetMap 최근 일지 항목"
|
||||||
title: "%{language_name}로 된 OpenStreetMap 일지 항목"
|
title: "%{language_name}로 된 OpenStreetMap 일지 항목"
|
||||||
user:
|
user:
|
||||||
description: "%{user} 사용자에서 최근 OpenStreetMap 일지 항목"
|
description: "%{user} 사용자의 최근 OpenStreetMap 일지 항목"
|
||||||
title: "%{user} 사용자에 대한 OpenStreetMap 일지 항목"
|
title: "%{user} 사용자에 대한 OpenStreetMap 일지 항목"
|
||||||
list:
|
list:
|
||||||
in_language_title: "%{language} 일지 항목"
|
in_language_title: "%{language} 일지 항목"
|
||||||
|
@ -350,7 +350,7 @@ ko:
|
||||||
newer_entries: 다음 항목
|
newer_entries: 다음 항목
|
||||||
no_entries: 일지 항목이 없습니다
|
no_entries: 일지 항목이 없습니다
|
||||||
older_entries: 이전 항목
|
older_entries: 이전 항목
|
||||||
recent_entries: "최근 일지 항목:"
|
recent_entries: 최근 일지 항목
|
||||||
title: 사용자 일지
|
title: 사용자 일지
|
||||||
title_friends: 친구의 일지
|
title_friends: 친구의 일지
|
||||||
title_nearby: 근처 사용자의 일지
|
title_nearby: 근처 사용자의 일지
|
||||||
|
@ -981,7 +981,6 @@ ko:
|
||||||
user_diaries_tooltip: 사용자 일지 보기
|
user_diaries_tooltip: 사용자 일지 보기
|
||||||
view: 보기
|
view: 보기
|
||||||
view_tooltip: 지도 보기
|
view_tooltip: 지도 보기
|
||||||
welcome_user: "%{user_link}님 환영합니다."
|
|
||||||
welcome_user_link_tooltip: 내 사용자 문서
|
welcome_user_link_tooltip: 내 사용자 문서
|
||||||
wiki: 위키
|
wiki: 위키
|
||||||
wiki_title: 프로젝트에 대한 위키 사이트
|
wiki_title: 프로젝트에 대한 위키 사이트
|
||||||
|
@ -1097,10 +1096,10 @@ ko:
|
||||||
delete_button: 삭제
|
delete_button: 삭제
|
||||||
notifier:
|
notifier:
|
||||||
diary_comment_notification:
|
diary_comment_notification:
|
||||||
footer: "%{readurl}에서도 댓글을 확인할 수 있습니다. %{commenturl}에서 댓글을 남기거나 %{replyurl}에서 답글을 남길 수 있습니다."
|
footer: "%{readurl}에서도 덧글을 확인할 수 있습니다. %{commenturl}에서 덧글을 남기거나 %{replyurl}에서 답글을 남길 수 있습니다."
|
||||||
header: "%{from_user} 님이 %{subject} 제목의 OpenStreetMap 일지 항목에 댓글을 남겼습니다:"
|
header: "%{from_user} 님이 %{subject} 제목의 OpenStreetMap 일지 항목에 덧글을 남겼습니다:"
|
||||||
hi: "%{to_user}님 안녕하세요."
|
hi: "%{to_user}님 안녕하세요."
|
||||||
subject: "[OpenStreetMap] %{user} 님이 당신의 일지 항목에 댓글을 남겼습니다."
|
subject: "[OpenStreetMap] %{user} 님이 당신의 일지 항목에 덧글을 남겼습니다."
|
||||||
email_confirm:
|
email_confirm:
|
||||||
subject: "[OpenStreetMap] 이메일 주소 확인"
|
subject: "[OpenStreetMap] 이메일 주소 확인"
|
||||||
email_confirm_html:
|
email_confirm_html:
|
||||||
|
@ -1414,6 +1413,7 @@ ko:
|
||||||
visibility: "공개 여부:"
|
visibility: "공개 여부:"
|
||||||
visibility_help: 이게 무슨 의미입니까?
|
visibility_help: 이게 무슨 의미입니까?
|
||||||
list:
|
list:
|
||||||
|
description: 최근 GPS 추적 올리기 찾아보기
|
||||||
empty_html: 여기에 아직 아무것도 없습니다. <a href='%{upload_link}'>새 추적을 올리거나</a> <a href='http://wiki.openstreetmap.org/wiki/Beginners_Guide_1.2'>위키 문서</a>에 GPS 추적에 대한 자세한 내용을 알아보세요.
|
empty_html: 여기에 아직 아무것도 없습니다. <a href='%{upload_link}'>새 추적을 올리거나</a> <a href='http://wiki.openstreetmap.org/wiki/Beginners_Guide_1.2'>위키 문서</a>에 GPS 추적에 대한 자세한 내용을 알아보세요.
|
||||||
public_traces: 공개 GPS 추적
|
public_traces: 공개 GPS 추적
|
||||||
public_traces_from: "%{user} 사용자의 공중 GPS 추적"
|
public_traces_from: "%{user} 사용자의 공중 GPS 추적"
|
||||||
|
@ -1461,7 +1461,7 @@ ko:
|
||||||
trace_paging_nav:
|
trace_paging_nav:
|
||||||
newer: 다음 추적
|
newer: 다음 추적
|
||||||
older: 이전 추적
|
older: 이전 추적
|
||||||
showing_page: 페이지 %{page} 보는 중
|
showing_page: 페이지 %{page}
|
||||||
view:
|
view:
|
||||||
delete_track: 이 추적 삭제
|
delete_track: 이 추적 삭제
|
||||||
description: "설명:"
|
description: "설명:"
|
||||||
|
@ -1564,8 +1564,8 @@ ko:
|
||||||
heading: 사용자
|
heading: 사용자
|
||||||
hide: 선택한 사용자 숨기기
|
hide: 선택한 사용자 숨기기
|
||||||
showing:
|
showing:
|
||||||
one: 페이지 %{page} 보는 중 (%{items} 중 %{first_item})
|
one: 페이지 %{page} (%{items} 중 %{first_item})
|
||||||
other: 페이지 %{page} 보는 중 (%{items} 중 %{first_item}-%{last_item})
|
other: 페이지 %{page} (%{items} 중 %{first_item}-%{last_item})
|
||||||
summary: "%{name}(이)가 %{date}에 %{ip_address}에서 만들어짐"
|
summary: "%{name}(이)가 %{date}에 %{ip_address}에서 만들어짐"
|
||||||
summary_no_ip: "%{name}(이)가 %{date}에 만들어짐"
|
summary_no_ip: "%{name}(이)가 %{date}에 만들어짐"
|
||||||
title: 사용자
|
title: 사용자
|
||||||
|
@ -1627,7 +1627,7 @@ ko:
|
||||||
button: 친구 추가
|
button: 친구 추가
|
||||||
failed: 죄송합니다, %{name} 사용자를 친구로 추가하는 데 실패했습니다.
|
failed: 죄송합니다, %{name} 사용자를 친구로 추가하는 데 실패했습니다.
|
||||||
heading: "%{user} 사용자를 친구로 추가할까요?"
|
heading: "%{user} 사용자를 친구로 추가할까요?"
|
||||||
success: "%{name} 사용자는 친구입니다."
|
success: "%{name} 사용자는 이제 친구입니다!"
|
||||||
new:
|
new:
|
||||||
confirm email address: "이메일 주소 확인:"
|
confirm email address: "이메일 주소 확인:"
|
||||||
confirm password: "비밀번호 확인:"
|
confirm password: "비밀번호 확인:"
|
||||||
|
@ -1645,7 +1645,7 @@ ko:
|
||||||
not displayed publicly: 공개적으로 보여지지 않습니다 (<a href="http://wiki.openstreetmap.org/wiki/Privacy_Policy" title="이메일 주소에 대한 부분을 포함한 위키 개인정보 정책">개인정보 정책</a>을 참고하세요)
|
not displayed publicly: 공개적으로 보여지지 않습니다 (<a href="http://wiki.openstreetmap.org/wiki/Privacy_Policy" title="이메일 주소에 대한 부분을 포함한 위키 개인정보 정책">개인정보 정책</a>을 참고하세요)
|
||||||
openid: "%{logo} OpenID:"
|
openid: "%{logo} OpenID:"
|
||||||
openid association: "<p>OpenID는 아직 OpenStreetMap 계정과 연결되지 않았습니다.</p>\n<ul>\n <li>OpenStreetMap에 새로 가입하려면 아래의 양식을 사용하여 새 계정을 만드세요.</li>\n <li>\n 이미 계정이 있다면 사용자 이름과 비밀번호를 사용해 로그인하고 나서\n 사용자 설정에서 OpenID와 계정을 연결할 수 있습니다.\n </li>\n</ul>"
|
openid association: "<p>OpenID는 아직 OpenStreetMap 계정과 연결되지 않았습니다.</p>\n<ul>\n <li>OpenStreetMap에 새로 가입하려면 아래의 양식을 사용하여 새 계정을 만드세요.</li>\n <li>\n 이미 계정이 있다면 사용자 이름과 비밀번호를 사용해 로그인하고 나서\n 사용자 설정에서 OpenID와 계정을 연결할 수 있습니다.\n </li>\n</ul>"
|
||||||
openid no password: OpenID로 비밀번호가 필요하지 않지만 몇가지 추가 도구나 서버는 여전히 비밀번호가 필요할 수 있습니다.
|
openid no password: OpenID로 비밀번호가 필요하지 않지만 몇 가지 추가 도구나 서버는 여전히 비밀번호가 필요할 수 있습니다.
|
||||||
password: "비밀번호:"
|
password: "비밀번호:"
|
||||||
terms accepted: 새 기여자 약관에 동의하셔서 감사합니다!
|
terms accepted: 새 기여자 약관에 동의하셔서 감사합니다!
|
||||||
terms declined: 새 기여자 약관에 동의하지 않은 것으로 결정했기에 죄송합니다. 자세한 정보에 대해서는 <a href="%{url}">이 위키 문서</a>를 참고하세요.
|
terms declined: 새 기여자 약관에 동의하지 않은 것으로 결정했기에 죄송합니다. 자세한 정보에 대해서는 <a href="%{url}">이 위키 문서</a>를 참고하세요.
|
||||||
|
@ -1657,11 +1657,11 @@ ko:
|
||||||
title: 이러한 사용자는 없습니다
|
title: 이러한 사용자는 없습니다
|
||||||
popup:
|
popup:
|
||||||
friend: 친구
|
friend: 친구
|
||||||
nearby mapper: 인근 매퍼
|
nearby mapper: 근처 매퍼
|
||||||
your location: 내 위치
|
your location: 내 위치
|
||||||
remove_friend:
|
remove_friend:
|
||||||
button: 친구 제거
|
button: 친구 제거
|
||||||
heading: "%{user} 사용자를 친구로 제거할까요?"
|
heading: "%{user} 사용자를 친구 제거할까요?"
|
||||||
not_a_friend: "%{name} 사용자는 친구가 아닙니다."
|
not_a_friend: "%{name} 사용자는 친구가 아닙니다."
|
||||||
success: "%{name} 사용자를 친구에서 제거했습니다."
|
success: "%{name} 사용자를 친구에서 제거했습니다."
|
||||||
reset_password:
|
reset_password:
|
||||||
|
@ -1716,10 +1716,10 @@ ko:
|
||||||
diary: 일지
|
diary: 일지
|
||||||
edits: 편집
|
edits: 편집
|
||||||
email address: "이메일 주소:"
|
email address: "이메일 주소:"
|
||||||
friends_changesets: 친구의 모든 바뀜집합 찾아보기
|
friends_changesets: 친구의 바뀜집합
|
||||||
friends_diaries: 친구의 모든 일지 항목 찾아보기
|
friends_diaries: 친구의 일지 항목
|
||||||
hide_user: 이 사용자를 숨기기
|
hide_user: 이 사용자를 숨기기
|
||||||
if set location: 위치를 설정하면 예쁜 지도와 물건이 여기에 나타납니다. %{settings_link} 페이지에 생활 주소를 설정할 수 있습니다.
|
if set location: 근처 사용자를 보려면 %{settings_link} 페이지에 생활 주소를 설정하세요.
|
||||||
km away: "%{count}km 거리"
|
km away: "%{count}km 거리"
|
||||||
latest edit: "최근 편집 %{ago}:"
|
latest edit: "최근 편집 %{ago}:"
|
||||||
m away: "%{count}m 거리"
|
m away: "%{count}m 거리"
|
||||||
|
@ -1731,8 +1731,8 @@ ko:
|
||||||
my settings: 내 설정
|
my settings: 내 설정
|
||||||
my traces: 내 발자취
|
my traces: 내 발자취
|
||||||
nearby users: 기타 근처 사용자
|
nearby users: 기타 근처 사용자
|
||||||
nearby_changesets: 인근 사용자의 모든 바뀜집합 찾아보기
|
nearby_changesets: 근처 사용자의 바뀜집합
|
||||||
nearby_diaries: 인근 사용자의 모든 일지 항목 찾아보기
|
nearby_diaries: 근처 사용자의 일지 항목
|
||||||
new diary entry: 새 일지 항목
|
new diary entry: 새 일지 항목
|
||||||
no friends: 아직 어떠한 친구도 추가하지 않았습니다.
|
no friends: 아직 어떠한 친구도 추가하지 않았습니다.
|
||||||
no nearby users: 아직 근처에 매핑을 인정하는 다른 사용자가 없습니다.
|
no nearby users: 아직 근처에 매핑을 인정하는 다른 사용자가 없습니다.
|
||||||
|
@ -1816,7 +1816,7 @@ ko:
|
||||||
revoke: 철회!
|
revoke: 철회!
|
||||||
revoker_name: 철회자
|
revoker_name: 철회자
|
||||||
show: 보기
|
show: 보기
|
||||||
showing_page: 페이지 %{page} 보는 중
|
showing_page: 페이지 %{page}
|
||||||
status: 상태
|
status: 상태
|
||||||
period:
|
period:
|
||||||
one: 1시간
|
one: 1시간
|
||||||
|
|
|
@ -445,7 +445,6 @@ lb:
|
||||||
user_diaries: Benotzer Bloggen
|
user_diaries: Benotzer Bloggen
|
||||||
view: Weisen
|
view: Weisen
|
||||||
view_tooltip: Kaart weisen
|
view_tooltip: Kaart weisen
|
||||||
welcome_user: Wëllkomm, %{user_link}
|
|
||||||
welcome_user_link_tooltip: Är Benotzersäit
|
welcome_user_link_tooltip: Är Benotzersäit
|
||||||
wiki: Wiki
|
wiki: Wiki
|
||||||
license_page:
|
license_page:
|
||||||
|
|
|
@ -962,7 +962,6 @@ lt:
|
||||||
user_diaries_tooltip: Peržiūrėti naudotojų dienoraščius
|
user_diaries_tooltip: Peržiūrėti naudotojų dienoraščius
|
||||||
view: Žiūrėti
|
view: Žiūrėti
|
||||||
view_tooltip: Žiūrėti žemėlapį
|
view_tooltip: Žiūrėti žemėlapį
|
||||||
welcome_user: Sveiki, %{user_link}
|
|
||||||
welcome_user_link_tooltip: Jūsų naudotojo puslapis
|
welcome_user_link_tooltip: Jūsų naudotojo puslapis
|
||||||
wiki: Wiki
|
wiki: Wiki
|
||||||
wiki_title: Projekto wiki svetainė
|
wiki_title: Projekto wiki svetainė
|
||||||
|
|
|
@ -991,7 +991,6 @@ lv:
|
||||||
user_diaries_tooltip: Skatīt lietotāju dienasgrāmatas
|
user_diaries_tooltip: Skatīt lietotāju dienasgrāmatas
|
||||||
view: Skatīt
|
view: Skatīt
|
||||||
view_tooltip: Skatīti karti
|
view_tooltip: Skatīti karti
|
||||||
welcome_user: Laipni lūdzam, %{user_link}
|
|
||||||
welcome_user_link_tooltip: Tava lietotāja lapa
|
welcome_user_link_tooltip: Tava lietotāja lapa
|
||||||
wiki: Viki
|
wiki: Viki
|
||||||
wiki_title: Projekta viki vietne
|
wiki_title: Projekta viki vietne
|
||||||
|
|
|
@ -167,7 +167,7 @@ mk:
|
||||||
way: пат
|
way: пат
|
||||||
paging_nav:
|
paging_nav:
|
||||||
of: од
|
of: од
|
||||||
showing_page: Приказ на страница
|
showing_page: страница
|
||||||
redacted:
|
redacted:
|
||||||
message_html: Верзијата %{version} на оваа %{type} не може да се прикаже бидејќи е редактирана. Повеќе на %{redaction_link}.
|
message_html: Верзијата %{version} на оваа %{type} не може да се прикаже бидејќи е редактирана. Повеќе на %{redaction_link}.
|
||||||
redaction: Редакција %{id}
|
redaction: Редакција %{id}
|
||||||
|
@ -207,7 +207,7 @@ mk:
|
||||||
manually_select: Рачно изберете друга површина
|
manually_select: Рачно изберете друга површина
|
||||||
object_list:
|
object_list:
|
||||||
api: Retrieve this area from the API
|
api: Retrieve this area from the API
|
||||||
back: Прикажи список на предмети
|
back: Назад на списокот на предмети
|
||||||
details: Подробно
|
details: Подробно
|
||||||
heading: Список на предмети
|
heading: Список на предмети
|
||||||
history:
|
history:
|
||||||
|
@ -249,8 +249,8 @@ mk:
|
||||||
way_title: "Пат: %{way_name}"
|
way_title: "Пат: %{way_name}"
|
||||||
way_details:
|
way_details:
|
||||||
also_part_of:
|
also_part_of:
|
||||||
one: исто така дел и од патот %{related_ways}
|
one: дел од патот %{related_ways}
|
||||||
other: исто така дел и од патиштата %{related_ways}
|
other: дел од патиштата %{related_ways}
|
||||||
nodes: Јазли
|
nodes: Јазли
|
||||||
part_of: "Дел од:"
|
part_of: "Дел од:"
|
||||||
way_history:
|
way_history:
|
||||||
|
@ -262,7 +262,6 @@ mk:
|
||||||
changeset:
|
changeset:
|
||||||
anonymous: Анонимен
|
anonymous: Анонимен
|
||||||
big_area: (голема)
|
big_area: (голема)
|
||||||
id: бр. %{id}
|
|
||||||
no_comment: (нема)
|
no_comment: (нема)
|
||||||
no_edits: (нема уредувања)
|
no_edits: (нема уредувања)
|
||||||
show_area_box: прикажи рамка на површина
|
show_area_box: прикажи рамка на површина
|
||||||
|
@ -271,7 +270,7 @@ mk:
|
||||||
changeset_paging_nav:
|
changeset_paging_nav:
|
||||||
next: Следно »
|
next: Следно »
|
||||||
previous: « Претходно
|
previous: « Претходно
|
||||||
showing_page: Прикажана е страницата %{page}
|
showing_page: Страница %{page}
|
||||||
changesets:
|
changesets:
|
||||||
area: Површина
|
area: Површина
|
||||||
comment: Коментар
|
comment: Коментар
|
||||||
|
@ -279,13 +278,13 @@ mk:
|
||||||
saved_at: Зачувано во
|
saved_at: Зачувано во
|
||||||
user: Корисник
|
user: Корисник
|
||||||
list:
|
list:
|
||||||
description: Скорешни промени
|
description: Прелистување на скорешните промени на картата
|
||||||
description_bbox: Измени во рамките на %{bbox}
|
description_bbox: Измени во рамките на %{bbox}
|
||||||
description_friend: Измени на ваши пријатели
|
description_friend: Измени на ваши пријатели
|
||||||
description_nearby: Измени од соседни корисници
|
description_nearby: Измени од соседни корисници
|
||||||
description_user: Измени на %{user}
|
description_user: Измени на %{user}
|
||||||
description_user_bbox: Измени на %{user} во рамките на %{bbox}
|
description_user_bbox: Измени на %{user} во рамките на %{bbox}
|
||||||
empty_anon_html: Сè уште нема уредувања
|
empty_anon_html: Сè уште нема уредувања.
|
||||||
empty_user_html: Сè уште немате направено ниедно уредување. За да почнете, прво погледајте ги <a href='http://wiki.openstreetmap.org/wiki/Mk:Beginners_Guide_1.3'>напатствијата за почетници</a>.
|
empty_user_html: Сè уште немате направено ниедно уредување. За да почнете, прво погледајте ги <a href='http://wiki.openstreetmap.org/wiki/Mk:Beginners_Guide_1.3'>напатствијата за почетници</a>.
|
||||||
heading: Измени
|
heading: Измени
|
||||||
heading_bbox: Измени
|
heading_bbox: Измени
|
||||||
|
@ -353,7 +352,7 @@ mk:
|
||||||
newer_entries: Понови ставки
|
newer_entries: Понови ставки
|
||||||
no_entries: Нема дневнички ставки
|
no_entries: Нема дневнички ставки
|
||||||
older_entries: Постари ставки
|
older_entries: Постари ставки
|
||||||
recent_entries: "Скорешни дневнички записи:"
|
recent_entries: Скорешни дневнички записи
|
||||||
title: Дневници на корисници
|
title: Дневници на корисници
|
||||||
title_friends: Дневници на пријателите
|
title_friends: Дневници на пријателите
|
||||||
title_nearby: Дневници на соседните корисници
|
title_nearby: Дневници на соседните корисници
|
||||||
|
@ -989,7 +988,6 @@ mk:
|
||||||
user_diaries_tooltip: Види кориснички дневници
|
user_diaries_tooltip: Види кориснички дневници
|
||||||
view: Карта
|
view: Карта
|
||||||
view_tooltip: Види карта
|
view_tooltip: Види карта
|
||||||
welcome_user: Добредојде, %{user_link}
|
|
||||||
welcome_user_link_tooltip: Ваша корисничка страница
|
welcome_user_link_tooltip: Ваша корисничка страница
|
||||||
wiki: Вики
|
wiki: Вики
|
||||||
wiki_title: Помошна страница за проектот
|
wiki_title: Помошна страница за проектот
|
||||||
|
@ -1429,6 +1427,7 @@ mk:
|
||||||
visibility_help: што значи ова?
|
visibility_help: што значи ова?
|
||||||
visibility_help_url: http://wiki.openstreetmap.org/wiki/Visibility_of_GPS_traces?uselang=mk
|
visibility_help_url: http://wiki.openstreetmap.org/wiki/Visibility_of_GPS_traces?uselang=mk
|
||||||
list:
|
list:
|
||||||
|
description: Прелистување на скороподигнати GPS-траги
|
||||||
empty_html: Тука сè уште нема ништо. <a href='%{upload_link}'>Подигнете нова трага</a> или дознајте повеќе за GPS-трагите на <a href='http://wiki.openstreetmap.org/wiki/Mk:Beginners_Guide_1.2'>нивната викстраница</a>.
|
empty_html: Тука сè уште нема ништо. <a href='%{upload_link}'>Подигнете нова трага</a> или дознајте повеќе за GPS-трагите на <a href='http://wiki.openstreetmap.org/wiki/Mk:Beginners_Guide_1.2'>нивната викстраница</a>.
|
||||||
public_traces: Јавни GPS-траги
|
public_traces: Јавни GPS-траги
|
||||||
public_traces_from: Јавни GPS-траги од %{user}
|
public_traces_from: Јавни GPS-траги од %{user}
|
||||||
|
@ -1478,7 +1477,7 @@ mk:
|
||||||
trace_paging_nav:
|
trace_paging_nav:
|
||||||
newer: Понови траги
|
newer: Понови траги
|
||||||
older: Постари траги
|
older: Постари траги
|
||||||
showing_page: Прикажана е страницата %{page}
|
showing_page: Страница %{page}
|
||||||
view:
|
view:
|
||||||
delete_track: Избриши ја трагава
|
delete_track: Избриши ја трагава
|
||||||
description: "Опис:"
|
description: "Опис:"
|
||||||
|
@ -1583,8 +1582,8 @@ mk:
|
||||||
heading: Корисници
|
heading: Корисници
|
||||||
hide: Скриј одбрани корисници
|
hide: Скриј одбрани корисници
|
||||||
showing:
|
showing:
|
||||||
one: Прикажана е страницата %{page} (%{first_item} од %{items})
|
one: Страница %{page} (%{first_item} од %{items})
|
||||||
other: Прикажани се страниците %{page} (%{first_item}-%{last_item} од %{items})
|
other: Страница %{page} (%{first_item}-%{last_item} од %{items})
|
||||||
summary: "%{name} создадено од %{ip_address} на %{date}"
|
summary: "%{name} создадено од %{ip_address} на %{date}"
|
||||||
summary_no_ip: "%{name} создадено на %{date}"
|
summary_no_ip: "%{name} создадено на %{date}"
|
||||||
title: Корисници
|
title: Корисници
|
||||||
|
@ -1646,7 +1645,7 @@ mk:
|
||||||
button: Додај како пријател
|
button: Додај како пријател
|
||||||
failed: Жалам, не можев да го додадам корисникот %{name} како пријател.
|
failed: Жалам, не можев да го додадам корисникот %{name} како пријател.
|
||||||
heading: Да го додадам корисникот %{user} како пријател?
|
heading: Да го додадам корисникот %{user} како пријател?
|
||||||
success: Сега сте пријатели со %{name}.
|
success: Сега сте пријатели со %{name}!
|
||||||
new:
|
new:
|
||||||
confirm email address: "Потврдете ја е-поштата:"
|
confirm email address: "Потврдете ја е-поштата:"
|
||||||
confirm password: "Потврдете ја лозинката:"
|
confirm password: "Потврдете ја лозинката:"
|
||||||
|
@ -1718,7 +1717,7 @@ mk:
|
||||||
you need to accept or decline: Прочитајте ги новите Услови за учество, а потоа согласете се или одбијте ги.
|
you need to accept or decline: Прочитајте ги новите Услови за учество, а потоа согласете се или одбијте ги.
|
||||||
view:
|
view:
|
||||||
activate_user: активирај го корисников
|
activate_user: активирај го корисников
|
||||||
add as friend: додај како пријател
|
add as friend: додај во пријатели
|
||||||
ago: (пред %{time_in_words_ago})
|
ago: (пред %{time_in_words_ago})
|
||||||
block_history: примени блокови
|
block_history: примени блокови
|
||||||
blocks by me: извршени болокови
|
blocks by me: извршени болокови
|
||||||
|
@ -1738,10 +1737,10 @@ mk:
|
||||||
diary: дневник
|
diary: дневник
|
||||||
edits: уредувања
|
edits: уредувања
|
||||||
email address: Е-пошта
|
email address: Е-пошта
|
||||||
friends_changesets: Сите измени на пријателите
|
friends_changesets: измени на пријателите
|
||||||
friends_diaries: Прелистување на сите дневнички записи на пријателите
|
friends_diaries: дневнички записи на пријателите
|
||||||
hide_user: скриј го корисников
|
hide_user: скриј го корисников
|
||||||
if set location: Ако ја наместите вашата местоположба, под ова ќе ви се појави убава карта и други работи. Матичната местоположба можете да си ја наместите на страницата %{settings_link}.
|
if set location: Задајте ја вашата местоположба на страницата %{settings_link} за да ги видите соседните корисници околу вас.
|
||||||
km away: "%{count} км од вас"
|
km away: "%{count} км од вас"
|
||||||
latest edit: "Последно уредување %{ago}:"
|
latest edit: "Последно уредување %{ago}:"
|
||||||
m away: "%{count} м од вас"
|
m away: "%{count} м од вас"
|
||||||
|
@ -1753,8 +1752,8 @@ mk:
|
||||||
my settings: мои прилагодувања
|
my settings: мои прилагодувања
|
||||||
my traces: мои траги
|
my traces: мои траги
|
||||||
nearby users: Други соседни корисници
|
nearby users: Други соседни корисници
|
||||||
nearby_changesets: Прелистување на сите измени на соседните корисници
|
nearby_changesets: измени на соседните корисници
|
||||||
nearby_diaries: Прелистување на сите дневнички записи на соседните корисници
|
nearby_diaries: дневнички записи на соседн. корисн.
|
||||||
new diary entry: нова ставка во дневникот
|
new diary entry: нова ставка во дневникот
|
||||||
no friends: Сè уште немате додадено пријатели.
|
no friends: Сè уште немате додадено пријатели.
|
||||||
no nearby users: Сè уште нема други корисници во вашата околина што признаваат дека работат на карти.
|
no nearby users: Сè уште нема други корисници во вашата околина што признаваат дека работат на карти.
|
||||||
|
@ -1838,7 +1837,7 @@ mk:
|
||||||
revoke: Поништи!
|
revoke: Поништи!
|
||||||
revoker_name: "Поништил:"
|
revoker_name: "Поништил:"
|
||||||
show: Прикажи
|
show: Прикажи
|
||||||
showing_page: Прикажана е страницата %{page}
|
showing_page: Страница %{page}
|
||||||
status: Статус
|
status: Статус
|
||||||
period:
|
period:
|
||||||
one: 1 час
|
one: 1 час
|
||||||
|
|
|
@ -977,7 +977,6 @@ ms:
|
||||||
user_diaries_tooltip: Lihat diari pengguna
|
user_diaries_tooltip: Lihat diari pengguna
|
||||||
view: Lihat
|
view: Lihat
|
||||||
view_tooltip: Lihat peta
|
view_tooltip: Lihat peta
|
||||||
welcome_user: Selamat datang, %{user_link}
|
|
||||||
welcome_user_link_tooltip: Laman pengguna anda
|
welcome_user_link_tooltip: Laman pengguna anda
|
||||||
wiki: Wiki
|
wiki: Wiki
|
||||||
wiki_title: Tapak wiki projek
|
wiki_title: Tapak wiki projek
|
||||||
|
|
|
@ -1000,7 +1000,6 @@ nb:
|
||||||
user_diaries_tooltip: Vis brukerens dagbok
|
user_diaries_tooltip: Vis brukerens dagbok
|
||||||
view: Vis
|
view: Vis
|
||||||
view_tooltip: Vis kartet
|
view_tooltip: Vis kartet
|
||||||
welcome_user: Velkommen, %{user_link}
|
|
||||||
welcome_user_link_tooltip: Din brukerside
|
welcome_user_link_tooltip: Din brukerside
|
||||||
wiki: Wiki
|
wiki: Wiki
|
||||||
wiki_title: Wikinettsted for prosjektet
|
wiki_title: Wikinettsted for prosjektet
|
||||||
|
|
|
@ -517,7 +517,6 @@ nds:
|
||||||
user_diaries_tooltip: Bruker-Dagböker wiesen
|
user_diaries_tooltip: Bruker-Dagböker wiesen
|
||||||
view: ankieken
|
view: ankieken
|
||||||
view_tooltip: Koort wiesen
|
view_tooltip: Koort wiesen
|
||||||
welcome_user: Willkamen, %{user_link}
|
|
||||||
welcome_user_link_tooltip: Dien Brukersied
|
welcome_user_link_tooltip: Dien Brukersied
|
||||||
wiki: Wiki
|
wiki: Wiki
|
||||||
license_page:
|
license_page:
|
||||||
|
|
|
@ -174,7 +174,7 @@ nl:
|
||||||
way: weg
|
way: weg
|
||||||
paging_nav:
|
paging_nav:
|
||||||
of: van
|
of: van
|
||||||
showing_page: Bezig met weergeven van pagina
|
showing_page: pagina
|
||||||
redacted:
|
redacted:
|
||||||
message_html: Versie %{version} van dit element van het type %{type} kan niet weergegeven worden omdat deze na redigering geblokkeerd is. Zie %{redaction_link} voor details.
|
message_html: Versie %{version} van dit element van het type %{type} kan niet weergegeven worden omdat deze na redigering geblokkeerd is. Zie %{redaction_link} voor details.
|
||||||
redaction: Redigering %{id}
|
redaction: Redigering %{id}
|
||||||
|
@ -214,7 +214,7 @@ nl:
|
||||||
manually_select: Handmatig een ander gebied selecteren
|
manually_select: Handmatig een ander gebied selecteren
|
||||||
object_list:
|
object_list:
|
||||||
api: Dit gebied via de API ophalen
|
api: Dit gebied via de API ophalen
|
||||||
back: Objectenlijst weergeven
|
back: Terug naar objectenlijst
|
||||||
details: Details
|
details: Details
|
||||||
heading: Objectenlijst
|
heading: Objectenlijst
|
||||||
history:
|
history:
|
||||||
|
@ -256,8 +256,8 @@ nl:
|
||||||
way_title: "Weg: %{way_name}"
|
way_title: "Weg: %{way_name}"
|
||||||
way_details:
|
way_details:
|
||||||
also_part_of:
|
also_part_of:
|
||||||
one: ook onderdeel van weg %{related_ways}
|
one: onderdeel van %{related_ways}
|
||||||
other: ook deel van ways %{related_ways}
|
other: onderdeel van %{related_ways}
|
||||||
nodes: "Nodes:"
|
nodes: "Nodes:"
|
||||||
part_of: "Onderdeel van:"
|
part_of: "Onderdeel van:"
|
||||||
way_history:
|
way_history:
|
||||||
|
@ -285,13 +285,13 @@ nl:
|
||||||
saved_at: Opgeslagen op
|
saved_at: Opgeslagen op
|
||||||
user: Gebruiker
|
user: Gebruiker
|
||||||
list:
|
list:
|
||||||
description: Recente wijzigingen
|
description: Recente bijdragen aan de kaart bekijken
|
||||||
description_bbox: Wijzigingensets binnen %{bbox}
|
description_bbox: Wijzigingensets binnen %{bbox}
|
||||||
description_friend: Wijzigingensets van uw vrienden
|
description_friend: Wijzigingensets van uw vrienden
|
||||||
description_nearby: Wijzigingensets door nabijgelegen gebruikers
|
description_nearby: Wijzigingensets door nabijgelegen gebruikers
|
||||||
description_user: Wijzigingensets door %{user}
|
description_user: Wijzigingensets door %{user}
|
||||||
description_user_bbox: Wijzigingensets door %{user} binnen %{bbox}
|
description_user_bbox: Wijzigingensets door %{user} binnen %{bbox}
|
||||||
empty_anon_html: Nog geen bewerkingen gemaakt
|
empty_anon_html: Nog geen bewerkingen gemaakt.
|
||||||
empty_user_html: U hebt nog geen bewerkingen gemaakt. Kijk eens naar de <a href='http://wiki.openstreetmap.org/wiki/Beginners_Guide_1.3'>Beginnersgids</a>.
|
empty_user_html: U hebt nog geen bewerkingen gemaakt. Kijk eens naar de <a href='http://wiki.openstreetmap.org/wiki/Beginners_Guide_1.3'>Beginnersgids</a>.
|
||||||
heading: Wijzigingensets
|
heading: Wijzigingensets
|
||||||
heading_bbox: Wijzigingensets
|
heading_bbox: Wijzigingensets
|
||||||
|
@ -359,7 +359,7 @@ nl:
|
||||||
newer_entries: Nieuwere berichten
|
newer_entries: Nieuwere berichten
|
||||||
no_entries: Het dagboek is leeg
|
no_entries: Het dagboek is leeg
|
||||||
older_entries: Oudere berichten
|
older_entries: Oudere berichten
|
||||||
recent_entries: "Recente dagboekberichten:"
|
recent_entries: Recente dagboekberichten
|
||||||
title: Gebruikersdagboeken
|
title: Gebruikersdagboeken
|
||||||
title_friends: Dagboeken van vrienden
|
title_friends: Dagboeken van vrienden
|
||||||
title_nearby: Dagboeken van nabijgelegen gebruikers
|
title_nearby: Dagboeken van nabijgelegen gebruikers
|
||||||
|
@ -992,7 +992,6 @@ nl:
|
||||||
user_diaries_tooltip: Gebruikersdagboeken bekijken
|
user_diaries_tooltip: Gebruikersdagboeken bekijken
|
||||||
view: Bekijken
|
view: Bekijken
|
||||||
view_tooltip: Kaart bekijken
|
view_tooltip: Kaart bekijken
|
||||||
welcome_user: Welkom, %{user_link}
|
|
||||||
welcome_user_link_tooltip: Uw gebruikerspagina
|
welcome_user_link_tooltip: Uw gebruikerspagina
|
||||||
wiki: wiki
|
wiki: wiki
|
||||||
wiki_title: Wikisite voor het project
|
wiki_title: Wikisite voor het project
|
||||||
|
@ -1424,6 +1423,7 @@ nl:
|
||||||
visibility: "Zichtbaarheid:"
|
visibility: "Zichtbaarheid:"
|
||||||
visibility_help: wat betekent dit?
|
visibility_help: wat betekent dit?
|
||||||
list:
|
list:
|
||||||
|
description: Recente GPS-trackuploads bekijken
|
||||||
empty_html: Hier is nog niets te zien. <a href='%{upload_link}'>Upload een nieuwe trace</a> of kom meer te weten over GPS tracen op de <a href='http://wiki.openstreetmap.org/wiki/Beginners_Guide_1.2'>wikipagina</a>.
|
empty_html: Hier is nog niets te zien. <a href='%{upload_link}'>Upload een nieuwe trace</a> of kom meer te weten over GPS tracen op de <a href='http://wiki.openstreetmap.org/wiki/Beginners_Guide_1.2'>wikipagina</a>.
|
||||||
public_traces: Openbare GPS-traces
|
public_traces: Openbare GPS-traces
|
||||||
public_traces_from: Openbare GPS-traces van %{user}
|
public_traces_from: Openbare GPS-traces van %{user}
|
||||||
|
@ -1727,10 +1727,10 @@ nl:
|
||||||
diary: dagboek
|
diary: dagboek
|
||||||
edits: bewerkingen
|
edits: bewerkingen
|
||||||
email address: "E-mailadres:"
|
email address: "E-mailadres:"
|
||||||
friends_changesets: Alle wijzigingensets van vrienden bekijken
|
friends_changesets: wijzigingensets van vrienden
|
||||||
friends_diaries: Alle dagboekberichten van vrienden bekijken
|
friends_diaries: dagboekberichten van vrienden
|
||||||
hide_user: gebruikers verbergen
|
hide_user: gebruikers verbergen
|
||||||
if set location: Als u uw locatie instelt, verschijnt er hieronder een kaart. U kunt de locatie instellen in uw %{settings_link}.
|
if set location: Stel uw thuislocatie in via de pagina %{settings_link} om gebruikers in uw buurt te zien.
|
||||||
km away: "%{count} km verwijderd"
|
km away: "%{count} km verwijderd"
|
||||||
latest edit: "Laatste bewerking %{ago}:"
|
latest edit: "Laatste bewerking %{ago}:"
|
||||||
m away: "%{count} m verwijderd"
|
m away: "%{count} m verwijderd"
|
||||||
|
@ -1742,8 +1742,8 @@ nl:
|
||||||
my settings: mijn instellingen
|
my settings: mijn instellingen
|
||||||
my traces: mijn traces
|
my traces: mijn traces
|
||||||
nearby users: Andere dichtbijzijnde gebruikers
|
nearby users: Andere dichtbijzijnde gebruikers
|
||||||
nearby_changesets: Alle wijzigingensets van nabijgelegen gebruikers bekijken
|
nearby_changesets: wijzigingensets van gebruikers in de buurt
|
||||||
nearby_diaries: Alle dagboekberichten van nabijgelegen gebruikers bekijken
|
nearby_diaries: dagboekberichten van gebruikers in de buurt
|
||||||
new diary entry: nieuw dagboekbericht
|
new diary entry: nieuw dagboekbericht
|
||||||
no friends: U hebt nog geen vrienden toegevoegd.
|
no friends: U hebt nog geen vrienden toegevoegd.
|
||||||
no nearby users: Er zijn geen andere gebruikers die hebben aangegeven in de buurt te mappen.
|
no nearby users: Er zijn geen andere gebruikers die hebben aangegeven in de buurt te mappen.
|
||||||
|
|
|
@ -181,7 +181,7 @@ nn:
|
||||||
way: veg
|
way: veg
|
||||||
paging_nav:
|
paging_nav:
|
||||||
of: av
|
of: av
|
||||||
showing_page: Viser side
|
showing_page: side
|
||||||
redacted:
|
redacted:
|
||||||
message_html: Versjon %{version} av denne %{type} kan ikkje visast fordi den er blitt maskert. Sjå %{redaction_link} for detaljar.
|
message_html: Versjon %{version} av denne %{type} kan ikkje visast fordi den er blitt maskert. Sjå %{redaction_link} for detaljar.
|
||||||
redaction: Maskering %{id}
|
redaction: Maskering %{id}
|
||||||
|
@ -222,7 +222,7 @@ nn:
|
||||||
manually_select: Vel eit anna område manuelt
|
manually_select: Vel eit anna område manuelt
|
||||||
object_list:
|
object_list:
|
||||||
api: Hent dette området frå API-et
|
api: Hent dette området frå API-et
|
||||||
back: Vis objektliste
|
back: Tilbake til objektlista
|
||||||
details: Detaljar
|
details: Detaljar
|
||||||
heading: Objektliste
|
heading: Objektliste
|
||||||
history:
|
history:
|
||||||
|
@ -264,8 +264,8 @@ nn:
|
||||||
way_title: "Veg: %{way_name}"
|
way_title: "Veg: %{way_name}"
|
||||||
way_details:
|
way_details:
|
||||||
also_part_of:
|
also_part_of:
|
||||||
one: òg del av vegen %{related_ways}
|
one: del av vegen %{related_ways}
|
||||||
other: òg del av vegane %{related_ways}
|
other: del av vegane %{related_ways}
|
||||||
nodes: "Nodar:"
|
nodes: "Nodar:"
|
||||||
part_of: "Del av:"
|
part_of: "Del av:"
|
||||||
way_history:
|
way_history:
|
||||||
|
@ -277,7 +277,6 @@ nn:
|
||||||
changeset:
|
changeset:
|
||||||
anonymous: Anonym
|
anonymous: Anonym
|
||||||
big_area: (stor)
|
big_area: (stor)
|
||||||
id: "#%{id}"
|
|
||||||
no_comment: (ingen)
|
no_comment: (ingen)
|
||||||
no_edits: (ingen redigeringar)
|
no_edits: (ingen redigeringar)
|
||||||
show_area_box: vis boks for område
|
show_area_box: vis boks for område
|
||||||
|
@ -286,7 +285,7 @@ nn:
|
||||||
changeset_paging_nav:
|
changeset_paging_nav:
|
||||||
next: Neste »
|
next: Neste »
|
||||||
previous: « Forrige
|
previous: « Forrige
|
||||||
showing_page: Viser side %{page}
|
showing_page: Side %{page}
|
||||||
changesets:
|
changesets:
|
||||||
area: Område
|
area: Område
|
||||||
comment: Kommentar
|
comment: Kommentar
|
||||||
|
@ -294,13 +293,13 @@ nn:
|
||||||
saved_at: Lagra
|
saved_at: Lagra
|
||||||
user: Brukar
|
user: Brukar
|
||||||
list:
|
list:
|
||||||
description: Siste endringar
|
description: Vis siste bidrag til kartet
|
||||||
description_bbox: Endringssett innanfor %{bbox}
|
description_bbox: Endringssett innanfor %{bbox}
|
||||||
description_friend: Endringssett av venene dine
|
description_friend: Endringssett av venene dine
|
||||||
description_nearby: Endringssett av næliggande brukarar
|
description_nearby: Endringssett av næliggande brukarar
|
||||||
description_user: Endringssett av %{user}
|
description_user: Endringssett av %{user}
|
||||||
description_user_bbox: Endringssett av %{user} innan %{bbox}
|
description_user_bbox: Endringssett av %{user} innan %{bbox}
|
||||||
empty_anon_html: Ingen endringar endå
|
empty_anon_html: Ingen endringar endå.
|
||||||
empty_user_html: Du har ikkje gjort nokre endringar endå. For å starte, sjå på <a href='http://wiki.openstreetmap.org/wiki/Beginners_Guide_1.3'>Startveiledninga</a>.
|
empty_user_html: Du har ikkje gjort nokre endringar endå. For å starte, sjå på <a href='http://wiki.openstreetmap.org/wiki/Beginners_Guide_1.3'>Startveiledninga</a>.
|
||||||
heading: Endringssett
|
heading: Endringssett
|
||||||
heading_bbox: Endringssett
|
heading_bbox: Endringssett
|
||||||
|
@ -311,7 +310,7 @@ nn:
|
||||||
title: Endringssett
|
title: Endringssett
|
||||||
title_bbox: Endringssett innanfor %{bbox}
|
title_bbox: Endringssett innanfor %{bbox}
|
||||||
title_friend: Endringssett av venene dine
|
title_friend: Endringssett av venene dine
|
||||||
title_nearby: Endringssett av nærliggande brukarar
|
title_nearby: Endringssett av naboar
|
||||||
title_user: Endringssett av %{user}
|
title_user: Endringssett av %{user}
|
||||||
title_user_bbox: Endringssett av %{user} innan %{bbox}
|
title_user_bbox: Endringssett av %{user} innan %{bbox}
|
||||||
timeout:
|
timeout:
|
||||||
|
@ -368,10 +367,10 @@ nn:
|
||||||
newer_entries: Nyare oppføringar
|
newer_entries: Nyare oppføringar
|
||||||
no_entries: Ingen oppføringer i dagboka
|
no_entries: Ingen oppføringer i dagboka
|
||||||
older_entries: Eldre oppføringar
|
older_entries: Eldre oppføringar
|
||||||
recent_entries: "Nye oppføringer i dagboka:"
|
recent_entries: Nye oppføringer i dagboka
|
||||||
title: Brukarane sine dagbøker
|
title: Brukarane sine dagbøker
|
||||||
title_friends: Dagbøkene til venene dine
|
title_friends: Dagbøkene til venene dine
|
||||||
title_nearby: Dagbøkene til nærliggande brukarar
|
title_nearby: Dagbøkene til naboar
|
||||||
user_title: "%{user} si dagbok"
|
user_title: "%{user} si dagbok"
|
||||||
location:
|
location:
|
||||||
edit: Rediger
|
edit: Rediger
|
||||||
|
@ -1009,7 +1008,6 @@ nn:
|
||||||
user_diaries_tooltip: Vis brukaren si dagbok
|
user_diaries_tooltip: Vis brukaren si dagbok
|
||||||
view: Vis
|
view: Vis
|
||||||
view_tooltip: Vis kartet
|
view_tooltip: Vis kartet
|
||||||
welcome_user: Velkomen, %{user_link}
|
|
||||||
welcome_user_link_tooltip: Din brukarside
|
welcome_user_link_tooltip: Din brukarside
|
||||||
wiki: Wiki
|
wiki: Wiki
|
||||||
wiki_title: Wikinettstad for prosjektet
|
wiki_title: Wikinettstad for prosjektet
|
||||||
|
@ -1450,6 +1448,7 @@ nn:
|
||||||
visibility_help: kva tyder dette?
|
visibility_help: kva tyder dette?
|
||||||
visibility_help_url: http://wiki.openstreetmap.org/wiki/Visibility_of_GPS_traces
|
visibility_help_url: http://wiki.openstreetmap.org/wiki/Visibility_of_GPS_traces
|
||||||
list:
|
list:
|
||||||
|
description: Vis siste opplasta GPS loggar
|
||||||
empty_html: Ingenting her endå. <a href='%{upload_link}'>Last opp eit nytt spor</a> eller lær å lage GPS spor på <a href='http://wiki.openstreetmap.org/wiki/Beginners_Guide_1.2'>wiki sida</a>.
|
empty_html: Ingenting her endå. <a href='%{upload_link}'>Last opp eit nytt spor</a> eller lær å lage GPS spor på <a href='http://wiki.openstreetmap.org/wiki/Beginners_Guide_1.2'>wiki sida</a>.
|
||||||
public_traces: Offentleg GPS-spor
|
public_traces: Offentleg GPS-spor
|
||||||
public_traces_from: Offentlege GPS-spor frå %{user}
|
public_traces_from: Offentlege GPS-spor frå %{user}
|
||||||
|
@ -1499,7 +1498,7 @@ nn:
|
||||||
trace_paging_nav:
|
trace_paging_nav:
|
||||||
newer: Nyare spor
|
newer: Nyare spor
|
||||||
older: Eldre spor
|
older: Eldre spor
|
||||||
showing_page: Viser side %{page}
|
showing_page: Side %{page}
|
||||||
view:
|
view:
|
||||||
delete_track: Slett dette sporet
|
delete_track: Slett dette sporet
|
||||||
description: "Skildring:"
|
description: "Skildring:"
|
||||||
|
@ -1604,8 +1603,8 @@ nn:
|
||||||
heading: Brukarar
|
heading: Brukarar
|
||||||
hide: Skjul valde brukarar
|
hide: Skjul valde brukarar
|
||||||
showing:
|
showing:
|
||||||
one: Viser side %{page} (%{first_item} av %{items})
|
one: Side %{page} (%{first_item} av %{items})
|
||||||
other: Viser side %{page} (%{first_item}-%{last_item} av %{items})
|
other: Sside %{page} (%{first_item}-%{last_item} av %{items})
|
||||||
summary: "%{name} oppretta frå %{ip_address} den %{date}"
|
summary: "%{name} oppretta frå %{ip_address} den %{date}"
|
||||||
summary_no_ip: "%{name} oppretta %{date}"
|
summary_no_ip: "%{name} oppretta %{date}"
|
||||||
title: Brukarar
|
title: Brukarar
|
||||||
|
@ -1667,7 +1666,7 @@ nn:
|
||||||
button: Legg til som ven
|
button: Legg til som ven
|
||||||
failed: Klarte ikkje leggje til %{name} som ven.
|
failed: Klarte ikkje leggje til %{name} som ven.
|
||||||
heading: Legg til %{user} som ein ven?
|
heading: Legg til %{user} som ein ven?
|
||||||
success: "%{name} er no venen din."
|
success: "!%{name} er no din ven!"
|
||||||
new:
|
new:
|
||||||
confirm email address: "Stadfest e-postadresse:"
|
confirm email address: "Stadfest e-postadresse:"
|
||||||
confirm password: "Stadfest passord:"
|
confirm password: "Stadfest passord:"
|
||||||
|
@ -1739,7 +1738,7 @@ nn:
|
||||||
you need to accept or decline: Les og deretter anten godta eller avslå dei nye bidragsytervilkåra for å halde fram.
|
you need to accept or decline: Les og deretter anten godta eller avslå dei nye bidragsytervilkåra for å halde fram.
|
||||||
view:
|
view:
|
||||||
activate_user: aktiver denne brukaren
|
activate_user: aktiver denne brukaren
|
||||||
add as friend: legg til som ven
|
add as friend: legg til ven
|
||||||
ago: (%{time_in_words_ago} sidan)
|
ago: (%{time_in_words_ago} sidan)
|
||||||
block_history: mottekne blokkeringar
|
block_history: mottekne blokkeringar
|
||||||
blocks by me: blokkeringar utført av meg
|
blocks by me: blokkeringar utført av meg
|
||||||
|
@ -1759,10 +1758,10 @@ nn:
|
||||||
diary: dagbok
|
diary: dagbok
|
||||||
edits: redigeringar
|
edits: redigeringar
|
||||||
email address: "E-postadresse:"
|
email address: "E-postadresse:"
|
||||||
friends_changesets: Bla gjennom alle endringssett av vener
|
friends_changesets: endringssett av vener
|
||||||
friends_diaries: Bla gjennom alle dagbokoppføringar av vener
|
friends_diaries: dagbokoppføringar av vener
|
||||||
hide_user: skjul denne brukaren
|
hide_user: skjul denne brukaren
|
||||||
if set location: Viss du set posisjonen din, så vil eit fint kart og ting vert her vist. Du kan setje heimeposisjonen på di %{settings_link}-sida.
|
if set location: Set heimeposisjonen på di %{settings_link}-sida for å sjå naboar.
|
||||||
km away: "%{count}km unna"
|
km away: "%{count}km unna"
|
||||||
latest edit: "Siste redigering %{ago}:"
|
latest edit: "Siste redigering %{ago}:"
|
||||||
m away: "%{count}m unna"
|
m away: "%{count}m unna"
|
||||||
|
@ -1774,13 +1773,13 @@ nn:
|
||||||
my settings: innstellingane mine
|
my settings: innstellingane mine
|
||||||
my traces: spora mine
|
my traces: spora mine
|
||||||
nearby users: Andre næliggande brukarar
|
nearby users: Andre næliggande brukarar
|
||||||
nearby_changesets: Bla gjennom alle endringssett av nærliggande brukarar
|
nearby_changesets: endringssett av naboar
|
||||||
nearby_diaries: Bla gjennom alle dagbokoppføringar av nærliggande brukarar
|
nearby_diaries: dagbokoppføringar av naboar
|
||||||
new diary entry: ny dagbokoppføring
|
new diary entry: ny dagbokoppføring
|
||||||
no friends: Du har ikkje lagt til nokon venner enno.
|
no friends: Du har ikkje lagt til nokon venner enno.
|
||||||
no nearby users: Det er ingen andre brukarar som innrømmer kartlegging i området ditt enno.
|
no nearby users: Det er ingen andre brukarar som innrømmer kartlegging i området ditt enno.
|
||||||
oauth settings: oauth-innstellingar
|
oauth settings: oauth-innstellingar
|
||||||
remove as friend: fjern som ven
|
remove as friend: fjern ven
|
||||||
role:
|
role:
|
||||||
administrator: Denne brukaren er ein administrator
|
administrator: Denne brukaren er ein administrator
|
||||||
grant:
|
grant:
|
||||||
|
@ -1859,7 +1858,7 @@ nn:
|
||||||
revoke: Tilbakekall!
|
revoke: Tilbakekall!
|
||||||
revoker_name: Tilbakekalt av
|
revoker_name: Tilbakekalt av
|
||||||
show: Vis
|
show: Vis
|
||||||
showing_page: Viser side %{page}
|
showing_page: Side %{page}
|
||||||
status: Status
|
status: Status
|
||||||
period:
|
period:
|
||||||
one: 1 time
|
one: 1 time
|
||||||
|
|
|
@ -4,6 +4,7 @@
|
||||||
# Author: Ajank
|
# Author: Ajank
|
||||||
# Author: BdgwksxD
|
# Author: BdgwksxD
|
||||||
# Author: BeginaFelicysym
|
# Author: BeginaFelicysym
|
||||||
|
# Author: Cysioland
|
||||||
# Author: Deejay1
|
# Author: Deejay1
|
||||||
# Author: Nemo bis
|
# Author: Nemo bis
|
||||||
# Author: Odie2
|
# Author: Odie2
|
||||||
|
@ -193,7 +194,7 @@ pl:
|
||||||
download_xml: Ściągnij XML
|
download_xml: Ściągnij XML
|
||||||
relation: Relacja
|
relation: Relacja
|
||||||
relation_title: "Relacja: %{relation_name}"
|
relation_title: "Relacja: %{relation_name}"
|
||||||
view_history: zobacz historię zmian
|
view_history: Zobacz historię zmian
|
||||||
relation_details:
|
relation_details:
|
||||||
members: "Zawiera:"
|
members: "Zawiera:"
|
||||||
part_of: "Jest częścią:"
|
part_of: "Jest częścią:"
|
||||||
|
@ -201,7 +202,7 @@ pl:
|
||||||
download_xml: Ściągnij XML
|
download_xml: Ściągnij XML
|
||||||
relation_history: Historia zmian relacji
|
relation_history: Historia zmian relacji
|
||||||
relation_history_title: "Historia relacji: %{relation_name}"
|
relation_history_title: "Historia relacji: %{relation_name}"
|
||||||
view_details: zobacz szczegóły
|
view_details: Zobacz szczegóły
|
||||||
relation_member:
|
relation_member:
|
||||||
entry_role: "%{type} %{name} jako %{role}"
|
entry_role: "%{type} %{name} jako %{role}"
|
||||||
type:
|
type:
|
||||||
|
@ -257,8 +258,8 @@ pl:
|
||||||
way: droga
|
way: droga
|
||||||
way:
|
way:
|
||||||
download_xml: Ściągnij XML
|
download_xml: Ściągnij XML
|
||||||
edit: edytuj
|
edit: Edytuj
|
||||||
view_history: pokaż historię
|
view_history: Pokaż historię
|
||||||
way: Droga
|
way: Droga
|
||||||
way_title: "Droga: %{way_name}"
|
way_title: "Droga: %{way_name}"
|
||||||
way_details:
|
way_details:
|
||||||
|
@ -269,7 +270,7 @@ pl:
|
||||||
part_of: "Jest częścią:"
|
part_of: "Jest częścią:"
|
||||||
way_history:
|
way_history:
|
||||||
download_xml: Ściągnij XML
|
download_xml: Ściągnij XML
|
||||||
view_details: zobacz szczegóły
|
view_details: Zobacz szczegóły
|
||||||
way_history: Historia zmian drogi
|
way_history: Historia zmian drogi
|
||||||
way_history_title: "Historia drogi: %{way_name}"
|
way_history_title: "Historia drogi: %{way_name}"
|
||||||
changeset:
|
changeset:
|
||||||
|
@ -404,7 +405,7 @@ pl:
|
||||||
area_to_export: Obszar do eksportu
|
area_to_export: Obszar do eksportu
|
||||||
embeddable_html: Kod HTML do osadzenia
|
embeddable_html: Kod HTML do osadzenia
|
||||||
export_button: Eksportuj
|
export_button: Eksportuj
|
||||||
export_details: "Dane OpenStreetMap udostępnione są na licencji <a href=\"http://creativecommons.org/licenses/by-sa/2.0/deed.pl\">Creative Commons: uznanie autorstwa, na tych samych warunkach 2.0</a>."
|
export_details: Dane OpenStreetMap udostępnione są na licencji <a href="http://opendatacommons.org/licenses/odbl/1.0/">Open Data Commons Open Database License</a>.
|
||||||
format: Format
|
format: Format
|
||||||
format_to_export: Format eksportu
|
format_to_export: Format eksportu
|
||||||
image_size: Rozmiar obrazka
|
image_size: Rozmiar obrazka
|
||||||
|
@ -996,7 +997,6 @@ pl:
|
||||||
user_diaries_tooltip: Przeglądaj dzienniczki użytkownika
|
user_diaries_tooltip: Przeglądaj dzienniczki użytkownika
|
||||||
view: Mapa
|
view: Mapa
|
||||||
view_tooltip: Zobacz mapę
|
view_tooltip: Zobacz mapę
|
||||||
welcome_user: Witaj, %{user_link}
|
|
||||||
welcome_user_link_tooltip: Strona użytkownika
|
welcome_user_link_tooltip: Strona użytkownika
|
||||||
wiki: Wiki
|
wiki: Wiki
|
||||||
wiki_title: Strona Wiki dla projektu
|
wiki_title: Strona Wiki dla projektu
|
||||||
|
|
|
@ -183,7 +183,7 @@ pt-BR:
|
||||||
way: caminho
|
way: caminho
|
||||||
paging_nav:
|
paging_nav:
|
||||||
of: de
|
of: de
|
||||||
showing_page: Exibindo página
|
showing_page: página
|
||||||
redacted:
|
redacted:
|
||||||
message_html: A versão %{version} deste %{type} não pode ser exibida tal como foi redigida. Consulte %{redaction_link} para obter mais informações.
|
message_html: A versão %{version} deste %{type} não pode ser exibida tal como foi redigida. Consulte %{redaction_link} para obter mais informações.
|
||||||
redaction: Edição %{id}
|
redaction: Edição %{id}
|
||||||
|
@ -224,7 +224,7 @@ pt-BR:
|
||||||
manually_select: Selecionar manualmente uma área diferente
|
manually_select: Selecionar manualmente uma área diferente
|
||||||
object_list:
|
object_list:
|
||||||
api: Obter esta área através da API
|
api: Obter esta área através da API
|
||||||
back: Exibir lista de objetos
|
back: Voltar à lista de objetos
|
||||||
details: Detalhes
|
details: Detalhes
|
||||||
heading: Lista de Objetos
|
heading: Lista de Objetos
|
||||||
history:
|
history:
|
||||||
|
@ -266,8 +266,8 @@ pt-BR:
|
||||||
way_title: "Caminho: %{way_name}"
|
way_title: "Caminho: %{way_name}"
|
||||||
way_details:
|
way_details:
|
||||||
also_part_of:
|
also_part_of:
|
||||||
one: também parte do caminho %{related_ways}
|
one: parte do caminho %{related_ways}
|
||||||
other: também parte dos caminhos %{related_ways}
|
other: parte dos caminhos %{related_ways}
|
||||||
nodes: "Pontos:"
|
nodes: "Pontos:"
|
||||||
part_of: "Parte de:"
|
part_of: "Parte de:"
|
||||||
way_history:
|
way_history:
|
||||||
|
@ -279,7 +279,6 @@ pt-BR:
|
||||||
changeset:
|
changeset:
|
||||||
anonymous: Anônimo
|
anonymous: Anônimo
|
||||||
big_area: (grande)
|
big_area: (grande)
|
||||||
id: "#%{id}"
|
|
||||||
no_comment: (nenhum)
|
no_comment: (nenhum)
|
||||||
no_edits: (sem alterações)
|
no_edits: (sem alterações)
|
||||||
show_area_box: exibir limite da área
|
show_area_box: exibir limite da área
|
||||||
|
@ -288,7 +287,7 @@ pt-BR:
|
||||||
changeset_paging_nav:
|
changeset_paging_nav:
|
||||||
next: Seguinte »
|
next: Seguinte »
|
||||||
previous: « Anterior
|
previous: « Anterior
|
||||||
showing_page: Exibindo página %{page}
|
showing_page: Página % {page}
|
||||||
changesets:
|
changesets:
|
||||||
area: Área
|
area: Área
|
||||||
comment: Comentário
|
comment: Comentário
|
||||||
|
@ -296,13 +295,13 @@ pt-BR:
|
||||||
saved_at: Salvo em
|
saved_at: Salvo em
|
||||||
user: Usuário
|
user: Usuário
|
||||||
list:
|
list:
|
||||||
description: Alterações recentes
|
description: Procurar contribuições recentes para o mapa
|
||||||
description_bbox: Conjuntos de alterações em %{bbox}
|
description_bbox: Conjuntos de alterações em %{bbox}
|
||||||
description_friend: Conjuntos de alterações de seus amigos
|
description_friend: Conjuntos de alterações de seus amigos
|
||||||
description_nearby: Conjuntos de alterações de usuários próximos
|
description_nearby: Conjuntos de alterações de usuários próximos
|
||||||
description_user: Conjuntos de alterações de %{user}
|
description_user: Conjuntos de alterações de %{user}
|
||||||
description_user_bbox: Conjuntos de alterações de %{user} em %{bbox}
|
description_user_bbox: Conjuntos de alterações de %{user} em %{bbox}
|
||||||
empty_anon_html: Ainda não foram realizadas edições
|
empty_anon_html: Ainda não foram realizadas edições.
|
||||||
empty_user_html: Parece que você ainda não fez edições. Para começar, consulte o <a href='http://http://wiki.openstreetmap.org/wiki/Pt-br:Beginners%27_guide'>Guia para Principiantes</a>.
|
empty_user_html: Parece que você ainda não fez edições. Para começar, consulte o <a href='http://http://wiki.openstreetmap.org/wiki/Pt-br:Beginners%27_guide'>Guia para Principiantes</a>.
|
||||||
heading: Conjuntos de alterações
|
heading: Conjuntos de alterações
|
||||||
heading_bbox: Conjuntos de alterações
|
heading_bbox: Conjuntos de alterações
|
||||||
|
@ -370,7 +369,7 @@ pt-BR:
|
||||||
newer_entries: Entradas novas
|
newer_entries: Entradas novas
|
||||||
no_entries: Sem entradas no Diário
|
no_entries: Sem entradas no Diário
|
||||||
older_entries: Entradas antigas
|
older_entries: Entradas antigas
|
||||||
recent_entries: "Entradas recentes no Diário:"
|
recent_entries: Entradas recentes do Diário
|
||||||
title: Diários dos Usuários
|
title: Diários dos Usuários
|
||||||
title_friends: Diários dos amigos
|
title_friends: Diários dos amigos
|
||||||
title_nearby: Diários dos usuários próximos
|
title_nearby: Diários dos usuários próximos
|
||||||
|
@ -1011,7 +1010,6 @@ pt-BR:
|
||||||
user_diaries_tooltip: Ver os diários dos usuários
|
user_diaries_tooltip: Ver os diários dos usuários
|
||||||
view: Ver
|
view: Ver
|
||||||
view_tooltip: Veja o mapa
|
view_tooltip: Veja o mapa
|
||||||
welcome_user: Bem vindo, %{user_link}
|
|
||||||
welcome_user_link_tooltip: Sua Página de usuário
|
welcome_user_link_tooltip: Sua Página de usuário
|
||||||
wiki: Wiki
|
wiki: Wiki
|
||||||
wiki_title: Site wiki para o projeto
|
wiki_title: Site wiki para o projeto
|
||||||
|
@ -1452,6 +1450,7 @@ pt-BR:
|
||||||
visibility_help: o que isso significa?
|
visibility_help: o que isso significa?
|
||||||
visibility_help_url: http://wiki.openstreetmap.org/wiki/Visibility_of_GPS_traces?uselang=pt-br
|
visibility_help_url: http://wiki.openstreetmap.org/wiki/Visibility_of_GPS_traces?uselang=pt-br
|
||||||
list:
|
list:
|
||||||
|
description: Consultar últimos carregamentos de trilhas de GPS
|
||||||
empty_html: Nada aqui por enquanto. <a href='%{upload_link}'>Carregue uma nova trilha</a> ou aprenda mais sobre trilhas de GPS na <a href='http://wiki.openstreetmap.org/wiki/Beginners_Guide_1.2'>página wiki</a> (em inglês).
|
empty_html: Nada aqui por enquanto. <a href='%{upload_link}'>Carregue uma nova trilha</a> ou aprenda mais sobre trilhas de GPS na <a href='http://wiki.openstreetmap.org/wiki/Beginners_Guide_1.2'>página wiki</a> (em inglês).
|
||||||
public_traces: Trilhas Públicas de GPS
|
public_traces: Trilhas Públicas de GPS
|
||||||
public_traces_from: Trilhas de GPS públicas de %{user}
|
public_traces_from: Trilhas de GPS públicas de %{user}
|
||||||
|
@ -1501,7 +1500,7 @@ pt-BR:
|
||||||
trace_paging_nav:
|
trace_paging_nav:
|
||||||
newer: Trilhas mais recentes
|
newer: Trilhas mais recentes
|
||||||
older: Trilhas mais antigas
|
older: Trilhas mais antigas
|
||||||
showing_page: Mostrando página %{page}
|
showing_page: Página %{page}
|
||||||
view:
|
view:
|
||||||
delete_track: Apague esta trilha
|
delete_track: Apague esta trilha
|
||||||
description: "Descrição:"
|
description: "Descrição:"
|
||||||
|
@ -1605,8 +1604,8 @@ pt-BR:
|
||||||
heading: Usuários
|
heading: Usuários
|
||||||
hide: Ocultar Usuários Selecionados
|
hide: Ocultar Usuários Selecionados
|
||||||
showing:
|
showing:
|
||||||
one: Mostrando página %{page} (%{first_item} de %{items})
|
one: Página %{page} (%{first_item} de %{items})
|
||||||
other: Mostrando página %{page} (%{first_item}-%{last_item} de %{items})
|
other: Página %{page} (%{first_item}-%{last_item} de %{items})
|
||||||
summary: "%{name} criado no computador %{ip_address} em %{date}"
|
summary: "%{name} criado no computador %{ip_address} em %{date}"
|
||||||
summary_no_ip: "%{name} criado em %{date}"
|
summary_no_ip: "%{name} criado em %{date}"
|
||||||
title: Usuários
|
title: Usuários
|
||||||
|
@ -1668,7 +1667,7 @@ pt-BR:
|
||||||
button: Adicionar como amigo
|
button: Adicionar como amigo
|
||||||
failed: Desculpe, erro ao adicionar %{name} como seu amigo.
|
failed: Desculpe, erro ao adicionar %{name} como seu amigo.
|
||||||
heading: Adicionar %{user} como amigo?
|
heading: Adicionar %{user} como amigo?
|
||||||
success: "%{name} agora é seu amigo."
|
success: "%{name} agora é seu amigo!"
|
||||||
new:
|
new:
|
||||||
confirm email address: "Confirme o Endereço de Email:"
|
confirm email address: "Confirme o Endereço de Email:"
|
||||||
confirm password: "Confirme a Senha:"
|
confirm password: "Confirme a Senha:"
|
||||||
|
@ -1759,10 +1758,10 @@ pt-BR:
|
||||||
diary: diário
|
diary: diário
|
||||||
edits: edições
|
edits: edições
|
||||||
email address: "Endereço de email:"
|
email address: "Endereço de email:"
|
||||||
friends_changesets: Navegar em todos os conjuntos de alterações dos amigos
|
friends_changesets: Conjuntos de alterações dos amigos
|
||||||
friends_diaries: Navegar em todas as entradas de diário dos amigos
|
friends_diaries: Entradas de diário dos amigos
|
||||||
hide_user: esconder esse usuário
|
hide_user: esconder esse usuário
|
||||||
if set location: Se você definir a sua localização, um mapa bonito vai aparecer abaixo. Você pode definir sua localização na página de %{settings_link}.
|
if set location: Defina o local de sua casa na página de %{settings_link} para ver usuários próximos.
|
||||||
km away: "%{count}km de distância"
|
km away: "%{count}km de distância"
|
||||||
latest edit: "Última edição %{ago}:"
|
latest edit: "Última edição %{ago}:"
|
||||||
m away: "%{count}m de distância"
|
m away: "%{count}m de distância"
|
||||||
|
@ -1774,8 +1773,8 @@ pt-BR:
|
||||||
my settings: minhas configurações
|
my settings: minhas configurações
|
||||||
my traces: minhas trilhas
|
my traces: minhas trilhas
|
||||||
nearby users: Outros usuários próximos
|
nearby users: Outros usuários próximos
|
||||||
nearby_changesets: Navegar em todos os conjuntos de alterações de usuários próximos
|
nearby_changesets: Conjuntos de alterações de usuários próximos
|
||||||
nearby_diaries: Navegar em todas as entradas de diário dos usuários próximos
|
nearby_diaries: Entradas de diário dos usuários próximos
|
||||||
new diary entry: nova entrada de diário
|
new diary entry: nova entrada de diário
|
||||||
no friends: Você ainda não adicionou amigos.
|
no friends: Você ainda não adicionou amigos.
|
||||||
no nearby users: Ainda não há outros usuários mapeando por perto.
|
no nearby users: Ainda não há outros usuários mapeando por perto.
|
||||||
|
@ -1859,7 +1858,7 @@ pt-BR:
|
||||||
revoke: Cancelar!
|
revoke: Cancelar!
|
||||||
revoker_name: Retirado por
|
revoker_name: Retirado por
|
||||||
show: Exibir
|
show: Exibir
|
||||||
showing_page: Mostrando a página % {page}
|
showing_page: Página %{page}
|
||||||
status: Status
|
status: Status
|
||||||
period:
|
period:
|
||||||
one: uma hora
|
one: uma hora
|
||||||
|
|
|
@ -985,7 +985,6 @@ pt:
|
||||||
user_diaries_tooltip: Ver diários dos editores
|
user_diaries_tooltip: Ver diários dos editores
|
||||||
view: Ver
|
view: Ver
|
||||||
view_tooltip: Ver o mapa
|
view_tooltip: Ver o mapa
|
||||||
welcome_user: Bem vindo, %{user_link}
|
|
||||||
welcome_user_link_tooltip: A sua página de utilizador
|
welcome_user_link_tooltip: A sua página de utilizador
|
||||||
wiki: Wiki
|
wiki: Wiki
|
||||||
wiki_title: Sitio wiki do projeto
|
wiki_title: Sitio wiki do projeto
|
||||||
|
|
|
@ -807,7 +807,6 @@ ro:
|
||||||
sign_up_tooltip: Creați un cont pentru editare
|
sign_up_tooltip: Creați un cont pentru editare
|
||||||
view: Vizualizare
|
view: Vizualizare
|
||||||
view_tooltip: Vizualizare hartă
|
view_tooltip: Vizualizare hartă
|
||||||
welcome_user: Bine ați venit, %{user_link}
|
|
||||||
welcome_user_link_tooltip: Pagina dumneavoastră de utilizator
|
welcome_user_link_tooltip: Pagina dumneavoastră de utilizator
|
||||||
license_page:
|
license_page:
|
||||||
foreign:
|
foreign:
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
# Exported from translatewiki.net
|
# Exported from translatewiki.net
|
||||||
# Export driver: syck-pecl
|
# Export driver: syck-pecl
|
||||||
# Author: AOleg
|
# Author: AOleg
|
||||||
|
# Author: AZISS
|
||||||
# Author: Aleksandr Dezhin
|
# Author: Aleksandr Dezhin
|
||||||
# Author: Amire80
|
# Author: Amire80
|
||||||
# Author: Andrewsh
|
# Author: Andrewsh
|
||||||
|
@ -94,7 +95,7 @@ ru:
|
||||||
tracetag: Тег трека
|
tracetag: Тег трека
|
||||||
user: Пользователь
|
user: Пользователь
|
||||||
user_preference: Настройки пользователя
|
user_preference: Настройки пользователя
|
||||||
user_token: Код подтверждения пользователя
|
user_token: Маркер пользователя
|
||||||
way: Линия
|
way: Линия
|
||||||
way_node: Точка линии
|
way_node: Точка линии
|
||||||
way_tag: Тег линии
|
way_tag: Тег линии
|
||||||
|
@ -196,7 +197,7 @@ ru:
|
||||||
way: линия
|
way: линия
|
||||||
paging_nav:
|
paging_nav:
|
||||||
of: из
|
of: из
|
||||||
showing_page: Показана страница
|
showing_page: страница
|
||||||
redacted:
|
redacted:
|
||||||
message_html: Версия %{version} этого объекта вырезана и не может быть отображена. Смотрите %{redaction_link} для дополнительной информации.
|
message_html: Версия %{version} этого объекта вырезана и не может быть отображена. Смотрите %{redaction_link} для дополнительной информации.
|
||||||
redaction: Редакция %{id}
|
redaction: Редакция %{id}
|
||||||
|
@ -236,7 +237,7 @@ ru:
|
||||||
manually_select: Выделить другую область
|
manually_select: Выделить другую область
|
||||||
object_list:
|
object_list:
|
||||||
api: Получить эту область из API
|
api: Получить эту область из API
|
||||||
back: Отобразить список объектов
|
back: Вернуться к списку объектов
|
||||||
details: Подробности
|
details: Подробности
|
||||||
heading: Список объектов
|
heading: Список объектов
|
||||||
history:
|
history:
|
||||||
|
@ -264,7 +265,7 @@ ru:
|
||||||
tag: Страница вики, описывающая тег %{key}=%{value}
|
tag: Страница вики, описывающая тег %{key}=%{value}
|
||||||
wikipedia_link: Статья %{page} в Википедии
|
wikipedia_link: Статья %{page} в Википедии
|
||||||
timeout:
|
timeout:
|
||||||
sorry: Извините, данные для %{type} с id %{id} слишком длинные для извлечения.
|
sorry: Извините, данные для %{type} с %{id} слишком длинные для извлечения.
|
||||||
type:
|
type:
|
||||||
changeset: пакета правок
|
changeset: пакета правок
|
||||||
node: точки
|
node: точки
|
||||||
|
@ -278,8 +279,8 @@ ru:
|
||||||
way_title: "Линия: %{way_name}"
|
way_title: "Линия: %{way_name}"
|
||||||
way_details:
|
way_details:
|
||||||
also_part_of:
|
also_part_of:
|
||||||
one: также содержится в линии %{related_ways}
|
one: содержится в линии %{related_ways}
|
||||||
other: также содержится в линиях %{related_ways}
|
other: содержится в линиях %{related_ways}
|
||||||
nodes: "Точки:"
|
nodes: "Точки:"
|
||||||
part_of: "Участвует в:"
|
part_of: "Участвует в:"
|
||||||
way_history:
|
way_history:
|
||||||
|
@ -307,13 +308,13 @@ ru:
|
||||||
saved_at: Завершено
|
saved_at: Завершено
|
||||||
user: Пользователь
|
user: Пользователь
|
||||||
list:
|
list:
|
||||||
description: Последние изменения
|
description: Последние изменения в карте
|
||||||
description_bbox: "Пакеты правок в рамке, охватывающей координаты: %{bbox}"
|
description_bbox: "Пакеты правок в рамке, охватывающей координаты: %{bbox}"
|
||||||
description_friend: Пакеты правок ваших друзей
|
description_friend: Пакеты правок ваших друзей
|
||||||
description_nearby: Наборы правок соседних участников
|
description_nearby: Наборы правок соседних участников
|
||||||
description_user: Пакеты правок пользователя %{user}
|
description_user: Пакеты правок пользователя %{user}
|
||||||
description_user_bbox: Пакеты правок пользователя %{user} в рамке, охватывающей координаты %{bbox}
|
description_user_bbox: Пакеты правок пользователя %{user} в рамке, охватывающей координаты %{bbox}
|
||||||
empty_anon_html: Пока правок ещё нет
|
empty_anon_html: Пока правок ещё нет.
|
||||||
empty_user_html: Похоже, вы ещё не сделали ни одной правки. Приступая к работе, посмотрите <a href='http://wiki.openstreetmap.org/wiki/Beginners_Guide_1.3'>Руководство для начинающих</a>.
|
empty_user_html: Похоже, вы ещё не сделали ни одной правки. Приступая к работе, посмотрите <a href='http://wiki.openstreetmap.org/wiki/Beginners_Guide_1.3'>Руководство для начинающих</a>.
|
||||||
heading: Пакеты правок
|
heading: Пакеты правок
|
||||||
heading_bbox: Пакеты правок
|
heading_bbox: Пакеты правок
|
||||||
|
@ -347,6 +348,7 @@ ru:
|
||||||
few: "%{count} комментария"
|
few: "%{count} комментария"
|
||||||
one: "%{count} комментарий"
|
one: "%{count} комментарий"
|
||||||
other: "%{count} комментариев"
|
other: "%{count} комментариев"
|
||||||
|
zero: Нет комментариев
|
||||||
comment_link: Комментировать
|
comment_link: Комментировать
|
||||||
confirm: Подтвердить
|
confirm: Подтвердить
|
||||||
edit_link: Изменить запись
|
edit_link: Изменить запись
|
||||||
|
@ -381,7 +383,7 @@ ru:
|
||||||
newer_entries: Более новые записи
|
newer_entries: Более новые записи
|
||||||
no_entries: В дневнике нет записей
|
no_entries: В дневнике нет записей
|
||||||
older_entries: Более старые записи
|
older_entries: Более старые записи
|
||||||
recent_entries: "Недавние записи:"
|
recent_entries: Недавние записи
|
||||||
title: Дневники
|
title: Дневники
|
||||||
title_friends: Дневники друзей
|
title_friends: Дневники друзей
|
||||||
title_nearby: Дневники соседних участников
|
title_nearby: Дневники соседних участников
|
||||||
|
@ -394,7 +396,7 @@ ru:
|
||||||
title: Сделать новую запись в дневнике
|
title: Сделать новую запись в дневнике
|
||||||
no_such_entry:
|
no_such_entry:
|
||||||
body: К сожалению, записи или комментария с id %{id} не найдено. Проверьте правильность написания. Возможно, ссылка, по которой вы перешли, ошибочна.
|
body: К сожалению, записи или комментария с id %{id} не найдено. Проверьте правильность написания. Возможно, ссылка, по которой вы перешли, ошибочна.
|
||||||
heading: Нет записи с id %{id}
|
heading: "Нет записи с id: %{id}"
|
||||||
title: Нет такой дневниковой записи
|
title: Нет такой дневниковой записи
|
||||||
view:
|
view:
|
||||||
leave_a_comment: Оставить комментарий
|
leave_a_comment: Оставить комментарий
|
||||||
|
@ -421,7 +423,7 @@ ru:
|
||||||
embeddable_html: Встраиваемый HTML
|
embeddable_html: Встраиваемый HTML
|
||||||
export_button: Экспортировать
|
export_button: Экспортировать
|
||||||
export_details: Данные OpenStreetMap распространяются по <a href="http://opendatacommons.org/licenses/odbl/1.0/">лицензии Open Data Commons Open Database License</a> (ODbL).
|
export_details: Данные OpenStreetMap распространяются по <a href="http://opendatacommons.org/licenses/odbl/1.0/">лицензии Open Data Commons Open Database License</a> (ODbL).
|
||||||
format: "Формат:"
|
format: Формат
|
||||||
format_to_export: Формат экспорта
|
format_to_export: Формат экспорта
|
||||||
image_size: "Размер изображения:"
|
image_size: "Размер изображения:"
|
||||||
latitude: "Широта:"
|
latitude: "Широта:"
|
||||||
|
@ -521,17 +523,17 @@ ru:
|
||||||
courthouse: Помещение суда
|
courthouse: Помещение суда
|
||||||
crematorium: Крематоорий
|
crematorium: Крематоорий
|
||||||
dentist: Стоматология
|
dentist: Стоматология
|
||||||
doctors: Врач
|
doctors: Врачи
|
||||||
dormitory: Общежитие
|
dormitory: Общежитие
|
||||||
drinking_water: Питьевая вода
|
drinking_water: Питьевая вода
|
||||||
driving_school: Автошкола
|
driving_school: Автошкола
|
||||||
embassy: Посольство
|
embassy: Посольство
|
||||||
emergency_phone: Телефон экстренных служб
|
emergency_phone: Телефон экстренных служб
|
||||||
fast_food: Палатка с едой
|
fast_food: Фаст-фуд
|
||||||
ferry_terminal: Паромная станция
|
ferry_terminal: Паромная станция
|
||||||
fire_hydrant: Пожарный гидрант
|
fire_hydrant: Пожарный гидрант
|
||||||
fire_station: Пожарная охрана
|
fire_station: Пожарная охрана
|
||||||
food_court: Фаст-фуд
|
food_court: Фудкорт
|
||||||
fountain: Фонтан
|
fountain: Фонтан
|
||||||
fuel: Заправка
|
fuel: Заправка
|
||||||
grave_yard: Место захоронения
|
grave_yard: Место захоронения
|
||||||
|
@ -584,11 +586,11 @@ ru:
|
||||||
toilets: Туалет
|
toilets: Туалет
|
||||||
townhall: Городская администрация
|
townhall: Городская администрация
|
||||||
university: Университет
|
university: Университет
|
||||||
vending_machine: торговый автомат
|
vending_machine: Торговый автомат
|
||||||
veterinary: Ветеринарная клиника
|
veterinary: Ветеринарная клиника
|
||||||
village_hall: Усадьба
|
village_hall: Усадьба
|
||||||
waste_basket: Мусорка
|
waste_basket: Мусорка
|
||||||
wifi: WiFi-доступ
|
wifi: WiFi доступ
|
||||||
youth_centre: Молодёжный центр
|
youth_centre: Молодёжный центр
|
||||||
boundary:
|
boundary:
|
||||||
administrative: Административная граница
|
administrative: Административная граница
|
||||||
|
@ -1017,7 +1019,6 @@ ru:
|
||||||
user_diaries_tooltip: Посмотреть дневники участников
|
user_diaries_tooltip: Посмотреть дневники участников
|
||||||
view: Карта
|
view: Карта
|
||||||
view_tooltip: Посмотреть карту
|
view_tooltip: Посмотреть карту
|
||||||
welcome_user: Добро пожаловать, %{user_link}
|
|
||||||
welcome_user_link_tooltip: Ваша персональная страница
|
welcome_user_link_tooltip: Ваша персональная страница
|
||||||
wiki: Вики
|
wiki: Вики
|
||||||
wiki_title: Вики-сайт проекта
|
wiki_title: Вики-сайт проекта
|
||||||
|
@ -1460,6 +1461,7 @@ ru:
|
||||||
visibility_help: Что это значит?
|
visibility_help: Что это значит?
|
||||||
visibility_help_url: http://wiki.openstreetmap.org/wiki/RU:%D0%92%D0%B8%D0%B4%D0%B8%D0%BC%D0%BE%D1%81%D1%82%D1%8C_GPS-%D1%82%D1%80%D0%B5%D0%BA%D0%BE%D0%B2?uselang=ru
|
visibility_help_url: http://wiki.openstreetmap.org/wiki/RU:%D0%92%D0%B8%D0%B4%D0%B8%D0%BC%D0%BE%D1%81%D1%82%D1%8C_GPS-%D1%82%D1%80%D0%B5%D0%BA%D0%BE%D0%B2?uselang=ru
|
||||||
list:
|
list:
|
||||||
|
description: Обзор последних загруженных маршрутов GPS
|
||||||
empty_html: Пока здесь ничего нет. <a href='%{upload_link}'>Загрузите новый трек</a> или почитайте про GPS-треки на <a href='http://wiki.openstreetmap.org/wiki/Beginners_Guide_1.2'>вики-странице</a>.
|
empty_html: Пока здесь ничего нет. <a href='%{upload_link}'>Загрузите новый трек</a> или почитайте про GPS-треки на <a href='http://wiki.openstreetmap.org/wiki/Beginners_Guide_1.2'>вики-странице</a>.
|
||||||
public_traces: Общедоступные GPS-треки
|
public_traces: Общедоступные GPS-треки
|
||||||
public_traces_from: Общедоступные треки пользователя %{user}
|
public_traces_from: Общедоступные треки пользователя %{user}
|
||||||
|
@ -1509,7 +1511,7 @@ ru:
|
||||||
trace_paging_nav:
|
trace_paging_nav:
|
||||||
newer: Более новые треки
|
newer: Более новые треки
|
||||||
older: Более старые треки
|
older: Более старые треки
|
||||||
showing_page: Показывается страница %{page}
|
showing_page: Страница %{page}
|
||||||
view:
|
view:
|
||||||
delete_track: Удалить этот трек
|
delete_track: Удалить этот трек
|
||||||
description: "Описание:"
|
description: "Описание:"
|
||||||
|
@ -1613,8 +1615,8 @@ ru:
|
||||||
heading: Пользователи
|
heading: Пользователи
|
||||||
hide: Скрыть выделенных пользователей
|
hide: Скрыть выделенных пользователей
|
||||||
showing:
|
showing:
|
||||||
one: Показана страница %{page} (%{first_item} из %{items})
|
one: Страница %{page} (%{first_item} из %{items})
|
||||||
other: Показана страница %{page} (%{first_item}-%{last_item} из %{items})
|
other: Страница %{page} (%{first_item}-%{last_item} из %{items})
|
||||||
summary: "%{name} создан %{date}, с адреса %{ip_address}"
|
summary: "%{name} создан %{date}, с адреса %{ip_address}"
|
||||||
summary_no_ip: "%{name} создан %{date}"
|
summary_no_ip: "%{name} создан %{date}"
|
||||||
title: Пользователи
|
title: Пользователи
|
||||||
|
@ -1676,7 +1678,7 @@ ru:
|
||||||
button: Добавить в друзья
|
button: Добавить в друзья
|
||||||
failed: Не удалось добавить %{name} в друзья.
|
failed: Не удалось добавить %{name} в друзья.
|
||||||
heading: Добавить %{user} в друзья?
|
heading: Добавить %{user} в друзья?
|
||||||
success: "%{name} теперь ваш друг."
|
success: "%{name} теперь ваш друг!"
|
||||||
new:
|
new:
|
||||||
confirm email address: "Подтвердите адрес эл. почты:"
|
confirm email address: "Подтвердите адрес эл. почты:"
|
||||||
confirm password: "Повторите пароль:"
|
confirm password: "Повторите пароль:"
|
||||||
|
@ -1765,10 +1767,10 @@ ru:
|
||||||
diary: дневник
|
diary: дневник
|
||||||
edits: правки
|
edits: правки
|
||||||
email address: "Адрес Email:"
|
email address: "Адрес Email:"
|
||||||
friends_changesets: Просмотреть все наборы правок друзей
|
friends_changesets: наборы правок друзей
|
||||||
friends_diaries: Просмотреть все дневники друзей
|
friends_diaries: дневники друзей
|
||||||
hide_user: скрыть этого пользователя
|
hide_user: скрыть этого пользователя
|
||||||
if set location: Если вы укажете свое местоположение, ниже появятся карта и дополнительные инструменты. Вы можете установить ваше местоположение на вашей странице %{settings_link}.
|
if set location: Укажите свое местоположение на вашей странице %{settings_link} чтобы увидеть своих соседей.
|
||||||
km away: "%{count} км от вас"
|
km away: "%{count} км от вас"
|
||||||
latest edit: "Последняя правка %{ago}:"
|
latest edit: "Последняя правка %{ago}:"
|
||||||
m away: "%{count} м от вас"
|
m away: "%{count} м от вас"
|
||||||
|
@ -1780,8 +1782,8 @@ ru:
|
||||||
my settings: мои настройки
|
my settings: мои настройки
|
||||||
my traces: мои треки
|
my traces: мои треки
|
||||||
nearby users: Другие ближайшие пользователи
|
nearby users: Другие ближайшие пользователи
|
||||||
nearby_changesets: Просмотреть все правки соседей
|
nearby_changesets: правки соседей
|
||||||
nearby_diaries: Просмотреть все дневники соседей
|
nearby_diaries: дневники соседей
|
||||||
new diary entry: новая запись
|
new diary entry: новая запись
|
||||||
no friends: Вы не добавили ещё ни одного друга.
|
no friends: Вы не добавили ещё ни одного друга.
|
||||||
no nearby users: Пока нет других пользователей, признающих, что занимающихся составлением карты поблизости.
|
no nearby users: Пока нет других пользователей, признающих, что занимающихся составлением карты поблизости.
|
||||||
|
@ -1865,7 +1867,7 @@ ru:
|
||||||
revoke: Разблокировать!
|
revoke: Разблокировать!
|
||||||
revoker_name: Разблокировал
|
revoker_name: Разблокировал
|
||||||
show: Показать
|
show: Показать
|
||||||
showing_page: Показывается страница %{page}
|
showing_page: Страница %{page}
|
||||||
status: Состояние
|
status: Состояние
|
||||||
period:
|
period:
|
||||||
one: 1 час
|
one: 1 час
|
||||||
|
|
|
@ -235,6 +235,7 @@ sk:
|
||||||
show_areas: Zobraziť oblasti
|
show_areas: Zobraziť oblasti
|
||||||
show_history: Zobraziť históriu
|
show_history: Zobraziť históriu
|
||||||
unable_to_load_size: "Nebolo možné načítať: Oblasť veľkosti %{bbox_size} je priveľká (maximum je %{max_bbox_size})"
|
unable_to_load_size: "Nebolo možné načítať: Oblasť veľkosti %{bbox_size} je priveľká (maximum je %{max_bbox_size})"
|
||||||
|
view_data: Mapové dáta k zobrazenej oblasti
|
||||||
wait: Čakajte...
|
wait: Čakajte...
|
||||||
zoom_or_select: Priblížte mapu alebo zvoľte nejakú oblasť na zobrazenie
|
zoom_or_select: Priblížte mapu alebo zvoľte nejakú oblasť na zobrazenie
|
||||||
tag_details:
|
tag_details:
|
||||||
|
@ -996,7 +997,6 @@ sk:
|
||||||
user_diaries_tooltip: Zobraziť denníky používateľov
|
user_diaries_tooltip: Zobraziť denníky používateľov
|
||||||
view: Zobraziť
|
view: Zobraziť
|
||||||
view_tooltip: Zobraziť mapu
|
view_tooltip: Zobraziť mapu
|
||||||
welcome_user: Vitajte, %{user_link}
|
|
||||||
welcome_user_link_tooltip: Vaša používateľská stránka
|
welcome_user_link_tooltip: Vaša používateľská stránka
|
||||||
wiki: wiki
|
wiki: wiki
|
||||||
wiki_title: Wiki k projektu
|
wiki_title: Wiki k projektu
|
||||||
|
|
|
@ -4,6 +4,7 @@
|
||||||
# Author: Dbc334
|
# Author: Dbc334
|
||||||
# Author: Eleassar
|
# Author: Eleassar
|
||||||
# Author: Lesko987
|
# Author: Lesko987
|
||||||
|
# Author: Mateju
|
||||||
# Author: Stefanb
|
# Author: Stefanb
|
||||||
sl:
|
sl:
|
||||||
activerecord:
|
activerecord:
|
||||||
|
@ -173,7 +174,7 @@ sl:
|
||||||
way: pot
|
way: pot
|
||||||
paging_nav:
|
paging_nav:
|
||||||
of: od
|
of: od
|
||||||
showing_page: Prikazana stran
|
showing_page: stran
|
||||||
redacted:
|
redacted:
|
||||||
message_html: Verzija %{version} te %{type} ne more biti prikazana, ker je bila zavrnjena licenca. Glej %{redaction_link} za podrobnosti.
|
message_html: Verzija %{version} te %{type} ne more biti prikazana, ker je bila zavrnjena licenca. Glej %{redaction_link} za podrobnosti.
|
||||||
redaction: Redakcija %{id}
|
redaction: Redakcija %{id}
|
||||||
|
@ -213,7 +214,7 @@ sl:
|
||||||
manually_select: Ročno izberite drugo področje
|
manually_select: Ročno izberite drugo področje
|
||||||
object_list:
|
object_list:
|
||||||
api: Pridobi področje iz programskega vmesnika (API)
|
api: Pridobi področje iz programskega vmesnika (API)
|
||||||
back: Prikaži seznam predmetov
|
back: Nazaj na seznam predmetov
|
||||||
details: Podrobnosti
|
details: Podrobnosti
|
||||||
heading: Seznam predmetov
|
heading: Seznam predmetov
|
||||||
history:
|
history:
|
||||||
|
@ -267,7 +268,6 @@ sl:
|
||||||
changeset:
|
changeset:
|
||||||
anonymous: Brezimen
|
anonymous: Brezimen
|
||||||
big_area: (veliko)
|
big_area: (veliko)
|
||||||
id: št. %{id}
|
|
||||||
no_comment: (brez)
|
no_comment: (brez)
|
||||||
no_edits: (brez sprememb)
|
no_edits: (brez sprememb)
|
||||||
show_area_box: prikaži pravokotno področje
|
show_area_box: prikaži pravokotno področje
|
||||||
|
@ -276,7 +276,7 @@ sl:
|
||||||
changeset_paging_nav:
|
changeset_paging_nav:
|
||||||
next: Naslednja »
|
next: Naslednja »
|
||||||
previous: « Prejšnja
|
previous: « Prejšnja
|
||||||
showing_page: Prikazovanje strani %{page}
|
showing_page: Stran %{page}
|
||||||
changesets:
|
changesets:
|
||||||
area: Področje
|
area: Področje
|
||||||
comment: Komentar
|
comment: Komentar
|
||||||
|
@ -284,13 +284,13 @@ sl:
|
||||||
saved_at: Shranjen
|
saved_at: Shranjen
|
||||||
user: Uporabnik
|
user: Uporabnik
|
||||||
list:
|
list:
|
||||||
description: Nedavne spremembe
|
description: Prebrskaj nedavno dodane podrobnosti zemljevida
|
||||||
description_bbox: Paketi sprememb znotraj področja %{bbox}
|
description_bbox: Paketi sprememb znotraj področja %{bbox}
|
||||||
description_friend: Paketi sprememb vaših prijateljev
|
description_friend: Paketi sprememb vaših prijateljev
|
||||||
description_nearby: Paketi sprememb bližnjih uporabnikov
|
description_nearby: Paketi sprememb bližnjih uporabnikov
|
||||||
description_user: Paketi sprememb uporabnika %{user}
|
description_user: Paketi sprememb uporabnika %{user}
|
||||||
description_user_bbox: Paketi sprememb uporabnika %{user} znotraj %{bbox}
|
description_user_bbox: Paketi sprememb uporabnika %{user} znotraj %{bbox}
|
||||||
empty_anon_html: " Še brez urejanj"
|
empty_anon_html: Vsebina še ni bila spremenjena.
|
||||||
empty_user_html: Izgleda, da si še niste ničesar urejali. Če želite začeti, preglejte <a href='http://wiki.openstreetmap.org/wiki/Beginners_Guide_1.3'>Navodila za začetnike</a>.
|
empty_user_html: Izgleda, da si še niste ničesar urejali. Če želite začeti, preglejte <a href='http://wiki.openstreetmap.org/wiki/Beginners_Guide_1.3'>Navodila za začetnike</a>.
|
||||||
heading: Paketi sprememb
|
heading: Paketi sprememb
|
||||||
heading_bbox: Paketi sprememb
|
heading_bbox: Paketi sprememb
|
||||||
|
@ -359,7 +359,7 @@ sl:
|
||||||
newer_entries: Novejši zapisi
|
newer_entries: Novejši zapisi
|
||||||
no_entries: Ni zapisov v dnevnik
|
no_entries: Ni zapisov v dnevnik
|
||||||
older_entries: Starejši zapisi
|
older_entries: Starejši zapisi
|
||||||
recent_entries: "Nedavni zapisi v dnevnik:"
|
recent_entries: Nedavni vnosi v dnevnik
|
||||||
title: Dnevniki uporabnikov
|
title: Dnevniki uporabnikov
|
||||||
title_friends: Dnevniki vaših prijateljev
|
title_friends: Dnevniki vaših prijateljev
|
||||||
title_nearby: Dnevniki bližnjih uporabnikov
|
title_nearby: Dnevniki bližnjih uporabnikov
|
||||||
|
@ -978,7 +978,6 @@ sl:
|
||||||
user_diaries_tooltip: Pregled dnevnikov uporabnikov
|
user_diaries_tooltip: Pregled dnevnikov uporabnikov
|
||||||
view: Zemljevid
|
view: Zemljevid
|
||||||
view_tooltip: Prikaži zemljevid
|
view_tooltip: Prikaži zemljevid
|
||||||
welcome_user: Dobrodošli, %{user_link}
|
|
||||||
welcome_user_link_tooltip: Vaša uporabniška stran
|
welcome_user_link_tooltip: Vaša uporabniška stran
|
||||||
wiki: Wiki
|
wiki: Wiki
|
||||||
wiki_title: Wiki stran za projekt
|
wiki_title: Wiki stran za projekt
|
||||||
|
@ -987,6 +986,8 @@ sl:
|
||||||
english_link: angleški izvirnik
|
english_link: angleški izvirnik
|
||||||
text: V primeru neskladja med tem prevodom in %{english_original_link} se bo uporabila angleška stran
|
text: V primeru neskladja med tem prevodom in %{english_original_link} se bo uporabila angleška stran
|
||||||
title: O tem prevodu
|
title: O tem prevodu
|
||||||
|
legal_babble:
|
||||||
|
title_html: Avtorske pravice in dovoljenja
|
||||||
native:
|
native:
|
||||||
mapping_link: začnete kartirati
|
mapping_link: začnete kartirati
|
||||||
native_link: Slovensko verzijo
|
native_link: Slovensko verzijo
|
||||||
|
@ -1381,6 +1382,7 @@ sl:
|
||||||
visibility: "Vidljivost:"
|
visibility: "Vidljivost:"
|
||||||
visibility_help: kaj to pomeni?
|
visibility_help: kaj to pomeni?
|
||||||
list:
|
list:
|
||||||
|
description: Prebrskaj nedavno poslane sledi GPS
|
||||||
empty_html: Prazno. <a href='%{upload_link}'>Naložite novo sled</a> oziroma izvedete več o GPS sledeh na <a href='http://wiki.openstreetmap.org/wiki/Beginners_Guide_1.2'>wiki strani</a>.
|
empty_html: Prazno. <a href='%{upload_link}'>Naložite novo sled</a> oziroma izvedete več o GPS sledeh na <a href='http://wiki.openstreetmap.org/wiki/Beginners_Guide_1.2'>wiki strani</a>.
|
||||||
public_traces: Javne sledi GPS
|
public_traces: Javne sledi GPS
|
||||||
public_traces_from: Javne sledi GPS uporabnika %{user}
|
public_traces_from: Javne sledi GPS uporabnika %{user}
|
||||||
|
@ -1428,7 +1430,7 @@ sl:
|
||||||
trace_paging_nav:
|
trace_paging_nav:
|
||||||
newer: Novejše sledi
|
newer: Novejše sledi
|
||||||
older: Starejše sledi
|
older: Starejše sledi
|
||||||
showing_page: Prikazujem stran %{page}
|
showing_page: Stran %{page}
|
||||||
view:
|
view:
|
||||||
delete_track: Izbriši to sled
|
delete_track: Izbriši to sled
|
||||||
description: "Opis:"
|
description: "Opis:"
|
||||||
|
|
|
@ -266,7 +266,6 @@ sq:
|
||||||
changeset:
|
changeset:
|
||||||
anonymous: Anonim
|
anonymous: Anonim
|
||||||
big_area: (e madhe)
|
big_area: (e madhe)
|
||||||
id: "#%{id}"
|
|
||||||
no_comment: (asgjë)
|
no_comment: (asgjë)
|
||||||
no_edits: (asnjë redaktim)
|
no_edits: (asnjë redaktim)
|
||||||
show_area_box: Shfaq kutinë e zonës
|
show_area_box: Shfaq kutinë e zonës
|
||||||
|
|
|
@ -273,7 +273,6 @@ sr-Latn:
|
||||||
changeset:
|
changeset:
|
||||||
anonymous: Anonimno
|
anonymous: Anonimno
|
||||||
big_area: (veliko)
|
big_area: (veliko)
|
||||||
id: br. %{id}
|
|
||||||
no_comment: (nema komentara)
|
no_comment: (nema komentara)
|
||||||
no_edits: (nema izmena)
|
no_edits: (nema izmena)
|
||||||
show_area_box: pogledaj okvir područja
|
show_area_box: pogledaj okvir područja
|
||||||
|
@ -1004,7 +1003,6 @@ sr-Latn:
|
||||||
user_diaries_tooltip: Pogledajte korisničke dnevnike
|
user_diaries_tooltip: Pogledajte korisničke dnevnike
|
||||||
view: Pregled
|
view: Pregled
|
||||||
view_tooltip: Pogledajte mapu
|
view_tooltip: Pogledajte mapu
|
||||||
welcome_user: Dobro došli, %{user_link}
|
|
||||||
welcome_user_link_tooltip: Vaša korisnička stranica
|
welcome_user_link_tooltip: Vaša korisnička stranica
|
||||||
wiki: viki
|
wiki: viki
|
||||||
wiki_title: Viki stranice projekta
|
wiki_title: Viki stranice projekta
|
||||||
|
|
|
@ -277,7 +277,6 @@ sr:
|
||||||
changeset:
|
changeset:
|
||||||
anonymous: Анонимно
|
anonymous: Анонимно
|
||||||
big_area: (велико)
|
big_area: (велико)
|
||||||
id: бр. %{id}
|
|
||||||
no_comment: (нема коментара)
|
no_comment: (нема коментара)
|
||||||
no_edits: (нема измена)
|
no_edits: (нема измена)
|
||||||
show_area_box: погледај оквир подручја
|
show_area_box: погледај оквир подручја
|
||||||
|
@ -1008,7 +1007,6 @@ sr:
|
||||||
user_diaries_tooltip: Погледајте корисничке дневнике
|
user_diaries_tooltip: Погледајте корисничке дневнике
|
||||||
view: Преглед
|
view: Преглед
|
||||||
view_tooltip: Погледајте мапу
|
view_tooltip: Погледајте мапу
|
||||||
welcome_user: Добро дошли, %{user_link}
|
|
||||||
welcome_user_link_tooltip: Ваша корисничка страница
|
welcome_user_link_tooltip: Ваша корисничка страница
|
||||||
wiki: вики
|
wiki: вики
|
||||||
wiki_title: Вики странице пројекта
|
wiki_title: Вики странице пројекта
|
||||||
|
|
|
@ -126,7 +126,7 @@ sv:
|
||||||
has_ways:
|
has_ways:
|
||||||
one: "Har följande %{count} sträcka:"
|
one: "Har följande %{count} sträcka:"
|
||||||
other: "Innehåller följande %{count} sträckor:"
|
other: "Innehåller följande %{count} sträckor:"
|
||||||
no_bounding_box: Inga yttre gränser (bounding box) lagrades för detta changeset.
|
no_bounding_box: Inga yttre gränser (bounding box) lagrades för detta ändringsset.
|
||||||
show_area_box: Visa boxarea
|
show_area_box: Visa boxarea
|
||||||
common_details:
|
common_details:
|
||||||
changeset_comment: "Kommentar:"
|
changeset_comment: "Kommentar:"
|
||||||
|
@ -189,7 +189,7 @@ sv:
|
||||||
way: väg
|
way: väg
|
||||||
paging_nav:
|
paging_nav:
|
||||||
of: av
|
of: av
|
||||||
showing_page: Visar sida
|
showing_page: sida
|
||||||
redacted:
|
redacted:
|
||||||
message_html: Version %{version} av denna %{type} kan inte visas då den har tagits bort. Se %{redaction_link} för detaljer.
|
message_html: Version %{version} av denna %{type} kan inte visas då den har tagits bort. Se %{redaction_link} för detaljer.
|
||||||
redaction: Redaktering %{id}
|
redaction: Redaktering %{id}
|
||||||
|
@ -229,7 +229,7 @@ sv:
|
||||||
manually_select: Välj en annan area manuellt
|
manually_select: Välj en annan area manuellt
|
||||||
object_list:
|
object_list:
|
||||||
api: Hämta detta område från API:t
|
api: Hämta detta område från API:t
|
||||||
back: Visa objektlista
|
back: Tillbaka till objektlista
|
||||||
details: Detaljer
|
details: Detaljer
|
||||||
heading: Objektlista
|
heading: Objektlista
|
||||||
history:
|
history:
|
||||||
|
@ -271,8 +271,8 @@ sv:
|
||||||
way_title: "Väg: %{way_name}"
|
way_title: "Väg: %{way_name}"
|
||||||
way_details:
|
way_details:
|
||||||
also_part_of:
|
also_part_of:
|
||||||
one: också del av väg %{related_ways}
|
one: del av väg %{related_ways}
|
||||||
other: också del av vägarna %{related_ways}
|
other: del av vägarna %{related_ways}
|
||||||
nodes: "Noder:"
|
nodes: "Noder:"
|
||||||
part_of: "Del av:"
|
part_of: "Del av:"
|
||||||
way_history:
|
way_history:
|
||||||
|
@ -292,7 +292,7 @@ sv:
|
||||||
changeset_paging_nav:
|
changeset_paging_nav:
|
||||||
next: Nästa »
|
next: Nästa »
|
||||||
previous: « Föregående
|
previous: « Föregående
|
||||||
showing_page: Visar sida %{page}
|
showing_page: Sida %{page}
|
||||||
changesets:
|
changesets:
|
||||||
area: Area
|
area: Area
|
||||||
comment: Kommentar
|
comment: Kommentar
|
||||||
|
@ -300,24 +300,24 @@ sv:
|
||||||
saved_at: Sparad
|
saved_at: Sparad
|
||||||
user: Användare
|
user: Användare
|
||||||
list:
|
list:
|
||||||
description: Senaste ändringar
|
description: Bläddra bland de senaste bidragen till kartan
|
||||||
description_bbox: Changesets inom %{bbox}
|
description_bbox: Ändringsset inom %{bbox}
|
||||||
description_friend: Changesets av dina vänner
|
description_friend: Ändringsset av dina vänner
|
||||||
description_nearby: Changesets av närliggande användare
|
description_nearby: Ändringsset av närbelägna användare
|
||||||
description_user: Ändringsset av %{user}
|
description_user: Ändringsset av %{user}
|
||||||
description_user_bbox: Ändringsset av %{user} inom %{bbox}
|
description_user_bbox: Ändringsset av %{user} inom %{bbox}
|
||||||
empty_anon_html: Inga redigeringar har gjorts ännu
|
empty_anon_html: Inga redigeringar har gjorts ännu.
|
||||||
empty_user_html: Det verkar som om du ännu inte har gjort några redigeringar. För att komma igång, kolla <a href='http://wiki.openstreetmap.org/wiki/Beginners_Guide_1.3'>Nybörjarguiden</a>.
|
empty_user_html: Det verkar som om du ännu inte har gjort några redigeringar. För att komma igång, kolla <a href='http://wiki.openstreetmap.org/wiki/Beginners_Guide_1.3'>Nybörjarguiden</a>.
|
||||||
heading: Ändringsset
|
heading: Ändringsset
|
||||||
heading_bbox: Ändringsset
|
heading_bbox: Ändringsset
|
||||||
heading_friend: Changesets
|
heading_friend: Ändringsset
|
||||||
heading_nearby: Changesets
|
heading_nearby: Ändringsset
|
||||||
heading_user: Ändringsset
|
heading_user: Ändringsset
|
||||||
heading_user_bbox: Ändringsset
|
heading_user_bbox: Ändringsset
|
||||||
title: Ändringsset
|
title: Ändringsset
|
||||||
title_bbox: Changesets inom %{bbox}
|
title_bbox: Ändringsset inom %{bbox}
|
||||||
title_friend: Changesets av dina vänner
|
title_friend: Ändringsset av dina vänner
|
||||||
title_nearby: Changesets av närliggande användare
|
title_nearby: Ändringsset av närbelägna användare
|
||||||
title_user: Ändringsset av %{user}
|
title_user: Ändringsset av %{user}
|
||||||
title_user_bbox: Ändringsset av %{user} inom %{bbox}
|
title_user_bbox: Ändringsset av %{user} inom %{bbox}
|
||||||
timeout:
|
timeout:
|
||||||
|
@ -374,10 +374,10 @@ sv:
|
||||||
newer_entries: Nyare anteckningar
|
newer_entries: Nyare anteckningar
|
||||||
no_entries: Inga dagboksanteckningar
|
no_entries: Inga dagboksanteckningar
|
||||||
older_entries: Äldre anteckningar
|
older_entries: Äldre anteckningar
|
||||||
recent_entries: "Aktuella dagboksanteckningar:"
|
recent_entries: Nyligen gjorda dagboksanteckningar
|
||||||
title: Användardagböcker
|
title: Användardagböcker
|
||||||
title_friends: Vänners dagböcker
|
title_friends: Vänners dagböcker
|
||||||
title_nearby: Närliggande användares dagböcker
|
title_nearby: Närbelägna användares dagböcker
|
||||||
user_title: "%{user}s dagbok"
|
user_title: "%{user}s dagbok"
|
||||||
location:
|
location:
|
||||||
edit: Redigera
|
edit: Redigera
|
||||||
|
@ -1007,7 +1007,6 @@ sv:
|
||||||
user_diaries_tooltip: Visa användardagböcker
|
user_diaries_tooltip: Visa användardagböcker
|
||||||
view: Visa
|
view: Visa
|
||||||
view_tooltip: Visa kartan
|
view_tooltip: Visa kartan
|
||||||
welcome_user: Välkommen %{user_link}
|
|
||||||
welcome_user_link_tooltip: Din användarsida
|
welcome_user_link_tooltip: Din användarsida
|
||||||
wiki: Wiki
|
wiki: Wiki
|
||||||
wiki_title: Wiki-webplats för projektet
|
wiki_title: Wiki-webplats för projektet
|
||||||
|
@ -1439,6 +1438,7 @@ sv:
|
||||||
visibility: "Synlighet:"
|
visibility: "Synlighet:"
|
||||||
visibility_help: vad betyder detta?
|
visibility_help: vad betyder detta?
|
||||||
list:
|
list:
|
||||||
|
description: Bläddra bland nyligen uppladdade GPS-spår
|
||||||
empty_html: Ingenting här ännu. <a href='%{upload_link}'>Ladda upp ett nytt spår</a> eller lär dig om GPS-spår på <a href='http://wiki.openstreetmap.org/wiki/Beginners_Guide_1.2'>wikin</a>.
|
empty_html: Ingenting här ännu. <a href='%{upload_link}'>Ladda upp ett nytt spår</a> eller lär dig om GPS-spår på <a href='http://wiki.openstreetmap.org/wiki/Beginners_Guide_1.2'>wikin</a>.
|
||||||
public_traces: Publika GPS-spår
|
public_traces: Publika GPS-spår
|
||||||
public_traces_from: Publika GPS-spår från %{user}
|
public_traces_from: Publika GPS-spår från %{user}
|
||||||
|
@ -1486,7 +1486,7 @@ sv:
|
||||||
trace_paging_nav:
|
trace_paging_nav:
|
||||||
newer: Nyare spår
|
newer: Nyare spår
|
||||||
older: Äldre spår
|
older: Äldre spår
|
||||||
showing_page: Visar sida %{page}
|
showing_page: Sida %{page}
|
||||||
view:
|
view:
|
||||||
delete_track: Radera detta spår
|
delete_track: Radera detta spår
|
||||||
description: "Beskrivning:"
|
description: "Beskrivning:"
|
||||||
|
@ -1589,8 +1589,8 @@ sv:
|
||||||
heading: Användare
|
heading: Användare
|
||||||
hide: Göm valda användare
|
hide: Göm valda användare
|
||||||
showing:
|
showing:
|
||||||
one: Visar sida %{page} (%{first_item} av %{items})
|
one: Sida %{page} (%{first_item} av %{items})
|
||||||
other: Visar sida %{page} (%{first_item}-%{last_item} av %{items})
|
other: Sida %{page} (%{first_item}-%{last_item} av %{items})
|
||||||
summary: "%{name} skapades från %{ip_address} den %{date}"
|
summary: "%{name} skapades från %{ip_address} den %{date}"
|
||||||
summary_no_ip: "%{name} skapad %{date}"
|
summary_no_ip: "%{name} skapad %{date}"
|
||||||
title: Användare
|
title: Användare
|
||||||
|
@ -1652,7 +1652,7 @@ sv:
|
||||||
button: Lägg till som vän
|
button: Lägg till som vän
|
||||||
failed: Misslyckades med att lägga till %{name} som vän.
|
failed: Misslyckades med att lägga till %{name} som vän.
|
||||||
heading: Lägg till %{user} som en vän?
|
heading: Lägg till %{user} som en vän?
|
||||||
success: "%{name} är nu din vän."
|
success: "%{name} är nu din vän!"
|
||||||
new:
|
new:
|
||||||
confirm email address: "Bekräfta e-postadress:"
|
confirm email address: "Bekräfta e-postadress:"
|
||||||
confirm password: "Bekräfta lösenord:"
|
confirm password: "Bekräfta lösenord:"
|
||||||
|
@ -1721,7 +1721,7 @@ sv:
|
||||||
you need to accept or decline: Läs igenom och Godkänn eller Avböj de nya bidragsvillkoren för att fortsätta.
|
you need to accept or decline: Läs igenom och Godkänn eller Avböj de nya bidragsvillkoren för att fortsätta.
|
||||||
view:
|
view:
|
||||||
activate_user: aktivera denna användare
|
activate_user: aktivera denna användare
|
||||||
add as friend: lägg till som vän
|
add as friend: lägg till vän
|
||||||
ago: (%{time_in_words_ago} sedan)
|
ago: (%{time_in_words_ago} sedan)
|
||||||
block_history: tilldelade blockeringar
|
block_history: tilldelade blockeringar
|
||||||
blocks by me: blockeringar av mig
|
blocks by me: blockeringar av mig
|
||||||
|
@ -1741,10 +1741,10 @@ sv:
|
||||||
diary: dagbok
|
diary: dagbok
|
||||||
edits: redigeringar
|
edits: redigeringar
|
||||||
email address: "E-post:"
|
email address: "E-post:"
|
||||||
friends_changesets: Bläddra igenom alla ändringsset bland vänner
|
friends_changesets: vänners ändringsset
|
||||||
friends_diaries: Bläddra igenom alla dagboksinlägg av vänner
|
friends_diaries: vänners dagboksinlägg
|
||||||
hide_user: dölj denna användare
|
hide_user: dölj denna användare
|
||||||
if set location: Om du sätter din position, så kommer en karta med lite funktioner att dyka upp här nedanför. Du kan sätta din hemposition på din %{settings_link}-sida.
|
if set location: Ange din hemposition på %{settings_link}-sidan för att se närbelägna användare.
|
||||||
km away: "%{count}km bort"
|
km away: "%{count}km bort"
|
||||||
latest edit: "Senaste redigering %{ago}:"
|
latest edit: "Senaste redigering %{ago}:"
|
||||||
m away: "%{count}m bort"
|
m away: "%{count}m bort"
|
||||||
|
@ -1756,8 +1756,8 @@ sv:
|
||||||
my settings: mina inställningar
|
my settings: mina inställningar
|
||||||
my traces: mina GPS-spår
|
my traces: mina GPS-spår
|
||||||
nearby users: Andra användare nära dig
|
nearby users: Andra användare nära dig
|
||||||
nearby_changesets: Bläddra igenom alla ändringsset av närbelägna användare
|
nearby_changesets: närbelägna användares ändringsset
|
||||||
nearby_diaries: Bläddra igenom alla dagboksinlägg av närbelägna användare
|
nearby_diaries: närbelägna användares dagboksinlägg
|
||||||
new diary entry: nytt dagboksinlägg
|
new diary entry: nytt dagboksinlägg
|
||||||
no friends: Du har inte lagt till några vänner ännu.
|
no friends: Du har inte lagt till några vänner ännu.
|
||||||
no nearby users: Det är inga andra användare som uppgett att de mappar i ditt område ännu.
|
no nearby users: Det är inga andra användare som uppgett att de mappar i ditt område ännu.
|
||||||
|
@ -1841,7 +1841,7 @@ sv:
|
||||||
revoke: Återkalla!
|
revoke: Återkalla!
|
||||||
revoker_name: Återkallad av
|
revoker_name: Återkallad av
|
||||||
show: Visa
|
show: Visa
|
||||||
showing_page: Visar sida %{page}
|
showing_page: Sida %{page}
|
||||||
status: Status
|
status: Status
|
||||||
period:
|
period:
|
||||||
one: 1 timma
|
one: 1 timma
|
||||||
|
|
|
@ -615,7 +615,6 @@ ta:
|
||||||
text: ஒரு நன்கொடையை அளிக்கவும்
|
text: ஒரு நன்கொடையை அளிக்கவும்
|
||||||
view: காண்
|
view: காண்
|
||||||
view_tooltip: வரைபடத்தை காண்
|
view_tooltip: வரைபடத்தை காண்
|
||||||
welcome_user: வரவேற்பு, %{user_link}
|
|
||||||
welcome_user_link_tooltip: உங்கள் பயனர் பக்கம்
|
welcome_user_link_tooltip: உங்கள் பயனர் பக்கம்
|
||||||
wiki: விக்கி
|
wiki: விக்கி
|
||||||
license_page:
|
license_page:
|
||||||
|
|
|
@ -269,7 +269,6 @@ tl:
|
||||||
changeset:
|
changeset:
|
||||||
anonymous: Hindi nagpapakilala (anonimo)
|
anonymous: Hindi nagpapakilala (anonimo)
|
||||||
big_area: (malaki)
|
big_area: (malaki)
|
||||||
id: "#%{id}"
|
|
||||||
no_comment: (wala)
|
no_comment: (wala)
|
||||||
no_edits: (walang mga pamamatnugot)
|
no_edits: (walang mga pamamatnugot)
|
||||||
show_area_box: ipakita ang kahon ng pook
|
show_area_box: ipakita ang kahon ng pook
|
||||||
|
@ -1002,7 +1001,6 @@ tl:
|
||||||
user_diaries_tooltip: Tingnan ang mga talaarawan ng tagagamit
|
user_diaries_tooltip: Tingnan ang mga talaarawan ng tagagamit
|
||||||
view: Tingnan
|
view: Tingnan
|
||||||
view_tooltip: Tingnan ang mapa
|
view_tooltip: Tingnan ang mapa
|
||||||
welcome_user: Maligayang pagdating, %{user_link}
|
|
||||||
welcome_user_link_tooltip: Ang iyong pahina ng tagagamit
|
welcome_user_link_tooltip: Ang iyong pahina ng tagagamit
|
||||||
wiki: Wiki
|
wiki: Wiki
|
||||||
wiki_title: Lugar ng wiki para sa proyekto
|
wiki_title: Lugar ng wiki para sa proyekto
|
||||||
|
|
|
@ -886,7 +886,6 @@ tr:
|
||||||
user_diaries_tooltip: Kullanıcı günlükleri görüntüle
|
user_diaries_tooltip: Kullanıcı günlükleri görüntüle
|
||||||
view: Harita
|
view: Harita
|
||||||
view_tooltip: Haritayı göster
|
view_tooltip: Haritayı göster
|
||||||
welcome_user: Merhaba, %{user_link}
|
|
||||||
welcome_user_link_tooltip: Senin kullanıcı sayfan
|
welcome_user_link_tooltip: Senin kullanıcı sayfan
|
||||||
wiki: Viki
|
wiki: Viki
|
||||||
wiki_title: Projenin viki sayfaları
|
wiki_title: Projenin viki sayfaları
|
||||||
|
|
|
@ -1002,7 +1002,6 @@ uk:
|
||||||
user_diaries_tooltip: Подивитись щоденники
|
user_diaries_tooltip: Подивитись щоденники
|
||||||
view: Мапа
|
view: Мапа
|
||||||
view_tooltip: Переглянути мапу
|
view_tooltip: Переглянути мапу
|
||||||
welcome_user: Вітаємо, %{user_link}
|
|
||||||
welcome_user_link_tooltip: Ваша сторінка користувача
|
welcome_user_link_tooltip: Ваша сторінка користувача
|
||||||
wiki: Вікі
|
wiki: Вікі
|
||||||
wiki_title: Вікі-сайт проекту
|
wiki_title: Вікі-сайт проекту
|
||||||
|
|
|
@ -169,7 +169,7 @@ vi:
|
||||||
way: lối
|
way: lối
|
||||||
paging_nav:
|
paging_nav:
|
||||||
of: trong
|
of: trong
|
||||||
showing_page: Đang hiện trang
|
showing_page: trang
|
||||||
redacted:
|
redacted:
|
||||||
message_html: Không thể xem phiên bản %{version} của %{type} này vì nó đã bị ẩn. Xin vui lòng xem chi tiết tại %{redaction_link}.
|
message_html: Không thể xem phiên bản %{version} của %{type} này vì nó đã bị ẩn. Xin vui lòng xem chi tiết tại %{redaction_link}.
|
||||||
redaction: Dãy ẩn %{id}
|
redaction: Dãy ẩn %{id}
|
||||||
|
@ -209,7 +209,7 @@ vi:
|
||||||
manually_select: Chọn vùng khác thủ công
|
manually_select: Chọn vùng khác thủ công
|
||||||
object_list:
|
object_list:
|
||||||
api: Lấy vùng này dùng API
|
api: Lấy vùng này dùng API
|
||||||
back: Liệt kê các đối tượng
|
back: Quay lại danh sách đối tượng
|
||||||
details: Chi tiết
|
details: Chi tiết
|
||||||
heading: Danh sách đối tượng
|
heading: Danh sách đối tượng
|
||||||
history:
|
history:
|
||||||
|
@ -251,8 +251,8 @@ vi:
|
||||||
way_title: "Lối: %{way_name}"
|
way_title: "Lối: %{way_name}"
|
||||||
way_details:
|
way_details:
|
||||||
also_part_of:
|
also_part_of:
|
||||||
one: cũng thuộc về lối %{related_ways}
|
one: thuộc về lối %{related_ways}
|
||||||
other: cũng thuộc về các lối %{related_ways}
|
other: thuộc về các lối %{related_ways}
|
||||||
nodes: "Nốt:"
|
nodes: "Nốt:"
|
||||||
part_of: "Trực thuộc:"
|
part_of: "Trực thuộc:"
|
||||||
way_history:
|
way_history:
|
||||||
|
@ -272,7 +272,7 @@ vi:
|
||||||
changeset_paging_nav:
|
changeset_paging_nav:
|
||||||
next: Sau »
|
next: Sau »
|
||||||
previous: « Trước
|
previous: « Trước
|
||||||
showing_page: Đang hiện trang %{page}
|
showing_page: Trang %{page}
|
||||||
changesets:
|
changesets:
|
||||||
area: Vùng
|
area: Vùng
|
||||||
comment: Miêu tả
|
comment: Miêu tả
|
||||||
|
@ -280,7 +280,7 @@ vi:
|
||||||
saved_at: Lúc Lưu
|
saved_at: Lúc Lưu
|
||||||
user: Người dùng
|
user: Người dùng
|
||||||
list:
|
list:
|
||||||
description: Những thay đổi gần đây
|
description: Xem những đóng góp gần đây vào bản đồ
|
||||||
description_bbox: Những bộ thay đổi ở trong %{bbox}
|
description_bbox: Những bộ thay đổi ở trong %{bbox}
|
||||||
description_friend: Những bộ thay đổi của bạn bè
|
description_friend: Những bộ thay đổi của bạn bè
|
||||||
description_nearby: Những bộ thay đổi của người dùng ở gần
|
description_nearby: Những bộ thay đổi của người dùng ở gần
|
||||||
|
@ -353,7 +353,7 @@ vi:
|
||||||
newer_entries: Mục Sau
|
newer_entries: Mục Sau
|
||||||
no_entries: Chưa có mục nhật ký
|
no_entries: Chưa có mục nhật ký
|
||||||
older_entries: Mục Trước
|
older_entries: Mục Trước
|
||||||
recent_entries: "Mục nhật ký gần đây:"
|
recent_entries: Mục nhật ký gần đây
|
||||||
title: Các Nhật ký Cá nhân
|
title: Các Nhật ký Cá nhân
|
||||||
title_friends: Các nhật ký của bạn bè
|
title_friends: Các nhật ký của bạn bè
|
||||||
title_nearby: Các nhật ký của người dùng ở gần
|
title_nearby: Các nhật ký của người dùng ở gần
|
||||||
|
@ -989,7 +989,6 @@ vi:
|
||||||
user_diaries_tooltip: Đọc các nhật ký cá nhân
|
user_diaries_tooltip: Đọc các nhật ký cá nhân
|
||||||
view: Xem
|
view: Xem
|
||||||
view_tooltip: Xem bản đồ
|
view_tooltip: Xem bản đồ
|
||||||
welcome_user: Hoan nghênh, %{user_link}
|
|
||||||
welcome_user_link_tooltip: Trang cá nhân của bạn
|
welcome_user_link_tooltip: Trang cá nhân của bạn
|
||||||
wiki: Wiki
|
wiki: Wiki
|
||||||
wiki_title: Trang wiki của dự án
|
wiki_title: Trang wiki của dự án
|
||||||
|
@ -1124,7 +1123,7 @@ vi:
|
||||||
and_the_tags: "và các thẻ sau:"
|
and_the_tags: "và các thẻ sau:"
|
||||||
failure:
|
failure:
|
||||||
failed_to_import: "không nhập thành công. Đã gặp lỗi này:"
|
failed_to_import: "không nhập thành công. Đã gặp lỗi này:"
|
||||||
import_failures_url: http://wiki.openstreetmap.org/wiki/Vi:FAQ#Why_didn.27t_my_GPX_file_upload_properly.3F
|
import_failures_url: http://wiki.openstreetmap.org/wiki/Vi:FAQ?uselang=vi#Why_didn.27t_my_GPX_file_upload_properly.3F
|
||||||
more_info_1: Có thêm chi tiết về vụ nhập GPX bị thất bại và cách tránh
|
more_info_1: Có thêm chi tiết về vụ nhập GPX bị thất bại và cách tránh
|
||||||
more_info_2: "vấn đề này tại:"
|
more_info_2: "vấn đề này tại:"
|
||||||
subject: "[OpenStreetMap] Nhập GPX thất bại"
|
subject: "[OpenStreetMap] Nhập GPX thất bại"
|
||||||
|
@ -1420,6 +1419,7 @@ vi:
|
||||||
visibility_help: có nghĩa là gì?
|
visibility_help: có nghĩa là gì?
|
||||||
visibility_help_url: http://wiki.openstreetmap.org/wiki/Visibility_of_GPS_traces?uselang=vi
|
visibility_help_url: http://wiki.openstreetmap.org/wiki/Visibility_of_GPS_traces?uselang=vi
|
||||||
list:
|
list:
|
||||||
|
description: Xem những tuyến đường GPS được tải lên gần đây
|
||||||
empty_html: Chưa có gì ở đây. <a href="%{upload_link}">Tải lên tuyến đường mới</a> hoặc tìm hiểu thêm về tuyến đường GPS tại <a href="http://wiki.openstreetmap.org/wiki/Beginners_Guide_1.2">trang wiki</a>.
|
empty_html: Chưa có gì ở đây. <a href="%{upload_link}">Tải lên tuyến đường mới</a> hoặc tìm hiểu thêm về tuyến đường GPS tại <a href="http://wiki.openstreetmap.org/wiki/Beginners_Guide_1.2">trang wiki</a>.
|
||||||
public_traces: Tuyến đường GPS công khai
|
public_traces: Tuyến đường GPS công khai
|
||||||
public_traces_from: Tuyến đường GPS công khai của %{user}
|
public_traces_from: Tuyến đường GPS công khai của %{user}
|
||||||
|
@ -1469,7 +1469,7 @@ vi:
|
||||||
trace_paging_nav:
|
trace_paging_nav:
|
||||||
newer: Tuyến đường Mới hơn
|
newer: Tuyến đường Mới hơn
|
||||||
older: Tuyến đường Cũ hơn
|
older: Tuyến đường Cũ hơn
|
||||||
showing_page: Đang hiện trang %{page}
|
showing_page: Trang %{page}
|
||||||
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ả:"
|
||||||
|
@ -1511,6 +1511,7 @@ vi:
|
||||||
flash update success confirm needed: Đã cập nhật thông tin cá nhân thành công. Kiểm tra thư điện tử xác nhận địa chỉ thư điện tử mới.
|
flash update success confirm needed: Đã cập nhật thông tin cá nhân thành công. Kiểm tra thư điện tử xác nhận địa chỉ thư điện tử mới.
|
||||||
gravatar:
|
gravatar:
|
||||||
gravatar: Sử dụng Gravatar
|
gravatar: Sử dụng Gravatar
|
||||||
|
link: http://wiki.openstreetmap.org/wiki/Gravatar?uselang=vi
|
||||||
link text: đây là gì?
|
link text: đây là gì?
|
||||||
home location: "Vị trí Nhà:"
|
home location: "Vị trí Nhà:"
|
||||||
image: "Hình:"
|
image: "Hình:"
|
||||||
|
@ -1636,7 +1637,7 @@ vi:
|
||||||
button: Thêm là người bạn
|
button: Thêm là người bạn
|
||||||
failed: Rất tiếc, việc thêm %{name} là người bạn bị thất bại.
|
failed: Rất tiếc, việc thêm %{name} là người bạn bị thất bại.
|
||||||
heading: Thêm %{user} là người bạn?
|
heading: Thêm %{user} là người bạn?
|
||||||
success: "%{name} mới là người bạn."
|
success: "%{name} bây giờ là bạn bè của bạn!"
|
||||||
new:
|
new:
|
||||||
confirm email address: "Xác nhận Địa chỉ Thư điện tử:"
|
confirm email address: "Xác nhận Địa chỉ Thư điện tử:"
|
||||||
confirm password: "Xác nhận Mật khẩu:"
|
confirm password: "Xác nhận Mật khẩu:"
|
||||||
|
@ -1728,10 +1729,10 @@ vi:
|
||||||
diary: nhật ký
|
diary: nhật ký
|
||||||
edits: đóng góp
|
edits: đóng góp
|
||||||
email address: "Địa chỉ thư điện tử:"
|
email address: "Địa chỉ thư điện tử:"
|
||||||
friends_changesets: Xem những bộ thay đổi của bạn bè
|
friends_changesets: bộ thay đổi của bạn bè
|
||||||
friends_diaries: Đọc những mục nhật ký của bạn bè
|
friends_diaries: mục nhật ký của bạn bè
|
||||||
hide_user: ẩn tài khoản này
|
hide_user: ẩn tài khoản này
|
||||||
if set location: Nếu đặt vị trí, bản đồ đẹp đẽ và những thứ đó sẽ được hiển thị ở dưới. Bạn có thể đặt vị trí nhà tại trang %{settings_link}.
|
if set location: Đặt vị trí nhà tại trang %{settings_link} để xem những người dùng ở gần.
|
||||||
km away: cách %{count} km
|
km away: cách %{count} km
|
||||||
latest edit: "Sửa đổi gần đây nhất cách đây %{ago}:"
|
latest edit: "Sửa đổi gần đây nhất cách đây %{ago}:"
|
||||||
m away: cách %{count} m
|
m away: cách %{count} m
|
||||||
|
@ -1743,8 +1744,8 @@ vi:
|
||||||
my settings: tùy chọn
|
my settings: tùy chọn
|
||||||
my traces: tuyến đường của tôi
|
my traces: tuyến đường của tôi
|
||||||
nearby users: Người dùng khác ở gần
|
nearby users: Người dùng khác ở gần
|
||||||
nearby_changesets: Xem các bộ thay đổi của người dùng ở gần
|
nearby_changesets: bộ thay đổi của người dùng ở gần
|
||||||
nearby_diaries: Đọc các mục nhật ký của người dùng ở gần
|
nearby_diaries: mục nhật ký của người dùng ở gần
|
||||||
new diary entry: mục nhật ký mới
|
new diary entry: mục nhật ký mới
|
||||||
no friends: Bạn chưa thêm người bạn.
|
no friends: Bạn chưa thêm người bạn.
|
||||||
no nearby users: Không có người dùng nào nhận rằng họ ở gần.
|
no nearby users: Không có người dùng nào nhận rằng họ ở gần.
|
||||||
|
@ -1828,7 +1829,7 @@ vi:
|
||||||
revoke: Bỏ cấm!
|
revoke: Bỏ cấm!
|
||||||
revoker_name: Người bỏ cấm
|
revoker_name: Người bỏ cấm
|
||||||
show: Hiện
|
show: Hiện
|
||||||
showing_page: Đang hiện trang %{page}
|
showing_page: Trang %{page}
|
||||||
status: Trạng thái
|
status: Trạng thái
|
||||||
period: "%{count} giờ"
|
period: "%{count} giờ"
|
||||||
revoke:
|
revoke:
|
||||||
|
|
|
@ -264,7 +264,6 @@ zh-CN:
|
||||||
changeset:
|
changeset:
|
||||||
anonymous: 匿名
|
anonymous: 匿名
|
||||||
big_area: (大)
|
big_area: (大)
|
||||||
id: "#%{id}"
|
|
||||||
no_comment: (空)
|
no_comment: (空)
|
||||||
no_edits: (没有编辑)
|
no_edits: (没有编辑)
|
||||||
show_area_box: 显示区域窗口
|
show_area_box: 显示区域窗口
|
||||||
|
@ -995,7 +994,6 @@ zh-CN:
|
||||||
user_diaries_tooltip: 查看用户日记
|
user_diaries_tooltip: 查看用户日记
|
||||||
view: 查看
|
view: 查看
|
||||||
view_tooltip: 查看地图
|
view_tooltip: 查看地图
|
||||||
welcome_user: 欢迎,%{user_link}
|
|
||||||
welcome_user_link_tooltip: 您的用户页面
|
welcome_user_link_tooltip: 您的用户页面
|
||||||
wiki: 维基
|
wiki: 维基
|
||||||
wiki_title: 项目的维基网站
|
wiki_title: 项目的维基网站
|
||||||
|
|
|
@ -631,7 +631,6 @@ zh-TW:
|
||||||
user_diaries_tooltip: 檢視日記
|
user_diaries_tooltip: 檢視日記
|
||||||
view: 檢視
|
view: 檢視
|
||||||
view_tooltip: 檢視地圖
|
view_tooltip: 檢視地圖
|
||||||
welcome_user: 歡迎,%{user_link}
|
|
||||||
welcome_user_link_tooltip: 您的使用者頁面
|
welcome_user_link_tooltip: 您的使用者頁面
|
||||||
wiki: Wiki
|
wiki: Wiki
|
||||||
wiki_title: 專案的 Wiki 網站
|
wiki_title: 專案的 Wiki 網站
|
||||||
|
|
|
@ -2,6 +2,7 @@ module Potlatch2
|
||||||
LOCALES = {
|
LOCALES = {
|
||||||
"ar" => "ar",
|
"ar" => "ar",
|
||||||
"ast" => "ast",
|
"ast" => "ast",
|
||||||
|
"az" => "az",
|
||||||
"be" => "be",
|
"be" => "be",
|
||||||
"be-Tarask" => "be-tarask",
|
"be-Tarask" => "be-tarask",
|
||||||
"br" => "br",
|
"br" => "br",
|
||||||
|
|
|
@ -92,9 +92,10 @@ class BrowseControllerTest < ActionController::TestCase
|
||||||
assert_template 'node_history'
|
assert_template 'node_history'
|
||||||
|
|
||||||
# there are 2 revisions of the redacted node, but only one
|
# there are 2 revisions of the redacted node, but only one
|
||||||
# should be showing up here.
|
# should be showing details here.
|
||||||
assert_select "body div[id=content] div[class=browse_details]", 1
|
assert_select "body div#content div.browse_details", 2
|
||||||
assert_select "body div[id=content] div[class=browse_details][id=1]", 0
|
assert_select "body div#content div.browse_details[id=1] div.common", 0
|
||||||
|
assert_select "body div#content div.browse_details[id=2] div.common", 1
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_redacted_way_history
|
def test_redacted_way_history
|
||||||
|
@ -103,11 +104,12 @@ class BrowseControllerTest < ActionController::TestCase
|
||||||
assert_template 'way_history'
|
assert_template 'way_history'
|
||||||
|
|
||||||
# there are 4 revisions of the redacted way, but only 2
|
# there are 4 revisions of the redacted way, but only 2
|
||||||
# should be showing up here.
|
# should be showing details here.
|
||||||
assert_select "body div[id=content] div[class=browse_details]", 2
|
assert_select "body div#content div.browse_details", 4
|
||||||
# redacted revisions are 2 & 3
|
assert_select "body div#content div.browse_details[id=1] div.common", 1
|
||||||
assert_select "body div[id=content] div[class=browse_details][id=2]", 0
|
assert_select "body div#content div.browse_details[id=2] div.common", 0
|
||||||
assert_select "body div[id=content] div[class=browse_details][id=3]", 0
|
assert_select "body div#content div.browse_details[id=3] div.common", 0
|
||||||
|
assert_select "body div#content div.browse_details[id=4] div.common", 1
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_redacted_relation_history
|
def test_redacted_relation_history
|
||||||
|
@ -116,11 +118,12 @@ class BrowseControllerTest < ActionController::TestCase
|
||||||
assert_template 'relation_history'
|
assert_template 'relation_history'
|
||||||
|
|
||||||
# there are 4 revisions of the redacted relation, but only 2
|
# there are 4 revisions of the redacted relation, but only 2
|
||||||
# should be showing up here.
|
# should be showing details here.
|
||||||
assert_select "body div[id=content] div[class=browse_details]", 2
|
assert_select "body div#content div.browse_details", 4
|
||||||
# redacted revisions are 2 & 3
|
assert_select "body div#content div.browse_details[id=1] div.common", 1
|
||||||
assert_select "body div[id=content] div[class=browse_details][id=2]", 0
|
assert_select "body div#content div.browse_details[id=2] div.common", 0
|
||||||
assert_select "body div[id=content] div[class=browse_details][id=3]", 0
|
assert_select "body div#content div.browse_details[id=3] div.common", 0
|
||||||
|
assert_select "body div#content div.browse_details[id=4] div.common", 1
|
||||||
end
|
end
|
||||||
|
|
||||||
# This is a convenience method for most of the above checks
|
# This is a convenience method for most of the above checks
|
||||||
|
|
|
@ -239,7 +239,7 @@ class DiaryEntryControllerTest < ActionController::TestCase
|
||||||
assert_select "p", :text => /#{new_body}/, :count => 1
|
assert_select "p", :text => /#{new_body}/, :count => 1
|
||||||
assert_select "abbr[class=geo][title=#{number_with_precision(new_latitude, :precision => 4)}; #{number_with_precision(new_longitude, :precision => 4)}]", :count => 1
|
assert_select "abbr[class=geo][title=#{number_with_precision(new_latitude, :precision => 4)}; #{number_with_precision(new_longitude, :precision => 4)}]", :count => 1
|
||||||
# As we're not logged in, check that you cannot edit
|
# As we're not logged in, check that you cannot edit
|
||||||
assert_select "span[class=hidden show_if_user_#{entry.user.id}]", :count => 1 do
|
assert_select "li[class=hidden show_if_user_#{entry.user.id}]", :count => 1 do
|
||||||
assert_select "a[href='/user/#{entry.user.display_name}/diary/#{entry.id}/edit']", :text => "Edit this entry", :count => 1
|
assert_select "a[href='/user/#{entry.user.display_name}/diary/#{entry.id}/edit']", :text => "Edit this entry", :count => 1
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -154,7 +154,8 @@ class TraceControllerTest < ActionController::TestCase
|
||||||
def test_list
|
def test_list
|
||||||
get :list
|
get :list
|
||||||
assert_response :success
|
assert_response :success
|
||||||
assert_template 'list'
|
assert_template "list"
|
||||||
|
check_trace_list Trace.public
|
||||||
end
|
end
|
||||||
|
|
||||||
# Check that I can get mine
|
# Check that I can get mine
|
||||||
|
@ -168,6 +169,43 @@ class TraceControllerTest < ActionController::TestCase
|
||||||
# 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_redirected_to :controller => 'trace', :action => 'list', :display_name => users(:public_user).display_name
|
assert_redirected_to :controller => 'trace', :action => 'list', :display_name => users(:public_user).display_name
|
||||||
|
|
||||||
|
# Fetch the actual list
|
||||||
|
get :list, {:display_name => users(:public_user).display_name}, {:user => users(:public_user).id}
|
||||||
|
assert_response :success
|
||||||
|
assert_template "list"
|
||||||
|
check_trace_list users(:public_user).traces
|
||||||
|
end
|
||||||
|
|
||||||
|
# Check the list of changesets for a specific user
|
||||||
|
def test_list_user
|
||||||
|
# Test a user with no traces
|
||||||
|
get :list, :display_name => users(:second_public_user).display_name
|
||||||
|
assert_response :success
|
||||||
|
assert_template "list"
|
||||||
|
check_trace_list users(:second_public_user).traces.public
|
||||||
|
|
||||||
|
# Test a user with some traces - should see only public ones
|
||||||
|
get :list, :display_name => users(:public_user).display_name
|
||||||
|
assert_response :success
|
||||||
|
assert_template "list"
|
||||||
|
check_trace_list users(:public_user).traces.public
|
||||||
|
|
||||||
|
@request.cookies["_osm_username"] = users(:normal_user).display_name
|
||||||
|
|
||||||
|
# Should still see only public ones when authenticated as another user
|
||||||
|
get :list, {:display_name => users(:public_user).display_name}, {:user => users(:normal_user).id}
|
||||||
|
assert_response :success
|
||||||
|
assert_template "list"
|
||||||
|
check_trace_list users(:public_user).traces.public
|
||||||
|
|
||||||
|
@request.cookies["_osm_username"] = users(:public_user).display_name
|
||||||
|
|
||||||
|
# Should see all traces when authenticated as the target user
|
||||||
|
get :list, {:display_name => users(:public_user).display_name}, {:user => users(:public_user).id}
|
||||||
|
assert_response :success
|
||||||
|
assert_template "list"
|
||||||
|
check_trace_list users(:public_user).traces
|
||||||
end
|
end
|
||||||
|
|
||||||
# Check that the rss loads
|
# Check that the rss loads
|
||||||
|
@ -307,4 +345,24 @@ class TraceControllerTest < ActionController::TestCase
|
||||||
delete :api_delete, :id => gpx_files(:public_trace_file).id
|
delete :api_delete, :id => gpx_files(:public_trace_file).id
|
||||||
assert_response :not_found
|
assert_response :not_found
|
||||||
end
|
end
|
||||||
|
|
||||||
|
private
|
||||||
|
|
||||||
|
def check_trace_list(traces)
|
||||||
|
traces = traces.visible.order("timestamp DESC")
|
||||||
|
|
||||||
|
if traces.count > 0
|
||||||
|
assert_select "table#trace_list tbody", :count => 1 do
|
||||||
|
assert_select "tr", :count => traces.count do |rows|
|
||||||
|
traces.zip(rows).each do |trace,row|
|
||||||
|
assert_select row, "span.trace_summary", Regexp.new(Regexp.escape("(#{trace.size} points)"))
|
||||||
|
assert_select row, "td", Regexp.new(Regexp.escape(trace.description))
|
||||||
|
assert_select row, "td", Regexp.new(Regexp.escape("by #{trace.user.display_name}"))
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
else
|
||||||
|
assert_select "h4", /Nothing here yet/
|
||||||
|
end
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
BIN
vendor/assets/leaflet/images/layers.png
vendored
BIN
vendor/assets/leaflet/images/layers.png
vendored
Binary file not shown.
Before Width: | Height: | Size: 3.6 KiB After Width: | Height: | Size: 973 B |
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue