autoprefixer-rails (10.4.19.0)
execjs (~> 2)
aws-eventstream (1.3.0)
- aws-partitions (1.976.0)
- aws-sdk-core (3.205.0)
+ aws-partitions (1.981.0)
+ aws-sdk-core (3.209.1)
aws-eventstream (~> 1, >= 1.3.0)
aws-partitions (~> 1, >= 1.651.0)
aws-sigv4 (~> 1.9)
jmespath (~> 1, >= 1.6.1)
- aws-sdk-kms (1.91.0)
- aws-sdk-core (~> 3, >= 3.205.0)
+ aws-sdk-kms (1.94.0)
+ aws-sdk-core (~> 3, >= 3.207.0)
aws-sigv4 (~> 1.5)
- aws-sdk-s3 (1.162.0)
- aws-sdk-core (~> 3, >= 3.205.0)
+ aws-sdk-s3 (1.166.0)
+ aws-sdk-core (~> 3, >= 3.207.0)
aws-sdk-kms (~> 1)
aws-sigv4 (~> 1.5)
- aws-sigv4 (1.9.1)
+ aws-sigv4 (1.10.0)
aws-eventstream (~> 1, >= 1.0.2)
base64 (0.2.0)
better_errors (2.10.1)
childprocess (5.1.0)
logger (~> 1.5)
concurrent-ruby (1.3.4)
- config (5.5.1)
+ config (5.5.2)
deep_merge (~> 1.2, >= 1.2.1)
+ ostruct
connection_pool (2.4.1)
crack (1.0.0)
bigdecimal
factory_bot_rails (6.4.3)
factory_bot (~> 6.4)
railties (>= 5.0.0)
- faraday (2.11.0)
+ faraday (2.12.0)
faraday-net_http (>= 2.0, < 3.4)
+ json
logger
faraday-net_http (3.3.0)
net-http
ffi (>= 1.0.0)
globalid (1.2.1)
activesupport (>= 6.1)
- google-protobuf (3.25.4)
+ google-protobuf (3.25.5)
hashdiff (1.1.1)
hashie (5.0.0)
highline (3.1.1)
in_threads (1.6.0)
iniparse (1.5.0)
io-console (0.7.2)
- irb (1.14.0)
+ irb (1.14.1)
rdoc (>= 4.0.0)
reline (>= 0.4.2)
jbuilder (2.13.0)
railties (>= 4.2.0)
thor (>= 0.14, < 2.0)
json (2.7.2)
- jwt (2.9.0)
+ jwt (2.9.1)
base64
kgio (2.11.4)
kramdown (2.4.0)
actionpack (>= 4.2)
omniauth (~> 2.0)
openstreetmap-deadlock_retry (1.3.1)
+ ostruct (0.6.0)
overcommit (0.64.0)
childprocess (>= 0.6.3, < 6)
iniparse (~> 1.4)
psych (5.1.2)
stringio
public_suffix (6.0.1)
- puma (5.6.8)
+ puma (5.6.9)
nio4r (~> 2.0)
quad_tile (1.0.1)
racc (1.8.1)
io-console (~> 0.5)
request_store (1.7.0)
rack (>= 1.4)
- rexml (3.3.7)
+ rexml (3.3.8)
rinku (2.0.6)
rotp (6.3.0)
rouge (4.4.0)
rubocop-performance (1.22.1)
rubocop (>= 1.48.1, < 2.0)
rubocop-ast (>= 1.31.1, < 2.0)
- rubocop-rails (2.26.1)
+ rubocop-rails (2.26.2)
activesupport (>= 4.2.0)
rack (>= 1.1)
rubocop (>= 1.52.0, < 2.0)
thor (1.3.2)
tilt (2.4.0)
timeout (0.4.1)
- turbo-rails (2.0.7)
+ turbo-rails (2.0.10)
actionpack (>= 6.0.0)
- activejob (>= 6.0.0)
railties (>= 6.0.0)
tzinfo (2.0.6)
concurrent-ruby (~> 1.0)
simpleidn
vendorer (0.2.0)
version_gem (1.1.4)
- webmock (3.23.1)
+ webmock (3.24.0)
addressable (>= 2.8.0)
crack (>= 0.3.2)
hashdiff (>= 0.4.0, < 2.0.0)
- webrick (1.8.1)
+ webrick (1.8.2)
websocket (1.2.11)
websocket-driver (0.7.6)
websocket-extensions (>= 0.1.0)
@changeset = Changeset.find(params[:id])
case turbo_frame_request_id
when "changeset_nodes"
- @node_pages, @nodes = paginate(:old_nodes, :conditions => { :changeset_id => @changeset.id }, :per_page => 20, :parameter => "node_page")
+ @node_pages, @nodes = paginate(:old_nodes, :conditions => { :changeset_id => @changeset.id }, :order => [:node_id, :version], :per_page => 20, :parameter => "node_page")
render :partial => "elements", :locals => { :type => "node", :elements => @nodes, :pages => @node_pages }
when "changeset_ways"
- @way_pages, @ways = paginate(:old_ways, :conditions => { :changeset_id => @changeset.id }, :per_page => 20, :parameter => "way_page")
+ @way_pages, @ways = paginate(:old_ways, :conditions => { :changeset_id => @changeset.id }, :order => [:way_id, :version], :per_page => 20, :parameter => "way_page")
render :partial => "elements", :locals => { :type => "way", :elements => @ways, :pages => @way_pages }
when "changeset_relations"
- @relation_pages, @relations = paginate(:old_relations, :conditions => { :changeset_id => @changeset.id }, :per_page => 20, :parameter => "relation_page")
+ @relation_pages, @relations = paginate(:old_relations, :conditions => { :changeset_id => @changeset.id }, :order => [:relation_id, :version], :per_page => 20, :parameter => "relation_page")
render :partial => "elements", :locals => { :type => "relation", :elements => @relations, :pages => @relation_pages }
else
@comments = if current_user&.moderator?
else
@changeset.comments.includes(:author)
end
- @node_pages, @nodes = paginate(:old_nodes, :conditions => { :changeset_id => @changeset.id }, :per_page => 20, :parameter => "node_page")
- @way_pages, @ways = paginate(:old_ways, :conditions => { :changeset_id => @changeset.id }, :per_page => 20, :parameter => "way_page")
- @relation_pages, @relations = paginate(:old_relations, :conditions => { :changeset_id => @changeset.id }, :per_page => 20, :parameter => "relation_page")
+ @node_pages, @nodes = paginate(:old_nodes, :conditions => { :changeset_id => @changeset.id }, :order => [:node_id, :version], :per_page => 20, :parameter => "node_page")
+ @way_pages, @ways = paginate(:old_ways, :conditions => { :changeset_id => @changeset.id }, :order => [:way_id, :version], :per_page => 20, :parameter => "way_page")
+ @relation_pages, @relations = paginate(:old_relations, :conditions => { :changeset_id => @changeset.id }, :order => [:relation_id, :version], :per_page => 20, :parameter => "relation_page")
if @changeset.user.active? && @changeset.user.data_public?
changesets = conditions_nonempty(@changeset.user.changesets)
@next_by_user = changesets.where("id > ?", @changeset.id).reorder(:id => :asc).first
UserMailer.gpx_failure(trace, "0 points parsed ok. Do they all have lat,lng,alt,timestamp?").deliver
trace.destroy
end
+ rescue XML::Error => e
+ logger.info e.to_s
+ UserMailer.gpx_failure(trace, e).deliver
+ trace.destroy
rescue StandardError => e
logger.info e.to_s
e.backtrace.each { |l| logger.info l }
require "digest"
include AASM
- self.ignored_columns += ["creation_ip"]
-
has_many :traces, -> { where(:visible => true) }
has_many :diary_entries, -> { order(:created_at => :desc) }, :inverse_of => :user
has_many :diary_comments, -> { order(:created_at => :desc) }, :inverse_of => :user
<% next unless comment.visible || current_user&.moderator? %>
<li id="c<%= comment.id %>">
<small class='text-body-secondary'>
- <%= t comment.visible ? ".comment_by_html" : ".hidden_comment_by_html",
- :time_ago => friendly_date_ago(comment.created_at),
- :user => link_to(comment.author.display_name, comment.author) %>
+ <%= comment_by_options = { :time_ago => friendly_date_ago(comment.created_at),
+ :user => link_to(comment.author.display_name, comment.author) }
+ comment.visible ? t(".comment_by_html", **comment_by_options) : t(".hidden_comment_by_html", **comment_by_options) %>
<% if current_user&.moderator? %>
—
<%= tag.button t(".#{comment.visible ? 'hide' : 'unhide'}_comment"),
<% end %>
<%= bootstrap_form_for @trace, :url => { :action => "create" }, :html => { :multipart => true } do |f| %>
- <%= f.file_field :gpx_file, :placeholder => t("helpers.file.prompt") %>
+ <%= f.file_field :gpx_file, :placeholder => t("helpers.file.prompt"),
+ :help => ".gpx, .tar.gz, .tar.bz2, .tar, .zip, .gpx.gz, .gpx.bz2" %>
<%= f.text_field :description, :maxlength => 255 %>
<%= f.text_field :tagstring %>
<%= f.select :visibility,
+<p><%= t ".hi", :to_user => @friendship.befriendee.display_name %></p>
+
<p><%= t ".had_added_you", :user => @friendship.befriender.display_name %></p>
<%= message_body do %>
+<%= t ".hi", :to_user => @friendship.befriendee.display_name %>
+
<%= t '.had_added_you', :user => @friendship.befriender.display_name %>
<%= t '.see_their_profile', :userurl => @viewurl %>
<%= hidden_field_tag("referer", h(params[:referer])) unless params[:referer].nil? %>
<div class="mb-3">
- <%= submit_tag("Continue", :name => "continue", :id => "continue", :disabled => true, :class => "btn btn-primary") %>
- <%= submit_tag("Cancel", :name => "decline", :id => "decline", :class => "btn btn-outline-secondary") %>
+ <%= submit_tag(t(".continue"), :name => "continue", :id => "continue", :disabled => true, :class => "btn btn-primary") %>
+ <%= submit_tag(t(".cancel"), :name => "decline", :id => "decline", :class => "btn btn-outline-secondary") %>
</div>
<div class="mb-3">
- 'reports.new.categories.*' # double interpolation in reports_helper
- 'shared.pagination.*'
- 'auth.providers.*'
+ - 'time.formats.blog' # used for formatting blog dates
+ - 'time.formats.friendly' # used for formatting dates / times in a friendly way
+ - 'activerecord.errors.models.user_mute.attributes.subject.format' # used for formatting error message during validation in user_mute.rb
+ - 'activerecord.errors.models.user_mute.is_already_muted' # used as part of error message during validation in user_mute.rb
# - '{devise,kaminari,will_paginate}.*'
# - 'simple_form.{yes,no}'
# - 'simple_form.{placeholders,hints,labels}.*'
create: Skep versperring
update: Werk versperring by
activerecord:
- errors:
- messages:
- invalid_email_address: dit lyk nie of dit 'n geldige e-posadres is nie
- email_address_not_routable: is nie aanstuurbaar nie
models:
acl: Toegangsbeheerlys
changeset: Wysigingstel
comment:
comment: 'Nuwe opmerking oor wysigingstel #%{changeset_id} deur %{author}'
commented_at_by_html: '%{when} gelede deur %{user} opgedateer'
- comments:
- comment: 'Nuwe opmerking oor wysigingstel #%{changeset_id} deur %{author}'
show:
title_all: OpenStreetMap bespreking oor wysigingstelle
title_particular: 'OpenStreetMap wysigingstel #%{changeset_id} bespreking'
om op te spoor.
changesets:
changeset:
- anonymous: Anoniem
no_edits: (geen wysigings)
view_changeset_details: Beskou die wysigingstel se besonderhede
index:
report: Rapporteer hierdie kommentaar
location:
location: 'Ligging:'
- view: Beskou
- edit: Wysig
feed:
user:
title: OpenStreetMap-dagboekinskrywings vir %{user}
level9: Dorpsgrens
level10: Voorstedelike grens
level11: Buurtgrens
- types:
- cities: Stede
- towns: Dorpe
- places: Plekke
results:
no_results: Geen resultate gevind nie
more_results: Nog resultate
not_updated: Nie opgedateer nie
search: Soek
search_guidance: 'Deursoek probleme:'
- link_to_reports: Beskou verslae
states:
ignored: Geïgnoreer
open: Oop
greeting: Hallo,
changeset_comment_notification:
hi: Hallo %{to_user},
- greeting: Hallo,
commented:
partial_changeset_with_comment: met kommentaar '%{changeset_comment}'
partial_changeset_with_comment_html: met kommentaar '%{changeset_comment}'
remember: Onthou my
lost password link: Wagwoord vergeet?
login_button: Meld aan
- register now: Registreer nou
with external: 'Gebruik andersins ’n derde party om mee aan te meld:'
auth failure: Jammer, kon nie met hierdie inligting aanmeld nie.
destroy:
heading: Voorwaardes
heading_ct: Bydraervoorwaardes
continue: Gaan voort
- decline: Weier
legale_names:
france: Frankryk
italy: Italië
wikipedia_link: '%{page} artikulli nē Wikipedia'
changesets:
changeset:
- anonymous: Anonim
no_edits: (Nuk ka redaktimet)
view_changeset_details: Shikoni detajet changeset
index:
confirm: Konfirmo
location:
location: 'Lokacioni:'
- view: Kshyre
- edit: Ndrysho
feed:
user:
title: hyra OpenStreetMap ditar për %{user}
wadi: luginë
waterfall: Ujëvarë
weir: Pendë
- types:
- cities: Qytetet
- towns: Qytetet
- places: Places
results:
no_results: Nuk është gjetur asnjë rezultat
more_results: Më shumë rezultate
heading: rregullat për Pjesëmarrës
consider_pd: Unë e konsideroj kontributet e mia të jenë në domenin publik
consider_pd_why: çka o kjo?
- decline: Mos prano
legale_select: 'Ju lutem zgjidhni vendin tuaj të banimit:'
legale_names:
france: Franca
update: تحديث المنع
activerecord:
errors:
- messages:
- invalid_email_address: لا يبدو أنه عنوان بريد إلكتروني صالح
- email_address_not_routable: غير قابل للتوجيه
models:
user_mute:
is_already_muted: تمت كتم الصوت بالفعل
comment:
comment: 'تعليق جديد على مجموعة التغيير #%{changeset_id} بواسطة %{author}'
commented_at_by_html: تم التحديث %{when} بواسطة %{user}
- comments:
- comment: 'تعليق جديد على مجموعة التغيير #%{changeset_id} بواسطة %{author}'
show:
title_all: مناقشة مجموعة تغيير خريطة الشارع المفتوحة
title_particular: مناقشة مجموعة تغيير خريطة الشارع المفتوحة %{changeset_id}
طويلا لاستردادها.
changesets:
changeset:
- anonymous: مجهول
no_edits: (لا تعديلات)
view_changeset_details: اعرض تفاصيل حزمة التغييرات
index:
title: تغييرات %{id}
created_by_html: تم إنشاؤه بواسطة %{link_user} على %{created}.
no_such_entry:
- title: لا يوجد مثل هذه التغييرات
heading: 'لا يوجد إدخال بالمعرف: %{id}'
body: عذرًا، لا يوجد مجموعة تغيير بالمعرف %{id}. يرجى التحقق من الإملاء، أو
ربما الرابط الذي قمت بالنقر عليه خاطئ.
report: أبلغ عن هذا التعليق
location:
location: 'الموقع:'
- view: اعرض
- edit: تعديل
feed:
user:
title: مدخلات يومية خريطة الشارع المفتوحة للمستخدم ل%{user}
level9: حدود قرية
level10: حدود الضاحية
level11: حدود الحي
- types:
- cities: مدن
- towns: مدن
- places: أماكن
results:
no_results: لم يتم العثور على نتائج
more_results: المزيد من النتائج
not_updated: لم يتم تحديثه
search: البحث
search_guidance: 'بحث عن مشاكل:'
- link_to_reports: عرض البلاغات
states:
ignored: تم تجاهله
open: فتح
details_html: يمكن العثور على مزيد من التفاصيل حول الملاحظة على %{url}.
changeset_comment_notification:
hi: أهلا %{to_user}،
- greeting: مرحبا،
commented:
subject_own: '[خريطة الشارع المفتوحة] علق %{commenter} على على إحدى مجموعات
تغييراتك'
remember: تذكرني
lost password link: أنسيت كلمة المرور؟
login_button: تسجيل الدخول
- register now: سجل حسابًا الآن
with external: 'بدلا من ذلك، استخدم طرفا ثالثا لتسجيل الدخول:'
auth failure: آسف، لا يمكن الدخول بتلك التفاصيل.
destroy:
header: حًرَّة وقابلة للتحرير
display name description: اسم المستخدم الخاص بك الظاهر علنًا، يمكنك تغيير هذا
في التفضيلات في وقت لاحق.
- external auth: 'مصادقة طرف ثالث:'
continue: أنشئ حسابًا
terms accepted: نشكرك على قبول شروط المساهم الجديدة!
use external auth: 'بدلا من ذلك، استخدم طرفا ثالثا لتسجيل الدخول:'
consider_pd_why: ما هذا؟
consider_pd_why_url: https://www.osmfoundation.org/wiki/License/Why_would_I_want_my_contributions_to_be_public_domain
continue: استمر
- decline: أرفض
you need to accept or decline: الرجاء القراءة ومن ثم قبول أو رفض شروط المساهمة
الجديدة للمتابعة.
legale_select: 'بلد الإقامة:'
tags: الوسوم
changesets:
changeset:
- anonymous: مجهول
no_edits: (لا تعديلات)
view_changeset_details: اعرض تفاصيل حزمه التغييرات
index:
stream: جدول
wadi: وادي
waterfall: شلال
- types:
- cities: مدن
- towns: بلدات
- places: أماكن
results:
no_results: لم يتم العثور على نتائج
layouts:
create: Crear un bloquéu
update: Actualizar el bloquéu
activerecord:
- errors:
- messages:
- invalid_email_address: nun paez que sía una dirección de corréu electrónicu
- válida.
- email_address_not_routable: nun ye enrutable
models:
acl: Llista de Control d'Accesu
changeset: Conxuntu de cambeos
comment: 'Comentariu nuevu sobro''l conxuntu de cambios #%{changeset_id} de
%{author}'
commented_at_by_html: Anovao %{when} por %{user}
- comments:
- comment: 'Comentariu nuevu sobro''l conxuntu de cambios #%{changeset_id} de
- %{author}'
show:
title_all: Alderique del conxuntu de cambeos d'OpenStreetMap
title_particular: 'Alderique del conxuntu de cambeos #%{changeset_id} d''OpenStreetMap'
cambeos que pidisti.
changesets:
changeset:
- anonymous: Anónimu
no_edits: (ensin ediciones)
view_changeset_details: Ver detalles del conxuntu de cambeos
index:
report: Informar d'esti comentariu
location:
location: 'Allugamientu:'
- view: Ver
- edit: Editar
feed:
user:
title: Entraes nel diariu d'OpenStreetMap de %{user}
level8: Frontera de ciudá
level9: Frontera de villa
level10: Frontera de barriu
- types:
- cities: Ciudaes
- towns: Villes
- places: Llugares
results:
no_results: Nun s'alcontraron resultaos
more_results: Más resultaos
not_updated: Ensin anovar
search: Buscar
search_guidance: 'Buscar problemes:'
- link_to_reports: Ver los informes
states:
ignored: Inoráu
open: Abrir
details: Pue alcontrar más detalles sobro la nota en %{url}.
changeset_comment_notification:
hi: Bones %{to_user},
- greeting: Bones,
commented:
subject_own: '[OpenStreetMap] %{commenter} comentó unu de los tos conxuntos
de cambios'
remember: Recordame
lost password link: ¿Perdisti la contraseña?
login_button: Entrar
- register now: Rexistrate agora
with external: 'Alternativamente, usa un terceru p''aniciar sesión:'
auth failure: Sentímoslo, nun se pudo coneutar al sistema con esos datos.
destroy:
header: Llibre y editable
display name description: El nome d'usuariu que s'amuesa en público. Pue camudalo
más sero nes preferencies.
- external auth: 'Autenticación con un terceru:'
continue: Date d'alta
terms accepted: ¡Gracies por aceutar les condiciones de collaboración!
use external auth: Alternativamente, usa un terceru p'aniciar sesión
consider_pd_why: ¿qué ye esto?
consider_pd_why_url: https://www.osmfoundation.org/wiki/License/Why_would_I_want_my_contributions_to_be_public_domain
continue: Siguir
- decline: Refugar
you need to accept or decline: Por favor, llei y aceuta o refuga les nueves
Condiciones de Collaboración pa siguir.
legale_select: 'Seleiciona el to país de residencia:'
wikipedia_link: Vikipediyada %{page} məqaləsi
changesets:
changeset:
- anonymous: Anonim
no_edits: (redaktə yoxdur)
view_changeset_details: Dəyişikliklər dəstinin ətraflı görüntüsü
index:
confirm: Təsdiq etmək
location:
location: 'Yerləşdiyi yer:'
- view: Görünüş
- edit: Redaktə
feed:
user:
title: '%{user} üçün OpenStreetMap gündəlik yazıları'
level8: Şəhər sərhəddi
level9: Kənd sərhəddi
level10: Məhəllə sərhəddi
- types:
- cities: Şəhərlər
- towns: Şəhər qəsəbələri
- places: Yerlər
results:
no_results: Nəticələr tapılmadı
more_results: Daha çox nəticə
password: 'Parol:'
remember: Məni xatırla
login_button: Daxil ol
- register now: İndi qeydiyyatdan keç
with external: 'Alternativ olaraq, daxil olmaq üçün üçüncü tərəfdən istifadə
edin:'
destroy:
continue: Davam et
terms:
consider_pd_why: bu nədir?
- decline: İmtina
legale_names:
france: Fransa
italy: İtaliya
activerecord:
errors:
messages:
- invalid_email_address: Ысын электрон почта адресына оҡшамаған
- email_address_not_routable: йүнәлешле түгел
display_name_is_user_n: use_n була алмай, әгәр n һеҙҙең ҡулланыусы идентификаторығыҙ
булмаһа.
models:
comment:
comment: '%{author} тарафынан төҙәтмәләр пакетына %{changeset_id} яңы комментарий'
commented_at_by_html: Яңыртылған %{when} ҡулланыусы %{user} тарафынан
- comments:
- comment: '%{author} тарафынан төҙәтмәләр пакетына %{changeset_id} яңы комментарий'
show:
title_all: OpenStreetMap төҙәтмәләр пакеты буйынса фекерләшеү
title_particular: ' OpenStreetMap #%{changeset_id} төҙәтмәләр пакеты буйынса
күп ваҡыт талап итә.
changesets:
changeset:
- anonymous: Аноним
no_edits: (төҙәтеүҙәр юҡ)
view_changeset_details: Төҙәтеүҙәр пакетының тәфсирен ҡарап сығырға
index:
title: Үҙгәртеүҙәр йыйылмаһы %{id}
created_by_html: '%{created} көндө %{link_user} тарафынан булдырылған.'
no_such_entry:
- title: Бындай үҙгәртеүҙәр йыйылмаһы юҡ
heading: '%{id} һанлы яҙма табылманы'
body: Ғәфү итегеҙ, %{id} һанлы үҙгәртеүҙәр йыйылмаһы юҡ. Яҙыуығыҙҙы тикшерегеҙ
йәки бәлки һеҙ баҫҡан һылтанма дөрөҫ түгелдер.
report: Был комментарий тураһында хәбәр итеү
location:
location: Урын
- view: Ҡарау
- edit: Төҙәтмә
feed:
user:
title: '%{user} OpenStreetMap көндәлеге яҙмаһы'
level9: Ауыл сиге
level10: Ҡала яны, сите сиге
level11: Күршелек сиге
- types:
- cities: Ҡалалар
- towns: Ҡаласыҡтар
- places: Урындар
results:
no_results: Бер нимә лә табылманы
more_results: Күберәк һөҙөмтәләр
not_updated: Яңыртылмаған
search: Эҙләү
search_guidance: 'Проблемаларҙы эҙләү:'
- link_to_reports: Отчеттарҙы ҡарау
states:
ignored: Иғтибарһыҙ ҡалдырылған
open: Асыҡ
activerecord:
errors:
messages:
- invalid_email_address: не падобны на карэктны адрас э-пошты
- email_address_not_routable: не маршрутызаваны
display_name_is_user_n: ня можа быць user_n, калі n — ня ваш карыстальніцкі
id
models:
enclosing: Навакольныя аб’екты
changesets:
changeset:
- anonymous: Ананім
no_edits: (без рэдагаваньняў)
view_changeset_details: Паказаць падрабязнасьці набору зьменаў
index:
confirm: Пацьвердзіць
location:
location: 'Месцазнаходжаньне:'
- view: Паказаць
- edit: Рэдагаваць
feed:
user:
title: Запісы ў дзёньніку OpenStreetMap карыстальніка %{user}
wadi: Сухое рэчышча
waterfall: Вадаспад
weir: Плаціна
- types:
- cities: Гарады
- towns: Гарады
- places: Месцы
results:
no_results: Нічога ня знойдзена
more_results: Больш вынікаў
remember: Запомніць мяне
lost password link: Забылі пароль?
login_button: Увайсьці
- register now: Зарэгістравацца зараз
auth failure: Прабачце, немагчыма ўвайсьці з такім адрасам і паролем.
destroy:
title: Выйсьці
consider_pd: У дадатак да прыведзенага вышэй, я пацьвярджаю, што мой унёсак
знаходзіцца ў грамадзкім набытку
consider_pd_why: што гэта?
- decline: Адхіліць
you need to accept or decline: Калі ласка, прачытайце, а потым згадзіцеся ці
адхіліце новыя ўмовы супрацоўніцтва для працягу.
legale_select: 'Калі ласка, выберыце сваю краіну пражываньня:'
activerecord:
errors:
messages:
- invalid_email_address: не падобны на карэктны адрас электроннай пошты
- email_address_not_routable: немагчыма пракласці маршрут
display_name_is_user_n: не можа быць user_n, калі n не з’яўляецца вашым ідэнтыфікатарам
карыстальніка
models:
comment:
comment: Новы каментар на пакет правак %{changeset_id} ад %{author}
commented_at_by_html: Абноўлена %{when} удзельнікам %{user}
- comments:
- comment: Новы каментар на пакет правак %{changeset_id} ад %{author}
show:
title_all: Абмеркаванне пакета правак OpenStreetMap
title_particular: 'Абмеркаванне пакета правак OpenStreetMap #%{changeset_id}'
атрымання.
changesets:
changeset:
- anonymous: Ананімны
no_edits: (без змен)
view_changeset_details: Падрабязней пра пакет правак
index:
title: Набор змен %{id}
created_by_html: Створана %{link_user} %{created}.
no_such_entry:
- title: Няма такіх змяненняў
heading: 'Няма запісу з нумарам: %{id}'
body: На жаль, няма змяненняў з нумарам %{id}. Калі ласка, праверце, ці карэктна
уведзены нумар, або магчыма вам далі няслушную спасылку.
report: Паскардзіцца на гэты каментар
location:
location: 'Месца:'
- view: Прагляд
- edit: Правіць
coordinates: '%{latitude}; %{longitude}'
feed:
user:
level9: Мяжа раёну н/п
level10: Мяжа прыгараду
level11: Мяжа суседства
- types:
- cities: Гарады
- towns: Мястэчкі
- places: Месцы
results:
no_results: Нічога не знойдзена
more_results: Больш вынікаў
not_updated: Не абнаўлялася
search: Пошук
search_guidance: 'Пошук праблем:'
- link_to_reports: Глядзець скаргі
states:
ignored: Праігнаравана
open: Адкрыта
changeset_comment_notification:
description: Набор зменаў OpenStreetMap №%{id}
hi: Прывітанне, %{to_user},
- greeting: Прывітанне,
commented:
subject_own: '[OpenStreetMap] %{commenter} пракаментаваў адзін з вашых набораў
зменаў'
remember: Памятаць мяне
lost password link: Згубілі пароль?
login_button: Увайсці
- register now: Зарэгістравацца зараз
with external: або ўвайдзіце ў сістэму з дапамогай пабочнага сэрвісу
or: або
auth failure: Прабачце, немагчыма увайсці з такім адрасам і паролем.
і %{contributor_terms_link}.
privacy_policy: палітыкай прыватнасці
contributor_terms: умовамі ўдзелу
- tou: умовамі карыстання
- external auth: 'Аўтэнтыфікацыя праз:'
continue: Зарэгістравацца
terms accepted: Дзякуй за прыняцце новых умоў ўдзелу!
email_help:
consider_pd_why: што гэта?
consider_pd_why_url: https://www.osmfoundation.org/wiki/License/Why_would_I_want_my_contributions_to_be_public_domain
continue: Працягнуць
- decline: Адхіліць
you need to accept or decline: Калі ласка, прачытайце, а потым згадзіцеся ці
адхіліце новыя ўмовы супрацоўніцтва для працягу.
legale_select: 'Краіна пражывання:'
create: Създаване на блок
update: Обновяване на блок
activerecord:
- errors:
- messages:
- invalid_email_address: не изглежда действителен адрес на електронна поща
- email_address_not_routable: е недостъпен
models:
acl: Списък за контрол на достъпа
changeset: Списък с промени
comment:
comment: Нов коментар към списък с промени № %{changeset_id} на %{author}
commented_at_by_html: Обновен преди %{when} от %{user}
- comments:
- comment: Нов коментар към списък с промени № %{changeset_id} на %{author}
show:
title_all: Дискусия за промяна на OpenStreetMap
title_particular: 'Разговор за промяната #%{changeset_id} на OpenStreetMap'
зарежда твърде дълго.
changesets:
changeset:
- anonymous: Анонимен
no_edits: (без промяна)
view_changeset_details: Подробности за списъка с промени
index:
report: Докладване на коментара
location:
location: 'Местоположение:'
- view: Преглеждане
- edit: Променяне
feed:
user:
title: OpenStreetMap дневник записи за %{user}
level8: Граница на землище
level9: Граница на селото
level10: Граница на предградията
- types:
- cities: Градове
- towns: Градове
- places: Места
results:
no_results: Не бяха открити резултати
more_results: Повече резултати
reported_user: Докладван потребител
search: Търсене
search_guidance: 'Търсете за проблеми:'
- link_to_reports: Преглед на докладите
states:
ignored: Пренебрегнат
open: Отворен
details: Отговорете или прочетете повече за бележката на адрес %{url}.
changeset_comment_notification:
hi: Здравейте %{to_user},
- greeting: Здравейте,
commented:
commented_changeset: '%{commenter} е оставил коментар в %{time} към промените,
които наблюдавате, създадени от %{changeset_author}'
remember: Запомняне
lost password link: Забравена парола?
login_button: Влизане
- register now: Регистрирайте се
with external: 'Или използвайте удостоверяване от външен източник:'
auth failure: Съжаляваме, но не можете да влезете с тези данни.
destroy:
paragraph_1: За разлика от други карти, OpenStreetMap е изцяло създадена от
хора като Вас и е безплатна за всеки, който иска да я поправи, актуализира,
изтегли и използва.
- external auth: 'Удостоверяване от външен източник:'
continue: Регистриране
terms accepted: Благодарим Ви, че приемате новите условия за сътрудничество!
use external auth: Или използвайте удостоверяване от външен източник
heading_ct: Условия за сътрудничество
consider_pd_why: какво е това?
continue: Продължаване
- decline: Отхвърли
you need to accept or decline: За да продължите, моля, прочетете, а след това
се съгласете или откажете новите условия за сътрудничество.
legale_select: 'Държава на пребиваване:'
create: বাধা তৈরি করুন
update: বাধা হালনাগাদ করুন
activerecord:
- errors:
- messages:
- invalid_email_address: কোনও বৈধ ইমেল ঠিকানা বলে মনে হচ্ছে না
- email_address_not_routable: রাউটের যোগ্য নয়
models:
acl: প্রবেশাধিকার নিয়ন্ত্রণ তালিকা
changeset: পরিবর্তনসমূহ
longitude: দ্রাঘিমাংশ
public: সার্বজনীন
description: বিবরণ
- gpx_file: à¦\9cিপিà¦\8fà¦\95à§\8dস ফাà¦\87ল à¦\86পলà§\8bড করুন
+ gpx_file: à¦\9cিপিà¦\8fস à¦\9fà§\8dরà§\87স ফাà¦\87ল নিরà§\8dবাà¦\9aন করুন
visibility: দৃষ্টিযোগ্যতা
tagstring: ট্যাগসমূহ
message:
comment:
comment: '%{author} কর্তৃক পরিবর্তনধার্য #%{changeset_id} এ নতুন মন্তব্য'
commented_at_by_html: '%{user} কর্তৃক %{when} হালনাগাদকৃত'
- comments:
- comment: '%{author} কর্তৃক পরিবর্তনধার্য #%{changeset_id} এ নতুন মন্তব্য'
show:
title_all: ওপেনস্ট্রিটম্যাপ পরিবর্তনধার্যের আলোচনা
title_particular: 'ওপেনস্ট্রিটম্যাপ পরিবর্তনধার্য #%{changeset_id} আলোচনা'
খুব বেশি সময় লেগেছে।
changesets:
changeset:
- anonymous: বেনামী ব্যবহারকারী
no_edits: (কোনো সম্পাদনা নেই)
view_changeset_details: পরিবর্তনধার্যের বিস্তারিত দেখুন
index:
report: এই মন্তব্যের বিরুদ্ধে অভিযোগ করুন
location:
location: 'অবস্থান:'
- view: দেখুন
- edit: সম্পাদনা
feed:
user:
title: ওপেনস্ট্রিটম্যাপে %{user}-এর দিনলিপির ভুক্তি
level8: নগরের সীমান
level9: গ্রামের সীমানা
level10: উপনগরের সীমানা
- types:
- cities: নগর
- towns: শহর
- places: স্থান
results:
no_results: ফলাফল খুঁজে পাওয়া যায়নি
more_results: আরও ফলাফল
select_status: স্থিতি নির্বাচন করুন
select_type: প্রকার নির্বাচন করুন
search: অনুসন্ধান
- link_to_reports: প্রতিবেদনসমূহ দেখুন
states:
open: খুলুন
resolved: মীমাংসিত
details: টীকাটি সম্পর্কে আরও বিস্তারিত %{url} এ পাওয়া যাবে।
changeset_comment_notification:
hi: সুপ্রিয় %{to_user},
- greeting: সুপ্রিয়,
commented:
partial_changeset_without_comment: মন্তব্যহীন
details: পরিবর্তনধার্য সম্পর্কে আরও বিস্তারিত %{url} এ পাওয়া যাবে।
remember: আমাকে মনে রাখো
lost password link: পাসওয়ার্ড ভুলে গেছেন?
login_button: প্রবেশ করুন
- register now: এখনই নিবন্ধন করুন
auth failure: দুঃখিত, এই তথ্য দিয়ে প্রবেশ করানো যাচ্ছে না।
destroy:
title: প্রস্থান
station: রেল স্টেশন
peak: শৃঙ্গ
bus_stop: বাস স্টপ
- stop: স্টপ
bicycle_shop: সাইকেলের দোকান
bicycle_rental: সাইকেল ভাড়া
bicycle_parking: সাইকেল পার্কিং
header: মুক্ত ও সম্পাদনাযোগ্য
by_signing_up:
privacy_policy: গোপনীয়তার নীতি
- tou: ব্যবহারের শর্তাবলী
continue: নিবন্ধন করুন
terms accepted: নতুন অবদানকারী শর্তাবলী গ্রহণ করার জন্য ধন্যবাদ!
email_help:
consider_pd_why: এটি কী?
informal_translations: অনানুষ্ঠানিক অনুবাদ
continue: অব্যাহত রাখুন
- decline: প্রত্যাখ্যান করুন
+ cancel: বাতিল
you need to accept or decline: অনুগ্রহ করে পড়ুন এবং তারপরে চালিয়ে যেতে নতুন
অবদানকারীর শর্তাবলী স্বীকার করুন বা প্রত্যাখ্যান করুন।
legale_select: 'আপনার দেশ বাছাই করুন:'
activerecord:
errors:
messages:
- invalid_email_address: ne ziskouez ket bezañ ur chomlec'h postel mat
- email_address_not_routable: n'haller ket routañ
display_name_is_user_n: n'hall ket bezañ user_n nemet hag e vefe "n" ho kod
anaout implijer
models:
comment: 'Evezhiadenn nevez diwar-benn an hollad cheñchamantoù #%{changeset_id}
gant %{author}'
commented_at_by_html: Hizivaet %{when} gant %{user}
- comments:
- comment: Evezhiadenn nevez war an hollad cheñchamantoù %{changeset_id} gant
- %{author}
show:
title_all: Kaozeadenn hollad cheñchamantoù OpenStreetMap
title_particular: 'Kaozeadenn hollad cheñchamantoù #%{changeset_id} OpenStreetMap'
sorry: Ho tigarez, re hir eo adtapout ar roll evezhiadennoù ho peus goulennet.
changesets:
changeset:
- anonymous: Dizanv
no_edits: (aozadenn ebet)
view_changeset_details: Gwelet munudoù an hollad cheñchamantoù
index:
title: Hollad cheñchamantoù %{id}
created_by_html: Bet krouet gant %{link_user} d'an %{created}.
no_such_entry:
- title: N'eus ket eus an hollad cheñchamantoù-mañ
heading: 'Enmont ebet gant an id: %{id}'
show:
title: 'Hollad cheñchamantoù: %{id}'
report: Signaliñ an evezhiadenn-mañ
location:
location: 'Lec''hiadur:'
- view: Diskwel
- edit: Aozañ
coordinates: '%{latitude} ; %{longitude}'
feed:
user:
level9: Bevenn ar gumun
level10: Bevenn ar bannlev
level11: Harzoù amezegezh
- types:
- cities: Keodedoù
- towns: Kêrioù
- places: Lec'hioù
results:
no_results: N'eus bet kavet respont ebet
more_results: Disoc'hoù all
not_updated: Nann hizvivaet
search: Klask
search_guidance: 'Kudennoù enklask :'
- link_to_reports: Gwelet an danevelloù
states:
ignored: Lezet a-gostez
open: Digor
changeset_comment_notification:
description: 'Hollad cheñchamantoù OpenStreetMap #%{id}'
hi: Demat %{to_user},
- greeting: Demat,
commented:
subject_own: '[OpenStreetMap] %{commenter} en deus addispleget unan eus ho
kemmoù'
remember: Derc'hel soñj ac'hanon
lost password link: Ankouaet ho ker-tremen ganeoc'h ?
login_button: Kevreañ
- register now: En em enskrivañ bremañ
with external: 'pe kevreit gant un tredeour:'
or: pe
auth failure: Ho tigarez, met n'eus ket bet gallet hoc'h anavezout gant an titouroù
destination: Moned d'ar pal
construction: Hentoù war ar stern
bus_stop: Arsav karr-boutin
- stop: Arsav
bicycle_shop: Stal varc'hoù-houarn
bicycle_rental: Stal feurmiñ marc'hoù-houarn
bicycle_parking: Parklec'h belioù
by_signing_up:
privacy_policy: reolennoù prevezded
contributor_terms: reolennoù ar genlabourerien
- tou: Termenoù implijout
- external auth: 'Dilesadur trede :'
continue: En em enskrivañ
terms accepted: Trugarez deoc'h evit bezañ asantet da ziferadennoù nevez ar
c'henlabourer !
readable_summary: diverrañ a c'hall bezañ lennet gant tud
informal_translations: troidigezhioù diofisiel
continue: Kenderc'hel
- decline: Nac'h
you need to accept or decline: Lennit da gentañ Termenoù ar berzhidi nevez ha
goude-se nac'hit pe asantit evit gallout kenderc'hel.
legale_select: 'Mar plij diuzit ar vro e lec''h m''emaoc''h o chom :'
create: Napraviti blokadu
update: Osvježiti blokadu
activerecord:
- errors:
- messages:
- invalid_email_address: ne izgleda kao važeća adresa e-pošte
models:
acl: Kontrole pristupa
changeset: Set promjena
enclosing: Značajke okruženja
changesets:
changeset:
- anonymous: Anonimno
no_edits: (nema izmjena)
view_changeset_details: Pregled detalja o setu promjena
index:
confirm: Potvrditi
location:
location: 'Lokacija:'
- view: Pogledati
- edit: Uredi
feed:
user:
title: Unosi u OpenStreetMap dnevnik za korisnika %{user}
level8: Granica grada
level9: Granica sela
level10: Granica predgrađa
- types:
- cities: Gradovi
- towns: Manji gradovi
- places: Mjesta
results:
no_results: Nema pronađenih rezultata
more_results: Više rezultata
commented:
subject_own: '[OpenStreetMap] %{commenter} je dao komentar na jednu od tvojih
bilješki.'
- changeset_comment_notification:
- greeting: Zdravo,
confirmations:
confirm:
heading: Provjerite vaš email!
remember: Zapamti me
lost password link: Izgubili ste lozinku?
login_button: Prijava
- register now: Registrirajte se sada
auth failure: Žao mi je, ne možemo Vas prijaviti s ovim detaljima.
destroy:
title: Odjava
consider_pd: Osim gore navedenog ugovora, smatram da su moji doprinosi u javnom
vlasništvu (Public Domain)
consider_pd_why: Šta je ovo?
- decline: Odbiti
you need to accept or decline: Molimo pročitajte i onda ili prihvatite ili odbijte
nove Uslove za doprinosioce da bi ste nastavili.
legale_select: 'Molimo odaberite Vašu zemlju prebivališta:'
update: Actualitza el bloc
activerecord:
errors:
- messages:
- invalid_email_address: no sembla que sigui una adreça electrònica vàlida
- email_address_not_routable: no és routable
models:
user_mute:
is_already_muted: ja està silenciat
way: via
relation: relació
start_rjs:
- feature_warning: Carregant %{num_features} característiques que poden fer que
- el vostre navegador funcioni més lent o que no respongui. Voleu mostrar aquestes
- dades de tota manera?
+ feature_warning: S'estan carregant %{num_features} característiques que poden
+ fer que el vostre navegador funcioni més lent o que no respongui. Voleu mostrar
+ aquestes dades de tota manera?
load_data: Carregar dades
loading: S'està carregant...
tag_details:
comment:
comment: 'Nou comentari al conjunt de canvis #%{changeset_id} de %{author}'
commented_at_by_html: Actualitzat a %{when} per %{user}
- comments:
- comment: 'Nou comentari de %{author} al conjunt de canvis #%{changeset_id}'
show:
title_all: Debat sobre els conjunts de canvis d'OpenStreetMap
title_particular: 'Debat sobre el conjunt de canvis #%{changeset_id} d''OpenStreetMap'
trigat massa a recuperar-se.
changesets:
changeset:
- anonymous: Anònim
no_edits: (no hi ha cap edició)
view_changeset_details: Mostra els detalls del conjunt de canvis
index:
report: Denuncia aquest comentari
location:
location: 'Ubicació:'
- view: Mostra
- edit: Editar
feed:
user:
title: Entrades de diari d'OpenStreetMap de %{user}
level9: Límit inframunicipal (nivell 9)
level10: Límit de suburbi-barri (nivell 10)
level11: Límit del veïnat
- types:
- cities: Ciutats
- towns: Viles
- places: Llocs
results:
no_results: Cap resultat trobat
more_results: Més resultats
not_updated: No actualitzat
search: Cerca
search_guidance: 'Cercar incidències:'
- link_to_reports: Veure les denúncies
states:
ignored: Ignorat
open: Obert
La nota és a prop de %{place}.'
commented_note_html: '%{commenter} ha reactivat una nota de mapa que havíeu
comentat. La nota és a prop de %{place}.'
- details: Podeu trobar més detalls de la nota a %{url}.
- details_html: Podeu trobar més detalls de la nota a %{url}.
+ details: Responeu o informeu-vos més sobre la nota a %{url}.
+ details_html: Responeu o informeu-vos més sobre la nota a %{url}.
changeset_comment_notification:
hi: Hola %{to_user},
- greeting: Hola,
commented:
subject_own: '[OpenStreetMap] %{commenter} ha comentat un dels vostres conjunts
de canvis'
partial_changeset_with_comment: amb comentari '%{changeset_comment}'
partial_changeset_with_comment_html: amb el comentari '%{changeset_comment}'
partial_changeset_without_comment: cap comentari
- details: Podeu trobar més detalls del conjunt de canvis a %{url}
- details_html: Podeu trobar més detalls del conjunt de canvis a %{url}.
+ details: Responeu o informeu-vos més sobre el conjunt de canvis a %{url}.
+ details_html: Responeu o informeu-vos més sobre el conjunt de canvis a %{url}.
unsubscribe: Podeu deixar de seguir les actualitzacions d'aquest conjunt de
canvis a %{url}.
unsubscribe_html: Podeu deixar de seguir les actualitzacions d'aquest conjunt
failure: No s'ha pogut actualitzar el perfil.
sessions:
new:
- title: Inicia la sessió
- tab_title: Inicia la sessió
+ title: Inicieu la sessió
+ tab_title: Inicieu la sessió
email or username: Adreça de correu o nom d'usuari
password: Contrasenya
remember: Recorda'm
lost password link: Heu perdut la contrasenya?
- login_button: Accés
- register now: Registreu-vos-hi ara
- with external: Alternativament, inicieu una sessió mitjançant un tercer
+ login_button: Inicieu la sessió
+ with external: o inicieu la sessió mitjançant un tercer
+ or: o
auth failure: No podeu iniciar la sessió amb aquesta informació.
destroy:
title: Surt
image: Imatge
alt: Text alternatiu
url: URL
+ codeblock: Bloc de codi
richtext_field:
edit: Edita
preview: Previsualitza
+ help: Ajuda
pagination:
diary_comments:
older: Comentaris més antics
legal_2_1_html: '%{contact_the_osmf_link} si teniu qüestions sobre la llicència,
copyright o altres temes legals.'
legal_2_1_contact_the_osmf: Contacteu amb l'OSMF
- legal_2_2_html: OpenStreetMap, el logo de la lupa i Estat del Mapa són %{registered_trademarks_link}.
+ legal_2_2_html: OpenStreetMap, el logotip de la lupa i Estat del Mapa són %{registered_trademarks_link}.
legal_2_2_registered_trademarks: marca registrada de l'OSMF
partners_title: Socis
copyright:
infringement_2_1_takedown_procedure: procediment de retirada
infringement_2_1_online_filing_page: pàgina del formulari en línia
trademarks_title: Marques registrades
- trademarks_1_1_html: OpenStreetMap, el logo de la lupa i Estat del Mapa són
- marques registrades de la Fundació OpenStreetMap. Si teniu dubtes sobre
+ trademarks_1_1_html: OpenStreetMap, el logotip de la lupa i Estat del Mapa
+ són marques registrades de la Fundació OpenStreetMap. Si teniu dubtes sobre
l'ús de les marques, vegeu %{trademark_policy_link}.
trademarks_1_1_trademark_policy: Polítiques de marca registrada
index:
destination: Servitud de pas
construction: Carreteres en construcció
bus_stop: Parada d'autobús
- stop: Parada
bicycle_shop: Botiga de bicicletes
bicycle_rental: Lloguer de bicicletes
bicycle_parking: Aparcament de bicicletes
muted_users: Usuaris silenciats
auth_providers:
openid:
- title: Inicia sessió amb un compte OpenID
- alt: Inicia sessió amb un URL d'OpenID
+ title: Inicieu sessió amb un compte OpenID
+ alt: Logotip d'OpenID
google:
title: Inicieu la sessió amb Google
- alt: Inicieu la sessió amb un compte OpenID de Google
+ alt: Logotip de Google
facebook:
title: Inicieu la sessió amb Facebook
- alt: Inicieu la sessió amb un compte de Facebook
+ alt: Logotip de Facebook
microsoft:
- title: Inicieu la sessió amb Windows
- alt: Inicieu de sessió amb un compte de Windows
+ title: Inicieu la sessió amb Microsoft
+ alt: Logotip de Microsoft
github:
title: Inicieu la sessió amb GitHub
- alt: Inicieu la sessió amb un compte de GitHub
+ alt: Logotip de GitHub
wikipedia:
title: Inicieu la sessió amb Viquipèdia
- alt: Inicieu la sessió amb un compte de Viquipèdia
+ alt: Logotip de Viquipèdia
oauth:
permissions:
missing: No heu permès l'accés de l'aplicació a aquesta característica
title: Les meves aplicacions autoritzades
application: Aplicació
permissions: Permisos
+ last_authorized: Últims autoritzats
no_applications_html: Encara no heu autoritzat cap aplicació %{oauth2}.
application:
revoke: Revoca l'accés
users:
new:
title: Registreu-vos-hi
+ tab_title: Registreu-vos
+ signup_to_authorize_html: Registreu-vos amb OpenStreetMap per accedir a %{client_app_name}.
no_auto_account_create: No us podem crear un compte automàticament.
please_contact_support_html: Contacteu amb l'%{support_link} per gestionar la
creació d'un compte - intentarem tractar la sol·licitud tan aviat com sigui
possible.
support: assistència
about:
- header: Lliure i editable
+ header: Lliure i editable.
paragraph_1: A diferència d'altres mapes, OpenStreetMap està completament
creat per persones com tu, i és lliure per tal que qualsevol persona pugui
arreglar-lo, actualitzar-lo, descarregar-lo i utilitzar-lo.
- paragraph_2: Registreu-vos per començar a contribuir. Us enviarem un correu
- electrònic per confirmar el vostre compte.
+ paragraph_2: Registreu-vos per començar a contribuir.
+ welcome: Benvingut/da a OpenStreetMap
display name description: El nom d'usuari que es mostrarà públicament. El podeu
canviar més endavant a les preferències.
by_signing_up:
privacy_policy: política de privadesa
privacy_policy_title: Política de privadesa de l'OSMF incloent la secció sobre
adreces de correu electrònic
- external auth: 'Autenticació mitjançant tercers:'
+ contributor_terms: condicions de col·laboració
continue: Registreu-vos-hi
terms accepted: Gràcies per acceptar els nous termes de col·laboració.
email_help:
html: La vostra adreça no es mostrarà públicament, consulteu la nostra %{privacy_policy_link}
per obtenir més informació.
- use external auth: 'Alternativament, inicieu la sessió mitjançant un tercer:'
+ consider_pd: domini públic
+ or: o
+ use external auth: o inicieu la sessió mitjançant un tercer
terms:
title: Termes
heading: Termes
readable_summary: resum llegible per humans
informal_translations: traduccions informals
continue: Continua
- decline: Rebutja
you need to accept or decline: Per a poder continuar, llegiu i després accepteu
o rebutgeu els nous termes de col·laboració .
legale_select: 'País de residència:'
intro: Heu trobat un error o bé hi falta res? Informeu-ne a altres col·laboradors
per tal que puguin solucionar-ho. Moveu el marcador a la posició correcta
i escriviu-hi una anotació per tal de descriure el problema.
+ anonymous_warning_log_in: inicia la sessió
+ anonymous_warning_sign_up: registreu-vos
advice: La vostra nota és pública i pot utilitzar-se per actualitzar el mapa,
per tant, no hi introduïu cap informació personal, o informació de mapes amb
copyright o bé llistats de directori.
add: Afegeix una nota
notes_paging_nav:
showing_page: Pàgina %{page}
+ next: Següent
+ previous: Anterior
javascripts:
close: Tanca
share:
custom_dimensions: Estableix dimensions personalitzades
format: 'Format:'
scale: 'Escala:'
- image_dimensions: La imatge mostrarà la capa estàndard a %{width} x %{height}
+ image_dimensions: La imatge mostrarà la capa %{layer} amb una mida de %{width}
+ x %{height}
download: Descàrrega
short_url: URL curt
include_marker: Inclou el marcador
center_marker: Centra el mapa al marcador
paste_html: Enganxa l'HTML per inserir-ho a un lloc web
view_larger_map: Mostra un mapa més gran
- only_standard_layer: Només la capa estàndard es pot exportar com a imatge
+ only_standard_layer: Solament es poden exportar com a imatge les capes Standard,
+ Cycle Map i Transport
embed:
report_problem: Informeu sobre un problema
key:
activerecord:
errors:
messages:
- invalid_email_address: электронан поштан адресе тера дац
- email_address_not_routable: неъбиллина бац
display_name_is_user_n: user_n хила йиш йац, наггахь n хьан лелоша ID йацахь
models:
user_mute:
comment:
comment: '#%{changeset_id} %{author} керла коммент нисдаран пакет тIе'
commented_at_by_html: Карлайаккхина %{when} декъашхочо %{user}
- comments:
- comment: 'Керла комментари нисдаран пакет тIе #%{changeset_id} декъашхочо
- %{author}'
show:
title_all: OpenStreetMap тӀехь дина нисдарийн дийцар
title_particular: 'OpenStreetMap #%{changeset_id} тӀехь дина нисдарийн дийцар'
оьшу.
changesets:
changeset:
- anonymous: Аноним
no_edits: (нисдарш дац)
view_changeset_details: Нисдаршка мадарра хьажа
index:
title: 'Нисдарш: %{id}'
created_by_html: Кхоьлина %{link_user} on %{created}.
no_such_entry:
- title: Иштта хийцама пакет бац
heading: 'ДӀайазайина йац id: %{id}'
body: Бехк ма билла, id %{id} хийцамаш бац. Дехар ду, нийса йазийни хьажа, хьо
чоьха ваьла ссылка нийса ца хила а тарло.
report: ХӀокху комментах хаамбе
location:
location: 'Меттиг:'
- view: Хьажа
- edit: Нисдар
feed:
user:
title: Дневникийн дӀайаздарш OpenStreetMap цуна %{user}
level9: Йуртан доза
level10: ГӀалин йистан доза
level11: Лулахойн доза
- types:
- cities: ГӀаланаш
- towns: ГӀаланийн маттигаш
- places: Меттигаш
results:
no_results: ХӀума ца карийна
more_results: Кхин каринарш
not_updated: Карлайаккхин йац
search: Лахар
search_guidance: 'Проблемаш лахар:'
- link_to_reports: Хаамашка хьажа
states:
ignored: Игнорйина
open: Йиллина
changeset_comment_notification:
description: 'OpenStreetMap хийцаман гулам #%{id}'
hi: Маршалла ду %{to_user},
- greeting: Маршалла,
commented:
subject_own: '[OpenStreetMap] %{commenter} комментари йина хьан цхьана хийцаман
гуламна'
remember: Дагалаца со
lost password link: Йицйелла пароль?
login_button: ЧугӀо
- register now: ДӀадазло
with external: йа кхи сайтан агӀонца чувала
or: йа
auth failure: Бехк ма билла, цу цIарца йе парольца чувала аьтто ца баьлла.
destination: Ӏалашан тӀекхача
construction: Некъ бар
bus_stop: Автобус соцу меттиг
- stop: Сацо
bicycle_shop: Вилспетан туька
bicycle_rental: Вилспетан прокат
bicycle_parking: Вилспетан парковка
privacy_policy_title: OSMF къайленан политика, цу йукъахь электронан почтан
адресех лаьцна дакъа а
contributor_terms: дакъалацархочун хьелаш
- tou: Лелоран биллам
- external auth: 'Арахьара сайт аккаунтца:'
continue: Кхин дӀа
terms accepted: Баркалла хьуна, керла лелоран биллам тӀеэцарна!
email_help:
informal_translations: формалан доцу гочдар
continue: Кхин дӀа
declined: https://wiki.openstreetmap.org/wiki/Contributor_Terms_Declined?uselang=ce
- decline: Йухатоха
you need to accept or decline: Дехар ду, деша, тӀаккха реза хила йа йухатоха
керла дакъалацаран хьелаш.
legale_select: 'Дехар ду, шу деха пачхьалкх хьаржар:'
# Author: Paxt
# Author: Reaperman
# Author: Robins7
+# Author: ShaggyCZ - Main
# Author: Spotter
# Author: StenSoft
# Author: Tchoř
activerecord:
errors:
messages:
- invalid_email_address: není platná e-mailová adresa
- email_address_not_routable: není routovatelná
display_name_is_user_n: nemůže být user_n, pokud n není vaše ID uživatele
models:
user_mute:
longitude: Zeměpisná délka
public: Veřejná
description: Popis
- gpx_file: Nahrát GPX soubor
+ gpx_file: Vyberte soubor GPS trasování
visibility: Viditelnost
tagstring: Značky
message:
note: poznámka
timeout:
title: Vypršel časový limit
- sorry: Promiňte, ale načítání dat %{type} číslo %{id} trvalo příliš dlouho.
+ sorry: Promiňte, ale načítání dat %{type} s ID %{id} trvalo příliš dlouho.
type:
node: uzlu
way: cesty
introduction: Pro nalezení okolních prvků klikněte na mapu.
nearby: Okolní prvky
enclosing: Umístění prvku
+ nodes:
+ timeout:
+ sorry: Promiňte, ale načítání dat pro uzel s id %{id} trvalo příliš dlouho.
old_nodes:
not_found:
sorry: 'Je nám líto, ale verze %{version} uzlu #%{id} nebyla nalezena.'
+ timeout:
+ sorry: Promiňte, ale načítání historie uzlu s id %{id} trvalo příliš dlouho.
+ ways:
+ timeout:
+ sorry: Promiňte, ale načítání dat cesty s id %{id} trvalo příliš dlouho.
old_ways:
not_found:
sorry: 'Je nám líto, ale verze %{version} cesty #%{id} nebyla nalezena.'
+ timeout:
+ sorry: Promiňte, ale načítání historie cesty s id %{id} trvalo příliš dlouho.
+ relations:
+ timeout:
+ sorry: Promiňte, ale načítání dat relace s id %{id} trvalo příliš dlouho.
old_relations:
not_found:
sorry: 'Je nám líto, ale verze %{version} relace #%{id} nebyla nalezena.'
+ timeout:
+ sorry: Promiňte, ale načítání historie relace s id %{id} trvalo příliš dlouho.
changeset_comments:
feeds:
comment:
comment: '%{author} napsal nový komentář k sadě změn #%{changeset_id}'
commented_at_by_html: Aktualizováno %{when} uživatelem %{user}
- comments:
- comment: '%{author} napsal nový komentář k sadě změn #%{changeset_id}'
show:
title_all: Diskuse k sadě změn na OpenStreetMap
title_particular: 'Diskuse k sadě změn #%{changeset_id} na OpenStreetMap'
příliš dlouho.
changesets:
changeset:
- anonymous: Anonymní
no_edits: (žádné změny)
view_changeset_details: Zobrazit detaily sady změn
index:
title: Sada změn %{id}
created_by_html: Vytvořil uživatel %{link_user} %{created}.
no_such_entry:
- title: Taková sada změn neexistuje
heading: Záznam s ID %{id} neexistuje
body: Je nám líto, ale sada změn s ID %{id} neexistuje. Zkontrolujte překlepy
nebo jste možná klikli na chybný odkaz.
report: Nahlásit tento komentář
location:
location: 'Místo:'
- view: Zobrazit
- edit: Upravit
feed:
user:
title: Záznamy v OpenStreetMap deníku uživatele %{user}
level9: Hranice vesnice
level10: Hranice městské části
level11: Hranice sousedství
- types:
- cities: Velkoměsta
- towns: Města
- places: Místa
results:
no_results: Nenalezeny žádné výsledky
more_results: Další výsledky
not_updated: Neaktualizováno
search: Hledat
search_guidance: 'Hledat problémy:'
- link_to_reports: Zobrazit hlášení
states:
ignored: Ignorováno
open: Otevřeno
page:
user_not_found: Uživatel neexistuje
issues_not_found: Takové problémy nebyly nalezeny
+ reported_user: Nahlášený uživatel
status: Stav
reports: Hlášení
last_updated: Poslední změna
many: '%{count} Hlášení'
other: '%{count} Hlášení'
reported_item: Hlášená položka
+ states:
+ ignored: Ignorováno
+ open: Otevřeno
+ resolved: Vyřešeno
show:
title: '%{status} Problém #%{issue_id}'
reports:
údržbě mimo provoz.
osm_read_only: Databáze OpenStreetMap je momentálně kvůli probíhající neodkladné
údržbě pouze pro čtení.
+ nothing_to_preview: Není k čemu zobrazovat náhled.
help: Nápověda
about: O projektu
copyright: Autorská práva
befriend_them: Můžete si ho/ji také přidat jako přítele na %{befriendurl}.
befriend_them_html: Můžete si ho/ji také přidat jako přítele na %{befriendurl}.
gpx_description:
- description_with_tags_html: 'Vypadá to, že váš GPX soubor %{trace_name} s popisem
+ description_with_tags: 'Vypadá to, že váš soubor %{trace_name} s popisem %{trace_description}
+ a s těmito značkami: %{tags}'
+ description_with_tags_html: 'Vypadá to, že váš soubor %{trace_name} s popisem
%{trace_description} a s těmito značkami: %{tags}'
- description_with_no_tags_html: Vypadá to, že váš GPX soubor %{trace_name} s
- popisem %{trace_description} a bez značek
+ description_with_no_tags: Vypadá to, že váš soubor %{trace_name} s popisem %{trace_description}
+ a bez značek
+ description_with_no_tags_html: Vypadá to, že váš soubor %{trace_name} s popisem
+ %{trace_description} a bez značek
gpx_failure:
hi: Ahoj, %{to_user},
- failed_to_import: 'se nepodařilo nahrát. Chybové hlášení následuje:'
+ failed_to_import: 'se nepodařilo nahrát. Zkontrolujte si prosím, zda váš soubor
+ je platný soubor GPX nebo archiv obsahující GPX soubor(y) v podporovaném formátu
+ (.tar.gz, tar.bz2, .tar, .zip, .gpx.gz, .gpx.bz2). Možná je u vašeho souboru
+ problém s formátem nebo syntaxí? Zde je chyba importu:'
+ more_info: Více informací o chybách při importu GPX a jak se jim vyhnout, najdete
+ na %{url}.
more_info_html: Více informací o chybách při importu GPX a jak se jim vyhnout,
najdete na %{url}.
import_failures_url: http://wiki.openstreetmap.org/wiki/GPX_Import_Failures?uselang=cs
few: úspěšně načteno s %{trace_points} z možných %{count} bodů.
many: úspěšně načteno s %{trace_points} z možných %{count} bodu.
other: úspěšně načteno s %{trace_points} z možných %{count} bodů.
+ trace_location: Vaše stopa je dostupná na %{trace_url}
+ all_your_traces: Všechny úspěšně načtené GPX stopy můžete najít na %{url}
all_your_traces_html: Všechny úspěšně načtené GPX stopy můžete najít na %{url}.
subject: '[OpenStreetMap] Úspěšný import GPX'
signup_confirm:
changeset_comment_notification:
description: 'Sada změn OpenStreetMap #%{id}'
hi: Dobrý den, uživateli %{to_user},
- greeting: Dobrý den,
commented:
subject_own: '[OpenStreetMap] %{commenter} okomentoval jednu z vašich sad
změn'
remember: Zapamatuj si mě
lost password link: Ztratili jste heslo?
login_button: Přihlásit se
- register now: Zaregistrujte se
with external: nebo se přihlaste prostřednictvím třetí strany
or: nebo
auth failure: Je mi líto, ale s uvedenými údaji se nemůžete přihlásit.
richtext_field:
edit: Upravit
preview: Náhled
+ help: Nápověda
pagination:
diary_comments:
older: Starší komentáře
diary_entries:
older: Starší záznamy
newer: Novější záznamy
+ issues:
+ older: Starší problémy
+ newer: Novější problémy
traces:
older: Starší stopy
newer: Novější stopy
hospital: nemocnice
building: Významná budova
station: Nádraží
+ railway_halt: Železniční zastávka
+ subway_station: Stanice metra
+ tram_stop: Tramvajová zastávka
summit: Vrchol
peak: hora
tunnel: Čárkované obrysy = tunel
destination: Průjezd zakázán
construction: Cesta ve výstavbě
bus_stop: Autobusová zastávka
- stop: Stop
bicycle_shop: Cykloobchod
bicycle_rental: Půjčovna kol
bicycle_parking: Parkoviště pro kola
write_notes: Měnit poznámky
write_redactions: Upravte mapová data
read_email: Přečíst e-mailovou adresu uživatele
+ consume_messages: Číst, aktualizovat stav a mazat zprávy uživatelů
+ send_messages: Posílat soukromé zprávy jiným uživatelům
skip_authorization: Automaticky schválit aplikaci
for_roles:
moderator: Toto oprávnění je pro akce dostupné pouze moderátorům
privacy_policy_title: Pravidla ochrany osobních údajů OSMF, včetně části o
e-mailových adresách
contributor_terms: podmínkami pro přispěvatele
- tou: podmínkami užití
- external auth: 'Autentizace třetí stranou:'
continue: Zaregistrovat se
terms accepted: Děkujeme za odsouhlasení nových podmínek pro přispěvatele!
email_help:
informal_translations: neoficiální překlady
continue: Pokračovat
declined: http://wiki.openstreetmap.org/wiki/CS:Contributor_Terms_Declined?uselang=cs
- decline: Nesouhlasím
+ cancel: Zrušit
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.
legale_select: 'Označte zemi, ve které sídlíte:'
title: Upravit blok na uživatele %{name}
heading_html: Úprava bloku na %{name}
period: Jak dlouho (od nynějška) bude uživatel blokován z užívání API.
+ revoke: Odstranit blokování
filter:
block_period: Doba bloku musí být jedna z těch, které obsahuje rozevírací seznam.
create:
flash: Uživatel %{name} zablokován.
update:
only_creator_can_edit: Jen moderátor, který tento blok vytvořil, ho může upravovat.
+ only_creator_can_edit_without_revoking: Jen moderátor, který toto blokování
+ vytvořil, ho může upravovat bez jeho odvolání.
+ only_creator_or_revoker_can_edit: Jen moderátoři, kteří toto blokování vytvořili
+ nebo jej odvolali, ho mohou upravovat.
+ inactive_block_cannot_be_reactivated: Toto blokování není aktivní a nelze jej
+ znovu aktivovat.
success: Blok aktualizován.
index:
title: Bloky uživatele
blocks_by_me: Zablokování mnou
blocks_by_user: Bloky od uživatele %{user}
block: 'Blok #%{id}'
+ new_block: Nové blokování
user_mutes:
index:
title: Ztlumení uživatelé
add: Přidat poznámku
notes_paging_nav:
showing_page: Stránka %{page}
+ next: Následující
+ previous: Předchozí
javascripts:
close: Zavřít
share:
empty: Žádné opravy k ukázání.
heading: Seznam oprav
title: Seznam oprav
+ new: Nová redakce
new:
heading: Zadejte informace k nové redakci
title: Tvorba nové redakce
activerecord:
errors:
messages:
- invalid_email_address: nid yw'n ymddangos ei fod yn gyfeiriad e-bost dilys
- email_address_not_routable: nid yw'n gyrchadwy
display_name_is_user_n: ni all fod yn user_n oni bai mai n yw eich rhif defnyddiwr
models:
user_mute:
longitude: Hydred
public: Cyhoeddus
description: Disgrifiad
- gpx_file: Uwchlwytho Ffeil GPX
+ gpx_file: Dewiswch Ffeil Ôl GPS
visibility: Gwelededd
tagstring: Tagiau
message:
trace:
tagstring: defnyddiwch goma i wahaniaethu
user_block:
+ reason: Y rheswm dros flocio'r defnyddiwr. Byddwch mor barchus a rhesymol
+ â phosibl, gan roi cymaint o fanylion ag y gallwch chi am y sefyllfa, gan
+ gofio y bydd eich neges yn weladwy gan y cyhoedd. Byddwch yn ymwybodol na
+ fydd pob defnyddiwr yn deall jargon y gymuned, felly ceisiwch ddefnyddio
+ termau cyffredinol.
needs_view: Oes angen i'r defnyddiwr fewngofnodi cyn y bydd y bloc hwn yn
- cael ei glirio?
+ cael ei ddirymu?
user:
new_email: (byth ei ddangos yn gyhoeddus)
datetime:
note: nod
timeout:
title: Gwall Goramser
- sorry: Cymerodd yn rhy hir i adalw data math %{type} (gydag ID %{id})!
+ sorry: Sori, cymerodd yn rhy hir i adalw data math %{type} gyda'r id %{id}.
type:
node: nod
way: llwybr
introduction: Cliciwch ar y map i ddarganfod nodweddion gerllaw.
nearby: Nodweddion gerllaw
enclosing: Nodweddion amgáu
+ nodes:
+ timeout:
+ sorry: Sori, cymerodd yn rhy hir i adalw data'r nod gyda'r id %{id}.
old_nodes:
not_found:
sorry: 'Sori, ni ellir canfod fersiwn %{version} o''r nod #%{id}.'
+ timeout:
+ sorry: Sori, cymerodd yn rhy hir i adalw hanes y nod gyda'r id %{id}.
+ ways:
+ timeout:
+ sorry: Sori, cymerodd yn rhy hir i adalw data'r llwybr gyda'r id %{id}.
old_ways:
not_found:
sorry: 'Sori, ni ellir canfod fersiwn %{version} o lwybr #%{id}.'
+ timeout:
+ sorry: Sori, cymerodd yn rhy hir i adalw hanes y llwybr gyda'r id %{id}.
+ relations:
+ timeout:
+ sorry: Sori, cymerodd yn rhy hir i adalw data'r perthynas gyda'r id %{id}.
old_relations:
not_found:
sorry: 'Sori, ni ellir canfod fersiwn %{version} o''r perthynas #%{id}.'
+ timeout:
+ sorry: Sori, cymerodd yn rhy hir i adalw hanes y perthynas gyda'r id %{id}.
changeset_comments:
feeds:
comment:
comment: Sylw newydd ar grŵp newid %{changeset_id} gan %{author}
commented_at_by_html: Diweddarwyd %{when} gan %{user}
- comments:
- comment: Sylw newydd ar grŵp newid %{changeset_id} gan %{author}
show:
- title_all: Trafodaeth Grŵp Newid OpenStreetMap
+ title_all: Trafodaeth grŵp newid OpenStreetMap
title_particular: Trafodaeth grŵp newid OpenStreetMap %{changeset_id}
+ timeout:
+ sorry: Sori, cymerodd yn rhy hir i adalw rhestr o sylwadau grŵp newid y gofynnoch
+ amdanynt.
changesets:
changeset:
- anonymous: Dienw
no_edits: (dim golygiadau)
view_changeset_details: Gweld manylion y grŵp newid
index:
title: Grŵp newid %{id}
created_by_html: Crëwyd gan %{link_user} ar %{created}.
no_such_entry:
- title: Dim grŵp newid o'r fath
heading: 'Dim cofnod gyda''r id: %{id}'
show:
title: 'Grŵp newid: %{id}'
report: Adrodd y sylw hwn
location:
location: 'Lleoliad:'
- view: Gweld
- edit: Golygu
feed:
user:
title: Cofnodion dyddiadur OpenStreetMap ar gyfer %{user}
navigationaid: Cymorth Cyfeiriadu Hedfan
parking_position: Lle Parcio
runway: Rhedfa Awyr
- taxilane: Safle Tacsis
- taxiway: Safle tacsi
+ taxilane: Tacsiffordd
+ taxiway: Tacsiffordd
terminal: Terfynell Maes Awyr
windsock: Hosan Wynt
amenity:
driving_school: Ysgol Yrru
embassy: Llysgenhadaeth
events_venue: Lleoliad Digwyddiadau
- fast_food: Bwyd Parod
+ fast_food: Bwyd Brys
ferry_terminal: Terfynell Fferi
fire_station: Gorsaf Dân
food_court: Cwrt Fwydydd
cowshed: Beudy
detached: Tŷ Datgysylltiedig
dormitory: Dorm
- duplex: Tŷ Deublyg
+ duplex: Tŷ Pâr
farm: Ffermdy
farm_auxiliary: Tŷ Fferm Ategol
garage: Garej
hospital: Adeilad Ysbyty
hotel: Adeilad Gwesty
house: Tŷ
- houseboat: Cwch preswyl
+ houseboat: Cwch Preswyl
hut: Cwt
industrial: Adeilad Diwydiannol
kindergarten: Adeilad Meithrinfa
castle: Castell
charcoal_pile: Pentwr Siarcol Hanesyddol
church: Eglwys
- city_gate: Gat y Ddinas
+ city_gate: Gât y Ddinas
citywalls: Waliau Ddinas
fort: Caer
heritage: Safle Dreftadaeth
greenfield: Glastir
industrial: Ardal Ddiwydiannol
landfill: Safle Tirlenwi
- meadow: Dôl
- military: Ardal Milwrol
+ meadow: Gwaun
+ military: Ardal Filwrol
mine: Mwynglawdd
- orchard: Berllan
+ orchard: Perllan
plant_nursery: Meithrinfa Blanhigion
quarry: Chwarel
railway: Rheilffordd
tree: Coeden
tree_row: Rhes o Goed
tundra: Twndra
- valley: Dyffryn
+ valley: Dyffryn / Cwm
volcano: Llosgfynydd
water: Dŵr
wetland: Gwlyptir
butcher: Cigydd
car: Siop Geir
car_parts: Rhannau Ceir
- car_repair: Trwsio Ceir
+ car_repair: Gweithdy Atgyweirio Ceir
carpet: Siop Garpedi
charity: Siop Elusen
cheese: Siop Gaws
wadi: Sychnant
waterfall: Rheadr
weir: Cored
- "yes": Dyfrffyrdd
+ "yes": Dyfrffordd
admin_levels:
level2: Ffin Gwledydd
level3: Ffin Rhanbarth
level9: Ffin Pentref
level10: Ffin Maesdref
level11: Ffin Cymdogaeth
- types:
- cities: Dinasoedd
- towns: Trefi
- places: Lleoedd
results:
no_results: Dim canlyniadau
- more_results: Mwy o ganlyniadau
+ more_results: Rhagor o ganlyniadau
issues:
index:
title: Gwallau
- select_status: Dewis statws
- select_type: Dewis math
+ select_status: Dewis Statws
+ select_type: Dewis Math
+ select_last_updated_by: Dewiswch Diweddarwyd Diwethaf Gan
reported_user: Defnyddiwr ag adroddwyd
not_updated: Heb ei Ddiweddaru
search: Chwilio
search_guidance: 'Chwilio Gwallau:'
- link_to_reports: Gweld adroddiadau
states:
ignored: Anwybyddwyd
open: Agor
intro_header: Croeso i OpenStreetMap!
intro_text: Mae OpenStreetMap yn fap o'r byd, wedi'i greu gan bobl fel chi ac
sydd ar gael i'w ddefnyddio am ddim a dan drwydded rydd.
+ hosting_partners_2024_html: Cefnogir y gynhaliaeth gan %{fastly}, %{corpmembers},
+ a %{partners} eraill.
partners_fastly: Fastly
partners_corpmembers: Aelodau corfforaethol OSMF
partners_partners: phartneriaid
message_notification:
subject: '[OpenStreetMap] %{message_title}'
hi: Helo %{to_user},
+ header: 'Anfonodd %{from_user} neges atoch chi trwy OpenStreetMap gyda''r pwnc
+ %{subject}:'
+ header_html: 'Anfonodd %{from_user} neges atoch chi trwy OpenStreetMap gyda''r
+ pwnc %{subject}:'
+ footer: Gallwch hefyd ddarllen y neges yn %{readurl} a gallwch anfon neges at
+ yr awdur yn %{replyurl}
+ footer_html: Gallwch hefyd ddarllen y neges yn %{readurl} a gallwch anfon neges
+ at yr awdur yn %{replyurl}
friendship_notification:
hi: Helo %{to_user},
subject: '[OpenStreetMap] Ychwanegodd %{user} chi fel ffrind'
befriend_them: Gallwch hefyd eu hychwanegu fel ffrind ar %{befriendurl}.
befriend_them_html: Gallwch hefyd eu hychwanegu fel ffrind ar %{befriendurl}.
gpx_description:
- description_with_tags: 'Mae''n edrych fel eich ffeil GPX %{trace_name} gyda''r
+ description_with_tags: 'Mae''n edrych fel eich ffeil %{trace_name} gyda''r disgrifiad
+ %{trace_description} a''r tagiau canlynol: %{tags}'
+ description_with_tags_html: 'Mae''n edrych fel eich ffeil %{trace_name} gyda''r
disgrifiad %{trace_description} a''r tagiau canlynol: %{tags}'
- description_with_tags_html: 'Mae''n edrych fel eich ffeil GPX %{trace_name}
- gyda''r disgrifiad %{trace_description} a''r tagiau canlynol: %{tags}'
- description_with_no_tags: Mae'n edrych fel eich ffeil GPX %{trace_name} gyda'r
+ description_with_no_tags: Mae'n edrych fel eich ffeil %{trace_name} gyda'r disgrifiad
+ %{trace_description} a dim tagiau
+ description_with_no_tags_html: Mae'n edrych fel eich ffeil %{trace_name} gyda'r
disgrifiad %{trace_description} a dim tagiau
- description_with_no_tags_html: Mae'n edrych fel eich ffeil GPX %{trace_name}
- gyda'r disgrifiad %{trace_description} a dim tagiau
gpx_failure:
hi: Helo %{to_user},
- failed_to_import: 'methwyd â mewnforio. Dyma''r gwall:'
+ failed_to_import: 'methwyd â mewnforio fel ffeil trac GPS. Gwnewch yn siŵr bod
+ eich ffeil yn ffeil GPX dilys neu''n archif sy''n cynnwys ffeil(iau) GPX mewn
+ fformat a gefnogir (.tar.gz, .tar.bz2, .tar, .zip, .gpx.gz, .gpx.bz2). A allai
+ fod problem gyda''r fformat neu''r gystrawen? Dyma''r gwall mewnforio:'
subject: '[OpenStreetMap] Methiant Mewnforio GPX'
gpx_success:
hi: Helo %{to_user},
changeset_comment_notification:
description: 'Grŵp newid OpenStreetMap #%{id}'
hi: Helo %{to_user},
- greeting: Helo,
commented:
subject_own: '[OpenStreetMap] Gwnaeth %{commenter} sylw ar un o''ch grwpiau
newid'
â'r %{people_mapping_nearby_link}?
people_mapping_nearby: pobl yn mapio gerllaw
messages_table:
- from: Gan
+ from: O
to: I
subject: Pwnc
date: Dyddiad
people_mapping_nearby: pobl yn mapio gerllaw
muted:
title: Negeseuon ag Anwybyddwyd
+ messages:
+ zero: '%{count} neges wedi''i anwybyddu'
+ one: '%{count} neges wedi''i anwybyddu'
+ two: Mae gennych %{count} neges wedi'i anwybyddu
+ few: Mae gennych %{count} neges wedi'i anwybyddu
+ many: Mae gennych %{count} neges wedi'i anwybyddu
+ other: Mae gennych %{count} neges wedi'i anwybyddu
show:
title: Darllen neges
reply_button: Ateb
remember: Cofiwch fi
lost password link: Wedi anghofio eich cyfrinair?
login_button: Mewngofnodi
- register now: Cofrestru nawr
with external: neu fewngofnodi gyda thrydydd parti
or: neu
auth failure: Mae'n ddrwg gennym, ni ellir mewngofnodi gyda'r manylion hynny.
title: Enghraifft o gydnabyddiaeth
more_title_html: Darganfod rhagor
more_1_1_osmf_licence_page: Tudalen Trwydded OSMF
+ more_2_1_html: |-
+ Er mai data agored yw OpenStreetMap, ni allwn ddarparu API map am ddim ar gyfer defnyddwyr trydydd parti.
+ Gweler ein %{api_usage_policy_link}, %{tile_usage_policy_link} a %{nominatim_usage_policy_link}.
more_2_1_api_usage_policy: Polisi Defnydd API
more_2_1_tile_usage_policy: Polisi Defnydd Teils
more_2_1_nominatim_usage_policy: Polisi Defnydd Nominatim
hospital: Ysbyty
building: Adeilad arwyddocâol
station: Gorsaf drên
+ subway_station: Gorsaf Isffordd
+ tram_stop: Safle Tramiau
summit: Pen Mynydd
peak: Copa
tunnel: Border toredig = twnnel
destination: Mynediad cyrchfan
construction: Ffyrdd yn cael eu hadeiladu
bus_stop: Safle Bws
- stop: Safle
bicycle_shop: Siop feiciau
bicycle_rental: Beic Hur
bicycle_parking: Man parcio beiciau
by_signing_up:
privacy_policy: polisi preifatrwydd
contributor_terms: thelerau cyfranwyr
- tou: telerau defnydd
- external auth: 'Dilysu Trydydd Parti:'
continue: Cofrestru
terms accepted: Diolch am dderbyn telerau newydd cyfranwyr!
email_help:
readable_summary: crynodeb darllenadwy
informal_translations: cyfieithiadau anffurfiol
continue: Parhau
- decline: Gwrthod
legale_select: 'Gwlad breswyl:'
legale_names:
france: Ffrainc
importer: Tynnu statws mewnforiwr
block_history: Blociau Gweithredol
moderator_history: Blociau a roddwyd
- revoke_all_blocks: Dirymu pob bloc
+ revoke_all_blocks: Diddymu pob bloc
comments: Sylwadau
- create_block: Rhwystro'r Defnyddiwr hwn
+ create_block: Blocio'r Defnyddiwr Hwn
activate_user: Gwneud y cyfri'n fyw
confirm_user: Cadarnhau'r Defnyddiwr
unconfirm_user: Dad-gadarnhau'r defnyddiwr hwn
edit:
title: Wrthi'n golygu bloc ar %{name}
heading_html: Wrthi'n golygu bloc ar %{name}
+ revoke: Diddymu bloc
create:
flash: Wedi creu bloc ar ddefnyddiwr %{name}.
update:
heading: Rhestr o flociau defnyddwyr
empty: Dim blociau eto.
revoke_all:
+ title: Diddymu pob bloc ar %{block_on}
+ heading_html: Diddymu pob bloc ar %{block_on}
empty: Nid oes gan %{name} flociau gweithredol.
+ confirm: Ydych chi wir eisiau diddymu %{active_blocks}?
active_blocks:
zero: '%{count} blociau cyfredol.'
one: '%{count} %{count} bloc cyfredol.'
many: '%{count} bloc cyfredol.'
other: '%{count} bloc cyfredol.'
revoke: Dad-flocio!
+ flash: Diddymwyd pob bloc gweithredol.
helper:
time_future_html: Yn dod i ben mewn %{time}.
until_login: Gweithredol hyd nes bod y defnyddiwr yn mewngofnodi.
+ time_future_and_until_login_html: Daw i ben ymhen %{time} ac ar ôl i'r defnyddiwr
+ fewngofnodi.
time_past_html: Wedi dod i ben %{time}.
block_duration:
hours:
two: '%{count} awr'
few: '%{count} awr'
many: '%{count} awr'
- other: '%{count} hours'
+ other: '%{count} awr'
days:
zero: '%{count} diwrnod'
one: '%{count} diwrnod'
reason: 'Rheswm dros y bloc:'
revoker: 'Dad-flociwr:'
needs_view: Mae angen i'r defnyddiwr fewngofnodi cyn y bydd y bloc hwn yn cael
- ei glirio.
+ ei ddiddymu.
block:
not_revoked: (heb ei ddirymu)
show: Dangos
edit: Golygu
page:
- display_name: Defnyddwyr wedi'i blocio
+ display_name: Defnyddiwr wedi'i blocio
creator_name: Crëwr
reason: Rheswm dros flocio
status: Statws
add: Ychwanegu Nodyn
notes_paging_nav:
showing_page: Tudalen %{page}
+ next: Nesaf
+ previous: Cynt
javascripts:
close: Cau
share:
custom_dimensions: Gosod dimensiynau addas
format: 'Fformat:'
scale: 'Graddfa:'
+ image_dimensions: Bydd y llun yn dangos yr haen %{layer} ar %{width} x %{height}
download: Lawrlwytho
short_url: URL Byr
include_marker: Cynnwys marciwr
at %{directions}
onramp_right_without_exit: Trowch i'r dde ar y ramp i %{name}
onramp_right_with_directions: Trowch i'r dde ar y ramp tuag at %{directions}
+ onramp_right_with_name_directions: Trowch i'r dde ar y ramp i %{name}, tuag
+ at %{directions}
onramp_right_without_directions: Trowch i'r dde i'r ramp
onramp_right: Trowch i'r dde i'r ramp
+ endofroad_right_without_exit: Ar ddiwedd y ffordd trowch i'r dde i %{name}
merge_right_without_exit: Cyfunwch i'r dde ar %{name}
fork_right_without_exit: Wrth y fforch trowch i'r dde i %{name}
turn_right_without_exit: Trowch i'r dde ar %{name}
offramp_left_with_exit_name: Cymerwch allanfa %{exit} ar y chwith i %{name}
offramp_left_with_exit_directions: Cymerwch allanfa %{exit} ar y chwith tuag
at %{directions}
+ offramp_left_with_exit_name_directions: Cymerwch allanfa %{exit} ar y chwith
+ i %{name}, tuag at %{directions}
+ offramp_left_with_name: Cymerwch y ramp ar y chwith i %{name}
+ offramp_left_with_directions: Cymerwch y ramp ar y chwith tuag at %{directions}
+ offramp_left_with_name_directions: Cymerwch y ramp ar y chwith i %{name},
+ tuag at %{directions}
onramp_left_without_exit: Trowch i'r chwith ar y ramp i %{name}
onramp_left_with_directions: Trowch i'r chwith ar y ramp tuag at %{directions}
onramp_left_with_name_directions: Trowch i'r chwith ar y ramp i %{name}, tuag
empty: Dim gorchuddiadau i'w dangos.
heading: Rhestr Orchuddiadau
title: Rhestr Orchuddiadau
+ new: Gorchuddiad Newydd
new:
heading: Rhoi Gwybodaeth ar gyfer Gorchuddiad Newydd
title: Gorchuddiad Newydd
activerecord:
errors:
messages:
- invalid_email_address: ser ikke ud til at være en gyldig e-mailadresse
- email_address_not_routable: kan ikke rutes
display_name_is_user_n: kan ikke være user_n medmindre n er dit bruger-id
models:
user_mute:
note: bemærkning
timeout:
title: Timeoutfejl
- sorry: Beklager, data for %{type} med id %{id} tog for lang tid at hente
+ sorry: Beklager, data for %{type} med id %{id} tog for lang tid at hente.
type:
node: punkt
way: vej
introduction: Klik på kortet for at finde kortobjekter i nærheden.
nearby: Kortobjekter i nærheden
enclosing: Omgivende kortobjekter
+ nodes:
+ timeout:
+ sorry: Beklager, data for punktet med id %{id} tog for lang tid at hente.
old_nodes:
not_found:
sorry: 'Beklager, node #%{id} version %{version} kunne ikke findes.'
+ timeout:
+ sorry: Beklager, historikken for punktet med id %{id} tog for lang tid at hente.
+ ways:
+ timeout:
+ sorry: Beklager, data for vejen med id %{id} tog for lang tid at hente.
old_ways:
not_found:
sorry: 'Beklager, vej #%{id} version %{version} kunne ikke findes.'
+ timeout:
+ sorry: Beklager, historikken for vejen med id %{id} tog for lang tid at hente.
+ relations:
+ timeout:
+ sorry: Beklager, data for relationen med id %{id} tog for lang tid at hente.
old_relations:
not_found:
sorry: 'Beklager, relation #%{id} version %{version} kunne ikke findes.'
+ timeout:
+ sorry: Beklager, historikken for relationen med id %{id} tog for lang tid at
+ hente.
changeset_comments:
feeds:
comment:
comment: Ny kommentar til ændringssæt nummer %{changeset_id} af %{author}
commented_at_by_html: Opdateret %{when} af %{user}
- comments:
- comment: 'Ny kommentar til ændringssæt #%{changeset_id} af %{author}'
show:
title_all: OpenStreetMap-diskussion om ændringssæt
title_particular: 'OpenStreetMap-diskussion om ændringssæt #%{changeset_id}'
du har bedt om.
changesets:
changeset:
- anonymous: Anonym
no_edits: (ingen ændringer)
view_changeset_details: Vis detaljer for ændringssæt
index:
title: Ændringssæt %{id}
created_by_html: Oprettet af %{link_user} %{created}.
no_such_entry:
- title: Intet sådant ændringssæt
heading: 'Intet indlæg med id: %{id}'
body: Der findes desværre intet ændringssæt med id %{id}. Tjek stavningen, eller
måske er linket du trykkede på forkert.
report: Rapporter denne kommentar
location:
location: 'Sted:'
- view: Vis
- edit: Rediger
feed:
user:
title: OpenStreetMap-blogindlæg fra %{user}
level9: Bydelsgrænse
level10: Sognegrænse
level11: Nabolagsgrænse
- types:
- cities: Storbyer
- towns: Byer
- places: Steder
results:
no_results: Ingen resultater fundet
more_results: Flere resultater
not_updated: Ikke opdateret
search: Søg
search_guidance: 'Søgning blandt sager:'
- link_to_reports: Vis rapporter
states:
ignored: Ignoréret
open: Åbn
changeset_comment_notification:
description: 'OpenStreetMap-ændringssæt #%{id}'
hi: Hej %{to_user},
- greeting: Hej,
commented:
subject_own: '[OpenStreetMap] %{commenter} har kommenteret på et af dine ændringssæt'
subject_other: '[OpenStreetMap] %{commenter} har kommenteret på et ændringssæt,
remember: Husk mig
lost password link: Glemt din adgangskode?
login_button: Log ind
- register now: Registrér nu
with external: eller log ind med en tredjepart
or: eller
auth failure: Kunne ikke logge på med disse oplysninger.
hospital: Sygehus
building: Vigtig bygning
station: Togstation
+ subway_station: Undergrundsstation
+ tram_stop: Sporvognsstoppested
summit: Bjergtop
peak: Højdepunkt
tunnel: Stiplet kant = tunnel
destination: Ærindekørsel tilladt
construction: Veje under konstruktion
bus_stop: Busstop
- stop: Stop
bicycle_shop: Cykelhandler
bicycle_rental: Cykeludlejning
bicycle_parking: Cykelparkering
privacy_policy: privatlivs-politik
privacy_policy_title: OSMF privatlivs-politik inklusiv afsnit om e-mailadresser
contributor_terms: vilkår for bidragsydere
- tou: brugsbetingelser
- external auth: 'Tredjeparts-godkendelse:'
continue: Opret konto
terms accepted: Tak for at du accepterede de nye vilkår for bidragsydere!
email_help:
readable_summary: menneskeligt læsbart sammendrag
informal_translations: uformelle oversættelser
continue: Fortsæt
- decline: Afslå
you need to accept or decline: Læs og godkend eller afvis de nye vilkår for
bidragsydere for at fortsætte.
legale_select: 'Vælg dit bopælsland:'
# Author: Alefar
# Author: Als-Holder
# Author: Amilopowers
+# Author: AnupamM
# Author: Apmon
# Author: Atomkraftzwerg
# Author: Avatar
activerecord:
errors:
messages:
- invalid_email_address: scheint keine gültige E-Mail-Adresse zu sein
- email_address_not_routable: ist nicht routingfähig
display_name_is_user_n: kann nicht user_n sein, es sei denn, n ist deine Benutzer-ID
models:
user_mute:
longitude: Längengrad
public: Öffentlich
description: Beschreibung
- gpx_file: GPX-Datei hochladen
+ gpx_file: GPS-Trace-Datei auswählen
visibility: Sichtbarkeit
tagstring: Tags
message:
note: Hinweis
timeout:
title: Zeitüberschreitungsfehler
- sorry: Es dauerte leider zu lange, die Daten für %{type} mit der ID %{id} abzurufen.
+ sorry: Leider hat das Abrufen der Daten für den %{type} mit der ID %{id} zu
+ lange gedauert.
type:
node: den Knoten
way: den Weg
introduction: Klicke auf die Karte, um benachbarte Objekte zu finden.
nearby: Benachbarte Objekte
enclosing: Umschließende Objekte
+ nodes:
+ timeout:
+ sorry: Leider hat das Abrufen der Daten für den Knoten mit der ID %{id} zu lange
+ gedauert.
old_nodes:
not_found:
sorry: 'Entschuldigung, Knoten #%{id} Version %{version} konnte nicht gefunden
werden.'
+ timeout:
+ sorry: Leider hat das Abrufen der Historie des Knotens mit der ID %{id} zu lange
+ gedauert.
+ ways:
+ timeout:
+ sorry: Leider hat das Abrufen der Daten für den Weg mit der ID %{id} zu lange
+ gedauert.
old_ways:
not_found:
sorry: 'Entschuldigung, Weg #%{id} Version %{version} konnte nicht gefunden
werden.'
+ timeout:
+ sorry: Leider hat das Abrufen der Historie des Weges mit der ID %{id} zu lange
+ gedauert.
+ relations:
+ timeout:
+ sorry: Leider hat das Abrufen der Daten der Relation mit der ID %{id} zu lange
+ gedauert.
old_relations:
not_found:
sorry: 'Entschuldigung, Relation #%{id} Version %{version} konnte nicht gefunden
werden.'
+ timeout:
+ sorry: Leider dauerte das Abrufen der Historie der Relation mit der ID %{id}
+ zu lange.
changeset_comments:
feeds:
comment:
comment: Neuer Diskussionsbeitrag zum Änderungssatz Nr. %{changeset_id} von
%{author}
commented_at_by_html: '%{when} von %{user} aktualisiert'
- comments:
- comment: 'Neuer Kommentar zum Änderungssatz #%{changeset_id} von %{author}'
show:
title_all: Diskussion zum OpenStreetMap-Änderungssatz
title_particular: Diskussion zum OpenStreetMap-Änderungssatz Nr. %{changeset_id}
hast, für den Abruf zu lang.
changesets:
changeset:
- anonymous: Anonym
no_edits: (keine Bearbeitungen)
view_changeset_details: Details des Änderungssatzes anzeigen
index:
title: Änderungssatz %{id}
created_by_html: Erstellt von %{link_user} am %{created}.
no_such_entry:
- title: Dieser Änderungssatz existiert nicht
heading: 'Kein Eintrag mit der ID: %{id}'
body: Es existiert leider kein Änderungssatz mit der ID %{id}. Bitte überprüfe
deine Rechtschreibung, oder vielleicht ist der Link, auf den du geklickt hast,
report: Diesen Kommentar melden
location:
location: 'Ort:'
- view: Anzeigen
- edit: Bearbeiten
feed:
user:
title: OpenStreetMap Blogeinträge von %{user}
level9: Stadtteilgrenze
level10: Nachbarschaftsgrenze
level11: Nachbarschaftsgrenze
- types:
- cities: Großstädte
- towns: Städte
- places: Orte
results:
no_results: Keine Ergebnisse gefunden
more_results: Mehr Treffer
not_updated: Nicht aktualisiert
search: Suchen
search_guidance: 'Probleme durchsuchen:'
- link_to_reports: Meldungen ansehen
states:
ignored: Ignoriert
open: Offen
changeset_comment_notification:
description: 'OpenStreetMap-Änderungssatz #%{id}'
hi: Hallo %{to_user},
- greeting: Hallo,
commented:
subject_own: '[OpenStreetMap] %{commenter} hat einen deiner Änderungssätze
diskutiert'
remember: Anmeldedaten merken
lost password link: Passwort vergessen?
login_button: Anmelden
- register now: Jetzt registrieren
with external: oder melde dich über einen Drittanbieter an
or: oder
auth failure: Mit diesen Daten leider keine Anmeldung möglich.
hospital: Krankenhaus
building: Bedeutendes Gebäude
station: Bahnhof
+ railway_halt: Eisenbahnhaltestelle
+ subway_station: U-Bahnhof
+ tram_stop: Straßenbahnhaltestelle
summit: Gipfel
peak: Gipfel
tunnel: Gestrichelter Rand = Tunnel
destination: Nur für Anrainer
construction: Straßen im Bau
bus_stop: Bushaltestelle
- stop: Stop
bicycle_shop: Fahrradladen
bicycle_rental: Fahrradverleih
bicycle_parking: Fahrradparkplatz
privacy_policy_title: OSMF-Datenschutzrichtlinie einschließlich Abschnitt
zu E-Mail-Adressen
contributor_terms: Bedingungen für Mitwirkende
- tou: Nutzungsbedingungen
- external auth: 'Drittparteiauthentifikation:'
continue: Registrieren
terms accepted: Vielen Dank, dass du den neuen Bedingungen für Mitwirkende zugestimmt
hast!
informal_translations: informelle Übersetzung
continue: Weiter
declined: https://wiki.openstreetmap.org/wiki/DE:Contributor_Terms_Declined
- decline: Ablehnen
+ cancel: Abbrechen
you need to accept or decline: Bitte lies die neuen Bedingungen für Mitwirkende
und nimm sie an oder lehne sie ab, bevor du weitermachst.
legale_select: 'Bitte wähle das Land deines Wohnsitzes:'
empty: Keine Redactions.
heading: Liste der Redactions
title: Liste der Redaktionen
+ new: Neue Redaktion
new:
heading: Informationenen für eine neue Redaction eingeben
title: Neue Redaction erstellen
activerecord:
errors:
messages:
- invalid_email_address: Ravêrde ze yew adresê eposta nêaseno
- email_address_not_routable: Tadeyaye niyo
display_name_is_user_n: n, hendık kamiya karkeriya şoma nêbo user_n nêbeno.
models:
user_mute:
enclosing: Muhtewa xısusiyeti
changesets:
changeset:
- anonymous: Anonim
no_edits: (vırnayış çıniyo)
view_changeset_details: Teferuatê vurnayışê seti bıvin
index:
report: Nê mışewreyi rapor ke
location:
location: 'Lokasyon:'
- view: Bıvêne
- edit: Bıvurne
diary_comments:
page:
post: Rışte
dam: Berac
lock: İskele
river: Ro
- types:
- cities: Sûki
- towns: Bacari
- places: Cayi
issues:
index:
states:
note_comment_notification:
anonymous: Yew karbero bêname
greeting: Merheba,
- changeset_comment_notification:
- greeting: Merheba,
confirmations:
confirm:
button: Tesdiq ke
remember: Mı biya xo viri
lost password link: Şıma parolay xo ke xo vira?
login_button: Cıkewtış
- register now: Enewkê qeyd bê
destroy:
title: Veciyayış
heading: OpenStreetMap ra vıcyayış
heading: Terimi
consider_pd_why: no çıko?
continue: Dewam ke
- decline: Red kerê
legale_names:
france: Fransa
italy: İtalya
telephone_link: Na %{phone_number} zazwoniś
changesets:
changeset:
- anonymous: Anonymny
no_edits: (žedne změny)
view_changeset_details: Drobnostki sajźbow změnow pokazaś
index:
confirm: Wobkšuśiś
location:
location: 'Městno:'
- view: Woglědaś se
- edit: Wobźěłaś
feed:
user:
title: Zapiski dnjownika OpenStreetMap za %{user}
level8: Měsćańska granica
level9: Granica měsćańskego źěla
level10: Pśedměsćańska granica
- types:
- cities: Wjelike města
- towns: Města
- places: Městna
results:
no_results: Žedne wuslědki namakane
more_results: Dalšne wuslědki
remember: Spomnjeś se
lost password link: Sy swójo gronidło zabył?
login_button: Pśizjawiś se
- register now: Něnto registrěrowaś
auth failure: Bóžko, pśizjawjenje z toś tymi datami njejo móžno.
destroy:
title: Wótzjawiś se
consider_pd: Pśidatnje ku górjejce dojadnanjeju, mam swóje pśinoski za zjawnosć
pśistupne.
consider_pd_why: Co to jo?
- decline: Wótpokazaś
you need to accept or decline: Pšosym pśecytaj nowe wužywarske wuměnjenja a
akceptěruj abo wótpokaž je, nježli až dalej cyniš.
legale_select: 'Pšosym wubjeŕ kraj swójogo bydleńskego sedla:'
activerecord:
errors:
messages:
- invalid_email_address: δεν φαίνεται να είναι έγκυρη διεύθυνση ηλ. ταχυδρομείου
- email_address_not_routable: δεν είναι δρομολογητέο
display_name_is_user_n: δεν μπορεί να είναι user_n εκτός αν το n είναι το
αναγνωριστικό χρήστη σας
models:
longitude: Γεωγραφικό μήκος
public: Δημόσιο
description: Περιγραφή
- gpx_file: Î\91νÎβαÏ\83μα GPX αÏ\81Ï\87είοÏ\85
+ gpx_file: Î\95Ï\80ιλογή αÏ\81Ï\87είοÏ\85 ίÏ\87νοÏ\85Ï\82 GPX
visibility: Ορατότητα
tagstring: Ετικέτες
message:
note: σημείωση
timeout:
title: Σφάλμα λήξης χρόνου
- sorry: Λυπάμαι, τα δεδομένα για το %{type} με αναγνωριστικό %{id}, χρειάστηκαν
+ sorry: Λυπάμαι, τα δεδομένα για το %{type} με αναγνωριστικό %{id} χρειάστηκαν
πολύ χρόνο για να ανακτηθούν.
type:
node: κόμβος
introduction: Κάντε κλικ στον χάρτη για να βρείτε κοντινά χαρακτηριστικά.
nearby: Κοντινά χαρακτηριστικά
enclosing: Περικλείει τα χαρακτηριστικά
+ nodes:
+ timeout:
+ sorry: Λυπάμαι, τα δεδομένα για τον κόμβο με αναγνωριστικό %{id} χρειάστηκαν
+ πολύ χρόνο για να ανακτηθούν.
old_nodes:
not_found:
sorry: 'Λυπούμαστε, η έκδοση %{version} του κόμβου #%{id} δεν βρέθηκε.'
+ timeout:
+ sorry: Λυπάμαι, το ιστορικό για τον κόμβο με αναγνωριστικό %{id} χρειάστηκε
+ πολύ χρόνο για να ανακτηθεί.
+ ways:
+ timeout:
+ sorry: Λυπάμαι, τα δεδομένα για την γραμμή με αναγνωριστικό %{id} χρειάστηκαν
+ πολύ χρόνο για να ανακτηθούν.
old_ways:
not_found:
sorry: 'Λυπούμαστε, η έκδοση %{version} της γραμμής #%{id} δεν βρέθηκε.'
+ timeout:
+ sorry: Λυπάμαι, το ιστορικό για την γραμμή με αναγνωριστικό %{id} χρειάστηκε
+ πολύ χρόνο για να ανακτηθεί.
+ relations:
+ timeout:
+ sorry: Λυπάμαι, τα δεδομένα για την σχέση με αναγνωριστικό %{id} χρειάστηκαν
+ πολύ χρόνο για να ανακτηθούν.
old_relations:
not_found:
sorry: 'Λυπούμαστε, η έκδοση %{version} της σχέσης #%{id} δεν βρέθηκε.'
+ timeout:
+ sorry: Λυπάμαι, το ιστορικό για την σχέση με αναγνωριστικό %{id} χρειάστηκε
+ πολύ χρόνο για να ανακτηθεί.
changeset_comments:
feeds:
comment:
comment: 'Νέο σχόλιο σχετικά με τις αλλαγές #%{changeset_id} από τον %{author}'
commented_at_by_html: Ενημερώθηκε %{when} πριν από τον %{user}
- comments:
- comment: 'Νέο σχόλιο σχετικά με τις αλλαγές #%{changeset_id} από τον %{author}'
show:
title_all: Συζήτηση αλλαγών OpenStreetMap
title_particular: 'Συζήτηση αλλαγών OpenStreetMap #%{changeset_id}'
χρειάστηκε πολύ χρόνο για να ανακτηθεί.
changesets:
changeset:
- anonymous: Ανώνυμος
no_edits: (χωρίς επεξεργασίες)
view_changeset_details: Προβολή λεπτομερειών αλλαγών
index:
title: Ομάδα αλλαγών %{id}
created_by_html: Δημιουργήθηκε από %{link_user} στις %{created}.
no_such_entry:
- title: Δεν υπάρχει τέτοια ομάδα αλλαγών
heading: 'Δεν υπάρχει καταχώρηση με id: %{id}'
body: Λυπούμαστε, δεν υπάρχει ομάδα αλλαγών με το id %{id}. Παρακαλούμε ελέγξτε
για τυχόν ορθογραφικά λάθη ή ίσως ο σύνδεσμος που πατήσατε να είναι λάθος.
report: Αναφορά σχολίου
location:
location: 'Τοποθεσία:'
- view: Προβολή
- edit: Επεξεργασία
feed:
user:
title: Καταχωρήσεις ημερολογίου OpenStreetMap για τον %{user}
level9: Σύνορο χωριού
level10: Σύνορο προαστίου
level11: Σύνορο γειτονιάς
- types:
- cities: Πόλεις
- towns: Κωμοπόλεις
- places: Τοποθεσίες
results:
no_results: Δεν βρέθηκε κανένα αποτέλεσμα
more_results: Περισσότερα αποτελέσματα
not_updated: Μη ενημερωμένο
search: Αναζήτηση
search_guidance: 'Αναζήτηση ζητημάτων:'
- link_to_reports: Προβολή αναφορών
states:
ignored: Παραβλέφθηκε
open: Άνοιγμα
befriend_them: Μπορείτε επίσης να τους προσθέσετε ως φίλους στο %{befriendurl}.
befriend_them_html: Μπορείτε επίσης να τους προσθέσετε ως φίλους στο %{befriendurl}.
gpx_description:
- description_with_tags: 'Φαίνεται πως το αρχείο σας GPX %{trace_name} με την
+ description_with_tags: 'Φαίνεται πως το αρχείο σας %{trace_name} με την περιγραφή
+ %{trace_description} και με τις παρακάτω ετικέτες: %{tags}'
+ description_with_tags_html: 'Φαίνεται πως το αρχείο σου %{trace_name} με την
περιγραφή %{trace_description} και με τις παρακάτω ετικέτες: %{tags}'
- description_with_tags_html: 'Φαίνεται πως το αρχείο σου GPX %{trace_name} με
- την περιγραφή %{trace_description} και με τις παρακάτω ετικέτες: %{tags}'
- description_with_no_tags: Φαίνεται πως το αρχείο σας GPX %{trace_name} με την
+ description_with_no_tags: Φαίνεται πως το αρχείο σας %{trace_name} με την περιγραφή
+ %{trace_description} και χωρίς ετικέτες
+ description_with_no_tags_html: Φαίνεται πως το αρχείο σου %{trace_name} με την
περιγραφή %{trace_description} και χωρίς ετικέτες
- description_with_no_tags_html: Φαίνεται πως το αρχείο σου GPX %{trace_name}
- με την περιγραφή %{trace_description} και χωρίς ετικέτες
gpx_failure:
hi: Γεια σας %{to_user},
- failed_to_import: 'Απέτυχε η εισαγωγή. Το σφάλμα είναι:'
+ failed_to_import: 'απέτυχε να εισαχθεί ως αρχείο ίχνους GPX. Παρακαλώ επαληθεύστε
+ ότι το αρχείο σας είναι ένα έγκυρο αρχείο GPX ή ένα συμπιεσμένο αρχείο που
+ περιέχει αρχείο/αρχεία GPX στην υποστηριζόμενη μορφή (.tar.gz, .tar.bz2, .tar,
+ .zip, .gpx.gz, .gpx.bz2). Μπορεί να υπάρχει πρόβλημα μορφής ή σύνταξης με
+ το αρχείο σας; Το σφάλμα της εισαγωγής είναι:'
more_info: Περισσότερες πληροφορίες σχετικά με τα σφάλματα εισαγωγής GPX και
πως να τα αποφύγετε, μπορείτε να βρείτε στο %{url}.
more_info_html: Περισσότερες πληροφορίες σχετικά με τις αποτυχίες εισαγωγής
changeset_comment_notification:
description: 'OpenStreetMap Ομάδα Αλλαγών #%{id}'
hi: Γεια σας, %{to_user},
- greeting: Γεια,
commented:
subject_own: '[OpenStreetMap] {{GENDER:%{commenter}|Ο|Η}} %{commenter} σχολίασε
μια από τις ομάδες αλλαγών σας.'
remember: Να με θυμάσαι
lost password link: Ξεχάσατε το συνθηματικό σας;
login_button: Σύνδεση
- register now: Εγγραφείτε τώρα
with external: ή συνδεθείτε μέσω τρίτης υπηρεσίας
or: ή
auth failure: Λυπούμαστε, δεν μπορείτε να συνδεθείτε με αυτές τις λεπτομέρειες.
hospital: Νοσοκομείο
building: Σημαντικό κτήριο
station: Σιδηροδρομικός σταθμός
+ railway_halt: Σιδηροδρομική στάση
+ subway_station: Σταθμός μετρό
+ tram_stop: Στάση τραμ
summit: Κορυφή
peak: Κορυφή
tunnel: Διακεκομμένο περίβλημα = σήραγγα
destination: Πρόσβαση προορισμού
construction: Δρόμοι υπό κατασκευή
bus_stop: Στάση λεωφορείου
- stop: Στάση
bicycle_shop: Κατάστημα ποδηλάτων
bicycle_rental: Ενοικίαση ποδηλάτων
bicycle_parking: Χώρος στάθμευσης ποδηλάτων
privacy_policy_title: Πολιτική απορρήτου OSMF, συμπεριλαμβανομένης της ενότητας
για τις διευθύνσεις ηλεκτρονικού ταχυδρομείου
contributor_terms: όρους συνεισφοράς
- tou: όρους χρήσης
- external auth: 'Έλεγχος ταυτότητας από τρίτο μέρος:'
continue: Εγγραφή
terms accepted: Ευχαριστούμε για την αποδοχή των νέων όρων συνεισφοράς!
email_help:
readable_summary: περίληψη αναγνώσιμη από τον άνθρωπο
informal_translations: ανεπίσημες μεταφράσεις
continue: Συνέχεια
- decline: Διαφωνώ
you need to accept or decline: Παρακαλούμε διαβάστε και αποδεχτείτε ή απορρίψτε
τους νέους Όρους Συνεισφοράς για να συνεχίσετε.
legale_select: 'Παρακαλούμε επιλέξτε τη χώρα κατοικίας σας:'
add: Προσθήκη Σημείωσης
notes_paging_nav:
showing_page: Σελίδα %{page}
+ next: Επόμενη
+ previous: Προηγούμενη
javascripts:
close: Κλείσιμο
share:
empty: Καμία παράληψη προς εμφάνιση.
heading: Κατάλογος παραλήψεων
title: Κατάλογος συντακτικών αλλαγών
+ new: Νέα Απόκρυψη
new:
heading: Εισαγωγή πληροφοριών για νέα παράληψη
title: Δημιουργώντας νέα παράληψη
create: Create block
update: Update block
activerecord:
- errors:
- messages:
- invalid_email_address: does not appear to be a valid e-mail address
- email_address_not_routable: is not routable
models:
acl: Access Control List
changeset: Changeset
longitude: Longitude
public: Public
description: Description
- gpx_file: Upload GPX File
visibility: Visibility
tagstring: Tags
message:
note: note
timeout:
title: Timeout Error
- sorry: Sorry, the data for the %{type} with the id %{id}, took too long to retrieve.
type:
node: node
way: way
comment:
comment: 'New comment on changeset #%{changeset_id} by %{author}'
commented_at_by_html: Updated %{when} by %{user}
- comments:
- comment: 'New comment on changeset #%{changeset_id} by %{author}'
show:
title_all: OpenStreetMap changeset discussion
title_particular: 'OpenStreetMap changeset #%{changeset_id} discussion'
retrieve.
changesets:
changeset:
- anonymous: Anonymous
no_edits: (no edits)
view_changeset_details: View changeset details
index:
report: Report this comment
location:
location: 'Location:'
- view: View
- edit: Edit
feed:
user:
title: OpenStreetMap diary entries for %{user}
level8: City Boundary
level9: Village Boundary
level10: Suburb Boundary
- types:
- cities: Cities
- towns: Towns
- places: Places
results:
no_results: No results found
more_results: More results
see_their_profile: You can see their profile at %{userurl}.
befriend_them: You can also add them as a friend at %{befriendurl}.
gpx_failure:
- failed_to_import: 'failed to import. Here is the error:'
subject: '[OpenStreetMap] GPX Import failure'
gpx_success:
subject: '[OpenStreetMap] GPX Import success'
on. The note is near %{place}.'
changeset_comment_notification:
hi: Hi %{to_user},
- greeting: Hi,
commented:
subject_own: '[OpenStreetMap] %{commenter} has commented on one of your changesets'
subject_other: '[OpenStreetMap] %{commenter} has commented on a changeset
password: Password
remember: Remember me
lost password link: Lost your password?
- register now: Register now
auth failure: Sorry, could not log in with those details.
destroy:
title: Logout
account for you automatically.
display name description: Your publicly displayed username. You can change this
later in the preferences.
- external auth: 'Third Party Authentication:'
continue: Sign Up
terms accepted: Thanks for accepting the new contributor terms!
terms:
the Public Domain
consider_pd_why: what's this?
consider_pd_why_url: http://www.osmfoundation.org/wiki/License/Why_would_I_want_my_contributions_to_be_public_domain
- decline: Decline
you need to accept or decline: Please read and then either accept or decline
the new Contributor Terms to continue.
legale_select: 'Country of residence:'
longitude: "Longitude"
public: "Public"
description: "Description"
- gpx_file: Upload GPX File
+ gpx_file: Choose GPS Trace File
visibility: Visibility
tagstring: Tags
message:
note: note
timeout:
title: Timeout Error
- sorry: "Sorry, the data for the %{type} with the id %{id}, took too long to retrieve."
+ sorry: "Sorry, the data for the %{type} with the id %{id} took too long to retrieve."
type:
node: node
way: way
enclosing: "Enclosing features"
nodes:
timeout:
- sorry: "Sorry, the data for the node with the id %{id}, took too long to retrieve."
+ sorry: "Sorry, the data for the node with the id %{id} took too long to retrieve."
old_nodes:
not_found:
sorry: "Sorry, node #%{id} version %{version} could not be found."
timeout:
- sorry: "Sorry, the history of the node with the id %{id}, took too long to retrieve."
+ sorry: "Sorry, the history of the node with the id %{id} took too long to retrieve."
ways:
timeout:
- sorry: "Sorry, the data for the way with the id %{id}, took too long to retrieve."
+ sorry: "Sorry, the data for the way with the id %{id} took too long to retrieve."
old_ways:
not_found:
sorry: "Sorry, way #%{id} version %{version} could not be found."
timeout:
- sorry: "Sorry, the history of the way with the id %{id}, took too long to retrieve."
+ sorry: "Sorry, the history of the way with the id %{id} took too long to retrieve."
relations:
timeout:
- sorry: "Sorry, the data for the relation with the id %{id}, took too long to retrieve."
+ sorry: "Sorry, the data for the relation with the id %{id} took too long to retrieve."
old_relations:
not_found:
sorry: "Sorry, relation #%{id} version %{version} could not be found."
timeout:
- sorry: "Sorry, the history of the relation with the id %{id}, took too long to retrieve."
+ sorry: "Sorry, the history of the relation with the id %{id} took too long to retrieve."
changeset_comments:
feeds:
comment:
comment: "New comment on changeset #%{changeset_id} by %{author}"
commented_at_by_html: "Updated %{when} by %{user}"
- comments:
- comment: "New comment on changeset #%{changeset_id} by %{author}"
show:
title_all: OpenStreetMap changeset discussion
title_particular: "OpenStreetMap changeset #%{changeset_id} discussion"
sorry: "Sorry, the list of changeset comments you requested took too long to retrieve."
changesets:
changeset:
- anonymous: "Anonymous"
no_edits: "(no edits)"
view_changeset_details: "View changeset details"
index:
title: "Changeset %{id}"
created_by_html: "Created by %{link_user} on %{created}."
no_such_entry:
- title: "No such changeset"
heading: "No entry with the id: %{id}"
body: "Sorry, there is no changeset with the id %{id}. Please check your spelling, or maybe the link you clicked is wrong."
show:
report: Report this comment
location:
location: "Location:"
- view: "View"
- edit: "Edit"
coordinates: "%{latitude}; %{longitude}"
feed:
user:
not_updated: Not Updated
search: Search
search_guidance: "Search Issues:"
- link_to_reports: View Reports
states:
ignored: Ignored
open: Open
befriend_them: "You can also add them as a friend at %{befriendurl}."
befriend_them_html: "You can also add them as a friend at %{befriendurl}."
gpx_description:
- description_with_tags: "It looks like your GPX file %{trace_name} with the description %{trace_description} and the following tags: %{tags}"
- description_with_tags_html: "It looks like your GPX file %{trace_name} with the description %{trace_description} and the following tags: %{tags}"
- description_with_no_tags: "It looks like your GPX file %{trace_name} with the description %{trace_description} and no tags"
- description_with_no_tags_html: "It looks like your GPX file %{trace_name} with the description %{trace_description} and no tags"
+ description_with_tags: "It looks like your file %{trace_name} with the description %{trace_description} and the following tags: %{tags}"
+ description_with_tags_html: "It looks like your file %{trace_name} with the description %{trace_description} and the following tags: %{tags}"
+ description_with_no_tags: "It looks like your file %{trace_name} with the description %{trace_description} and no tags"
+ description_with_no_tags_html: "It looks like your file %{trace_name} with the description %{trace_description} and no tags"
gpx_failure:
hi: "Hi %{to_user},"
- failed_to_import: "failed to import. Here is the error:"
+ failed_to_import: "failed to be imported as a GPS trace file. Please verify that your file is a valid GPX file or an archive containing GPX file(s) in the supported format (.tar.gz, .tar.bz2, .tar, .zip, .gpx.gz, .gpx.bz2). Could there be a format or syntax issue with your file? Here is the importing error:"
more_info: "More information about GPX import failures and how to avoid them can be found at %{url}."
more_info_html: "More information about GPX import failures and how to avoid them can be found at %{url}."
import_failures_url: "https://wiki.openstreetmap.org/wiki/GPX_Import_Failures"
failure: Couldn't update profile.
sessions:
new:
- title: "Log in"
tab_title: "Log in"
login_to_authorize_html: "Log in to OpenStreetMap to access %{client_app_name}."
email or username: "Email Address or Username"
remember: "Remember me"
lost password link: "Lost your password?"
login_button: "Log in"
- register now: Register now
with external: "or log in with a third party"
or: "or"
auth failure: "Sorry, could not log in with those details."
welcome_mat_url: https://welcome.openstreetmap.org/
sidebar:
search_results: Search Results
- close: Close
search:
search: Search
get_directions_title: "Find directions between two points"
privacy_policy_title: OSMF privacy policy including section on email addresses
contributor_terms_url: "https://wiki.osmfoundation.org/wiki/Licence/Contributor_Terms"
contributor_terms: "contributor terms"
- tou: "terms of use"
continue: Sign Up
terms accepted: "Thanks for accepting the new contributor terms!"
email_help:
guidance_info_html: "Information to help understand these terms: a %{readable_summary_link} and some %{informal_translations_link}"
readable_summary: human readable summary
informal_translations: informal translations
- continue: Continue
+ continue: "Continue"
declined: "https://wiki.openstreetmap.org/wiki/Contributor_Terms_Declined"
- decline: "Decline"
+ cancel: "Cancel"
you need to accept or decline: "Please read and then either accept or decline the new Contributor Terms to continue."
legale_select: "Country of residence:"
legale_names:
created: "Created:"
duration: "Duration:"
status: "Status:"
- show: "Show"
edit: "Edit"
- confirm: "Are you sure?"
reason: "Reason for block:"
revoker: "Revoker:"
- needs_view: "The user needs to log in before this block will be cleared."
block:
not_revoked: "(not revoked)"
show: "Show"
activerecord:
errors:
messages:
- invalid_email_address: ŝajne ne estas ĝusta retpoŝta adreso
- email_address_not_routable: ne estas enkursigebla
display_name_is_user_n: ne povas esti user_n, escepte se n estas via uzant-identigilo
models:
user_mute:
longitude: Longitudo
public: Publika
description: Priskribo
- gpx_file: Alŝuti GPX-dosieron
+ gpx_file: Elekti GPS-spur-dosieron
visibility: Videbleco
tagstring: Etikedoj
message:
note: rimarko
timeout:
title: Tempolimo atingita
- sorry: Bedaŭrinde la datumoj por la %{type} kun la identigilo %{id} alvenis
- tro malrapide.
+ sorry: Bedaŭrinde akiri datumojn de la %{type} kun identigilo %{id} okupis tro
+ multan tempon.
type:
node: nodo
way: linio
introduction: Alklaku la mapon por trovi proksimajn objektojn.
nearby: Proksimaj objektoj
enclosing: Ĉirkaŭaj objektoj
+ nodes:
+ timeout:
+ sorry: Bedaŭrinde akiri datumojn de la nodo kun identigilo %{id} okupis tro
+ multan tempon.
old_nodes:
not_found:
sorry: 'Bedaŭrinde la nodo #%{id} en versio %{version} ne troveblas.'
+ timeout:
+ sorry: Bedaŭrinde akiri historion de la nodo kun identigilo %{id} okupis tro
+ multan tempon.
+ ways:
+ timeout:
+ sorry: Bedaŭrinde akiri datumojn de la linio kun identigilo %{id} okupis tro
+ multan tempon.
old_ways:
not_found:
sorry: 'Bedaŭrinde la linio #%{id} en versio %{version} ne troveblas.'
+ timeout:
+ sorry: Bedaŭrinde akiri historion de la linio kun identigilo %{id} okupis tro
+ multan tempon.
+ relations:
+ timeout:
+ sorry: Bedaŭrinde akiri datumojn de la rilato kun identigilo %{id} okupis tro
+ multan tempon.
old_relations:
not_found:
sorry: 'Bedaŭrinde la rilato #%{id} en versio %{version} ne troveblas.'
+ timeout:
+ sorry: Bedaŭrinde akiri historion de la rilato kun identigilo %{id} okupis tro
+ multan tempon.
changeset_comments:
feeds:
comment:
comment: 'Nova komento de %{author} al ŝanĝaro #%{changeset_id}'
commented_at_by_html: Ĝisdatigita %{when} de %{user}
- comments:
- comment: 'Nova komento de %{author} al ŝanĝaro #%{changeset_id}'
show:
title_all: Diskuto pri OpenStreetMap-ŝanĝaro
title_particular: 'Diskuto pri ŝanĝaro #%{changeset_id}'
pri ŝanĝaro.
changesets:
changeset:
- anonymous: Anonimulo
no_edits: (neniu redakto)
view_changeset_details: Vidi detalojn pri ŝanĝaro
index:
title: Ŝanĝaro %{id}
created_by_html: Kreita de %{link_user} je %{created}.
no_such_entry:
- title: Neniu tia ŝanĝaro
heading: 'Neniu ŝanĝaro kun la identigilo: %{id}'
body: Bedaŭrinde ne ekzistas ŝanĝaro kun la identigilo %{id}. Kontrolu pri liter-eraroj
aŭ eble vi alklakis eraran ligilon.
report: Raporti ĉi tiun komenton
location:
location: 'Pozicio:'
- view: Montri
- edit: Redakti
feed:
user:
title: OpenStreetMap taglibraj afiŝoj de %{user}
rail: Relvojo
spur: Branĉtrako
station: Stacidomo fervoja
- stop: Haltejo fervoja
+ stop: Haltejo fervoja (haltloko)
subway: Metroo
subway_entrance: Metro-enirejo
switch: Trakforko
level9: Limo de kvartalo (niv.9)
level10: Limo de subkvartalo (niv.10)
level11: Limo de najbaraĵo (niv.11)
- types:
- cities: Urbegoj
- towns: Urboj
- places: Lokoj
results:
no_results: Neniu rezulto trovita
more_results: Pliaj rezultoj
not_updated: Ne aktualigita
search: Serĉi
search_guidance: 'Serĉi problemon:'
- link_to_reports: Montri raportojn
states:
ignored: Ignorita
open: Malfermita
befriend_them: Vi ankaŭ povas aldoni vin kiel amikon ĉe %{befriendurl}.
befriend_them_html: Vi ankaŭ povas aldoni ilin kiel amiko ĉe %{befriendurl}
gpx_description:
- description_with_tags: 'Ŝajnas, ke tio ĉi estas via GPX‑dosiero %{trace_name}
+ description_with_tags: 'Ŝajnas, ke tio ĉi estas via dosiero %{trace_name} kun
+ la priskribo %{trace_description} kaj kun la jenaj etikedoj: %{tags}'
+ description_with_tags_html: 'Ŝajnas, ke tio ĉi estas via dosiero %{trace_name}
kun la priskribo %{trace_description} kaj kun la jenaj etikedoj: %{tags}'
- description_with_tags_html: 'Ŝajnas, ke tio ĉi estas via GPX‑dosiero %{trace_name}
- kun la priskribo %{trace_description} kaj kun la jenaj etikedoj: %{tags}'
- description_with_no_tags: Ŝajnas, ke tio ĉi estas via GPX‑dosiero %{trace_name}
+ description_with_no_tags: Ŝajnas, ke tio ĉi estas via dosiero %{trace_name}
kun la priskribo %{trace_description} kaj sen etikedoj
- description_with_no_tags_html: Ŝajnas, ke tio ĉi estas via GPX‑dosiero %{trace_name}
+ description_with_no_tags_html: Ŝajnas, ke tio ĉi estas via dosiero %{trace_name}
kun la priskribo %{trace_description} kaj sen etikedoj
gpx_failure:
hi: Saluton %{to_user},
- failed_to_import: 'ne estas enportita sukcese. Eraro:'
+ failed_to_import: 'ne estis enportita sukcese kiel GPS-spur-dosiero. Kontrolu,
+ ĉu via dosiero estas ĝusta GPX-dosiero aŭ arĥivo entenanta GPX-dosiero(j)n
+ en la subtenata dosierformo (.tar.gz, .tar.bz2, .tar, .zip, .gpx.gz, .gpx.bz2).
+ Eble okazis eraro pri dosierformo aŭ pri sintakso de spur-dosiero. Eraro:'
more_info: Pliaj informoj pri eraroj dum enporti GPX‑dosierojn troviĝas ĉe %{url}.
more_info_html: Pliaj informoj pri eraroj dum enporti GPX‑dosierojn troviĝas
ĉe %{url}.
changeset_comment_notification:
description: 'OpenStreetMap: ŝanĝaro %{id}'
hi: Saluton %{to_user},
- greeting: Saluton,
commented:
subject_own: '[OpenStreetMap] %{commenter} komentis vian ŝanĝaron'
subject_other: '[OpenStreetMap] %{commenter} komentis ŝanĝaron pri kiu vi
remember: Memori min
lost password link: Ĉu vi forgesis vian pasvorton?
login_button: Ensaluti
- register now: Registriĝi
with external: 'ensaluti per ekstera liveranto:'
or: aŭ
auth failure: Bedaŭrinde ne povas ensaluti kun ĉi tiuj informoj.
hospital: Malsanulejo
building: Grava konstruaĵo
station: Stacidomo
+ railway_halt: Haltejo fervoja
+ subway_station: Stacio metroa
+ tram_stop: Haltejo trama
summit: Montosupro
peak: Montpinto
tunnel: Strekumita konturo - tunelo
destination: Aliro nur al celo
construction: Vojoj konstruataj
bus_stop: Haltejo aŭtobusa
- stop: Haltejo
bicycle_shop: Bicikl-vendejo
bicycle_rental: Bicikl-pruntejo
bicycle_parking: Parkumejo bicikla
communities_wiki: tiu ĉi viki-paĝo
traces:
visibility:
- private: Privata (kunhavigita nur kiel sennomaj, malordigitaj punktoj)
- public: Publika (montrata en spurlisto kaj kiel sennomaj, neordigitaj punktoj)
- trackable: Spurebla (kunhavigita nur kiel sennomaj, ordigitaj punktoj kun tempstampoj)
- identifiable: Identigebla (montrata en spurlisto kaj kiel identigeblaj, ordigitaj
- punktoj kun tempstampo)
+ private: privata (kunhavigata nur kiel sennomaj, malordigitaj punktoj)
+ public: publika (montrata en la listo “GPS-spuroj“ kaj kiel sennomaj, neordigitaj
+ punktoj)
+ trackable: spurebla (kunhavigata nur kiel sennomaj, ordigitaj punktoj kun tempstampoj)
+ identifiable: identigebla (montrata en la listo “GPS-spuroj” kaj kiel identigeblaj,
+ ordigitaj punktoj kun tempstampoj)
new:
upload_trace: Alŝuti GPS-spuron
- visibility_help: kion tio signifas?
+ visibility_help: Pliaj informoj
help: Helpo
help_url: https://wiki.openstreetmap.org/wiki/Upload
create:
privacy_policy_title: privateca politiko de OSMF enhavanta sekcion pri uzo
de retpoŝta adreso
contributor_terms: Interkonsento pri kontribuado
- tou: Kondiĉoj de uzado
- external auth: 'Ensaluti per ekstera servo:'
continue: Registriĝi
terms accepted: Dankon por akcepto de nova interkonsento pri kontribuado!
email_help:
readable_summary: konciza sumiĝo
informal_translations: neoficialaj tradukoj
continue: Daŭrigi
- decline: Malakcepti
+ cancel: Nuligi
you need to accept or decline: Bonvolu legi kaj aŭ akcepti aŭ malakcepti la
novan interkonsenton pri uzado por pluigi.
legale_select: 'Loĝlando:'
add: Aldoni rimarkon
notes_paging_nav:
showing_page: Paĝo %{page}
+ next: Sekva
+ previous: Antaŭa
javascripts:
close: Fermi
share:
empty: Neniu korekto por montri.
heading: Listo de korektoj
title: Listo de korektoj
+ new: Nova korekto
new:
heading: Entajpu informojn pri novan korekton
title: Kreado de nova korekto
activerecord:
errors:
messages:
- invalid_email_address: no parece ser una dirección de correo electrónico válida
- email_address_not_routable: no es enrutable
display_name_is_user_n: no puedes ser user_n a menos que n sea tu ID de usuario
models:
user_mute:
comment: 'Comentario nuevo sobre el conjunto de cambios #%{changeset_id} de
%{author}'
commented_at_by_html: Actualizado %{when} por %{user}
- comments:
- comment: 'Comentario nuevo sobre el conjunto de cambios #%{changeset_id} de
- %{author}'
show:
title_all: Discusión del conjunto de cambios de OpenStreetMap
title_particular: 'Discusión del conjunto de cambios #%{changeset_id} de OpenStreetMap'
tardó demasiado en obtenerse.
changesets:
changeset:
- anonymous: Anónimo
no_edits: (sin ediciones)
view_changeset_details: Ver detalles del conjunto de cambios
index:
title: Conjunto de cambios %{id}
created_by_html: Creado por %{link_user} el %{created}.
no_such_entry:
- title: No existe tal conjunto de cambios
heading: 'No hay entrada con id: %{id}'
body: Lo sentimos, no existe algún conjunto de cambios con id %{id}. Revisa
los dígitos, o tal vez el enlace en el que hiciste clic sea incorrecto.
report: Denunciar este comentario
location:
location: 'Ubicación:'
- view: Ver
- edit: Editar
feed:
user:
title: Entradas de diario de OpenStreetMap de %{user}
level9: Límite de pueblo
level10: Límite de suburbio
level11: Límite vecinal
- types:
- cities: Ciudades
- towns: Pueblos
- places: Lugares
results:
no_results: No se han encontrado resultados
more_results: Más resultados
not_updated: No actualizado
search: Buscar
search_guidance: 'Buscar incidencias:'
- link_to_reports: Ver denuncias
states:
ignored: Ignorado
open: Abierto
changeset_comment_notification:
description: 'Conjunto de cambios de OpenStreetMap #%{id}'
hi: Hola %{to_user},
- greeting: Hola,
commented:
subject_own: '[OpenStreetMap] %{commenter} ha comentado uno de tus conjuntos
de cambios'
remember: Recordarme
lost password link: ¿Has perdido tu contraseña?
login_button: Iniciar sesión
- register now: Registrarse ahora
with external: o inicia sesión con un tercero
or: o
auth failure: Lo sentimos. No se pudo iniciar sesión con esos datos.
hospital: Hospital
building: Edificio significativo
station: Estación de tren
+ railway_halt: Parada de ferrocarril
+ subway_station: Estación de metro
+ tram_stop: Parada de tranvía
summit: Cumbre
peak: Pico
tunnel: Borde a rayas = túnel
destination: Acceso a destino
construction: Vías en construcción
bus_stop: Parada de autobuses
- stop: Parada
bicycle_shop: Tienda de bicicletas
bicycle_rental: Alquiler de bicicletas
bicycle_parking: Estacionamiento de bicicletas
privacy_policy_title: Política de privacidad de la OSMF, incluida la sección
sobre direcciones de correo electrónico
contributor_terms: términos de colaborador
- tou: términos de uso
- external auth: 'Autentificación de terceros:'
continue: Registrarse
terms accepted: ¡Gracias por aceptar los nuevos Términos de Colaborador!
email_help:
informal_translations: traducciones informales
continue: Continuar
declined: https://wiki.openstreetmap.org/wiki/ES:Términos_de_contribuidor_rechazados
- decline: Declinar
you need to accept or decline: Lee y luego acepta o rechaza los nuevos Términos
de Colaborador para continuar.
legale_select: 'País de residencia:'
add: Añadir nota
notes_paging_nav:
showing_page: Página %{page}
+ next: Siguiente
+ previous: Anterior
javascripts:
close: Cerrar
share:
empty: No hay ninguna censura para mostrar.
heading: Lista de censuras
title: Lista de censuras
+ new: Nueva censura
new:
heading: Introduce la información de la nueva censura
title: Creando nueva censura
activerecord:
errors:
messages:
- invalid_email_address: ei tundu olema korrektne e-posti aadress
- email_address_not_routable: e-posti domeen ei tundu olema seadistatud
display_name_is_user_n: ei saa olla user_n, kui n ei ole sinu kasutaja identifikaator
models:
user_mute:
comment: 'Uus kommentaar muudatuskogumi #%{changeset_id} kohta kasutajalt
%{author}'
commented_at_by_html: Uuendanud %{user} %{when}
- comments:
- comment: 'Uus kommentaar muudatuskogumi #%{changeset_id} kohta kasutajalt
- %{author}'
show:
title_all: OpenStreetMapi muudatuskogumi arutelu
title_particular: 'OpenStreetMapi muudatuskogumi #%{changeset_id} arutelu'
kulus liiga kaua aega.
changesets:
changeset:
- anonymous: Anonüümne
no_edits: (muudatused puuduvad)
view_changeset_details: Vaata muudatuskogumi üksikasju
index:
title: Muudatuskogum %{id}
created_by_html: Loonud %{link_user} kuupäeval %{created}
no_such_entry:
- title: Sellist muudatuskogumit ei leidu
heading: Ei leidu kirjet identifikaatoriga %{id}
body: Vabandust, muudatuskogumit identifikaatoriga %{id} ei ole olemas. Palun
kontrolli, kas kirjutasid selle õigesti või kas link millel klõpsasid, on
report: Teata sellest kommentaarist
location:
location: 'Asukoht:'
- view: Vaata
- edit: muuda
feed:
user:
title: Kasutaja %{user} OpenStreetMapi päevikusissekanded
level9: 9. järgu piir
level10: 10. järgu piir
level11: Naabruskonna piirjoon
- types:
- cities: Suurlinnad
- towns: Linnad
- places: Kohad
results:
no_results: Ei leidnud midagi
more_results: Veel tulemusi
reported_user: Kasutaja, kellest on teada antud
not_updated: Pole uuendatud
search: Otsi
- link_to_reports: Vaata kaebuseid
page:
user_not_found: Kasutajat pole olemas.
status: Olek
changeset_comment_notification:
description: 'OpenStreetMapi muudatuskogum #%{id}'
hi: Tere, %{to_user}
- greeting: Tere!
commented:
subject_own: '[OpenStreetMap] %{commenter} on kommenteerinud üht sinu muudatuskogumit'
subject_other: '[OpenStreetMap] %{commenter} on kommenteerinud muudatuskogumit,
remember: Jäta mind meelde
lost password link: Kas unustasid parooli?
login_button: Logi sisse
- register now: Registreeru nüüd
with external: või logi sisse kolmanda osapoole kaudu
auth failure: Kahjuks ei õnnestu nende andmetega sisse logida.
destroy:
destination: Üksnes läbisõiduks
construction: Ehitatavad teed
bus_stop: Bussipeatus
- stop: Peatus
bicycle_shop: Rattapood
bicycle_rental: Jalgrattarent
bicycle_parking: Jalgrattaparkla
privacy_policy_title: OSMF-i andmekaitsereeglid, milles on alaosa e-posti
aadresside kohta
contributor_terms: kaastöötingimustega
- tou: kasutustingimustega
- external auth: 'Kolmanda osapoole autentimine:'
continue: Registreeru
terms accepted: Täname, et nõustusid uute kaastöötingimustega!
email_help:
readable_summary: inimloetav kokkuvõte
informal_translations: mitteametlikud tõlked
continue: Jätka
- decline: Ei nõustu
you need to accept or decline: Enne jätkamist tutvu palun uute kaastöötingimustega
ning seejärel kas nõustu või ära nõustu nendega.
legale_select: 'Palun valige oma elukohariik:'
activerecord:
errors:
messages:
- invalid_email_address: badirudi ez dela e-posta helbide egoki bat
- email_address_not_routable: ezin da biderik kalkulatu
display_name_is_user_n: ezin da user_n izan, salbu eta n zure erabiltzaile
ID-a bada
models:
comment: '%{changeset_id} aldaketan %{author} erabiltzaileak iruzkin berria
egin du'
commented_at_by_html: '%{user} erabiltzaileak duela %{when} eguneratua'
- comments:
- comment: '%{changeset_id} aldaketan %{author}k iruzkin berria egin du'
show:
title_all: OpenStreetMap aldaketen eztabaida
title_particular: 'OpenStreetMap #%{changeset_id} aldaketen eztabaida.'
gehiegi behar izan da.
changesets:
changeset:
- anonymous: Anonimoa
no_edits: (aldaketarik gabe)
view_changeset_details: Ikusi aldaketen xehetasunak
index:
report: Salatu iruzkin hau
location:
location: 'Kokapena:'
- view: Ikusi
- edit: Aldatu
feed:
user:
title: '%{user} erabiltzailearentzako OpenStreetMap eguneroko sarrerak'
level9: Herriko muga
level10: Auzoko muga
level11: Auzo muga
- types:
- cities: Hiriak
- towns: Herriak
- places: Lekuak
results:
no_results: Ez da emaitzarik aurkitu
more_results: Emaitza gehiago
not_updated: Eguneratu gabea
search: Bilatu
search_guidance: 'Arazoak bilatu:'
- link_to_reports: Reporteak ikusi
states:
ignored: Ezikusia
open: Ireki
details_html: Oharrari buruzko xehetasun gehiago %{url} helbidean aurki daitezke.
changeset_comment_notification:
hi: Kaixo %{to_user},
- greeting: Kaixo,
commented:
subject_own: '[OpenStreetMap] %{commenter} zure aldaketa batean iruzkina utzi
du'
remember: Gogora nazazu
lost password link: Pasahitza ahaztu duzu?
login_button: Saioa hasi
- register now: Erregistratu orain
with external: 'Bestela, erabili hirugarrenen bat saioa hasteko:'
auth failure: Barkatu, ezin izan da saioa hasi xehetasun horiekin.
destroy:
destination: Helmuga sarbidea
construction: Eraikitzen ari diren errepideak
bus_stop: Autobus geltokia
- stop: Geltokia
bicycle_shop: Bizikleta-denda
bicycle_rental: Bizikleta alokairua
bicycle_parking: Bizikleta-aparkalekua
privacy_policy: pribatutasun politika
privacy_policy_title: OSMF pribatutasun-politika helbide elektronikoei buruzko
atala barne
- external auth: 'Hirugarrenen Autentifikazioa:'
continue: Eman izena
terms accepted: Eskerrik asko laguntzaileen termino berriak onartzeagatik!
email_help:
eta %{informal_translations_link}'
informal_translations: itzulpen informalak
continue: Jarraitu
- decline: Ez onartu
you need to accept or decline: Irakurri eta gero, onartu edo ezetsi Kolaboratzaileen
termino berriak jarraitzeko.
legale_select: 'Mesedez bizi zaren herrialdean aukeratu:'
create: ایجاد مسدودی
update: بهروز رسانی مسدودی
activerecord:
- errors:
- messages:
- invalid_email_address: نشانی رایانامه نامعتبر به نظر میرسد
- email_address_not_routable: قابل مسیریابی نیست
models:
acl: فهرست کنترل دسترسی
changeset: بستهٔ تغییر
comment:
comment: نظر جدید روی بستهٔ تغییر %{changeset_id} از %{author}
commented_at_by_html: '%{when} %{user} روزآمدش کرد'
- comments:
- comment: نظر جدید روی بستهٔ تغییر %{changeset_id} از %{author}
show:
title_all: بحث بستهٔ تغییر OpenStreetMap
title_particular: 'بحث بستهٔ تغییر #%{changeset_id} در OpenStreetMap'
شد.
changesets:
changeset:
- anonymous: گمنام
no_edits: (بدون ویرایش)
view_changeset_details: نمایش جزئیات بستهٔ تغییر
index:
report: گزارش این نظر
location:
location: 'مکان:'
- view: نمایش
- edit: ویرایش
feed:
user:
title: روزنوشتهای %{user} در OpenStreetMap
level9: مرز منطقه شهری
level10: مرز دهستان/شهر
level11: محدوده محله
- types:
- cities: شهرها
- towns: شهرها
- places: مکانها
results:
no_results: نتیجهای یافت نشد
more_results: نتایج بیشتر
not_updated: روزآمدنشده
search: جستجو
search_guidance: 'جستجوی مسئلهها:'
- link_to_reports: دیدن گزارشها
states:
ignored: نادیدهگرفتهشده
open: باز
details_html: 'جزئیات بیشتر دربارهٔ یادداشت را اینجا ببینید: %{url}'
changeset_comment_notification:
hi: سلام %{to_user}،
- greeting: سلام،
commented:
subject_own: '[OpenStreetMap] %{commenter} روی یکی از بستههای تغییر شما
نظر داد'
remember: مرا به خاطر بسپار
lost password link: رمز عبورتان را فراموش کردهاید؟
login_button: ورود
- register now: اکنون نامنویسی کنید
with external: 'بهجای ثبت نام، از روش شخص ثالث استفاده کنید:'
auth failure: متأسفانه با این اطلاعات نمیتوان وارد شد.
destroy:
بعداً آن را در تنظیمات تغییر دهید.
by_signing_up:
privacy_policy: سیاست محرمانگی
- external auth: 'احراز هویت شخص ثالث:'
continue: ثبت نام
terms accepted: از اینکه شرایط جدید مشارکتکننده را پذیرفتید، سپاسگزاریم!
use external auth: بهجای ثبت نام، از روش شخص ثالث استفاده کنید
consider_pd: علاوه بر موارد بالا، میپذیرم که مشارکتهایم در مالکیت عمومی باشد.
consider_pd_why: این چیست؟
continue: ادامه
- decline: نمیپذیرم
you need to accept or decline: برای ادامه لطفاً بخوانید و سپس شرایط جدید مشارکتکننده
را بپذیرید یا رد کنید.
legale_select: 'كشور محل سكونت:'
update: Päivitä esto
activerecord:
errors:
- messages:
- invalid_email_address: '"%s" ei näytä olevan kelvollinen sähköpostiosoite.'
- email_address_not_routable: reittiohjeet eivät ole saatavilla
models:
user_mute:
is_already_muted: on jo hiljennetty
comment:
comment: 'Käyttäjä %{author} kommentoi muutoskokoelmaa #%{changeset_id}'
commented_at_by_html: '%{user} päivittänyt %{when}'
- comments:
- comment: 'Uusi kommentti käyttäjän %{author} muutoskokoelmassa #%{changeset_id}'
show:
title_all: Keskustelu OpenStreetMapin muutoskokoelmasta
title_particular: 'OpenStreetMap muutoskokoelma #%{changeset_id} keskustelu'
liian kauan.
changesets:
changeset:
- anonymous: Tuntematon
no_edits: (ei muokkauksia)
view_changeset_details: Näytä muutoskokoelman tarkemmat tiedot
index:
report: Ilmianna kommentti
location:
location: 'Sijainti:'
- view: Näytä
- edit: Muokkaa
feed:
user:
title: Käyttäjän %{user} OpenStreetMap-päiväkirjamerkinnät
level9: Kylän raja
level10: Asuinalueen raja
level11: Naapuruston raja
- types:
- cities: Kaupungit
- towns: Kylät
- places: Paikat
results:
no_results: Ei hakutuloksia
more_results: Lisää tuloksia
not_updated: Ei päivitetty
search: Etsi
search_guidance: 'Etsi tapauksia:'
- link_to_reports: Näytä ilmiannot
states:
ignored: Aiheeton
open: Käsittelyssä
details_html: Lisätietoja karttailmoituksesta löytyy osoitteesta %{url}.
changeset_comment_notification:
hi: Hei %{to_user}!
- greeting: Hei,
commented:
subject_own: '[OpenStreetMap] %{commenter} on kommentoinut muutoskokoelmaasi'
subject_other: '[OpenStreetMap] %{commenter} on kommentoinut sinua kiinnostavaa
remember: Pidä minut sisäänkirjautuneena
lost password link: Unohditko salasanasi?
login_button: Kirjaudu sisään
- register now: Rekisteröidy
with external: 'tai kirjaudu jonkun muun palvelun tunnuksilla:'
auth failure: Kirjautuminen epäonnistui.
destroy:
html: Rekisteröitymällä hyväksyt %{tou_link}, %{privacy_policy_link} ja %{contributor_terms_link}.
privacy_policy: tietosuojakäytäntö
contributor_terms: osallistumisehdot
- tou: käyttöehdot
- external auth: 'Kolmannen osapuolen todennus:'
continue: Rekisteröidy
terms accepted: Kiitos uusien osallistujaehtojen hyväksymisestä!
email_help:
informal_translations: epäviralliset käännökset
continue: Seuraava
declined: https://wiki.openstreetmap.org/wiki/Fi:Contributor_Terms_Declined
- decline: En hyväksy
you need to accept or decline: Ennen jatkamista lue läpi osallistumisehdot ja
hyväksy tai hylkää se.
legale_select: 'Valitse asuinmaasi:'
create: Luo esto
update: Päivitä esto
activerecord:
- errors:
- messages:
- invalid_email_address: '"%s" ei näytä olevan kelvollinen e-postiatressi'
- email_address_not_routable: reittiohjeet eivät ole saatavilla
models:
acl: Pääsyoikeuslista
changeset: Muutoskokoelma
comment:
comment: 'Käyttäjä %{author} kommentoi muutoskokoelmaa #%{changeset_id}'
commented_at_by_html: '%{user} päivittänyt %{when}'
- comments:
- comment: 'Uusi kommentti käyttäjän %{author} muutoskokoelmassa #%{changeset_id}'
show:
title_all: Keskustelu OpenStreetMapin muutoskokoelmasta
title_particular: 'OpenStreetMap muutoskokoelma #%{changeset_id} keskustelu'
liian kauan.
changesets:
changeset:
- anonymous: Tuntematon
no_edits: (ei mookkauksia)
view_changeset_details: Näytä muutoskokoelman tarkemmat tieot
index:
report: Ilmianna kommentti
location:
location: 'Paikka:'
- view: Näytä
- edit: Mookkaa
feed:
user:
title: Käyttäjän %{user} OpenStreetMap-päiväkirjamerkinnät
tourism:
museum: Myseymmi
zoo: Elläintarha
- types:
- cities: Kaupunkit
- towns: Kylät
- places: Paikat
results:
no_results: Ei hakuresyltaatteja
more_results: Lissää resyltaatteja
not_updated: Ei päivitetty
search: Hakea
search_guidance: 'Eti tapauksia:'
- link_to_reports: Näytä ilmiannot
states:
open: Avvaa
resolved: Ratkaistu
greeting: Hei,
changeset_comment_notification:
hi: Hei %{to_user},
- greeting: Hei,
commented:
partial_changeset_with_comment: kommentin kanssa '%{changeset_comment}'
partial_changeset_without_comment: ei kommenttia
password: 'Salasana:'
lost password link: Unhouttanu sinun salasanan?
login_button: Lokkaa sisäle
- register now: Luo konttu nyt
destroy:
title: Lokkaa ulos
heading: Lokkaa ulos OpenStreetMapista
activerecord:
errors:
messages:
- invalid_email_address: ne semble pas être une adresse de courriel valide
- email_address_not_routable: n’est pas routable
display_name_is_user_n: ne peut pas être user_n à moins que n ne soit votre
identifiant d’utilisateur
models:
longitude: Longitude
public: Public
description: Description
- gpx_file: Téléverser un fichier GPX
+ gpx_file: Choisir le fichier de trace GPS
visibility: Visibilité
tagstring: Balises
message:
old_nodes:
not_found:
sorry: Désolé, la version %{version} du nœud %{id} est introuvable.
+ timeout:
+ sorry: Désolé, l'historique du nœud avec l'ID %{id} a pris trop de temps à récupérer.
+ ways:
+ timeout:
+ sorry: Désolé, les données du chemin avec l'ID %{id} ont pris trop de temps
+ à récupérer.
old_ways:
not_found:
sorry: Désolé, la version %{version} du chemin %{id} est introuvable.
comment: Nouveau commentaire sur le groupe de modifications nº %{changeset_id}
par %{author}
commented_at_by_html: Mis à jour le %{when} par %{user}
- comments:
- comment: Nouveau commentaire sur le groupe de modifications %{changeset_id}
- par %{author}
show:
title_all: Discussion sur le groupe de modifications OpenStreetMap
title_particular: Discussion sur le groupe de modifications OpenStreetMap
avez demandés a pris trop de temps.
changesets:
changeset:
- anonymous: Anonyme
no_edits: (aucune modification)
view_changeset_details: Afficher les détails du groupe de modifications
index:
title: Groupe de modifications %{id}
created_by_html: Créé par %{link_user} le %{created}.
no_such_entry:
- title: Aucun ensemble de modifications de ce type
heading: 'Aucune entrée avec l’identifiant : %{id}'
body: Désolé, il n’y a aucun groupe de modifications avec l’identifiant %{id}.
Peut-être avez-vous fait une erreur en le recopiant ou suivi un lien erroné ?
report: Signaler ce commentaire
location:
location: 'Emplacement :'
- view: Afficher
- edit: Modifier
coordinates: '%{latitude} ; %{longitude}'
feed:
user:
level9: Limite de village ou arrondissement municipal
level10: Limite de quartier
level11: Frontière de voisinage
- types:
- cities: Grandes villes
- towns: Petites villes
- places: Lieux
results:
no_results: Aucun résultat n’a été trouvé
more_results: Plus de résultats
not_updated: Non mis à jour
search: Rechercher
search_guidance: 'Problèmes de recherche :'
- link_to_reports: Afficher les rapports
states:
ignored: Ignoré
open: Ouvert
avec la description « %{trace_description} » et sans balise
gpx_failure:
hi: Bonjour %{to_user},
- failed_to_import: 'n’a pas pu être importé. Voici l’erreur :'
+ failed_to_import: 'échec de l''importation en tant que fichier de trace GPS.
+ Veuillez vérifier que votre fichier est un fichier GPX valide ou une archive
+ contenant des fichiers GPX au format pris en charge (.tar.gz, .tar.bz2, .tar,
+ .zip, .gpx.gz, .gpx.bz2). Votre fichier pourrait-il présenter un problème
+ de format ou de syntaxe ? Voici l''erreur d''importation :'
more_info: Vous trouverez plus d’informations sur les échecs d’import GPX et
comment les éviter à l’adresse %{url}.
more_info_html: Vous trouverez plus d’informations sur les échecs d’import GPX
changeset_comment_notification:
description: 'Groupe de modifications OpenStreetMap #%{id}'
hi: Bonjour %{to_user},
- greeting: Bonjour,
commented:
subject_own: '[OpenStreetMap] %{commenter} a commenté un de vos groupes de
modifications'
remember: Se souvenir de moi
lost password link: Vous avez perdu votre mot de passe ?
login_button: Se connecter
- register now: S’inscrire maintenant
with external: 'Vous pouvez également utiliser un service tiers pour vous connecter :'
or: ou
auth failure: Désolé, mais les informations fournies n’ont pas permis de vous
destination: Accès réservé aux riverains
construction: Routes en construction
bus_stop: Arrêt de bus
- stop: Arrêter
bicycle_shop: Magasin de vélos
bicycle_rental: Location de vélos
bicycle_parking: Parking à vélos
une section sur les adresses de courriel
contributor_terms_url: https://wiki.osmfoundation.org/wiki/Licence/Contributor_Terms/FR
contributor_terms: Conditions de contribution
- tou: conditions d'utilisation
- external auth: 'Authentification tierce :'
continue: S’inscrire
terms accepted: Merci d’avoir accepté les nouveaux termes du contributeur !
email_help:
informal_translations: traductions informelles
continue: Continuer
declined: https://wiki.openstreetmap.org/wiki/Contributor_Terms_Declined
- decline: Refuser
you need to accept or decline: Veuillez lire et ensuite soit accepter ou refuser
les nouvelles Conditions du contributeur pour continuer.
legale_select: 'Veuillez sélectionner votre pays de résidence :'
create: Cree bloc
update: Inzorne bloc
activerecord:
- errors:
- messages:
- invalid_email_address: nol samee jessi une direzion di pueste eletroniche
- valide
models:
acl: Liste di control des jentradis
changeset: Grup di cambiaments
comment:
comment: 'Gnûf coment sul grup di cambiaments #%{changeset_id} di %{author}'
commented_at_by_html: Inzornât %{when} di %{user}
- comments:
- comment: 'Gnûf coment sul grup di cambiaments #%{changeset_id} di %{author}'
show:
title_all: Discussion sul grup di cambiaments di OpenStreetMap
title_particular: 'Discussion sul grup di cambiaments #%{changeset_id} di
domandât e je stade masse timp a cjamâsi.
changesets:
changeset:
- anonymous: Anonim
no_edits: (nissun cambiament)
view_changeset_details: Viôt detais dal grup di cambiaments
index:
report: Segnale chest coment
location:
location: 'Lûc:'
- view: Viôt
- edit: Cambie
feed:
user:
title: Vôs dal diari di OpenStreetMap par %{user}
level7: Confine municipâl
level8: Confin di citât
level9: Confin di vilaç
- types:
- cities: Citâts
- towns: Citadinis
- places: Puescj
results:
no_results: Nissun risultât
more_results: Altris risultâts
index:
reported_user: Utent segnalât
search: Cîr
- link_to_reports: Viôt lis segnalazions
states:
ignored: Ignorât
open: Viert
remember: Visiti di me
lost password link: Password pierdude?
login_button: Jentre
- register now: Regjistriti cumò
auth failure: Nus displâs, ma no si à rivât a jentrâ cun i dâts inserîts.
destroy:
title: Jes
private: Acès privât
construction: Stradis in costruzion
bus_stop: Fermade autobus
- stop: Fermade
bicycle_shop: Buteghe di bicicletis
welcome:
title: Benvignût!
header: Libare e modificabile
display name description: Il non utent che al vignarà mostrât a ducj. Tu podarâs
gambiâlu plui tart tes preferencis.
- external auth: 'Autenticazion vie une tierce part:'
continue: Regjistriti
terms accepted: Graziis par vê acetât i gnûfs tiermins par contribuî!
use external auth: In alternative, dopre une tierce part par jentrâ
come di Public Domini
consider_pd_why: ce isal chest?
continue: Va indevant
- decline: No aceti
you need to accept or decline: Par plasê lei e po acete o refude i gnûfs Tiermins
par Contribuî par lâ indevant.
legale_select: 'Sielç il stât dulà che tu âs la residences:'
create: Utsluting oanmeitsje
update: Utsluting bywurkje
activerecord:
- errors:
- messages:
- invalid_email_address: liket gjin jildich e-mailadres te wêzen
- email_address_not_routable: is net rûtearber
models:
acl: Tagongskontrôlelist
changeset: Wizigingsset
comment:
comment: 'Nije reäksje op wizigingsset #%{changeset_id} fan %{author}'
commented_at_by_html: Bywurke %{when} troch %{user}
- comments:
- comment: 'Nije reäksje op wizigingsset #%{changeset_id} fan %{author}'
show:
title_all: Oerlis oer OpenStreetMap-wizigingsset
title_particular: 'Oerlis oer OpenStreetMap-wizigingsset #%{changeset_id}'
duorre te lang.
changesets:
changeset:
- anonymous: Anonym
no_edits: (gjin bewurkings)
view_changeset_details: Wizigingssetgegevens besjen
index:
report: Dizze reäksje melde
location:
location: 'Lokaasje:'
- view: Besjen
- edit: Bewurkje
feed:
user:
title: OpenStreetMap Deiboekstikken fan %{user}
level9: Steds-/doarpsgrins
level10: Wenplak-/dielgebietsgrins
level11: Wyk-/buertgrins
- types:
- cities: Grutte stêden
- towns: Stêden
- places: Plakken
results:
no_results: Gjin treffers fûn
more_results: Mear treffers
not_updated: Net bywurke
search: Sykje
search_guidance: 'Problemen trochsykje:'
- link_to_reports: Meldings besjen
states:
ignored: Negearre
open: Iepen
details_html: Fierdere gegevens oer de notysje fine jo op %{url}.
changeset_comment_notification:
hi: Goeie %{to_user},
- greeting: Goeie,
commented:
subject_own: '[OpenStreetMap] %{commenter} hat op ien fan jo wizigingssets
reägearre'
remember: My ûnthâlde
lost password link: Jo wachtwurd kwyt?
login_button: Oanmelde
- register now: No ynskriuwe
with external: 'Brûk oars in treddepartij om jo oan te melden:'
auth failure: Spitich, koe jo net oanmelde mei dy gegevens.
destroy:
header: Frij en bewurkber
display name description: Jo meidochnamme dy't elkenien sjen kin. Jo kinne dy
letter yn 'e foarkarren feroarje.
- external auth: 'Tredde-autentifikaasje:'
continue: Ynskriuwe
terms accepted: Tankjewol foar it akseptearjen fan 'e nije bydragersbetingsten!
use external auth: Brûk oars in treddepartij om jo oan te melden
Publyk Domein
consider_pd_why: wat is dat?
continue: Fierder
- decline: Ofwize
you need to accept or decline: Lês de nije Bydragersbetingsten; jo kinne fierder
nei it akseptearjen of ôfwizen derfan.
legale_select: 'Lân fan ferbliuw:'
create: Cruthaigh bac
update: Cruthaigh bac
activerecord:
- errors:
- messages:
- invalid_email_address: ', is cosúil nach seoladh ríomhphost bailí é'
models:
changeset: Tacar athruithe
changeset_tag: Clib do Thacar athruithe
comment:
comment: Nóta tráchta nua ar thacar athruithe %{changeset_id} ó %{author}
commented_at_by_html: Nuashonraithe %{when} ó shin ag %{user}
- comments:
- comment: Nóta tráchta nua ar thacar athruithe %{changeset_id} ó %{author}
show:
title_all: Plé ar thacair athruithe OpenStreetMap
title_particular: Plé ar thacar athruithe %{changeset_id} de chuid OpenStreetMap
tú a aisghabháil.
changesets:
changeset:
- anonymous: Gan Ainm
no_edits: (níl aon athrú ann)
view_changeset_details: Amharc ar shonraí an tacair athruithe
index:
report: Déan an nóta tráchta seo a thuairisciú
location:
location: 'Suíomh:'
- view: Amharc
- edit: Cuir in eagar
feed:
user:
title: Iontrálacha dialainne OpenStreetMap le haghaidh %{user}
level8: Teorainn Cathrach
level9: Teorainn Sráidbhaile
level10: Teorainn Bruachbhaile
- types:
- cities: Cathracha
- towns: Bailte
- places: Áiteacha
results:
no_results: Gan torthaí
more_results: Tuilleadh torthaí
details: Tá tuilleadh sonraí faoin nóta ar fáil ag %{url}.
changeset_comment_notification:
hi: A %{to_user}, a chara,
- greeting: A chara,
commented:
subject_own: '[OpenStreetMap] D''fhág %{commenter} nóta tráchta ar cheann
de na tacair athruithe atá agat'
remember: Cuimhnigh orm
lost password link: Focal faire caillte agat?
login_button: Logáil isteach
- register now: Cláraigh anois
with external: 'Nó, bain úsáid as tríú páirtí le logáil isteach:'
auth failure: Ár leithscéil, níorbh fhéidir logáil isteach leis na sonraí sin.
destroy:
header: Saor in aisce agus oscailte don eagarthóireacht
display name description: An t-ainm úsáideora atá agat a thaispeántar go poiblí.
Is féidir leat é seo a athrú níos moille sna sainroghanna.
- external auth: 'Fíordheimhniú Tríú Páirtí:'
continue: Cláraigh
terms accepted: Go raibh maith agat as glacadh leis na téarmaí nua do rannchuiditheoirí.
use external auth: Nó, bain úsáid as tríú páirtí le logáil isteach
title: Téarmaí
heading: Téarmaí
consider_pd_why: céard é seo?
- decline: Diúltaigh
legale_select: 'Tír chónaithe:'
legale_names:
france: An Fhrainc
comment_from_html: Komantè a %{link_user} koté %{comment_created_at}
hide_link: Dévwè komantasyon-lasa
confirm: Konfirmé
- location:
- view: Vwè
diary_comments:
page:
comment: Komantasyon
level8: Lizyè a konmin
level9: Lizyè a vilaj
level10: Lizyè a sèksyon
- types:
- cities: Vil prensipal
- towns: Vil
results:
no_results: Yo pa jwenn p'on rézilta
issues:
ou konmanté. Maké-la ora a %{place}.'
changeset_comment_notification:
hi: Yéla %{to_user},
- greeting: Yéla,
commented:
subject_own: '[OpenStreetMap] %{commenter} voyé on komantasyon asi yonn a
krèy a modifikasyon a-w'
title_particular: Deasbaireachd air seata atharraichean OpenStreetMap %{changeset_id}
changesets:
changeset:
- anonymous: Gun ainm
no_edits: (cha deach a dheasachadh)
view_changeset_details: Seall mion-fhiosrachadh air an t-seata atharraichean
index:
confirm: Dearbhaich
location:
location: 'Àite:'
- view: Seall
- edit: Deasaich
feed:
user:
title: Clàran san leabhar-latha OpenStreetMap aig %{user}
level8: Crìoch baile
level9: Crìoch baile bhig
level10: Crìoch frith-bhaile
- types:
- cities: Bailtean
- towns: Bailtean
- places: Àiteachan
results:
no_results: Cha deach toradh a lorg
more_results: Barrachd toraidhean
details: Gheibh thu barrachd fiosrachaidh air an nòta air %{url}.
changeset_comment_notification:
hi: Shin thu, %{to_user},
- greeting: Shin thu,
commented:
subject_own: '[OpenStreetMap] Thug %{commenter} beachd air seata atharraichean
agad'
remember: Cuimhnich orm
lost password link: Na chaill thu am facal-faire agad?
login_button: Clàraich a-steach
- register now: Clàraich an-dràsta
with external: 'No cleachd treas-phàrtaidh airson clàradh a-steach:'
or: "no"
auth failure: Duilich ach chan urrainn dhuinn do clàradh a-steach leis an fiosrachadh
header: Saor agus gabhaidh deasachadh
display name description: An t-ainm-cleachdaiche agad a thèid a shealltainn
gu poblach. 'S urrainn dhut seo atharrachadh uair sam bith sna roghainnean.
- external auth: 'Dearbhadh treas-phàrtaidh:'
continue: Clàraich
terms accepted: Mòran taing gun do dh'aontaich thu ri teirmichean a' chom-pàirtiche!
or: "no"
mi dhuibh 'nam cho-thabhartaiche a chur sa Public Domain
consider_pd_why: Dè th`ann?
consider_pd_why_url: https://www.osmfoundation.org/wiki/License/Why_would_I_want_my_contributions_to_be_public_domain
- decline: Cha ghabh mi ris
you need to accept or decline: Feuch an leugh thu teirmichean ùra a' chom-pàirtiche
agus an uairsin aontaich no nach gabh riutha mus lean thu air adhart.
legale_select: 'Dùthaich còmhnaidh:'
activerecord:
errors:
messages:
- invalid_email_address: non semella ser un enderezo de correo electrónico válido
- email_address_not_routable: non é atinxíbel
display_name_is_user_n: non pode ser user_n agás que n sexa o teu identificador
de usuario
models:
longitude: Lonxitude
public: Público
description: Descrición
- gpx_file: Subir un ficheiro GPX
+ gpx_file: Elixir un ficheiro de pista GPS
visibility: Visibilidade
tagstring: Etiquetas
message:
note: nota
timeout:
title: Tempo excedido
- sorry: Tardouse demasiado en obter os datos para o %{type} co id %{id}.
+ sorry: Tardouse demasiado en obter os datos para o tipo "%{type}" co identificador
+ %{id}.
type:
node: nó
way: vía
wiki_link:
key: A páxina de descrición da etiqueta %{key}
tag: A páxina de descrición da etiqueta %{key}=%{value}
- wikidata_link: O elemento %{page} no Wikidata
+ wikidata_link: O elemento %{page} en Wikidata
wikipedia_link: O artigo sobre %{page} na Wikipedia
- wikimedia_commons_link: O elemento %{page} en Wikimedia Comúns
+ wikimedia_commons_link: O elemento %{page} en Wikimedia Commons
telephone_link: Chamar a %{phone_number}
colour_preview: Previsualización da cor %{colour_value}
email_link: Correo electrónico %{email}
query:
title: Consultar os elementos
- introduction: Prema no mapa para atopar elementos preto daquí.
- nearby: Elementos preto daquí
- enclosing: Elementos darredor
+ introduction: Preme no mapa para atopar elementos preto de aquí.
+ nearby: Elementos preto de aquí
+ enclosing: Elementos arredor
+ nodes:
+ timeout:
+ sorry: Tardouse demasiado en obter os datos para o nodo co identificador %{id}.
old_nodes:
not_found:
sorry: Sentímolo, non se puido atopar a versión %{version} do nó n.º %{id}.
+ timeout:
+ sorry: Tardouse demasiado en obter o historial para o nodo co identificador
+ %{id}.
+ ways:
+ timeout:
+ sorry: Tardouse demasiado en obter os datos para a vía co identificador %{id}.
old_ways:
not_found:
sorry: Sentímolo, non se puido atopar a versión %{version} da vía n.º %{id}.
+ timeout:
+ sorry: Tardouse demasiado en obter o historial para a vía co identificador %{id}.
+ relations:
+ timeout:
+ sorry: Tardouse demasiado en obter os datos para a relación co identificador
+ %{id}.
old_relations:
not_found:
sorry: Sentímolo, non se puido atopar a versión %{version} da relación n.º %{id}.
+ timeout:
+ sorry: Tardouse demasiado en obter o historial para a relación co identificador
+ %{id}.
changeset_comments:
feeds:
comment:
comment: Novo comentario sobre o conxunto de modificacións n.º %{changeset_id}
de %{author}
commented_at_by_html: Actualizado %{when} por %{user}
- comments:
- comment: Novo comentario sobre o conxunto de modificacións n.º %{changeset_id}
- de %{author}
show:
title_all: Parola do conxunto de modificacións no OpenStreetMap
title_particular: Conversa do conxunto de modificacións n.º %{changeset_id}
que solicitaches tardou moito en obterse.
changesets:
changeset:
- anonymous: Anónimo
no_edits: (sen edicións)
view_changeset_details: Ollar os detalles do conxunto de modificacións
index:
title: Conxunto de modificacións %{id}
created_by_html: Creado por %{link_user} o %{created}.
no_such_entry:
- title: Non existe ese conxunto de modificacións
heading: 'Non hai ningunha entrada co ID: %{id}'
body: Non existe ningún conxunto de modificacións co identificador %{id}. Comproba
a ortografía ou que a ligazón que seguiches estea ben.
report: Denunciar este comentario
location:
location: 'Localización:'
- view: Ollar
- edit: Editar
feed:
user:
title: Entradas no diario do OpenStreetMap de %{user}
level9: Fronteira da vila
level10: Fronteira do barrio
level11: Fronteira de barrio
- types:
- cities: Cidades
- towns: Municipios
- places: Lugares
results:
no_results: Non se atopou ningún resultado
more_results: Máis resultados
not_updated: Non Actualizados
search: Procurar
search_guidance: 'Procurar problemas:'
- link_to_reports: Ollar denuncias
states:
ignored: Ignorados
open: Abertos
befriend_them: Tamén pode engadilo coma amizade no %{befriendurl}.
befriend_them_html: Tamén podes engadilo como amizade no %{befriendurl}.
gpx_description:
- description_with_tags: 'Parece o teu ficheiro GPX %{trace_name} coa descrición
+ description_with_tags: 'Parece que o teu ficheiro %{trace_name} coa descrición
%{trace_description} e as seguintes etiquetas: %{tags}'
- description_with_tags_html: 'Parece o teu ficheiro GPX %{trace_name} coa descrición
+ description_with_tags_html: 'Parece que o teu ficheiro %{trace_name} coa descrición
%{trace_description} e as seguintes etiquetas: %{tags}'
- description_with_no_tags: Parece o teu ficheiro GPX %{trace_name} coa descrición
+ description_with_no_tags: Parece que o teu ficheiro %{trace_name} coa descrición
%{trace_description} e sen etiquetas
- description_with_no_tags_html: Parece o teu ficheiro GPX %{trace_name} coa descrición
+ description_with_no_tags_html: Parece que o teu ficheiro %{trace_name} coa descrición
%{trace_description} e sen etiquetas
gpx_failure:
hi: 'Ola %{to_user}:'
- failed_to_import: 'erro ao importar. Velaquí atópase o erro:'
+ failed_to_import: 'non se puido importar como ficheiro de pista GPS. Verifica
+ que o teu ficheiro sexa un ficheiro GPX válido ou un arquivo que conteña ficheiros
+ GPX no formato admitido (.tar.gz, .tar.bz2, .tar, .zip, .gpx.gz, .gpx.bz2).
+ Seica hai algún problema de formato ou de sintaxe co teu ficheiro? Velaquí
+ está o erro de importación:'
more_info: Máis información sobre os erros de importación de GPX e como evitalos
en %{url}.
more_info_html: Máis información sobre os erros de importación de GPX e como
all_your_traces_html: Podes atopar todas as pistas GPX que subiches en %{url}.
subject: '[OpenStreetMap] Importación GPX correcta'
signup_confirm:
- subject: '[OpenStreetMap] Dámoslle a benvida ao OpenStreetMap'
+ subject: '[OpenStreetMap] Dámosche a benvida ao OpenStreetMap'
greeting: Boas!
created: Alguén (se cadra ti) acaba de crear unha conta en %{site_url}.
confirm: 'Antes de facer ren, cómpre confirmar que esta solicitude veu de ti.
changeset_comment_notification:
description: Conxunto de modificacións do OpenStreetMap n.º %{id}
hi: 'Ola, %{to_user}:'
- greeting: 'Ola:'
commented:
subject_own: O %{commenter} de [OpenStreetMap] fixo un comentario nun dos
teus conxuntos de modificacións
remember: Lembrádeme
lost password link: Perdiches o teu contrasinal?
login_button: Acceder ao sistema
- register now: Rexístrate agora
with external: ou accede cun servizo de terceiros
or: ou
auth failure: Sentímolo, non puido acceder ó sistema con eses datos.
hospital: Hospital
building: Edificio significativo
station: Estación de ferrocarrís
+ railway_halt: Apeadoiro de ferrocarrís
+ subway_station: Estación de metro
+ tram_stop: Parada de tranvía
summit: Cumio
peak: Cume
tunnel: Bordo a raias = túnel
destination: Acceso a destino
construction: Estradas baixo construción
bus_stop: Parada de bus
- stop: Parada
bicycle_shop: Tenda de bicicletas
bicycle_rental: Alugueiro de bicicletas
bicycle_parking: Aparcadoiro de bicicletas
privacy_policy_title: Política de protección de datos da OSMF, que contén
unha sección sobre os enderezos de correo electrónico
contributor_terms: termos do colaborador
- tou: termos de uso
- external auth: 'Autenticación de terceiros:'
continue: Rexistrarse
terms accepted: Grazas por aceptar os novos termos do colaborador!
email_help:
readable_summary: resumo lexible por humanos
informal_translations: traducións informais
continue: Continuar
- decline: Rexeitar
+ cancel: Cancelar
you need to accept or decline: Le e, deseguido, acepta ou rexeita os novos termos
do colaborador para continuar.
- legale_select: 'Escolle o teu país de residencia:'
+ legale_select: 'País de residencia:'
legale_names:
france: Francia
italy: Italia
add: Engadir a nota
notes_paging_nav:
showing_page: Páxina %{page}
+ next: Seguinte
+ previous: Anterior
javascripts:
close: Pechar
share:
empty: Non hai ningunha censura que amosar.
heading: Listaxe de censuras
title: Listaxe de censuras
+ new: Nova censura
new:
heading: Escriba a información da nova censura
title: Creando unha nova censura
level8: શહેરની સીમા
level9: ગામની સીમા
level10: ઉપનગરની સીમા
- types:
- cities: શહેરો
- towns: નગરો
results:
no_results: કોઈ પરિણામો ન મળ્યા
issues:
reported_user: જાણ કરાયેલ વપરાશકર્તા
not_updated: સુધારેલ નથી
search_guidance: 'સમસ્યાઓ શોધો:'
- link_to_reports: અહેવાલો જુઓ
page:
user_not_found: વપરાશકર્તા અસ્તિત્વમાં નથી
issues_not_found: આવી કોઈ સમસ્યાઓ મળી નહીં
greeting: નમસ્તે,
changeset_comment_notification:
hi: નમસ્તે %{to_user},
- greeting: નમસ્તે,
confirmations:
confirm:
button: ખાતરી કરો
welcome: OpenStreetMapમાં સ્વાગત છે
by_signing_up:
privacy_policy: ગોપનિયતા નીતિ
- tou: વપરાશની શરતો
email_help:
privacy_policy: ગોપનીયતા નીતિ
or: અથવા
activerecord:
errors:
messages:
- invalid_email_address: זאת אינה כתובת דוא״ל תקנית
- email_address_not_routable: לא בר־ניתוב
display_name_is_user_n: זה לא יכול להיות user_n אלא אם כן n הוא מזהה המשתמש
שלך
models:
note: הערה
timeout:
title: שגיאת זמן מוקצב
- sorry: ×\90× ×\95 ×\9e×ª× ×¦×\9c×\99×\9d, ×\90×\9a ×\98×¢×\99× ×ª ×\94×\9e×\99×\93×¢ ×¢×\91×\95ר %{type} ×\9eספר %{id}, ×\90ר×\9b×\94 זמן רב מדי.
+ sorry: ×\90× ×\95 ×\9e×ª× ×¦×\9c×\99×\9d, ×\90×\97×\96×\95ר ×\94× ×ª×\95× ×\99×\9d ×¢×\91×\95ר %{type} ×\9eספר %{id} ×\90ר×\9a זמן רב מדי.
type:
node: נקודה
way: קו
introduction: יש ללחוץ על המפה כדי למצוא ישויות בסביבה.
nearby: ישויות בסביבה
enclosing: ישויות מכילות
+ nodes:
+ timeout:
+ sorry: אנו מתנצלים, אחזור הנתונים עבור הנקודה מספר %{id} ארך זמן רב מדי.
old_nodes:
not_found:
sorry: לא ניתן למצוא את נקודה מס׳ %{id} בגרסה %{version}, מחילה.
+ timeout:
+ sorry: אנו מתנצלים, אחזור ההיסטוריה של נקודה מספר %{id} ארך זמן רב מדי.
+ ways:
+ timeout:
+ sorry: אנו מתנצלים, אחזור הנתונים עבור הדרך מספר %{id} ארך זמן רב מדי.
old_ways:
not_found:
sorry: לא ניתן למצוא את דרך מס׳ %{id} בגרסה %{version}, מחילה.
+ timeout:
+ sorry: אנו מתנצלים, אחזור ההיסטוריה של דרך מספר %{id} ארך זמן רב מדי.
+ relations:
+ timeout:
+ sorry: אנו מתנצלים, אחזור הנתונים עבור היחס מספר %{id} ארך זמן רב מדי.
old_relations:
not_found:
sorry: לא ניתן למצוא את יחס מס׳ %{id} בגרסה %{version}, מחילה.
+ timeout:
+ sorry: אנו מתנצלים, אחזור ההיסטוריה של יחס מספר %{id} ארך זמן רב מדי.
changeset_comments:
feeds:
comment:
comment: הערה חדשה על ערכת שינויים מס׳ %{changeset_id} מאת %{author}
commented_at_by_html: עודכנה %{when} על־ידי %{user}
- comments:
- comment: הערה חדשה בערכת שינויים מס׳ %{changeset_id} מאת %{author}
show:
title_all: דיון בערכת שינויים של OpenStreetMap
title_particular: דיון בערכת שינויים מס׳ %{changeset_id} של OpenStreetMap
הסליחה.
changesets:
changeset:
- anonymous: אלמוני
no_edits: (אין עריכות)
view_changeset_details: הצגת פרטי ערכת שינויים
index:
title: ערכת שינויים %{id}
created_by_html: נוצרה על־ידי %{link_user} ב־%{created}.
no_such_entry:
- title: אין ערכת שינויים כזאת
heading: 'אין רשומה עם המזהה: %{id}'
body: סליחה, אין ערכת שינויים עם המזהה %{id}. אולי האיות לא נכון ואולי לחצת
על קישור שגוי.
report: לדווח על ההערה הזאת
location:
location: 'מיקום:'
- view: הצגה
- edit: עריכה
feed:
user:
title: רשומות יומן OpenStreetMap של %{user}
level9: גבול רובע
level10: גבול שכונה
level11: גבול תת־שכונה
- types:
- cities: ערים
- towns: עיירות
- places: מקומות
results:
no_results: לא נמצאו תוצאות
more_results: תוצאות נוספות
not_updated: לא עדכני
search: חיפוש
search_guidance: 'חיפוש בעיות:'
- link_to_reports: הצגת דיווחים
states:
ignored: התעלמות
open: פתוחה
changeset_comment_notification:
description: ערכת שינויים של OpenStreetMap מס׳ %{id}
hi: שלום %{to_user},
- greeting: שלום,
commented:
subject_own: [OpenStreetMap] קיבלת הערה מאת %{commenter} על אחת מערכות השינויים
שלך
remember: לזכור אותי
lost password link: איבדת את הסיסמה שלך?
login_button: כניסה
- register now: להירשם עכשיו
with external: לחלופין, אפשר להשתמש בצד שלישי כדי להיכנס
or: או
auth failure: סליחה, לא ניתן להיכנס עם הפרטים האלה.
hospital: בית חולים
building: בניין בעל חשיבות
station: תחנת רכבת
+ railway_halt: מעצור מסילת ברזל
+ subway_station: תחנת רכבת תחתית
+ tram_stop: תחנת רכבת קלה
summit: פסגה
peak: פסגה
tunnel: קו מקווקו = מנהרה
destination: גישה ליעד
construction: דרכים בבנייה
bus_stop: תחנת אוטובוס
- stop: עצירה
bicycle_shop: חנות אופניים
bicycle_rental: השכרת אופניים
bicycle_parking: חניית אופניים
privacy_policy: מדיניות הפרטיות
privacy_policy_title: מדיניות הפרטיות של OSMF כוללת סעיף על כתובות דוא״ל
contributor_terms: תנאי התרומה
- tou: תנאי השימוש
- external auth: 'אימות עם צד שלישי:'
continue: הרשמה
terms accepted: תודה על קבלת תנאי התרומה החדשים!
email_help:
informal_translations: תרגומים בלתי־פורמליים
continue: להמשיך
declined: https://wiki.openstreetmap.org/wiki/He:Contributor_Terms_Declined
- decline: סירוב
you need to accept or decline: נא לקרוא ולקבל או לדחות את תנאי התרומה החדשים
כדי להמשיך.
legale_select: 'נא לבחור ארץ מגורים:'
redactions:
edit:
heading: עריכת הסרה
- title: ער×\99×\9bת ×\97×\99ת×\95×\9a
+ title: ער×\99×\9bת ×\94סר×\94
index:
empty: אין הסרות שאפשר להציג.
- heading: רש×\99×\9eת ×\97×\99ת×\95×\9b×\99×\9d
+ heading: רש×\99×\9eת ×\94סר×\95ת
title: רשימת הסרות
+ new: הסרה חדשה
new:
heading: הוספת מידע להסרה חדשה
- title: ×\9eת×\91צעת ×\99צ×\99רת ×\97×\99ת×\95×\9a ×\97×\93ש
+ title: ×\9eת×\91צעת ×\99צ×\99רת ×\94סר×\94 ×\97×\93ש×\94
show:
description: 'תיאור:'
heading: הצגת ההסרה „%{title}”
- title: ×\94צ×\92ת ×\97×\99ת×\95×\9a
+ title: ×\94צ×\92ת ×\94סר×\94
user: 'יוצר:'
edit: עריכת ההסרה הזאת
- destroy: ×\94סרת ×\94×\97×\99ת×\95×\9a ×\94×\96×\94
+ destroy: ×\9e×\97×\99קת ×\94×\94סר×\94 ×\94×\96×\90ת
confirm: באמת?
create:
flash: הסרה נוצרה.
destroy:
not_empty: ההסרה אינה ריקה. נא לבטל את הסרות הגרסאות ששיכות להסרה הזאת לפני
ביטולה.
- flash: ×\94×\97×\99ת×\95×\9a × ×\94רס.
+ flash: ×\94×\94סר×\94 × ×\94רס×\94.
error: אירעה שגיאה בעת ביטול ההסרה הזאת.
validations:
leading_whitespace: יש רווח בהתחלה
create: ब्लॉक बनाएँ
update: ब्लॉक को अपडेट करें
activerecord:
- errors:
- messages:
- invalid_email_address: 'यह ई-मेल ऐड्रेस संभवत: अमान्य है'
- email_address_not_routable: रास्ता बनाने लायक नहीं है
models:
acl: अभिगम नियंत्रण सूची
changeset: बदलाव
comment:
comment: '%{author} द्वारा #%{changeset_id} पर नया कमेंट'
commented_at_by_html: '%{user} द्वारा %{when} को अपडेट किया गया'
- comments:
- comment: '%{author} द्वारा चेंजसेट %{changeset_id} पर नया कमेंट'
show:
title_all: ओपनस्ट्रीटमैप चेंजसेट चर्चा
title_particular: ओपनस्ट्रीटमैप चेंजसेट %{changeset_id} चर्चा
कुछ ज़्यादा ही वक्त लग गया।
changesets:
changeset:
- anonymous: अनाम
no_edits: (कोई सम्पादन नहीं है)
view_changeset_details: इस changeset के विवरण देखे
index:
report: इस कमेंट को रिपोर्ट करें
location:
location: 'स्थान:'
- view: देखें
- edit: सम्पादित करें
feed:
user:
title: '%{user} के लिए ओपनस्ट्रीटमैप डायरी एंट्री'
level8: शहर सीमा
level9: गांव सीमा
level10: इलाके की सीमा
- types:
- cities: नगर
- towns: शहर
- places: स्थल
issues:
index:
title: समस्याएँ
hospital: अस्पताल
building: महत्वपूर्ण भवन
station: रेलवे स्टेशन
- stop: रोकें
traces:
new:
visibility_help: इसका क्या मतलब है?
tab_title: साइन अप करें
support: सहायता
or: या
+ terms:
+ cancel: रद्द करें
index:
title: सदस्य
heading: सदस्य
notes_paging_nav:
showing_page: पृष्ठ %{page}
next: अगला
+ previous: पिछला
javascripts:
site:
createnote_disabled_tooltip: नोट जोड़ने के लिए जूम इन करें
create: Napravi blokadu
update: Ažuriraj blokadu
activerecord:
- errors:
- messages:
- invalid_email_address: ne izgleda kao ispravna adresa e-pošte
models:
acl: Kontrole pristupa
changeset: Set promjena
comment:
comment: 'Novi komentar na setu promjena #%{changeset_id} od %{author}'
commented_at_by_html: Osvježio korisnik %{user} %{when}
- comments:
- comment: 'Novi komentar od %{author} na setu promjena #%{changeset_id}'
show:
title_all: Rasprava o OpenStreetMap setu promjena
title_particular: 'Rasprava o OpenStreetMap setu promjena #%{changeset_id}'
changesets:
changeset:
- anonymous: Anoniman
no_edits: (nema promjena)
view_changeset_details: Prikaži detalje seta promjena
index:
confirm: Potvrdi
location:
location: 'Lokacija:'
- view: Prikaži
- edit: Uredi
feed:
user:
title: Zapisi OpenStreetMap dnevnika od korisnika %{user}
level8: Granica naselja
level9: Granica sela
level10: Granica predgrađa
- types:
- cities: Gradovi
- towns: Manji gradovi
- places: Mjesta
results:
no_results: Nisu nađeni rezultati
more_results: Više rezultata
remember: Zapamti me
lost password link: Izgubljena zaporka?
login_button: Prijava
- register now: Registrirajte se sada
with external: 'Ili koristite drugi servis za prijavljivanje:'
auth failure: Žao mi je, ne mogu prijaviti s ovim detaljima.
destroy:
header: Slobodna i svatko je može uređivati
display name description: Javno prikazano korisničko ime. Možete ga promjeniti
i kasnije u postavkama.
- external auth: 'Prijavljivanje s drugog servisa:'
continue: Otvori račun
terms accepted: Hvala za prihvaćanje novih pridonositeljskih uvjeta!
use external auth: Alternativno, koristite drugi servis za prijavljivanje
vlasništvu (Public Domain)
consider_pd_why: što je ovo?
continue: Nastavi
- decline: Odbaci
you need to accept or decline: Molim pročitaj, a zatim ili prihvati ili odbij
nove Uvjete doprinošenja.
legale_select: 'Molimo odaberite svoju zemlju prebivališta:'
activerecord:
errors:
messages:
- invalid_email_address: njezda so płaćiwa mejlkowa adresa być
- email_address_not_routable: njeje routojomna
display_name_is_user_n: njemóže wužiwar user_n być, chibazo n je twój wužiwarski
ID
models:
comment:
comment: Nowy komentar k sadźbje změnow čo. %{changeset_id} wot %{author}
commented_at_by_html: Aktualizowany %{when} wot %{user}
- comments:
- comment: Nowy komentar k sadźbje změnow čo. %{changeset_id} wot %{author}
show:
title_all: Diskusija wo sadźbje změnow OpenStreetMap
title_particular: Diskusija wo sadźbje změnow čo. %{changeset_id} OpenStreetMap
sorry: Bohužel je předołho trało, wot tebje požadanu lisćinu komentarow wotwołać.
changesets:
changeset:
- anonymous: Anonymnje
no_edits: (žane změny)
view_changeset_details: Podrobnosće sadźby změnow pokazać
index:
report: Tutón komentar zdźělić
location:
location: 'Městno:'
- view: Pokazać
- edit: Wobdźěłać
feed:
user:
title: OpenStreetMap dźenikowe zapiski wot wužiwarja %{user}
level9: hranica měšćanskeho dźěla
level10: hranica štwórće
level11: Susodstwowa hranica
- types:
- cities: wulkoměsta
- towns: města
- places: městna
results:
no_results: Žane wuslědki namakane
more_results: Dalše wuslědki
not_updated: Njeaktualizowany
search: Pytać
search_guidance: 'Problemy přepytać:'
- link_to_reports: Rozprawy sej wobhladać
states:
ignored: Ignorowany
open: Wočinjeny
details_html: Dalše podrobnosće wo pokazce namakaš pod %{url}.
changeset_comment_notification:
hi: Witaj %{to_user},
- greeting: Witaj,
commented:
subject_own: '[OpenStreetMap] %{commenter} je jednu z twojich změnow komentował(a)'
subject_other: '[OpenStreetMap] %{commenter} je sadźbu změnow komentował,
remember: Spomjatkować sej
lost password link: Swoje hesło zabył?
login_button: Přizjewjenje
- register now: Nětko registrować
with external: 'Wužiwaj jako alternatiwu třećeho za přizjewjenje:'
auth failure: Bohužel přizjewjenje z tutymi podaćemi móžno njeje.
destroy:
w nastajenjach změnić.
by_signing_up:
privacy_policy: prawidła priwatnosće
- external auth: Awtentifikacija přez třeću stronu
continue: Registrować
terms accepted: Dźakujemy so, zo sy nowe wuměnjenja za sobuskutkowarjow akceptował!
use external auth: Jako alternatiwa wužij třeću stronu za přizjewjenje
consider_pd_why_url: https://www.osmfoundation.org/wiki/License/Why_would_I_want_my_contributions_to_be_public_domain
continue: Dale
declined: https://wiki.openstreetmap.org/wiki/DE:Contributor_Terms_Declined
- decline: Wotpokazać
you need to accept or decline: Prošu přečitaj nowe wužiwarske wuměnjenja a akceptuj
abo wotpokazaj je, prjedy hač dale činiš.
legale_select: 'Prošu wubjer kraj swojeho bydlišća:'
activerecord:
errors:
messages:
- invalid_email_address: nem tűnik érvényes e-mail-címnek
- email_address_not_routable: nem irányítható
display_name_is_user_n: nem lehet user_n, hacsak nem az n a Te felhasználói
azonosítód
models:
comment:
comment: 'Új hozzászólás #%{changeset_id} módosításcsomaghoz %{author} felhasználótól'
commented_at_by_html: '%{user} frissítette ekkor: %{when}'
- comments:
- comment: 'Új hozzászólás #%{changeset_id} módosításcsomaghoz %{author} felhasználótól'
show:
title_all: OpenStreetMap módosításcsomag-megbeszélés
title_particular: 'A #%{changeset_id} OpenStreetMap módosításcsomaghoz tartozó
listájának lekérése.
changesets:
changeset:
- anonymous: Névtelen
no_edits: (nincs szerkesztés)
view_changeset_details: Módosításcsomag részleteinek megtekintése
index:
title: '%{id} számú módosításcsomag'
created_by_html: 'Létrehozta: %{link_user} (%{created}).'
no_such_entry:
- title: Nincs ilyen módosítócsomag
heading: 'Nincs naplóbejegyzés ezzel az azonosítóval: %{id}'
body: Sajnáljuk, nincs %{id} azonosítójú módosítócsomag. Ellenőrizd a helyességét.
Az is lehet, hogy rossz linkre kattintottál.
report: Hozzászólás bejelentése
location:
location: 'Hely:'
- view: Megtekintés
- edit: Szerkesztés
feed:
user:
title: '%{user} OpenStreetMap naplóbejegyzései'
level9: Faluhatár
level10: Városrészhatár
level11: Környékhatár
- types:
- cities: Nagyvárosok
- towns: Kisvárosok
- places: Helyek
results:
no_results: Nincs találat
more_results: További eredmények
not_updated: Nem frissített
search: Keresés
search_guidance: 'Problémák keresése:'
- link_to_reports: Bejelentések megtekintése
states:
ignored: Figyelmen kívül hagyva
open: Nyitva
changeset_comment_notification:
description: 'OpenStreetMap módosításcsomag #%{id}'
hi: Szia %{to_user}!
- greeting: Szia!
commented:
subject_own: '[OpenStreetMap] %{commenter} hozzászólt az egyik módosításcsomagodhoz'
subject_other: '[OpenStreetMap] %{commenter} hozzászólt egy módosításcsomaghoz,
remember: Emlékezz rám
lost password link: Elfelejtetted a jelszavad?
login_button: Bejelentkezés
- register now: Regisztrálj most
with external: 'Alternatívaként használj külső fiókot a bejelentkezéshez:'
auth failure: Sajnáljuk, ilyen adatokkal nem tudsz bejelentkezni.
destroy:
destination: Csak célforgalom
construction: Épülő utak
bus_stop: Buszmegálló
- stop: Megálló
bicycle_shop: Kerékpárbolt
bicycle_rental: Kerékpárkölcsönzés
bicycle_parking: Kerékpártároló
privacy_policy: adatvédelmi irányelvek
privacy_policy_title: Az OSMF adatvédelmi szabályzata, beleértve az e-mail
címekről szóló részt
- external auth: 'Harmadik fél általi hitelesítés:'
continue: Regisztráció
terms accepted: Köszönjük, hogy elfogadtad az új közreműködési feltételeket!
use external auth: Alternatívaként használhatsz külső fiókokat a bejelentkezéshez
readable_summary: ember által olvasható összefoglaló
informal_translations: informális fordítások
continue: Folytatás
- decline: Elutasítás
you need to accept or decline: A folytatáshoz kérjük, olvasd el, majd fogadd
el vagy utasítsd el az új közreműködési feltételeket.
legale_select: 'Kérlek, válaszd ki a lakóhelyed szerinti országot:'
create: Registrar
update: Actualisar
redaction:
- create: Crear suppression
- update: Salveguardar suppression
+ create: Crear censura
+ update: Salveguardar censura
trace:
create: Incargar
update: Salveguardar modificationes
activerecord:
errors:
messages:
- invalid_email_address: non pare esser un adresse de e-mail valide
- email_address_not_routable: non es attingibile
display_name_is_user_n: non pote esser user_n si n non es tu ID de usator
models:
user_mute:
longitude: Longitude
public: Public
description: Description
- gpx_file: Incargar file GPX
+ gpx_file: Elige un file de tracia GPS
visibility: Visibilitate
tagstring: Etiquettas
message:
changeset: gruppo de modificationes
note: nota
redacted:
- redaction: Suppression %{id}
+ redaction: Censura %{id}
message_html: Le version %{version} de iste %{type} non pote esser monstrate
- perque illo ha essite supprimite. Vide %{redaction_link} pro detalios.
+ perque illo ha essite censurate. Vide %{redaction_link} pro detalios.
type:
node: nodo
way: via
introduction: Clicca sur le carta pro cercar objectos a proximitate.
nearby: Objectos proxime
enclosing: Objectos inglobante
+ nodes:
+ timeout:
+ sorry: Pardono, le datos pro le nodo con le ID %{id} ha prendite troppo de tempore
+ pro esser recuperate.
old_nodes:
not_found:
sorry: Guai, le version %{version} del nodo №%{id} non pote esser trovate.
+ timeout:
+ sorry: Pardono, le historia del nodo con le ID %{id} ha prendite troppo de tempore
+ pro esser recuperate.
+ ways:
+ timeout:
+ sorry: Pardono, le datos pro le via con le ID %{id} ha prendite troppo de tempore
+ pro esser recuperate.
old_ways:
not_found:
sorry: Guai, le version %{version} del via №%{id} non pote esser trovate.
+ timeout:
+ sorry: Pardono, le historia del via con le ID %{id} ha prendite troppo de tempore
+ pro esser recuperate.
+ relations:
+ timeout:
+ sorry: Pardono, le datos pro le relation con le ID %{id} ha prendite troppo
+ de tempore pro esser recuperate.
old_relations:
not_found:
sorry: Guai, le version %{version} del relation №%{id} non pote esser trovate.
+ timeout:
+ sorry: Pardono, le historia del relation con le ID %{id} ha prendite troppo
+ de tempore pro esser recuperate.
changeset_comments:
feeds:
comment:
comment: Nove commento sur le gruppo de modificationes № %{changeset_id} per
%{author}
commented_at_by_html: Actualisate %{when} per %{user}
- comments:
- comment: Nove commento sur le gruppo de modificationes № %{changeset_id} per
- %{author}
show:
title_all: Discussion sur un gruppo de modificationes in OpenStreetMap
title_particular: Discussion sur le gruppo de modificationes OpenStreetMap
tardava troppo de tempore pro esser recuperate.
changesets:
changeset:
- anonymous: Anonyme
no_edits: (nulle modification)
view_changeset_details: Vider detalios del gruppo de modificationes
index:
title: Gruppo de modificationes %{id}
created_by_html: Create per %{link_user} le %{created}.
no_such_entry:
- title: Gruppo de modificationes non trovate
heading: 'Nulle entrata con le ID: %{id}'
body: Non existe un gruppo de modificationes con le ID %{id}. Per favor verifica
le orthographia, o pote esser que le ligamine que tu sequeva es incorrecte.
report: Signalar iste commento
location:
location: 'Loco:'
- view: Vider
- edit: Modificar
feed:
user:
title: Entratas de diario de OpenStreetMap de %{user}
level9: Limite de village
level10: Limite de suburbio
level11: Frontiera de quartiero
- types:
- cities: Citates
- towns: Villages
- places: Locos
results:
no_results: Nulle resultato trovate
more_results: Plus resultatos
not_updated: Non actualisate
search: Recerca
search_guidance: 'Cercar problemas:'
- link_to_reports: Vider reportos
states:
ignored: Ignorate
open: Aperte
befriend_them: Tu pote equalmente adder le/la como amico a %{befriendurl}.
befriend_them_html: Tu pote equalmente adder le/la como amico a %{befriendurl}.
gpx_description:
- description_with_tags: 'Pare que tu file GPX %{trace_name} con le description
+ description_with_tags: 'Pare que tu file %{trace_name} con le description %{trace_description}
+ e le sequente etiquettas: %{tags}'
+ description_with_tags_html: 'Pare que tu file %{trace_name} con le description
%{trace_description} e le sequente etiquettas: %{tags}'
- description_with_tags_html: 'Pare que tu file GPX %{trace_name} con le description
- %{trace_description} e le sequente etiquettas: %{tags}'
- description_with_no_tags: Pare que tu file GPX %{trace_name} con le description
+ description_with_no_tags: Pare que tu file %{trace_name} con le description
%{trace_description} e sin etiquettas
- description_with_no_tags_html: Pare que tu file GPX %{trace_name} con le description
+ description_with_no_tags_html: Pare que tu file %{trace_name} con le description
%{trace_description} e sin etiquettas
gpx_failure:
hi: Salute %{to_user},
- failed_to_import: 'ha fallite de importar. Ecce le error:'
+ failed_to_import: 'non poteva esser importate como file de tracia GPS. Per favor
+ verifica que le file es un file GPX valide o un archivo que contine file(s)
+ GPX in un formato supportate (.tar.gz, .tar.bz2, .tar, .zip, .gpx.gz, .gpx.bz2).
+ Pote il haber un problema de formato o syntaxe con tu file? Ecce le error
+ de importation:'
more_info: Plus information sur le fallimento de importation GPX e como evitar
lo se trova sur %{url}.
more_info_html: Plus information sur le fallimento de importation GPX e como
changeset_comment_notification:
description: 'Gruppo de modificationes OpenStreetMap #%{id}'
hi: Salute %{to_user},
- greeting: Salute,
commented:
subject_own: '[OpenStreetMap] %{commenter} ha commentate un de tu gruppos
de modificationes'
remember: Memorar me
lost password link: Contrasigno perdite?
login_button: Aperir session
- register now: Registrar ora
with external: o usa un tertio pro aperir session
or: o
auth failure: Pardono, non poteva aperir un session con iste detalios.
hospital: Hospital
building: Edificio significante
station: Station ferroviari
+ railway_halt: Station facultative
+ subway_station: Station de metro
+ tram_stop: Halto de tram
summit: Summitate
peak: Picco
tunnel: Bordo a lineettas = tunnel
destination: Traffico local
construction: Vias in construction
bus_stop: Halto de autobus
- stop: Halto
bicycle_shop: Magazin de bicyclettas
bicycle_rental: Location de bicyclettas
bicycle_parking: Parcamento de bicyclettas
privacy_policy_title: Politica de confidentialitate del OSMF con un section
sur adresses de e-mail
contributor_terms: conditiones de contributor
- tou: conditiones de uso
- external auth: 'Authentication per tertios:'
continue: Crear conto
terms accepted: Gratias pro acceptar le nove conditiones de contributor!
email_help:
readable_summary: summario legibile per humanos
informal_translations: traductiones informal
continue: Continuar
- decline: Declinar
you need to accept or decline: Per favor lege e postea accepta o declina le
nove Conditiones del Contributor pro continuar.
legale_select: 'Per favor selige tu pais de residentia:'
add: Adder nota
notes_paging_nav:
showing_page: Pagina %{page}
+ next: Sequente
+ previous: Precedente
javascripts:
close: Clauder
share:
centre_map: Centrar le carta hic
redactions:
edit:
- heading: Modificar suppression
- title: Modificar obscuration
+ heading: Modificar censura
+ title: Modificar censura
index:
- empty: Il non ha suppressiones a monstrar.
- heading: Lista de obscurationes
- title: Lista de suppressiones
+ empty: Il non ha censuras a monstrar.
+ heading: Lista de censuras
+ title: Lista de censuras
+ new: Nove censura
new:
- heading: Specifica information pro nove suppression
- title: Creation de nove obscuration
+ heading: Insere le information del nove censura
+ title: Creation de un nove censura
show:
description: 'Description:'
- heading: Es monstrate le suppression "%{title}"
- title: Presentation de obscuration
+ heading: Es monstrate le censura “%{title}”
+ title: Examinar un censura
user: 'Creator:'
- edit: Modificar iste suppression
- destroy: Remover iste obscuration
+ edit: Modificar iste censura
+ destroy: Remover iste censura
confirm: Es tu secur?
create:
- flash: Suppression create.
+ flash: Censura create.
update:
flash: Cambios salveguardate.
destroy:
- not_empty: Le suppression non es vacue. Per favor dis-supprime tote le versiones
- pertinente a iste suppression ante de destruer lo.
- flash: Obscuration destruite.
- error: Un error occurreva durante le destruction de iste suppression.
+ not_empty: Le censura non es vacue. Per favor dis-censura tote le versiones
+ pertinente a iste censura ante de destruer lo.
+ flash: Censura destruite.
+ error: Un error ha occurrite durante le destruction de iste censura.
validations:
leading_whitespace: ha spatios al initio
trailing_whitespace: ha spatios al fin
activerecord:
errors:
messages:
- invalid_email_address: nampaknya bukan alamat surel yang sah
- email_address_not_routable: tidak dapat dirutekan
display_name_is_user_n: tidak bisa menjadi user_n kecuali n adalah id pengguna
Anda
models:
comment:
comment: 'Komentar baru di set perubahan #%{changeset_id} oleh %{author}'
commented_at_by_html: Diperbarui %{when} oleh %{user}
- comments:
- comment: 'Komentar baru di set perubahan #%{changeset_id} oleh %{author}'
show:
title_all: Diskusi set perubahan OpenStreetMap
title_particular: 'Diskusi set perubahan OpenStreetMap #%{changeset_id}'
untuk ditampilkan.
changesets:
changeset:
- anonymous: Anonim
no_edits: (tidak ada edit)
view_changeset_details: Lihat informasi set perubahan
index:
report: Laporkan komentar ini
location:
location: 'Lokasi:'
- view: Lihat
- edit: Sunting
feed:
user:
title: Entri catatan harian OpenStreetMap untuk %{user}
level9: Batas Desa
level10: Batas kota pinggiran
level11: Batas RT
- types:
- cities: Kota (jamak)
- towns: Kota Kecil (jamak)
- places: Tempat (jamak)
results:
no_results: Tidak ada hasil yang ditemukan
more_results: Hasil lainnya
not_updated: Tidak Diperbarui
search: Cari
search_guidance: 'Cari Isu:'
- link_to_reports: Lihat Laporan
states:
ignored: Diabaikan
open: Dibuka
changeset_comment_notification:
description: 'Set perubahan OpenStreetMap #%{id}'
hi: Halo %{to_user},
- greeting: Halo,
commented:
subject_own: '[OpenStreetMap] %{commenter} mengomentari salah satu perubahan
Anda'
remember: Ingat saya
lost password link: Kehilangan kata sandi Anda?
login_button: Masuk log
- register now: Daftar sekarang
with external: 'Atau, gunakan pihak ketiga untuk masuk:'
auth failure: Maaf, tidak bisa login dengan rincian tersebut.
destroy:
destination: Akses tujuan
construction: Jalan sedang diperbaiki
bus_stop: Halte bus
- stop: Perhentian
bicycle_shop: Toko sepeda
bicycle_rental: Penyewaan sepeda
bicycle_parking: Tempat parkir sepeda
privacy_policy: kebijakan privasi
privacy_policy_title: Kebijakan privasi OSMF meliputi aturan soal alamat surat
elektronik
- external auth: 'Autentikasi Pihak Ketiga:'
continue: Mendaftar
terms accepted: Terima kasih telah menerima persyaratan kontributor yang baru!
email_help:
readable_summary: ringkasan dasar
informal_translations: terjemahan tidak resmi
continue: Lanjutkan
- decline: Tolak
you need to accept or decline: Silahkan baca dan setujui atau tolak Persyaratan
Kontributor yang baru untuk melanjutkan.
legale_select: 'Silahkan pilih negara tempat tinggal Anda:'
activerecord:
errors:
messages:
- invalid_email_address: lítur ekki út fyrir að vera gilt tölvupóstfang
- email_address_not_routable: er ekki nothæft
display_name_is_user_n: getur ekki verið user_n nema n sé notandaauðkennið
þitt
models:
comment:
comment: 'Ný athugasemd við breytingasettið #%{changeset_id} eftir %{author}'
commented_at_by_html: Uppfært %{when} af %{user}
- comments:
- comment: 'Ný athugasemd við breytingasett #%{changeset_id} eftir %{author}'
show:
title_all: Umræða um OpenStreetMap breytingasett
title_particular: 'Umræða um OpenStreetMap breytingasett #%{changeset_id}'
við breytingasett sem þú baðst um.
changesets:
changeset:
- anonymous: Nafnlaus
no_edits: (engar breytingar)
view_changeset_details: Skoða breytingasett nánar
index:
title: Breytingasett %{id}
created_by_html: Útbúið af %{link_user} þann %{created}.
no_such_entry:
- title: Ekkert slíkt breytingasett
heading: 'Engin færsla er til með auðkennið: %{id}'
body: Breytingasett númerið %{id} er ekki til. Kannski settirðu inn rangt stafsetta
slóð eða fylgdir ógildum tengli.
report: Tilkynna þessa athugasemd
location:
location: 'Staðsetning:'
- view: Skoða
- edit: Breyta
coordinates: '%{latitude}; %{longitude}'
feed:
user:
level9: Þorpsmörk
level10: Úthverfamörk
level11: Mörk hverfis
- types:
- cities: Borgir
- towns: Bæir
- places: Staðir
results:
no_results: Ekkert fannst
more_results: Fleiri niðurstöður
not_updated: Ekki uppfært
search: Leita
search_guidance: 'Leita að vandamálum:'
- link_to_reports: Skoða skýrslur
states:
ignored: Hunsað
open: Opna
changeset_comment_notification:
description: 'OpenStreetMap-breytingasett #%{id}'
hi: Hæ %{to_user},
- greeting: Hæ,
commented:
subject_own: '[OpenStreetMap] %{commenter} hefur gert athugasemd við eitt
af breytingasettunum þínum'
remember: Muna innskráninguna
lost password link: Gleymdirðu lykilorðinu þínu?
login_button: Skrá inn
- register now: Skrá þig núna
with external: eða skráð inn með utanaðkomandi þjónustu
or: eða
auth failure: Þetta notandanafn eða lykilorð er rangt.
destination: Umferð leyfileg á ákveðinn áfangastað
construction: Vegir í byggingu
bus_stop: Strætisvagnabiðstöð
- stop: Biðstöð
bicycle_shop: Hjólaverslun
bicycle_rental: Reiðhjólaleiga
bicycle_parking: Reiðhjólastæði
tölvupóstföng
contributor_terms_url: https://wiki.osmfoundation.org/wiki/Licence/Contributor_Terms
contributor_terms: skilmálar vegna framlags
- tou: notkunarskilmálar
- external auth: 'Auðkenning með þriðja aðila:'
continue: Nýskrá
terms accepted: Bestu þakkir fyrir að samþykkja nýju skilmálana vegna framlags
þíns!
informal_translations: óformlegar þýðingar
continue: Halda áfram
declined: https://wiki.openstreetmap.org/wiki/Contributor_Terms_Declined
- decline: Hafna
you need to accept or decline: Endilega lestu og samþykktu eða hafnaðu nýju
skilmálunum vegna framlags þíns, áður en þú heldur áfram.
legale_select: 'Búseta (land):'
activerecord:
errors:
messages:
- invalid_email_address: non sembra essere un indirizzo e-mail valido
- email_address_not_routable: non è instradabile
display_name_is_user_n: non puoi essere user_n a meno che n non sia il tuo
ID utente
models:
longitude: Longitudine
public: Pubblico
description: Descrizione
- gpx_file: Carica file GPX
+ gpx_file: Scegli il file di traccia GPS
visibility: Visibilità
tagstring: Etichette
message:
note: nota
timeout:
title: Errore di timeout
- sorry: Ci rincresce, il reperimento di dati per %{type} con id %{id} ha richiesto
+ sorry: Spiacenti, il recupero dei dati per %{type} con ID %{id} ha richiesto
troppo tempo.
type:
node: nodo
comment:
comment: 'Nuovo commento al gruppo di modifiche #%{changeset_id} di %{author}'
commented_at_by_html: Aggiornato %{when} da %{user}
- comments:
- comment: 'Nuovo commento al gruppo di modifiche #%{changeset_id} di %{author}'
show:
title_all: Discussione sul gruppo di modifiche OpenStreetMap
title_particular: 'Discussione sul gruppo di modifiche OpenStreetMap #%{changeset_id}'
troppo tempo per poter essere recuperato.
changesets:
changeset:
- anonymous: Anonimo
no_edits: (nessuna modifica)
view_changeset_details: Visualizza i dettagli del gruppo di modifiche
index:
title: Gruppo di modifiche %{id}
created_by_html: Creato da %{link_user} il %{created}.
no_such_entry:
- title: Gruppo di modifiche non trovato
heading: 'Nessuna voce con l''ID: %{id}'
body: Non esiste alcun gruppo di modifiche con l’ID %{id}. Controlla la digitazione
o che il collegamento sul quale hai cliccato non sia errato.
report: Segnala questo commento
location:
location: 'Luogo:'
- view: Visualizza
- edit: Modifica
feed:
user:
title: Voci del diario di OpenStreetMap per %{user}
level9: Confine amministrativo 9º livello - Subcittadino, borgo
level10: Confine amministrativo 10º livello - Subcittadino, quartiere
level11: Confine di quartiere
- types:
- cities: Città
- towns: Cittadine
- places: Luoghi
results:
no_results: Nessun risultato trovato
more_results: Altri risultati
not_updated: Non aggiornato
search: Ricerca
search_guidance: 'Ricerca problemi:'
- link_to_reports: Visualizza segnalazioni
states:
ignored: Ignorato
open: Aperto
befriend_them: Puoi anche aggiungerli come amici in %{befriendurl}.
befriend_them_html: Puoi anche aggiungerli come amici in %{befriendurl}.
gpx_description:
- description_with_tags: 'Sembra che il tuo file GPX %{trace_name} con la descrizione
+ description_with_tags: 'Sembra che il tuo file %{trace_name} con la descrizione
%{trace_description} e le seguenti etichette: %{tags}'
- description_with_tags_html: 'Sembra che il tuo file GPX %{trace_name} con la
- descrizione %{trace_description} e le seguenti etichette: %{tags}'
- description_with_no_tags: Sembra che il tuo file GPX %{trace_name} con la descrizione
+ description_with_tags_html: 'Sembra che il tuo file %{trace_name} con la descrizione
+ %{trace_description} e le seguenti etichette: %{tags}'
+ description_with_no_tags: Sembra che il tuo file %{trace_name} con la descrizione
+ %{trace_description} e senza etichette
+ description_with_no_tags_html: Sembra che il tuo file %{trace_name} con la descrizione
%{trace_description} e senza etichette
- description_with_no_tags_html: Sembra che il tuo file GPX %{trace_name} con
- la descrizione %{trace_description} e senza etichette
gpx_failure:
hi: Ciao %{to_user},
- failed_to_import: 'fallito nell''importazione. Questo è l''errore:'
+ failed_to_import: 'non è riuscito a essere importato come file di traccia GPS.
+ Verifica che il tuo file sia un file GPX valido o un archivio contenente file
+ GPX nel formato supportato (.tar.gz, .tar.bz2, .tar, .zip, .gpx.gz, .gpx.bz2).
+ Potrebbe esserci un problema di formato o sintassi con il tuo file? Ecco l''errore
+ di importazione:'
more_info: Per ulteriori informazioni sugli errori di importazione GPX e su
come evitarli, consulta %{url}.
more_info_html: Troverai maggiori informazioni sul fallimento dell'importazione
changeset_comment_notification:
description: 'Gruppo di modifiche OpenStreetMap #%{id}'
hi: Ciao %{to_user},
- greeting: Ciao,
commented:
subject_own: '[OpenStreetMap] %{commenter} ha commentato uno dei tuoi changeset'
subject_other: '[OpenStreetMap] %{commenter} ha commentato su uno dei changeset
remember: Ricordati di me
lost password link: Persa la password?
login_button: Entra
- register now: Registrati ora
with external: o accedi tramite terze parti
or: o
auth failure: Spiacenti, non si può accedere con questi dettagli.
hospital: Ospedale
building: Edificio significativo
station: Stazione ferroviaria
+ railway_halt: Fermata ferroviaria
+ subway_station: Stazione della metropolitana
+ tram_stop: Fermata del tram
summit: Vetta
peak: Picco montuoso
tunnel: Linea tratteggiata = tunnel
destination: Servitù di passaggio
construction: Strade in costruzione
bus_stop: Fermata dell'autobus
- stop: Fermata
bicycle_shop: Negozio di biciclette
bicycle_rental: Noleggio biciclette
bicycle_parking: Parcheggio per biciclette
privacy_policy_title: Informativa sulla privacy di OSM Foundation compresa
la sezione sugli indirizzi e-mail
contributor_terms: regole per contribuire
- tou: condizioni d'uso
- external auth: 'Autenticazione tramite terze parti:'
continue: Registrati
terms accepted: Grazie di aver accettato le nuove regole per contribuire!
email_help:
readable_summary: riassunto leggibile da un essere umano
informal_translations: traduzioni informali
continue: Continua
- decline: Non accetto
+ cancel: Annulla
you need to accept or decline: Si prega di leggere e poi accettare o rifiutare
i nuovi termini di contribuzione per continuare.
legale_select: 'Seleziona il tuo Paese di residenza:'
activerecord:
errors:
messages:
- invalid_email_address: 有効なメールアドレスではないようです
- email_address_not_routable: ルート作成できません
display_name_is_user_n: n がユーザIDでない限り、 user_n にすることはできません。
models:
user_mute:
comment:
comment: 変更セット#%{changeset_id}への%{author}による新しいコメント
commented_at_by_html: '%{when}に%{user}さんが更新'
- comments:
- comment: 変更セット#%{changeset_id}への%{author}による新しいコメント
show:
title_all: OpenStreetMap変更セットの議論
title_particular: OpenStreetMap変更セット#%{changeset_id}の議論
sorry: 申し訳ありませんが、要求した変更セットのコメントの一覧は時間がかかりすぎたため取得できませんでした。
changesets:
changeset:
- anonymous: 匿名
no_edits: (編集がありません)
view_changeset_details: 変更セットの詳細を閲覧
index:
title: 変更セット %{id}
created_by_html: ユーザ %{link_user} によって %{created} に作成されました。
no_such_entry:
- title: 対象の変更セットがありません
heading: 'ID番号: %{id} のエントリはありません'
body: 申し訳ありませんが、ID %{id} という変更セットはありません。入力した文字列が誤っているか、クリックしたリンクが間違っている可能性があります。
show:
report: このコメントを報告
location:
location: '位置:'
- view: 表示
- edit: 編集
feed:
user:
title: '%{user} さんの OpenStreetMap 日記エントリ'
level9: 村境
level10: 街区境
level11: 町会の境界
- types:
- cities: 都市
- towns: 町
- places: 場所
results:
no_results: 該当するものはありません
more_results: その他の結果
not_updated: 更新はありません
search: 検索
search_guidance: '検索の問題点:'
- link_to_reports: レポートを表示
states:
ignored: 無視
open: 開く
changeset_comment_notification:
description: 'OpenStreetMap 変更セット #%{id}'
hi: こんにちは、%{to_user} さん。
- greeting: こんにちは、
commented:
subject_own: '[OpenStreetMap] %{commenter} さんがあなたの変更セットにコメントしました'
subject_other: '[OpenStreetMap] %{commenter}さんがあなたが関心を持っているメモにコメントしました'
remember: ログイン状態を保持
lost password link: パスワードを忘れた場合はこちら
login_button: ログイン
- register now: 今すぐ登録
with external: 'サードパーティのアカウントでもログインできます:'
or: または
auth failure: 申し訳ありませんが、入力された情報ではログインできませんでした。
destination: 目的通行
construction: 建設中の道路
bus_stop: バス停
- stop: 乗り場
bicycle_shop: 自転車販売店
bicycle_rental: 自転車レンタル
bicycle_parking: 駐輪場
privacy_policy: プライバシー・ポリシー
privacy_policy_title: OSMFのプライバシーポリシー(電子メールアドレスに関するセクションを含む)
contributor_terms: 協力者規約
- tou: 利用規約
- external auth: 'サードパーティ認証:'
continue: 利用者登録
terms accepted: 新しい協力者規約を承諾していただき、ありがとうございます!
email_help:
informal_translations: 非公式の翻訳
continue: 続行
declined: http://wiki.openstreetmap.org/wiki/JA:Contributor_Terms_Declined
- decline: 拒否
you need to accept or decline: 続行するには新しい協力者規約を読んで承諾または拒否してください。
legale_select: 'お住まいの国:'
legale_names:
commented_at_by_html: განაახლა %{when} წინ მომხმარებელმა %{user}
changesets:
changeset:
- anonymous: ანონიმი
no_edits: (რედაქტირება არ არის)
index:
title: ცვლილებების პაკეტი
confirm: დადასტურება
location:
location: 'მდებარეობა:'
- view: იხილეთ
- edit: რედაქტირება
diary_comments:
page:
post: პოსტი
level8: ქალაქის საზღვარი
level9: სოფლის საზღვარი
level10: გარეუბნის საზღვარი
- types:
- cities: ქალაქები
- towns: დაბები
- places: ადგილები
results:
no_results: შედეგი ვერ მოიძებნა
more_results: მეტი შედეგი
remember: დამიმახსოვრე
lost password link: დაგავიწყდათ პაროლი?
login_button: შესვლა
- register now: დარეგისტრირდით ახლავე
destroy:
title: გასვლა
heading: OpenStreetMap-დან გასვლა
continue: რეგისტრაცია
terms:
consider_pd_why: რა არის ეს?
- decline: უარყოფა
legale_select: 'გთხოვთ, აირჩიეთ თქვენი ქვეყანა:'
legale_names:
france: საფრანგეთი
create: Rnu iḥder
update: Beddel iḥder
activerecord:
- errors:
- messages:
- invalid_email_address: Ur yettbin ara d tansa n imayl taɣbalt
- email_address_not_routable: Ur izmir ara ad ibeddel abrid
models:
acl: Tabdart n usenqed n unekcum
changeset: Agraw n ibeddilen
comment:
comment: Awennit amaynut deg ugraw n usnifel uṭṭ %{changeset_id} par %{author}
commented_at_by_html: Yettwalqem %{when} aya sɣur %{user}
- comments:
- comment: Awennit amaynut deg ugraw n usnifel wis %{changeset_id} sɣur %{author}
show:
title_all: Asqerdec deg ugraw n usnifel OpenStreetMap
title_particular: Asqerdec deg ugraw n usnifel OpenStreetMap wis %{changeset_id}
n wakud akken ad d-tali.
changesets:
changeset:
- anonymous: Udrig
no_edits: (ulac abeddel)
view_changeset_details: Sken talqayt n ugraw n yibeddilen
index:
report: Mel awennit-a
location:
location: 'Adig:'
- view: Sken
- edit: Ẓreg
feed:
user:
title: Imagraden n uṣmis OpenStreetMap i %{user}
level8: Talast n temdint
level9: Talast n taddart
level10: Talast n ugmama
- types:
- cities: Timdinin
- towns: Tuddar
- places: Idigen
results:
no_results: Ulac igmaḍ
more_results: Ugar n igmaḍ
details: Ugar n telɣut ɣef yezmilt ad tettwaf di %{url}
changeset_comment_notification:
hi: Azul %{to_user},
- greeting: Azul,
commented:
subject_own: '[OpenStreetMap] %{commenter} yerna awennit ar yiwet si tezmilin-ik
n tagrumma n usnifel'
remember: Cfu fell-i
lost password link: Tweddreḍ awal-ik uffir?
login_button: Qqen
- register now: Jerred tura
destroy:
title: Tuffɣa
heading: Tuffɣa si OpenStreetMap
title: Tiwtilin n iwiziw
heading: Tiwtilin n iwiziw
consider_pd_why: d acu-t wa?
- decline: Agwi
legale_select: 'Tamurt n tnezduɣt:'
legale_names:
france: Fṛansa
create: Бұғаттауды жасау
update: Бұғаттауды жаңарту
activerecord:
- errors:
- messages:
- invalid_email_address: жарамды е-пошта мекенжайына ұқсамайды
- email_address_not_routable: қолжетімді емес
models:
acl: Қолжетімділікті бақылау тізімі
changeset: Өңдеме дестесі
commented_at_by_html: '%{when} %{user} жаңартқан'
changesets:
changeset:
- anonymous: Аноним
no_edits: (өңдемелер жоқ)
view_changeset_details: Өңдеме дестесінің егжей-тегжейін көру
index:
belongs_to: Автор
heading:
title: Өңдеме дестесі %{id}
- no_such_entry:
- title: Мұндай өңдеме дестесі жоқ
show:
title: 'Өңдеме дестесі: %{id}'
discussion: Талқылау
hide_link: Бұл пікірді жасыру
unhide_link: Бұл пікірді көрсету
confirm: Құптау
- location:
- edit: Өңдеу
subscribe:
button: Талқыға жазылу
diary_comments:
level6: Аудан шекарасы
level8: Қала шекарасы
level9: Ауыл шекарасы
- types:
- cities: Үлкен қалалар
- towns: Қалалар
- places: Орындар
results:
no_results: Ештеңе табылмады
issues:
greeting: Сәлеметсіз бе,
changeset_comment_notification:
hi: Сәлеметсіз бе, %{to_user},
- greeting: Сәлеметсіз бе,
messages:
messages_table:
from: Кімнен
create: បង្កើតប្លុក
update: អាប់ដេតប្លុក
activerecord:
- errors:
- messages:
- invalid_email_address: មិនទំនងជាអាសយដ្ឋានអ៊ីមែលត្រឹមត្រូវទេ
models:
changeset: សំណុំបន្លាស់ប្តូរ
changeset_tag: ស្លាកនៃសំណុំបន្លាស់ប្តូរ
wikipedia_link: អត្ថបទ %{page} នៅលើវិគីភីឌា
changesets:
changeset:
- anonymous: អនាមិក
no_edits: (គ្មានកំណែប្រែ)
view_changeset_details: មើលព័ត៌មានលម្អិតរបស់សំណុំបន្លាស់ប្តូរ
index:
confirm: បញ្ជាក់
location:
location: ទីតាំង៖
- view: មើល
- edit: កែប្រែ
friendships:
make_friend:
success: '%{name} ឥឡូវនេះជាមិត្តរបស់អ្នក។'
zoo: សួនសត្វ
waterway:
canal: ព្រែកជីក
- types:
- cities: ក្រុង
layouts:
logout: កត់ឈ្មោះចេញ
log_in: កត់ឈ្មោះចូល
continue: ចុះឈ្មោះចូល
use external auth: ប្រើភ្នាក់ងារទី៣ដើម្បីកត់ឈ្មោះចូល
terms:
- decline: បដិសេធ
legale_select: ប្រទេសស្នាក់នៅ៖
legale_names:
france: ប្រទេសបារាំង
# Export driver: phpyaml
# Author: AKJ GOWDA
# Author: Ananth subray
+# Author: Anzx
# Author: Nayvik
# Author: Omshivaprakash
# Author: Shankar
create: ಅಪ್ಲೋಡ್
update: ಬದಲಾವಣೆಗಳನ್ನು ಉಳಿಸಿ
activerecord:
- errors:
- messages:
- invalid_email_address: ಈ ಮಿಂಚಂಚೆಯು ಅಸ್ತಿತ್ವದಲ್ಲಿದ್ದಂತೆ ಕಾಣುವುದಿಲ್ಲ
models:
acl: ಪ್ರವೇಶ ನಿಯಂತ್ರಣ ಸೂಚಿ
changeset: ಬದಲಾವಣೆಗಳು
title_particular: ಓಪನ್ ಸ್ಟ್ರೀಟ್ ಮ್ಯಾಪ್ ಬದಲಾವಣಾ ಸಂಖ್ಯೆ %{changeset_id} ಯ ಚರ್ಚೆ
changesets:
changeset:
- anonymous: ಅನಾಮಧೇಯ
no_edits: (ಸಂಪಾದನೆಗಳಿಲ್ಲ)
view_changeset_details: ಬದಲಾವಣೆಯ ವಿವರಗಳನ್ನು ತೋರಿಸಿ
index:
report: ಈ ಟಿಪ್ಪಣಿಯನ್ನು ವರದಿ ಮಾಡಿ
location:
location: 'ಸ್ಥಳ:'
- view: ವೀಕ್ಷಿಸಿ
- edit: ಸಂಪಾದಿಸಿ
feed:
user:
title: ಓಪನ್ ಸ್ಟ್ರೀಟ್ ಮ್ಯಾಪ್ ನಲ್ಲಿ %{user} ಅವರ ದಿನಚರಿ ದಾಖಲಾತಿಗಳು
level4: ರಾಜ್ಯದ ಗಡಿ
level8: ನಗರದ ಗಡಿ
level9: ಹಳ್ಳಿಯ ಗಡಿ
- types:
- cities: ನಗರಗಳು
- towns: ಪಟ್ಟಣಗಳು
- places: ಸ್ಥಳಗಳು
results:
no_results: ಯಾವುದೇ ಫಲಿತಾಂಶಗಳಿಲ್ಲ
issues:
note_comment_notification:
anonymous: ಒಬ್ಬ ಅನಾಮಧೇಯ ಸದಸ್ಯ
greeting: ನಮಸ್ತೆ,
- changeset_comment_notification:
- greeting: ನಮಸ್ತೆ,
confirmations:
confirm:
button: ಧೃಡಪಡಿಸಿ
activerecord:
errors:
messages:
- invalid_email_address: 유효한 이메일 주소로 보이지 않음
- email_address_not_routable: 라우팅할 수 없음
display_name_is_user_n: n이 사용자 ID가 아니라면 user_n이 될 수 없음
models:
user_mute:
longitude: 경도
public: 공개
description: 설명
- gpx_file: GPX 파일 올리기
+ gpx_file: GPS 트레이스 파일 선택
visibility: 공개 여부
tagstring: 태그
message:
comment:
comment: '바뀜집합 #%{changeset_id}에 %{author}님이 새 댓글을 남김'
commented_at_by_html: '%{user}님이 %{when}에 업데이트함'
- comments:
- comment: '바뀜집합 #%{changeset_id}에 %{author}님이 새 댓글을 남김'
show:
title_all: 오픈스트리트맵 바뀜집합 토론
title_particular: '오픈스트리트맵 바뀜집합 #%{changeset_id} 토론'
sorry: 죄송합니다, 요청하는 바뀜집합 댓글을 불러오는 데 너무 오래 걸렸습니다.
changesets:
changeset:
- anonymous: 익명
no_edits: (편집 없음)
view_changeset_details: 바뀜집합의 자세한 사항 보기
index:
heading:
title: 바뀜집합 %{id}
created_by_html: '%{created}에 의해 %{link_user}이(가) 생성되었습니다.'
- no_such_entry:
- title: 해당 바뀜집합이 없습니다.
show:
title: '바뀜집합: %{id}'
created: '생성 시기: %{when}'
report: 이 의견 신고
location:
location: '위치:'
- view: 보기
- edit: 편집
feed:
user:
title: '%{user}의 오픈스트리트맵 일기 항목'
level9: 마을 경계
level10: 교외 경계
level11: 이웃 경계
- types:
- cities: 도시
- towns: 마을
- places: 장소
results:
no_results: 결과가 없습니다
more_results: 더 많은 결과
not_updated: 업데이트되지 않음
search: 검색
search_guidance: '이슈 검색:'
- link_to_reports: 보고서 보기
states:
ignored: 무시됨
open: 열림
changeset_comment_notification:
description: 'OpenStreetMap 바뀜집합 #%{id}'
hi: 안녕하세요 %{to_user}님,
- greeting: 안녕하세요,
commented:
subject_own: '[OpenStreetMap] %{commenter}님이 바뀜집합에 댓글을 남겼습니다'
subject_other: '[오픈스트리트맵] %{commenter}님이 내가 관심을 가진 바뀜집합에 뎟글을 남겼습니다'
remember: 로그인 상태를 기억하기
lost password link: 비밀번호를 잊으셨나요?
login_button: 로그인
- register now: 지금 등록하세요
with external: 혹은 제3자 방식으로 로그인하기
or: 혹은
auth failure: 죄송합니다, 입력한 정보로 로그인할 수 없습니다.
destination: 목적 통행
construction: 공사 중인 도로
bus_stop: 버스 정류장
- stop: 중지
bicycle_shop: 자전거 가게
bicycle_rental: 자전거 대여
bicycle_parking: 자전거 주차장
privacy_policy: 개인정보처리방침
privacy_policy_title: 이메일 주소 섹션을 포함한 OSMF 개인 정보 보호 정책
contributor_terms: 기여자 약관
- tou: 이용약관
- external auth: '제3자 인증:'
continue: 가입하기
terms accepted: 새 기여자 약관에 동의해 주셔서 감사합니다!
email_help:
informal_translations: 비공식 번역
continue: 계속
declined: https://wiki.openstreetmap.org/wiki/Contributor_Terms_Declined
- decline: 거부
you need to accept or decline: 계속하려면 새 기여자 약관을 읽고 나서 동의나 거부하세요.
legale_select: '거주 국가:'
legale_names:
add: 참고 추가
notes_paging_nav:
showing_page: '%{page}쪽'
+ next: 다음
+ previous: 이전
javascripts:
close: 닫기
share:
wadi: e Waadi, e drüsch Daal
waterfall: ne Wasserfall
weir: e Wehr
- types:
- cities: Jruße Schtädte
- towns: Klein Schtädte
- places: Dörper, Ööt, un Pläz
results:
no_results: Nix jefonge
more_results: Mih …
alt: Donn övver ene Zohjang bei GitHub ennlogge
users:
terms:
- decline: Aflehne
legale_names:
france: Frangkrisch
italy: Ėtaaalije
update: Astengê nû bike
activerecord:
errors:
- messages:
- invalid_email_address: ne weke navnîşaneke e-peyamê ya derbasdar e
- email_address_not_routable: nikare were alîkirin
models:
user_mute:
is_already_muted: jixwe bêdengkirî ne
comment: Şîroveya nû yê li ser qeyda guhartinan a %{changeset_id} yê ji alî
%{author} ve
commented_at_by_html: '%{when} ji aliyê %{user} ve hate rojanekirin'
- comments:
- comment: 'Şîroveya nû li ser desteya guhartinan ya #%{changeset_id} ji aliyê
- %{author} ve'
show:
title_all: Gotûbêja qeyda guhartinên OpenStreetMapê
title_particular: Gotûbêja qeyda guhartinan a %{changeset_id} yê OpenStreetMapê
xwest demeke dirêj girt.
changesets:
changeset:
- anonymous: Anonîm
no_edits: (nehatiye guhartin)
view_changeset_details: Dêtayên qeyda guhartinan bibîne
index:
report: Vê şîroveyê ragihîne
location:
location: 'Cih:'
- view: Bibîne
- edit: Biguherîne
feed:
user:
title: Nivîsên rojane yên %{user} a OpenStreetMapê
level9: Sînora gundê
level10: Sînora taxê
level11: Sînora Taxê
- types:
- cities: Bajarên mezin
- towns: Bajar
- places: Cih
results:
no_results: Ti encam nehatin dîtin
more_results: Encamên zêdetir
not_updated: Rojanekirin Nebû
search: Lê bigere
search_guidance: Pirsgirêkên Lêgerînê
- link_to_reports: Raporan Bibîne
states:
ignored: Guh nedê
open: Veke
details_html: Cewab bide an di derbarê notê de zêdetir hîn bibe ji %{url}.
changeset_comment_notification:
hi: Merheba %{to_user},
- greeting: Merheba,
commented:
subject_own: '[OpenStreetMap] %{commenter} yek ji desteyên te yên guherandinê
şiroveyek nivîsand'
remember: Min bi bîr bîne
lost password link: Te şîfreya xwe winda kir?
login_button: Têkeve
- register now: Vê gavê xwe qeyd bike
with external: An bi sepaneke alîyê sêyem têkeve
auth failure: Bibore, bi van dêtayan re tu têneketî.
destroy:
header: Belaş e û dikare were sererastkirin.
display name description: Navê te yê ku ji her kesê re tê xuyan. Tu paşê dikarî
vê navê ji hevyazên xwe biguherînî.
- external auth: 'Teyîdkirina bi aliyên sêyem:'
continue: Qeyd bibe
terms accepted: Em spasiya te dikin ji bo ku te şertên beşdariyê yê nû qebûl
kirǃ
readable_summary: kurteya xwendinbar ê li gor însanan
informal_translations: tercimeyên nefermî
continue: Dewam bike
- decline: Red bike
you need to accept or decline: Ji bo ku dewam bikî, xêra xwe şertên beşdariyê
bixwîne û piştre qebûl an jî red bike.
legale_select: Welatê ku tu lê îqamet dikîː
create: Spären
update: Spär aktualiséieren
activerecord:
- errors:
- messages:
- invalid_email_address: schéngt keng valabel E-Mail-Adress ze sinn
- email_address_not_routable: ass net routingfäeg
models:
acl: Zougrëffssteierlëscht
changeset: Set vun Ännerungen
comment: 'Neien Diskussiounsbäitrag zum Ännerungssaz #%{changeset_id} vun
%{author}'
commented_at_by_html: '%{when} vum %{user} aktualiséiert'
- comments:
- comment: 'Neie Commentaire zum Ännerungssaz #%{changeset_id} vun %{author}'
show:
title_all: Diskussioun iwwer den OpenStreetMap-Ännerungssaz
title_particular: 'Diskussioun iwwer den OpenStreetMap-Ännerungssaz #%{changeset_id}'
du ugefuerdert hues, fir den Ofruff ze laang.
changesets:
changeset:
- anonymous: Anonym
no_edits: (keng Ännerungen)
view_changeset_details: Detailer vum Ännerungssaz uweisen
index:
report: Dëse Commentaire mellen
location:
location: 'Plaz:'
- view: Weisen
- edit: Änneren
feed:
user:
title: OpenStreetMap Bloganträg vun %{user}
level9: Staddeelgrenz
level10: Noperschaftsgrenz
level11: Noperschaftsgrenz
- types:
- cities: Stied
- towns: Dierfer
- places: Plazen
results:
no_results: Näischt fonnt
more_results: Méi Resultater
not_updated: Net aktualiséiert
search: Sichen
search_guidance: 'Problemer duerchsichen:'
- link_to_reports: Rapporte weisen
states:
ignored: Ignoréiert
open: Opmaachen
gpx_description:
description_with_tags_html: 'Et schéngt, datt déng GPX-Datei %{trace_name} mat
der Beschreiwung %{trace_description} an de folgenden Taggen: %{tags}'
- description_with_no_tags_html: Et schéngt, datt deng GPX-Datei %{trace_name}
- mat der Beschreiwung %{trace_description} an ouni Taggen
+ description_with_no_tags_html: Et schéngt, datt Äre Fichier %{trace_name} mat
+ der Beschreiwung %{trace_description} an ouni Taggen
gpx_failure:
hi: Salut %{to_user},
failed_to_import: 'konnt net importéiert ginn. Hei ass de Feeler:'
details_html: Méi Detailer iwwer d'Notiz fannt Dir op %{url}.
changeset_comment_notification:
hi: Salut %{to_user},
- greeting: Salut,
commented:
subject_own: '[OpenStreetMap] %{commenter} huet ee vun dengen Ännerungssätz
kommentéiert.'
remember: Sech u mech erënneren
lost password link: Hutt Dir Äert Passwuert vergiess?
login_button: Aloggen
- register now: Elo aschreiwen
with external: 'Benotzt alternativ eng Drëtt Partei fir anzeloggen:'
or: oder
auth failure: Mat dëssen Daten ass leider keng Umeldung méiglech.
activerecord:
errors:
messages:
- invalid_email_address: nepanašus į tinkamą e-pašto adresą
- email_address_not_routable: nemaršrutizuojamas
display_name_is_user_n: negali būti user_n, nebent n yra jūsų naudotojo id
models:
user_mute:
comment:
comment: 'Naujas pakeitimo #%{changeset_id} komentaras. Parašė %{author}'
commented_at_by_html: '%{user} pakeitė %{when}'
- comments:
- comment: 'Naujas pakeitimo #%{changeset_id} komentaras. Parašė %{author}'
show:
title_all: OpenStreetMap pakeitimo aptarimas
title_particular: 'OpenStreetMap pakeitimo #%{changeset_id} aptarimas'
per ilgai.
changesets:
changeset:
- anonymous: Anonimiškas
no_edits: (nėra pakeitimų)
view_changeset_details: Žiūrėti pakeitimo detales
index:
report: Pranešti apie šį komentarą
location:
location: 'Vieta:'
- view: Žiūrėti
- edit: Keisti
feed:
user:
title: Naudotojo %{user} OpenStreetMap dienoraščio įrašai
level9: Kaimo riba
level10: Priemiesčio riba
level11: Mikrorajono riba
- types:
- cities: Miestai
- towns: Miestai
- places: Vietos
results:
no_results: Daugiau rezultatų nėra
more_results: Daugiau rezultatų
not_updated: Neatnaujinta
search: Ieškoti
search_guidance: 'Problemų paieška:'
- link_to_reports: Žiūrėti pranešimus
states:
ignored: Ignoruota
open: Atidaryta
details_html: Daugiau informacijos apie pastabą galima rasti %{url}.
changeset_comment_notification:
hi: Sveiki, %{to_user},
- greeting: Labas,
commented:
subject_own: '[OpenStreetMap] %{commenter} pakomentavo vieną iš jūsų pakeitimų'
subject_other: '[OpenStreetMap] %{commenter} pakomentavo vieną iš jus dominančių
remember: Prisiminti prisijungimą
lost password link: Pamiršote slaptažodį?
login_button: Prisijungti
- register now: Užsiregistruoti
with external: 'Alternatyviai, naudokite trečią šalį prisijungimui:'
auth failure: Atsiprašome, negalite prisijungti su tokiais duomenimis.
destroy:
destination: Atvykimo susisiekimas
construction: Statomi keliai
bus_stop: Autobusų stotelė
- stop: Sustojimas
bicycle_shop: Dviračių parduotuvė
bicycle_rental: Dviračių nuoma
bicycle_parking: Dviračių stovėjimo aikštelė
galėsite jį vėliau pakeisti savo nustatymuose.
by_signing_up:
privacy_policy: privatumo politika
- external auth: 'Trečios šalies autentikacija:'
continue: Užsiregistruoti
terms accepted: Ačiū, kad patvirtinote naująsias talkininkų sąlygas!
use external auth: Alternatyviai, naudokite trečią šalį prisijungimui
consider_pd: Be pirmiau paminėtų, laikau, kad mano indėlis būtų Viešo Naudojimo
consider_pd_why: kas tai?
continue: Tęsti
- decline: Nesutinku
you need to accept or decline: Norėdami tęsti perskaitykite ir sutikite, arba
nesutikite su Talkininkų sąlygomis.
legale_select: 'Gyvenamoji vieta:'
create: Veidot liegumu
update: Atjaunot bloku
activerecord:
- errors:
- messages:
- email_address_not_routable: nav maršrutējams
models:
acl: Piekļuves vadības saraksts
changeset: Izmaiņu kopa
title_particular: 'Diskusija par OpenStreetMap izmaiņām #%{changeset_id}'
changesets:
changeset:
- anonymous: Anonīms
no_edits: (nav labojumu)
view_changeset_details: Skatīt sīkāku informāciju par izmaiņu kopu
index:
report: Ziņot par šo komentāru
location:
location: 'Atrašanās vieta:'
- view: Skatīt
- edit: Labot
feed:
user:
title: Lietotāja %{user} OpenStreetMap dienasgrāmatas ieraksti
level9: Ciema robeža
level10: Priekšpilsētas robeža
level11: Apkaimes robeža
- types:
- cities: Pilsētas
- towns: Pilsētas
- places: Vietas
results:
no_results: Nav atrasts neviens rezultāts
more_results: Vairāk rezultātu
not_updated: Nav atjaunināts
search: Meklēt
search_guidance: 'Meklēšanas problēmas:'
- link_to_reports: Skatīt ziņojumus
states:
ignored: Ignorēts
open: Atvērt
details: Vairāk informācijas par piezīmēm var atrast %{url}.
changeset_comment_notification:
hi: Sveiks, %{to_user},
- greeting: Sveicināti,
commented:
subject_own: '[OpenStreetMap] %{commenter} ir komentējis kādu no tavām izmaiņām'
subject_other: '[OpenStreetMap] %{commenter} ir komentējis kādu no izmaiņām,
remember: Atcerēties mani
lost password link: Aizmirsi paroli?
login_button: Pieslēgties
- register now: Reģistrēties
with external: Alternatīvi, varat izmantot trešās puses 'ielogošanās' opciju
auth failure: Diemžēl nevarēja ieiet ar šiem datiem
destroy:
header: Brīvs un rediģējams
display name description: Vārds, kas tiks rādīts publiski. Jūs to vēlāk varēsiet
izmainīt iestatījumos.
- external auth: 'Trešo Pušu Autentifikācija:'
continue: Reģistrēties
terms accepted: Paldies, ka pieņēmāt jaunos devuma noteikumus!
use external auth: Alternatīvi, varat izmantot trešās puses 'ielogošanās' opciju
būšanu Publiskajā Domēnā
consider_pd_why: kas tas ir?
informal_translations: neformāli tulkojumi
- decline: Nepiekrītu
you need to accept or decline: Lūdzu izlasi un vai nu pieņem vai noraidi jaunos
Veidotāju Noteikumus, lai turpinātu.
legale_select: 'Lūdzu, atlasiet savu dzīvesvietas valsti:'
activerecord:
errors:
messages:
- invalid_email_address: не претставува важечка е-пошта
- email_address_not_routable: не е насочлива
display_name_is_user_n: не може да биде user_n освен ако n е вашата корисничка
назнака
models:
longitude: Гео. должина
public: Јавно
description: Опис
- gpx_file: Ð\9fодигни GPX-подаÑ\82оÑ\82ека
+ gpx_file: Ð\98збеÑ\80еÑ\82е подаÑ\82оÑ\82ека Ñ\81о Ð\93Ð\9fС-Ñ\82Ñ\80аги
visibility: Видливост
tagstring: Ознаки
message:
note: белешка
timeout:
title: Грешка поради истек на времето
- sorry: Жалиме, но добивањето на податоците за %{type} со id %{id} трае предолго.
+ sorry: Жалиме, но добивањето на податоците за %{type} со назнака %{id} трае
+ предолго.
type:
node: јазол
way: пат
introduction: Стиснете на картата за да ги најдете елементите во близина.
nearby: Елементи во близина
enclosing: Обиколни елементи
+ nodes:
+ timeout:
+ sorry: Жалиме, но добивањето на податоците за јазолот со назнака %{id} трае
+ предолго.
old_nodes:
not_found:
sorry: 'За жал, не го најдов јазолот #%{id} верзија %{version}.'
+ timeout:
+ sorry: Жалиме, но добивањето на историјата на јазолот со назнака %{id} трае
+ предолго.
+ ways:
+ timeout:
+ sorry: Жалиме, но добивањето на податоците за патот со назнака %{id} трае предолго.
old_ways:
not_found:
sorry: 'За жал, не го најдов патот #%{id} верзија %{version}.'
+ timeout:
+ sorry: Жалиме, но добивањето на историјата на патот со назнака %{id} трае предолго.
+ relations:
+ timeout:
+ sorry: Жалиме, но добивањето на податоците за односот со назнака %{id} трае
+ предолго.
old_relations:
not_found:
sorry: 'За жал, не го најдов односот #%{id} верзија %{version}.'
+ timeout:
+ sorry: Жалиме, но добивањето на историјата на односот со назнака %{id} трае
+ предолго.
changeset_comments:
feeds:
comment:
comment: 'Нов коментар за промената #%{changeset_id} на %{author}'
commented_at_by_html: Подновено %{when} од %{user}
- comments:
- comment: 'Нов коментар за промената #%{changeset_id} на %{author}'
show:
title_all: Разговор за промена на OpenStreetMap
title_particular: 'Разговор за промената #%{changeset_id} на OpenStreetMap'
за да се преземе.
changesets:
changeset:
- anonymous: Анонимец
no_edits: (нема уредувања)
view_changeset_details: Погл. поединости за измените
index:
title: Измени %{id}
created_by_html: Создадено од %{link_user} на %{created}.
no_such_entry:
- title: Нема такви измени
heading: 'Нема ставка со назнаката: %{id}'
body: Жалиме, но не постојат измени со назнаката %{id}. Проверете да не сте
згрешиле во пишувањето, или пак да не сте стиснале на погрешна врска.
report: Пријави го коментаров
location:
location: 'Местоположба:'
- view: Преглед
- edit: Уреди
feed:
user:
title: Дневнички ставки на %{user}
bathroom_furnishing: Санитарии
beauty: Козметика
bed: Кревети и постелнина
- beverages: Ð\9fиÑ\98алоци
+ beverages: Ð\9fиÑ\98алаци
bicycle: Продавница за велосипеди
bookmaker: Бележник
books: Книжарница
level9: Селска граница
level10: Населбена граница
level11: Маалска граница
- types:
- cities: Градови
- towns: Гратчиња
- places: Места
results:
no_results: Не пронајдов ништо
more_results: Повеќе ставки
not_updated: Неподновено
search: Пребарај
search_guidance: 'Пребарајте проблеми:'
- link_to_reports: Преглед на пријави
states:
ignored: Занемарено
open: Отворено
befriend_them: Можете личноста и да ја додадете како пријател на %{befriendurl}.
befriend_them_html: Можете личноста и да ја додадете како пријател на %{befriendurl}.
gpx_description:
- description_with_tags: 'Вашата GPX-податотека %{trace_name} со описот %{trace_description}
+ description_with_tags: 'Вашата податотека %{trace_name} со описот %{trace_description}
и следниве ознаки: %{tags}'
- description_with_tags_html: 'Вашата GPX-податотека %{trace_name} со описот %{trace_description}
+ description_with_tags_html: 'Вашата податотека %{trace_name} со описот %{trace_description}
и следниве ознаки: %{tags}'
- description_with_no_tags: Вашата GPX-податотека %{trace_name} со описот %{trace_description}
+ description_with_no_tags: Вашата податотека %{trace_name} со описот %{trace_description}
+ и без ознаки
+ description_with_no_tags_html: Вашата податотека %{trace_name} со описот %{trace_description}
и без ознаки
- description_with_no_tags_html: Вашата GPX-податотека %{trace_name} со описот
- %{trace_description} и без ознаки
gpx_failure:
hi: Здраво %{to_user},
- failed_to_import: не можеше да се увезе. Еве ја грешката;
+ failed_to_import: 'не можеше да се увезе. Проверете дали е важечка GPX-податотека
+ или архив што содржи GPX-податотека/ки во поддржан формат (.tar.gz, .tar.bz2,
+ .tar, .zip, .gpx.gz, .gpx.bz2). Да не има форматен или синтаксен проблем со
+ податотеката? Еве ја гршеката при увоз:'
more_info: Повеќе информации за неуспесите на увозот на GPX и тоа како да ги
одбегнете ќе најдете на %{url}.
more_info_html: Повеќе информации за неуспесите на увозот на GPX и тоа како
changeset_comment_notification:
description: Измени бр. %{id} во OpenStreetMap
hi: Здраво %{to_user},
- greeting: Здраво,
commented:
subject_own: '[OpenStreetMap] %{commenter} искоментира на една од вашите промени'
subject_other: '[OpenStreetMap] %{commenter} искоментира на промена што ве
remember: Запомни ме
lost password link: Ја заборавивте лозинката?
login_button: Најава
- register now: Зачленете се сега
with external: или најавете преку надворешно место
or: или
auth failure: Жалиме, не можевме да ве најавиме со тие податоци.
hospital: Болница
building: Значајно здание
station: Железничка станица
+ railway_halt: Железничка постојка
+ subway_station: Метростаница
+ tram_stop: Трамвајска постојка
summit: Врв
peak: Врв
tunnel: Испрекината линија = тунел
destination: Пристап до одредницата
construction: Патишта во изградба
bus_stop: Автобуска постојка
- stop: Постојка
bicycle_shop: Точкар
bicycle_rental: Изнајмување велосипеди
bicycle_parking: Паркирање велосипеди
адреси
contributor_terms_url: https://wiki.osmfoundation.org/wiki/Licence/Contributor_Terms
contributor_terms: услови на учество
- tou: услови на употреба
- external auth: 'Заверка за надворешното место:'
continue: Зачленување
terms accepted: Ви благодариме што ги прифативте новите услови за учество!
email_help:
informal_translations: неформални преводи
continue: Продолжи
declined: https://wiki.openstreetmap.org/wiki/Contributor_Terms_Declined?uselang=mk
- decline: Одбиј
+ cancel: Откажи
you need to accept or decline: Прочитајте ги новите Услови за учество, а потоа
согласете се или одбијте ги.
legale_select: 'Одберете ја вашата земја на живеење:'
tags: Маркаже
changesets:
changeset:
- anonymous: Аноним
no_edits: (фэрэ модификэрь)
index:
feed:
confirm: Конфирмаре
diary_comment:
confirm: Конфирмаре
- location:
- edit: Редактаре
diary_comments:
page:
post: Месаж
river: Рыу/Флувиу
stream: Пырэу
waterfall: Каскадэ
- types:
- cities: Ораше
- towns: Орэшеле
- places: Локурь
results:
no_results: Ну с'а гэсит нич ун резултат
more_results: Май мулте резултате
remember: Пэстраря сесиуний
lost password link: Аць уйтат парола?
login_button: Ынтраря ын конт
- register now: Ынреӂистраци-вэ акум
destroy:
title: Ынкееря сесиуний
heading: Ешире дин OpenStreetMap
create: चढवा
update: जतन करा
activerecord:
- errors:
- messages:
- invalid_email_address: वैध ईमेल पत्ता वाटत नाही.
models:
acl: पोहोच नियंत्रण यादी
changeset: बदलसंच
title_particular: 'OpenStreetMap बदलसंच #%{changeset_id} चर्चा'
changesets:
changeset:
- anonymous: अनामिक
no_edits: (संपादने नाहीत)
view_changeset_details: बदलसंचाचा तपशील पहा
index:
confirm: खात्री करा
location:
location: 'ठिकाण:'
- view: पहा
- edit: संपादन करा
feed:
user:
title: '%{user}कडून ओपनस्ट्रीटमॅप रोजनिशी-नोंदी'
level8: शहर सिमा
level9: खेडे सिमा
level10: उपनगर सिमा
- types:
- cities: शहरे
- towns: गावे
- places: ठिकाणे
results:
no_results: परिणाम सापडले नाही
more_results: अधिक निकाल
remember: माझी आठवण ठेवा
lost password link: परवलीचा शब्द विसरलात?
login_button: सनोंद प्रवेश करा
- register now: आत्ता नोंदणी करा
shared:
pagination:
diary_comments:
title: योगदात्यांसाठी अटी
heading: योगदात्यांसाठी अटी
consider_pd_why: हे काय आहे?
- decline: अमान्य
legale_select: 'राहण्याचा देश:'
legale_names:
france: फ्रान्स
create: Buat sekatan
update: Kemaskinikan sekatan
activerecord:
- errors:
- messages:
- invalid_email_address: tidak kelihatan sebagai alamat e-mel yang sah
- email_address_not_routable: tidak dapat dijalankan
models:
acl: Senarai Kawalan Capaian
changeset: Set Ubah
longitude: Garis Bujur
public: Umum
description: Keterangan
- gpx_file: Muat Naik Fail GPX
+ gpx_file: Pilih Fail Jejak GPS
visibility: Keterlihatan
tagstring: Tag
message:
commented_at_by_html: Dikemaskini %{when} oleh %{user}
changesets:
changeset:
- anonymous: Awanama
no_edits: (tiada suntingan)
view_changeset_details: Lihat butiran set perubahan
index:
report: Laporkan komen ini
location:
location: 'Lokasi:'
- view: Paparkan
- edit: Sunting
feed:
user:
title: Catatan diari OpenStreetMap oleh %{user}
level8: Sempadan Bandar
level9: Sempadan Desa
level10: Sempadan Pinggir Bandar
- types:
- cities: Bandaraya
- towns: Pekan
- places: Tempat
results:
no_results: Tiada hasil carian
more_results: Lebih banyak hasil
not_updated: Tidak Dikemaskini
search: Cari
search_guidance: 'Cari Isu:'
- link_to_reports: Lihat Laporan
states:
ignored: Diabaikan
open: Buka
details: Butiran lanjut tentang nota berkenaan boleh didapati di %{url}.
changeset_comment_notification:
hi: Hai %{to_user},
- greeting: Apa khabar,
commented:
partial_changeset_with_comment: dengan komen '%{changeset_comment}'
partial_changeset_without_comment: tanpa komen
remember: Ingati saya
lost password link: Lupa kata laluan anda?
login_button: Log masuk
- register now: Daftar sekarang
auth failure: Maaf, log masuk tidak dapat dibenarkan dengan butiran-butiran
itu.
destroy:
header: Bebas dan boleh disunting
display name description: Nama pengguna anda yang dipaparkan kepada awam. Anda
boleh menukarnya dalam keutamaan anda pada bila-bila masa.
- external auth: Pengesahan Pihak Ketiga
continue: Daftar
terms accepted: Terima kasih kerana menerima terma-terma penyumbang yang baru!
use external auth: Secara alternatif, gunakan khidmat pihak ketiga untuk log
readable_summary: ringkasan yang boleh dibaca manusia
informal_translations: penterjemahan tidak formal
continue: Sambung
- decline: Tolak
+ cancel: Batalkan
you need to accept or decline: Sila baca, kemudian terima atau tolak Terma-Terma
Penyumbang yang baru untuk bersambung.
legale_select: 'Sila pilih negara kediaman anda:'
commented_at_by_html: '%{user} က %{when} အကြာက မွမ်းမံခဲ့သည်'
changesets:
changeset:
- anonymous: အမည်မသိ
no_edits: (တည်းဖြတ်မှု မရှိ)
index:
load_more: ပိုမိုခေါ်ယူရန်
report: ဤမှတ်ချက်ကို အစီရင်ခံတင်ပြရန်
location:
location: 'တည်နေရာ:'
- view: ကြည့်ရန်
- edit: ပြင်ဆင်ရန်
diary_comments:
page:
comment: မှတ်ချက်
dam: တမံ
river: မြစ်
waterfall: ရေတံခွန်
- types:
- cities: မြို့များ
- towns: မြို့များ
- places: နေရာများ
results:
no_results: မည်သည့်ရလဒ်မျှ မရပါ
more_results: ရလဒ်များ ပို၍
issues:
index:
search: ရှာဖွေရန်
- link_to_reports: အစီရင်ခံစာများကို ကြည့်ရန်
states:
ignored: လျစ်လျူရှု
open: ဖွင့်ပါ
greeting: ဟိုင်း၊
changeset_comment_notification:
hi: ဟိုင်း %{to_user}၊
- greeting: ဟိုင်း၊
confirmations:
confirm:
heading: သင်၏အီးမေးလ်ကို စစ်ဆေးရန်
remember: မိမိကို မှတ်မိပါ
lost password link: စကားဝှက် မေ့နေသလား။
login_button: အကောင့်ထဲဝင်ရန်
- register now: အခုပဲ မှတ်ပုံတင်ရန်
destroy:
title: အကောင့်မှပြန်ထွက်
logout_button: အကောင့်မှပြန်ထွက်
title: သတ်မှတ်ချက်များ
heading: သတ်မှတ်ချက်များ
continue: ဆက်လက်
- decline: ငြင်းပယ်ရန်
legale_select: 'နေထိုင်ရာ နိုင်ငံ:'
legale_names:
france: ပြင်သစ်
activerecord:
errors:
messages:
- invalid_email_address: later ikke til å være en gyldig e-postadresse
- email_address_not_routable: kan ikke rutes
display_name_is_user_n: kan ikke være user_n med mindre n allerede er bruker-ID-en
din
models:
comment:
comment: Ny kommentar til endringssett %{changeset_id} av %{author}
commented_at_by_html: Oppdatert for %{when} siden av %{user}
- comments:
- comment: Ny kommentar til endringssett %{changeset_id} av %{author}
show:
title_all: OpenStreetMap-endringssettsdiskusjon
title_particular: 'OpenStreetMap-endringssettsdiskusjon #%{changeset_id}'
sorry: Listen over endringssett du ba om tok for lang tid å hente.
changesets:
changeset:
- anonymous: Anonym
no_edits: (ingen redigeringer)
view_changeset_details: Vis endringssettsdetaljer
index:
report: Rapporter denne kommentaren
location:
location: 'Posisjon:'
- view: Vis
- edit: Rediger
feed:
user:
title: Innlegg i OpenStreetMap-dagboka for %{user}
level8: Bygrense
level9: Landsbygrense
level10: Forstadsgrense
- types:
- cities: Byer
- towns: Småbyer
- places: Steder
results:
no_results: Ingen resultat funnet
more_results: Flere resultat
not_updated: Ikke oppdatert
search: Søk
search_guidance: 'Søk blant saker:'
- link_to_reports: Se på rapporter
states:
ignored: Sett bort fra
open: Åpen
details: Flere opplysninger om merknaden finner du på %{url}.
changeset_comment_notification:
hi: Hei %{to_user},
- greeting: Hei,
commented:
subject_own: '[OpenStreetMap] %{commenter} har kommentert en av dine endringer'
subject_other: '[OpenStreetMap] %{commenter} har kommentert en endring du
remember: Husk meg
lost password link: Mistet passordet ditt?
login_button: Logg inn
- register now: Registrer deg nå
with external: 'Alternativt kan du bruke en tredjepart til å logge inn:'
auth failure: Beklager, kunne ikke logge inn med den informasjonen
destroy:
destination: Destinasjonstilgang
construction: Veier under konstruksjon
bus_stop: Busstopp
- stop: Stopp
bicycle_shop: Sykkelbutikk
bicycle_rental: Sykkelutleie
bicycle_parking: Sykkelparkering
header: Gratis og redigerbar
display name description: Ditt offentlig fremviste brukernavn. Du kan endre
dette senere i alternativ.
- external auth: 'Tredjepartsgodkjenning:'
continue: Registrer deg
terms accepted: Takk for at du godtok de nye bidragsytervilkårene!
use external auth: Alternativt kan du bruke en tredjepart til å logge inn
consider_pd_why: hva er dette?
consider_pd_why_url: https://www.osmfoundation.org/wiki/License/Why_would_I_want_my_contributions_to_be_public_domain
continue: Fortsett
- decline: Avslå
you need to accept or decline: Les og deretter enten godta eller avslå de nye
bidragsytervilkårene for å fortsette.
legale_select: 'Velg ditt bostedsland:'
loading: An’t Laden...
changesets:
changeset:
- anonymous: Anonym
no_edits: (keen Ännern)
dashboards:
contact:
one: 1 Kommentar
other: '%{count} Kommentare'
edit_link: Dissen Indrag ännern
- location:
- view: Ankieken
- edit: Ännern
friendships:
make_friend:
success: '%{name} ist nu dien Fründ.'
wadi: Wadi
waterfall: Waterfall
weir: Wehr
- types:
- cities: Städer
- towns: lüttje Städer
- places: Öörd
results:
no_results: nix funnen
more_results: Mehr
update: ब्लक अद्यावधिक गर्नुहाेस्
activerecord:
errors:
- messages:
- invalid_email_address: इमेल मान्य देखिँदैन
- email_address_not_routable: राउटेबल छैन
models:
user_mute:
is_already_muted: पहिले नै म्युट गरिएको छ
comment:
comment: '%{author}द्वारा #%{changeset_id}मा नयाँ टिप्पणी'
commented_at_by_html: '%{user} द्वारा %{when} पहिले अद्यावधिक गरिएको'
- comments:
- comment: '%{author}द्वारा #%{changeset_id}मा नयाँ टिप्पणी'
show:
title_all: OpenStreetMap परिवर्वतन सूची छलफल
title_particular: 'OpenStreetMap परिवर्तन सूची #%{changeset_id} छलफल'
changesets:
changeset:
- anonymous: बेनाम
no_edits: (कुनै सम्पादनहरू छैनन्)
view_changeset_details: परिवर्तनहरूको विवरण हेर्नुहोस्
index:
report: यस टिप्पणी माथि उजुरी गर्ने
location:
location: 'स्थान:'
- view: अवलोकन गर्नुहोस्
- edit: सम्पादन गर्नुहोस्
coordinates: '%{latitude}; %{longitude}'
feed:
user:
level8: सहर सीमा
level9: गाउँ सीमा
level10: उपनगर सीमा
- types:
- cities: सहरहरू
- towns: नगरहरू
- places: स्थानहरू
results:
no_results: कुनै नतिजाहरू भेटिएनन्
more_results: थप नतिजाहरू
greeting: नमस्ते,
changeset_comment_notification:
hi: नमस्ते %{to_user},
- greeting: नमस्ते,
confirmations:
confirm:
button: निश्चित गर्नुहोस्
tab_title: प्रवेश
password: पासवर्ड
login_button: प्रवेश
- register now: अहिले दर्ता गर्नुहोस्
with external: वा तेस्रो पक्षसँग लग इन गर्नुहोस्
or: अथवा
auth failure: माफ गर्नुहोस्, ती विवरणहरूसँग लग इन गर्न सकिएन।
summit: शिखर
peak: शिखर
bus_stop: बस बिसौनी
- stop: रोक्ने
bicycle_shop: साइकल पसल
bicycle_rental: साइकल भाडामा
bicycle_parking: साकल पार्किङ
heading_ct: योगदानकर्ता सर्तहरू
consider_pd_why: यो के हो ?
continue: जारी राख्ने
- decline: असहमत
legale_names:
france: फ्रान्स
italy: इटाली
activerecord:
errors:
messages:
- invalid_email_address: lijkt geen geldig e-mailadres te zijn
- email_address_not_routable: is niet routeerbaar
display_name_is_user_n: kan niet user_n zijn, tenzij n uw gebruikers-ID is
models:
user_mute:
comment:
comment: 'Nieuwe reactie bij wijzigingenset #%{changeset_id} door %{author}'
commented_at_by_html: '%{when} bijgewerkt door %{user}'
- comments:
- comment: 'Nieuwe reactie bij wijzigingenset #%{changeset_id} door %{author}'
show:
title_all: Overleg over een wijzigingenset van OpenStreetMap
title_particular: 'Overleg over wijzigingenset #%{changeset_id} van OpenStreetMap'
u hebt opgevraagd duurde te lang.
changesets:
changeset:
- anonymous: Anoniem
no_edits: (geen bewerkingen)
view_changeset_details: Details wijzigingenset weergeven
index:
title: Wijzigingenreeks %{id}
created_by_html: Gemaakt door %{link_user} op %{created}.
no_such_entry:
- title: Een dergelijke wijzigingenreeks bestaat niet
heading: 'Geen gegevens met de id: %{id}'
body: Er is geen wijzigingenreeks met de id %{id}. Controleer uw spelling, of
wellicht is de lijk die u hebt gevolgd foutief.
report: Rapporteer deze reactie
location:
location: 'Locatie:'
- view: Weergeven
- edit: Bewerken
feed:
user:
title: OpenStreetMap-dagboekberichten van %{user}
level9: Dorpsgrens
level10: Stadsdeelgrens
level11: Grens van buurt
- types:
- cities: Steden
- towns: Steden
- places: Plaatsen
results:
no_results: Geen resultaten gevonden
more_results: Meer resultaten
not_updated: Niet Bijgewerkt
search: Zoeken
search_guidance: 'Problemen zoeken:'
- link_to_reports: Rapporten weergeven
states:
ignored: Genegeerd
open: Open
changeset_comment_notification:
description: 'OpenStreetMap-wijzigingenreeks #%{id}'
hi: Hoi %{to_user},
- greeting: Hallo,
commented:
subject_own: '[OpenStreetMap] %{commenter} heeft gereageerd op één van uw
wijzigingensets'
remember: Aanmeldgegevens onthouden
lost password link: Wachtwoord vergeten?
login_button: Aanmelden
- register now: Nu inschrijven
with external: of meld u aan via een derde
or: of
auth failure: Met deze gegevens kunt u helaas niet aanmelden.
destination: Bestemmingsverkeer
construction: Weg in aanleg
bus_stop: Bushalte
- stop: Halte
bicycle_shop: Fietsenwinkel
bicycle_rental: Fietsverhuur
bicycle_parking: Fietsenstalling
privacy_policy: privacybeleid
privacy_policy_title: OSMF-privacybeleid, met een kopje over e-mailadressen
contributor_terms: bijdragevoorwaarden
- tou: gebruiksvoorwaarden
- external auth: 'Authenticatie van derden:'
continue: Registreren
terms accepted: Dank u wel voor het aanvaarden van de nieuwe bijdragersovereenkomst!
email_help:
readable_summary: voor mensen leesbare samenvatting
informal_translations: informele vertalingen
continue: Doorgaan
- decline: Weigeren
you need to accept or decline: Lees de nieuwe Bijdragersvoorwaarden en besluit
daarna deze te accepteren of te verwerpen voordat u door kunt gaan.
legale_select: 'Selecteer het land waarin u woont:'
create: Opprett blokkering
update: Oppdater blokkering
activerecord:
- errors:
- messages:
- invalid_email_address: ser ikkje ut til å vere ei gyldig e-postadresse
- email_address_not_routable: kan ikkje rutast
models:
acl: Tilgangskontrolliste
changeset: Endringssett
comment:
comment: 'Ny kommentar til endringssett #%{changeset_id} av %{author}'
commented_at_by_html: Oppdatert %{when} av %{user}
- comments:
- comment: 'Ny kommentar til endringssett #%{changeset_id} av %{author}'
show:
title_all: Endringssettdiskusjon hjå OpenStreetMap
title_particular: Diskusjon om endringssett %{changeset_id} hjå OpenStreetMap
sorry: Lista over kommentarar til endringssett tok for lang tid å henta.
changesets:
changeset:
- anonymous: Anonym
no_edits: (ingen redigeringar)
view_changeset_details: Vis detaljar for endringssett
index:
report: Rapporter denne kommentaren
location:
location: 'Stad:'
- view: Vis
- edit: Endra
feed:
user:
title: Oppføringar i OpenStreetMap-dagboka frå %{user}
level9: Landsbygrense
level10: Forstadsgrense
level11: Grannelagsgrense
- types:
- cities: Byar
- towns: Småbyar
- places: Stader
results:
no_results: Ingen resultat funne
more_results: Fleire resultat
not_updated: Ikkje oppdatert
search: Søk
search_guidance: 'Søk blant saker:'
- link_to_reports: Sjå meldingar
states:
ignored: Sett bort frå
open: Open
details_html: Fleire detaljar om merknaden finst på %{url}.
changeset_comment_notification:
hi: Hei %{to_user},
- greeting: Hei,
commented:
subject_own: '[OpenStreetMap] %{commenter} har kommentert eitt av endringssetta
dine'
remember: Hugs meg
lost password link: Mista passordet ditt?
login_button: Logg inn
- register now: Registrer deg no
with external: 'Alternativt kan du bruke ein tredjepart til å logge inn:'
auth failure: Beklagar, kunne ikkje logge inn med den informasjonen
destroy:
vere i public domain
consider_pd_why: kva er dette?
consider_pd_why_url: https://www.osmfoundation.org/wiki/License/Why_would_i_want_my_contributions_to_be_public_domain
- decline: Avslå
you need to accept or decline: Les og deretter anten godta eller avslå dei nye
bidragsytervilkåra for å halde fram.
legale_select: 'Vel ditt bostedsland:'
create: ߘߏߙߊ ߘߏ߫ ߛߌ߲ߘߌ߫
update: ߘߏߙߊ ߘߏ߫ ߟߊߦߟߍ߬
activerecord:
- errors:
- messages:
- invalid_email_address: ߊ߬ ߡߊ߫ ߓߐ߫ ߦߏ߫ ߢ:ߞߏ߲ߘߏ ߛߊ߲߬ߓߊ߬ߕߐ߮ ߓߍ߲߬ߣߍ߲ ߠߋ߬
- email_address_not_routable: ߊ߬ ߕߍ߫ ߛߙߊ߬ߕߊ߫ ߘߌ߫
models:
acl: ߞߣߐ߬ߜߍ߲߬ ߛߙߍߘߍ ߟߊߛߐ߬ߘߐ߲߫
changeset: ߟߊ߬ߘߏ߲߬ߠߌ߲ ߡߊߝߊ߬ߟߋ߲߫
comment: ߞߊ߲߬ߞߎ߬ߡߊ߬ ߞߎߘߊ߫ ߦߋ߫ ߡߊ߬ߦߟߍ߬ߡߊ߲߬ߠߌ߲߬ ߠߊߞߊ߬ߝߏ߬ߣߍ߲ %{changeset_id}
%{author} ߓߟߏ߫
commented_at_by_html: ߊ߬ ߟߊߘߎߘߦߊߣߍ߲߫ ߦߋ߫ %{when} ߊ߬ ߣߌ߫ %{user} ߓߟߏ߫
- comments:
- comment: ߞߊ߲߬ߞߎ߬ߡߊ߬ ߞߎߘߊ߫ ߦߋ߫ ߡߊ߬ߦߟߍ߬ߡߊ߲߬ߠߌ߲߬ ߠߊߞߊ߬ߝߏ߬ߣߍ߲ %{changeset_id}
- ߠߊ߫ %{author} ߓߟߏ߫
show:
title_all: ߏߔߌ߲ߛߑߕߙߌߕߑߡߊߔ ߡߊ߬ߦߟߍ߬ߡߊ߲߬ߠߌ߲߫ ߞߙߎ ߘߊߘߐߖߊߥߏ
title_particular: ߏߔߌ߲ߛߑߕߙߌߕߑߡߊߔ ߡߊ߬ߦߟߍ߬ߡߊ߲߬ߠߌ߲߬ ߠߊߞߊ߬ߝߏ߬ߣߍ߲ %{changeset_id}
ߘߐ߫ ߌ ߓߟߏ߫߸ ߊ߬ ߓߘߊ߫ ߥߛߎ߬ ߖߊ߲߬ߓߊ ߟߋ߬ ߞߵߊ߬ ߡߊߛߐ߬ߘߐ߲ ߘߐ߫.
changesets:
changeset:
- anonymous: ߕߐ߯ߒߕߊ߲
no_edits: (ߡߊ߬ߦߟߍ߬ߡߊ߲߬ߠߌ߲߬ ߕߴߦߋ߲߬)
view_changeset_details: ߟߊ߬ߘߏ߲߬ߠߌ߲ ߡߊ߬ߝߊ߬ߟߋ߲߬ߠߌ߲ ߝߊߙߊ߲ߝߊ߯ߛߟߌ ߘߐߜߍ߫
index:
report: ߡߙߌߣߊ߲ ߣߌ߲߬ ߠߊߞߏߝߐ߫
location:
location: 'ߘߌ߲߬ߞߌߙߊ:'
- view: ߦߌ߬ߘߊ߬ߟߌ
- edit: ߊ߬ ߡߊߦߟߍ߬ߡߊ߲߫
feed:
user:
title: ߏߔߌ߲ߛߕߑߙߌߕߑߡߊߔ %{user} ߟߊ߫ ߕߋ߬ߟߋ߲ ߟߊ߬ߘߏ߲߬ߠߌ߲ ߠߎ߬
level8: ߛߏ ߓߐߕߏ߲
level9: ߕߏߘߊ ߓߐߕߏ߲
level11: ߛߌ߰ߢߐ߲߰ߦߊ߬ ߦߙߐ ߓߐߕߏ߲
- types:
- towns: ߛߏ
- places: ߘߌ߲߬ߞߌߙߊ
results:
no_results: ߞߐߝߟߌ߫ ߡߊ߫ ߛߐ߬ߘߐ߲߬
more_results: ߞߐߝߟߌ߫ ߜߘߍ ߟߎ߬
not_updated: ߊ߬ ߡߊ߫ ߟߏ߲ߘߐߦߊ߫
search: ߢߌߣߌ߲ߠߌ߲
search_guidance: ߓߐ߲ߘߊ ߘߏ߫ ߢߌߣߌ߲߫
- link_to_reports: ߞߏߝߐߟߌ߫ ߟߎ߬ ߘߐߜߍ߫
states:
ignored: ߊ߬ ߡߊߓߌ߬ߟߊ߬ߣߍ߲߫
open: ߊ߬ ߟߊߞߊ߬
ߘߐ߫.
changeset_comment_notification:
hi: ߌ ߣߌ߫ ߕߎ߬ߡߊ߫ %{to_user}
- greeting: ߌ ߣߌ߫ ߕߎ߬ߡߊ߬߸
commented:
partial_changeset_with_comment: ߡߙߌߣߊ߲ ߘߌ߫ %{changeset_comment}ߴ
partial_changeset_without_comment: ߞߵߊ߬ ߕߘߍ߬ ߡߙߌߣߊ߲߫ ߕߍ߫
remember: ߒ ߖߊ߲߭ߓߌ߬ߟߊ߬
lost password link: ߌ ߓߘߊ߫ ߢߌ߬ߣߊ߬ ߌ ߟߊ߫ ߕߊ߬ߡߌ߲߬ߞߊ߲ ߠߊ߫؟
login_button: ߌ ߜߊ߲߬ߞߎ߲߫
- register now: ߌ ߕߐ߮ ߛߓߍ߫ ߡߎ߬ߕߎ߲߫
auth failure: ߤߊߞߍ߬ߕߏ߫߸ ߌ ߕߴߛߋ߫ ߌ ߜߊ߲߬ߞߎ߲߬ ߠߊ߫ ߝߊߙߊ߲ߝߊ߯ߛߌ ߏ߬ ߟߐ߬ߟߊ߫.
destroy:
title: ߌ ߜߊ߲߬ߞߎ߲߬ߣߍ߲ ߓߐ߫
create: Crear un blòt
update: Modificar lo blòt
activerecord:
- errors:
- messages:
- invalid_email_address: sembla pas una adreiça de corrier electronic valida
- email_address_not_routable: es pas rotable
models:
acl: Lista de contraròtle d’accès
changeset: Grop de modificacions
comment: Comentari novèu sus lo grop de modificacions nº %{changeset_id} per
%{author}
commented_at_by_html: Actualizat fa %{when} per %{user}
- comments:
- comment: Comentari novèu sus lo grop de modificacions nº %{changeset_id} per
- %{author}
show:
title_all: Discussion sus lo grop de modificacions OpenStreetMap
title_particular: Discussion sus lo grop de modificacions OpenStreetMap nº
met tròp de temps per èsser recuperada.
changesets:
changeset:
- anonymous: Anonim
no_edits: (sensa modificacion)
view_changeset_details: Mostrar per lo menut lo grop de modificacions
index:
report: Denonciar aqueste comentari
location:
location: 'Luòc :'
- view: Mostrar
- edit: Editar
feed:
user:
title: Entradas de jornau d'OpenStreetMap per %{user}
level9: Limit dau vilatge
level10: Limit de la banlèga
level11: Limit de quartier
- types:
- cities: Vilas
- towns: Vilòtas
- places: Plaças
results:
no_results: Cap de resultat es pas estat trobat
more_results: Mai de resultats
not_updated: Pas actualizat
search: Recercar
search_guidance: 'Cercar d''incidéncias:'
- link_to_reports: Mostrar lei rapòrts
states:
ignored: Ignorat
open: Dobèrt
details_html: Podètz trobar mai de detalhs de la nòta a %{url}.
changeset_comment_notification:
hi: Bonjorn %{to_user},
- greeting: Bonjorn,
commented:
subject_own: '[OpenStreetMap] %{commenter} a comentat un de vòstres ensembles
de cambiaments'
remember: Se remembrar de ieu
lost password link: Avètz perdut vòstre senhal ?
login_button: Se connectar
- register now: S'inscriure ara
with external: 'A la plaça, utilizatz un tèrç per vos connectar :'
auth failure: O planhèm, mas las informacions provesidas an pas permés de vos
identificar.
header: Liure e modificable
display name description: Vòstre nom d'utilizaire afichat publicament. Podètz
cambiar aquò ulteriorament dins las preferéncias.
- external auth: 'Autentificacion tèrça :'
continue: S’inscriure
terms accepted: Mercé d’aver acceptat los novèls tèrmes del contributor !
use external auth: A la plaça, utilizatz un tèrç per vos connectar
dins lo domeni public
consider_pd_why: qu’es aquò ?
continue: Contunhar
- decline: Declinar
you need to accept or decline: Legissètz e puèi, siá acceptatz o refusatz las
novèlas condicions de contributor per contunhar.
legale_select: 'País de residéncia :'
create: ਬਲਾਕ ਬਣਾਓ
update: ਰੋਕ ਨਵਿਆਉ
activerecord:
- errors:
- messages:
- invalid_email_address: ਜਾਇਜ਼ ਈਮੇਲ ਪਤਾ ਨਹੀਂ ਲੱਗ ਰਿਹਾ
models:
acl: ਅਸੈੱਸ ਕੰਟਰੋਲ ਲਿਸਟ
changeset: ਤਬਦੀਲੀ ਲੜੀ
enclosing: ਨੱਥੀ ਵਿਸ਼ੇਸ਼ਤਾਵਾਂ
changesets:
changeset:
- anonymous: ਬੇਪਛਾਣ
no_edits: (ਕੋਈ ਸੋਧ ਨਹੀਂ)
index:
title: ਤਬਦੀਲੀਆਂ
confirm: ਤਸਦੀਕ ਕਰੋ
location:
location: 'ਟਿਕਾਣਾ:'
- view: ਵੇਖੋ
- edit: ਸੋਧੋ
diary_comments:
page:
post: ਡਾਕ
level8: ਸ਼ਹਿਰ ਦੀ ਹੱਦ
level9: ਪਿੰਡ ਦੀ ਜੂਹ
level10: ਉਪਨਗਰ ਦੀ ਜੂਹ
- types:
- cities: ਸ਼ਹਿਰ
- towns: ਕਸਬੇ
- places: ਥਾਂਵਾਂ
results:
no_results: ਕੋਈ ਨਤੀਜੇ ਨਹੀਂ ਲੱਭੇ
more_results: ਹੋਰ ਨਤੀਜੇ
anonymous: ਇੱਕ ਗੁੰਮਨਾਮ ਵਰਤੋਂਕਾਰ
greeting: ਸਤਿ ਸ੍ਰੀ ਅਕਾਲ,
changeset_comment_notification:
- greeting: ਸਤਿ ਸ੍ਰੀ ਅਕਾਲ,
commented:
partial_changeset_without_comment: ਬਿਨਾ ਟਿੱਪਣੀ
confirmations:
remember: ਮੈਨੂੰ ਯਾਦ ਰੱਖੋ
lost password link: ਆਪਣਾ ਪਛਾਣ-ਸ਼ਬਦ ਗੁਆ ਦਿੱਤਾ?
login_button: ਦਾਖ਼ਲ ਹੋਵੋ
- register now: ਹੁਣੇ ਰਜਿਸਟਰ ਕਰੋ
destroy:
title: ਬਾਹਰ ਆਉ
heading: ਖੁੱਲ੍ਹਾ-ਗਲੀ-ਨਕਸ਼ਾ ਤੋਂ ਬਾਹਰ ਆਓ
about:
heading_html: '%{copyright}ਖੁੱਲ੍ਹਾ-ਗਲੀ-ਨਕਸ਼ਾ %{br} ਯੋਗਦਾਨੀ'
local_knowledge_title: ਸਥਾਨੀ ਗਿਆਨ
- open_data_title: à¨\93ਪਨ ਡਾà¨\9fਾ
+ open_data_title: ਡਾà¨\9fਾ à¨\96à©\8bਲà©\8dਹà©\8b
legal_title: ਕਾਨੂੰਨੀ
partners_title: ਸਾਂਝੀਦਾਰ
copyright:
table:
entry:
motorway: ਮੋਟਰਵੇਅ
+ main_road: ਮੁੱਢਲੀ ਸੜਕ
trunk: ਟਰੰਕ ਸੜਕ
primary: ਮੁੱਢਲੀ ਸੜਕ
secondary: ਸਕੈਂਡਰੀ ਸੜਕ
heading: ਸ਼ਰਤਾਂ
consider_pd_why: ਇਹ ਕੀ ਹੈ?
informal_translations: ਗ਼ੈਰ-ਰਸਮੀ ਤਰਜਮਾ
- decline: ਮਨਜ਼ੂਰ ਨਹੀਂ
legale_select: 'ਆਪਣੀ ਰਿਹਾਇਸ਼ ਦਾ ਦੇਸ਼ ਚੁਣੋ:'
legale_names:
france: ਫ਼ਰਾਂਸ
# Author: Maraf24
# Author: Maro21
# Author: Mateon1
+# Author: Meeqoo
# Author: Mikini
# Author: Mkot
# Author: Nemo bis
prompt: Wybierz plik
submit:
diary_comment:
- create: Wyślij komentarz
+ create: Skomentuj
diary_entry:
create: Opublikuj
update: Uaktualnij
create: Wyślij
client_application:
create: Zarejestruj
- update: Edytuj
+ update: Uaktualnij
oauth2_application:
create: Zarejestruj
update: Aktualizuj
activerecord:
errors:
messages:
- invalid_email_address: nie wygląda na poprawny adres e-mail
- email_address_not_routable: nie jest routowalny
display_name_is_user_n: nie może mieć wartości user_n, chyba że n jest Twoim
identyfikatorem użytkownika
models:
changeset_tag: Znacznik zestawu zmian
country: Państwo
diary_comment: Komentarz do dziennika
- diary_entry: Wpis do dziennika
+ diary_entry: Wpis dziennika
friend: Znajomy
- issue: sprawa
+ issue: Problem
language: Język
message: Wiadomość
node: Węzeł
old_relation_member: Człon starej relacji
old_relation_tag: Znacznik wcześniejszej relacji
old_way: Stara linia
- old_way_node: Węzeł starej linii
+ old_way_node: Węzeł wcześniejszej linii
old_way_tag: Znacznik starej linii
relation: Relacja
relation_member: Człon relacji
- relation_tag: Tag relacji
- report: zgłoszenie
+ relation_tag: Znacznik relacji
+ report: Zgłoszenie
session: Sesja
trace: Ślad
tracepoint: Punkt śladu
longitude: Długość geograficzna
public: Publiczny
description: Opis
- gpx_file: Prześlij plik GPX
+ gpx_file: Wybierz plik śladu GPS
visibility: Widoczność
- tagstring: Tagi
+ tagstring: Znaczniki
message:
sender: Nadawca
title: Temat
email: E-mail
new_email: Nowy adres e-mail
active: Aktywny
- display_name: Wyświetlana nazwa
- description: Opis
- home_lat: 'Szerokość:'
- home_lon: 'Długość geograficzna:'
+ display_name: Nazwa wyświetlana
+ description: Opis profilu
+ home_lat: Szerokość geograficzna
+ home_lon: Długość geograficzna
languages: Preferowane języki
- preferred_editor: 'Preferowane edytowanie w:'
+ preferred_editor: Preferowany edytor
pass_crypt: Hasło
pass_crypt_confirmation: Potwierdź hasło
help:
doorkeeper/application:
- confidential: Aplikacja będzie używana tam, gdzie tajny klucz klienta może
- być zachowany jako poufny (natywne aplikacje mobilne i aplikacje jednostronicowe
- nie są poufne)
+ confidential: Aplikacja będzie używana tam, gdzie klucz klienta może być zachowany
+ jako poufny (natywne aplikacje mobilne i aplikacje jednostronicowe nie są
+ poufne)
redirect_uri: Każdy URI w osobnej linii
trace:
tagstring: rozdzielone przecinkami
few: prawie %{count} lata temu
many: prawie %{count} lat temu
other: prawie %{count} roku temu
- half_a_minute: 30 sekund temu
+ half_a_minute: pół minuty temu
less_than_x_seconds:
one: mniej niż sekundę temu
few: mniej niż %{count} sekundy temu
api:
notes:
comment:
- opened_at_html: Stworzono %{when}
- opened_at_by_html: Stworzono %{when} przez %{user}
+ opened_at_html: Utworzono %{when}
+ opened_at_by_html: Utworzono %{when} przez %{user}
commented_at_html: Zaktualizowano %{when}
commented_at_by_html: Zaktualizowano %{when} przez %{user}
closed_at_html: Rozwiązano %{when}
description_all: Lista zgłoszonych, skomentowanych lub zamkniętych uwag
description_area: Lista uwag stworzonych, skomentowanych lub zamkniętych w
twojej okolicy [(%{min_lat}|%{min_lon}) -- (%{max_lat}|%{max_lon})]
- description_item: Kanał RSS uwagi %{id}
- opened: 'nowa uwaga (w lokalizacji: %{place})'
+ description_item: Kanał RSS dla uwagi %{id}
+ opened: nowa uwaga (w pobliżu %{place})
commented: nowy komentarz (w pobliżu %{place})
- closed: 'zamknięta uwaga (w lokalizacji: %{place})'
- reopened: 'ponownie aktywowana uwaga (w lokalizacji: %{place})'
+ closed: zamknięta uwaga (w pobliżu %{place})
+ reopened: ponownie aktywowana uwaga (w pobliżu %{place})
entry:
comment: Komentarz
full: Pełna treść uwagi
deletions:
show:
title: Usuń moje konto
- warning: Uwaga! Proces usuwania konta jest ostateczny i nie można go cofnąć.
+ warning: Uwaga! Usunięcie konta jest ostateczne i nie można go cofnąć.
delete_account: Usuń konto
delete_introduction: 'Możesz usunąć swoje konto OpenStreetMap używając poniższego
przycisku. Proszę zwrócić uwagę na następujące szczegóły:'
title: Zmiana ustawień konta
my settings: Ustawienia
current email address: Aktualny adres e-mail
- external auth: 'Zewnętrzne uwierzytelnienie:'
+ external auth: Zewnętrzne uwierzytelnienie
openid:
link: https://wiki.openstreetmap.org/wiki/Pl:OpenID
link text: co to jest?
public editing:
- heading: 'Edycje publiczne:'
+ heading: Edycje publiczne
enabled: Włączone. Nieanonimowy i uprawniony do edycji danych.
enabled link text: co to jest?
disabled: Wyłączone i nieuprawniony do edycji danych, wszystkie wcześniejsze
edycje są anonimowe.
disabled link text: dlaczego nie mogę mapować?
contributor terms:
- heading: 'Warunki uczestnictwa:'
+ heading: Warunki uczestnictwa
agreed: Wyrażono zgodę na nowe Warunki Uczestnictwa.
not yet agreed: Nie wyrażono zgody na nowe Warunki Uczestnictwa.
- review link text: Na tej stronie możesz zapoznać się z nowymi Warunkami Uczestnictwa
- i je zaakceptować.
- agreed_with_pd: Zadeklarowałeś, że twoje edycje publikujesz w domenie publicznej.
+ review link text: Skorzystaj z tego odnośnika w dogodnym momencie, aby zapoznać
+ się z nowymi Warunkami Uczestnictwa i je zaakceptować.
+ agreed_with_pd: Zadeklarowałeś, że swoje edycje publikujesz w domenie publicznej.
link text: co to jest?
save changes button: Zapisz zmiany
delete_account: Usuń konto...
go_public:
- heading: 'Edycje publiczne:'
+ heading: Edycje publiczne
currently_not_public: Twoje edycje są obecnie anonimowe i inni nie mogą ci wysyłać
wiadomości ani zobaczyć twojej lokalizacji. Aby pokazać swoje edycje i umożliwić
innym kontakt z tobą przez stronę, kliknij przycisk poniżej.
email_not_revealed: Twój adres e-mail nie będzie wyświetlany publicznie.
not_reversible: Tej akcji nie można cofnąć, a wszyscy nowi użytkownicy są teraz
domyślnie publiczni.
- make_edits_public_button: Niech wszystkie edycje będą publiczne.
+ make_edits_public_button: Niech wszystkie moje edycje będą publiczne.
update:
success_confirm_needed: Zaktualizowano profil użytkownika. Sprawdź, czy przyszedł
już e-mail potwierdzający nowy adres mailowy.
many: '%{count} relacji'
other: '%{count} relacji'
part_of_ways:
- one: 1 linia
+ one: '%{count} linia'
few: '%{count} linie'
many: '%{count} linii'
other: '%{count} linii'
history_title_html: 'Historia linii: %{name}'
nodes: Węzły
nodes_count:
- one: 1 węzeł
+ one: '%{count} węzeł'
few: '%{count} węzły'
many: '%{count} węzłów'
other: '%{count} węzła'
history_title_html: 'Historia relacji: %{name}'
members: Człony relacji
members_count:
- one: 1 człon
+ one: '%{count} człon'
few: '%{count} człony'
many: '%{count} członów'
other: '%{count} członu'
introduction: Kliknij na mapie, by wyszukać pobliskie obiekty.
nearby: Obiekty w pobliżu
enclosing: Większe, otaczające obiekty
+ nodes:
+ timeout:
+ sorry: Niestety, pobranie danych węzła o identyfikatorze %{id} trwało zbyt długo.
old_nodes:
not_found:
sorry: 'Nie odnaleziono węzła #%{id} w wersji %{version}.'
+ timeout:
+ sorry: Niestety, pobranie historii węzła o identyfikatorze %{id} trwało zbyt
+ długo.
+ ways:
+ timeout:
+ sorry: Niestety, pobranie danych linii o identyfikatorze %{id} trwało zbyt długo.
old_ways:
not_found:
sorry: 'Nie odnaleziono linii #%{id} w wersji %{version}.'
+ timeout:
+ sorry: Niestety, pobranie historii linii o identyfikatorze %{id} trwało zbyt
+ długo.
+ relations:
+ timeout:
+ sorry: Niestety, pobranie danych relacji o identyfikatorze %{id} trwało zbyt
+ długo.
old_relations:
not_found:
sorry: 'Nie odnaleziono relacji #%{id} w wersji %{version}.'
+ timeout:
+ sorry: Niestety, pobranie historii relacji o identyfikatorze %{id} trwało zbyt
+ długo.
changeset_comments:
feeds:
comment:
comment: 'Nowy komentarz do zestawu zmian #%{changeset_id}% autorstwa %{author}'
commented_at_by_html: Zaktualizowano %{when} przez %{user}
- comments:
- comment: 'Nowy komentarz do zestawu zmian #%{changeset_id} autorstwa %{author}'
show:
title_all: Dyskusja na temat zestawu zmian
title_particular: 'Dyskusja na temat zestawu zmian #%{changeset_id}'
zbyt długo.
changesets:
changeset:
- anonymous: Anonim
no_edits: (brak edycji)
view_changeset_details: Zobacz szczegóły zestawu zmian
index:
title: Zestaw zmian %{id}
created_by_html: Utworzony przez %{link_user} w %{created}.
no_such_entry:
- title: Brak takiego zestawu zmian
+ heading: Brak wpisu o identyfikatorze %{id}
body: Niestety nie odnaleziono zestawu zmian o identyfikatorze %{id}. Sprawdź
pisownię. Być może skorzystano z nieprawidłowego odnośnika.
show:
report: Zgłoś ten komentarz
location:
location: 'Położenie:'
- view: Podgląd
- edit: Edytuj
feed:
user:
title: Wpisy użytkownika %{user}
description: Ostatnie wpisy dzienników od użytkowników OpenStreetMap
subscribe:
heading: Zasubskrybować następującą dyskusję dotyczącą wpisu do pamiętnika?
+ button: Subskrybuj dyskusję
unsubscribe:
heading: Wypisać się z poniższej dyskusji na temat wpisu dziennika?
button: Wypisz się z dyskusji
post: Wpis
when: Kiedy
comment: Komentarz
+ new:
+ heading: Czy dodać komentarz do tej dyskusji o wpisie dziennika?
doorkeeper:
errors:
messages:
account_selection_required: Serwer autoryzacji wymaga wybrania konta użytkownika
końcowego
+ consent_required: Serwer autoryzacyjny wymaga zgody użytkownika końcowego
+ interaction_required: Serwer autoryzacyjny wymaga interakcji użytkownika końcowego
+ login_required: Serwer autoryzacyjny wymaga uwierzytelnienia użytkownika końcowego
flash:
applications:
create:
notice: Zarejestrowano aplikację.
+ openid_connect:
+ errors:
+ messages:
+ auth_time_from_resource_owner_not_configured: Błąd spowodowany brakiem konfiguracji
+ Doorkeeper::OpenidConnect.configure.auth_time_from_resource_owner.
+ reauthenticate_resource_owner_not_configured: Błąd spowodowany brakiem konfiguracji
+ Doorkeeper::OpenidConnect.configure.reauthenticate_resource_owner.
+ resource_owner_from_access_token_not_configured: Błąd spowodowany brakiem
+ konfiguracji Doorkeeper::OpenidConnect.configure.auth_time_from_resource_owner.
+ select_account_for_resource_owner_not_configured: Błąd spowodowany brakiem
+ konfiguracji Doorkeeper::OpenidConnect.configure.auth_time_from_resource_owner.
+ subject_not_configured: Generowanie tokena ID nie powiodło się z powodu
+ braku konfiguracji Doorkeeper::OpenidConnect.configure.subject.
scopes:
address: Wyświetl swój adres
email: Zobacz swój adres e-mail
contact_the_community_html: '%{contact_link} ze społecznością OpenStreetMap,
jeśli znalazłeś uszkodzony link lub błąd. Zapisz dokładny adres URL swojego
żądania.'
+ bad_request:
+ title: Nieprawidłowe żądanie
+ description: Operacja, której zażądałeś na serwerze OpenStreetMap jest nieprawidłowa
+ (HTTP 400)
forbidden:
title: Dostęp zabroniony
description: Żądana operacja na serwerze OpenStreetMap jest dostępna tylko dla
level9: Granica dzielnicy
level10: Granica osiedla
level11: Granica osiedla
- types:
- cities: Miasta
- towns: Miasta
- places: Miejsca
results:
no_results: Nic nie znaleziono
more_results: Więcej wyników
not_updated: Niezaktualizowane
search: Wyszukaj
search_guidance: 'Przeszukaj sprawy:'
- link_to_reports: Zobacz zgłoszenia
states:
ignored: zignorowane
open: otwarte
page:
user_not_found: Użytkownik nie istnieje
issues_not_found: Nie znaleziono takiej sprawy
+ reported_user: Zgłoszony użytkownik
status: Stan
reports: Zgłoszenia
last_updated: Ostatnia aktualizacja
many: '%{count} zgłoszeń'
other: '%{count} zgłoszenia'
reported_item: Zgłoszony element
+ states:
+ ignored: Zignorowano
+ open: Otwórz
+ resolved: Rozwiązane
show:
title: '%{status} sprawa #%{issue_id}'
reports:
more: Więcej
user_mailer:
diary_comment_notification:
- subject: '[OpenStreetMap] Użytkownik %{user} skomentował wpis dziennika'
- hi: Witaj %{to_user},
+ description: 'Wpis dziennika OpenStreetMap #%{id}'
+ subject: '[OpenStreetMap] %{user} skomentował wpis dziennika'
+ hi: Cześć, %{to_user},
header: '%{from_user} zostawił(a) komentarz do wpisu w dzienniku OpenStreetMap
o temacie %{subject}:'
header_html: '%{from_user} zostawił(a) komentarz do wpisu w dzienniku OpenStreetMap
%{commenturl} lub wysłać wiadomość do autora pod %{replyurl}
footer_html: Możesz również przeczytać komentarz pod %{readurl}, skomentować
go pod %{commenturl} lub wysłać wiadomość do autora pod %{replyurl}
+ footer_unsubscribe: Możesz wypisać się z subskrypcji tego wpisu dziennika pod
+ %{unsubscribeurl}
+ footer_unsubscribe_html: Możesz wypisać się z subskrypcji tego wpisu dziennika
+ pod %{unsubscribeurl}
message_notification:
subject: '[OpenStreetMap] %{message_title}'
- hi: Witaj %{to_user},
+ hi: Cześć, %{to_user},
header: '%{from_user} wysłał do ciebie wiadomość z OpenStreetMap o temacie %{subject}:'
header_html: '%{from_user} wysłał do ciebie wiadomość z OpenStreetMap o temacie
%{subject}:'
footer_html: Możesz również przeczytać wiadomość na %{readurl} i wysłać wiadomość
do autora na %{replyurl}
friendship_notification:
- hi: Witaj %{to_user},
- subject: '[OpenStreetMap] Użytkownik %{user} dodał cię jako znajomego'
+ hi: Cześć, %{to_user},
+ subject: '[OpenStreetMap] %{user} dodał cię jako znajomego'
had_added_you: '%{user} dodał(a) cię jako swojego znajomego na OpenStreetMap.'
see_their_profile: Możesz zobaczyć jego profil na stronie %{userurl}.
see_their_profile_html: Możesz zobaczyć jego profil na stronie %{userurl}.
befriend_them: Możesz również dodać go jako znajomego na %{befriendurl}.
befriend_them_html: Możesz również dodać go jako znajomego na %{befriendurl}.
gpx_description:
- description_with_tags_html: 'Wygląda na to, że twój plik GPX %{trace_name} z
- opisem %{trace_description} i tagami: %{tags}'
- description_with_no_tags_html: Wygląda na to, że twój plik GPX %{trace_name}
- z opisem %{trace_description} i bez tagów
+ description_with_tags: 'Wygląda jak twój plik GPX %{trace_name} z opisem %{trace_description}
+ i tagami: %{tags}'
+ description_with_tags_html: 'Wygląda jak twój plik %{trace_name} z opisem %{trace_description}
+ i następującymi tagami: %{tags}'
+ description_with_no_tags: Wygląda jak twój plik %{trace_name} z opisem %{trace_description}
+ i bez tagów
+ description_with_no_tags_html: Wygląda jak twój plik %{trace_name} z opisem
+ %{trace_description} i bez tagów
gpx_failure:
hi: Cześć, %{to_user},
- failed_to_import: 'nie został zaimportowany. Komunikat błędu:'
+ failed_to_import: 'nie udało się zaimportować jako pliku śladu GPS. Sprawdź,
+ czy plik jest prawidłowym plikiem GPX lub archiwum zawierającym plik(i) GPX
+ w obsługiwanym formacie (.tar.gz, .tar.bz2, .tar, .zip, .gpx.gz, .gpx.bz2).
+ Czy plik może mieć problem z formatem lub składnią? Oto błąd importu:'
+ more_info: Więcej informacji na temat błędów importu plików GPX można znaleźć
+ na %{url}.
more_info_html: Więcej informacji na temat błędów importu plików GPX można znaleźć
na %{url}.
subject: '[OpenStreetMap] Nieudane importowanie pliku GPX'
gpx_success:
hi: Cześć, %{to_user},
+ loaded: '{{PLURAL|one=załadowano pomyślnie z %{trace_points} z możliwego %{count}
+ punktu.|few=załadowano pomyślnie z %{trace_points} z możliwych %{count} punktów.|many=załadowano
+ pomyślnie z %{trace_points} z możliwych %{count} punktów.'
+ trace_location: Twój ślad jest dostępny pod adresem %{trace_url}
+ all_your_traces: Wszystkie pomyślnie przesłane ślady GPX można znaleźć pod adresem
+ %{url}
+ all_your_traces_html: Wszystkie pomyślnie przesłane ślady GPX można znaleźć
+ pod adresem %{url}
subject: '[OpenStreetMap] Zaimportowano plik GPX'
signup_confirm:
subject: '[OpenStreetMap] Witamy w OpenStreetMap'
welcome: Po potwierdzeniu konta dostarczymy ci dodatkowych informacji o tym,
jak zacząć.
email_confirm:
- subject: '[OpenStreetMap] Potwierdzenie adresu e-mail'
+ subject: '[OpenStreetMap] Potwierdź swój e-mail'
greeting: Cześć,
hopefully_you: Ktoś (prawdopodobnie ty) chce zmienić adres e-mail w %{server_url}
na %{new_address}.
w serwisie openstreetmap.org przypisanego do tego adresu e-mail.
click_the_link: Jeśli to ty, kliknij poniższy odnośnik, aby wyczyścić hasło.
note_comment_notification:
+ description: 'Notatka OpenStreetMap #%{id}'
anonymous: Anonimowy użytkownik
- greeting: Witaj,
+ greeting: Cześć,
commented:
- subject_own: '[OpenStreetMap] Użytkownik %{commenter} skomentował uwagę'
+ subject_own: '[OpenStreetMap] %{commenter} skomentował twoją uwagę'
subject_other: '[OpenStreetMap] %{commenter} skomentował interesującą cię
uwagę'
your_note: '%{commenter} zostawił komentarz do jednej z twoich uwag na mapie
w lokalizacji: %{place}.'
your_note_html: '%{commenter} zostawił komentarz do jednej z twoich uwag na
mapie w lokalizacji: %{place}.'
- commented_note: Użytkownik %{commenter} zostawił komentarz do skomentowanej
- uwagi. Znajduje się ona w położeniu %{place}.
- commented_note_html: Użytkownik %{commenter} zostawił komentarz do skomentowanej
- uwagi. Znajduje się ona w położeniu %{place}.
+ commented_note: '%{commenter} zostawił komentarz do skomentowanej przez ciebie
+ uwagi. Znajduje się ona w położeniu %{place}.'
+ commented_note_html: '%{commenter} zostawił komentarz do skomentowanej przez
+ ciebie uwagi. Znajduje się ona w położeniu %{place}.'
closed:
subject_own: '[OpenStreetMap] %{commenter} rozwiązał twoją uwagę'
subject_other: '[OpenStreetMap] %{commenter} rozwiązał interesującą cię uwagę'
commented_note_html: 'Użytkownik %{commenter} rozwiązał skomentowaną uwagę.
Znajduje się ona w położeniu: %{place}.'
reopened:
- subject_own: '[OpenStreetMap] %{commenter} ponownie aktywował jedną z twoich
- uwag'
+ subject_own: '[OpenStreetMap] %{commenter} ponownie aktywował twoją uwagę'
subject_other: '[OpenStreetMap] %{commenter} ponownie aktywował interesującą
cię uwagę'
your_note: '%{commenter} ponownie aktywował jedną z twoich uwag na mapie w
lokalizacji: %{place}'
your_note_html: '%{commenter} ponownie aktywował jedną z twoich uwag na mapie
w lokalizacji: %{place}'
- commented_note: Użytkownik %{commenter} ponownie aktywował skomentowaną uwagę.
- Znajduje się ona w położeniu %{place}.
- commented_note_html: Użytkownik %{commenter} ponownie aktywował skomentowaną
- uwagę. Znajduje się ona w położeniu %{place}.
+ commented_note: '%{commenter} ponownie aktywował skomentowaną przez ciebie
+ uwagę. Znajduje się ona w położeniu %{place}.'
+ commented_note_html: '%{commenter} ponownie aktywował skomentowaną przez ciebie
+ uwagę. Znajduje się ona w położeniu %{place}.'
details: 'Więcej informacji na temat uwagi można znaleźć pod adresem: %{url}.'
details_html: 'Więcej informacji na temat uwagi można znaleźć pod adresem: %{url}.'
changeset_comment_notification:
- hi: Witaj %{to_user},
- greeting: Cześć,
+ description: 'Zestaw zmian OpenStreetMap #%{id}'
+ hi: Cześć, %{to_user},
commented:
subject_own: '[OpenStreetMap] %{commenter} skomentował jeden z twoich zestawów
zmian'
%{changeset_author}, który śledzisz, utworzony %{time}'
commented_changeset_html: '%{commenter} zostawił komentarz do zestawu zmian
użytkownika %{changeset_author}, który śledzisz, utworzony %{time}'
- partial_changeset_with_comment: z komentarzem '%{changeset_comment}'
- partial_changeset_with_comment_html: z komentarzem '%{changeset_comment}'
+ partial_changeset_with_comment: z komentarzem %{changeset_comment}
+ partial_changeset_with_comment_html: z komentarzem %{changeset_comment}
partial_changeset_without_comment: bez komentarza
details: 'Więcej informacji na temat zestawu zmian można znaleźć pod adresem:
%{url}.'
unread_button: Oznacz jako nieprzeczytaną
read_button: Oznacz jako przeczytaną
destroy_button: Usuń
+ unmute_button: Przenieś do skrzynki odbiorczej
new:
title: Wysyłanie wiadomości
send_message_to_html: Wyślij nową wiadomość do %{name}
no_sent_messages_html: Nie masz jeszcze wysłanych wiadomości. Może skontaktujesz
się z %{people_mapping_nearby_link}?
people_mapping_nearby: użytkownikami z twojej okolicy
+ muted:
+ title: Wyciszone wiadomości
+ messages:
+ one: Masz %{count} wyciszoną wiadomość
+ few: Masz %{count} wyciszone wiadomości
+ many: Masz %{count} wyciszonych wiadomości
+ other: Masz %{count} wyciszonych wiadomości
reply:
wrong_user: Jesteś zalogowany jako %{user}, ale wiadomość, na którą chcesz odpowiedzieć,
nie została wysłana do tego użytkownika. Zaloguj się jako właściwy użytkownik,
heading:
my_inbox: wiadomości odebrane
my_outbox: wiadomości wysłane
+ muted_messages: Wyciszone wiadomości
mark:
as_read: Wiadomość została oznaczona jako przeczytana
as_unread: Wiadomość została oznaczona jako nieprzeczytana
new:
title: Logowanie
tab_title: Logowanie
+ login_to_authorize_html: Zaloguj się do OpenStreetMap, aby uzyskać dostęp do
+ %{client_app_name}.
email or username: Adres e-mail lub nazwa użytkownika
password: Hasło
remember: Zapamiętaj dane uwierzytelniające
lost password link: Zapomniałeś hasła?
login_button: Zaloguj się
- register now: Zarejestruj się
with external: 'Alternatywnie, zaloguj się przez:'
or: lub
auth failure: Niestety, podane dane nie pozwoliły na zalogowanie.
richtext_field:
edit: Edytuj
preview: Podgląd
+ help: Pomoc
pagination:
diary_comments:
older: Starsze komentarze
(© Department of Natural Resources Canada), CanVec (© Department
of Natural Resources Canada) i StatCan (Geography Division, Statistics Canada).'
contributors_ca_canada: Kanada
+ contributors_cz_credit_html: |-
+ %{czechia}: Zawiera dane z Państwowej Administracji Geodezji
+ i Katastru licencjonowane na podstawie %{cc_licence_link}
contributors_cz_czechia: Czechy
+ contributors_cz_cc_licence: Licencja Creative Commons Uznanie autorstwa 4.0
+ Międzynarodowa (CC BY 4.0)
contributors_fi_credit_html: '%{finland}: Zawiera dane z National Land Survey
of Finland''s Topographic Database i innych zbiorów danych, na podstawie
%{nlsfi_license_link}.'
ulicę lub adres, najlepszym sposobem na dodanie lub naprawę takich danych
jest dołączenie do społeczności OpenStreetMap i dokonanie edycji lub naprawy
własnoręcznie.
+ add_a_note:
+ instructions_1_html: |-
+ Wystarczy kliknąć %{note_icon} lub tę samą ikonę na mapie.
+ To doda znacznik do mapy, który możesz przesuwać
+ przeciągając. Dodaj swoją wiadomość, a następnie kliknij zapisz, a inni mapperzy to zbadają.
other_concerns:
title: Inne kwestie
+ concerns_html: |-
+ Jeśli masz wątpliwości dotyczące sposobu wykorzystania naszych danych lub treści, zapoznaj się z naszą stroną
+ %{copyright_link}, aby uzyskać więcej informacji prawnych, lub skontaktuj się z odpowiednią %{working_group_link}.
copyright: strona z prawami autorskimi
working_group: Grupa robocza OSMF
help:
Player został wycofany, Potlatch nie jest już dostępny w przeglądarce.
desktop_application_html: Nadal możesz używać Potlatch przez %{download_link}.
download: pobranie aplikacji komputerowej dla komputerów Mac i Windows
+ id_editor_html: Alternatywnie możesz ustawić domyślny edytor na iD, który będzie
+ działał w Twojej przeglądarce internetowej, tak jak wcześniej Potlatch. %{change_preferences_link}.
change_preferences: Zmień swoje preferencje tutaj
any_questions:
title: Czy masz jakieś pytania?
+ paragraph_1_html: |-
+ OpenStreetMap ma kilka zasobów wiedzy o projekcie, zadawania pytań i odpowiadania na nie oraz wspólnego omawiania i dokumentowania tematów mapowania.
+ %{help_link}. Reprezentujesz organizację planującą używanie OpenStreetMap? %{welcome_mat_link}.
get_help_here: Uzyskaj pomoc tutaj
+ welcome_mat: Odwiedź Stronę Powitalną
sidebar:
search_results: Wyniki wyszukiwania
close: Zamknij
hospital: Szpital
building: Ważny budynek
station: Stacja kolejowa
+ railway_halt: Przystanek kolejowy
+ subway_station: Stacja metra
+ tram_stop: Przystanek tramwajowy
summit: Góra
peak: Szczyt
tunnel: Kreskowany obrys – tunel
destination: Dostęp tylko do punktu docelowego
construction: Drogi w budowie
bus_stop: Przystanek autobusowy
- stop: Przystanek
bicycle_shop: Sklep rowerowy
bicycle_rental: Wypożyczalnia rowerów
bicycle_parking: Parking dla rowerów
whats_on_the_map:
title: Co jest na mapie
on_the_map_html: OpenStreetMap to miejsce do mapowania rzeczy, które są zarówno
- %{real_and_current} – zawiera miliardy budynków, dróg i innych
- szczegółów dotyczących miejsc. Możesz mapować dowolne obiekty świata rzeczywistego,
+ %{real_and_current} – zawiera miliardy budynków, dróg i innych szczegółów
+ dotyczących miejsc. Możesz mapować dowolne obiekty świata rzeczywistego,
które cię interesują.
real_and_current: rzeczywiste, jak i aktualne
off_the_map_html: Nie wprowadzamy obiektów nieistniejących, hipotetycznych
para_1: Jeśli chcesz wprowadzić małą zmianę, ale nie masz czasu na rejestrację
i poznanie sposobów edycji, możesz łatwo dodać uwagę.
para_2_html: 'Wystarczy, że przejdziesz na %{map_link} i klikniesz ikonę:
- %{note_icon}. Ta czynność doda znacznik, który możesz przesunąć przez
- przeciągnięcie. Dodaj swoją uwagę i zapisz ją – inni mapujący zajmą się
- twoim zgłoszeniem.'
+ %{note_icon}. Ta czynność doda znacznik, który możesz przesunąć przez przeciągnięcie.
+ Dodaj swoją uwagę i zapisz ją – inni mapujący zajmą się twoim zgłoszeniem.'
the_map: mapę
communities:
title: Społeczności
new:
upload_trace: Wgraj ślad GPS
visibility_help: co to znaczy?
- visibility_help_url: https://wiki.openstreetmap.org/wiki/Pl:Visibility_of_GPS_traces
+ visibility_help_url: https://wiki.openstreetmap.org/wiki/Pl:Widoczno%C5%9B%C4%87_%C5%9Blad%C3%B3w_GPS
help: Pomoc
help_url: https://wiki.openstreetmap.org/wiki/Pl:Upload
create:
identifiable: IDENTYFIKOWALNY
private: PRYWATNY
trackable: MOŻLIWY DO ŚLEDZENIA
+ details_with_tags_html: '%{time_ago} przez %{user} w %{tags}'
+ details_without_tags_html: '%{time_ago} przez %{user}'
index:
public_traces: Publiczne ślady GPS
my_gps_traces: Moje ślady GPS
oauth2_authorizations: Autoryzacje OAuth 2
muted_users: Wyciszeni użytkownicy
auth_providers:
+ openid_url: Adres URL OpenID
openid_login_button: Kontynuuj
openid:
title: Zaloguj się przez OpenID
- alt: Zaloguj się za pomocą adresu URL OpenID
+ alt: Logo OpenID
google:
title: Zaloguj się przez Google
- alt: Zaloguj się przez Google OpenID
+ alt: Logo Google
facebook:
title: Zaloguj się przez Facebooka
- alt: Zaloguj się przez konto Facebook
+ alt: Logo Facebooka
microsoft:
title: Zaloguj się przez Microsoft
- alt: Zaloguj się kontem Microsoft
+ alt: Logo Microsoftu
github:
title: Zaloguj się przez GitHub
- alt: Zaloguj się przez konto GitHub
+ alt: Logo GitHub
wikipedia:
title: Zaloguj się przez Wikipedię
- alt: Zaloguj się przez konto Wikipedii
+ alt: Logo Wikipedii
oauth:
permissions:
missing: Nie zezwoliłeś aplikacji na dostęp do tej funkcji
write_notes: Modyfikowanie uwag
write_redactions: Redagowanie danych mapy
read_email: Odczytywanie adresu e-mail użytkownika
+ consume_messages: Czytaj, aktualizuj status i usuwaj wiadomości użytkownika
+ send_messages: Wysyłaj prywatne wiadomości do innych użytkowników
skip_authorization: Automatycznie akceptuj aplikację
+ for_roles:
+ moderator: To uprawnienie dotyczy działań dostępnych wyłącznie dla moderatorów
oauth2_applications:
index:
title: Moje aplikacje klienckie
new:
title: Zarejestruj się
tab_title: Rejestracja
+ signup_to_authorize_html: Zaloguj się do OpenStreetMap, aby uzyskać dostęp do
+ %{client_app_name}.
no_auto_account_create: Niestety nie możemy aktualnie stworzyć ci konta automatycznie.
please_contact_support_html: Skontaktuj się z %{support_link} w celu umówienia
się na założenie konta – postaramy się rozpatrzyć prośbę jak najszybciej.
aktualizować, pobierać i używać.
paragraph_2: Zarejestruj się, aby zacząć współtworzyć.
welcome: Witamy w OpenStreetMap
+ duplicate_social_email: Jeśli posiadasz już konto OpenStreetMap i chcesz skorzystać
+ z usług zewnętrznego dostawcy tożsamości, zaloguj się, podając swoje hasło,
+ i zmień ustawienia swojego konta.
display name description: Twoja publiczna nazwa użytkownika. Można ją później
zmienić w ustawieniach.
by_signing_up:
privacy_policy_title: Polityka prywatności OSMF, w tym sekcja dotycząca adresów
e-mail
contributor_terms: warunki uczestnictwa
- external auth: 'Logowanie przez:'
continue: Zarejestruj się
terms accepted: Dziękujemy za przyjęcie nowych Warunków uczestnictwa!
email_help:
w domenie publicznej
consider_pd_why: co to oznacza?
consider_pd_why_url: https://wiki.osmfoundation.org/w/index.php?title=Licence_and_Legal_FAQ/Why_would_I_want_my_contributions_to_be_public_domain&redirect=no
+ guidance_info_html: 'Informacje pomocne w zrozumieniu tych terminów: %{readable_summary_link}
+ i %{informal_translations_link}'
+ readable_summary: czytelne podsumowanie
informal_translations: tłumaczenia nieformalne
continue: Dalej
- decline: Nie akceptuję
+ cancel: Anuluj
you need to accept or decline: Prosimy przeczytać i następnie przyjąć lub odrzucić
nowe Warunki uczestnictwa, aby kontynuować.
legale_select: 'Proszę wybrać kraj zamieszkania:'
summary_no_ip_html: '%{name} utworzony %{date}'
empty: Nie znaleziono pasujących użytkowników
page:
+ found_users:
+ one: Znaleziono %{count} użytkownika
+ few: Znaleziono %{count} użytkowników
+ many: Znaleziono %{count} użytkowników
+ other: Znaleziono %{count} użytkowników
confirm: Zatwierdź zaznaczonych użytkowników
hide: Ukryj zaznaczonych użytkowników
suspended:
heading_html: Edycja blokady użytkownika %{name}
period: Na jak długo, od tego momentu, użytkownik ma mieć zablokowany dostęp
do API.
+ revoke: Odwołaj blok
filter:
block_period: Długość blokady należy wybrać z listy rozwijanej.
create:
blocks_by_me: Blokady nałożone przeze mnie
blocks_by_user: Blokady nałożone przez %{user}
block: Blokada nr %{id}
+ new_block: Nowy blok
user_mutes:
index:
title: Wyciszeni użytkownicy
add: Dodaj uwagę
notes_paging_nav:
showing_page: Strona %{page}
+ next: Następny
+ previous: Poprzedni
javascripts:
close: Zamknij
share:
empty: Brak poprawek do pokazania.
heading: Lista poprawek
title: Lista poprawek
+ new: Nowa sekcja
new:
heading: Wprowadź informacje o nowej poprawce
title: Tworzenie nowej poprawki
create: روک بݨاؤ
update: روک نویاؤ
activerecord:
- errors:
- messages:
- invalid_email_address: جائز ایمیَل پتہ نہیں لگ رہا
- email_address_not_routable: ایہہ روٹ نہیں کر سکدا اے
models:
acl: ایکسیس کنٹرول لِسٹ
changeset: تبدیلیاں
wiki_link:
key: وِکی تے صفحہ لئی %{key} ٹیگ
tag: ایہہ %{key}=%{value} وِکی تے ٹیگ دا تفصیل
- wikidata_link: وِکیڈیٹا تے %{page} لئی آئیٹم
+ wikidata_link: وکیڈیٹے تے %{page}
wikipedia_link: '%{page} لیکھ وِکِپیڈیا اُنتے'
wikimedia_commons_link: وِکیمیڈیا کامنز تے %{page} لئی آئیٹم
telephone_link: '%{phone_number} نوں فون کرو'
comment:
comment: تبدیلیاں نمبر %{changeset_id} تے %{author} ناوں ٹپݨی کیٹا
commented_at_by_html: '%{when} %{user} نواں کیتا'
- comments:
- comment: تبدیلیاں نمبر %{changeset_id} تے %{author} نواں ٹپݨی کیتی کئی اے۔
show:
title_all: تبدیلیاں تے گل بات
title_particular: تبدیلیاں نمبر %{changeset_id} تے گل بات
sorry: افسوس، تبدیلیاں دیاں ٹپݨیاں نہیں لبھ سکیاں، ٹائم آؤٹ ہوگیا سی۔
changesets:
changeset:
- anonymous: انام
no_edits: (کوئی سودھ نہیں)
view_changeset_details: تبدیلیاں وروے ویکھو
index:
report: ایہہ ٹپݨی ریپورٹ کریو
location:
location: 'ستھتی:'
- view: ویکھو
- edit: سودھو
feed:
user:
title: ایہہ «%{user}» روزنامچے دے لیکھ
level8: شہر دی حد
level9: پنڈ دی جوہ
level10: اُپنگر دی جوہ
- types:
- cities: شَہر
- towns: قصبے
- places: تھاواں
results:
no_results: کوئی نتیجے نہیں لبھے
more_results: ہور نتیجے
not_updated: نہیں نواں کیتا
search: کھوجو
search_guidance: 'مسئلے لئی کھوجیو:'
- link_to_reports: رپورٹاں ویکھیو
states:
ignored: نظر انداز کیتے گئے
open: کھولھ
details_html: 'ایس نوٹ بارے وچ ہور جانکاری پڑھیو: %{url}'
changeset_comment_notification:
hi: سالام %{to_user}،
- greeting: سالام،
commented:
subject_own: '[اوایسایم] تہاڈیاں تبدیلیاں تے «%{commenter}» ٹپݨی چھڈیاں
گیاں'
remember: مینوں یاد رکھو
lost password link: آپݨا پاسورڈ گوا دتا؟
login_button: لوگاین
- register now: ہُݨے رجِستر کرو
with external: 'لوگاین کرن لئی ہور چݨ سکیو:'
auth failure: افسوس، یہہ ویروے نال لوگاین کر نہیں سکدے۔
destroy:
منع)۔
consider_pd_why: ایہہ کیہ اے؟
continue: اگے
- decline: منظور نہیں
legale_select: 'تسیں کیہ دیش رہندے:'
legale_names:
france: فرینس
start_rjs:
loading: رابرسېرېږي...
changesets:
- changeset:
- anonymous: ورکنومی
index:
feed:
created: جوړ شو
confirm: تاييد
location:
location: 'ځای:'
- view: کتل
- edit: سمول
diary_comments:
page:
when: کله
river: رود
stream: لښتی
waterfall: ځوړاوبی
- types:
- cities: ښارونه
- towns: ښارګوټي
- places: ځايونه
results:
no_results: کومې پايلې و نه موندل شوې
more_results: نورې پايلې
new:
title: نومليکنه
terms:
- decline: ردول
legale_names:
france: فرانسه
italy: اېټاليا
activerecord:
errors:
messages:
- invalid_email_address: não parece ser um endereço de correio eletrónico válido
- email_address_not_routable: não é atingível
display_name_is_user_n: não pode ser user_n a não ser que n seja a tua id
de utilizador
models:
comment: Novo comentário sobre o conjunto de alterações n.º %{changeset_id}
de %{author}
commented_at_by_html: Atualizado %{when} por %{user}
- comments:
- comment: Novo comentário sobre o conjunto de alterações n.º %{changeset_id}
- de %{author}
show:
title_all: Discussão sobre conjunto de alterações do OpenStreetMap
title_particular: Discussão sobre o conjunto de alterações n.º %{changeset_id}
pediste demorou demasiado tempo a ser obtida.
changesets:
changeset:
- anonymous: Anónimo
no_edits: (sem edições)
view_changeset_details: Ver detalhes do conjunto de alterações
index:
title: Conjunto de alterações %{id}
created_by_html: Criado por %{link_user} em %{created}.
no_such_entry:
- title: Não existe tal conjunto de alterações
heading: 'Nenhuma entrada com o id: %{id}'
body: Desculpe, não há conjunto de alterações com o id %{id}. Verifique a ortografia,
ou talvez o link em que clicou esteja errado.
report: Denunciar este comentário
location:
location: 'Localização:'
- view: Ver
- edit: Editar
feed:
user:
title: Publicações no diário OpenStreetMap de %{user}
level9: Fronteira de freguesia
level10: Fronteira de subúrbio
level11: Fronteira de bairro
- types:
- cities: Cidades
- towns: Vilas
- places: Lugares
results:
no_results: Não foram encontrados resultados
more_results: Mais resultados
not_updated: Não atualizado
search: Pesquisar
search_guidance: 'Pesquisar problemas:'
- link_to_reports: Ver denúncias
states:
ignored: Ignorado
open: Abertos
changeset_comment_notification:
description: Conjunto de alterações n.º %{id}
hi: Olá, %{to_user}.
- greeting: Olá,
commented:
subject_own: '[OpenStreetMap] %{commenter} comentou um dos teus conjuntos
de alterações'
remember: Ficar autenticado entre sessões
lost password link: Perdeste a tua palavra-passe?
login_button: Iniciar sessão
- register now: Regista-te agora
with external: ou inicia sessão com uma aplicação de terceiros
or: ou
auth failure: Lamentamos, mas não foi possível iniciar sessão com os dados fornecidos.
destination: Acesso explícito ao local
construction: Estradas em construção
bus_stop: Paragem de autocarro
- stop: Paragem
bicycle_shop: Loja de bicicletas
bicycle_rental: Aluguer de bicicletas
bicycle_parking: Estacionamento de bicicletas
privacy_policy_title: Política de privacidade da OSMF incluindo secção sobre
endereços de correio eletrónico
contributor_terms: Termos de Contribuidor
- tou: Termos de Utilização
- external auth: 'Autenticação por terceiros:'
continue: Criar conta
terms accepted: Obrigado por aceitares os novos termos de contribuidor!
email_help:
informal_translations: traduções informais
continue: Continuar
declined: https://wiki.openstreetmap.org/wiki/Pt:Contributor_Terms_Declined
- decline: Rejeitar
you need to accept or decline: Por favor, lê e, em seguida, aceita ou recusa
os novos Termos do Contribuidor para continuar.
legale_select: 'País de residência:'
activerecord:
errors:
messages:
- invalid_email_address: não parece ser um endereço de e-mail válido
- email_address_not_routable: não é roteável
display_name_is_user_n: não pode ser user_n a não ser que n seja o seu ID
de usuário
models:
comment:
comment: 'Comentário novo no conjunto de alterações #%{changeset_id} por %{author}'
commented_at_by_html: Atualizado %{when} por %{user}
- comments:
- comment: 'Comentário novo no conjunto de alterações #%{changeset_id} por %{author}'
show:
title_all: Discussão de conjunto de alterações do OpenStreetMap
title_particular: 'Discussão do conjunto de alteração #%{changeset_id} do
solicitou demorou muito para ser recuperada.
changesets:
changeset:
- anonymous: Anônimo
no_edits: (sem alterações)
view_changeset_details: Ver detalhes do conjunto de alterações
index:
title: Conjunto de alterações %{id}
created_by_html: Criado por %{link_user} em %{created}.
no_such_entry:
- title: Não existe esse conjunto de alterações
heading: 'Não há postagens no diário com o id: %{id}'
body: Desculpe, não há conjunto de alterações com o id %{id}. Verifique a ortografia,
ou talvez o link que que você clicou esteja errado.
report: Denunciar este comentário
location:
location: 'Local:'
- view: Exibir
- edit: Editar
feed:
user:
title: Publicações do diário do OpenStreetMap de %{user}
level9: Limite de Distrito Municipal
level10: Limite de Bairro
level11: Limite da vizinhança
- types:
- cities: Cidades maiores
- towns: Cidades menores
- places: Lugares
results:
no_results: Nenhum resultado encontrado
more_results: Mais resultados
not_updated: Não atualizado
search: Pesquisar
search_guidance: 'Pesquisar problemas:'
- link_to_reports: Ver denúncias
states:
ignored: Ignorado
open: Aberto
changeset_comment_notification:
description: Conjunto de alterações n.º %{id}
hi: Olá %{to_user},
- greeting: Olá,
commented:
subject_own: '[OpenStreetMap] %{commenter} comentou um conjunto de alterações
seu'
remember: Lembrar neste computador
lost password link: Esqueceu sua senha?
login_button: Entrar
- register now: Registre agora
with external: ou entre com uma aplicativo de terceiros
or: ou
auth failure: Impossível entrar com estas informações.
destination: Acesso local apenas
construction: Vias em construção
bus_stop: Ponto de ônibus
- stop: Parada
bicycle_shop: Loja de bicicletas
bicycle_rental: Aluguel de bicicletas
bicycle_parking: Bicicletário
endereços de e-mail
contributor_terms_url: https://wiki.osmfoundation.org/wiki/Licence/Contributor_Terms
contributor_terms: termos do contribuidor
- tou: termos de uso
- external auth: 'Autenticação de Terceiros:'
continue: Registrar-se
terms accepted: Obrigado por aceitar os novos termos de contribuição!
email_help:
informal_translations: traduções informais
continue: Continuar
declined: https://wiki.openstreetmap.org/wiki/Pt:Contributor_Terms_Declined?uselang=pt-br
- decline: Discordo
you need to accept or decline: Por favor leia e, em seguida, aceite ou recuse
os novos termos do contribuidor para continuar.
legale_select: 'País em que você mora:'
# Author: Popetedenis
# Author: Ruila
# Author: Strainu
+# Author: Trotinel Iftode
# Author: WebSourceContentRO
# Author: Wintereu
---
create: Creați blocare
update: Actualizează blocare
activerecord:
- errors:
- messages:
- invalid_email_address: nu pare a fi o adresă de e-mail validă
- email_address_not_routable: nu este rutabil
models:
acl: Lista de control al accesului
changeset: Set de modificări
comment:
comment: 'Comentariu nou privind modificările #%{changeset_id} de către %{author}'
commented_at_by_html: Actualizat %{when} de %{user}
- comments:
- comment: 'Comentariu nou făcut la #%{changeset_id} de %{author}'
show:
title_all: Discuție set de schimbări OpenStreetMap
title_particular: 'Set de schimbări OpenStreetMap discuție #%{changeset_id}'
durat prea mult timp pentru a fi preluate.
changesets:
changeset:
- anonymous: Anonim
no_edits: (nu există editări)
view_changeset_details: Vizualizare detalii set de schimbări
index:
report: Reclamă acest comentariu
location:
location: 'Localizare:'
- view: Vizualizează
- edit: Modifică
feed:
user:
title: Înregistrări în jurnalul OpenStreetMap pentru %{user}
level9: Limita satului
level10: Limită de suburbie
level11: Limită Cartier
- types:
- cities: Orașe
- towns: Orășele
- places: Locuri
results:
no_results: Niciun rezultat găsit
more_results: Mai multe rezultate
not_updated: Ultima actualizare
search: Căutare
search_guidance: 'Probleme de căutare:'
- link_to_reports: Vizualizați rapoartele
states:
ignored: Ignorat
open: Deschis
descrierea %{trace_description} și fără etichete
gpx_failure:
hi: Salut %{to_user},
- failed_to_import: 'nu a reușit să importe. Iată eroarea:'
+ failed_to_import: 'nu a putut fi importat ca fișier de urmărire GPS. Verificați
+ dacă fișierul dvs. este un fișier GPX valid sau o arhivă care conține fișiere
+ GPX în formatul acceptat (.tar.gz, .tar.bz2, .tar, .zip, .gpx.gz, .gpx.bz2)
+ . Ar putea fi o problemă de format sau de sintaxă cu fișierul dvs.? Iată eroarea
+ de import:'
more_info_html: Mai multe informații despre eșecurile de import GPX și despre
cum să le evitați pot fi găsite la %{url}.
subject: '[OpenStreetMap] eșec import fișier GPX'
details_html: Mai multe detalii despre notă pot fi găsite la %{url}.
changeset_comment_notification:
hi: Salut %{to_user},
- greeting: Salut,
commented:
subject_own: '[OpenStreetMap] %{commenter} a comentat unul dintre seturile
de modificări'
remember: Ține-mă minte
lost password link: Parolă pierdută/uitată?
login_button: Autentificare
- register now: Formular de inregistrare
with external: 'Alternativ, utilizați o terță parte pentru a vă conecta:'
auth failure: Ne pare rău, nu v-am putut conecta la aceste detalii.
destroy:
destination: Accesul la destinație
construction: Drumuri în construcție
bus_stop: Stație de autobuz
- stop: Stație
bicycle_shop: Magazin de biciclete
bicycle_parking: Parcare pentru biciclete
toilets: Toalete
privacy_policy: Politica de confidențialitate
privacy_policy_title: Politica de confidențialitate OSMF, inclusiv secțiunea
privind adresele de e-mail
- external auth: 'Verificarea terță parte:'
continue: Înregistrare
terms accepted: Vă mulțumim pentru acceptarea noilor termeni de contribuire!
email_help:
readable_summary: rezumat care poate fi citit de om
informal_translations: traduceri informale
continue: Continuă
- decline: Declină
you need to accept or decline: Citiți și apoi acceptați sau refuzați continuarea
noilor Termeni de contribuire.
legale_select: 'Țara de reședință:'
activerecord:
errors:
messages:
- invalid_email_address: не похоже на действительный адрес электронной почты
- email_address_not_routable: не маршрутизирован
display_name_is_user_n: не может быть user_n, если n не является вашим идентификатором
пользователя
models:
user_mute:
- is_already_muted: Ñ\83же оÑ\82клÑ\8eÑ\87ен звÑ\83к
+ is_already_muted: Ñ\83же заглÑ\83Ñ\88Ñ\91н
models:
acl: Список контроля доступа
changeset: Пакет правок
comment:
comment: 'Новый комментарий к пакету правок #%{changeset_id} от %{author}'
commented_at_by_html: Обновлена %{when} пользователем %{user}
- comments:
- comment: 'Новый комментарий к пакету правок #%{changeset_id} от %{author}'
show:
title_all: Обсуждение пакета правок OpenStreetMap
title_particular: 'Обсуждение пакета правок OpenStreetMap #%{changeset_id}'
много времени для извлечения.
changesets:
changeset:
- anonymous: Аноним
no_edits: (нет правок)
view_changeset_details: Просмотреть подробности пакета правок
index:
title: Пакет правок %{id}
created_by_html: Создал %{link_user} %{created}.
no_such_entry:
- title: Нет такого пакета правок
heading: 'Нет записи с номером: %{id}'
body: К сожалению, пакета правок с идентификатором %{id} нет. Пожалуйста, проверьте
правильность написания, возможно, ссылка, по которой вы перешли, неверна.
report: Сообщить об этом комментарии
location:
location: 'Место:'
- view: Посмотреть
- edit: Правка
feed:
user:
title: Дневниковые записи OpenStreetMap пользователя %{user}
level9: Граница села, деревни
level10: Граница пригорода
level11: Граница между соседствами
- types:
- cities: Города
- towns: Городские поселения
- places: Места
results:
no_results: Ничего не найдено
more_results: Ещё результаты
not_updated: Не обновлялось
search: Найти
search_guidance: Поиск проблем
- link_to_reports: Просмотр сообщений
states:
ignored: Проигнорировано
open: Открыто
page:
user_not_found: Пользователь не существует
issues_not_found: Такие проблемы не найдены
+ reported_user: Пользователь в сообщении
status: Статус
reports: Сообщения
last_updated: Последнее изменение
few: '%{count} сообщения'
many: '%{count} сообщений'
other: '%{count} сообщений'
- reported_item: Тема Ñ\81ообÑ\89ениÑ\8f
+ reported_item: ÐлеменÑ\82 в Ñ\81ообÑ\89ении
show:
title: '%{status} Проблема #%{issue_id}'
reports:
comment_from_html: Комментарий участника %{user_link}, созданный %{comment_created_at}
reassign_param: Переназначить проблему?
reports:
- reported_by_html: Указано как %{category} пользователем %{user} в %{updated_at}
+ reported_by_html: Указано как %{category} пользователем %{user} %{updated_at}
helper:
reportable_title:
diary_comment: '%{entry_title}, коммент. #%{comment_id}'
details_html: 'Ответить или узнать больше о заметке: %{url}.'
changeset_comment_notification:
hi: Здравствуйте, %{to_user},
- greeting: Здравствуйте,
commented:
subject_own: '[OpenStreetMap] %{commenter} прокомментировал один из ваших
пакетов правок'
unread_button: Пометить как непрочитанное
read_button: Пометить как прочитанное
destroy_button: Удалить
+ unmute_button: Переместить во Входящие
new:
title: Отправить сообщение
send_message_to_html: Отправить новое сообщение для %{name}
no_sent_messages_html: Нет отправленных сообщений. Почему бы не пообщаться с
%{people_mapping_nearby_link}?
people_mapping_nearby: пользователями поблизости
+ muted:
+ title: Заглушённые сообщения
reply:
wrong_user: Вы вошли как `%{user}', но ответ на ваш вопрос был отправлен не
этому пользователю. Пожалуйста, войдите как соответствующий вашему вопросу
heading:
my_inbox: Мои входящие
my_outbox: Мои исходящие
+ muted_messages: Заглушённые сообщения
mark:
as_read: Сообщение отмечено как прочитанное
as_unread: Сообщение отмечено как непрочитанное
+ unmute:
+ notice: Сообщение перемещено во Входящие
destroy:
destroyed: Сообщение удалено
passwords:
remember: Запомнить меня
lost password link: Забыли пароль?
login_button: Представиться
- register now: Зарегистрируйтесь
with external: 'Или воспользуйтесь аккаунтом с другого сайта:'
or: или
auth failure: Извините, вход с этими именем или паролем невозможен.
hospital: Больница
building: Значительное здание
station: Железнодорожная станция
+ tram_stop: Трамвайная остановка
summit: Вершина
peak: Вершина горы
tunnel: Туннель (пунктир)
destination: Целевой доступ
construction: Строительство дороги
bus_stop: Автобусная остановка
- stop: Остановить
bicycle_shop: Магазин велосипедов
bicycle_rental: Прокат велосипедов
bicycle_parking: Парковка для велосипедов
формальными или неформальными."
local_chapters:
title: Местные отделения
- about_text: |-
- Ð\9cеÑ\81Ñ\82нÑ\8bе оÑ\82делениÑ\8f â\80\94 Ñ\8dÑ\82о гÑ\80Ñ\83ппÑ\8b на Ñ\83Ñ\80овне Ñ\81Ñ\82Ñ\80анÑ\8b или Ñ\80егиона, коÑ\82оÑ\80Ñ\8bе Ñ\81делали Ñ\84оÑ\80малÑ\8cнÑ\8bй Ñ\88аг
- учредив некоммерческие юридические лица. Они представляют карту района и картографов, когда
- имеÑ\8eÑ\82 дело Ñ\81 меÑ\81Ñ\82нÑ\8bми оÑ\80ганами влаÑ\81Ñ\82и, бизнеÑ\81ом и СÐ\9cÐ\98. Ð\9eни Ñ\82акже заклÑ\8eÑ\87или Ñ\81оÑ\8eз
- с OpenStreetMap Foundation (OSMF), что дало им связь с правовым и авторским
- руководящим органом.
+ about_text: "Местные отделения — это группы на уровне страны или региона,
+ коÑ\82оÑ\80Ñ\8bе Ñ\81делали Ñ\84оÑ\80малÑ\8cнÑ\8bй Ñ\88аг, \nÑ\83Ñ\87Ñ\80едив некоммеÑ\80Ñ\87еÑ\81кие Ñ\8eÑ\80идиÑ\87еÑ\81кие лиÑ\86а.
+ Они представляют карту района и картографов, когда\nимеют дело с местными
+ оÑ\80ганами влаÑ\81Ñ\82и, бизнеÑ\81ом и СÐ\9cÐ\98. Ð\9eни Ñ\82акже заклÑ\8eÑ\87или Ñ\81оÑ\8eз Ñ\81 OpenStreetMap
+ Foundation (OSMF), что дало им связь с управляющим органом по правовым вопросам
+ и вопросам авторского права."
list_text: 'Следующие сообщества официально учреждены как местные отделения:'
other_groups:
title: Другие группы
account_settings: Настройки профиля
oauth2_applications: OAuth 2 приложения
oauth2_authorizations: OAuth 2 авторизации
+ muted_users: Заглушённые пользователи
auth_providers:
openid_login_button: Продолжить
openid:
title: Мои авторизованные приложения
application: Приложение
permissions: Разрешения
+ last_authorized: Последняя авторизация
no_applications_html: Вы еще не авторизовали ни одно приложение %{oauth2}.
application:
revoke: Отозвать доступ
privacy_policy: политику конфиденциальности
privacy_policy_title: Политика конфиденциальности OSMF, включая раздел об
адресах электронной почты
- external auth: 'Внешний сайт с учётной записью:'
continue: Зарегистрироваться
terms accepted: Спасибо за принятие новых условий участия!
email_help:
readable_summary: удобочитаемое резюме
continue: Продолжить
declined: https://wiki.openstreetmap.org/wiki/Contributor_Terms_Declined?uselang=ru
- decline: Отклонить
+ cancel: Отмена
you need to accept or decline: Пожалуйста, прочитайте, а затем согласитесь или
отклоните новые Условия участия.
legale_select: 'Пожалуйста, выберите страну вашего проживания:'
blocks on me: Мои блокировки
blocks by me: Наложенные мною блокировки
create_mute: Заглушить этого пользователя
+ destroy_mute: Отменить заглушение этого пользователя
edit_profile: Редактировать профиль
send message: Отправить сообщение
diary: Дневник
index:
title: Заглушённые пользователи
my_muted_users: Мои заглушённые пользователи
+ user_mute_explainer: Сообщения заглушённых пользователей помещаются в отдельную
+ папку входящих сообщений и вы не получите уведомлений по электронной почте.
+ user_mute_admins_and_moderators: Вы можете заглушить администраторов и модераторов,
+ но их сообщения не будут заглушены.
table:
thead:
+ muted_user: Заглушённый пользователь
actions: Действия
tbody:
send_message: Отправить сообщение
+ create:
+ notice: Вы заглушили пользователя %{name}.
+ destroy:
+ notice: Вы отменили заглушение пользователя %{name}.
+ error: Пользователь не может быть заглушён. Пожалуйста, попробуйте ещё раз.
notes:
index:
title: Заметки, созданные или прокомментированный участником %{user}
empty: Нет исправлений для показа.
heading: Список исправлений
title: Список исправлений
+ new: Новое исправление
new:
heading: Введите информацию для нового исправления
title: Создание нового исправления
nearby: ᱥᱩᱨᱠᱚᱣᱟ ᱜᱩᱱᱠᱚ
changesets:
changeset:
- anonymous: ᱵᱟᱝ ᱵᱟᱰᱟᱭ
no_edits: (ᱥᱟᱯᱲᱟᱣ ᱵᱟᱝ)
index:
load_more: ᱟᱨᱦᱚᱸ ᱞᱟᱫᱮ ᱢᱮ
report: ᱱᱚᱶᱟ ᱚᱠᱛᱟ ᱨᱤᱯᱚᱴ ᱢᱮ
location:
location: 'ᱡᱟᱭᱜᱟ:'
- view: ᱧᱮᱞ ᱢᱮ
- edit: ᱥᱟᱯᱲᱟᱣ
diary_comments:
page:
when: ᱛᱤᱥ
level4: ᱡᱤᱞᱟᱹ ᱜᱷᱮᱨᱟ
level6: ᱫᱤᱥᱚᱢ ᱜᱷᱮᱨᱟ
level8: ᱥᱚᱦᱚᱨ ᱜᱷᱮᱨᱟ
- types:
- cities: ᱥᱚᱦᱚᱨᱠᱚ
- towns: ᱴᱟᱩᱱᱠᱚ
- places: ᱡᱟᱭᱜᱟᱠᱚ
issues:
index:
search: ᱥᱮᱸᱫᱽᱨᱟ
- link_to_reports: ᱨᱤᱯᱚᱴᱠᱚ ᱧᱮᱞ ᱢᱮ
states:
open: ᱡᱷᱤᱡ ᱢᱮ
page:
remember: ᱫᱤᱥᱟᱹᱭᱤᱧ ᱢᱮ
lost password link: ᱟᱢᱟᱜ ᱫᱟᱱᱟᱝ ᱥᱟᱵᱟᱫᱽ ᱟᱫᱟᱠᱟᱫᱟᱢ?
login_button: ᱵᱚᱞᱚᱜ ᱢᱮ
- register now: ᱱᱤᱛᱜᱮ ᱚᱞ ᱦᱚᱪᱚᱜ ᱢᱮ
destroy:
title: ᱩᱰᱩᱜᱚᱜᱢᱮ
logout_button: ᱩᱰᱩᱜᱚᱜᱢᱮ
create: Crea unu blocu
update: Atualiza su blocu
activerecord:
- errors:
- messages:
- invalid_email_address: non paret èssere un'indiritzu de posta eletrònica vàlidu
- email_address_not_routable: non si podet incarrerare
models:
acl: Lista de Controllu de Atzessu
changeset: Annantu de modìficas
comment:
comment: 'Cummentu nou a s''annantu de modìficas #%{changeset_id} de %{author}'
commented_at_by_html: Atualizadu %{when} dae %{user}
- comments:
- comment: 'Cummentu nou a s''annantu de modìficas #%{changeset_id} de %{author}'
show:
title_all: Arresonu subra su grupu de modìficas de OpenStreetMap
title_particular: 'Arresonu de s''annantu de modìficas de OpenStreetMap #%{changeset_id}'
tempus pro lu recuperare.
changesets:
changeset:
- anonymous: Anònimu
no_edits: (peruna modìfica)
view_changeset_details: Pòmpia sos detàllios de s'annantu de modìficas
index:
report: Sinnala custu cummentu
location:
location: 'Logu:'
- view: Ammustra
- edit: Modìfica
feed:
user:
title: Intradas de diàriu de OpenStreetMap de %{user}
level9: Làcana de 9u livellu - sutamunitzipale (distretu tzitadinu)
level10: Làcana de livellu 10 (bighinadu)
level11: Làcana de trighìngiu
- types:
- cities: Tzitades
- towns: Tzitadinas
- places: Logos
results:
no_results: Perunu resultadu agadadu
more_results: Àteros risultados
not_updated: No atualizadu
search: Chirca
search_guidance: 'Chirca problemas:'
- link_to_reports: Abbàida sos informes
states:
ignored: Ignoradu
open: Abertu
details_html: Podes agatare detàllios in prus subra de sa nota in %{url}.
changeset_comment_notification:
hi: Salude %{to_user},
- greeting: Salude,
commented:
subject_own: '[OpenStreetMap] %{commenter} at cummentadu unu de sos annantos
de modìficas tuos'
remember: Ammenta·ti de mene
lost password link: Ais pèrdidu sa crae de intrada tua?
login_button: Intra
- register now: Registra·ti como
with external: 'In alternativa, intra impreende unu servìtziu esternu:'
auth failure: Non podes intrare cun custos detàllios.
destroy:
privacy_policy: polìtica de riservadesa
privacy_policy_title: Informativa subra de sa riservadesa de sa Fundatzione
OSM chi incluet sa setzione subra de sos indiritzos de posta eletrònica
- external auth: 'Autenticatzione pro mèdiu de unu servìtziu esternu:'
continue: Iscrie·ti
terms accepted: Ti torramus gràtzias pro àere atzetadu sas cunditziones noas
de collaboratzione.
readable_summary: resumu chi un'èssere umanu podet lèghere
informal_translations: tradutziones informales
continue: Sighi
- decline: Refuda
you need to accept or decline: Pro pòdere sighire leghe e a pustis atzeta o
refuda sos tèrmines noos de collaboratzione.
legale_select: 'Paisu de residèntzia:'
create: Crea lu bloccu
update: Aggiorna lu bloccu
activerecord:
- errors:
- messages:
- invalid_email_address: nun pari èssiri nu nnirizzu email vàlidu
models:
acl: Lista di cuntrollu d'accessu
changeset: Gruppu di canciamenti
#%{changeset_id}'
changesets:
changeset:
- anonymous: Anònimu
no_edits: (nuḍḍu canciamentu)
view_changeset_details: Ammustra li dittagghî dû gruppu di canciamenti
index:
confirm: Cunferma
location:
location: 'Locu:'
- view: Talìa
- edit: Cancia
feed:
user:
title: Vuci dû diariu d'OpenStreetMap pi %{user}
level8: Cunfini di cumuni
level9: Cunfini di villaggiu
level10: Cunfini di quarteri
- types:
- cities: Cità
- towns: Paisi
- places: Posti
results:
no_results: Nuḍḍu risurtatu attruvatu
more_results: Àutri risurtati
details: Poi attruvari àutri dittagghî di sta nota nta %{url}.
changeset_comment_notification:
hi: Salutamu %{to_user},
- greeting: Salutamu,
commented:
subject_own: '[OpenStreetMap] %{commenter} cummintau unu dî tò gruppa di canciamenti'
subject_other: '[OpenStreetMap] %{commenter} cummintau unu dî gruppa di canciamenti
remember: Arricòrdati di mìa
lost password link: Pirdisti la tò palora d'òrdini?
login_button: Trasi
- register now: Scrìviti ora
with external: 'O puru, trasi pi menzu di na terza parti:'
auth failure: Purtroppu nun fu pussìbbili tràsiri cu sti dittagghî.
destroy:
header: Lìbbira e canciàbbili
display name description: Lu tò nomu d'utenti comu veni ammustratu pubblicamenti.
Appoi lu poi canciari ntê prifirenzi.
- external auth: 'Autinticazzioni di terzi parti:'
continue: Scrìviti
terms accepted: T'arringrazziamu d'aviri accittatu li cunnizzioni di cuntribbuzzioni
novi!
consider_pd: Sparti dû cuntrattu ccassupra, cunzìddiru chi li mè cuntribbuti
sunnu ntô Duminiu Pùbblicu
consider_pd_why: chi voli diri?
- decline: Rifiutu
you need to accept or decline: Pi cuntinuari, pi favuri leggi li cunnizzioni
di cuntribbuzzioni novi e appoi accèttali o rifiùtali.
legale_select: 'Paisi di risidenza:'
commented_at_by_html: Updatit %{when} ago bi %{user}
changesets:
changeset:
- anonymous: Anonymous
no_edits: (no eedits)
view_changeset_details: View chyngeset details
index:
confirm: Confirm
location:
location: 'Location:'
- view: View
- edit: Eedit
feed:
user:
title: OpenStreetMap diary entries for %{user}
level8: Ceety Boondary
level9: Veelage Boondary
level10: Suburb Boondary
- types:
- cities: Ceeties
- towns: Touns
- places: Places
results:
no_results: No results foond
more_results: Mair results
create: Napravi blokadu
update: Podnovi blokadu
activerecord:
- errors:
- messages:
- invalid_email_address: ne izgleda kao važeća adresa e-pošte
- email_address_not_routable: nije povezljiv
models:
acl: Kontrole pristupa
changeset: Set promjena
title: Informacije o objektima
changesets:
changeset:
- anonymous: Anoniman
no_edits: (nema izmjena)
index:
title: Setovi promjena
confirm: Potvrdi
location:
location: 'Lokacija:'
- view: Prikaži
- edit: Uredi
feed:
user:
title: Zapisi dnevnika od korisnika %{user}
prison: Zatvor
pub: Pub
public_bath: Javno kupalište
- types:
- cities: Gradovi
- towns: Manji gradovi
- places: Mjesta
results:
no_results: Nema rezultata
more_results: Više rezultata
remember: Zapamti me
lost password link: Izgubili ste lozinku?
login_button: Prijava
- register now: Registrirajte se sada
with external: 'Ili koristite vanjski servis:'
auth failure: Žao nam je, ne možemo vas prijaviti s ovim detaljima.
suspended_flash:
activerecord:
errors:
messages:
- invalid_email_address: nevyzerá ako platná e-mailová adresa
- email_address_not_routable: nie je routovateľná
display_name_is_user_n: nemôže byť user_n, pokiaľ n nie je vaše ID používateľa
models:
user_mute:
comment:
comment: 'Nový komentár k sade zmien #%{changeset_id} od %{author}'
commented_at_by_html: Upravené %{when} používateľom %{user}
- comments:
- comment: 'Nový komentár k sade zmien #%{changeset_id} od používateľa %{author}'
show:
title_all: Diskusia k sade zmien OpenStreetMap
title_particular: 'Diskusia k sade zmien OpenStreetMap #%{changeset_id}'
príliš dlho.
changesets:
changeset:
- anonymous: Anonym
no_edits: (bez úprav)
view_changeset_details: Zobraziť detaily sady zmien
index:
title: Sada zmien %{id}
created_by_html: Vytvoril %{link_user} dňa %{created}.
no_such_entry:
- title: Žiadna takáto sada zmien
heading: 'Žiadna položka s ID: %{id}'
body: Ľutujeme, neexistuje žiadna sada zmien s ID %{id}. Skontrolujte si pravopis,
alebo možno je odkaz, na ktorý ste klikli, nesprávny.
report: Nahlásiť tento komentár
location:
location: 'Poloha:'
- view: Zobraziť
- edit: Upraviť
feed:
user:
title: Záznamy OpenStreetMap denníka používateľa %{user}
level9: Hranica obce
level10: Hranica časti obce
level11: Hranica susedstva
- types:
- cities: Veľkomestá
- towns: Mestá
- places: Miesta
results:
no_results: Neboli nájdené žiadne výsledky
more_results: Viac výsledkov
not_updated: Neaktualizované
search: Hľadať
search_guidance: 'Hľadať hlásenia:'
- link_to_reports: Zobraziť hlásenia
states:
ignored: Ignorované
open: Otvorené
changeset_comment_notification:
description: Sada zmien OpenStreetMap č. %{id}
hi: Ahoj %{to_user},
- greeting: Ahoj,
commented:
subject_own: '[OpenStreetMap] %{commenter} pridal komentár k vašej sade zmien'
subject_other: '[OpenStreetMap] %{commenter} pridal komentár k sade zmien,
remember: Zapamätať
lost password link: Stratili ste heslo?
login_button: Prihlásiť
- register now: Zaregistrujte se
with external: ale použite na prihlásenie služby tretích strán
or: alebo
auth failure: Ľutujeme, s uvedenými údajmi sa nie je možné prihlásiť.
a %{contributor_terms_link}.
privacy_policy_title: Pravidlá ochrany osobných údajov OSMF vrátane sekcie
o e-mailových adresách
- external auth: 'Autentifikácia treťou stranou:'
continue: Zaregistrujte sa
terms accepted: Ďakujeme za odsúhlasenie nových podmienok prispievania!
email_help:
za slobodné dielo (Public Domain).
consider_pd_why: čo to znamená?
continue: Pokračovať
- decline: Nesúhlasím
you need to accept or decline: Pre pokračovanie si prosím prečítajte a príjmite,
alebo odmietnite nové Podmienky prispievania.
legale_select: 'Zvoľte prosím svoju domovskú krajinu:'
create: بلاک بݨاؤ
update: بلاک اپ ڈیٹ کرو
activerecord:
- errors:
- messages:
- invalid_email_address: جائز ای میل پتہ کائنی لڳدا پیا
- email_address_not_routable: روٹیبل کائنی
models:
acl: رسائی کنٹرول تندیر
changeset: تبدیلیاں
longitude: طول البلد
public: عوام
description: تفصیل
- gpx_file: جی پی ایکس فائل اپ لوڈ کرو
+ gpx_file: جی پی ایس ٹریس فائل چݨو
visibility: نظرݨ دی صلاحیت
tagstring: ٹیگ
message:
enclosing: منسلک خصوصیات
changesets:
changeset:
- anonymous: گمنام
no_edits: (کوئی ترمیم کائنی)
index:
title: تبدیلیاں
confirm: تصدیق
location:
location: 'محل وقوع:'
- view: ݙکھالے
- edit: لکھو
diary_comments:
page:
post: پوسٹ
level7: میونسپلٹی سرحد
level8: شہری سرحد
level9: وستی سرحد
- types:
- cities: شہراں
- towns: قصبے
- places: جاہیں
results:
no_results: کوئی نتیجہ نی لبھا
more_results: ٻئے نتیجے
not_updated: اپ ڈیٹ کائنی تھیا
search: ڳولو
search_guidance: 'ڳولݨ رولے:'
- link_to_reports: رپوٹاں ݙیکھو
states:
open: کھولو
resolved: حل تھی ڳیا
greeting: سلام،
changeset_comment_notification:
hi: سلام %{to_user}،
- greeting: سلام،
commented:
partial_changeset_without_comment: تبصرے بغیر
confirmations:
university: یونی ورسٹی
hospital: ہسپتال
station: ریلوے ٹیشݨ
+ railway_halt: ریلوے ہالٹ
peak: چوٹی
bus_stop: بساں دا اݙا
- stop: اݙہ
toilets: بیت الخلاء
welcome:
title: ست بسم اللہ!
support: سہارا
by_signing_up:
privacy_policy: رازداری پالیسی
- tou: ورتݨ شرطاں
continue: سائن اپ
email_help:
privacy_policy: رازداری پالیسی
title: شرطاں
heading: شرطاں
continue: جاری رکھو
- decline: انکار کرو
+ cancel: منسوخ
legale_names:
france: فرانس
italy: اِٹلی
activerecord:
errors:
messages:
- invalid_email_address: ni videti veljaven e-poštni naslov
- email_address_not_routable: ni preusmerljiv
display_name_is_user_n: ne more biti user_n, razen če je n vaš uporabniški
ID
models:
comment:
comment: 'Nov komentar o naboru sprememb #%{changeset_id} uporabnika %{author}'
commented_at_by_html: Posodobil_a %{user} %{when}
- comments:
- comment: 'Nov komentar o naboru sprememb #%{changeset_id} uporabnika %{author}'
show:
title_all: Razprava o naboru sprememb OpenStreetMap
title_particular: 'Razprava o naboru sprememb OpenStreetMap #%{changeset_id}'
ste ga zahtevali, predolgo.
changesets:
changeset:
- anonymous: Anonimen
no_edits: (brez urejanj)
view_changeset_details: Ogled podrobnosti nabora sprememb
index:
title: Nabor sprememb %{id}
created_by_html: Ustvaril %{link_user} dne %{created}.
no_such_entry:
- title: Ni takega nabora sprememb
heading: Zapisa z id-jem %{id} ni
body: Oprostite, nabora sprememb z oznako %{id} ni. Prosimo, preverite črkovanje
in povezavo, ki ste jo kliknili.
report: Prijavi ta komentar
location:
location: 'Lokacija:'
- view: Prikaži
- edit: Uredi
feed:
user:
title: Dnevniški zapisi OpenStreetMap za uporabnika %{user}
level9: Meja mesta
level10: Meja predmestja
level11: Meja soseske
- types:
- cities: Velika mesta
- towns: Mesta
- places: Kraji
results:
no_results: Ni zadetkov
more_results: Več zadetkov
not_updated: Ni posodobljeno
search: Iskanje
search_guidance: 'Preišči težave:'
- link_to_reports: Ogled prijav
states:
ignored: Prezrto
open: Odpri
changeset_comment_notification:
description: Nabor sprememb OpenStreetMap št. %{id}
hi: Pozdravljeni, %{to_user},
- greeting: Pozdravljeni,
commented:
subject_own: '[OpenStreetMap] %{commenter} je komentiral enega od vaših naborov
sprememb'
remember: Zapomni si me
lost password link: Ste pozabili geslo?
login_button: Prijava
- register now: Registrirajte se
with external: ali pa se prijavite prek tretje osebe
or: ali
auth failure: Oprostite, prijava s temi podatki ni uspela.
destination: Dostop za dostavo
construction: Ceste v gradnji
bus_stop: Avtobusno postajališče
- stop: Postajališče
bicycle_shop: Kolesarska trgovina
bicycle_rental: Izposoja koles
bicycle_parking: Parkirišče za kolesa
privacy_policy_title: Pravilnik o zasebnosti OSMF, vključno z razdelkom o
e-poštnih naslovih
contributor_terms: pogoji sodelovanja
- tou: pogoji uporabe
- external auth: Avtentikacija prek tretje osebe
continue: Registracija
terms accepted: Hvala za sprejem novih pogojev prispevanja!
email_help:
informal_translations: neuradnih prevodov
continue: Nadaljuj
declined: https://wiki.openstreetmap.org/wiki/Contributor_Terms_Declined
- decline: Odkloni
you need to accept or decline: Prosimo, preberite in nato sprejmite ali odklonite
nove Pogoje za sodelovanje.
legale_select: 'Izberite državo stalnega prebivališča:'
OpenStreetMap'
changesets:
changeset:
- anonymous: Anonim
no_edits: (nuk ka redaktime)
view_changeset_details: Shikoni detajet e ndryshimeve
index:
confirm: Konfirmo
location:
location: 'Vendndodhja:'
- view: Shfaq
- edit: Redakto
feed:
user:
title: OpenStreetMap shënime ditari për %{user}
level2: Kufi vendi
level4: Kufi i njësisë federale
level5: Kufi regjional
- types:
- cities: Qytetet
- towns: Qyteza
- places: Vende
results:
no_results: Nuk është gjetur asnjë rezultat
more_results: Më shumë rezultate
not_updated: Nuk është ri- freskuar
search: Kërko
search_guidance: Probleme të kërkimit
- link_to_reports: Shiko raportimet
states:
ignored: Injoruar
open: E hapur
note_comment_notification:
greeting: Përshëndetje,
changeset_comment_notification:
- greeting: Përshëndetje,
commented:
partial_changeset_without_comment: pa koment
confirmations:
remember: Më mbaj mend
lost password link: Ke humbur fjalëkalimin?
login_button: Identifikohu
- register now: Regjistrohu tani
auth failure: Na vjen keq, nuk mund të identifikohemi me ato detaje.
destroy:
title: Çidentifikohu
e mia të jenë në Domeinin Publik
consider_pd_why: çfarë është kjo?
consider_pd_why_url: https://www.osmfoundation.org/wiki/License/Why_would_I_want_my_contributions_to_be_public_domain
- decline: Nuk e pranoj
legale_select: 'Vendi i banimit:'
legale_names:
france: Francë
wikipedia_link: '%{page} članak na Vikipediji'
changesets:
changeset:
- anonymous: Anonimno
no_edits: (nema izmena)
view_changeset_details: Pogledaj detalje skupa izmena
index:
confirm: Potvrdi
location:
location: 'Lokacija:'
- view: Pogledaj
- edit: Uredi
feed:
user:
title: Unosi u dnevniku za korisnika %{user}
wadi: Suvo korito reke
waterfall: Vodopad
weir: Brana
- types:
- cities: Gradovi
- towns: Varošice
- places: Mesta
results:
no_results: Nema rezultata
more_results: Više rezultata
remember: Zapamti me
lost password link: Zaboravili ste lozinku?
login_button: Prijavi me
- register now: Otvorite nalog
auth failure: Ne mogu da vas prijavim s unetim podacima.
destroy:
title: Odjava
javnom vlasništvu
consider_pd_why: šta je ovo?
declined: http://wiki.openstreetmap.org/wiki/Contributor_Terms_Declined?uselang=sr-ec
- decline: Odbaci
you need to accept or decline: Molimo vas da pročitate ugovor pre nego što ga
prihvatite.
legale_select: 'Izaberite zemlju prebivališta:'
create: Направи блокаду
update: Ажурирај блокаду
activerecord:
- errors:
- messages:
- invalid_email_address: не изгледа као важећа имејл адреса
- email_address_not_routable: није повезљив(а)
models:
acl: Листа контроле приступа
changeset: Скуп промена
comment:
comment: 'Нови коментар на скуп промена #%{changeset_id} корисника %{author}'
commented_at_by_html: Ажурирао %{user} у %{when}
- comments:
- comment: 'Нови коментар о скупу промена #%{changeset_id} аутора %{author}'
show:
title_all: Дискусија о скупу промена на OpenStreetMap-у
title_particular: 'Дискусија о скупу промена #%{changeset_id} на OpenStreetMap-у'
је предуго.
changesets:
changeset:
- anonymous: Анонимно
no_edits: (нема измена)
view_changeset_details: Прикажи детаље скупа промена
index:
report: Пријави овај коментар
location:
location: 'Локација:'
- view: Приказ
- edit: Уреди
feed:
user:
title: Уноси у дневнику OpenStreetMap-а корисника %{user}
level8: Граница града
level9: Граница села
level10: Граница насеља
- types:
- cities: Градови
- towns: Варошице
- places: Места
results:
no_results: Нема резултата
more_results: Више резултата
not_updated: Није ажурно
search: Претрага
search_guidance: 'Претражи проблеме:'
- link_to_reports: Прикажи извештаје
states:
ignored: Занемарено
open: Отвори
details: Одговорите или сазнајте више о белешци на %{url}.
changeset_comment_notification:
hi: Поздрав, %{to_user},
- greeting: Поздрав,
commented:
subject_own: '[OpenStreetMap] %{commenter} је коментарисао о једном од Ваших
чејнџсетова'
remember: Запамти ме
lost password link: Заборавили сте лозинку?
login_button: Пријави ме
- register now: Отворите налог
with external: или се пријавите путем треће стране
or: или
auth failure: Није могуће пријавити се са тим детаљима.
destination: Приступ одредишту
construction: Путеви у изградњи
bus_stop: Аутобуска станица
- stop: Стоп
bicycle_shop: Продавница бицикала
bicycle_rental: Изнајмљивање бицикала
bicycle_parking: Паркинг за бицикле
променити у поставкама.
by_signing_up:
privacy_policy: политика приватности
- tou: услови коришћења
- external auth: 'Аутентификација треће стране:'
continue: Отвори налог
terms accepted: Хвала вам што прихватате нове услове уређивања.
email_help:
informal_translations: неформални преводи
continue: Настави
declined: http://wiki.openstreetmap.org/wiki/Contributor_Terms_Declined?uselang=sr-ec
- decline: Одбаци
+ cancel: Откажи
you need to accept or decline: Молимо вас да прочитате уговор пре него што га
прихватите.
legale_select: 'Изаберите земљу пребивалишта:'
activerecord:
errors:
messages:
- invalid_email_address: verkar inte vara en giltig e-postadress.
- email_address_not_routable: kan inte ruttas
display_name_is_user_n: kan inte vara user_n om inte n är ditt användar-id
models:
user_mute:
comment:
comment: Ny kommentar på ändringsuppsättning nummer %{changeset_id} av %{author}
commented_at_by_html: Uppdaterades för %{when} av %{user}
- comments:
- comment: 'Ny kommentar på ändringsuppsättning #%{changeset_id} av %{author}'
show:
title_all: Diskussion om OpenStreetMaps ändringsset
title_particular: Diskussioner om OpenStreetMaps ändringsuppsättning nummer
inte hämtas då begäran tog för lång tid.
changesets:
changeset:
- anonymous: Anonym
no_edits: (inga redigeringar)
view_changeset_details: Visa detaljer om ändringsuppsättning
index:
title: Ändringsuppsättning %{id}
created_by_html: Skapades av %{link_user} %{created}.
no_such_entry:
- title: Ingen sådan ändringsuppsättning
heading: 'Inget inlägg med ID: %{id}'
body: Det finns tyvärr ingen ändringsuppsättning med ID:t %{id}. Kontrollera
stavningen eller så kanske du tryckt på fel länk.
report: Rapportera den här kommentaren
location:
location: 'Plats:'
- view: Visa
- edit: Redigera
feed:
user:
title: OpenStreetMap-dagboksinlägg för %{user}
level9: Bygräns
level10: Förortsgräns
level11: Kvartersgräns
- types:
- cities: Städer
- towns: Samhällen
- places: Platser
results:
no_results: Inga resultat hittades
more_results: Fler resultat
not_updated: Inte uppdaterad
search: Sök
search_guidance: 'Sök ärenden:'
- link_to_reports: Visa rapporter
states:
ignored: Ignorerad
open: Öppen
changeset_comment_notification:
description: 'OpenStreetMap ändringsuppsättning #%{id}'
hi: Hej %{to_user},
- greeting: Hej,
commented:
subject_own: '[OpenStreetMap] %{commenter} har kommenterat på en av dina ändringsuppsättningar'
subject_other: '[OpenStreetMap] %{commenter} har kommenterat på ett ändringsuppsättning
remember: Kom ihåg mig
lost password link: Glömt ditt lösenord?
login_button: Logga in
- register now: Registrera dig nu
with external: eller logga in med en tredje part
or: eller
auth failure: Kunde inte logga in med de uppgifterna.
destination: Förbjuden genomfart
construction: Vägar under konstruktion
bus_stop: Busshållplats
- stop: Hållplats
bicycle_shop: Cykelaffär
bicycle_rental: Cykeluthyrning
bicycle_parking: Cykelparkering
privacy_policy: integritetspolicy
privacy_policy_title: OSMFs integritetspolicy inklusive avsnitt om e-postadresser
contributor_terms: bidragsvillkor
- tou: användarvillkor
- external auth: 'Tredjepartsautentisering:'
continue: Registrera
terms accepted: Tack för att du accepterat de nya villkoren för bidrag till
kartan!
continue: |2-
Fortsätt
- decline: Avslå
you need to accept or decline: Läs igenom och godkänn eller avböj de nya bidragsvillkoren
för att fortsätta.
legale_select: 'Hemland:'
update: தொகுதியைப் புதுப்பி
activerecord:
errors:
- messages:
- invalid_email_address: செல்லுபடியாகும் மின்னஞ்சல் முகவரியாகத் தெரியவில்லை
- email_address_not_routable: திசைதிருப்பக்கூடியது அல்ல
models:
user_mute:
is_already_muted: ஏற்கனவே மௌனிக்கப்பட்டுள்ளார்
key: விக்கி விளக்கப்பக்கம் %{key} குறிச்சொல்லுக்காக
changesets:
changeset:
- anonymous: அடையாளமற்றவர்
no_edits: (திருத்தங்கள் இல்லை)
index:
title: மாற்றங்கள்
report: இந்தப் பின்னூட்டத்தை முறையிடுக
location:
location: 'இடம்:'
- view: காண்
- edit: தொகு
diary_comments:
page:
post: பதியவும்
lock: பூட்டு
river: ஆறு
waterfall: நீர்வீழ்ச்சி
- types:
- cities: மாநகரங்கள்
- towns: நகரங்கள்
- places: இடங்கள்
results:
no_results: முடிவுகள் எதுவும் காணப்படவில்லை
more_results: மேலும் முடிவுகள்
greeting: வணக்கம்,
lost_password:
greeting: வணக்கம்,
- changeset_comment_notification:
- greeting: வணக்கம்,
messages:
inbox:
title: உள்பெட்டி
remember: என்னை நினைவில் வைத்துக்கொள்ளவும்
lost password link: உங்கள் கடவுச்சொல் மறந்துவிட்டதா?
login_button: புகுபதிகை
- register now: இப்போது பதிவுசெய்யுங்கள்
destroy:
title: விடுபதிகை
logout_button: விடுபதிகை
new:
title: கணக்கை உருவாக்கு
terms:
- decline: நிராகரி
legale_names:
france: பிரான்சு
italy: இத்தாலி
create: నిరోధాన్ని సృష్టించండి
update: నిరోధాన్ని తాజాకరించండి
activerecord:
- errors:
- messages:
- invalid_email_address: సరైన ఈ-మెయిలు చిరునామాగా అనిపించడం లేదు
- email_address_not_routable: రూటు చెయ్యలేనిది
models:
acl: అనుమతి నియంత్రణ జాబితా
changeset: మార్పులసమితి
comment:
comment: '#%{changeset_id} మార్పులసమితిపై %{author} వ్యాఖ్య ఏమీ చెయ్యలేదు'
commented_at_by_html: '%{when} %{user} తాజాకరించారు'
- comments:
- comment: '#%{changeset_id} మార్పులసమితిపై %{author} గారి కొత్త వ్యాఖ్య'
show:
title_all: OpenStreetMap మార్పులసమితి చర్చ
title_particular: 'OpenStreetMap మార్పులసమితి #%{changeset_id} చర్చ'
sorry: సారీ, మీరడిగిన మార్పులసమితి వ్యాఖ్యలు తేవడానికి చాలా సమయం పట్టింది.
changesets:
changeset:
- anonymous: అనామకం
no_edits: (మార్పులు లేవు)
view_changeset_details: మార్పులసమితి వివరాలు చూడండి
index:
report: ఈ వ్యాఖ్యపై ఫిర్యాదు చెయ్యి
location:
location: 'ప్రాంతం:'
- view: చూడండి
- edit: మార్చు
feed:
user:
title: '%{user} చేర్చిన OpenStreetMap డైరీ పద్దులు'
level9: గ్రామ పొలిమెర
level10: శివారు సరిహద్దు
level11: పేట సరిహద్దు
- types:
- cities: నగరాలు
- towns: పట్టణాలు
- places: ప్రదేశాలు
results:
no_results: ఫలితాలేమీ దొరకలేదు
more_results: మరిన్ని ఫలితాలు
not_updated: తాజాకరించలేదు
search: వెతుకు
search_guidance: 'అంశాల్లో వెతుకు:'
- link_to_reports: నివేదికలను చూడండి
states:
ignored: పట్టించుకోలేదు
open: తెరిచి ఉన్నవి
details_html: ఈ గమనిక గురించి మరిన్ని వివరాలను %{url} వద్ద చూడవచ్చు.
changeset_comment_notification:
hi: '%{to_user} గారూ,'
- greeting: హలో,
commented:
subject_own: మీ మార్పులసమితుల్లో ఒకదానిపై [OpenStreetMap] %{commenter} వ్యాఖ్యానించారు
subject_other: '[OpenStreetMap] మీకు ఆసక్తి ఉన్న మార్పులసమితిపై %{commenter}
remember: నన్ను గుర్తుంచుకో
lost password link: మీ సంకేతపదం పోయిందా?
login_button: ప్రవేశించు
- register now: ఇప్పుడే నమోదవ్వండి
with external: 'లేదా, ఏదైనా థర్డ్ పార్టీతో లాగినవండి:'
auth failure: సారీ, ఈ వివరాలతో లాగిన్ చెయ్యలేకపోయాం.
destroy:
consider_pd_why: ఇది ఏమిటి?
informal_translations: అనధికారిక అనువాదాలు
continue: కొనసాగించు
- decline: తిరస్కరించు
legale_select: 'నివసించే దేశం:'
legale_names:
france: ఫ్రాన్స్
activerecord:
errors:
messages:
- invalid_email_address: ดูเหมือนจะไม่ใช่ที่อยู่อีเมลที่ถูกต้อง
- email_address_not_routable: ไม่สามารถกำหนดที่มาที่ไปได้
display_name_is_user_n: ไม่สามารถเป็น user_n ได้ เว้นแต่ว่า n จะเป็นรหัสผู้ใช้ของคุณ
models:
user_mute:
comment:
comment: 'ความคิดเห็นใหม่ที่มีต่อชุดการเปลี่ยนแปลง #%{changeset_id} โดย %{author}'
commented_at_by_html: ปรับปรุงเมื่อ %{when} โดย %{user}
- comments:
- comment: 'ความคิดเห็นใหม่ที่มีต่อชุดการเปลี่ยนแปลง #%{changeset_id} โดย %{author}'
show:
title_all: การอภิปรายชุดการเปลี่ยนแปลงของ OpenStreetMap
title_particular: 'การอภิปรายชุดการเปลี่ยนแปลง OpenStreetMap #%{changeset_id}'
sorry: ขออภัย รายการชุดการเปลี่ยนแปลงที่ร้องขอใช้เวลานานเกินสมควรในการสืบค้น
changesets:
changeset:
- anonymous: ผู้ไม่ประสงค์ออกนาม
no_edits: (ไม่มีรายการแก้ไข)
view_changeset_details: ดูรายละเอียดชุดการเปลี่ยนแปลง
index:
title: ชุดการเปลี่ยนแปลง %{id}
created_by_html: สร้างโดย %{link_user} บน %{created}
no_such_entry:
- title: ไม่มีชุดการเปลี่ยนแปลงดังกล่าว
heading: 'ไม่มีรายการที่มีรหัส: %{id}'
body: ขออภัย ไม่มีชุดการเปลี่ยนแปลงที่มีรหัส %{id} โปรดตรวจสอขความถูกต้องของการสะกด
หรือลิงก์ที่กดมานั้นมีข้อผิดพลาด
report: แจ้งปัญหาเกี่ยวกับความเห็นนี้
location:
location: 'ที่ตั้ง:'
- view: แสดง
- edit: แก้ไข
feed:
user:
title: รายการบันทึก OpenStreetMap สำหรับ %{user}
level9: แนวเขตหมู่บ้าน
level10: แนวเขตชานเมือง
level11: แนวเขตชุมชน
- types:
- cities: เมือง
- towns: เมือง
- places: สถานที่
results:
no_results: ไม่พบผลลัพธ์
more_results: ดูผลลัพธ์เพิ่ม
not_updated: ไม่ได้ปรับปรุง
search: ค้นหา
search_guidance: 'ปัญหาในการค้นหา:'
- link_to_reports: ดูรายงาน
states:
ignored: ละเว้น
open: เปิด
details: รายละเอียดเพิ่มเติมเกี่ยวกับบันทึกสามารถหาได้ที่ %{url}
changeset_comment_notification:
hi: เรียนคุณ %{to_user},
- greeting: เรียนท่านผู้ใช้งาน
commented:
subject_own: '[OpenStreetMap] ผู้ใช้ %{commenter} ได้แสดงความคิดเห็นต่อชุดการเปลี่ยนแปลงของท่าน'
subject_other: '[OpenStreetMap] ผู้ใช้ %{commenter} ได้แสดงความคิดเห็นต่อชุดการเปลี่ยนแปลงที่ท่านสนใจ'
remember: จดจำฉันไว้ในระบบ
lost password link: ลืมรหัสผ่านหรือ?
login_button: ลงชื่อเข้าใช้
- register now: สมัครเลย!
with external: นอกจากนี้ ท่านสามารถใช้บัญชีผู้ใช้จากเว็บอื่นในการเข้าใช้งานได้
auth failure: ขออภัย ไม่สามารถเข้าระบบด้วยชื่อผู้ใช้และรหัสผ่านดังกล่าวได้
destroy:
about:
header: เสรีและแก้ไขได้
display name description: ชื่อที่แสดงต่อสาธารณะ ท่านสามารถเปลี่ยนในภายหลังได้ในหน้าการตั้งค่า
- external auth: 'บัญชีผู้ใช้จากเว็บอื่น:'
continue: สมัครบัญชี
terms accepted: ขอบคุณสำหรับการตอบรับเงื่อนไขผู้ร่วมสร้างสรรค์!
use external auth: นอกจากนี้ ท่านสามารถใช้บัญชีผู้ใช้จากเว็บอื่นในการเข้าใช้งานได้
consider_pd: นอกเหนือจากข้อความข้างต้น ข้าพเจ้ายินดีสละการสร้างสรรค์ของข้าพเจ้าให้เป็นงานอันไม่มีลิขสิทธิ์
consider_pd_why: นี้คืออะไร?
continue: ถัดไป
- decline: ไม่ยอมรับ
you need to accept or decline: กรุณาตรวจทานและเลือกยอมรับหรือไม่ยอมรับข้อกำหนดของผู้มีส่วนร่วมเพื่อไปต่อ
legale_select: 'ประเทศที่พำนัก:'
legale_names:
create: Likhain ang hadlang
update: Isapanahon ang paghadlang
activerecord:
- errors:
- messages:
- invalid_email_address: mukhang hindi wasto ang tirahan ng e-liham
- email_address_not_routable: hindi maaaring i-ruta
models:
acl: Talaan ng Pantaban sa Pagpunta
changeset: Pangkat ng pagbabago
title_all: Pagtalakay ng pangkat ng pagbabago sa OpenStreetMap
changesets:
changeset:
- anonymous: Hindi nagpapakilala (anonimo)
no_edits: (walang mga pamamatnugot)
view_changeset_details: Tingnan ang mga detalye ng pangkat ng pagbabago
index:
confirm: Tiyakin
location:
location: 'Lokasyon:'
- view: Tingnan
- edit: Baguhin
feed:
user:
title: Mga pagpapasok sa talaarawan ng OpenStreetMap para kay %{user}
level9: Hangganan ng Nayon
level10: Hangganan ng Kanugnog ng Lungsod
level11: Hangganan ng Kapitbahayan
- types:
- cities: Mga lungsod
- towns: Mga bayan
- places: Mga lugar
results:
no_results: Walang natagpuang mga kinalabasan
more_results: Marami pang mga kinalabasan
not_updated: Hindi Naisapanahon
search: Maghanap
search_guidance: 'Maghanap ng mga Isyu:'
- link_to_reports: Tingnan ang mga Ulat
states:
ignored: Hindi pinansin
open: Bukas
details_html: Higit pang mga detalye tungkol sa tala ay matatagpuan sa %{url}.
changeset_comment_notification:
hi: Kumusta %{to_user},
- greeting: Kumusta,
commented:
subject_own: '[OpenStreetMap] Pinuna ni %{commenter} ang isa sa iyong mga
pangkat ng pagbabago'
remember: Tandaan ako
lost password link: Nawala ang password mo?
login_button: Lumagda
- register now: Magpatala na ngayon
with external: 'Bilang alternatibo, gumamit ng serbisyo ikatlong partido para
lumagda:'
auth failure: Paumanhin, hindi makalagda sa pamamagitan ng mga detalyeng iyan.
Nasasaklawan ng Madla.
consider_pd_why: ano ba ito?
continue: Magpatuloy
- decline: Tanggihan
you need to accept or decline: Mangyaring basahin at pagkaraan ay tanggipin
o tanggihan ang bagong mga Tuntunin ng Tagapag-ambag upang makapagpatuloy.
legale_select: 'Mangyaring piliin ang iyong bansang pinamamalagian:'
activerecord:
errors:
messages:
- invalid_email_address: geçerli bir e-posta adresi gibi görünmüyor
- email_address_not_routable: yönlendirilebilir değil
display_name_is_user_n: n, sizin kullanıcı kimliğiniz olmadıkça user_n olamaz
models:
user_mute:
comment: '#%{changeset_id} değişiklik kaydı hakkında %{author}, yeni bir yorum
yaptı.'
commented_at_by_html: '%{user} tarafından %{when} güncellendi'
- comments:
- comment: '#%{changeset_id} değişiklik kaydı hakkında %{author}, yeni bir yorum
- yaptı'
show:
title_all: OpenStreetMap değişiklik kaydı tartışması
title_particular: 'OpenStreetMap #%{changeset_id} değişiklik kaydı tartışması'
uzun sürdü.
changesets:
changeset:
- anonymous: Anonim
no_edits: (düzenleme yok)
view_changeset_details: Değişiklik kaydı ayrıntılarını görüntüle
index:
title: Değişiklik Kaydı %{id}
created_by_html: '%{link_user} tarafından %{created} tarihinde oluşturuldu.'
no_such_entry:
- title: Böyle bir değişiklik kaydı yok
heading: 'Şu kimliğe sahip girdi yok: %{id}'
body: Üzgünüz, %{id} kimliğine sahip herhangi bir değişiklik kaydı yok. Lütfen
yazımınızı kontrol edin ya da tıkladığınız bağlantı yanlış olabilir.
report: Bu yorumu bildir
location:
location: 'Konum:'
- view: Görüntüle
- edit: Düzenle
feed:
user:
title: '%{user} için OpenStreetMap günlük girdileri'
level9: Köy Sınırı
level10: Mahalle Sınırı
level11: Mahalle Sınırı
- types:
- cities: Büyükşehirler
- towns: Şehirler
- places: Yerler
results:
no_results: Sonuç bulunamadı
more_results: Daha fazla sonuç
not_updated: Güncellenmedi
search: Ara
search_guidance: 'Arama Sorunları:'
- link_to_reports: Raporları Görüntüle
states:
ignored: Yoksayıldı
open: Aç
changeset_comment_notification:
description: 'OpenStreetMap Değişiklik Kaydı #%{id}'
hi: Merhaba %{to_user},
- greeting: Merhaba,
commented:
subject_own: '[OpenStreetMap] %{commenter}, sizin değişiklik kayıtlarınızdan
birine yorum yaptı.'
remember: Beni hatırla
lost password link: Parolanı mı unuttun?
login_button: Oturum Aç
- register now: Şimdi kaydol
with external: veya üçüncü bir parti uygulaması kullanarak kaydolun
or: veya
auth failure: Üzgünüz, bu giriş ile oturum açılamadı.
destination: Hedef noktası
construction: yapım aşamasındaki yollar
bus_stop: Otobüs durağı
- stop: Durak
bicycle_shop: Bisikletçi
bicycle_rental: Bisiklet kiralama
bicycle_parking: Bisiklet parkı
privacy_policy_title: E-posta adresleriyle ilgili bölümü içeren OSMF gizlilik
politikası
contributor_terms: katılımcı şartları
- tou: kullanım şartları
- external auth: 'Üçüncü Taraf Kimlik Doğrulaması:'
continue: Kaydol
terms accepted: Yeni katılımcı şartları kabul ettiğin için teşekkür ederiz!
email_help:
informal_translations: resmî olmayan çeviriler
continue: Devam
declined: https://wiki.openstreetmap.org/wiki/Tr:Contributor_Terms_Declined
- decline: Reddet
you need to accept or decline: Lütfen katılımcı şartlarını okuyunuz ve şartları
kabul ya da ret ediniz.
legale_select: 'İkamet edilen ülke:'
create: Тыю ясарга
update: Тыюны яңартырга
activerecord:
- errors:
- messages:
- invalid_email_address: электрон почтаның дөрес юлламасына охшамаган
- email_address_not_routable: тоташтырулы түгел
models:
acl: Хокуклар исемлеге
changeset: Үзгәртүләр өеме
wikipedia_link: Википедиядә %{page} мәкаләсе
changesets:
changeset:
- anonymous: Аноним
no_edits: (төзәтмәләр юк)
index:
title: Үзгәрешләр пакетлары
confirm: Раслау
location:
location: 'Урын:'
- view: Карау
- edit: Төзәтмә
diary_comments:
page:
when: Кайчан
level6: Өяз чиге
level8: Шәһәр чиге
level9: Авыл чиге
- types:
- cities: Шәһәрләр
- towns: Шәһәрчекләр
- places: Урыннар
results:
no_results: Берни дә табылмады
issues:
greeting: Сәлам,
note_comment_notification:
greeting: Сәлам,
- changeset_comment_notification:
- greeting: Сәлам,
confirmations:
confirm:
button: Раслау
tab_title: Керү
password: 'Серсүз:'
login_button: Керү
- register now: Теркәлегезче
destroy:
title: Чыгу
logout_button: Чыгу
users:
terms:
continue: Дәвам итү
- decline: Кире кагу
no_such_user:
deleted: бетерелгән
show:
activerecord:
errors:
messages:
- invalid_email_address: не схоже на коректну адресу електронної пошти
- email_address_not_routable: недоступний
display_name_is_user_n: не може бути user_n, якщо n не є вашим ідентифікатором
користувача
models:
longitude: Довгота
public: Публічний
description: Опис
- gpx_file: Ð\97аванÑ\82ажиÑ\82и GPX-файл
+ gpx_file: Ð\9eбеÑ\80Ñ\96Ñ\82Ñ\8c GPX-файл
visibility: Видимість
tagstring: Теґи
message:
introduction: Клацніть на мапі, щоб отримати дані про об’єкти поруч.
nearby: Об’єкти поруч
enclosing: Оточуючі об’єкти
+ nodes:
+ timeout:
+ sorry: На жаль, отримання даних для точки з ідентифікатором %{id} тривало занадто
+ довго.
old_nodes:
not_found:
sorry: 'На жаль, точку #%{id} версії %{version} не знайдено.'
+ timeout:
+ sorry: На жаль, отримання історії точки з ідентифікатором %{id} потребує багато
+ часу.
+ ways:
+ timeout:
+ sorry: На жаль, отримання даних для лінії з ідентифікатором %{id} зайняло занадто
+ багато часу.
old_ways:
not_found:
sorry: 'На жаль, лінію #%{id} версії %{version} не знайдено.'
+ timeout:
+ sorry: На жаль, отримання історії лінії з ідентифікатором %{id} потребує багато
+ часу.
+ relations:
+ timeout:
+ sorry: На жаль, отримання даних для зв’язку з ідентифікатором %{id} зайняло
+ занадто багато часу.
old_relations:
not_found:
sorry: 'На жаль, звʼязок #%{id} версії %{version} не знайдено.'
+ timeout:
+ sorry: На жаль, отримання історії звʼязку з ідентифікатором %{id} потребує багато
+ часу.
changeset_comments:
feeds:
comment:
comment: 'Новий коментар до набору змін #%{changeset_id} від %{author}'
commented_at_by_html: Оновлено %{when} %{user}
- comments:
- comment: 'Новий коментар до набору змін #%{changeset_id} від %{author}'
show:
title_all: Обговорення наборів змін в OpenStreetMap
title_particular: 'Обговорення набору змін OpenStreetMap #%{changeset_id}'
часу для завантаження.
changesets:
changeset:
- anonymous: Анонім
no_edits: (редагувань немає)
view_changeset_details: Подивитися подробиці набору змін
index:
title: Набір змін %{id}
created_by_html: Створений %{link_user} %{created}.
no_such_entry:
- title: Немає такого набору змін
heading: Немає запису з id %{id}
body: На жаль, немає набору змін %{id}. Будь ласка, перевірте посилання, або,
можливо, посилання, яке ви натиснули, неправильне.
report: Поскаржитись на цей коментар
location:
location: 'Місце:'
- view: Переглянути
- edit: Змінити
feed:
user:
title: Записи щоденника OpenStreetMap %{user}
Адміністративна межа (9-й рівень)
level10: Адміністративна межа району міста
level11: Адміністративна межа (11-й рівень)
- types:
- cities: Міста
- towns: Містечка
- places: Місця
results:
no_results: Нічого не знайдено
more_results: Більше результатів
not_updated: Не оновлювалось
search: Пошук
search_guidance: 'Пошук Звернень:'
- link_to_reports: Дивитися скарги
states:
ignored: Проігноровано
open: Відкрито
befriend_them: Ви також можете додати їх як друзів %{befriendurl}.
befriend_them_html: Ви також можете додати його/її до друзів %{befriendurl}.
gpx_description:
- description_with_tags: 'Це виглÑ\8fдаÑ\94 Ñ\8fк ваш GPX-файл %{trace_name} з описом %{trace_description}
+ description_with_tags: 'СÑ\85оже Ñ\86е ваш GPX-файл %{trace_name} з описом %{trace_description}
і наступними теґами: %{tags}'
- description_with_tags_html: 'Схоже це ваш файл GPX %{trace_name}, що має опис
+ description_with_tags_html: 'Схоже це ваш GPX-файл %{trace_name}, що має опис
— %{trace_description} та наступні теґи: %{tags}'
- description_with_no_tags: Ð\92иглÑ\8fдаÑ\94 Ñ\8fк ваш GPX-файл %{trace_name} з описом %{trace_description}
+ description_with_no_tags: СÑ\85оже Ñ\86е ваш GPX-файл %{trace_name} з описом %{trace_description}
і без теґів
description_with_no_tags_html: Схоже це ваш файл GPX %{trace_name}, що має опис
- - %{trace_description} Ñ\82а без теґів
+ - %{trace_description} Ñ\82а не маÑ\94 теґів
gpx_failure:
hi: Привіт, %{to_user},
- failed_to_import: 'не вдалось імпортувати. Сталася помилка:'
+ failed_to_import: 'не вдалося імпортувати як файл GPS-треку. Переконайтеся,
+ що ваш файл є відповідним файлом GPX або архівом, який містить файл(и) GPX
+ у підтримуваному форматі (.tar.gz, .tar.bz2, .tar, .zip, .gpx.gz, .gpx.bz2).
+ Чи може виникнути проблема з форматом або синтаксисом вашого файлу? Ось помилка
+ імпорту:'
more_info: Більше інформації про помилки імпорту GPX та способи їх уникнення
можна знайти за посиланням %{url}.
more_info_html: Докладна інформація про проблеми імпорту GPX та шляхи їх вирішення
changeset_comment_notification:
description: 'Набір змін OpenStreetMap #%{id}'
hi: Привіт %{to_user},
- greeting: Привіт,
commented:
subject_own: '[OpenStreetMap] %{commenter} прокоментував один з ваших наборів
змін'
remember: Запам’ятати мене
lost password link: Забули пароль?
login_button: Увійти
- register now: Зареєструйтеся зараз
with external: Або використовуйте, облікові записи з інших ресурсів
or: або
auth failure: Вибачте, вхід з цими ім’ям або паролем неможливий.
hospital: Лікарня
building: Значна споруда
station: Залізнична станція
+ railway_halt: Залізнична зупинка
+ subway_station: Станція метро
+ tram_stop: Трамвайна зупинка
summit: Вершина
peak: Пік
tunnel: Тунель (пунктиром)
destination: Цільовий доступ
construction: Будівництво дороги
bus_stop: Автобусна зупинка
- stop: Зупинка
bicycle_shop: Веломагазин
bicycle_rental: Прокат велосипедів
bicycle_parking: Велопарковка
write_notes: Змінювати нотатки
write_redactions: Виконувати очищення даних
read_email: Отримувати адресу е-пошти
+ consume_messages: Прочитати, оновити статус та видалити повідомлення користувача
+ send_messages: Надіслати приватне повідомлення іншим користувачам
skip_authorization: Автоматичне схвалення заявки
for_roles:
moderator: Цей дозвіл призначений для дій, доступних лише модераторам
privacy_policy_title: Політика конфіденційності OSMF, включаючи розділ про
адреси електронної пошти
contributor_terms: умови співпраці
- tou: умови використання
- external auth: 'Автентифікація через:'
continue: Зареєструватись
terms accepted: Дякуємо за прийняття нових умов співпраці!
email_help:
+ privacy_policy: Політикою конфіденційності
+ privacy_policy_title: Політика конфіденційності OSMF, має розділ про адреси
+ електронної пошти
html: Ваша адреса ніколи не показуватиметься публічно. Ознайомтесь з нашою
%{privacy_policy_link} для отримання докладної інформації.
consider_pd_html: Я вважаю, що мій внесок належать до %{consider_pd_link}.
informal_translations: неофіційні переклади
continue: Продовжити
declined: https://wiki.openstreetmap.org/wiki/Uk:Contributor_Terms_Declined
- decline: Відхилити
+ cancel: Скасувати
you need to accept or decline: Будь ласка, прочитайте, а потім або прийміть
або відхиліть нові Умови Участі.
legale_select: 'Країна проживання:'
remove as friend: Вилучити зі списку друзів
add as friend: Додати до списку друзів
mapper since: 'Обліковий запис створено:'
+ last map edit: 'Останнє редагування мапи:'
+ no activity yet: Ще немає активності
uid: 'id учасника:'
ct status: 'Умови співпраці:'
ct undecided: Не визначились
heading_html: Редагування блокування для %{name}
period: Як довго, починаючи з поточного моменту, учаснику буде заблокований
доступ до API.
+ revoke: Відкликати блокування
filter:
block_period: Період блокування повинен бути одним зі значень зі списку, що
розкривається.
update:
only_creator_can_edit: Тільки модератор, який створив це блокування, може змінювати
його.
+ only_creator_can_edit_without_revoking: Тільки модератор, який створив блокування,
+ може редагувати його без відкликання.
+ only_creator_or_revoker_can_edit: Тільки модератори, які створили або відкликали
+ блокування, можуть його редагувати.
+ inactive_block_cannot_be_reactivated: Це блокування неактивне і не може бути
+ повторно активоване.
success: Блокування оновлено.
index:
title: Блокування учасника
blocks_by_me: Заблокований(а) мною
blocks_by_user: Блокування, що їх наклав %{user}
block: Блокування №%{id}
+ new_block: Нове блокування
user_mutes:
index:
title: Стишені учасники
add: Додати нотатку
notes_paging_nav:
showing_page: Сторінка %{page}
+ next: Далі
+ previous: Назад
javascripts:
close: Закрити
share:
custom_dimensions: Встановити власні розміри
format: 'Формат:'
scale: 'Масштаб:'
- image_dimensions: На зображені буде Стандартний шар (%{width} * %{height})
+ image_dimensions: На зображені буде шар %{layer} (%{width} * %{height})
download: Завантажити
short_url: Скорочене URL-посилання
include_marker: Додати маркер
center_marker: Центрувати мапу на маркері
paste_html: HTML-код для вбудування у сайт
view_larger_map: Переглянути більшу мапу
- only_standard_layer: Тільки стандартний шар може бути експортований у вигляді
- зображення
+ only_standard_layer: Тільки Стандартний шар, Веломапа та Мапа транспорту можуть
+ бÑ\83Ñ\82и екÑ\81поÑ\80Ñ\82ований Ñ\83 виглÑ\8fдÑ\96 зобÑ\80аженнÑ\8f
embed:
report_problem: Повідомити про проблему
key:
empty: Редакції для показу відсутні.
heading: Перелік редакцій
title: Перелік редакцій
+ new: Нова редакція
new:
heading: Введіть інформацію для нової редакції
title: Створення нової редакції
activerecord:
errors:
messages:
- invalid_email_address: hình như không phải là địa chỉ thư điện tử hợp lệ
- email_address_not_routable: không thể gửi đến
display_name_is_user_n: không thể là user_n trừ khi n là số người dùng của
bạn
models:
comment:
comment: 'Nhận xét mới về bộ thay đổi #%{changeset_id} của %{author}'
commented_at_by_html: Được %{user} cập nhật %{when}
- comments:
- comment: 'Nhận xét mới về bộ thay đổi #%{changeset_id} của %{author}'
show:
title_all: Thảo luận về bộ thay đổi tại OpenStreetMap
title_particular: 'Thảo luận về bộ thay đổi #%{changeset_id} tại OpenStreetMap'
thì giờ.
changesets:
changeset:
- anonymous: Vô danh
no_edits: (không có thay đổi)
view_changeset_details: Xem chi tiết của bộ thay đổi
index:
title: Bộ thay đổi %{id}
created_by_html: Được %{link_user} tạo %{created}.
no_such_entry:
- title: Không tìm thấy bộ thay đổi
heading: 'Không tìm thấy mục có số: %{id}'
body: Rất tiếc, không có bộ thay đổi với số %{id}. Xin hãy kiểm tra chính tả,
hoặc có lẽ bạn đã theo một liên kết sai.
report: Báo cáo bình luận này
location:
location: 'Vị trí:'
- view: Xem
- edit: Sửa
feed:
user:
title: Các mục nhật ký của %{user}
level9: Biên giới Làng
level10: Biên giới Khu phố
level11: Biên giới Hàng xóm
- types:
- cities: Thành phố
- towns: Thị xã
- places: Địa điểm
results:
no_results: Không tìm thấy kết quả
more_results: Thêm kết quả
not_updated: Không được Cập nhật
search: Tìm kiếm
search_guidance: 'Tìm kiếm Vấn đề:'
- link_to_reports: Xem Báo cáo
states:
ignored: Bỏ qua
open: Mở
changeset_comment_notification:
description: 'Bộ thay đổi OpenStreetMap #%{id}'
hi: Chào %{to_user},
- greeting: Chào bạn,
commented:
subject_own: '[OpenStreetMap] %{commenter} đã bình luận về một bộ thay đổi
của bạn'
remember: Nhớ tôi
lost password link: Quên mất Mật khẩu?
login_button: Đăng nhập
- register now: Mở tài khoản ngay
with external: hoặc đăng nhập qua dịch vụ bên thứ ba
or: hoặc
auth failure: Rất tiếc, không thể đăng nhập với những chi tiết đó.
destination: Chỉ giao thông địa phương
construction: Đường đang xây
bus_stop: Điểm dừng xe buýt
- stop: Điểm dừng lại
bicycle_shop: Tiệm xe đạp
bicycle_rental: Cho thuê xe đạp
bicycle_parking: Chỗ đậu xe đạp
privacy_policy_title: Quy định về quyền riêng tư của OSMF, bao gồm phần về
địa chỉ thư điện tử
contributor_terms: các điều kiện đóng góp
- tou: các điều khoản sử dụng
- external auth: 'Xác minh qua Dịch vụ Bên thứ ba:'
continue: Mở tài khoản
terms accepted: Cám ơn bạn đã chấp nhận các điều khoản đóng góp mới!
email_help:
informal_translations: bản dịch không chính thức
continue: Tiếp tục
declined: https://wiki.openstreetmap.org/wiki/Contributor_Terms_Declined?uselang=vi
- decline: Từ chối
you need to accept or decline: Để tiếp tục, xin vui lòng đọc các Điều khoản
Đóng góp mới và chấp nhận hoặc từ chối chúng.
legale_select: 'Vui lòng chọn quốc gia cư trú:'
create: ბლოკირაფაშ გოჭყაფა
update: ბლოკირაფაშ გოახალაფა
activerecord:
- errors:
- messages:
- invalid_email_address: თინი ელექტრონული ფოსტაშ მიოწურაფუს ვამოგენს
- email_address_not_routable: ვარე მარშრუტირაფილი
models:
acl: ხემეჭირნაფაშ კონტროლიშ ერკებული
changeset: თირაფეფიშ პაკეტი
comment:
comment: 'ახალი კომენტარი თირუეფიშ პაკეტშო #%{changeset_id} %{author}-შე'
commented_at_by_html: გაახალებური რე %{when} %{user}-იშით
- comments:
- comment: 'ახალი კომენტარი თირუეფიშ პაკეტშო #%{changeset_id} %{author}-შე'
show:
title_all: OpenStreetMap-შ თირუეფიშ პაკეტიშ სხუნუა
title_particular: 'OpenStreetMap თირუეფიშ პაკეტიშ სხუნუა #%{changeset_id}'
changesets:
changeset:
- anonymous: ანონიმი
no_edits: (რედაქტირაფა ვა რე)
view_changeset_details: თირუეფიშ პაკეტიშ კილიშკილი ინფორმაციაშ ძირაფა
index:
confirm: მეღება
location:
location: ორენიː
- view: ძირაფა
- edit: რედაქტირაფა
feed:
user:
title: OpenStreetMap დღარიშ დინნაჭარეფი მახვარებუშო %{user}
level8: ნოღაშ ხურგი
level9: ოფუტეშ ხურგი
level11: სამეძობოშ ხურგი
- types:
- cities: ნოღეფი
- towns: დაბეფი
- places: აბანეფი
results:
no_results: შედეგიქ ვეგორჷ
more_results: უმოსი შედეგი
activerecord:
errors:
messages:
- invalid_email_address: 似乎不是有效的电子邮件地址
- email_address_not_routable: 不可路由
display_name_is_user_n: 不能为“user_n”,除非“n”是您的用户ID
models:
user_mute:
comment:
comment: '%{author}对变更集%{changeset_id}的新评论'
commented_at_by_html: 由%{user}更新于%{when}
- comments:
- comment: '%{author}对变更集%{changeset_id}的新评论'
show:
title_all: OpenStreetMap 变更集讨论
title_particular: 'OpenStreetMap 变更集 #%{changeset_id} 讨论'
sorry: 抱歉,您请求的变更集评论列表检索时间过长。
changesets:
changeset:
- anonymous: 匿名用户
no_edits: (无编辑)
view_changeset_details: 查看变更集详情
index:
title: 变更集 %{id}
created_by_html: 由 %{link_user} 在 %{created} 创建。
no_such_entry:
- title: 无此变更集
heading: 找不到ID为%{id}的文章
body: 对不起,没有ID为 %{id} 的变更集。请检查您的拼写,或者可能是点击了错误的链接。
show:
report: 举报此评论
location:
location: 位置:
- view: 查看
- edit: 编辑
feed:
user:
title: '%{user} 的 OpenStreetMap 日记文章'
college: 学院建筑
commercial: 商业建筑物
construction: 在建建筑
+ cowshed: 牛棚
detached: 独立式住宅
dormitory: 宿舍
duplex: 双拼住宅
shed: 棚
stable: 马厩
static_caravan: 大篷车
+ sty: 猪圈
temple: 庙宇建筑
terrace: 排屋
train_station: 火车站建筑
level9: 村界
level10: 村界
level11: 邻里界
- types:
- cities: 城市
- towns: 城镇
- places: 地点
results:
no_results: 没有找到结果
more_results: 更多结果
not_updated: 未更新
search: 搜索
search_guidance: 搜索问题:
- link_to_reports: 查看举报
states:
ignored: 已忽略
open: 开放
page:
user_not_found: 用户不存在
issues_not_found: 找不到此问题
+ reported_user: 被举报用户
status: 状态
reports: 举报
last_updated: 最后更新
one: '%{count}个举报'
other: '%{count}个举报'
reported_item: 举报项
+ states:
+ ignored: 已忽略
+ open: 开放
+ resolved: 已解决
show:
title: '%{status}问题#%{issue_id}'
reports:
changeset_comment_notification:
description: 'OpenStreetMap 变更集 #%{id}'
hi: 您好,%{to_user}:
- greeting: 您好,
commented:
subject_own: '[OpenStreetMap] %{commenter}评论了您的一个变更集'
subject_other: '[OpenStreetMap] %{commenter} 评论了您感兴趣的一个变更集'
remember: 记住我
lost password link: 忘记密码?
login_button: 登录
- register now: 立即注册
with external: 或使用第三方服务登录
or: 或
auth failure: 对不起,凭这些信息您无法登录。
diary_entries:
older: 较早的文章
newer: 较新的文章
+ issues:
+ older: 旧问题
+ newer: 新问题
traces:
older: 较旧轨迹
newer: 较新轨迹
hospital: 医院
building: 特殊建筑物
station: 火车站
+ railway_halt: 铁路乘降所
+ subway_station: 地铁站
+ tram_stop: 有轨电车站
summit: 山峰
peak: 山峰
tunnel: 双虚线=隧道
destination: 目的地通行
construction: 在建道路
bus_stop: 公共汽车站
- stop: 停车站
bicycle_shop: 自行车店
bicycle_rental: 自行车租赁
bicycle_parking: 自行车停车场
privacy_policy: 隐私政策
privacy_policy_title: OSM基金会隐私政策包括电子邮件地址部分
contributor_terms: 贡献者条款
- tou: 使用条款
- external auth: 第三方身份验证:
continue: 注册
terms accepted: 感谢您接受新的贡献条款!
email_help:
readable_summary: 人类可读的摘要
informal_translations: 非正式翻译
continue: 继续
- decline: 拒绝
you need to accept or decline: 请先阅读,然后接受或拒绝新的贡献者条款,再继续。
legale_select: 请选择您居住的国家:
legale_names:
title: 编辑对 %{name} 的封禁
heading_html: 编辑对 %{name} 的封禁
period: 从现在开始,该用户要被封禁不能使用 API 多久。
+ revoke: 撤销封禁
filter:
block_period: 封禁时期必须是在下拉菜单中可选择的数值之一。
create:
blocks_by_me: 由我做出的封禁
blocks_by_user: 由%{user}做出的封禁
block: 封禁#%{id}
+ new_block: 新封禁
user_mutes:
index:
title: 已忽视用户
add: 添加注记
notes_paging_nav:
showing_page: 第 %{page} 页
+ next: 下一页
+ previous: 上一页
javascripts:
close: 关闭
share:
empty: 无隐删可显示。
heading: 隐删列表
title: 隐删列表
+ new: 新修订
new:
heading: 请输入新隐删的信息
title: 创建新隐删
create: 創建封鎖
update: 更新封鎖
activerecord:
- errors:
- messages:
- invalid_email_address: 不像是有效的電郵地址。
- email_address_not_routable: 不可繞送
models:
acl: 存取控制清單
changeset: 變更集
introduction: 點擊地圖以尋找附近的地圖特徵。
enclosing: 包圍着的地圖特徵
changesets:
- changeset:
- anonymous: 匿名
index:
title: 變更集
title_user: '%{user}的變更集'
confirm: 確認
location:
location: 位置:
- view: 檢視
- edit: 編輯
feed:
user:
title: '%{user}的OpenStreetMap日記文章'
level8: 市界
level9: 村界
level10: 市郊邊界
- types:
- cities: 城市
- towns: 市鎮
- places: 地點
results:
no_results: 找不到結果
more_results: 更多結果
about:
header: 自由而可編輯
display name description: 您公開顯示的用戶名稱。以後還可以在設定中更換。
- external auth: 第三方身份認證:
continue: 註冊
terms accepted: 感謝您接受新的貢獻條款!
terms:
read_tou: 我已經閱讀過並同意使用條款
consider_pd: 除上述條款之外,我會把我的貢獻釋放到公共領域(Public Domain)
continue: 繼續
- decline: 拒絕
legale_select: 請選擇您的居住地:
legale_names:
france: 法國
activerecord:
errors:
messages:
- invalid_email_address: 似乎不是有效的電子郵件信箱地址。
- email_address_not_routable: 不可發送
display_name_is_user_n: 不能是「user_n」,除非「n」是你的使用者 ID
models:
user_mute:
longitude: 經度
public: 公開
description: 描述
- gpx_file: 上傳 GPX 檔案
+ gpx_file: 選擇 GPX 軌跡檔案
visibility: 能見度
tagstring: 標籤
message:
note: 註記
timeout:
title: 逾時錯誤
- sorry: 抱歉,索取 id 為 %{id} 的 %{type} 資料,花費時間過長。
+ sorry: 很抱歉,索取 id 為 %{id} 的%{type}資料花費時間過長。
type:
node: 節點
way: 路徑
introduction: 點選地圖以尋找附近的圖徵
nearby: 附近圖徵
enclosing: 區域內圖徵
+ nodes:
+ timeout:
+ sorry: 很抱歉,索取 id 為 %{id} 的節點資料花費時間過長。
old_nodes:
not_found:
sorry: '很抱歉,無法找到版本 %{version} 的節點 #%{id}。'
+ timeout:
+ sorry: 很抱歉,索取 id 為 %{id} 的節點歷史花費時間過長。
+ ways:
+ timeout:
+ sorry: 很抱歉,索取 id 為 %{id} 的路徑資料花費時間過長。
old_ways:
not_found:
sorry: 很抱歉,找不到版本 %{version} 的路徑 %{id}。
+ timeout:
+ sorry: 很抱歉,索取 id 為 %{id} 的路徑歷史花費時間過長。
+ relations:
+ timeout:
+ sorry: 很抱歉,索取 id 為 %{id} 的關聯資料花費時間過長。
old_relations:
not_found:
sorry: '很抱歉,找不到版本 %{version} 的關聯 #%{id}。'
+ timeout:
+ sorry: 很抱歉,索取 id 為 %{id} 的關聯歷史花費時間過長。
changeset_comments:
feeds:
comment:
comment: '由 %{author} 對變更集 #%{changeset_id} 發表的新評論'
commented_at_by_html: 於%{when}由%{user}更新
- comments:
- comment: '%{author} 對變更集 #%{changeset_id} 發表的新評論'
show:
title_all: OpenStreetMap 變更集討論
title_particular: OpenStreetMap 變更集 %{changeset_id} 討論
sorry: 很抱歉,你請求的變更集評論過長無法讀取
changesets:
changeset:
- anonymous: 匿名
no_edits: (沒有編輯)
view_changeset_details: 檢視變更集詳細資料
index:
title: 變更集 %{id}
created_by_html: 由 %{link_user} 在 %{created} 建立。
no_such_entry:
- title: 沒有這樣的變更集
heading: 沒有 id 為 %{id} 的項目
body: 抱歉,沒有 id 為 %{id} 的變更集。請檢查你的拼字,或者可能是你按到錯誤的連結。
show:
report: 回報此評論
location:
location: 位置:
- view: 檢視
- edit: 編輯
feed:
user:
title: '%{user} 的 OpenStreetMap 日記項目'
level9: 村里界
level10: 市區邊界
level11: 鄰近區界
- types:
- cities: 城市
- towns: 鄉鎮
- places: 地點
results:
no_results: 找不到結果
more_results: 更多結果
not_updated: 尚未更新
search: 搜尋
search_guidance: 搜尋問題:
- link_to_reports: 檢視回報
states:
ignored: 已忽略
open: 開放
befriend_them: 你可以在 %{befriendurl} 把他加入為好友。
befriend_them_html: 你可以在 %{befriendurl} 把他加入為好友。
gpx_description:
- description_with_tags: 看起來似乎是你的 GPX 檔案%{trace_name}帶有%{trace_description}描述而且沒有標籤:%{tags}
- description_with_tags_html: 看起來似乎是你的 GPX 檔案%{trace_name}帶有%{trace_description}描述而且沒有標籤:%{tags}
- description_with_no_tags: 看起來似乎是你的 GPX 檔案%{trace_name}帶有%{trace_description}描述而且沒有標籤
- description_with_no_tags_html: 看起來似乎是你的 GPX 檔案%{trace_name}帶有%{trace_description}描述而且沒有標籤
+ description_with_tags: 看起來似乎是你的%{trace_name}檔案帶有%{trace_description}描述而且沒有標籤:%{tags}
+ description_with_tags_html: 看起來似乎是你的%{trace_name}檔案帶有%{trace_description}描述而且沒有標籤:%{tags}
+ description_with_no_tags: 看起來似乎是你的%{trace_name}檔案帶有%{trace_description}描述而且沒有標籤
+ description_with_no_tags_html: 看起來似乎是你的%{trace_name}檔案帶有%{trace_description}描述而且沒有標籤
gpx_failure:
hi: '%{to_user} 你好,'
- failed_to_import: 看來匯入失敗。錯誤訊息為:
+ failed_to_import: 匯入成 GPS 軌跡檔案失敗。請驗證您的檔案是否為有效的 GPX 檔案,或是否為含有 GPX 檔案的支援格式存檔(.tar.gz、.tar.bz2、.tar、.zip、.gpx.gz、.gpx.bz2)。您的檔案是否有格式或語法問題?此為匯入的錯誤內容:
more_info: 更多關於 GPX 匯入失敗的資訊與如何避免,可在 %{url} 查詢。
more_info_html: 更多關於 GPX 匯入失敗的資訊與如何避免,可在 %{url} 查詢。
subject: '[OpenStreetMap] GPX 匯入失敗'
changeset_comment_notification:
description: 'OpenStreetMap 變更集 #%{id}'
hi: 嗨 %{to_user},
- greeting: 您好,
commented:
subject_own: '[OpenStreetMap] %{commenter} 對你的變更集做了評論'
subject_other: '[OpenStreetMap] %{commenter} 對你感興趣的變更集做了評論'
remember: 記住我
lost password link: 忘記密碼了?
login_button: 登入
- register now: 立即註冊
with external: 或者使用第三方服務登入
or: 或
auth failure: 很抱歉,無法以這些資料登入。
hospital: 醫院
building: 重要建築
station: 鐵路車站
+ railway_halt: 鐵路招呼站
+ subway_station: 地鐵站
+ tram_stop: 路面電車停靠站
summit: 頂峰
peak: 山峰
tunnel: 虛線邊框 = 隧道
destination: 目的地進出
construction: 興建中道路
bus_stop: 公車站牌
- stop: 停車站
bicycle_shop: 自行車店
bicycle_rental: 自行車出租
bicycle_parking: 自行車停車場
privacy_policy_title: OSMF 隱私權政策包含電子郵件地址部份
contributor_terms_url: https://wiki.osmfoundation.org/wiki/Licence/Contributor_Terms
contributor_terms: 貢獻者條款
- tou: 使用條款
- external auth: 第三方身份認證
continue: 註冊
terms accepted: 感謝你接受新的貢獻條款!
email_help:
readable_summary: 人類可讀的摘要
informal_translations: 非正式翻譯
continue: 繼續
- decline: 拒絕
+ cancel: 取消
you need to accept or decline: 請先閱讀,然後選擇接受或拒絕新的貢獻者條款,再繼續。
legale_select: 請選擇您的居住地:
legale_names:
empty: 沒有可顯示的修訂。
heading: 修訂清單
title: 修訂清單
+ new: 新修訂
new:
heading: 輸入新增修訂資訊
title: 建立修訂中
when "application/x-bzip" then io = Bzip2::FFI::Reader.open(@file)
end
- parse_file(XML::Reader.io(io), &block)
+ parse_file(XML::Reader.io(io, :options => XML::Parser::Options::NOERROR), &block)
end
end
community_en_yaml.dig("_defaults", community.type, "name")
community_name = community_locale_yaml.dig("_communities", community.strings["communityID"])
# Change the `{community}` placeholder to `%{community}` and use Ruby's Kernel.format to fill it in.
- translated_name = format(template.gsub("{", "%{"), { :community => community_name }) if template && community_name
+ begin
+ translated_name = format(template.gsub("{", "%{"), { :community => community_name }) if template && community_name
+ rescue KeyError => e
+ Rails.logger.warn e.full_message
+ end
return translated_name if translated_name
# Otherwise fall back to the (English-language) resource name
# Now authenticated
create(:user_preference, :user => user, :k => "gps.trace.visibility", :v => "identifiable")
assert_not_equal "trackable", user.preferences.find_by(:k => "gps.trace.visibility").v
+
auth_header = bearer_authorization_header user
- post gpx_create_path, :params => { :file => file, :description => "New Trace", :tags => "new,trace", :visibility => "trackable" }, :headers => auth_header
+
+ # Create trace and import tracepoints in background job
+ perform_enqueued_jobs do
+ post gpx_create_path, :params => { :file => file, :description => "New Trace", :tags => "new,trace", :visibility => "trackable" }, :headers => auth_header
+ end
+
assert_response :success
+
trace = Trace.find(response.body.to_i)
assert_equal "a.gpx", trace.name
assert_equal "New Trace", trace.description
assert_equal %w[new trace], trace.tags.order(:tag).collect(&:tag)
assert_equal "trackable", trace.visibility
- assert_not trace.inserted
+ assert trace.inserted
assert_equal File.new(fixture).read, trace.file.blob.download
+
+ # Validate tracepoints
+ assert_equal 1, trace.points.size
+ tp = trace.points.first
+ assert_equal 10000000, tp.latitude
+ assert_equal 10000000, tp.longitude
+ assert_equal 3221331576, tp.tile
+ assert_equal 0, tp.trackid
+ assert_in_delta(134.0, tp.altitude)
+ assert_equal DateTime.parse("2008-10-01T10:10:10.000Z"), tp.timestamp
+
trace.destroy
assert_equal "trackable", user.preferences.find_by(:k => "gps.trace.visibility").v
email = ActionMailer::Base.deliveries.last
assert_equal trace.user.email, email.to[0]
assert_match(/failure/, email.subject)
+ assert_no_match(/Start tag expected/, email.text_part.body.to_s, "should not include parser error")
+ assert_match(%r{jobs/trace_importer_job\.rb}, email.text_part.body.to_s, "should include stack backtrace")
+
+ ActionMailer::Base.deliveries.clear
+ end
+
+ def test_parse_error_notification
+ trace = create(:trace, :inserted => false, :fixture => "jpg")
+ Rails.logger.silence do
+ TraceImporterJob.perform_now(trace)
+ end
+
+ email = ActionMailer::Base.deliveries.last
+ assert_equal trace.user.email, email.to[0]
+ assert_match(/failure/, email.subject)
+ assert_match(/Start tag expected/, email.text_part.body.to_s, "should include parser error")
+ assert_no_match(%r{jobs/trace_importer_job\.rb}, email.text_part.body.to_s, "should not include stack backtrace")
+
+ ActionMailer::Base.deliveries.clear
+ end
+
+ def test_gz_parse_error_notification
+ trace = create(:trace, :inserted => false, :fixture => "jpg.gz")
+ Rails.logger.silence do
+ TraceImporterJob.perform_now(trace)
+ end
+
+ email = ActionMailer::Base.deliveries.last
+ assert_equal trace.user.email, email.to[0]
+ assert_match(/failure/, email.subject)
+ assert_match(/Start tag expected/, email.text_part.body.to_s, "should include parser error")
+ assert_no_match(%r{jobs/trace_importer_job\.rb}, email.text_part.body.to_s, "should not include stack backtrace")
ActionMailer::Base.deliveries.clear
end
name = OsmCommunityIndex.resolve_name(community, community_locale_yaml, community_en_yaml)
assert_equal("Translated Community Chapter", name)
end
+
+ def test_i18n_invalid_replacement_token
+ # Ignore invalid replacement tokens in OCI data provided. This might happen if translators were mistakenly translating the predefined token ids.
+ community = Community.new({ "id" => "foo-chapter", "type" => "osm-lc", "strings" => { "community" => "Community Name", "communityID" => "communityname" } })
+ community_locale_yaml = { "_communities" => { "communityname" => "Translated Community" }, "_defaults" => { "osm-lc" => { "name" => "{comminauté} Chapter" } } }
+ community_en_yaml = {}
+
+ name = OsmCommunityIndex.resolve_name(community, community_locale_yaml, community_en_yaml)
+ assert_equal("Community Name", name)
+ end
end
def test_view_issues_not_logged_in
visit issues_path
- assert_content I18n.t("sessions.new.title")
+ assert_content "Log in"
end
def test_view_issues_normal_user
debug "^4.3.1"
minimatch "^3.1.2"
+"@eslint/core@^0.6.0":
+ version "0.6.0"
+ resolved "https://registry.yarnpkg.com/@eslint/core/-/core-0.6.0.tgz#9930b5ba24c406d67a1760e94cdbac616a6eb674"
+ integrity sha512-8I2Q8ykA4J0x0o7cg67FPVnehcqWTBehu/lmY+bolPFHGjh49YzGBMXTvpqVgEbBdvNCSxj6iFgiIyHzf03lzg==
+
"@eslint/eslintrc@^3.1.0":
version "3.1.0"
resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-3.1.0.tgz#dbd3482bfd91efa663cbe7aa1f506839868207b6"
minimatch "^3.1.2"
strip-json-comments "^3.1.1"
-"@eslint/js@9.10.0":
- version "9.10.0"
- resolved "https://registry.yarnpkg.com/@eslint/js/-/js-9.10.0.tgz#eaa3cb0baec497970bb29e43a153d0d5650143c6"
- integrity sha512-fuXtbiP5GWIn8Fz+LWoOMVf/Jxm+aajZYkhi6CuEm4SxymFM+eUWzbO9qXT+L0iCkL5+KGYMCSGxo686H19S1g==
+"@eslint/js@9.11.1":
+ version "9.11.1"
+ resolved "https://registry.yarnpkg.com/@eslint/js/-/js-9.11.1.tgz#8bcb37436f9854b3d9a561440daf916acd940986"
+ integrity sha512-/qu+TWz8WwPWc7/HcIJKi+c+MOm46GdVaSlTTQcaqaL53+GsoA6MxWp5PtTx48qbSP7ylM1Kn7nhvkugfJvRSA==
"@eslint/object-schema@^2.1.4":
version "2.1.4"
resolved "https://registry.yarnpkg.com/@eslint/object-schema/-/object-schema-2.1.4.tgz#9e69f8bb4031e11df79e03db09f9dbbae1740843"
integrity sha512-BsWiH1yFGjXXS2yvrf5LyuoSIIbPrGUWob917o+BTKuZ7qJdxX8aJLRxs1fS9n6r7vESrq1OUqb68dANcFXuQQ==
-"@eslint/plugin-kit@^0.1.0":
- version "0.1.0"
- resolved "https://registry.yarnpkg.com/@eslint/plugin-kit/-/plugin-kit-0.1.0.tgz#809b95a0227ee79c3195adfb562eb94352e77974"
- integrity sha512-autAXT203ixhqei9xt+qkYOvY8l6LAFIdT2UXc/RPNeUVfqRF1BV94GTJyVPFKT8nFM6MyVJhjLj9E8JWvf5zQ==
+"@eslint/plugin-kit@^0.2.0":
+ version "0.2.0"
+ resolved "https://registry.yarnpkg.com/@eslint/plugin-kit/-/plugin-kit-0.2.0.tgz#8712dccae365d24e9eeecb7b346f85e750ba343d"
+ integrity sha512-vH9PiIMMwvhCx31Af3HiGzsVNULDbyVkHXwlemn/B0TFj/00ho3y55efXrUZTfQipxoHC5u4xq6zblww1zm1Ig==
dependencies:
levn "^0.4.1"
"@nodelib/fs.scandir" "2.1.5"
fastq "^1.6.0"
+"@types/estree@^1.0.6":
+ version "1.0.6"
+ resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.6.tgz#628effeeae2064a1b4e79f78e81d87b7e5fc7b50"
+ integrity sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==
+
+"@types/json-schema@^7.0.15":
+ version "7.0.15"
+ resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.15.tgz#596a1747233694d50f6ad8a7869fcb6f56cf5841"
+ integrity sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==
+
acorn-jsx@^5.3.2:
version "5.3.2"
resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937"
integrity sha512-OtIRv/2GyiF6o/d8K7MYKKbXrOUBIK6SfkIRM4Z0dY3w+LiQ0vy3F57m0Z71bjbyeiWFiHJ8brqnmE6H6/jEuw==
eslint@^9.0.0:
- version "9.10.0"
- resolved "https://registry.yarnpkg.com/eslint/-/eslint-9.10.0.tgz#0bd74d7fe4db77565d0e7f57c7df6d2b04756806"
- integrity sha512-Y4D0IgtBZfOcOUAIQTSXBKoNGfY0REGqHJG6+Q81vNippW5YlKjHFj4soMxamKK1NXHUWuBZTLdU3Km+L/pcHw==
+ version "9.11.1"
+ resolved "https://registry.yarnpkg.com/eslint/-/eslint-9.11.1.tgz#701e5fc528990153f9cef696d8427003b5206567"
+ integrity sha512-MobhYKIoAO1s1e4VUrgx1l1Sk2JBR/Gqjjgw8+mfgoLE2xwsHur4gdfTxyTgShrhvdVFTaJSgMiQBl1jv/AWxg==
dependencies:
"@eslint-community/eslint-utils" "^4.2.0"
"@eslint-community/regexpp" "^4.11.0"
"@eslint/config-array" "^0.18.0"
+ "@eslint/core" "^0.6.0"
"@eslint/eslintrc" "^3.1.0"
- "@eslint/js" "9.10.0"
- "@eslint/plugin-kit" "^0.1.0"
+ "@eslint/js" "9.11.1"
+ "@eslint/plugin-kit" "^0.2.0"
"@humanwhocodes/module-importer" "^1.0.1"
"@humanwhocodes/retry" "^0.3.0"
"@nodelib/fs.walk" "^1.2.8"
+ "@types/estree" "^1.0.6"
+ "@types/json-schema" "^7.0.15"
ajv "^6.12.4"
chalk "^4.0.0"
cross-spawn "^7.0.2"