Merge branch 'master' into feature/add-communities-page
This commit is contained in:
commit
06c2db433d
185 changed files with 8701 additions and 5822 deletions
14
.editorconfig
Normal file
14
.editorconfig
Normal file
|
@ -0,0 +1,14 @@
|
|||
# EditorConfig is awesome: http://EditorConfig.org
|
||||
|
||||
# top-most EditorConfig file
|
||||
root = true
|
||||
|
||||
# Unix-style newlines with a newline ending every file
|
||||
|
||||
[*]
|
||||
indent_style = space
|
||||
indent_size = 2
|
||||
end_of_line = lf
|
||||
charset = utf-8
|
||||
trim_trailing_whitespace = true
|
||||
insert_final_newline = true
|
1
.gitattributes
vendored
Normal file
1
.gitattributes
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
* text=auto eol=lf
|
|
@ -1,6 +1,6 @@
|
|||
# This configuration was generated by
|
||||
# `rubocop --auto-gen-config`
|
||||
# on 2021-06-29 17:25:37 UTC using RuboCop version 1.18.0.
|
||||
# on 2021-09-14 19:29:59 UTC using RuboCop version 1.21.0.
|
||||
# The point is for the user to remove these configuration records
|
||||
# one by one as the offenses are removed from the code base.
|
||||
# Note that changes in the inspected code, or installation of new
|
||||
|
@ -14,13 +14,26 @@ require:
|
|||
- rubocop-rails
|
||||
- rubocop-rake
|
||||
|
||||
# Offense count: 510
|
||||
# Offense count: 524
|
||||
# Cop supports --auto-correct.
|
||||
# Configuration parameters: AutoCorrect, AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, IgnoredPatterns.
|
||||
# Configuration parameters: AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, IgnoredPatterns.
|
||||
# URISchemes: http, https
|
||||
Layout/LineLength:
|
||||
Max: 270
|
||||
|
||||
# Offense count: 62
|
||||
# Cop supports --auto-correct.
|
||||
Lint/AmbiguousOperatorPrecedence:
|
||||
Exclude:
|
||||
- 'app/controllers/geocoder_controller.rb'
|
||||
- 'app/models/user.rb'
|
||||
- 'lib/bounding_box.rb'
|
||||
- 'lib/osm.rb'
|
||||
- 'lib/rich_text.rb'
|
||||
- 'lib/short_link.rb'
|
||||
- 'test/controllers/api/old_nodes_controller_test.rb'
|
||||
- 'test/lib/short_link_test.rb'
|
||||
|
||||
# Offense count: 34
|
||||
# Configuration parameters: AllowSafeAssignment.
|
||||
Lint/AssignmentInCondition:
|
||||
|
@ -50,12 +63,12 @@ Lint/DuplicateBranch:
|
|||
- 'app/helpers/browse_tags_helper.rb'
|
||||
- 'lib/password_hash.rb'
|
||||
|
||||
# Offense count: 631
|
||||
# Offense count: 643
|
||||
# Configuration parameters: IgnoredMethods, CountRepeatedAttributes.
|
||||
Metrics/AbcSize:
|
||||
Max: 235
|
||||
Max: 189
|
||||
|
||||
# Offense count: 68
|
||||
# Offense count: 69
|
||||
# Configuration parameters: CountComments, CountAsOne, ExcludedMethods, IgnoredMethods.
|
||||
# IgnoredMethods: refine
|
||||
Metrics/BlockLength:
|
||||
|
@ -69,14 +82,14 @@ Metrics/BlockNesting:
|
|||
# Offense count: 25
|
||||
# Configuration parameters: CountComments, CountAsOne.
|
||||
Metrics/ClassLength:
|
||||
Max: 361
|
||||
Max: 337
|
||||
|
||||
# Offense count: 56
|
||||
# Offense count: 58
|
||||
# Configuration parameters: IgnoredMethods.
|
||||
Metrics/CyclomaticComplexity:
|
||||
Max: 25
|
||||
|
||||
# Offense count: 703
|
||||
# Offense count: 716
|
||||
# Configuration parameters: CountComments, CountAsOne, ExcludedMethods, IgnoredMethods.
|
||||
Metrics/MethodLength:
|
||||
Max: 179
|
||||
|
@ -86,37 +99,22 @@ Metrics/MethodLength:
|
|||
Metrics/ParameterLists:
|
||||
Max: 6
|
||||
|
||||
# Offense count: 60
|
||||
# Offense count: 62
|
||||
# Configuration parameters: IgnoredMethods.
|
||||
Metrics/PerceivedComplexity:
|
||||
Max: 26
|
||||
|
||||
# Offense count: 519
|
||||
# Offense count: 528
|
||||
Minitest/MultipleAssertions:
|
||||
Max: 88
|
||||
Max: 54
|
||||
|
||||
# Offense count: 4
|
||||
# Offense count: 3
|
||||
Naming/AccessorMethodName:
|
||||
Exclude:
|
||||
- 'app/controllers/application_controller.rb'
|
||||
- 'app/helpers/title_helper.rb'
|
||||
- 'lib/osm.rb'
|
||||
|
||||
# Offense count: 21
|
||||
# Configuration parameters: CheckIdentifiers, CheckConstants, CheckVariables, CheckStrings, CheckSymbols, CheckComments, CheckFilepaths, FlaggedTerms.
|
||||
Naming/InclusiveLanguage:
|
||||
Exclude:
|
||||
- 'app/controllers/sessions_controller.rb'
|
||||
- 'app/controllers/users_controller.rb'
|
||||
- 'app/helpers/browse_tags_helper.rb'
|
||||
- 'app/views/api/capabilities/show.builder'
|
||||
- 'app/views/confirmations/_resend_success_flash.html.erb'
|
||||
- 'app/views/users/suspended.html.erb'
|
||||
- 'config/environments/production.rb'
|
||||
- 'config/initializers/canonical_rails.rb'
|
||||
- 'config/initializers/config.rb'
|
||||
- 'config/initializers/doorkeeper.rb'
|
||||
|
||||
# Offense count: 8
|
||||
# Configuration parameters: NamePrefix, ForbiddenPrefixes, AllowedMethods, MethodDefinitionMacros.
|
||||
# NamePrefix: is_, has_, have_
|
||||
|
@ -200,7 +198,7 @@ Rake/Desc:
|
|||
- 'lib/tasks/subscribe_diary_authors.rake'
|
||||
- 'lib/tasks/subscribe_old_changesets.rake'
|
||||
|
||||
# Offense count: 597
|
||||
# Offense count: 602
|
||||
# Cop supports --auto-correct.
|
||||
# Configuration parameters: EnforcedStyle.
|
||||
# SupportedStyles: always, always_true, never
|
||||
|
|
4
Gemfile
4
Gemfile
|
@ -1,7 +1,7 @@
|
|||
source "https://rubygems.org"
|
||||
|
||||
# Require rails
|
||||
gem "rails", "6.1.4"
|
||||
gem "rails", "6.1.4.1"
|
||||
|
||||
# Require json for multi_json
|
||||
gem "json"
|
||||
|
@ -145,7 +145,7 @@ group :test do
|
|||
gem "rubocop"
|
||||
gem "rubocop-minitest"
|
||||
gem "rubocop-performance"
|
||||
gem "rubocop-rails"
|
||||
gem "rubocop-rails", "~> 2.11.3" # Bug in 2.12.0, fixed in master after 2.12.2
|
||||
gem "rubocop-rake"
|
||||
gem "selenium-webdriver"
|
||||
gem "simplecov", :require => false
|
||||
|
|
196
Gemfile.lock
196
Gemfile.lock
|
@ -3,66 +3,66 @@ GEM
|
|||
specs:
|
||||
aasm (5.2.0)
|
||||
concurrent-ruby (~> 1.0)
|
||||
actioncable (6.1.4)
|
||||
actionpack (= 6.1.4)
|
||||
activesupport (= 6.1.4)
|
||||
actioncable (6.1.4.1)
|
||||
actionpack (= 6.1.4.1)
|
||||
activesupport (= 6.1.4.1)
|
||||
nio4r (~> 2.0)
|
||||
websocket-driver (>= 0.6.1)
|
||||
actionmailbox (6.1.4)
|
||||
actionpack (= 6.1.4)
|
||||
activejob (= 6.1.4)
|
||||
activerecord (= 6.1.4)
|
||||
activestorage (= 6.1.4)
|
||||
activesupport (= 6.1.4)
|
||||
actionmailbox (6.1.4.1)
|
||||
actionpack (= 6.1.4.1)
|
||||
activejob (= 6.1.4.1)
|
||||
activerecord (= 6.1.4.1)
|
||||
activestorage (= 6.1.4.1)
|
||||
activesupport (= 6.1.4.1)
|
||||
mail (>= 2.7.1)
|
||||
actionmailer (6.1.4)
|
||||
actionpack (= 6.1.4)
|
||||
actionview (= 6.1.4)
|
||||
activejob (= 6.1.4)
|
||||
activesupport (= 6.1.4)
|
||||
actionmailer (6.1.4.1)
|
||||
actionpack (= 6.1.4.1)
|
||||
actionview (= 6.1.4.1)
|
||||
activejob (= 6.1.4.1)
|
||||
activesupport (= 6.1.4.1)
|
||||
mail (~> 2.5, >= 2.5.4)
|
||||
rails-dom-testing (~> 2.0)
|
||||
actionpack (6.1.4)
|
||||
actionview (= 6.1.4)
|
||||
activesupport (= 6.1.4)
|
||||
actionpack (6.1.4.1)
|
||||
actionview (= 6.1.4.1)
|
||||
activesupport (= 6.1.4.1)
|
||||
rack (~> 2.0, >= 2.0.9)
|
||||
rack-test (>= 0.6.3)
|
||||
rails-dom-testing (~> 2.0)
|
||||
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
||||
actionpack-page_caching (1.2.4)
|
||||
actionpack (>= 4.0.0)
|
||||
actiontext (6.1.4)
|
||||
actionpack (= 6.1.4)
|
||||
activerecord (= 6.1.4)
|
||||
activestorage (= 6.1.4)
|
||||
activesupport (= 6.1.4)
|
||||
actiontext (6.1.4.1)
|
||||
actionpack (= 6.1.4.1)
|
||||
activerecord (= 6.1.4.1)
|
||||
activestorage (= 6.1.4.1)
|
||||
activesupport (= 6.1.4.1)
|
||||
nokogiri (>= 1.8.5)
|
||||
actionview (6.1.4)
|
||||
activesupport (= 6.1.4)
|
||||
actionview (6.1.4.1)
|
||||
activesupport (= 6.1.4.1)
|
||||
builder (~> 3.1)
|
||||
erubi (~> 1.4)
|
||||
rails-dom-testing (~> 2.0)
|
||||
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
||||
active_record_union (1.3.0)
|
||||
activerecord (>= 4.0)
|
||||
activejob (6.1.4)
|
||||
activesupport (= 6.1.4)
|
||||
activejob (6.1.4.1)
|
||||
activesupport (= 6.1.4.1)
|
||||
globalid (>= 0.3.6)
|
||||
activemodel (6.1.4)
|
||||
activesupport (= 6.1.4)
|
||||
activerecord (6.1.4)
|
||||
activemodel (= 6.1.4)
|
||||
activesupport (= 6.1.4)
|
||||
activemodel (6.1.4.1)
|
||||
activesupport (= 6.1.4.1)
|
||||
activerecord (6.1.4.1)
|
||||
activemodel (= 6.1.4.1)
|
||||
activesupport (= 6.1.4.1)
|
||||
activerecord-import (1.2.0)
|
||||
activerecord (>= 3.2)
|
||||
activestorage (6.1.4)
|
||||
actionpack (= 6.1.4)
|
||||
activejob (= 6.1.4)
|
||||
activerecord (= 6.1.4)
|
||||
activesupport (= 6.1.4)
|
||||
activestorage (6.1.4.1)
|
||||
actionpack (= 6.1.4.1)
|
||||
activejob (= 6.1.4.1)
|
||||
activerecord (= 6.1.4.1)
|
||||
activesupport (= 6.1.4.1)
|
||||
marcel (~> 1.0.0)
|
||||
mini_mime (>= 1.1.0)
|
||||
activesupport (6.1.4)
|
||||
activesupport (6.1.4.1)
|
||||
concurrent-ruby (~> 1.0, >= 1.0.2)
|
||||
i18n (>= 1.6, < 2)
|
||||
minitest (>= 5.1)
|
||||
|
@ -74,23 +74,23 @@ GEM
|
|||
activerecord (>= 3.2, < 7.0)
|
||||
rake (>= 10.4, < 14.0)
|
||||
ast (2.4.2)
|
||||
autoprefixer-rails (10.3.1.0)
|
||||
autoprefixer-rails (10.3.3.0)
|
||||
execjs (~> 2)
|
||||
aws-eventstream (1.1.1)
|
||||
aws-partitions (1.484.0)
|
||||
aws-sdk-core (3.119.0)
|
||||
aws-eventstream (1.2.0)
|
||||
aws-partitions (1.503.0)
|
||||
aws-sdk-core (3.121.0)
|
||||
aws-eventstream (~> 1, >= 1.0.2)
|
||||
aws-partitions (~> 1, >= 1.239.0)
|
||||
aws-sigv4 (~> 1.1)
|
||||
jmespath (~> 1.0)
|
||||
aws-sdk-kms (1.46.0)
|
||||
aws-sdk-core (~> 3, >= 3.119.0)
|
||||
aws-sdk-kms (1.48.0)
|
||||
aws-sdk-core (~> 3, >= 3.120.0)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sdk-s3 (1.98.0)
|
||||
aws-sdk-core (~> 3, >= 3.119.0)
|
||||
aws-sdk-s3 (1.103.0)
|
||||
aws-sdk-core (~> 3, >= 3.120.0)
|
||||
aws-sdk-kms (~> 1)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sigv4 (1.2.4)
|
||||
aws-sigv4 (~> 1.4)
|
||||
aws-sigv4 (1.4.0)
|
||||
aws-eventstream (~> 1, >= 1.0.2)
|
||||
better_errors (2.9.1)
|
||||
coderay (>= 1.0.0)
|
||||
|
@ -106,7 +106,7 @@ GEM
|
|||
smart_properties
|
||||
binding_of_caller (1.0.0)
|
||||
debug_inspector (>= 0.0.1)
|
||||
bootsnap (1.7.7)
|
||||
bootsnap (1.9.1)
|
||||
msgpack (~> 1.0)
|
||||
bootstrap (4.5.3)
|
||||
autoprefixer-rails (>= 9.1.0)
|
||||
|
@ -121,7 +121,7 @@ GEM
|
|||
bzip2-ffi (1.1.0)
|
||||
ffi (~> 1.0)
|
||||
cancancan (3.3.0)
|
||||
canonical-rails (0.2.11)
|
||||
canonical-rails (0.2.12)
|
||||
rails (>= 4.1, < 6.2)
|
||||
capybara (3.35.3)
|
||||
addressable
|
||||
|
@ -155,23 +155,22 @@ GEM
|
|||
railties (>= 5)
|
||||
doorkeeper-i18n (5.2.2)
|
||||
doorkeeper (>= 5.2)
|
||||
dry-configurable (0.12.1)
|
||||
dry-configurable (0.13.0)
|
||||
concurrent-ruby (~> 1.0)
|
||||
dry-core (~> 0.5, >= 0.5.0)
|
||||
dry-container (0.8.0)
|
||||
dry-core (~> 0.6)
|
||||
dry-container (0.9.0)
|
||||
concurrent-ruby (~> 1.0)
|
||||
dry-configurable (~> 0.1, >= 0.1.3)
|
||||
dry-configurable (~> 0.13, >= 0.13.0)
|
||||
dry-core (0.7.1)
|
||||
concurrent-ruby (~> 1.0)
|
||||
dry-equalizer (0.3.0)
|
||||
dry-inflector (0.2.1)
|
||||
dry-initializer (3.0.4)
|
||||
dry-logic (1.2.0)
|
||||
concurrent-ruby (~> 1.0)
|
||||
dry-core (~> 0.5, >= 0.5)
|
||||
dry-schema (1.7.0)
|
||||
dry-schema (1.8.0)
|
||||
concurrent-ruby (~> 1.0)
|
||||
dry-configurable (~> 0.8, >= 0.8.3)
|
||||
dry-configurable (~> 0.13, >= 0.13.0)
|
||||
dry-core (~> 0.5, >= 0.5)
|
||||
dry-initializer (~> 3.0)
|
||||
dry-logic (~> 1.0)
|
||||
|
@ -182,13 +181,12 @@ GEM
|
|||
dry-core (~> 0.5, >= 0.5)
|
||||
dry-inflector (~> 0.1, >= 0.1.2)
|
||||
dry-logic (~> 1.0, >= 1.0.2)
|
||||
dry-validation (1.6.0)
|
||||
dry-validation (1.7.0)
|
||||
concurrent-ruby (~> 1.0)
|
||||
dry-container (~> 0.7, >= 0.7.1)
|
||||
dry-core (~> 0.4)
|
||||
dry-equalizer (~> 0.2)
|
||||
dry-core (~> 0.5, >= 0.5)
|
||||
dry-initializer (~> 3.0)
|
||||
dry-schema (~> 1.5, >= 1.5.2)
|
||||
dry-schema (~> 1.8, >= 1.8.0)
|
||||
erb_lint (0.1.1)
|
||||
activesupport
|
||||
better_html (~> 1.0.7)
|
||||
|
@ -205,7 +203,7 @@ GEM
|
|||
factory_bot_rails (6.2.0)
|
||||
factory_bot (~> 6.2.0)
|
||||
railties (>= 5.0.0)
|
||||
faraday (1.7.0)
|
||||
faraday (1.8.0)
|
||||
faraday-em_http (~> 1.0)
|
||||
faraday-em_synchrony (~> 1.0)
|
||||
faraday-excon (~> 1.1)
|
||||
|
@ -224,8 +222,8 @@ GEM
|
|||
faraday-net_http_persistent (1.2.0)
|
||||
faraday-patron (1.0.0)
|
||||
faraday-rack (1.0.0)
|
||||
ffi (1.15.3)
|
||||
ffi-libarchive (1.0.17)
|
||||
ffi (1.15.4)
|
||||
ffi-libarchive (1.1.3)
|
||||
ffi (~> 1.0)
|
||||
fspath (3.1.2)
|
||||
gd2-ffij (0.4.0)
|
||||
|
@ -254,7 +252,7 @@ GEM
|
|||
image_processing (1.12.1)
|
||||
mini_magick (>= 4.9.5, < 5)
|
||||
ruby-vips (>= 2.0.17, < 3)
|
||||
image_size (2.1.1)
|
||||
image_size (2.1.2)
|
||||
in_threads (1.5.4)
|
||||
jbuilder (2.11.2)
|
||||
activesupport (>= 5.0.0)
|
||||
|
@ -269,22 +267,22 @@ GEM
|
|||
kramdown (2.3.1)
|
||||
rexml
|
||||
libxml-ruby (3.2.1)
|
||||
listen (3.6.0)
|
||||
listen (3.7.0)
|
||||
rb-fsevent (~> 0.10, >= 0.10.3)
|
||||
rb-inotify (~> 0.9, >= 0.9.10)
|
||||
logstasher (2.1.5)
|
||||
activesupport (>= 5.2)
|
||||
request_store
|
||||
loofah (2.11.0)
|
||||
loofah (2.12.0)
|
||||
crass (~> 1.0.2)
|
||||
nokogiri (>= 1.5.9)
|
||||
mail (2.7.1)
|
||||
mini_mime (>= 0.1.1)
|
||||
marcel (1.0.1)
|
||||
marcel (1.0.2)
|
||||
maxminddb (0.1.22)
|
||||
method_source (1.0.0)
|
||||
mini_magick (4.11.0)
|
||||
mini_mime (1.1.0)
|
||||
mini_mime (1.1.1)
|
||||
mini_portile2 (2.6.1)
|
||||
minitest (5.14.4)
|
||||
msgpack (1.4.2)
|
||||
|
@ -292,7 +290,7 @@ GEM
|
|||
multi_xml (0.6.0)
|
||||
multipart-post (2.1.1)
|
||||
nio4r (2.5.8)
|
||||
nokogiri (1.12.2)
|
||||
nokogiri (1.12.4)
|
||||
mini_portile2 (~> 2.6.1)
|
||||
racc (~> 1.4)
|
||||
oauth (0.4.7)
|
||||
|
@ -340,14 +338,14 @@ GEM
|
|||
multi_json (~> 1.12)
|
||||
omniauth-oauth2 (~> 1.4)
|
||||
openstreetmap-deadlock_retry (1.3.1)
|
||||
parallel (1.20.1)
|
||||
parallel (1.21.0)
|
||||
parser (3.0.2.0)
|
||||
ast (~> 2.4.1)
|
||||
pg (1.2.3)
|
||||
popper_js (1.16.0)
|
||||
progress (3.6.0)
|
||||
public_suffix (4.0.6)
|
||||
puma (5.4.0)
|
||||
puma (5.5.0)
|
||||
nio4r (~> 2.0)
|
||||
quad_tile (1.0.1)
|
||||
r2 (0.2.7)
|
||||
|
@ -363,20 +361,20 @@ GEM
|
|||
rack-test (1.1.0)
|
||||
rack (>= 1.0, < 3)
|
||||
rack-uri_sanitizer (0.0.2)
|
||||
rails (6.1.4)
|
||||
actioncable (= 6.1.4)
|
||||
actionmailbox (= 6.1.4)
|
||||
actionmailer (= 6.1.4)
|
||||
actionpack (= 6.1.4)
|
||||
actiontext (= 6.1.4)
|
||||
actionview (= 6.1.4)
|
||||
activejob (= 6.1.4)
|
||||
activemodel (= 6.1.4)
|
||||
activerecord (= 6.1.4)
|
||||
activestorage (= 6.1.4)
|
||||
activesupport (= 6.1.4)
|
||||
rails (6.1.4.1)
|
||||
actioncable (= 6.1.4.1)
|
||||
actionmailbox (= 6.1.4.1)
|
||||
actionmailer (= 6.1.4.1)
|
||||
actionpack (= 6.1.4.1)
|
||||
actiontext (= 6.1.4.1)
|
||||
actionview (= 6.1.4.1)
|
||||
activejob (= 6.1.4.1)
|
||||
activemodel (= 6.1.4.1)
|
||||
activerecord (= 6.1.4.1)
|
||||
activestorage (= 6.1.4.1)
|
||||
activesupport (= 6.1.4.1)
|
||||
bundler (>= 1.15.0)
|
||||
railties (= 6.1.4)
|
||||
railties (= 6.1.4.1)
|
||||
sprockets-rails (>= 2.0.0)
|
||||
rails-controller-testing (1.0.5)
|
||||
actionpack (>= 5.0.1.rc1)
|
||||
|
@ -385,14 +383,14 @@ GEM
|
|||
rails-dom-testing (2.0.3)
|
||||
activesupport (>= 4.2.0)
|
||||
nokogiri (>= 1.6)
|
||||
rails-html-sanitizer (1.3.0)
|
||||
rails-html-sanitizer (1.4.2)
|
||||
loofah (~> 2.3)
|
||||
rails-i18n (6.0.0)
|
||||
i18n (>= 0.7, < 2)
|
||||
railties (>= 6.0.0, < 7)
|
||||
railties (6.1.4)
|
||||
actionpack (= 6.1.4)
|
||||
activesupport (= 6.1.4)
|
||||
railties (6.1.4.1)
|
||||
actionpack (= 6.1.4.1)
|
||||
activesupport (= 6.1.4.1)
|
||||
method_source
|
||||
rake (>= 0.13)
|
||||
thor (~> 1.0)
|
||||
|
@ -407,20 +405,20 @@ GEM
|
|||
rexml (3.2.5)
|
||||
rinku (2.0.6)
|
||||
rotp (6.2.0)
|
||||
rubocop (1.18.4)
|
||||
rubocop (1.21.0)
|
||||
parallel (~> 1.10)
|
||||
parser (>= 3.0.0.0)
|
||||
rainbow (>= 2.2.2, < 4.0)
|
||||
regexp_parser (>= 1.8, < 3.0)
|
||||
rexml
|
||||
rubocop-ast (>= 1.8.0, < 2.0)
|
||||
rubocop-ast (>= 1.9.1, < 2.0)
|
||||
ruby-progressbar (~> 1.7)
|
||||
unicode-display_width (>= 1.4.0, < 3.0)
|
||||
rubocop-ast (1.9.0)
|
||||
rubocop-ast (1.11.0)
|
||||
parser (>= 3.0.1.1)
|
||||
rubocop-minitest (0.15.0)
|
||||
rubocop (>= 0.90, < 2.0)
|
||||
rubocop-performance (1.11.4)
|
||||
rubocop-performance (1.11.5)
|
||||
rubocop (>= 1.7.0, < 2.0)
|
||||
rubocop-ast (>= 0.4.0)
|
||||
rubocop-rails (2.11.3)
|
||||
|
@ -431,7 +429,7 @@ GEM
|
|||
rubocop (~> 1.0)
|
||||
ruby-openid (2.9.2)
|
||||
ruby-progressbar (1.11.0)
|
||||
ruby-vips (2.1.2)
|
||||
ruby-vips (2.1.3)
|
||||
ffi (~> 1.12)
|
||||
ruby2_keywords (0.0.5)
|
||||
rubyzip (2.3.2)
|
||||
|
@ -446,7 +444,7 @@ GEM
|
|||
sprockets (> 3.0)
|
||||
sprockets-rails
|
||||
tilt
|
||||
secure_headers (6.3.2)
|
||||
secure_headers (6.3.3)
|
||||
selenium-webdriver (3.142.7)
|
||||
childprocess (>= 0.5, < 4.0)
|
||||
rubyzip (>= 1.2.2)
|
||||
|
@ -457,7 +455,7 @@ GEM
|
|||
simplecov-html (0.12.3)
|
||||
simplecov-lcov (0.8.0)
|
||||
simplecov_json_formatter (0.1.3)
|
||||
smart_properties (1.15.0)
|
||||
smart_properties (1.16.3)
|
||||
sprockets (4.0.2)
|
||||
concurrent-ruby (~> 1.0)
|
||||
rack (> 1, < 3)
|
||||
|
@ -467,13 +465,13 @@ GEM
|
|||
sprockets (>= 3.0.0)
|
||||
strong_migrations (0.7.8)
|
||||
activerecord (>= 5)
|
||||
terser (1.1.5)
|
||||
terser (1.1.6)
|
||||
execjs (>= 0.3.0, < 3)
|
||||
thor (1.1.0)
|
||||
tilt (2.0.10)
|
||||
tzinfo (2.0.4)
|
||||
concurrent-ruby (~> 1.0)
|
||||
unicode-display_width (2.0.0)
|
||||
unicode-display_width (2.1.0)
|
||||
validates_email_format_of (1.6.3)
|
||||
i18n
|
||||
vendorer (0.2.0)
|
||||
|
@ -554,7 +552,7 @@ DEPENDENCIES
|
|||
r2 (~> 0.2.7)
|
||||
rack-cors
|
||||
rack-uri_sanitizer
|
||||
rails (= 6.1.4)
|
||||
rails (= 6.1.4.1)
|
||||
rails-controller-testing
|
||||
rails-i18n (~> 6.0.0)
|
||||
rinku (>= 2.0.6)
|
||||
|
@ -562,7 +560,7 @@ DEPENDENCIES
|
|||
rubocop
|
||||
rubocop-minitest
|
||||
rubocop-performance
|
||||
rubocop-rails
|
||||
rubocop-rails (~> 2.11.3)
|
||||
rubocop-rake
|
||||
sanitize
|
||||
sassc-rails
|
||||
|
|
|
@ -42,6 +42,7 @@ class Ability
|
|||
can [:index, :new, :create, :show, :edit, :update, :destroy], :oauth2_application
|
||||
can [:index, :destroy], :oauth2_authorized_application
|
||||
can [:new, :show, :create, :destroy], :oauth2_authorization
|
||||
can [:show], :dashboard
|
||||
can [:new, :create, :edit, :update, :comment, :subscribe, :unsubscribe], DiaryEntry
|
||||
can [:make_friend, :remove_friend], Friendship
|
||||
can [:new, :create, :reply, :show, :inbox, :outbox, :mark, :destroy], Message
|
||||
|
|
|
@ -1096,47 +1096,11 @@ tr.turn:hover {
|
|||
|
||||
/* Rules for the user profile page */
|
||||
|
||||
#userinformation {
|
||||
min-height: 100px;
|
||||
.userinformation-inner {
|
||||
float: left;
|
||||
}
|
||||
.user-description {
|
||||
width: 100%;
|
||||
clear: both;
|
||||
}
|
||||
}
|
||||
|
||||
.admin-user-info small {
|
||||
margin-bottom: $lineheight/2;
|
||||
display: inline;
|
||||
margin-right: $lineheight;
|
||||
}
|
||||
|
||||
.contact-activity {
|
||||
margin-top: $lineheight;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.activity-details p {
|
||||
margin-left: 70px;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.users-show {
|
||||
// Silly exception; remove when user page is redesigned.
|
||||
.content-inner {
|
||||
max-width: none;
|
||||
}
|
||||
p#no_home_location {
|
||||
margin: $lineheight;
|
||||
}
|
||||
.user_thumbnail {
|
||||
margin-top: $lineheight/4;
|
||||
float: left;
|
||||
}
|
||||
}
|
||||
|
||||
/* Rules for the user map */
|
||||
|
||||
.content_map .leaflet-popup-content {
|
||||
|
@ -1466,6 +1430,12 @@ img.user_image {
|
|||
margin-right: $lineheight;
|
||||
}
|
||||
|
||||
img.user_image_no_margins {
|
||||
max-width: 100px;
|
||||
max-height: 100px;
|
||||
border: 1px solid $grey;
|
||||
}
|
||||
|
||||
img.user_thumbnail {
|
||||
max-width: 50px;
|
||||
max-height: 50px;
|
||||
|
@ -1473,6 +1443,12 @@ img.user_thumbnail {
|
|||
margin-right: $lineheight;
|
||||
}
|
||||
|
||||
img.user_thumbnail_no_margins {
|
||||
max-width: 50px;
|
||||
max-height: 50px;
|
||||
border: 1px solid $grey;
|
||||
}
|
||||
|
||||
img.user_thumbnail_tiny {
|
||||
width: auto;
|
||||
height: auto;
|
||||
|
@ -1489,28 +1465,28 @@ abbr.geo {
|
|||
|
||||
/* General styles for action lists / subnavs / pager navs */
|
||||
|
||||
ul.secondary-actions {
|
||||
font-style: normal;
|
||||
margin-bottom: 0;
|
||||
margin-left: 0;
|
||||
padding: 0;
|
||||
&.pager {
|
||||
display: inline-block;
|
||||
margin-right: 60px;
|
||||
}
|
||||
> li {
|
||||
display: block;
|
||||
float: left;
|
||||
list-style: none;
|
||||
border-left: 1px solid $grey;
|
||||
padding-left: $lineheight/2;
|
||||
margin-right: $lineheight/2;
|
||||
&:first-child {
|
||||
border-left: 0;
|
||||
padding-left: 0;
|
||||
|
||||
nav.secondary-actions {
|
||||
margin-left: -11px;
|
||||
overflow: hidden;
|
||||
> ul {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
flex-wrap: wrap;
|
||||
margin-bottom: 0;
|
||||
margin-left: -1px;
|
||||
padding: 0;
|
||||
&.pager {
|
||||
display: inline-block;
|
||||
margin-right: 60px;
|
||||
}
|
||||
&:last-child {
|
||||
margin-right: 0px;
|
||||
> li {
|
||||
flex-basis: auto;
|
||||
list-style: none;
|
||||
border-left: 1px solid $grey;
|
||||
padding-left: $lineheight/2;
|
||||
margin-right: $lineheight/2;
|
||||
margin-bottom: $lineheight/8;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1574,6 +1550,17 @@ div.secondary-actions {
|
|||
}
|
||||
}
|
||||
|
||||
/* Create a single-line dl */
|
||||
|
||||
dl.dl-inline {
|
||||
dt, dd {
|
||||
display: inline-block;
|
||||
}
|
||||
dd {
|
||||
margin-right: 1em;
|
||||
}
|
||||
}
|
||||
|
||||
/* Customise the background colour of striped tables */
|
||||
|
||||
.table-striped > tbody > tr:nth-child(2n+1) > td,
|
||||
|
|
|
@ -11,6 +11,8 @@ module Api
|
|||
before_action :require_public_data, :only => [:create, :update, :upload, :close, :subscribe, :unsubscribe]
|
||||
before_action :check_api_writable, :only => [:create, :update, :upload, :subscribe, :unsubscribe]
|
||||
before_action :check_api_readable, :except => [:create, :update, :upload, :download, :query, :subscribe, :unsubscribe]
|
||||
before_action :set_request_formats, :only => [:download]
|
||||
|
||||
around_action :api_call_handle_error
|
||||
around_action :api_call_timeout, :except => [:upload]
|
||||
|
||||
|
@ -122,35 +124,29 @@ module Api
|
|||
end
|
||||
end
|
||||
|
||||
# create changeset and user caches
|
||||
changeset_cache = {}
|
||||
user_display_name_cache = {}
|
||||
|
||||
# create an osmChange document for the output
|
||||
result = OSM::API.new.get_xml_doc
|
||||
result.root.name = "osmChange"
|
||||
|
||||
# generate an output element for each operation. note: we avoid looking
|
||||
# at the history because it is simpler - but it would be more correct to
|
||||
# check these assertions.
|
||||
@created = []
|
||||
@modified = []
|
||||
@deleted = []
|
||||
|
||||
elements.each do |elt|
|
||||
result.root <<
|
||||
if elt.version == 1
|
||||
# first version, so it must be newly-created.
|
||||
created = XML::Node.new "create"
|
||||
created << elt.to_xml_node(changeset_cache, user_display_name_cache)
|
||||
elsif elt.visible
|
||||
# must be a modify
|
||||
modified = XML::Node.new "modify"
|
||||
modified << elt.to_xml_node(changeset_cache, user_display_name_cache)
|
||||
else
|
||||
# if the element isn't visible then it must have been deleted
|
||||
deleted = XML::Node.new "delete"
|
||||
deleted << elt.to_xml_node(changeset_cache, user_display_name_cache)
|
||||
end
|
||||
if elt.version == 1
|
||||
# first version, so it must be newly-created.
|
||||
@created << elt
|
||||
elsif elt.visible
|
||||
# must be a modify
|
||||
@modified << elt
|
||||
else
|
||||
# if the element isn't visible then it must have been deleted
|
||||
@deleted << elt
|
||||
end
|
||||
end
|
||||
|
||||
render :xml => result.to_s
|
||||
respond_to do |format|
|
||||
format.xml
|
||||
end
|
||||
end
|
||||
|
||||
##
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
module Api
|
||||
class UsersController < ApiController
|
||||
before_action :disable_terms_redirect, :only => [:details]
|
||||
before_action :setup_user_auth, :only => [:show, :index]
|
||||
before_action :authorize, :only => [:details, :gpx_files]
|
||||
|
||||
authorize_resource
|
||||
|
|
14
app/controllers/dashboards_controller.rb
Normal file
14
app/controllers/dashboards_controller.rb
Normal file
|
@ -0,0 +1,14 @@
|
|||
class DashboardsController < ApplicationController
|
||||
layout "site"
|
||||
|
||||
before_action :authorize_web
|
||||
before_action :set_locale
|
||||
|
||||
authorize_resource :class => false
|
||||
|
||||
before_action :check_database_readable
|
||||
|
||||
def show
|
||||
@user = current_user
|
||||
end
|
||||
end
|
|
@ -277,15 +277,15 @@ class UsersController < ApplicationController
|
|||
name = auth_info[:info][:name]
|
||||
email = auth_info[:info][:email]
|
||||
|
||||
case provider
|
||||
when "openid"
|
||||
email_verified = uid.match(%r{https://www.google.com/accounts/o8/id?(.*)}) ||
|
||||
email_verified = case provider
|
||||
when "openid"
|
||||
uid.match(%r{https://www.google.com/accounts/o8/id?(.*)}) ||
|
||||
uid.match(%r{https://me.yahoo.com/(.*)})
|
||||
when "google", "facebook"
|
||||
email_verified = true
|
||||
else
|
||||
email_verified = false
|
||||
end
|
||||
when "google", "facebook"
|
||||
true
|
||||
else
|
||||
false
|
||||
end
|
||||
|
||||
if settings = session.delete(:new_user_settings)
|
||||
current_user.auth_provider = provider
|
||||
|
|
|
@ -11,7 +11,7 @@ module OpenGraphHelper
|
|||
}
|
||||
|
||||
safe_join(tags.map do |property, content|
|
||||
tag(:meta, :property => property, :content => content)
|
||||
tag.meta(:property => property, :content => content)
|
||||
end, "\n")
|
||||
end
|
||||
end
|
||||
|
|
|
@ -25,7 +25,7 @@ module UserRolesHelper
|
|||
end
|
||||
|
||||
if image
|
||||
svg_icon = tag("source", :srcset => image_path("#{image}.svg"), :type => "image/svg+xml")
|
||||
svg_icon = tag.source(:srcset => image_path("#{image}.svg"), :type => "image/svg+xml")
|
||||
png_icon = image_tag("#{image}.png", :srcset => image_path("#{image}.svg"), :size => "20x20", :border => 0, :alt => alt, :title => title)
|
||||
icon = tag.picture(svg_icon + png_icon)
|
||||
icon = link_to(icon, url, :method => :post, :confirm => confirm) if url
|
||||
|
|
|
@ -1,43 +0,0 @@
|
|||
module ObjectMetadata
|
||||
extend ActiveSupport::Concern
|
||||
|
||||
def add_metadata_to_xml_node(el, osm, changeset_cache, user_display_name_cache)
|
||||
el["changeset"] = osm.changeset_id.to_s
|
||||
el["redacted"] = osm.redaction.id.to_s if osm.redacted?
|
||||
el["timestamp"] = osm.timestamp.xmlschema
|
||||
el["version"] = osm.version.to_s
|
||||
el["visible"] = osm.visible.to_s
|
||||
|
||||
if changeset_cache.key?(osm.changeset_id)
|
||||
# use the cache if available
|
||||
else
|
||||
changeset_cache[osm.changeset_id] = osm.changeset.user_id
|
||||
end
|
||||
|
||||
user_id = changeset_cache[osm.changeset_id]
|
||||
|
||||
if user_display_name_cache.key?(user_id)
|
||||
# use the cache if available
|
||||
elsif osm.changeset.user.data_public?
|
||||
user_display_name_cache[user_id] = osm.changeset.user.display_name
|
||||
else
|
||||
user_display_name_cache[user_id] = nil
|
||||
end
|
||||
|
||||
unless user_display_name_cache[user_id].nil?
|
||||
el["user"] = user_display_name_cache[user_id]
|
||||
el["uid"] = user_id.to_s
|
||||
end
|
||||
end
|
||||
|
||||
def add_tags_to_xml_node(el, tags)
|
||||
tags.each do |tag|
|
||||
tag_el = XML::Node.new("tag")
|
||||
|
||||
tag_el["k"] = tag.k
|
||||
tag_el["v"] = tag.v
|
||||
|
||||
el << tag_el
|
||||
end
|
||||
end
|
||||
end
|
|
@ -27,7 +27,6 @@ class Node < ApplicationRecord
|
|||
include GeoRecord
|
||||
include ConsistencyValidations
|
||||
include NotRedactable
|
||||
include ObjectMetadata
|
||||
|
||||
self.table_name = "current_nodes"
|
||||
|
||||
|
|
|
@ -27,7 +27,6 @@
|
|||
class OldNode < ApplicationRecord
|
||||
include GeoRecord
|
||||
include ConsistencyValidations
|
||||
include ObjectMetadata
|
||||
|
||||
self.table_name = "nodes"
|
||||
self.primary_keys = "node_id", "version"
|
||||
|
@ -69,28 +68,6 @@ class OldNode < ApplicationRecord
|
|||
old_node
|
||||
end
|
||||
|
||||
def to_xml
|
||||
doc = OSM::API.new.get_xml_doc
|
||||
doc.root << to_xml_node
|
||||
doc
|
||||
end
|
||||
|
||||
def to_xml_node(changeset_cache = {}, user_display_name_cache = {})
|
||||
el = XML::Node.new "node"
|
||||
el["id"] = node_id.to_s
|
||||
|
||||
add_metadata_to_xml_node(el, self, changeset_cache, user_display_name_cache)
|
||||
|
||||
if visible?
|
||||
el["lat"] = lat.to_s
|
||||
el["lon"] = lon.to_s
|
||||
end
|
||||
|
||||
add_tags_to_xml_node(el, old_tags)
|
||||
|
||||
el
|
||||
end
|
||||
|
||||
def save_with_dependencies!
|
||||
save!
|
||||
|
||||
|
|
|
@ -22,7 +22,6 @@
|
|||
|
||||
class OldRelation < ApplicationRecord
|
||||
include ConsistencyValidations
|
||||
include ObjectMetadata
|
||||
|
||||
self.table_name = "relations"
|
||||
self.primary_keys = "relation_id", "version"
|
||||
|
@ -88,31 +87,6 @@ class OldRelation < ApplicationRecord
|
|||
|
||||
attr_writer :members, :tags
|
||||
|
||||
def to_xml
|
||||
doc = OSM::API.new.get_xml_doc
|
||||
doc.root << to_xml_node
|
||||
doc
|
||||
end
|
||||
|
||||
def to_xml_node(changeset_cache = {}, user_display_name_cache = {})
|
||||
el = XML::Node.new "relation"
|
||||
el["id"] = relation_id.to_s
|
||||
|
||||
add_metadata_to_xml_node(el, self, changeset_cache, user_display_name_cache)
|
||||
|
||||
old_members.each do |member|
|
||||
member_el = XML::Node.new "member"
|
||||
member_el["type"] = member.member_type.to_s.downcase
|
||||
member_el["ref"] = member.member_id.to_s # "id" is considered uncool here as it should be unique in XML
|
||||
member_el["role"] = member.member_role.to_s
|
||||
el << member_el
|
||||
end
|
||||
|
||||
add_tags_to_xml_node(el, old_tags)
|
||||
|
||||
el
|
||||
end
|
||||
|
||||
# Temporary method to match interface to relations
|
||||
def relation_members
|
||||
old_members
|
||||
|
|
|
@ -22,7 +22,6 @@
|
|||
|
||||
class OldWay < ApplicationRecord
|
||||
include ConsistencyValidations
|
||||
include ObjectMetadata
|
||||
|
||||
self.table_name = "ways"
|
||||
self.primary_keys = "way_id", "version"
|
||||
|
@ -86,23 +85,6 @@ class OldWay < ApplicationRecord
|
|||
|
||||
attr_writer :nds, :tags
|
||||
|
||||
def to_xml_node(changeset_cache = {}, user_display_name_cache = {})
|
||||
el = XML::Node.new "way"
|
||||
el["id"] = way_id.to_s
|
||||
|
||||
add_metadata_to_xml_node(el, self, changeset_cache, user_display_name_cache)
|
||||
|
||||
old_nodes.each do |nd| # FIXME: need to make sure they come back in the right order
|
||||
node_el = XML::Node.new "nd"
|
||||
node_el["ref"] = nd.node_id.to_s
|
||||
el << node_el
|
||||
end
|
||||
|
||||
add_tags_to_xml_node(el, old_tags)
|
||||
|
||||
el
|
||||
end
|
||||
|
||||
# Temporary method to match interface to ways
|
||||
def way_nodes
|
||||
old_nodes
|
||||
|
|
|
@ -22,7 +22,6 @@ class Relation < ApplicationRecord
|
|||
|
||||
include ConsistencyValidations
|
||||
include NotRedactable
|
||||
include ObjectMetadata
|
||||
|
||||
self.table_name = "current_relations"
|
||||
|
||||
|
|
|
@ -22,7 +22,6 @@ class Way < ApplicationRecord
|
|||
|
||||
include ConsistencyValidations
|
||||
include NotRedactable
|
||||
include ObjectMetadata
|
||||
|
||||
self.table_name = "current_ways"
|
||||
|
||||
|
|
19
app/views/api/changesets/download.xml.builder
Normal file
19
app/views/api/changesets/download.xml.builder
Normal file
|
@ -0,0 +1,19 @@
|
|||
xml.instruct! :xml, :version => "1.0"
|
||||
|
||||
xml.osmChange(OSM::API.new.xml_root_attributes) do |osm|
|
||||
@created.each do |elt|
|
||||
osm.create do |create|
|
||||
create << render(elt)
|
||||
end
|
||||
end
|
||||
@modified.each do |elt|
|
||||
osm.modify do |modify|
|
||||
modify << render(elt)
|
||||
end
|
||||
end
|
||||
@deleted.each do |elt|
|
||||
osm.delete do |delete|
|
||||
delete << render(elt)
|
||||
end
|
||||
end
|
||||
end
|
|
@ -4,7 +4,7 @@ json.user do
|
|||
json.account_created user.creation_time.xmlschema
|
||||
json.description user.description if user.description
|
||||
|
||||
if current_user && current_user == user
|
||||
if current_user && current_user == user && can?(:details, User)
|
||||
json.contributor_terms do
|
||||
json.agreed user.terms_agreed.present?
|
||||
json.pd user.consider_pd
|
||||
|
@ -45,7 +45,7 @@ json.user do
|
|||
end
|
||||
end
|
||||
|
||||
if current_user && current_user == user
|
||||
if current_user && current_user == user && can?(:details, User)
|
||||
if user.home_lat && user.home_lon
|
||||
json.home do
|
||||
json.lat user.home_lat
|
||||
|
|
|
@ -2,7 +2,7 @@ xml.tag! "user", :id => user.id,
|
|||
:display_name => user.display_name,
|
||||
:account_created => user.creation_time.xmlschema do
|
||||
xml.tag! "description", user.description if user.description
|
||||
if current_user && current_user == user
|
||||
if current_user && current_user == user && can?(:details, User)
|
||||
xml.tag! "contributor-terms", :agreed => user.terms_agreed.present?,
|
||||
:pd => user.consider_pd
|
||||
else
|
||||
|
@ -24,7 +24,7 @@ xml.tag! "user", :id => user.id,
|
|||
:active => user.blocks_created.active.size
|
||||
end
|
||||
end
|
||||
if current_user && current_user == user
|
||||
if current_user && current_user == user && can?(:details, User)
|
||||
if user.home_lat && user.home_lon
|
||||
xml.tag! "home", :lat => user.home_lat,
|
||||
:lon => user.home_lon,
|
||||
|
|
18
app/views/application/_settings_menu.html.erb
Normal file
18
app/views/application/_settings_menu.html.erb
Normal file
|
@ -0,0 +1,18 @@
|
|||
<% content_for :heading_class, "pb-0" %>
|
||||
|
||||
<% content_for :heading do %>
|
||||
<ul class="nav nav-tabs flex-column flex-sm-row">
|
||||
<li class="nav-item">
|
||||
<%= link_to t(".account_settings"), user_account_path(current_user), :class => "nav-link #{'active' if controller_name == 'users'}" %>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<%= link_to t(".oauth1_settings"), oauth_clients_path(current_user), :class => "nav-link #{'active' if controller_name == 'oauth_clients'}" %>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<%= link_to t(".oauth2_applications"), oauth_applications_path, :class => "nav-link #{'active' if controller_name == 'oauth2_applications'}" %>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<%= link_to t(".oauth2_authorizations"), oauth_authorized_applications_path, :class => "nav-link #{'active' if controller_name == 'oauth2_authorized_applications'}" %>
|
||||
</li>
|
||||
</ul>
|
||||
<% end %>
|
|
@ -4,21 +4,23 @@
|
|||
:icon => image_path(type == "friend" ? "marker-blue.png" : "marker-green.png"),
|
||||
:description => render(:partial => "popup", :object => contact, :locals => { :type => type })
|
||||
} %>
|
||||
<%= tag.div :class => "contact-activity clearfix", :data => { :user => user_data } do %>
|
||||
<%= user_thumbnail contact %>
|
||||
<div class='activity-details'>
|
||||
<p class='text-muted'>
|
||||
<%= tag.div :class => "contact-activity clearfix row", :data => { :user => user_data } do %>
|
||||
<div class="col-auto">
|
||||
<%= user_thumbnail contact, :class => "user_thumbnail_no_margins" %>
|
||||
</div>
|
||||
<div class="col">
|
||||
<p class='text-muted mb-0'>
|
||||
<%= link_to contact.display_name, user_path(contact) %>
|
||||
<% if @user.home_lon and @user.home_lat and contact.home_lon and contact.home_lat %>
|
||||
<% distance = @user.distance(contact) %>
|
||||
<% if distance < 1 %>
|
||||
(<%= t "users.show.m away", :count => (distance * 1000).round %>)
|
||||
(<%= t ".m away", :count => (distance * 1000).round %>)
|
||||
<% else %>
|
||||
(<%= t "users.show.km away", :count => distance.round %>)
|
||||
(<%= t ".km away", :count => distance.round %>)
|
||||
<% end %>
|
||||
<% end %>
|
||||
</p>
|
||||
<p>
|
||||
<p class="mb-0">
|
||||
<% changeset = contact.changesets.first %>
|
||||
<% if changeset %>
|
||||
<%= t("users.show.latest edit", :ago => time_ago_in_words(changeset.created_at, :scope => :"datetime.distance_in_words_ago")) %>
|
||||
|
@ -31,15 +33,17 @@
|
|||
<% end %>
|
||||
</p>
|
||||
|
||||
<ul class='secondary-actions clearfix text-muted'>
|
||||
<li><%= link_to t("users.show.send message"), new_message_path(contact) %></li>
|
||||
<li>
|
||||
<% if current_user.is_friends_with?(contact) %>
|
||||
<%= link_to t("users.show.remove as friend"), remove_friend_path(:display_name => contact.display_name, :referer => request.fullpath), :method => :post %>
|
||||
<% else %>
|
||||
<%= link_to t("users.show.add as friend"), make_friend_path(:display_name => contact.display_name, :referer => request.fullpath), :method => :post %>
|
||||
<% end %>
|
||||
</li>
|
||||
</ul>
|
||||
<nav class='secondary-actions'>
|
||||
<ul class='clearfix text-muted'>
|
||||
<li><%= link_to t("users.show.send message"), new_message_path(contact) %></li>
|
||||
<li>
|
||||
<% if current_user.is_friends_with?(contact) %>
|
||||
<%= link_to t("users.show.remove as friend"), remove_friend_path(:display_name => contact.display_name, :referer => request.fullpath), :method => :post %>
|
||||
<% else %>
|
||||
<%= link_to t("users.show.add as friend"), make_friend_path(:display_name => contact.display_name, :referer => request.fullpath), :method => :post %>
|
||||
<% end %>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
<% end %>
|
65
app/views/dashboards/show.html.erb
Normal file
65
app/views/dashboards/show.html.erb
Normal file
|
@ -0,0 +1,65 @@
|
|||
<% content_for :heading do %>
|
||||
<h1><%= t ".title" %></h1>
|
||||
<% end %>
|
||||
|
||||
<div class="row">
|
||||
<% if current_user and @user.id == current_user.id %>
|
||||
<div class="col-md order-md-last">
|
||||
<% if @user.home_lat.nil? or @user.home_lon.nil? %>
|
||||
<div id="map" class="content_map">
|
||||
<p class="m-3"><%= t(".no_home_location_html", :edit_profile_link => link_to(t(".edit_your_profile"), edit_profile_path)) %></p>
|
||||
</div>
|
||||
<% else %>
|
||||
<% content_for :head do %>
|
||||
<%= javascript_include_tag "user" %>
|
||||
<% end %>
|
||||
<% user_data = {
|
||||
:lon => current_user.home_lon,
|
||||
:lat => current_user.home_lat,
|
||||
:icon => image_path("marker-red.png"),
|
||||
:description => render(:partial => "popup", :object => current_user, :locals => { :type => "your location" })
|
||||
} %>
|
||||
<%= tag.div "", :id => "map", :class => "content_map", :data => { :user => user_data } %>
|
||||
<% end %>
|
||||
|
||||
<% friends = @user.friends %>
|
||||
<% nearby = @user.nearby - friends %>
|
||||
</div>
|
||||
|
||||
<div class="col-md">
|
||||
<h3><%= t ".my friends" %></h3>
|
||||
|
||||
<% if friends.empty? %>
|
||||
<%= t ".no friends" %>
|
||||
<% else %>
|
||||
<nav class='secondary-actions'>
|
||||
<ul class='clearfix'>
|
||||
<li><%= link_to t(".friends_changesets"), friend_changesets_path %></li>
|
||||
<li><%= link_to t(".friends_diaries"), friends_diary_entries_path %></li>
|
||||
</ul>
|
||||
</nav>
|
||||
<div id="friends-container">
|
||||
<%= render :partial => "contact", :collection => friends, :locals => { :type => "friend" } %>
|
||||
</div>
|
||||
<% end %>
|
||||
|
||||
<hr>
|
||||
|
||||
<h3><%= t ".nearby users" %></h3>
|
||||
|
||||
<% if nearby.empty? %>
|
||||
<%= t ".no nearby users" %>
|
||||
<% else %>
|
||||
<nav class='secondary-actions'>
|
||||
<ul class='clearfix'>
|
||||
<li><%= link_to t(".nearby_changesets"), nearby_changesets_path %></li>
|
||||
<li><%= link_to t(".nearby_diaries"), nearby_diary_entries_path %></li>
|
||||
</ul>
|
||||
</nav>
|
||||
<div id="nearbyusers">
|
||||
<%= render :partial => "contact", :collection => nearby, :locals => { :type => "nearby mapper" } %>
|
||||
</div>
|
||||
<% end %>
|
||||
</div>
|
||||
<% end %>
|
||||
</div>
|
|
@ -23,31 +23,33 @@
|
|||
<%= render :partial => "location", :object => diary_entry %>
|
||||
<% end %>
|
||||
|
||||
<ul class='secondary-actions clearfix'>
|
||||
<% if params[:action] == 'index' %>
|
||||
<li><%= link_to t(".comment_link"), diary_entry_path(diary_entry.user, diary_entry, :anchor => "newcomment") %></li>
|
||||
<li><%= link_to t(".reply_link"), new_message_path(diary_entry.user, :message => { :title => "Re: #{diary_entry.title}" }) %></li>
|
||||
<li><%= link_to t(".comment_count", :count => diary_entry.visible_comments.count), diary_entry_path(diary_entry.user, diary_entry, :anchor => "comments") %></li>
|
||||
<% end %>
|
||||
<nav class='secondary-actions'>
|
||||
<ul class='clearfix'>
|
||||
<% if params[:action] == 'index' %>
|
||||
<li><%= link_to t(".comment_link"), diary_entry_path(diary_entry.user, diary_entry, :anchor => "newcomment") %></li>
|
||||
<li><%= link_to t(".reply_link"), new_message_path(diary_entry.user, :message => { :title => "Re: #{diary_entry.title}" }) %></li>
|
||||
<li><%= link_to t(".comment_count", :count => diary_entry.visible_comments.count), diary_entry_path(diary_entry.user, diary_entry, :anchor => "comments") %></li>
|
||||
<% end %>
|
||||
|
||||
<% if current_user && current_user == diary_entry.user %>
|
||||
<li><%= link_to t(".edit_link"), :action => "edit", :display_name => diary_entry.user.display_name, :id => diary_entry.id %></li>
|
||||
<% end %>
|
||||
<% if current_user && current_user == diary_entry.user %>
|
||||
<li><%= link_to t(".edit_link"), :action => "edit", :display_name => diary_entry.user.display_name, :id => diary_entry.id %></li>
|
||||
<% end %>
|
||||
|
||||
<% if current_user and diary_entry.user != current_user %>
|
||||
<li>
|
||||
<%= report_link(t(".report"), diary_entry) %>
|
||||
</li>
|
||||
<% end %>
|
||||
<% if current_user and diary_entry.user != current_user %>
|
||||
<li>
|
||||
<%= report_link(t(".report"), diary_entry) %>
|
||||
</li>
|
||||
<% end %>
|
||||
|
||||
<% if can? :hide, DiaryEntry %>
|
||||
<li>
|
||||
<% if diary_entry.visible %>
|
||||
<%= link_to t(".hide_link"), hide_diary_entry_path(:display_name => diary_entry.user.display_name, :id => diary_entry.id), :method => :post, :data => { :confirm => t(".confirm") } %>
|
||||
<% else %>
|
||||
<%= link_to t(".unhide_link"), unhide_diary_entry_path(:display_name => diary_entry.user.display_name, :id => diary_entry.id), :method => :post, :data => { :confirm => t(".confirm") } %>
|
||||
<% end %>
|
||||
</li>
|
||||
<% end %>
|
||||
</ul>
|
||||
<% if can? :hide, DiaryEntry %>
|
||||
<li>
|
||||
<% if diary_entry.visible %>
|
||||
<%= link_to t(".hide_link"), hide_diary_entry_path(:display_name => diary_entry.user.display_name, :id => diary_entry.id), :method => :post, :data => { :confirm => t(".confirm") } %>
|
||||
<% else %>
|
||||
<%= link_to t(".unhide_link"), unhide_diary_entry_path(:display_name => diary_entry.user.display_name, :id => diary_entry.id), :method => :post, :data => { :confirm => t(".confirm") } %>
|
||||
<% end %>
|
||||
</li>
|
||||
<% end %>
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
|
|
|
@ -6,19 +6,21 @@
|
|||
<% end %>
|
||||
<h1><%= @title %></h1>
|
||||
|
||||
<ul class="secondary-actions clearfix">
|
||||
<% unless params[:friends] or params[:nearby] -%>
|
||||
<li><%= rss_link_to :action => "rss", :language => params[:language] %></li>
|
||||
<% end -%>
|
||||
<nav class="secondary-actions">
|
||||
<ul class="clearfix">
|
||||
<% unless params[:friends] or params[:nearby] -%>
|
||||
<li><%= rss_link_to :action => "rss", :language => params[:language] %></li>
|
||||
<% end -%>
|
||||
|
||||
<% if @user && @user == current_user || !@user && current_user %>
|
||||
<li><%= link_to image_tag("new.png", :class => "small_icon") + t(".new"), new_diary_entry_path, :title => t(".new_title") %></li>
|
||||
<% end %>
|
||||
<% if @user && @user == current_user || !@user && current_user %>
|
||||
<li><%= link_to image_tag("new.png", :class => "small_icon") + t(".new"), new_diary_entry_path, :title => t(".new_title") %></li>
|
||||
<% end %>
|
||||
|
||||
<% if !@user && current_user %>
|
||||
<li><%= link_to t(".my_diary"), :controller => "diary_entries", :action => "index", :display_name => current_user.display_name %></li>
|
||||
<% end %>
|
||||
</ul>
|
||||
<% if !@user && current_user %>
|
||||
<li><%= link_to t(".my_diary"), :controller => "diary_entries", :action => "index", :display_name => current_user.display_name %></li>
|
||||
<% end %>
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
<% end %>
|
||||
|
||||
|
|
|
@ -94,6 +94,7 @@
|
|||
</span>
|
||||
</a>
|
||||
<div class='dropdown-menu dropdown-menu-right'>
|
||||
<%= link_to t("users.show.my_dashboard"), dashboard_path, :class => "dropdown-item" %>
|
||||
<%= link_to inbox_messages_path, :class => "dropdown-item" do %>
|
||||
<%= t("users.show.my messages") %>
|
||||
<span class='count-number'><%= number_with_delimiter(current_user.new_messages.size) %></span>
|
||||
|
|
|
@ -45,6 +45,7 @@
|
|||
<p><%= t "layouts.intro_text" %></p>
|
||||
<p><%= t "layouts.hosting_partners_html",
|
||||
:ucl => link_to(t("layouts.partners_ucl"), "https://www.ucl.ac.uk"),
|
||||
:fastly => link_to(t("layouts.partners_fastly"), "https://www.fastly.com/"),
|
||||
:bytemark => link_to(t("layouts.partners_bytemark"), "https://www.bytemark.co.uk"),
|
||||
:partners => link_to(t("layouts.partners_partners"), "https://hardware.openstreetmap.org/thanks/") %>
|
||||
</p>
|
||||
|
|
|
@ -2,6 +2,8 @@
|
|||
<h1><%= t ".title" %></h1>
|
||||
<% end %>
|
||||
|
||||
<%= render :partial => "settings_menu" %>
|
||||
|
||||
<%= bootstrap_form_for @application, :url => oauth_application_path(@application), :html => { :method => :put } do |f| %>
|
||||
<%= render :partial => "form", :locals => { :f => f } %>
|
||||
<% end %>
|
||||
|
|
|
@ -2,6 +2,8 @@
|
|||
<h1><%= t ".title" %></h1>
|
||||
<% end %>
|
||||
|
||||
<%= render :partial => "settings_menu" %>
|
||||
|
||||
<% if @applications.length > 0 %>
|
||||
<table class="table table-borderless table-striped">
|
||||
<thead>
|
||||
|
|
|
@ -2,6 +2,8 @@
|
|||
<h1><%= t ".title" %></h1>
|
||||
<% end %>
|
||||
|
||||
<%= render :partial => "settings_menu" %>
|
||||
|
||||
<%= bootstrap_form_for @application, :url => { :action => :create } do |f| %>
|
||||
<%= render :partial => "form", :locals => { :f => f } %>
|
||||
<% end %>
|
||||
|
|
|
@ -2,6 +2,8 @@
|
|||
<h1><%= @application.name %></h1>
|
||||
<% end %>
|
||||
|
||||
<%= render :partial => "settings_menu" %>
|
||||
|
||||
<% secret = flash[:application_secret].presence || @application.plaintext_secret %>
|
||||
|
||||
<table class="table table-borderless">
|
||||
|
|
|
@ -2,6 +2,8 @@
|
|||
<h1><%= t ".title" %></h1>
|
||||
<% end %>
|
||||
|
||||
<%= render :partial => "settings_menu" %>
|
||||
|
||||
<% if @applications.length > 0 %>
|
||||
<table class="table table-borderless table-striped">
|
||||
<thead>
|
||||
|
|
|
@ -2,6 +2,8 @@
|
|||
<h1><%= t ".title" %></h1>
|
||||
<% end %>
|
||||
|
||||
<%= render :partial => "settings_menu" %>
|
||||
|
||||
<%= bootstrap_form_for @client_application, :url => oauth_client_path(@client_application.user.display_name, @client_application), :html => { :method => :put } do |f| %>
|
||||
<%= render :partial => "form", :locals => { :f => f } %>
|
||||
<% end %>
|
||||
|
|
|
@ -2,6 +2,8 @@
|
|||
<h1><%= t ".title" %></h1>
|
||||
<% end %>
|
||||
|
||||
<%= render :partial => "settings_menu" %>
|
||||
|
||||
<% unless @tokens.empty? %>
|
||||
<h3><%= t ".my_tokens" %></h3>
|
||||
<p><%= t ".list_tokens" %></p>
|
||||
|
|
|
@ -2,6 +2,8 @@
|
|||
<h1><%= t ".title" %></h1>
|
||||
<% end %>
|
||||
|
||||
<%= render :partial => "settings_menu" %>
|
||||
|
||||
<%= bootstrap_form_for @client_application, :url => { :action => :create } do |f| %>
|
||||
<%= render :partial => "form", :locals => { :f => f } %>
|
||||
<% end %>
|
||||
|
|
|
@ -2,6 +2,8 @@
|
|||
<h1><%= t(".title", :app_name => @client_application.name) %></h1>
|
||||
<% end %>
|
||||
|
||||
<%= render :partial => "settings_menu" %>
|
||||
|
||||
<dl class="row">
|
||||
<dt class="col-sm-3"><%= t ".key" %></dt>
|
||||
<dd class="col-sm-9"><%= @client_application.key %></dt>
|
||||
|
|
|
@ -40,6 +40,7 @@
|
|||
<h2><div class='icon partners'></div><%= t ".partners_title", :locale => @locale %></h2>
|
||||
<p><%= t "layouts.hosting_partners_html", :locale => @locale,
|
||||
:ucl => link_to(t("layouts.partners_ucl", :locale => @locale), "https://www.ucl.ac.uk"),
|
||||
:fastly => link_to(t("layouts.partners_fastly", :locale => @locale), "https://www.fastly.com/"),
|
||||
:bytemark => link_to(t("layouts.partners_bytemark", :locale => @locale), "https://www.bytemark.co.uk"),
|
||||
:partners => link_to(t("layouts.partners_partners", :locale => @locale), "https://hardware.openstreetmap.org/thanks/") %>
|
||||
</p>
|
||||
|
|
|
@ -44,14 +44,16 @@
|
|||
</td>
|
||||
<td>
|
||||
<% if trace.inserted? %>
|
||||
<ul class="secondary-actions">
|
||||
<li>
|
||||
<%= link_to t(".view_map"), { :controller => "site", :action => "index", :mlat => trace.latitude, :mlon => trace.longitude, :anchor => "map=14/#{trace.latitude}/#{trace.longitude}" } %>
|
||||
</li>
|
||||
<li>
|
||||
<%= link_to t(".edit_map"), { :controller => "site", :action => "edit", :gpx => trace.id } %>
|
||||
</li>
|
||||
</ul>
|
||||
<nav class="secondary-actions">
|
||||
<ul>
|
||||
<li>
|
||||
<%= link_to t(".view_map"), { :controller => "site", :action => "index", :mlat => trace.latitude, :mlon => trace.longitude, :anchor => "map=14/#{trace.latitude}/#{trace.longitude}" } %>
|
||||
</li>
|
||||
<li>
|
||||
<%= link_to t(".edit_map"), { :controller => "site", :action => "edit", :gpx => trace.id } %>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
<% end %>
|
||||
</td>
|
||||
</tr>
|
||||
|
|
|
@ -20,18 +20,20 @@
|
|||
<%= render :partial => "block", :locals => { :show_revoke_link => show_revoke_link, :show_user_name => show_user_name, :show_creator_name => show_creator_name }, :collection => @user_blocks %>
|
||||
</table>
|
||||
|
||||
<ul class='secondary-actions'>
|
||||
<% if @user_blocks_pages.current_page.number > 1 -%>
|
||||
<li><%= link_to t(".previous"), @params.merge(:page => @user_blocks_pages.current_page.number - 1) %></li>
|
||||
<% else -%>
|
||||
<li><%= t(".previous") %></li>
|
||||
<% end -%>
|
||||
<nav class='secondary-actions'>
|
||||
<ul>
|
||||
<% if @user_blocks_pages.current_page.number > 1 -%>
|
||||
<li><%= link_to t(".previous"), @params.merge(:page => @user_blocks_pages.current_page.number - 1) %></li>
|
||||
<% else -%>
|
||||
<li><%= t(".previous") %></li>
|
||||
<% end -%>
|
||||
|
||||
<li><%= t(".showing_page", :page => @user_blocks_pages.current_page.number) %></li>
|
||||
<li><%= t(".showing_page", :page => @user_blocks_pages.current_page.number) %></li>
|
||||
|
||||
<% if @user_blocks_pages.current_page.number < @user_blocks_pages.page_count -%>
|
||||
<li><%= link_to t(".next"), @params.merge(:page => @user_blocks_pages.current_page.number + 1) %></li>
|
||||
<% else -%>
|
||||
<li><%= t(".next") %></li>
|
||||
<% end -%>
|
||||
</ul>
|
||||
<% if @user_blocks_pages.current_page.number < @user_blocks_pages.page_count -%>
|
||||
<li><%= link_to t(".next"), @params.merge(:page => @user_blocks_pages.current_page.number + 1) %></li>
|
||||
<% else -%>
|
||||
<li><%= t(".next") %></li>
|
||||
<% end -%>
|
||||
</ul>
|
||||
</nav>
|
||||
|
|
|
@ -3,10 +3,12 @@
|
|||
<h1><%= t(".heading_html",
|
||||
:name => link_to(@user_block.user.display_name,
|
||||
user_path(@user_block.user))) %></h1>
|
||||
<ul class='secondary-actions clearfix'>
|
||||
<li><%= link_to t(".show"), @user_block %></li>
|
||||
<li><%= link_to t(".back"), user_blocks_path %></li>
|
||||
</ul>
|
||||
<nav class='secondary-actions'>
|
||||
<ul class='clearfix'>
|
||||
<li><%= link_to t(".show"), @user_block %></li>
|
||||
<li><%= link_to t(".back"), user_blocks_path %></li>
|
||||
</ul>
|
||||
</nav>
|
||||
<% end %>
|
||||
|
||||
<%= bootstrap_form_for(@user_block) do |f| %>
|
||||
|
|
|
@ -8,17 +8,19 @@
|
|||
user_path(@user_block.user)),
|
||||
:block_by => link_to(@user_block.creator.display_name,
|
||||
user_path(@user_block.creator))) %></h1>
|
||||
<ul class='secondary-actions clearfix'>
|
||||
<% if @user_block.ends_at > Time.now.getutc %>
|
||||
<% if current_user and current_user.id == @user_block.creator_id %>
|
||||
<li><%= link_to t(".edit"), edit_user_block_path(@user_block) %></li>
|
||||
<% end %>
|
||||
<% if can?(:revoke, UserBlock) %>
|
||||
<li><%= link_to t(".revoke"), revoke_user_block_path(@user_block) %></li>
|
||||
<% end %>
|
||||
<% end %>
|
||||
<li><%= link_to t(".back"), user_blocks_path %></li>
|
||||
</ul>
|
||||
<nav class='secondary-actions'>
|
||||
<ul class='clearfix'>
|
||||
<% if @user_block.ends_at > Time.now.getutc %>
|
||||
<% if current_user and current_user.id == @user_block.creator_id %>
|
||||
<li><%= link_to t(".edit"), edit_user_block_path(@user_block) %></li>
|
||||
<% end %>
|
||||
<% if can?(:revoke, UserBlock) %>
|
||||
<li><%= link_to t(".revoke"), revoke_user_block_path(@user_block) %></li>
|
||||
<% end %>
|
||||
<% end %>
|
||||
<li><%= link_to t(".back"), user_blocks_path %></li>
|
||||
</ul>
|
||||
</nav>
|
||||
<% end %>
|
||||
|
||||
<dl class="row">
|
||||
|
|
|
@ -4,14 +4,10 @@
|
|||
|
||||
<% content_for :heading do %>
|
||||
<h1><%= t ".my settings" %></h1>
|
||||
<ul class='secondary-actions clearfix'>
|
||||
<li><%= link_to t(".return to profile"), user_path(current_user) %></li>
|
||||
<li><%= link_to t(".oauth1 settings"), oauth_clients_path %></li>
|
||||
<li><%= link_to t(".oauth2 applications"), oauth_applications_path %></li>
|
||||
<li><%= link_to t(".oauth2 authorizations"), oauth_authorized_applications_path %></li>
|
||||
</ul>
|
||||
<% end %>
|
||||
|
||||
<%= render :partial => "settings_menu", :locals => { :selected => "account" } %>
|
||||
|
||||
<%= bootstrap_form_for current_user, :url => { :action => :account }, :method => :post, :html => { :multipart => true, :id => "accountForm", :autocomplete => :off } do |f| %>
|
||||
|
||||
<%= f.text_field :display_name %>
|
||||
|
|
|
@ -1,245 +1,202 @@
|
|||
<% content_for :heading do %>
|
||||
<div id='userinformation'>
|
||||
<%= user_image @user %>
|
||||
<div class='userinformation-inner'>
|
||||
<div id="userinformation" class="row">
|
||||
<div class="col-sm-auto">
|
||||
<%= user_image @user, :class => "user_image_no_margins" %>
|
||||
</div>
|
||||
<div class="col">
|
||||
<h1><%= @user.display_name %> <%= role_icons(@user) %></h1>
|
||||
<% if current_user and @user.id == current_user.id %>
|
||||
<!-- Displaying user's own profile page -->
|
||||
<ul class='secondary-actions clearfix'>
|
||||
<li>
|
||||
<%= link_to t(".my edits"), :controller => "changesets", :action => "index", :display_name => current_user.display_name %>
|
||||
<span class='count-number'><%= number_with_delimiter(current_user.changesets.size) %></span>
|
||||
</li>
|
||||
<li>
|
||||
<%= link_to t(".my notes"), user_notes_path(@user) %>
|
||||
</li>
|
||||
<li>
|
||||
<%= link_to t(".my traces"), :controller => "traces", :action => "mine" %>
|
||||
<span class='count-number'><%= number_with_delimiter(current_user.traces.size) %></span>
|
||||
</li>
|
||||
<li>
|
||||
<%= link_to t(".my diary"), :controller => "diary_entries", :action => "index", :display_name => current_user.display_name %>
|
||||
<span class='count-number'><%= number_with_delimiter(current_user.diary_entries.size) %></span>
|
||||
</li>
|
||||
<li>
|
||||
<%= link_to t(".my comments"), diary_comments_path(current_user) %>
|
||||
</li>
|
||||
<li>
|
||||
<%= link_to t(".my settings"), user_account_path(current_user) %>
|
||||
</li>
|
||||
|
||||
<% if current_user.blocks.exists? %>
|
||||
<nav class='secondary-actions'>
|
||||
<ul class='clearfix'>
|
||||
<li>
|
||||
<%= link_to t(".blocks on me"), user_blocks_on_path(current_user) %>
|
||||
<span class='count-number'><%= number_with_delimiter(current_user.blocks.active.size) %></span>
|
||||
<%= link_to t(".my edits"), :controller => "changesets", :action => "index", :display_name => current_user.display_name %>
|
||||
<span class='count-number'><%= number_with_delimiter(current_user.changesets.size) %></span>
|
||||
</li>
|
||||
<% end %>
|
||||
|
||||
<% if can?(:create, UserBlock) and current_user.blocks_created.exists? %>
|
||||
<li>
|
||||
<%= link_to t(".blocks by me"), user_blocks_by_path(current_user) %>
|
||||
<span class='count-number'><%= number_with_delimiter(current_user.blocks_created.active.size) %></span>
|
||||
<%= link_to t(".my notes"), user_notes_path(@user) %>
|
||||
</li>
|
||||
<li>
|
||||
<%= link_to t(".my traces"), :controller => "traces", :action => "mine" %>
|
||||
<span class='count-number'><%= number_with_delimiter(current_user.traces.size) %></span>
|
||||
</li>
|
||||
<li>
|
||||
<%= link_to t(".my diary"), :controller => "diary_entries", :action => "index", :display_name => current_user.display_name %>
|
||||
<span class='count-number'><%= number_with_delimiter(current_user.diary_entries.size) %></span>
|
||||
</li>
|
||||
<li>
|
||||
<%= link_to t(".my comments"), diary_comments_path(current_user) %>
|
||||
</li>
|
||||
<li>
|
||||
<%= link_to t(".my settings"), user_account_path(current_user) %>
|
||||
</li>
|
||||
<% end %>
|
||||
|
||||
</ul>
|
||||
<% if current_user.blocks.exists? %>
|
||||
<li>
|
||||
<%= link_to t(".blocks on me"), user_blocks_on_path(current_user) %>
|
||||
<span class='count-number'><%= number_with_delimiter(current_user.blocks.active.size) %></span>
|
||||
</li>
|
||||
<% end %>
|
||||
|
||||
<% if can?(:create, UserBlock) and current_user.blocks_created.exists? %>
|
||||
<li>
|
||||
<%= link_to t(".blocks by me"), user_blocks_by_path(current_user) %>
|
||||
<span class='count-number'><%= number_with_delimiter(current_user.blocks_created.active.size) %></span>
|
||||
</li>
|
||||
<% end %>
|
||||
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
<% else %>
|
||||
<!-- Displaying user profile page to the public -->
|
||||
<ul class='secondary-actions clearfix'>
|
||||
<nav class='secondary-actions'>
|
||||
<ul class='clearfix'>
|
||||
|
||||
<li>
|
||||
<%= link_to t(".edits"), :controller => "changesets", :action => "index", :display_name => @user.display_name %>
|
||||
<span class='count-number'><%= number_with_delimiter(@user.changesets.size) %></span>
|
||||
</li>
|
||||
<li>
|
||||
<%= link_to t(".notes"), user_notes_path(@user) %>
|
||||
</li>
|
||||
<li>
|
||||
<%= link_to t(".traces"), :controller => "traces", :action => "index", :display_name => @user.display_name %>
|
||||
<span class='count-number'><%= number_with_delimiter(@user.traces.size) %></span>
|
||||
</li>
|
||||
<li>
|
||||
<%= link_to t(".edits"), :controller => "changesets", :action => "index", :display_name => @user.display_name %>
|
||||
<span class='count-number'><%= number_with_delimiter(@user.changesets.size) %></span>
|
||||
</li>
|
||||
<li>
|
||||
<%= link_to t(".notes"), user_notes_path(@user) %>
|
||||
</li>
|
||||
<li>
|
||||
<%= link_to t(".traces"), :controller => "traces", :action => "index", :display_name => @user.display_name %>
|
||||
<span class='count-number'><%= number_with_delimiter(@user.traces.size) %></span>
|
||||
</li>
|
||||
|
||||
<!-- Displaying another user's profile page -->
|
||||
<!-- Displaying another user's profile page -->
|
||||
|
||||
<li>
|
||||
<%= link_to t(".send message"), new_message_path(@user) %>
|
||||
</li>
|
||||
<li>
|
||||
<%= link_to t(".diary"), :controller => "diary_entries", :action => "index", :display_name => @user.display_name %>
|
||||
<span class='count-number'><%= number_with_delimiter(@user.diary_entries.size) %></span>
|
||||
</li>
|
||||
<li>
|
||||
<%= link_to t(".comments"), diary_comments_path(@user) %>
|
||||
</li>
|
||||
<li>
|
||||
<% if current_user and current_user.is_friends_with?(@user) %>
|
||||
<%= link_to t(".remove as friend"), remove_friend_path(:display_name => @user.display_name), :method => :post %>
|
||||
<% elsif current_user %>
|
||||
<%= link_to t(".add as friend"), make_friend_path(:display_name => @user.display_name), :method => :post %>
|
||||
<% else %>
|
||||
<%= link_to t(".add as friend"), make_friend_path(:display_name => @user.display_name) %>
|
||||
<li>
|
||||
<%= link_to t(".send message"), new_message_path(@user) %>
|
||||
</li>
|
||||
<li>
|
||||
<%= link_to t(".diary"), :controller => "diary_entries", :action => "index", :display_name => @user.display_name %>
|
||||
<span class='count-number'><%= number_with_delimiter(@user.diary_entries.size) %></span>
|
||||
</li>
|
||||
<li>
|
||||
<%= link_to t(".comments"), diary_comments_path(@user) %>
|
||||
</li>
|
||||
<li>
|
||||
<% if current_user and current_user.is_friends_with?(@user) %>
|
||||
<%= link_to t(".remove as friend"), remove_friend_path(:display_name => @user.display_name), :method => :post %>
|
||||
<% elsif current_user %>
|
||||
<%= link_to t(".add as friend"), make_friend_path(:display_name => @user.display_name), :method => :post %>
|
||||
<% else %>
|
||||
<%= link_to t(".add as friend"), make_friend_path(:display_name => @user.display_name) %>
|
||||
<% end %>
|
||||
</li>
|
||||
|
||||
<% if @user.blocks.exists? %>
|
||||
<li>
|
||||
<%= link_to t(".block_history"), user_blocks_on_path(@user) %>
|
||||
<span class='count-number'><%= number_with_delimiter(@user.blocks.active.size) %></span>
|
||||
</li>
|
||||
<% end %>
|
||||
</li>
|
||||
|
||||
<% if @user.blocks.exists? %>
|
||||
<li>
|
||||
<%= link_to t(".block_history"), user_blocks_on_path(@user) %>
|
||||
<span class='count-number'><%= number_with_delimiter(@user.blocks.active.size) %></span>
|
||||
</li>
|
||||
<% end %>
|
||||
<% if @user.moderator? and @user.blocks_created.exists? %>
|
||||
<li>
|
||||
<%= link_to t(".moderator_history"), user_blocks_by_path(@user) %>
|
||||
<span class='count-number'><%= number_with_delimiter(@user.blocks_created.active.size) %></span>
|
||||
</li>
|
||||
<% end %>
|
||||
|
||||
<% if @user.moderator? and @user.blocks_created.exists? %>
|
||||
<li>
|
||||
<%= link_to t(".moderator_history"), user_blocks_by_path(@user) %>
|
||||
<span class='count-number'><%= number_with_delimiter(@user.blocks_created.active.size) %></span>
|
||||
</li>
|
||||
<% end %>
|
||||
|
||||
<% if can?(:create, UserBlock) %>
|
||||
<li>
|
||||
<%= link_to t(".create_block"), new_user_block_path(@user) %>
|
||||
</li>
|
||||
<% end %>
|
||||
|
||||
<% if current_user and @user.id != current_user.id %>
|
||||
<li>
|
||||
<%= report_link(t(".report"), @user) %>
|
||||
</li>
|
||||
<% end %>
|
||||
</ul>
|
||||
<% if can?(:create, UserBlock) %>
|
||||
<li>
|
||||
<%= link_to t(".create_block"), new_user_block_path(@user) %>
|
||||
</li>
|
||||
<% end %>
|
||||
|
||||
<% if current_user and @user.id != current_user.id %>
|
||||
<li>
|
||||
<%= report_link(t(".report"), @user) %>
|
||||
</li>
|
||||
<% end %>
|
||||
</ul>
|
||||
</nav>
|
||||
<% end %>
|
||||
|
||||
<div class='text-muted'>
|
||||
<small>
|
||||
<dl class="dl-inline">
|
||||
<dt><%= t ".mapper since" %></dt>
|
||||
<dd><%= l @user.creation_time.to_date, :format => :long %></dd>
|
||||
<% unless @user.terms_agreed %>
|
||||
<dt><%= t ".ct status" %></dt>
|
||||
<dd>
|
||||
<% if @user.terms_seen? -%>
|
||||
<%= t ".ct declined" %>
|
||||
<% else -%>
|
||||
<%= t ".ct undecided" %>
|
||||
<% end -%>
|
||||
</dd>
|
||||
<% end -%>
|
||||
</dl>
|
||||
</small>
|
||||
</div>
|
||||
|
||||
<% if can?(:set_status, User) || can?(:destroy, User) %>
|
||||
<nav class='secondary-actions'>
|
||||
<ul class='clearfix'>
|
||||
<% if can? :set_status, User %>
|
||||
<% if ["active", "confirmed"].include? @user.status %>
|
||||
<li>
|
||||
<%= link_to t(".deactivate_user"), set_status_user_path(:status => "pending", :display_name => @user.display_name), :method => :post, :data => { :confirm => t(".confirm") } %>
|
||||
</li>
|
||||
<% elsif ["pending"].include? @user.status %>
|
||||
<li>
|
||||
<%= link_to t(".activate_user"), set_status_user_path(:status => "active", :display_name => @user.display_name), :method => :post, :data => { :confirm => t(".confirm") } %>
|
||||
</li>
|
||||
<% end %>
|
||||
|
||||
<ul class='secondary-actions clearfix'>
|
||||
<% if can? :set_status, User %>
|
||||
<% if ["active", "confirmed"].include? @user.status %>
|
||||
<li>
|
||||
<%= link_to t(".deactivate_user"), set_status_user_path(:status => "pending", :display_name => @user.display_name), :method => :post, :data => { :confirm => t(".confirm") } %>
|
||||
</li>
|
||||
<% elsif ["pending"].include? @user.status %>
|
||||
<li>
|
||||
<%= link_to t(".activate_user"), set_status_user_path(:status => "active", :display_name => @user.display_name), :method => :post, :data => { :confirm => t(".confirm") } %>
|
||||
</li>
|
||||
<% end %>
|
||||
|
||||
<% if ["active", "suspended"].include? @user.status %>
|
||||
<li>
|
||||
<%= link_to t(".confirm_user"), set_status_user_path(:status => "confirmed", :display_name => @user.display_name), :method => :post, :data => { :confirm => t(".confirm") } %>
|
||||
</li>
|
||||
<% end %>
|
||||
<% if ["active", "suspended"].include? @user.status %>
|
||||
<li>
|
||||
<%= link_to t(".confirm_user"), set_status_user_path(:status => "confirmed", :display_name => @user.display_name), :method => :post, :data => { :confirm => t(".confirm") } %>
|
||||
</li>
|
||||
<% end %>
|
||||
<li>
|
||||
<% if ["pending", "active", "confirmed", "suspended"].include? @user.status %>
|
||||
<%= link_to t(".hide_user"), set_status_user_path(:status => "deleted", :display_name => @user.display_name), :method => :post, :data => { :confirm => t(".confirm") } %>
|
||||
<% else %>
|
||||
<%= link_to t(".unhide_user"), set_status_user_path(:status => "active", :display_name => @user.display_name), :method => :post, :data => { :confirm => t(".confirm") } %>
|
||||
<% else %>
|
||||
<%= link_to t(".unhide_user"), set_status_user_path(:status => "active", :display_name => @user.display_name), :method => :post, :data => { :confirm => t(".confirm") } %>
|
||||
<% end %>
|
||||
</li>
|
||||
<% end %>
|
||||
<% end %>
|
||||
<% if can? :destroy, User %>
|
||||
<li>
|
||||
<%= link_to t(".delete_user"), user_path(:display_name => @user.display_name), :method => :delete, :data => { :confirm => t(".confirm") } %>
|
||||
</li>
|
||||
<% end %>
|
||||
</ul>
|
||||
<% if can? :destroy, User %>
|
||||
<li>
|
||||
<%= link_to t(".delete_user"), user_path(:display_name => @user.display_name), :method => :delete, :data => { :confirm => t(".confirm") } %>
|
||||
</li>
|
||||
<% end %>
|
||||
</ul>
|
||||
</nav>
|
||||
<% end %>
|
||||
|
||||
<% end %>
|
||||
|
||||
<p class='text-muted'>
|
||||
<small>
|
||||
<%= t ".mapper since" %> <%= l @user.creation_time.to_date, :format => :long %>
|
||||
<% unless @user.terms_agreed %>
|
||||
|
|
||||
<%= t ".ct status" %>
|
||||
<% if @user.terms_seen? -%>
|
||||
<%= t ".ct declined" %>
|
||||
<% else -%>
|
||||
<%= t ".ct undecided" %>
|
||||
<% end -%>
|
||||
<% end -%>
|
||||
</small>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="user-description richtext text-break"><%= @user.description.to_html %></div>
|
||||
|
||||
<% if current_user and @user.id == current_user.id %>
|
||||
<div class="my-3">
|
||||
<%= link_to t(".edit_profile"), edit_profile_path, :class => "btn btn-outline-primary" %>
|
||||
</div>
|
||||
<% end %>
|
||||
|
||||
</div>
|
||||
|
||||
<% if current_user and current_user.administrator? -%>
|
||||
<div class='admin-user-info text-muted'>
|
||||
<small><b><%= t ".email address" %></b> <%= @user.email %></small>
|
||||
<% unless @user.creation_ip.nil? -%>
|
||||
<small><b><%= t ".created from" %></b> <%= @user.creation_ip %></small>
|
||||
<% if current_user and current_user.administrator? -%>
|
||||
<div class='text-muted'>
|
||||
<small>
|
||||
<dl class='dl-inline'>
|
||||
<dt><%= t ".email address" %></dt>
|
||||
<dd><%= @user.email %></dd>
|
||||
<% unless @user.creation_ip.nil? -%>
|
||||
<dt><%= t ".created from" %></dt>
|
||||
<dd><%= @user.creation_ip %></dd>
|
||||
<% end -%>
|
||||
<dt><%= t ".status" %></dt>
|
||||
<dd><%= @user.status.capitalize %></dd>
|
||||
<dt><%= t ".spam score" %></dt>
|
||||
<dd><%= @user.spam_score %></dd>
|
||||
</dl>
|
||||
</small>
|
||||
</div>
|
||||
<% end -%>
|
||||
<small><b><%= t ".status" %></b> <%= @user.status.capitalize %></small>
|
||||
<small><b><%= t ".spam score" %></b> <%= @user.spam_score %></small>
|
||||
</div>
|
||||
<% end -%>
|
||||
|
||||
</div>
|
||||
<% end %>
|
||||
|
||||
<div class="row">
|
||||
<% if current_user and @user.id == current_user.id %>
|
||||
<div class="col-md order-md-last">
|
||||
<% if @user.home_lat.nil? or @user.home_lon.nil? %>
|
||||
<div id="map" class="content_map">
|
||||
<p id="no_home_location"><%= t(".no_home_location_html", :edit_profile_link => link_to(t(".edit_your_profile"), edit_profile_path)) %></p>
|
||||
</div>
|
||||
<% else %>
|
||||
<% content_for :head do %>
|
||||
<%= javascript_include_tag "user" %>
|
||||
<% end %>
|
||||
<% user_data = {
|
||||
:lon => current_user.home_lon,
|
||||
:lat => current_user.home_lat,
|
||||
:icon => image_path("marker-red.png"),
|
||||
:description => render(:partial => "popup", :object => current_user, :locals => { :type => "your location" })
|
||||
} %>
|
||||
<%= tag.div "", :id => "map", :class => "content_map", :data => { :user => user_data } %>
|
||||
<% end %>
|
||||
<div class="richtext text-break clearfix"><%= @user.description.to_html %></div>
|
||||
|
||||
<% friends = @user.friends %>
|
||||
<% nearby = @user.nearby - friends %>
|
||||
</div>
|
||||
|
||||
<div class="col-md">
|
||||
<h3><%= t ".my friends" %></h3>
|
||||
|
||||
<% if friends.empty? %>
|
||||
<%= t ".no friends" %>
|
||||
<% else %>
|
||||
<ul class='secondary-actions clearfix'>
|
||||
<li><%= link_to t(".friends_changesets"), friend_changesets_path %></li>
|
||||
<li><%= link_to t(".friends_diaries"), friends_diary_entries_path %></li>
|
||||
</ul>
|
||||
<div id="friends-container">
|
||||
<%= render :partial => "contact", :collection => friends, :locals => { :type => "friend" } %>
|
||||
</div>
|
||||
<% end %>
|
||||
|
||||
<hr>
|
||||
|
||||
<h3><%= t ".nearby users" %></h3>
|
||||
|
||||
<% if nearby.empty? %>
|
||||
<%= t ".no nearby users" %>
|
||||
<% else %>
|
||||
<ul class='secondary-actions clearfix'>
|
||||
<li><%= link_to t(".nearby_changesets"), nearby_changesets_path %></li>
|
||||
<li><%= link_to t(".nearby_diaries"), nearby_diary_entries_path %></li>
|
||||
</ul>
|
||||
<div id="nearbyusers">
|
||||
<%= render :partial => "contact", :collection => nearby, :locals => { :type => "nearby mapper" } %>
|
||||
</div>
|
||||
<% end %>
|
||||
</div>
|
||||
<% end %>
|
||||
</div>
|
||||
<% if current_user and @user.id == current_user.id %>
|
||||
<div class="my-3">
|
||||
<%= link_to t(".edit_profile"), edit_profile_path, :class => "btn btn-outline-primary" %>
|
||||
</div>
|
||||
<% end %>
|
||||
|
|
|
@ -417,6 +417,19 @@ af:
|
|||
timeout:
|
||||
sorry: Jammer, die lys met opmerkings wat u versoek het, het te lank geneem
|
||||
om op te spoor.
|
||||
dashboards:
|
||||
contact:
|
||||
km away: '%{count}km vêr'
|
||||
m away: '%{count}m vêr'
|
||||
popup:
|
||||
your location: U ligging
|
||||
nearby mapper: Nabygeleë karteerder
|
||||
friend: Vriend
|
||||
show:
|
||||
no friends: U het nog geen vriende bygevoeg nie.
|
||||
nearby users: Ander nabygeleë gebruikers
|
||||
no nearby users: Daar is nog geen ander gebruikers wat sê dat hulle in die nabye
|
||||
omgewing karteer nie.
|
||||
diary_entries:
|
||||
new:
|
||||
title: Nuwe dagboekinskrywing
|
||||
|
@ -1877,12 +1890,6 @@ af:
|
|||
spam score: 'SPAM-telling:'
|
||||
description: Beskrywing
|
||||
user location: Ligging van gebruiker
|
||||
no friends: U het nog geen vriende bygevoeg nie.
|
||||
km away: '%{count}km vêr'
|
||||
m away: '%{count}m vêr'
|
||||
nearby users: Ander nabygeleë gebruikers
|
||||
no nearby users: Daar is nog geen ander gebruikers wat sê dat hulle in die nabye
|
||||
omgewing karteer nie.
|
||||
role:
|
||||
administrator: Hierdie gebruiker is 'n administrateur
|
||||
moderator: Hierdie gebruiker is 'n moderator
|
||||
|
@ -1902,10 +1909,6 @@ af:
|
|||
unhide_user: Wys hierdie gebruiker
|
||||
delete_user: Skrap dié Gebruiker
|
||||
confirm: Bevestig
|
||||
popup:
|
||||
your location: U ligging
|
||||
nearby mapper: Nabygeleë karteerder
|
||||
friend: Vriend
|
||||
account:
|
||||
title: Redigeer rekening
|
||||
my settings: My instellings
|
||||
|
@ -1919,7 +1922,6 @@ af:
|
|||
link text: wat is dié?
|
||||
save changes button: Stoor Wysigings
|
||||
make edits public button: Stel al my redigerings openbaar
|
||||
return to profile: Terug na profiel
|
||||
flash update success: Gebruikersbesonderhede suksesvol bygewerk.
|
||||
set_home:
|
||||
flash success: U tuisligging is suksesvol gestoor
|
||||
|
|
|
@ -177,6 +177,18 @@ aln:
|
|||
index:
|
||||
title: Changesets
|
||||
title_user: Changesets nga %{user}
|
||||
dashboards:
|
||||
contact:
|
||||
km away: '%{count}km larg'
|
||||
m away: '%{count}m larg'
|
||||
popup:
|
||||
your location: Vendi juej
|
||||
nearby mapper: Hartues i aftërt
|
||||
friend: Shoq
|
||||
show:
|
||||
no friends: Hala nuk ke shtue asni shoq.
|
||||
nearby users: Shfrytëzuesit e tjer që jan afër
|
||||
no nearby users: Hala nuk ka shfrytëzues që pranon hartimin e aftërt.
|
||||
diary_entries:
|
||||
new:
|
||||
title: Hyrja e re Ditari
|
||||
|
@ -1169,11 +1181,6 @@ aln:
|
|||
spam score: 'Piket e Badihavgjive:'
|
||||
description: Përshkrimi
|
||||
user location: Veni i shfrytëzuesit
|
||||
no friends: Hala nuk ke shtue asni shoq.
|
||||
km away: '%{count}km larg'
|
||||
m away: '%{count}m larg'
|
||||
nearby users: Shfrytëzuesit e tjer që jan afër
|
||||
no nearby users: Hala nuk ka shfrytëzues që pranon hartimin e aftërt.
|
||||
role:
|
||||
administrator: Ky shfrytëzues asht aministrator
|
||||
moderator: Ky shfrytëzues asht moderator
|
||||
|
@ -1193,10 +1200,6 @@ aln:
|
|||
unhide_user: shfaqe kët shfrytzues
|
||||
delete_user: fshije kët shfrytzues
|
||||
confirm: Konfirmo
|
||||
popup:
|
||||
your location: Vendi juej
|
||||
nearby mapper: Hartues i aftërt
|
||||
friend: Shoq
|
||||
account:
|
||||
title: Ndrysho akountin
|
||||
my settings: Preferencat e mia
|
||||
|
@ -1221,7 +1224,6 @@ aln:
|
|||
përdoruesit e rinj janë tashmë publik nga default. </ li> </ ul>
|
||||
save changes button: Ruaj Ndryshimet
|
||||
make edits public button: Boni gjith ndryshimet e mija publike
|
||||
return to profile: Kthehu te profili
|
||||
flash update success confirm needed: Informatat e shfyrtezuesit u ndryshan me
|
||||
sukses. Shihni emailin per konfirmim.
|
||||
flash update success: Informatat e shfrytëzuesit u ndryshuan me sukses.
|
||||
|
|
|
@ -433,6 +433,23 @@ ar:
|
|||
timeout:
|
||||
sorry: عذرا، لقد استغرقت قائمة تعليقات مجموعة التغييرات اللتي طلبتها وقتا طويلا
|
||||
لاستردادها.
|
||||
dashboards:
|
||||
contact:
|
||||
km away: على بعد %{count}كم
|
||||
m away: على بعد %{count}متر
|
||||
popup:
|
||||
your location: مكانك
|
||||
nearby mapper: مخطط بالجوار
|
||||
friend: صديق
|
||||
show:
|
||||
my friends: أصدقائي
|
||||
no friends: لم تقم بإضافة أي أصدقاء بعد.
|
||||
nearby users: مستخدمون آخرون قريبون
|
||||
no nearby users: لا يوجد بعد المزيد من المستخدمين أفصحوا عن تخطيطهم بالجوار.
|
||||
friends_changesets: مجموعات تغييرات الأصدقاء
|
||||
friends_diaries: مدخلات مدونات الأصدقاء
|
||||
nearby_changesets: حزم تغييرات المستخدمين القريبين
|
||||
nearby_diaries: إدخالات يوميات المستخدمين القريبين
|
||||
diary_entries:
|
||||
new:
|
||||
title: مدخلة يومية جديدة
|
||||
|
@ -2107,6 +2124,8 @@ ar:
|
|||
المزيد.
|
||||
need_to_see_terms: تم تعليق دخولك إلى API مؤقتا. الرجاء تسجيل الدخول في واجهة
|
||||
الويب لعرض شروط المساهمة. أنت لا تحتاج إلى موافق،ة لكن يجب عرضها.
|
||||
settings_menu:
|
||||
account_settings: إعدادات الحساب
|
||||
oauth:
|
||||
authorize:
|
||||
title: السماح بالوصول إلى حسابك
|
||||
|
@ -2267,12 +2286,6 @@ ar:
|
|||
spam score: 'نتيجة السخام:'
|
||||
description: الوصف
|
||||
user location: موقع المستخدم
|
||||
my friends: أصدقائي
|
||||
no friends: لم تقم بإضافة أي أصدقاء بعد.
|
||||
km away: على بعد %{count}كم
|
||||
m away: على بعد %{count}متر
|
||||
nearby users: مستخدمون آخرون قريبون
|
||||
no nearby users: لا يوجد بعد المزيد من المستخدمين أفصحوا عن تخطيطهم بالجوار.
|
||||
role:
|
||||
administrator: هذا المستخدم إداري
|
||||
moderator: هذا المستخدم مشرف
|
||||
|
@ -2293,15 +2306,7 @@ ar:
|
|||
unhide_user: أظهر هذا المستخدم
|
||||
delete_user: احذف هذا المستخدم
|
||||
confirm: تأكيد
|
||||
friends_changesets: مجموعات تغييرات الأصدقاء
|
||||
friends_diaries: مدخلات مدونات الأصدقاء
|
||||
nearby_changesets: حزم تغييرات المستخدمين القريبين
|
||||
nearby_diaries: إدخالات يوميات المستخدمين القريبين
|
||||
report: أبلغ عن هذا المستخدم
|
||||
popup:
|
||||
your location: مكانك
|
||||
nearby mapper: مخطط بالجوار
|
||||
friend: صديق
|
||||
account:
|
||||
title: عدل الحساب
|
||||
my settings: إعداداتي
|
||||
|
@ -2336,7 +2341,6 @@ ar:
|
|||
link text: ما هذا؟
|
||||
save changes button: حفظ التغييرات
|
||||
make edits public button: اجعل جميع تعديلاتي عامة
|
||||
return to profile: العودة إلى الملف الشخصي
|
||||
flash update success confirm needed: تم تحديث معلومات المستخدم بنجاح، تحقق من
|
||||
بريدك الإلكتروني لملاحظة تأكيد العنوان الإلكتروني الجديد.
|
||||
flash update success: تم تحديث معلومات المستخدم بنجاح.
|
||||
|
|
|
@ -150,6 +150,17 @@ arz:
|
|||
index:
|
||||
title: حزم التغييرات
|
||||
title_user: حزم التغييرات بواسطه %{user}
|
||||
dashboards:
|
||||
contact:
|
||||
km away: على بعد %{count}كم
|
||||
m away: على بعد %{count}متر
|
||||
popup:
|
||||
your location: موقعك
|
||||
nearby mapper: مخطط بالجوار
|
||||
show:
|
||||
no friends: لم تقم بإضافه أى أصدقاء بعد.
|
||||
nearby users: 'مستخدمين بالجوار:'
|
||||
no nearby users: لا يوجد بعد مستخدمين أفصحوا عن تخطيطهم بالجوار.
|
||||
diary_entries:
|
||||
new:
|
||||
title: مدخله يوميه جديدة
|
||||
|
@ -964,11 +975,6 @@ arz:
|
|||
created from: 'أُنشىء من:'
|
||||
description: الوصف
|
||||
user location: الموقع
|
||||
no friends: لم تقم بإضافه أى أصدقاء بعد.
|
||||
km away: على بعد %{count}كم
|
||||
m away: على بعد %{count}متر
|
||||
nearby users: 'مستخدمين بالجوار:'
|
||||
no nearby users: لا يوجد بعد مستخدمين أفصحوا عن تخطيطهم بالجوار.
|
||||
role:
|
||||
administrator: هذا المستخدم إداري
|
||||
moderator: هذا المستخدم وسيط
|
||||
|
@ -987,9 +993,6 @@ arz:
|
|||
unhide_user: أظهر هذا المستخدم
|
||||
delete_user: احذف هذا المستخدم
|
||||
confirm: أكّد
|
||||
popup:
|
||||
your location: موقعك
|
||||
nearby mapper: مخطط بالجوار
|
||||
account:
|
||||
title: عدّل الحساب
|
||||
my settings: إعداداتي
|
||||
|
@ -1010,7 +1013,6 @@ arz:
|
|||
لا يمكن عكسه وجميع المستخدمين الجديد علنيين بشكل افتراضى.</li></ul>
|
||||
save changes button: حفظ التغييرات
|
||||
make edits public button: اجعل جميع تعديلاتى عامة
|
||||
return to profile: العوده إلى الملف الشخصي
|
||||
flash update success confirm needed: تم تحديث معلومات المستخدم بنجاح. تحقق من
|
||||
بريدك الإلكترونى لمذكره تأكيد العنوان الإلكترونى الجديد.
|
||||
flash update success: تم تحديث معلومات المستخدم بنجاح.
|
||||
|
|
|
@ -378,6 +378,23 @@ ast:
|
|||
timeout:
|
||||
sorry: Llevó demasiao tiempu baxar la llista de comentarios del conxuntu de
|
||||
cambeos que pidisti.
|
||||
dashboards:
|
||||
contact:
|
||||
km away: a %{count}km de distancia
|
||||
m away: a %{count}m de distancia
|
||||
popup:
|
||||
your location: El to allugamientu
|
||||
nearby mapper: Mapeador próximu
|
||||
friend: Amigu
|
||||
show:
|
||||
my friends: Los mios amigos
|
||||
no friends: Entá nun amestasti dengún amigu.
|
||||
nearby users: Otros usuarios próximos
|
||||
no nearby users: Entá nun hai otros usuarios que tean mapeando cerca de ti.
|
||||
friends_changesets: conxuntos de cambios de los amigos
|
||||
friends_diaries: entraes de diariu de los amigos
|
||||
nearby_changesets: conxuntos de cambios d'usuarios cercanos
|
||||
nearby_diaries: entraes de diariu d'usuarios cercanos
|
||||
diary_entries:
|
||||
new:
|
||||
title: Nueva entrada del diariu
|
||||
|
@ -2194,12 +2211,6 @@ ast:
|
|||
spam score: 'Puntuación de corréu puxarra:'
|
||||
description: Descripción
|
||||
user location: Allugamientu del usuariu
|
||||
my friends: Los mios amigos
|
||||
no friends: Entá nun amestasti dengún amigu.
|
||||
km away: a %{count}km de distancia
|
||||
m away: a %{count}m de distancia
|
||||
nearby users: Otros usuarios próximos
|
||||
no nearby users: Entá nun hai otros usuarios que tean mapeando cerca de ti.
|
||||
role:
|
||||
administrator: Esti usuariu ye alministrador
|
||||
moderator: Esti usuariu ye moderador
|
||||
|
@ -2220,15 +2231,7 @@ ast:
|
|||
unhide_user: Amosar esti usuariu
|
||||
delete_user: Desaniciar esti usuariu
|
||||
confirm: Confirmar
|
||||
friends_changesets: conxuntos de cambios de los amigos
|
||||
friends_diaries: entraes de diariu de los amigos
|
||||
nearby_changesets: conxuntos de cambios d'usuarios cercanos
|
||||
nearby_diaries: entraes de diariu d'usuarios cercanos
|
||||
report: Informar d'esti usuariu
|
||||
popup:
|
||||
your location: El to allugamientu
|
||||
nearby mapper: Mapeador próximu
|
||||
friend: Amigu
|
||||
account:
|
||||
title: Editar la cuenta
|
||||
my settings: Les mios preferencies
|
||||
|
@ -2267,7 +2270,6 @@ ast:
|
|||
link text: ¿qué ye esto?
|
||||
save changes button: Guardar los cambios
|
||||
make edits public button: Facer públiques toles mios ediciones
|
||||
return to profile: Volver al perfil
|
||||
flash update success confirm needed: La información del usuariu s'anovó correutamente.
|
||||
Nel to corréu electrónicu alcontrarás una nota pa confirmar la to nueva direición
|
||||
de corréu.
|
||||
|
|
|
@ -254,6 +254,10 @@ az:
|
|||
timeout:
|
||||
sorry: Bağışlayın, tələb etdiyiniz dəyişikliklər dəstinin siyahısı, çıxarıla
|
||||
bilmək üçün cox böyükdür.
|
||||
dashboards:
|
||||
popup:
|
||||
your location: Yerləşdiyin yer
|
||||
friend: Dost
|
||||
diary_entries:
|
||||
new:
|
||||
title: Yeni Gündəlik Yazısı
|
||||
|
@ -1100,9 +1104,6 @@ az:
|
|||
hide_user: Bu istifadəçini gizlət
|
||||
delete_user: bu istifadəçini sil
|
||||
confirm: Təsdiq et
|
||||
popup:
|
||||
your location: Yerləşdiyin yer
|
||||
friend: Dost
|
||||
account:
|
||||
current email address: 'Hazırki E-Poçt Ünvanı:'
|
||||
openid:
|
||||
|
@ -1113,7 +1114,6 @@ az:
|
|||
contributor terms:
|
||||
link text: bu nədir?
|
||||
save changes button: Dəyişiklikləri yadda saxla
|
||||
return to profile: Profilə geri qayıt
|
||||
index:
|
||||
title: İstifadəçilər
|
||||
heading: İstifadəçilər
|
||||
|
|
|
@ -359,6 +359,23 @@ be-Tarask:
|
|||
timeout:
|
||||
sorry: Прабачце, сьпіс набораў зьменаў, які Вы запыталі, занадта вялікі для
|
||||
атрыманьня.
|
||||
dashboards:
|
||||
contact:
|
||||
km away: '%{count}км ад Вас'
|
||||
m away: '%{count}м ад Вас'
|
||||
popup:
|
||||
your location: Вашае месцазнаходжаньне
|
||||
nearby mapper: Бліжэйшы стваральнік мапаў
|
||||
friend: Сябар
|
||||
show:
|
||||
no friends: Пакуль што Вы не дадалі нікога ў сябры.
|
||||
nearby users: Іншыя бліжэйшыя карыстальнікі
|
||||
no nearby users: Няма іншых карыстальнікаў, якія прызнаюць, што займаюцца складаньнем
|
||||
мапы каля Вас.
|
||||
friends_changesets: наборы зьменаў сяброў
|
||||
friends_diaries: запісы сяброўскіх дзёньнікаў
|
||||
nearby_changesets: наборы зьменаў суседніх удзельнікаў
|
||||
nearby_diaries: запісы дзёньнікаў суседніх удзельнікаў
|
||||
diary_entries:
|
||||
new:
|
||||
title: Новы запіс у дзёньніку
|
||||
|
@ -1454,12 +1471,6 @@ be-Tarask:
|
|||
spam score: 'Адзнака спаму:'
|
||||
description: Апісаньне
|
||||
user location: Меcцазнаходжаньне ўдзельніка
|
||||
no friends: Пакуль што Вы не дадалі нікога ў сябры.
|
||||
km away: '%{count}км ад Вас'
|
||||
m away: '%{count}м ад Вас'
|
||||
nearby users: Іншыя бліжэйшыя карыстальнікі
|
||||
no nearby users: Няма іншых карыстальнікаў, якія прызнаюць, што займаюцца складаньнем
|
||||
мапы каля Вас.
|
||||
role:
|
||||
administrator: Гэты карыстальнік зьяўляецца адміністратарам
|
||||
moderator: Гэты карыстальнік зьяўляецца мадэратарам
|
||||
|
@ -1479,14 +1490,6 @@ be-Tarask:
|
|||
unhide_user: Паказаць гэтага ўдзельніка
|
||||
delete_user: Выдаліць гэтага ўдзельніка
|
||||
confirm: Пацьвердзіць
|
||||
friends_changesets: наборы зьменаў сяброў
|
||||
friends_diaries: запісы сяброўскіх дзёньнікаў
|
||||
nearby_changesets: наборы зьменаў суседніх удзельнікаў
|
||||
nearby_diaries: запісы дзёньнікаў суседніх удзельнікаў
|
||||
popup:
|
||||
your location: Вашае месцазнаходжаньне
|
||||
nearby mapper: Бліжэйшы стваральнік мапаў
|
||||
friend: Сябар
|
||||
account:
|
||||
title: Рэдагаваньне рахунку
|
||||
my settings: Мае налады
|
||||
|
@ -1523,7 +1526,6 @@ be-Tarask:
|
|||
link text: што гэта?
|
||||
save changes button: Захаваць зьмены
|
||||
make edits public button: Зрабіць усе мае рэдагаваньні публічнымі
|
||||
return to profile: Вярнуцца да рахунку
|
||||
flash update success confirm needed: Інфармацыя карыстальніка была абноўленая
|
||||
пасьпяхова. Праверце Вашую электронную пошту каб пацьвердзіць Ваш новы адрас
|
||||
электроннай пошты.
|
||||
|
|
|
@ -414,6 +414,24 @@ be:
|
|||
title_particular: 'Абмеркаванне пакета правак OpenStreetMap #%{changeset_id}'
|
||||
timeout:
|
||||
sorry: Прабачце, спіс пакетаў правак, што Вы запыталі, занадта вялікі для сцягвання.
|
||||
dashboards:
|
||||
contact:
|
||||
km away: '%{count} км ад вас'
|
||||
m away: '%{count} м ад Вас'
|
||||
popup:
|
||||
your location: Ваша месцазнаходжанне
|
||||
nearby mapper: Карыстальнік
|
||||
friend: Сябар
|
||||
show:
|
||||
my friends: Мае сябры
|
||||
no friends: Вы пакуль не дадалі нікога ў сябры.
|
||||
nearby users: 'Карыстальнікі паблізу:'
|
||||
no nearby users: Пакуль што няма карыстальнікаў, якія пазначылі сваё месцазнаходжанне
|
||||
паблізу.
|
||||
friends_changesets: наборы зменаў сяброў
|
||||
friends_diaries: запісы дзёньнікаў сяброў
|
||||
nearby_changesets: наборы зменаў удзельнікаў паблізу
|
||||
nearby_diaries: запісы дзённікаў карыстальнікаў паблізу
|
||||
diary_entries:
|
||||
new:
|
||||
title: Новы запіс дзённіку
|
||||
|
@ -2216,13 +2234,6 @@ be:
|
|||
spam score: 'Адзнака спаму:'
|
||||
description: Апісанне
|
||||
user location: Месцазнаходжанне
|
||||
my friends: Мае сябры
|
||||
no friends: Вы пакуль не дадалі нікога ў сябры.
|
||||
km away: '%{count} км ад вас'
|
||||
m away: '%{count} м ад Вас'
|
||||
nearby users: 'Карыстальнікі паблізу:'
|
||||
no nearby users: Пакуль што няма карыстальнікаў, якія пазначылі сваё месцазнаходжанне
|
||||
паблізу.
|
||||
role:
|
||||
administrator: Гэты карыстальнік з'яўляецца адміністратарам
|
||||
moderator: Гэты карыстальнік з'яўляецца мадэратарам
|
||||
|
@ -2243,15 +2254,7 @@ be:
|
|||
unhide_user: Паказаць гэтага карыстальніка
|
||||
delete_user: Выдаліць гэтага карыстальніка
|
||||
confirm: Пацвердзіць
|
||||
friends_changesets: наборы зменаў сяброў
|
||||
friends_diaries: запісы дзёньнікаў сяброў
|
||||
nearby_changesets: наборы зменаў удзельнікаў паблізу
|
||||
nearby_diaries: запісы дзённікаў карыстальнікаў паблізу
|
||||
report: Паскардзіцца на гэтага карыстальніка
|
||||
popup:
|
||||
your location: Ваша месцазнаходжанне
|
||||
nearby mapper: Карыстальнік
|
||||
friend: Сябар
|
||||
account:
|
||||
title: Правіць рахунак
|
||||
my settings: Мае настройкі
|
||||
|
@ -2289,7 +2292,6 @@ be:
|
|||
link text: што гэта?
|
||||
save changes button: Запісаць змены
|
||||
make edits public button: Зрабіць усе мае змены публічнымі
|
||||
return to profile: Вярнуцца да профілю
|
||||
flash update success confirm needed: Звесткі аб карыстальніку паспяхова абноўленыя.
|
||||
Праверце сваю эл.пошту, вам павінен прыйсці запыт на пацвярджэнне вашага новага
|
||||
адраса.
|
||||
|
|
|
@ -391,6 +391,19 @@ bg:
|
|||
timeout:
|
||||
sorry: Съжаляваме, но списъка с коментарит по промените който заявихте се зарежда
|
||||
твърде дълго.
|
||||
dashboards:
|
||||
contact:
|
||||
km away: '%{count} км от вас'
|
||||
m away: '%{count} м от вас'
|
||||
popup:
|
||||
your location: Моето местоположение
|
||||
nearby mapper: Картографи в близост
|
||||
friend: Приятел
|
||||
show:
|
||||
my friends: Моите приятели
|
||||
no friends: Все още нямате добавени приятели.
|
||||
nearby users: Други потребители в близост
|
||||
no nearby users: Все още няма други потребители, които картографират в близост.
|
||||
diary_entries:
|
||||
new:
|
||||
title: Нова публикация в дневника
|
||||
|
@ -1806,12 +1819,6 @@ bg:
|
|||
spam score: 'Оценка за спам:'
|
||||
description: Описание
|
||||
user location: Местоположение
|
||||
my friends: Моите приятели
|
||||
no friends: Все още нямате добавени приятели.
|
||||
km away: '%{count} км от вас'
|
||||
m away: '%{count} м от вас'
|
||||
nearby users: Други потребители в близост
|
||||
no nearby users: Все още няма други потребители, които картографират в близост.
|
||||
role:
|
||||
administrator: Този потребител е администратор
|
||||
moderator: Този потребител е модератор
|
||||
|
@ -1827,10 +1834,6 @@ bg:
|
|||
delete_user: Изтриване на този потребител
|
||||
confirm: Потвърдете
|
||||
report: Докладване на потребителя
|
||||
popup:
|
||||
your location: Моето местоположение
|
||||
nearby mapper: Картографи в близост
|
||||
friend: Приятел
|
||||
account:
|
||||
title: Промяна на профил
|
||||
my settings: Моите настройки
|
||||
|
@ -1853,7 +1856,6 @@ bg:
|
|||
link text: Какво е това?
|
||||
save changes button: Съхраняване на промените
|
||||
make edits public button: Всички мои промени да са публично достъпни
|
||||
return to profile: Обратно към профила
|
||||
flash update success confirm needed: Сведенията за потребителя са успешно обновени.
|
||||
Проверете електронната си поща за писмо, с което да потвърдите новия адрес.
|
||||
flash update success: Сведенията за потребителя са успешно обновени.
|
||||
|
|
|
@ -415,6 +415,14 @@ bn:
|
|||
index:
|
||||
title_all: ওপেনস্ট্রিটম্যাপ পরিবর্তনধার্যের আলোচনা
|
||||
title_particular: 'ওপেনস্ট্রিটম্যাপ পরিবর্তনধার্য #%{changeset_id} আলোচনা'
|
||||
dashboards:
|
||||
popup:
|
||||
your location: আপনার অবস্থান
|
||||
friend: বন্ধু
|
||||
show:
|
||||
my friends: আমার বন্ধুগণ
|
||||
no friends: আপনি বন্ধুতালিকায় কাউকে যুক্ত করেননি।
|
||||
nearby users: কাছাকাছি অন্য ব্যবহারকারী
|
||||
diary_entries:
|
||||
new:
|
||||
title: নতুন দিনলিপির ভুক্তি
|
||||
|
@ -1628,9 +1636,6 @@ bn:
|
|||
email address: 'ই-মেইল ঠিকানা:'
|
||||
description: বিবরণ
|
||||
user location: ব্যবহারকারীর অবস্থান
|
||||
my friends: আমার বন্ধুগণ
|
||||
no friends: আপনি বন্ধুতালিকায় কাউকে যুক্ত করেননি।
|
||||
nearby users: কাছাকাছি অন্য ব্যবহারকারী
|
||||
block_history: সক্রিয় বাধাসমূহ
|
||||
moderator_history: প্রদত্ত বাধাগুলি
|
||||
comments: মন্তব্যসমূহ
|
||||
|
@ -1642,9 +1647,6 @@ bn:
|
|||
unhide_user: এই ব্যবহাকারীকে দেখান
|
||||
delete_user: এই ব্যবহাকারীকে অপসারণ করুন
|
||||
confirm: নিশ্চিত করুন
|
||||
popup:
|
||||
your location: আপনার অবস্থান
|
||||
friend: বন্ধু
|
||||
account:
|
||||
title: অ্যাকাউন্ট সম্পাদনা করুন
|
||||
my settings: আমার সেটিংস
|
||||
|
@ -1663,7 +1665,6 @@ bn:
|
|||
অধীনে প্রকাশ করছেন।
|
||||
link text: এটি কী?
|
||||
save changes button: পরিবর্তন সংরক্ষণ
|
||||
return to profile: প্রোফাইলে ফিরুন
|
||||
go_public:
|
||||
flash success: আপনার সকল সম্পাদনা এখন উন্মুক্ত, এবং এখন আপনার সম্পাদনের অনুমতি
|
||||
রয়েছে।
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
# Messages for Breton (brezhoneg)
|
||||
# Exported from translatewiki.net
|
||||
# Export driver: phpyaml
|
||||
# Author: Adriendelucca
|
||||
# Author: Dishual
|
||||
# Author: Fohanno
|
||||
# Author: Fulup
|
||||
|
@ -17,6 +18,8 @@ br:
|
|||
formats:
|
||||
friendly: '%e %B %Y da %H:%M'
|
||||
helpers:
|
||||
file:
|
||||
prompt: Dibab ur restr
|
||||
submit:
|
||||
diary_comment:
|
||||
create: Enrollañ
|
||||
|
@ -30,6 +33,9 @@ br:
|
|||
client_application:
|
||||
create: Marilhañ
|
||||
update: Hizivaat
|
||||
doorkeeper_application:
|
||||
create: En em enskrivañ
|
||||
update: Hizivaat
|
||||
redaction:
|
||||
create: Krouiñ ar skridaozadenn
|
||||
update: Enrollañ ar skridaozadenn
|
||||
|
@ -82,8 +88,13 @@ br:
|
|||
way_tag: Tikedenn an hent
|
||||
attributes:
|
||||
client_application:
|
||||
name: Anv (rediet)
|
||||
callback_url: URL gervel en-dro
|
||||
support_url: URL skoazell
|
||||
allow_write_api: kemmañ ar gartenn
|
||||
allow_read_gpx: lenn o roudoù GPS prevez
|
||||
allow_write_gpx: kas roudoù GPS
|
||||
allow_write_notes: kemmañ an notennoù
|
||||
diary_comment:
|
||||
body: Korf
|
||||
diary_entry:
|
||||
|
@ -92,40 +103,49 @@ br:
|
|||
latitude: Lec'hed
|
||||
longitude: Hedred
|
||||
language: Yezh
|
||||
doorkeeper/application:
|
||||
name: Anv
|
||||
scopes: Aotreoù
|
||||
friend:
|
||||
user: Implijer
|
||||
friend: Mignon
|
||||
trace:
|
||||
user: Implijer
|
||||
visible: Gwelus
|
||||
name: Anv
|
||||
name: Anv ar restr
|
||||
size: Ment
|
||||
latitude: Lec'hed
|
||||
longitude: Hedred
|
||||
public: Foran
|
||||
description: Deskrivadur
|
||||
gpx_file: 'Kas ar restr GPX :'
|
||||
visibility: 'Gwelusted :'
|
||||
tagstring: 'Tikedennoù :'
|
||||
gpx_file: 'Enporzhiañ ur restr GPX :'
|
||||
visibility: Gwelusted
|
||||
tagstring: Tikedennoù
|
||||
message:
|
||||
sender: Kaser
|
||||
title: Titl
|
||||
body: Korf
|
||||
recipient: Degemerer
|
||||
redaction:
|
||||
title: Titl
|
||||
description: Deskrivadur
|
||||
report:
|
||||
category: 'Dibab un abeg evit ho tanevell :'
|
||||
details: Roit muioc'h a vunudoù diwar-benn ar gudenn (dre ret)
|
||||
user:
|
||||
auth_uid: UID an dilesadur
|
||||
email: Postel
|
||||
new_email: 'Chomlec''h postel nevez :'
|
||||
email_confirmation: Kadarnaat ar postel
|
||||
new_email: Chomlec'h postel nevez
|
||||
active: Oberiant
|
||||
display_name: Anv diskouezet
|
||||
description: Deskrivadur
|
||||
home_lat: 'Ledred :'
|
||||
home_lon: 'Hedred :'
|
||||
languages: Yezhoù
|
||||
description: Deskrivadur ar profil
|
||||
home_lat: Ledred
|
||||
home_lon: Hedred
|
||||
languages: 'Yezhoù gwellañ karet :'
|
||||
preferred_editor: 'Aozer karetañ :'
|
||||
pass_crypt: Ger-tremen
|
||||
pass_crypt_confirmation: Kadarnaat ar ger-tremen
|
||||
help:
|
||||
trace:
|
||||
tagstring: bevennet gant virgulennoù
|
||||
|
@ -137,11 +157,17 @@ br:
|
|||
datetime:
|
||||
distance_in_words_ago:
|
||||
about_x_hours:
|
||||
one: war-dro un eurvezh 'zo 'zo
|
||||
one: war-dro un eurvezh 'zo
|
||||
two: war-dro 2 eurvezh 'zo
|
||||
few: war-dro %{count} eurvezh 'zo
|
||||
many: war-dro %{count} eurvezh 'zo
|
||||
other: war-dro %{count} eurvezh 'zo
|
||||
about_x_months:
|
||||
one: war-dro miz 'zo 'zo
|
||||
other: war-dro %{count} miz 'zo
|
||||
one: war-dro ur miz 'zo.
|
||||
two: war-dro 2 viz 'zo.
|
||||
few: war-dro %{count} miz 'zo.
|
||||
many: war-dro %{count} miz 'zo.
|
||||
other: war-dro %{count} miz 'zo.
|
||||
about_x_years:
|
||||
one: bloaz zo bennak
|
||||
two: war-dro %{count} vloaz zo
|
||||
|
@ -162,7 +188,7 @@ br:
|
|||
many: nebeutoc'h eget %{count} eilenn zo
|
||||
other: nebeutoc'h eget %{count} eilenn zo
|
||||
less_than_x_minutes:
|
||||
one: nebeutoc'h eget un nunutenn zo
|
||||
one: nebeutoc'h eget ur vunutenn zo
|
||||
two: nebeutoc'h eget %{count} vunutenn zo
|
||||
few: nebeutoc'h eget %{count} munutenn zo
|
||||
many: nebeutoc'h eget %{count} munutenn zo
|
||||
|
@ -210,7 +236,7 @@ br:
|
|||
description: iD (aozer e-barzh ar merdeer)
|
||||
remote:
|
||||
name: Aozer diavaez
|
||||
description: Aozer diavaez (JOSM pe Merkaartor)
|
||||
description: Aozer diavaez (JOSM, Potlatch, Merkaartor)
|
||||
auth:
|
||||
providers:
|
||||
none: Hini ebet
|
||||
|
@ -270,7 +296,7 @@ br:
|
|||
way_paginated: Hentoù (%{x}-%{y} diwar %{count})
|
||||
relation: Darempredoù (%{count})
|
||||
relation_paginated: Darempredoù (%{x}-%{y} diwar %{count})
|
||||
comment: Evezhiadennoù(%{count})
|
||||
comment: Evezhiadennoù (%{count})
|
||||
hidden_commented_by_html: Evezhiadenn kuzhet gant %{user} <abbr title='%{exact_time}'>%{when}</abbr>
|
||||
commented_by_html: Evezhiadenn gant %{user} <abbr title='%{exact_time}'>%{when}</abbr>
|
||||
changesetxml: Hollad cheñchamantoù XML
|
||||
|
@ -296,6 +322,12 @@ br:
|
|||
title_html: 'Darempred: %{name}'
|
||||
history_title_html: 'Istor an darempred: %{name}'
|
||||
members: Izili
|
||||
members_count:
|
||||
one: 1 ezel
|
||||
two: 2 izili
|
||||
few: '%{count} izili'
|
||||
many: '%{count} izili'
|
||||
other: '%{count} izili'
|
||||
relation_member:
|
||||
entry_role_html: '%{type} %{name} evel %{role}'
|
||||
type:
|
||||
|
@ -306,6 +338,7 @@ br:
|
|||
entry_html: Darempred %{relation_name}
|
||||
entry_role_html: Darempred %{relation_name} (evel %{relation_role})
|
||||
not_found:
|
||||
title: N'eo ket bet kavet
|
||||
sorry: 'Ho tigarez, n''heller ket kavout %{type} #%{id}.'
|
||||
type:
|
||||
node: skoulm
|
||||
|
@ -417,12 +450,30 @@ br:
|
|||
title_particular: 'Kaozeadenn hollad cheñchamantoù #%{changeset_id} OpenStreetMap'
|
||||
timeout:
|
||||
sorry: Ho tigarez, re hir eo adtapout ar roll evezhiadennoù ho peus goulennet.
|
||||
dashboards:
|
||||
contact:
|
||||
km away: war-hed %{count} km
|
||||
m away: war-hed %{count} m
|
||||
popup:
|
||||
your location: Ho lec'hiadur
|
||||
nearby mapper: Kartennour en ardremez
|
||||
friend: Mignon
|
||||
show:
|
||||
edit_your_profile: Aozañ ho profil
|
||||
my friends: Ma mignoned
|
||||
no friends: N'hoc'h eus ouzhpennet mignon ebet c'hoazh.
|
||||
nearby users: 'Implijerien all tost deoc''h :'
|
||||
no nearby users: N'eus implijer ebet all en ardremez c'hoazh.
|
||||
friends_changesets: Strolladoù kemmoù graet gant mignoned
|
||||
friends_diaries: Enmonedoù deizlevr ar vignoned
|
||||
nearby_changesets: Strolladoù kemmoù an implijer tro-war-dro
|
||||
nearby_diaries: Enmonedoù deizlevr an implijerien tro-war-dro
|
||||
diary_entries:
|
||||
new:
|
||||
title: Enmoned nevez en deizlevr
|
||||
form:
|
||||
location: 'Lec''hiadur:'
|
||||
use_map_link: implijout ar gartenn
|
||||
location: Lec'hiadur
|
||||
use_map_link: Implijout ar gartenn
|
||||
index:
|
||||
title: Deizlevrioù an implijerien
|
||||
title_friends: Deizlevrioù ar vignoned
|
||||
|
@ -431,6 +482,7 @@ br:
|
|||
in_language_title: Enmontoù en deizlevr e %{language}
|
||||
new: Enmont nevez en deizlevr
|
||||
new_title: Ouzhpennañ un enmont nevez d'ho teizlevr
|
||||
my_diary: Ma deizlevr
|
||||
no_entries: Enmont ebet en ho teizlevr
|
||||
recent_entries: 'Enmontoù nevez en deizlevr:'
|
||||
older_entries: Enmont koshañ
|
||||
|
@ -451,9 +503,9 @@ br:
|
|||
%{id}. Gwiriit hag-eñ eo skrivet mat, pe marteze hoc'h eus kliket war ul liamm
|
||||
fall.
|
||||
diary_entry:
|
||||
posted_by_html: Postet gant %{link_user} da %{created} e %{language_link}
|
||||
posted_by_html: Postet gant %{link_user} da %{created} e %{language_link}.
|
||||
comment_link: Skrivañ un evezhiadenn d'an enmont-mañ
|
||||
reply_link: Respont d'an enmont-mañ
|
||||
reply_link: Kas ur gemennadenn d'an aozer
|
||||
comment_count:
|
||||
one: Un addispleg
|
||||
zero: Evezhiadenn ebet
|
||||
|
@ -487,6 +539,7 @@ br:
|
|||
comments:
|
||||
has_commented_on: ↓%{display_name} en deus skrivet evezhiadennoù diwar-benn
|
||||
ar pennadoù deizlevr-mañ
|
||||
no_comments: Kemennadenn deizlevr ebet
|
||||
post: Embann
|
||||
when: Pegoulz
|
||||
comment: Evezhiadenn
|
||||
|
@ -526,6 +579,7 @@ br:
|
|||
pylon: Peul
|
||||
station: Arsav logell-fun
|
||||
t-bar: Sav barrennoù e T
|
||||
"yes": Aerhent
|
||||
aeroway:
|
||||
aerodrome: Nijva
|
||||
airstrip: Leurenn bradañ
|
||||
|
@ -536,6 +590,7 @@ br:
|
|||
holding_position: Post gortoz
|
||||
parking_position: Plas parkva
|
||||
runway: Hent
|
||||
taxilane: Forzh taksi
|
||||
taxiway: Hent-taksioù aerborzh
|
||||
terminal: Terminal
|
||||
amenity:
|
||||
|
@ -549,6 +604,7 @@ br:
|
|||
bicycle_parking: Parklec'h beloioù
|
||||
bicycle_rental: Lec'h feurmiñ beloioù
|
||||
biergarten: Braeerezh en aer vras
|
||||
blood_bank: Bank gwad
|
||||
boat_rental: Lec'h feurmiñ bagoù
|
||||
brothel: Bordell
|
||||
bureau_de_change: Burev eskemm
|
||||
|
@ -584,16 +640,20 @@ br:
|
|||
hospital: Ospital
|
||||
hunting_stand: Stand tennañ
|
||||
ice_cream: Dienn skorn
|
||||
internet_cafe: Sibertavarn
|
||||
kindergarten: Liorzh ar vugale
|
||||
language_school: Skol yezh
|
||||
library: Levraoueg
|
||||
marketplace: Marc'hallac'h
|
||||
monastery: Manati
|
||||
motorcycle_parking: Parklec'h evit marc'hoù-tan
|
||||
music_school: Skol sonerezh
|
||||
nightclub: Klub-noz
|
||||
nursing_home: Ti-medisin ar retredidi
|
||||
parking: Parklec'h
|
||||
parking_entrance: Mont tre ur parklec'h
|
||||
parking_space: Plas parkañ
|
||||
payment_terminal: Termenell-baeañ
|
||||
pharmacy: Apotikerezh
|
||||
place_of_worship: Lec'h azeuliñ
|
||||
police: Polis
|
||||
|
@ -601,6 +661,8 @@ br:
|
|||
post_office: Ti-post
|
||||
prison: Toull-bac'h
|
||||
pub: Tavarn
|
||||
public_bath: Kibelldi foran
|
||||
public_bookcase: Levraoueg foran
|
||||
public_building: Savadur foran
|
||||
recycling: Lec'h adaozañ
|
||||
restaurant: Preti
|
||||
|
@ -622,12 +684,19 @@ br:
|
|||
village_hall: Sal ar gumun
|
||||
waste_basket: Pod-lastez
|
||||
waste_disposal: Skarzhañ al lastez
|
||||
waste_dump_site: Diskarg-lastez
|
||||
watering_place: Lec'h-dourañ
|
||||
water_point: Lec'h dour
|
||||
weighbridge: Pont-pouezañ
|
||||
"yes": Danframm
|
||||
boundary:
|
||||
aboriginal_lands: Tachennoù gwirvroat
|
||||
administrative: Bevennoù melestradurel
|
||||
census: ↓Bevenn stadeg
|
||||
national_park: Park broadel
|
||||
political: Pastell-vro dilenn
|
||||
protected_area: Takad gwarezet
|
||||
"yes": Harzoù
|
||||
bridge:
|
||||
aqueduct: Dourbont
|
||||
boardwalk: Pourmenadenn
|
||||
|
@ -636,43 +705,80 @@ br:
|
|||
viaduct: Karrbont
|
||||
"yes": Pont
|
||||
building:
|
||||
apartments: Kendi
|
||||
apartment: Ranndi
|
||||
apartments: Ranndioù
|
||||
barn: Grañj
|
||||
bungalow: Bungalow
|
||||
cabin: Logell
|
||||
chapel: Chapel
|
||||
church: Iliz
|
||||
civic: Savadur kêr
|
||||
college: Savadur skolaj
|
||||
commercial: Savadur kenwerzhel
|
||||
construction: Savadur war sevel
|
||||
detached: Pennti
|
||||
dormitory: Kouskva
|
||||
farm: Ti feurm
|
||||
farm: Atant
|
||||
garage: Karrdi
|
||||
garages: Karrdioù
|
||||
greenhouse: Ti-gwer
|
||||
hangar: Karrdi
|
||||
hospital: Savadur ospital
|
||||
hotel: Leti
|
||||
house: Ti
|
||||
hut: Logenn
|
||||
industrial: Savadur greantel
|
||||
kindergarten: Savadur skol-vamm
|
||||
office: Savadur burevioù
|
||||
public: Savadur foran
|
||||
residential: Savadur annez
|
||||
retail: Stal
|
||||
roof: Toenn
|
||||
ruins: Savadur dismantret
|
||||
school: Savadur skol
|
||||
terrace: Savenn
|
||||
shed: Lochenn
|
||||
stable: Marchosi
|
||||
static_caravan: Karavanenn
|
||||
terrace: Renkad savadurioù
|
||||
train_station: Porzh-houarn
|
||||
university: Savadur Skol-Veur
|
||||
warehouse: Sanailh
|
||||
"yes": Savadur
|
||||
club:
|
||||
sport: Klub sport
|
||||
"yes": Klub
|
||||
craft:
|
||||
beekeeper: Gwenaner
|
||||
blacksmith: Gov
|
||||
brewery: Breserezh
|
||||
carpenter: Kalvez
|
||||
caterer: Predva / kantin
|
||||
confectionery: Koñfizerezh
|
||||
dressmaker: Kemener
|
||||
electrician: Tredanour
|
||||
gardener: Liorzhour
|
||||
glaziery: Gweraerezh
|
||||
handicraft: Artizanerezh
|
||||
painter: Liver
|
||||
photographer: Luc'hskeudenner
|
||||
plumber: Plomer
|
||||
roofer: Toer
|
||||
sawmill: Heskennerezh
|
||||
shoemaker: Kere
|
||||
stonemason: Mañsoner
|
||||
tailor: Kemener
|
||||
winery: Domani gwinierezh
|
||||
"yes": Stal artizanelezh
|
||||
emergency:
|
||||
access_point: Lec'h moned
|
||||
ambulance_station: Sanailh ambulañsoù
|
||||
assembly_point: Lec'h bodañ
|
||||
defibrillator: Difibrilator
|
||||
fire_extinguisher: Mouger-tan
|
||||
landing_site: Tachenn bradañ trumm
|
||||
life_ring: Boue saveteiñ trumm
|
||||
phone: Pellgomzer evit an urjañsoù
|
||||
siren: C'hwitellerez difrae
|
||||
water_tank: Beol dour trumm
|
||||
"yes": Trummadoù
|
||||
highway:
|
||||
|
@ -685,6 +791,7 @@ br:
|
|||
cycleway: Roudenn divrodegoù
|
||||
elevator: Pignerez
|
||||
emergency_access_point: Poent moned trummadoù
|
||||
emergency_bay: Takad sikour
|
||||
footway: Gwenodenn evit an dud war-droad
|
||||
ford: Roudour
|
||||
give_way: Panell "Lezit da dremen"
|
||||
|
@ -716,12 +823,14 @@ br:
|
|||
tertiary_link: Hent trede renk
|
||||
track: Roudenn
|
||||
traffic_signals: Gouleier
|
||||
trailhead: Lec'h loc'hañ
|
||||
trunk: Hent-tizh
|
||||
trunk_link: Hent-tizh
|
||||
turning_loop: Kammdro dizehan
|
||||
unclassified: Hent dirumm
|
||||
"yes": Hent
|
||||
historic:
|
||||
aircraft: Karr-nij istorel
|
||||
archaeological_site: Lec'hienn henoniel
|
||||
battlefield: Tachenn emgann
|
||||
boundary_stone: Bonn harzoù
|
||||
|
@ -752,6 +861,7 @@ br:
|
|||
"yes": Kej
|
||||
landuse:
|
||||
allotments: Liorzhoù familh
|
||||
aquaculture: Dourc'hounezerezh
|
||||
basin: Poull
|
||||
brownfield: Tachenn rezet
|
||||
cemetery: Bered
|
||||
|
@ -771,6 +881,7 @@ br:
|
|||
military: Takad milourel
|
||||
mine: Mengleuz
|
||||
orchard: Gwerje
|
||||
plant_nursery: Magouri labouradeg
|
||||
quarry: Mengleuz
|
||||
railway: Hent-houarn
|
||||
recreation_ground: Leur c'hoari
|
||||
|
@ -782,8 +893,10 @@ br:
|
|||
vineyard: Gwinieg
|
||||
"yes": Implij an douaroù
|
||||
leisure:
|
||||
amusement_arcade: Sal-c'hoari-video
|
||||
beach_resort: Kêr-gouronkañ
|
||||
bird_hide: Bod evned
|
||||
bleachers: Derezioù
|
||||
common: Tachennoù foran
|
||||
dog_park: Park chas
|
||||
firepit: Oaled
|
||||
|
@ -798,6 +911,7 @@ br:
|
|||
miniature_golf: Golfig
|
||||
nature_reserve: Gwarezva Natur
|
||||
park: Park
|
||||
picnic_table: Taol-biknikañ
|
||||
pitch: Tachenn sport
|
||||
playground: Tachenn c'hoari
|
||||
recreation_ground: Tachenn c'hoari
|
||||
|
@ -812,13 +926,18 @@ br:
|
|||
"yes": Diduamantoù
|
||||
man_made:
|
||||
adit: Toullenn moned d'ar mengleuz
|
||||
advertising: Bruderezh
|
||||
beacon: Tour-tan
|
||||
beehive: Ruskenn
|
||||
breakwater: Diwagenner
|
||||
bridge: Pont
|
||||
bunker_silo: Bunker
|
||||
cairn: Krugell
|
||||
chimney: Siminal
|
||||
clearcut: Digoadañ
|
||||
communications_tower: Tour kehentiñ
|
||||
crane: Garv-houarn
|
||||
cross: Kroaz
|
||||
dolphin: Post amariñ
|
||||
dyke: Chaoser
|
||||
embankment: Kleuz
|
||||
|
@ -827,6 +946,7 @@ br:
|
|||
groyne: Toc'hadenn
|
||||
kiln: Forn briajoù
|
||||
lighthouse: Tour-tan
|
||||
manhole: Genoù kan-skarzh
|
||||
mast: Peul
|
||||
mine: Mengleuz
|
||||
mineshaft: Poull mengleuz
|
||||
|
@ -834,12 +954,16 @@ br:
|
|||
petroleum_well: Poull tireoul
|
||||
pier: Sav-mein
|
||||
pipeline: Eoulsan
|
||||
pumping_station: Savlec'h-pompañ
|
||||
silo: Silo
|
||||
snow_cannon: Kanol-erc'h
|
||||
storage_tank: Beol stokañ
|
||||
surveillance: Evezh
|
||||
telescope: Teleskop
|
||||
tower: Tour
|
||||
wastewater_plant: Purlec'h tretañ an dourioù lous
|
||||
watermill: Milin-dour
|
||||
water_tap: Kog dour
|
||||
water_tower: Kastell-dour
|
||||
water_well: Puñs
|
||||
water_works: Reizhiad dre zour
|
||||
|
@ -850,10 +974,13 @@ br:
|
|||
airfield: Nijva milourel
|
||||
barracks: Kazarn
|
||||
bunker: Bunker
|
||||
checkpoint: Lec'h kontrollañ
|
||||
trench: Fozell
|
||||
"yes": Milourel
|
||||
mountain_pass:
|
||||
"yes": Ode menez
|
||||
natural:
|
||||
atoll: Atoll
|
||||
bay: Bae
|
||||
beach: Traezhenn
|
||||
cape: Kab
|
||||
|
@ -876,6 +1003,7 @@ br:
|
|||
moor: Lanneier
|
||||
mud: Fank
|
||||
peak: Pikern
|
||||
peninsula: Ledenez
|
||||
point: Poent
|
||||
reef: Karreg
|
||||
ridge: Kribenn
|
||||
|
@ -896,22 +1024,27 @@ br:
|
|||
office:
|
||||
accountant: Kontour
|
||||
administrative: Melestradur
|
||||
advertising_agency: Ajañs-vrudañ
|
||||
architect: Ti-savour
|
||||
association: Kevredigezh
|
||||
company: Embregerezh
|
||||
educational_institution: Ensavadur desavadurel
|
||||
employment_agency: Ajañs evit al labour
|
||||
energy_supplier: Ajañs pourvezer tredan
|
||||
estate_agent: Kourater tiez
|
||||
government: Ajañs c'houarnamantel
|
||||
insurance: Ajañs asurañsoù
|
||||
it: Burev urzhiataerezh
|
||||
lawyer: Alvokad
|
||||
ngo: Burev un AMG (aozadur e-maez gouarnamant)
|
||||
notary: Noter
|
||||
tax_advisor: Kuzulier war an tellerezh
|
||||
telecommunication: Burev pellgehentiñ
|
||||
travel_agent: Ajañs-veaj
|
||||
"yes": Burev
|
||||
place:
|
||||
allotments: Liorzhoù tiegezhel
|
||||
archipelago: Enezeg
|
||||
city: Meurgêr
|
||||
city_block: Bloc'h kêrel
|
||||
country: Bro
|
||||
|
@ -926,6 +1059,7 @@ br:
|
|||
locality: Kêr
|
||||
municipality: Kumun
|
||||
neighbourhood: Ardremez
|
||||
plot: Tachennig
|
||||
postcode: Kod post
|
||||
quarter: Karter
|
||||
region: Rannvro
|
||||
|
@ -962,9 +1096,11 @@ br:
|
|||
tram_stop: Arsav tramgarr
|
||||
yard: Gar-dibab
|
||||
shop:
|
||||
agrarian: Stal labour-douar
|
||||
alcohol: Gwezher alkool
|
||||
antiques: Hendraezoù
|
||||
art: Stal arz
|
||||
bag: Marokinerezh
|
||||
bakery: Baraerezh
|
||||
beauty: Stal produioù kened
|
||||
beverages: Stal evajoù
|
||||
|
@ -979,51 +1115,68 @@ br:
|
|||
carpet: Stal pallennoù
|
||||
charity: Stal garitez
|
||||
chemist: Stal produioù yec'hederezh
|
||||
chocolate: Chokolader
|
||||
clothes: Stal dilhad
|
||||
coffee: Stal-Gafe
|
||||
computer: Stal urzhiataerioù
|
||||
confectionery: Koñfizerezh
|
||||
convenience: Ispiserezh
|
||||
copyshop: Stal luc'heilañ
|
||||
cosmetics: Stal produioù kened
|
||||
curtain: Stal rideoz
|
||||
dairy: Diennerezh
|
||||
deli: Tineller
|
||||
department_store: Gourstal
|
||||
discount: Stal discount
|
||||
doityourself: Stal bitellat
|
||||
dry_cleaning: Naetaat ent sec'h
|
||||
e-cigarette: Stal sigaretennoù tredanek
|
||||
electronics: Stal traoù eletronek
|
||||
erotic: Stal-erotek
|
||||
estate_agent: Kourater tiez
|
||||
farm: Stal evit al labour-douar
|
||||
fashion: Stal gizioù
|
||||
fishing: Stal rikoù pesketa
|
||||
florist: Bokedour
|
||||
food: Stal voued
|
||||
frame: Stal frammoù
|
||||
funeral_directors: Kañvlidoù
|
||||
furniture: Stal arrebeuri
|
||||
garden_centre: Stal liorzhañ
|
||||
gas: Stal gaz
|
||||
general: Stal hollek
|
||||
gift: Stal profoù
|
||||
greengrocer: Gwerzher frouezh ha legumaj
|
||||
grocery: Ispiserezh
|
||||
hairdresser: Perukenner
|
||||
hardware: Stal urzhiataerezh
|
||||
hearing_aids: Adskouarnoù
|
||||
herbalist: Louzaouerezh
|
||||
hifi: Stal Hi-Fi
|
||||
houseware: Stal traoù a diegezh
|
||||
ice_cream: Stal dienn-skorn
|
||||
interior_decoration: Kinkladur diabarzh
|
||||
jewelry: Bravigerezh
|
||||
kiosk: Kiosk
|
||||
kitchen: Stal-gegin
|
||||
laundry: Kanndi
|
||||
locksmith: alc'hwezer
|
||||
lottery: Lotiri
|
||||
mall: Palier kenwerzh
|
||||
massage: Kemenadenn
|
||||
mobile_phone: Stal pellgomzerioù hezoug
|
||||
motorcycle: Stal marc'hoù-tan
|
||||
music: Stal sonerezh
|
||||
musical_instrument: Binvioù sonerezh
|
||||
newsagent: Gwerzher kazetennoù
|
||||
nutrition_supplements: Klokaennoù boued
|
||||
optician: Luneder
|
||||
organic: Stal boued bio
|
||||
outdoor: Stal oberiantizoù diavaez
|
||||
paint: Palier livadurioù
|
||||
pastry: Pastezerezh
|
||||
pawnbroker: Prester ouzh gouestl
|
||||
perfumery: Porfumerezh
|
||||
pet: Stal loened
|
||||
photo: Stal luc'hskeudenniñ
|
||||
seafood: Boued-mor
|
||||
|
@ -1033,6 +1186,8 @@ br:
|
|||
stationery: Paperaerezh
|
||||
supermarket: Gourmarc'had
|
||||
tailor: Kemener
|
||||
tattoo: Tatouer
|
||||
tea: Stal-De
|
||||
ticket: Billederezh
|
||||
tobacco: Stal-vutun
|
||||
toys: Stal c'hoarielloù
|
||||
|
@ -1041,6 +1196,7 @@ br:
|
|||
vacant: Stal vak
|
||||
variety_store: Stal seurtadoù
|
||||
video: Stal videoioù
|
||||
video_games: Stal-c'hoarioù-video
|
||||
wine: Kavour
|
||||
"yes": Stal
|
||||
tourism:
|
||||
|
@ -1089,9 +1245,11 @@ br:
|
|||
"yes": Hent bageal
|
||||
admin_levels:
|
||||
level2: Bevenn ar vro
|
||||
level3: Harzoù Rannvro
|
||||
level4: Bevenn ar Stad
|
||||
level5: Bevenn ar rannvro
|
||||
level6: Bevenn ar gontelezh
|
||||
level7: Bevenn kêr
|
||||
level8: Bevenn kêr
|
||||
level9: Bevenn ar gêriadenn
|
||||
level10: Bevenn ar bannlev
|
||||
|
@ -1264,6 +1422,7 @@ br:
|
|||
footer: Gallout a rit ivez lenn an addispleg war %{readurl}, lezel addisplegoù
|
||||
war %{commenturl} pe respont war %{replyurl}
|
||||
message_notification:
|
||||
subject: '[OpenStreetMap] %{message_title}'
|
||||
hi: Demat %{to_user},
|
||||
header: '%{from_user} en deus kaset deoc''h ur gemennadenn dre OpenStreetMap
|
||||
gant an danvez %{subject} :'
|
||||
|
@ -1276,10 +1435,12 @@ br:
|
|||
see_their_profile: 'Gallout a rit gwelet o frofil amañ : %{userurl}.'
|
||||
befriend_them: 'Gallout a rit o ouzhpennañ e-touez ho mignoned amañ : %{befriendurl}.'
|
||||
gpx_failure:
|
||||
hi: Demat %{to_user},
|
||||
failed_to_import: 'n''en deus ket gallet bezañ enporzhiet. Setu amañ ar fazi
|
||||
:'
|
||||
subject: '[OpenStreetMap] fazi e-pad an enporzhiadur GPX'
|
||||
gpx_success:
|
||||
hi: Demat %{to_user},
|
||||
loaded_successfully:
|
||||
one: karget ervat gant %{trace_points} diwar 1 poent posupl.
|
||||
two: karget ervat gant %{trace_points}
|
||||
|
@ -1385,6 +1546,7 @@ br:
|
|||
inbox:
|
||||
title: Boest resev
|
||||
my_inbox: Ma boest resev
|
||||
my_outbox: Ma boest kas
|
||||
messages: '%{new_messages} ha %{old_messages} zo evidoc''h'
|
||||
new_messages:
|
||||
one: '%{count} gemennadenn nevez'
|
||||
|
@ -1419,6 +1581,8 @@ br:
|
|||
body: Ho tigarez, n'eus kemennadenn ebet gant an id-se.
|
||||
outbox:
|
||||
title: Boest kas
|
||||
my_inbox: Ma boest degemer
|
||||
my_outbox: Ma boest kas
|
||||
messages:
|
||||
one: Kaset hoc'h eus %{count} gemennadenn
|
||||
other: Kaset hoc'h eus %{count} kemennadenn
|
||||
|
@ -1469,12 +1633,28 @@ br:
|
|||
reset: Adderaouekaat ar ger-tremen
|
||||
flash changed: Cheñchet eo bet ho ker-tremen.
|
||||
flash token bad: N'eo ket bet kavet ar jedouer-se, gwiriañ an URL marteze ?
|
||||
preferences:
|
||||
show:
|
||||
title: Ma fenndibaboù
|
||||
preferred_editor: Aozer karetañ
|
||||
preferred_languages: 'Yezhoù gwellañ karet :'
|
||||
edit_preferences: Kemmañ ar penndibaboù
|
||||
edit:
|
||||
title: Kemmañ ar penndibaboù
|
||||
save: Hizivaat ar penndibaboù
|
||||
cancel: Nullañ
|
||||
update_success_flash:
|
||||
message: Hizivaet eo ar penndibaboù
|
||||
profiles:
|
||||
edit:
|
||||
image: 'Skeudenn :'
|
||||
title: Aozañ ar profil
|
||||
save: Hizivaat ar profil
|
||||
cancel: Nullañ
|
||||
image: Skeudenn
|
||||
gravatar:
|
||||
gravatar: Implijout Gravatar
|
||||
link: http://wiki.openstreetmap.org/wiki/Gravatar
|
||||
what_is_gravatar: Petra eo Gravatar?
|
||||
disabled: Diweredekaet eo bet Gravatar.
|
||||
enabled: Gweredekaet eo bet diskwel ho Kravatar.
|
||||
new image: Ouzhpennañ ur skeudenn
|
||||
|
@ -1483,10 +1663,12 @@ br:
|
|||
replace image: Erlec'hiañ ar skeudenn a-vremañ
|
||||
image size hint: (ar skeudennoù karrezenneg gant ar stumm 100×100 pixel a zo
|
||||
ar re wellañ)
|
||||
home location: 'Lec''hiadur ar gêr :'
|
||||
home location: Lec'hiadur ar gêr
|
||||
no home location: N'hoc'h eus ket ebarzhet lec'hiadur ho kêr.
|
||||
update home location on click: Hizivaat lec'hiadur ho kêr pa glikit war ar gartenn
|
||||
?
|
||||
update:
|
||||
success: Profil hizivaet.
|
||||
sessions:
|
||||
new:
|
||||
title: Kevreañ
|
||||
|
@ -1543,6 +1725,21 @@ br:
|
|||
title: Digevreañ
|
||||
heading: Kuitaat OpenStreetMap
|
||||
logout_button: Digevreañ
|
||||
shared:
|
||||
markdown_help:
|
||||
headings: Titloù
|
||||
heading: Titl
|
||||
subheading: Istitl
|
||||
first: Elfenn gentañ
|
||||
second: Eil elfenn
|
||||
link: Liamm
|
||||
text: Testenn
|
||||
image: Skeudenn
|
||||
alt: Testenn all
|
||||
url: URL
|
||||
richtext_field:
|
||||
edit: Aozañ
|
||||
preview: Rakwelet
|
||||
site:
|
||||
about:
|
||||
next: War-lerc'h
|
||||
|
@ -1981,6 +2178,7 @@ br:
|
|||
vefe gortoz a-raok kas re all, evit chom hep stankañ al lostennad evit an
|
||||
implijerien all.
|
||||
edit:
|
||||
cancel: Nullañ
|
||||
title: Oc'h aozañ ar roud %{name}
|
||||
heading: Oc'h aozañ ar roud %{name}
|
||||
visibility_help: Petra a dalvez an dra-mañ ?
|
||||
|
@ -1997,6 +2195,7 @@ br:
|
|||
uploaded: 'Karget da :'
|
||||
points: 'Poentoù :'
|
||||
start_coordinates: 'Daveennoù orin :'
|
||||
coordinates_html: '%{latitude} ; %{longitude}'
|
||||
map: kartenn
|
||||
edit: aozañ
|
||||
owner: 'Perc''henn :'
|
||||
|
@ -2014,7 +2213,12 @@ br:
|
|||
newer: ↓Roudoù nevez
|
||||
trace:
|
||||
pending: WAR C'HORTOZ
|
||||
count_points: '%{count} poent'
|
||||
count_points:
|
||||
one: 1 poent
|
||||
two: 2 boent
|
||||
few: '%{count} poent'
|
||||
many: '%{count} poent'
|
||||
other: '%{count} poent'
|
||||
more: muioc'h
|
||||
trace_details: Gwelet munudoù ar roud
|
||||
view_map: Gwelet ar gartenn
|
||||
|
@ -2027,7 +2231,7 @@ br:
|
|||
in: e-barzh
|
||||
index:
|
||||
public_traces: Roudoù GPS foran
|
||||
my_traces: Ma roudennoù GPS
|
||||
my_traces: Ma roudoù
|
||||
public_traces_from: Roudoù GPS foran gant %{user}
|
||||
description: Furchal ar roud GPS pellgarget nevez zo
|
||||
tagged_with: ' balizennet gant %{tags}'
|
||||
|
@ -2035,6 +2239,8 @@ br:
|
|||
roudenn nevez</a> evit gouzout hiroc'h diwar-benn an tresañ GPS, sellit ouzh
|
||||
ar <abajenn wiki>href='https://wiki.openstreetmap.org/wiki/Beginners_Guide_1.2i</a>.
|
||||
upload_trace: Kas ur roud
|
||||
all_traces: An holl roudoù
|
||||
traces_from: Roudoù GPS foran gant %{user}
|
||||
destroy:
|
||||
scheduled_for_deletion: Roudenn da vezañ dilamet
|
||||
make_public:
|
||||
|
@ -2066,6 +2272,9 @@ br:
|
|||
need_to_see_terms: Evit ar mare n'oc'h ket aotreet da vont war an API ken. Kevreit
|
||||
d'an etrefas Web da sellet ouzh Termenoù an implijerien. Marteze ne viot ket
|
||||
a-du ganto met ret eo deoc'h bezañ lennet anezho.
|
||||
settings_menu:
|
||||
account_settings: Arventennoù ar gont
|
||||
oauth1_settings: Arventennoù OAuth 1
|
||||
oauth:
|
||||
authorize:
|
||||
title: Aotren mont d'ho kont
|
||||
|
@ -2093,6 +2302,11 @@ br:
|
|||
flash: Torret hoc'h eus ar jedouer evit %{application}
|
||||
permissions:
|
||||
missing: N'eo ket bet aotreet an arload ganeoc'h d'ober gan an arc'hwel-mañ
|
||||
scopes:
|
||||
write_api: Kemmañ ar gartenn
|
||||
read_gpx: Lenn ar roudoù GPS prevez.
|
||||
write_gpx: Enporzhiañ ar roudoù GPS
|
||||
write_notes: Kemmañ an notennoù
|
||||
oauth_clients:
|
||||
new:
|
||||
title: Marilhañ un arload nevez
|
||||
|
@ -2134,6 +2348,30 @@ br:
|
|||
flash: Hizivaet eo bet titouroù an arval
|
||||
destroy:
|
||||
flash: Distrujet eo bet marilhadur an arload arval
|
||||
oauth2_applications:
|
||||
index:
|
||||
name: Anv
|
||||
permissions: Aotreoù
|
||||
application:
|
||||
edit: Aozañ
|
||||
delete: Dilemel
|
||||
show:
|
||||
edit: Aozañ
|
||||
delete: Dilemel
|
||||
permissions: Aotreoù
|
||||
oauth2_authorizations:
|
||||
new:
|
||||
authorize: Aotren
|
||||
deny: Nac'hañ
|
||||
error:
|
||||
title: Ur fazi zo c'hoarvezet
|
||||
show:
|
||||
title: Kod aotre
|
||||
oauth2_authorized_applications:
|
||||
index:
|
||||
title: Ma sevenidigezhioù aotreet
|
||||
application: Sevenidigezh
|
||||
permissions: Aotreoù
|
||||
users:
|
||||
new:
|
||||
title: Kevreañ
|
||||
|
@ -2183,6 +2421,7 @@ br:
|
|||
italy: Italia
|
||||
rest_of_world: Peurrest ar bed
|
||||
terms_declined_flash:
|
||||
terms_declined_link: ar bejenn-mañ eus ar wiki
|
||||
terms_declined_url: https://wiki.openstreetmap.org/wiki/Contributor_Terms_Declined
|
||||
no_such_user:
|
||||
title: N'eus implijer ebet evel hemañ
|
||||
|
@ -2200,8 +2439,10 @@ br:
|
|||
my profile: Ma frofil
|
||||
my settings: ma arventennoù
|
||||
my comments: ma evezhiadennoù
|
||||
my_preferences: Ma fenndibaboù
|
||||
blocks on me: Stankadurioù evidon
|
||||
blocks by me: stankadurioù graet ganin
|
||||
edit_profile: Aozañ ar profil
|
||||
send message: Kas ur gemennadenn
|
||||
diary: deizlevr
|
||||
edits: Kemmoù
|
||||
|
@ -2220,12 +2461,6 @@ br:
|
|||
spam score: 'Notenn evit ar strob :'
|
||||
description: Deskrivadur
|
||||
user location: Lec'hiadur an implijer
|
||||
my friends: Ma mignoned
|
||||
no friends: N'hoc'h eus ouzhpennet mignon ebet c'hoazh.
|
||||
km away: war-hed %{count} km
|
||||
m away: war-hed %{count} m
|
||||
nearby users: 'Implijerien all tost deoc''h :'
|
||||
no nearby users: N'eus implijer ebet all en ardremez c'hoazh.
|
||||
role:
|
||||
administrator: Ur merour eo an implijer-mañ
|
||||
moderator: Un habaskaer eo an implijer-mañ
|
||||
|
@ -2246,25 +2481,17 @@ br:
|
|||
unhide_user: Diguzhat an implijer-mañ
|
||||
delete_user: Dilemel an implijer-mañ
|
||||
confirm: Kadarnaat
|
||||
friends_changesets: Strolladoù kemmoù graet gant mignoned
|
||||
friends_diaries: Enmonedoù deizlevr ar vignoned
|
||||
nearby_changesets: Strolladoù kemmoù an implijer tro-war-dro
|
||||
nearby_diaries: Enmonedoù deizlevr an implijerien tro-war-dro
|
||||
report: Disklêriañ an implijer-mañ
|
||||
popup:
|
||||
your location: Ho lec'hiadur
|
||||
nearby mapper: Kartennour en ardremez
|
||||
friend: Mignon
|
||||
account:
|
||||
title: Aozañ ar gont
|
||||
my settings: Ma arventennoù
|
||||
current email address: 'Chomlec''h postel a-vremañ :'
|
||||
external auth: 'Dilesadur diavaez :'
|
||||
current email address: Chomlec'h postel a-vremañ
|
||||
external auth: Dilesadur diavaez
|
||||
openid:
|
||||
link: https://wiki.openstreetmap.org/wiki/OpenID
|
||||
link text: petra eo se ?
|
||||
public editing:
|
||||
heading: 'Aozañ foran :'
|
||||
heading: Aozañ foran
|
||||
enabled: Gweredekaet. N'eo ket dizanv ha gallout a ra aozañ roadennoù.
|
||||
enabled link: https://wiki.openstreetmap.org/wiki/Anonymous_edits
|
||||
enabled link text: Petra eo se ?
|
||||
|
@ -2283,7 +2510,7 @@ br:
|
|||
bezañ nullet hag emañ an holl implijerien nevez gant an doare "kemmoù foran"
|
||||
dre ziouer.</li></ul>
|
||||
contributor terms:
|
||||
heading: 'Diferadennoù ar c''henlabourer :'
|
||||
heading: Diferadennoù ar c'henlabourer
|
||||
agreed: Degemeret hoc'h eus diferadennoù nevez ar c'henlabourer.
|
||||
not yet agreed: N'hoc'h eus ket degemeret c'hoazh diferadennoù nevez ar c'henlabourer.
|
||||
review link text: Heuilhit al liamm-mañ evel ma karot evit sellet ouzh diferadennoù
|
||||
|
@ -2293,7 +2520,6 @@ br:
|
|||
link text: Petra eo se ?
|
||||
save changes button: Enrollañ ar c'hemmoù
|
||||
make edits public button: Lakaat ma holl aozadennoù da vezañ foran
|
||||
return to profile: Distreiñ d'ar profil
|
||||
flash update success confirm needed: Hizivaet eo bet titouroù an implijer. Gwiriit
|
||||
ho posteloù evit kadarnaat ho chomlec'h postel nevez.
|
||||
flash update success: Hizivaet eo bet titouroù an implijer.
|
||||
|
@ -2316,6 +2542,7 @@ br:
|
|||
suspended:
|
||||
title: Kont arsavet
|
||||
heading: Kont arsavet
|
||||
support: Skor
|
||||
body_html: |-
|
||||
<p>
|
||||
Ho tigarez, arsavet eo bet ho kont abalamour d'un obererezh arvarus.
|
||||
|
@ -2453,8 +2680,9 @@ br:
|
|||
show:
|
||||
title: '%{block_on} stanket gant %{block_by}'
|
||||
heading_html: '%{block_on} stanket gant %{block_by}'
|
||||
created: Krouet
|
||||
status: Statud
|
||||
created: 'Krouet:'
|
||||
duration: 'Padelezh :'
|
||||
status: 'Statud:'
|
||||
show: Diskouez
|
||||
edit: Aozañ
|
||||
revoke: Disteuler !
|
||||
|
@ -2482,6 +2710,7 @@ br:
|
|||
title: Notennoù kaset pe addispleget gant %{user}
|
||||
heading: notennoù %{user}
|
||||
subheading_html: Notennoù kaset pe addispleget gant %{user}
|
||||
no_notes: Notenn ebet
|
||||
id: Id
|
||||
creator: Krouer
|
||||
description: Deskrivadur
|
||||
|
@ -2536,9 +2765,11 @@ br:
|
|||
other: Emaoc'h dindan %{count} troad diouzh ar poent-mañ
|
||||
base:
|
||||
standard: Standard
|
||||
cyclosm: CyclOSM
|
||||
cycle_map: Kelc'hiad kartenn
|
||||
transport_map: Kartenn treuzdougen
|
||||
hot: Denegour
|
||||
opnvkarte: ÖPNVKarte
|
||||
layers:
|
||||
header: Gwiskadoù kartenn
|
||||
notes: Notennoù kartenn
|
||||
|
|
|
@ -250,6 +250,23 @@ bs:
|
|||
timeout:
|
||||
sorry: Žao nam je, listi seta promjena koju ste tražili je predugo trajalo za
|
||||
preuzimanje.
|
||||
dashboards:
|
||||
contact:
|
||||
km away: korisnik udaljen %{count}km
|
||||
m away: '%{count}m daleko'
|
||||
popup:
|
||||
your location: Vaša lokacija
|
||||
nearby mapper: Obližnji maper
|
||||
friend: Prijatelj
|
||||
show:
|
||||
no friends: Niste dodali nijednog prijatelja.
|
||||
nearby users: Drugi obližnji korisnici
|
||||
no nearby users: Još uvijek nema drugih korisnika koji ucrtavaju na kartu u
|
||||
blizini.
|
||||
friends_changesets: promjena spiska prijatelja
|
||||
friends_diaries: unosi u dnevnik prijatelja
|
||||
nearby_changesets: promjene spiska obližnjih korisnika
|
||||
nearby_diaries: unosi u dnevnik obližnjih korisnika
|
||||
diary_entries:
|
||||
new:
|
||||
title: Novi unos u dnevnik
|
||||
|
@ -1502,12 +1519,6 @@ bs:
|
|||
spam score: 'Spam ocjena:'
|
||||
description: Opis
|
||||
user location: Lokacija boravišta korisnika
|
||||
no friends: Niste dodali nijednog prijatelja.
|
||||
km away: korisnik udaljen %{count}km
|
||||
m away: '%{count}m daleko'
|
||||
nearby users: Drugi obližnji korisnici
|
||||
no nearby users: Još uvijek nema drugih korisnika koji ucrtavaju na kartu u
|
||||
blizini.
|
||||
role:
|
||||
administrator: Ovaj korisnik je administrator
|
||||
moderator: Ovaj korisnik je moderator
|
||||
|
@ -1528,14 +1539,6 @@ bs:
|
|||
unhide_user: Otkrij ovog korisnika
|
||||
delete_user: Obriši ovog korisnika
|
||||
confirm: Potvrditi
|
||||
friends_changesets: promjena spiska prijatelja
|
||||
friends_diaries: unosi u dnevnik prijatelja
|
||||
nearby_changesets: promjene spiska obližnjih korisnika
|
||||
nearby_diaries: unosi u dnevnik obližnjih korisnika
|
||||
popup:
|
||||
your location: Vaša lokacija
|
||||
nearby mapper: Obližnji maper
|
||||
friend: Prijatelj
|
||||
account:
|
||||
title: Urediti korisnički račun
|
||||
my settings: Moja podešavanja
|
||||
|
@ -1570,7 +1573,6 @@ bs:
|
|||
link text: Šta je ovo?
|
||||
save changes button: Sačuvati promjene
|
||||
make edits public button: Napraviti sve moje promjene javnim
|
||||
return to profile: Vratiti se na profil
|
||||
flash update success confirm needed: Korisničke informacije su uspješno osvježene.
|
||||
Provjerite e-mail za porukom za potvrdu nove e-mail adrese.
|
||||
flash update success: Korisničke informacije su uspješno osvježene.
|
||||
|
|
|
@ -11,6 +11,7 @@
|
|||
# Author: Eduardo Martinez
|
||||
# Author: El libre
|
||||
# Author: Fitoschido
|
||||
# Author: Galactic Thrasher
|
||||
# Author: Gemmaa
|
||||
# Author: Grondin
|
||||
# Author: Jaumeortola
|
||||
|
@ -186,6 +187,11 @@ ca:
|
|||
pass_crypt: Contrasenya
|
||||
pass_crypt_confirmation: Confirmeu la contrasenya
|
||||
help:
|
||||
doorkeeper/application:
|
||||
confidential: L'aplicació serà utilitzada on el secret del client pugui ser
|
||||
mantingut confidencial (les aplicacions natives de mòbil i les aplicacions
|
||||
d'una sola pàgina no són confidencials)
|
||||
redirect_uri: Useu una línia per URI
|
||||
trace:
|
||||
tagstring: separat per comes
|
||||
user_block:
|
||||
|
@ -194,7 +200,7 @@ ca:
|
|||
sobre la situació, recordeu que el missatge serà visible públicament. Tingueu
|
||||
en compte que no tots els usuaris comprenen l'argot de la comunitat, així
|
||||
que intenteu utilitzar termes comuns.
|
||||
needs_view: L'usuari necessita connectar-se abans que aquest blocatge es suprimeixi?
|
||||
needs_view: L'usuari necessita connectar-se abans que aquest blocatge se suprimeixi?
|
||||
user:
|
||||
email_confirmation: La vostra adreça no es mostrarà públicament (vegeu la
|
||||
nostra <a href="https://wiki.osmfoundation.org/wiki/Privacy_Policy" title="OSMF
|
||||
|
@ -273,7 +279,7 @@ ca:
|
|||
title: Notes d'OpenStreetMap
|
||||
description_area: Una llista de notes reportades, comentades o bé tancades
|
||||
a la teva àrea [(%{min_lat}|%{min_lon}) -- (%{max_lat}|%{max_lon})]
|
||||
description_item: Un agregador rss per a la nota %{id}
|
||||
description_item: Un agregador RSS per a la nota %{id}
|
||||
opened: Nota nova (a prop de %{place})
|
||||
commented: nou comentari (a prop de %{place})
|
||||
closed: nota tancada (a prop de %{place})
|
||||
|
@ -423,8 +429,8 @@ ca:
|
|||
changesets:
|
||||
changeset_paging_nav:
|
||||
showing_page: Pàgina %{page}
|
||||
next: Següent →
|
||||
previous: ← Anterior
|
||||
next: Següent »
|
||||
previous: « Anterior
|
||||
changeset:
|
||||
anonymous: Anònim
|
||||
no_edits: (no hi ha cap edició)
|
||||
|
@ -462,6 +468,26 @@ ca:
|
|||
timeout:
|
||||
sorry: La llista de comentaris de conjunts de canvis que heu sol·licitat ha
|
||||
trigat massa a recuperar-se.
|
||||
dashboards:
|
||||
contact:
|
||||
km away: '%{count}km de distància'
|
||||
m away: '%{count}m de distància'
|
||||
popup:
|
||||
your location: La vostra ubicació
|
||||
nearby mapper: Cartògraf proper
|
||||
friend: Amic
|
||||
show:
|
||||
no_home_location_html: '%{edit_profile_link} i establiu la ubicació de casa
|
||||
vostra per veure usuaris propers.'
|
||||
edit_your_profile: Editeu el vostre perfil
|
||||
my friends: Les meves amistats
|
||||
no friends: Encara no has afegit cap amic.
|
||||
nearby users: Altres usuaris propers
|
||||
no nearby users: Cap usuari manifesta cartografiar a prop.
|
||||
friends_changesets: conjunts de canvis dels vostres amics
|
||||
friends_diaries: entrades de diari dels vostres amics
|
||||
nearby_changesets: conjunts de canvis d'usuaris propers
|
||||
nearby_diaries: entrades de diari d'usuaris propers
|
||||
diary_entries:
|
||||
new:
|
||||
title: Entrada de diari nova
|
||||
|
@ -537,6 +563,11 @@ ca:
|
|||
comment: Comentari
|
||||
newer_comments: Comentaris més nous
|
||||
older_comments: Comentaris més antics
|
||||
doorkeeper:
|
||||
flash:
|
||||
applications:
|
||||
create:
|
||||
notice: S'ha registrat l'aplicació.
|
||||
friendships:
|
||||
make_friend:
|
||||
heading: Voleu afegir %{user} com un amic?
|
||||
|
@ -570,10 +601,10 @@ ca:
|
|||
drag_lift: Teleesquí
|
||||
gondola: Telecabina
|
||||
magic_carpet: Cinta Transportadora
|
||||
platter: Telesquí amb seient de disc
|
||||
platter: Teleesquí amb seient de disc
|
||||
pylon: Piló
|
||||
station: Estació de telefèric
|
||||
t-bar: Telesquí amb seient en T
|
||||
t-bar: Teleesquí amb seient en T
|
||||
"yes": Vies per cables penjats
|
||||
aeroway:
|
||||
aerodrome: Aeròdrom
|
||||
|
@ -676,7 +707,7 @@ ca:
|
|||
shower: Dutxa
|
||||
social_centre: Centre social
|
||||
social_facility: Equipament social
|
||||
studio: Estudi de grabació
|
||||
studio: Estudi de gravació
|
||||
swimming_pool: Piscina
|
||||
taxi: Taxi
|
||||
telephone: Telèfon públic
|
||||
|
@ -1298,7 +1329,7 @@ ca:
|
|||
level6: Límit comarcal (nivell 6)
|
||||
level7: Límit municipal
|
||||
level8: Límit municipal (nivell 8)
|
||||
level9: Límit intramunicipal (nivell 9)
|
||||
level9: Límit inframunicipal (nivell 9)
|
||||
level10: Límit de suburbi-barri (nivell 10)
|
||||
level11: Límit del veïnat
|
||||
types:
|
||||
|
@ -1387,17 +1418,17 @@ ca:
|
|||
resolve_with_user: Ja has provat de resoldre el problema amb l'usuari en qüestió
|
||||
categories:
|
||||
diary_entry:
|
||||
spam_label: Aquesta entrada de diari és/conté spam
|
||||
spam_label: Aquesta entrada de diari és/conté contingut brossa
|
||||
offensive_label: Aquesta entrada de diari és ofensiva/obscena
|
||||
threat_label: Aquesta entrada de diari conté una amenaça
|
||||
other_label: Un altre
|
||||
diary_comment:
|
||||
spam_label: Aquest comentari de diari és/conté spam
|
||||
spam_label: Aquest comentari de diari és/conté contingut brossa
|
||||
offensive_label: Aquest comentari de diari és ofensiu/obscè
|
||||
threat_label: Aquest comentari de diari conté una amenaça
|
||||
other_label: Un altre
|
||||
user:
|
||||
spam_label: Aquest perfil d'usuari és/conté spam
|
||||
spam_label: Aquest perfil d'usuari és/conté contingut brossa
|
||||
offensive_label: Aquest perfil d'usuari és ofensiu/obscè
|
||||
threat_label: Aquest perfil d'usuari conté una amenaça
|
||||
vandal_label: Aquest usuari és un vàndal
|
||||
|
@ -1416,7 +1447,7 @@ ca:
|
|||
h1: OpenStreetMap
|
||||
logo:
|
||||
alt_text: Logotip de l'OpenStreetMap
|
||||
home: Vés a la ubicació d'inici
|
||||
home: Ves a la ubicació d'inici
|
||||
logout: Surt
|
||||
log_in: Inicia la sessió
|
||||
log_in_tooltip: Entra amb un compte existent
|
||||
|
@ -1435,7 +1466,7 @@ ca:
|
|||
user_diaries_tooltip: Mostra els diaris d’usuari
|
||||
edit_with: Edita amb %{editor}
|
||||
tag_line: El mapa col·laboratiu lliure
|
||||
intro_header: OpenStreetMap us dona la benviguda
|
||||
intro_header: OpenStreetMap us dona la benvinguda
|
||||
intro_text: L'OpenStreetMap és un mapa del món creat per persones com tu i d'ús
|
||||
lliure sota una llicència oberta.
|
||||
intro_2_create_account: Crea un compte d’usuari
|
||||
|
@ -1503,7 +1534,7 @@ ca:
|
|||
hi: Hola %{to_user},
|
||||
failed_to_import: 'no es pot importar. L''error ha estat:'
|
||||
more_info_html: Podeu trobar més informació sobre les fallades d'importació
|
||||
de GPX i com per evitar-les a %{url}.
|
||||
de GPX i com evitar-les a %{url}.
|
||||
subject: '[OpenStreetMap] Error d''importació de GPX'
|
||||
gpx_success:
|
||||
hi: Hola %{to_user},
|
||||
|
@ -1525,14 +1556,14 @@ ca:
|
|||
greeting: Hola,
|
||||
hopefully_you: Algú (esperem que vós) vol canviar la vostra adreça electrònica
|
||||
a %{server_url} per %{new_address}.
|
||||
click_the_link: Si sou vós mateix, feu clic a l'enllaç de sota per confirmar
|
||||
click_the_link: Si sou vós mateix, feu clic a l'enllaç de sota per a confirmar
|
||||
el canvi.
|
||||
lost_password:
|
||||
subject: '[OpenStreetMap] Sol·licitud de reinicialització de contrasenya'
|
||||
greeting: Hola,
|
||||
hopefully_you: Algú (possiblement vós) ha demanat reincialitzar la contrasenya
|
||||
hopefully_you: Algú (possiblement vós) ha demanat reinicialitzar la contrasenya
|
||||
del compte d'openstreetmap.org associat a aquesta adreça de correu electrònic.
|
||||
click_the_link: Si sou vós mateix, feu clic a l'enllaç de sota per reinicialitzar
|
||||
click_the_link: Si sou vós mateix, feu clic a l'enllaç de sota per a reinicialitzar
|
||||
la contrasenya.
|
||||
note_comment_notification:
|
||||
anonymous: Un usuari anònim
|
||||
|
@ -1596,9 +1627,9 @@ ca:
|
|||
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}.
|
||||
unsubscribe: Per deixar de seguir les actualitzacions d'aquest conjunt de canvis,
|
||||
visita %{url} i clica "Dona de baixa"
|
||||
unsubscribe_html: Per deixar de seguir les actualitzacions d'aquest conjunt
|
||||
unsubscribe: Per a deixar de seguir les actualitzacions d'aquest conjunt de
|
||||
canvis, visita %{url} i clica "Dona de baixa"
|
||||
unsubscribe_html: Per a deixar de seguir les actualitzacions d'aquest conjunt
|
||||
de canvis, visiteu %{url} i cliqueu "Dona de baixa".
|
||||
confirmations:
|
||||
confirm:
|
||||
|
@ -1606,7 +1637,7 @@ ca:
|
|||
introduction_1: T'hem enviat un correu de confirmació.
|
||||
introduction_2: Confirma el teu compte clicant a l'enllaç que es troba al correu
|
||||
que t'hem enviat i ja podràs començar a editar el mapa.
|
||||
press confirm button: Premeu el botó de confirmar sota per activar el compte.
|
||||
press confirm button: Premeu el botó de confirmar sota per a activar el compte.
|
||||
button: Confirma
|
||||
success: Heu confirmat el vostre compte, gràcies per registrar-vos!
|
||||
already active: Aquest compte ja ha estat confirmat.
|
||||
|
@ -1617,12 +1648,18 @@ ca:
|
|||
failure: L'usuari %{name} no s'ha trobat.
|
||||
confirm_email:
|
||||
heading: Confirma un canvi d'adreça electrònica
|
||||
press confirm button: Premeu el botó de confirmar sota per confirmar la seva
|
||||
adreça de correu electrònic nou.
|
||||
press confirm button: Premeu el botó de confirmar de sota per a confirmar la
|
||||
vostra nova adreça de correu electrònic.
|
||||
button: Confirma
|
||||
success: S'ha confirmat el canvi de la teva adreça electrònica!
|
||||
failure: Una adreça de correu electrònic ja ha estat confirmat amb aquesta fitxa.
|
||||
unknown_token: Aquest codi de confirmació ha expirat o no existeix.
|
||||
resend_success_flash:
|
||||
confirmation_sent: Hem enviat una nota de confirmació a %{email} i tan aviat
|
||||
com confirmeu el vostre compte podreu començar a cartografiar.
|
||||
whitelist: Si utilitzeu un sistema antispam que descarta les peticions de confirmació,
|
||||
aleshores assegureu-vos d'afegir %{sender} a la vostra llista blanca, ja que
|
||||
no podrem respondre a cap petició de confirmació.
|
||||
messages:
|
||||
inbox:
|
||||
title: Safata d'entrada
|
||||
|
@ -1703,7 +1740,7 @@ ca:
|
|||
email address: 'Adreça de correu electrònic:'
|
||||
new password button: Restableix la contrasenya
|
||||
help_text: Introduïu l'adreça de correu electrònic que vau utilitzar per registrar-vos;
|
||||
us hi enviarem un enllaç per restablir la contrasenya.
|
||||
us hi enviarem un enllaç per a restablir la contrasenya.
|
||||
notice email on way: Lamentem que l'hàgiu perdut :-( però ja us hem enviat un
|
||||
correu i la podreu restablir ben aviat.
|
||||
notice email cannot find: No s'ha trobat aquesta adreça de correu.
|
||||
|
@ -1712,7 +1749,7 @@ ca:
|
|||
heading: Restableix la contrasenya per a %{user}
|
||||
reset: Restableix la contrasenya
|
||||
flash changed: S'ha canviat la contrasenya.
|
||||
flash token bad: No s'ha trobat el testimoni. Comproveu la URL.
|
||||
flash token bad: No s'ha trobat el testimoni. Comproveu l'URL.
|
||||
preferences:
|
||||
show:
|
||||
title: Les meves preferències
|
||||
|
@ -1780,7 +1817,7 @@ ca:
|
|||
auth_providers:
|
||||
openid:
|
||||
title: Inicia sessió amb un compte OpenID
|
||||
alt: Inicia sessió amb una URL OpenID
|
||||
alt: Inicia sessió amb un URL d'OpenID
|
||||
google:
|
||||
title: Inicieu la sessió amb Google
|
||||
alt: Inicieu la sessió amb un compte OpenID de Google
|
||||
|
@ -1865,7 +1902,7 @@ ca:
|
|||
foreign:
|
||||
title: Quant a la traducció
|
||||
html: En cas de conflicte entre aquesta pàgina traduïda i %{english_original_link},
|
||||
la pàgina en anglès té prevalènça
|
||||
la pàgina en anglès té prevalença
|
||||
english_link: l'original en anglès
|
||||
native:
|
||||
title: Sobre aquesta pàgina
|
||||
|
@ -1877,8 +1914,9 @@ ca:
|
|||
legal_babble:
|
||||
title_html: Drets d'autor i llicència
|
||||
intro_1_html: |-
|
||||
Les <i>open data</i> d'OpenStreetMap<sup><a href="#trademarks">®</a></sup> estan publicades sota la <a
|
||||
href="http://opendatacommons.org/licenses/odbl/">llicència de base de dades oberta</a> (ODbL) per la <a
|
||||
L'OpenStreetMap<sup><a href="#trademarks">®</a></sup> són <i>dades obertes</i>, publicades sota la <a
|
||||
href="http://opendatacommons.org/licenses/odbl/">Open Data
|
||||
Commons Open Database License</a> (ODbL) per la <a
|
||||
href="http://osmfoundation.org/">Fundació OpenStreetMap</a> (OSMF).
|
||||
intro_2_html: "Sou lliure de copiar, distribuir, comunicar públicament i fer
|
||||
obres derivades de les nostres dades, sempre que especifiqueu que són obra
|
||||
|
@ -1901,7 +1939,7 @@ ca:
|
|||
lectors a openstreetmap.org (potser indicant l'adreça completa d'OpenStreetMap),
|
||||
a opendatacommons.org i, si s'escau, a creativecommons.org.
|
||||
credit_3_1_html: "Les tessel·les de mapa en “standard style” a
|
||||
www.openstreetmap.org són un producte de \nl'OpenStreetMap Foundation usant
|
||||
www.openstreetmap.org són un producte de \nla FundacióOpenStreetMap usant
|
||||
dades de l'OpenStreetMap \nsota llicència Open Database License. Si useu
|
||||
aquestes tessel·les, afegiu la següent atribució:\n“Base map and data
|
||||
from OpenStreetMap and OpenStreetMap Foundation”."
|
||||
|
@ -1913,7 +1951,7 @@ ca:
|
|||
title: Exemple d'atribució d'autoria
|
||||
more_title_html: Saber-ne més
|
||||
more_1_html: |-
|
||||
Per a més informació sobre com utilitzar les nostres dades i com atribuir-ne l'autorita, visiteu la <a
|
||||
Per a més informació sobre com utilitzar les nostres dades i com atribuir-ne l'autoria, visiteu la <a
|
||||
href="http://osmfoundation.org/Licence">pàgina de llicència de la OSMF</a>.
|
||||
more_2_html: Encara que les dades d'OpenStreetMap són dades obertes, no podem
|
||||
oferir una API gratuïta a tercers. Vegeu la <a href="https://operations.osmfoundation.org/policies/api/">política
|
||||
|
@ -1928,21 +1966,21 @@ ca:
|
|||
Wien</a> (sota <a href="http://creativecommons.org/licenses/by/3.0/at/deed.de">CC
|
||||
BY</a>), el <a href="https://www.vorarlberg.at/vorarlberg/bauen_wohnen/bauen/vermessung_geoinformation/weitereinformationen/services/wmsdienste.htm">Land
|
||||
Voralberg</a> i el Land Tirol (sota <a href="https://www.tirol.gv.at/applikationen/e-government/data/nutzungsbedingungen/">CC
|
||||
BY AT amb correccions</a>.'
|
||||
BY AT amb correccions</a>).'
|
||||
contributors_au_html: '<strong>Austràlia</strong>: Conté dades de <a href="https://www.psma.com.au/psma-data-copyright-and-disclaimer">PSMA
|
||||
Autralia Limited</a> publicades per Commonwealth of Australia sota els termes
|
||||
de <a href="https://creativecommons.org/licenses/by/4.0/">CC BY 4.0</a>.'
|
||||
contributors_ca_html: '<strong>Canadà</strong>: conté dades de GeoBase ®,
|
||||
GeoGratis (© Departament de Recursos Naturals de Canadà), CanVec (© Departament
|
||||
de Recursos Naturals de Canadà) i StatCan (Divisió de Geografia, Institut
|
||||
d''Estadística de Canadà).'
|
||||
GeoGratis (© Departament de Recursos Naturals del Canadà), CanVec (© Departament
|
||||
de Recursos Naturals del Canadà) i StatCan (Divisió de Geografia, Institut
|
||||
d''Estadística del Canadà).'
|
||||
contributors_fi_html: '<strong>Finlàndia</strong>: Conté dades de la base
|
||||
de dades topogràfica del National Land Survey of Finland i d''altres bases
|
||||
de dades sota la <a href="http://www.maanmittauslaitos.fi/en/NLS_open_data_licence_version1_20120501">llicència
|
||||
NLSFI</a>.'
|
||||
contributors_fr_html: |-
|
||||
<strong>França</strong>: conté dades de la
|
||||
Direction Générale des Impôts.
|
||||
Direction Générale des Impôts.
|
||||
contributors_nl_html: '<strong>Països Baixos</strong>: Conté © dades
|
||||
d''Automotive Navigation Data (AND), 2007 (<a href="http://www.and.com">www.and.com</a>)'
|
||||
contributors_nz_html: '<strong>Nova Zelanda</strong>: Conté dades de <a href="https://data.linz.govt.nz/">
|
||||
|
@ -1951,17 +1989,17 @@ ca:
|
|||
de Topografia i Cartografia</a> i del <a href="http://www.mkgp.gov.si/en/">Ministeri
|
||||
d''Agricultura, Silvicultura i Alimentació</a> (informació pública d''Eslovènia).'
|
||||
contributors_es_html: |-
|
||||
<strong>Spain</strong>: Conté dades de l'Institut Geogràfic Nacional espanyol(<a href="http://www.ign.es/">IGN</a>) i del Sistema Cartgràfic Nacional (<a href="http://www.scne.es/">SCNE</a>)
|
||||
<strong>Espanya</strong>: Conté dades de l'Institut Geogràfic Nacional espanyol(<a href="http://www.ign.es/">IGN</a>) i del Sistema Cartogràfic Nacional (<a href="http://www.scne.es/">SCNE</a>)
|
||||
amb llicència per a reutilització sota <a href="https://creativecommons.org/licenses/by/4.0/">CC BY 4.0</a>.
|
||||
contributors_za_html: |-
|
||||
<strong>Sud-àfrica</strong>: conté dades del
|
||||
<a href="http://www.ngi.gov.za/">Chief Directorate:
|
||||
National Geo-Spatial Information</a>, drets d'autor reservats per l'estat.
|
||||
contributors_gb_html: '<strong>Regne Unit</strong>: Conté dades del Ordnance
|
||||
contributors_gb_html: '<strong>Regne Unit</strong>: Conté dades de l''Ordnance
|
||||
Survey © Drets d''autor de la Corona i de la base de dades 2010-19.'
|
||||
contributors_footer_1_html: |-
|
||||
Per a més detalls sobre aquesta i d'altres fonts que han estat utilitzades per millorar els mapes de l'OpenStreetMap, visiteu la pàgina dedicada als <a
|
||||
href="http://wiki.openstreetmap.org/wiki/Contributors">Col·laboradors</a> del wiki d'OSM.
|
||||
href="https://wiki.openstreetmap.org/wiki/Contributors">Col·laboradors</a> del wiki d'OSM.
|
||||
contributors_footer_2_html: La inclusió de dades a l'OpenStreetMap no implica
|
||||
que el proveïdor original de les dades dona suport a l'OpenStreetMap, proporciona
|
||||
cap garantia o accepta cap responsabilitat.
|
||||
|
@ -1974,7 +2012,7 @@ ca:
|
|||
que ha estat afegit a la base de dades d'OpenStreetMap o a aquest web, si
|
||||
us plau aneu a la pàgina web dedicada al <a href="http://www.osmfoundation.org/wiki/License/Takedown_procedure">Procediment
|
||||
per eliminar dades protegides pels drets d'autor</a> o empleneu aquest <a
|
||||
href="https://dmca.openstreetmap.org/">formulari en línia.</a>.
|
||||
href="https://dmca.openstreetmap.org/">formulari en línia</a>.
|
||||
trademarks_title_html: <span id="trademarks"></span>Marques registrades
|
||||
trademarks_1_html: OpenStreetMap, el logotip de la lupa i «State of the Map»
|
||||
són marques registrades de la Fundació OpenStreetMap. Si teniu preguntes
|
||||
|
@ -1998,7 +2036,7 @@ ca:
|
|||
els vostres canvis. Podeu configurar les modificacions com a públiques a la
|
||||
vostra %{user_page}.
|
||||
user_page_link: pàgina d'usuari
|
||||
anon_edits_link_text: Llegeix aquí perquè.
|
||||
anon_edits_link_text: Llegeix aquí per què.
|
||||
id_not_configured: iD no s'ha configurat
|
||||
no_iframe_support: El vostre navegador no és compatible amb iframes HTML, que
|
||||
són necessàries per a aquesta funcionalitat.
|
||||
|
@ -2011,13 +2049,13 @@ ca:
|
|||
map_image: Imatge de mapa (mostra una capa estàndard)
|
||||
embeddable_html: HTML incrustable
|
||||
licence: Llicència
|
||||
export_details_html: Les dades d'OpenStreetMap són publicades sota el termes
|
||||
export_details_html: Les dades d'OpenStreetMap són publicades sota els termes
|
||||
de la <a href="https://opendatacommons.org/licenses/odbl/1.0/">Open Data Commons
|
||||
Open Database License</a> (ODbL).
|
||||
too_large:
|
||||
advice: 'Si l''exportació anterior falla, proveu-ho amb alguna de les fonts
|
||||
incloses a la llista següent:'
|
||||
body: Aquesta zona és massa gran per ser exportada com a dades XML d'OpenStreetMap.
|
||||
body: Aquesta zona és massa gran per a ser exportada com a dades XML d'OpenStreetMap.
|
||||
Feu zoom, seleccioneu una àrea més petita o useu una de les següents fonts
|
||||
per descarregar quantitats grans de dades.
|
||||
planet:
|
||||
|
@ -2096,7 +2134,7 @@ ca:
|
|||
de llistes de correu temàtiques i regionals.
|
||||
forums:
|
||||
title: Fòrums
|
||||
description: Preguntes i debats per als que prefereixen un estil d'interfície
|
||||
description: Preguntes i debats per als qui prefereixen un estil d'interfície
|
||||
de tauler d'anuncis.
|
||||
irc:
|
||||
title: IRC
|
||||
|
@ -2109,7 +2147,7 @@ ca:
|
|||
url: https://welcome.openstreetmap.org/
|
||||
title: Per a organitzacions
|
||||
description: Ets amb una organització que vol usar OpenStreetMap? Troba el
|
||||
que et cal saber a la nostra estoreta de benviguda.
|
||||
que et cal saber al nostre espai de benvinguda.
|
||||
wiki:
|
||||
url: https://wiki.openstreetmap.org/
|
||||
title: Wiki d'OpenStreetMap
|
||||
|
@ -2118,9 +2156,11 @@ ca:
|
|||
removed: El vostre editor d'OpenStreetMap per defecte és el Potlatch. Atès que
|
||||
s'ha discontinuat l'Adobe Flash Player, el Potlach deixarà d'estar disponible
|
||||
des del navegador web.
|
||||
id_html: Alternativament, pots posar a iD com el vostre editor per defecte,
|
||||
el qual s'executa en el vostre navegador de web com Potlatch anteriorment
|
||||
va fer. <a href="%{settings_url}">Canvieu aquí les vostres preferències d'usuari</a>.
|
||||
desktop_html: Encara podeu usar Potlatch <a href="https://www.systemed.net/potlatch/">descarregant
|
||||
l'aplicació d'escriptori per Mac o Windows</a>.
|
||||
id_html: Alternativament, podeu establir iD com al vostre editor per defecte,
|
||||
el qual s'executa en el vostre navegador de web com Potlatch feia anteriorment.
|
||||
<a href="%{settings_url}">Canvieu aquí les vostres preferències</a>.
|
||||
sidebar:
|
||||
search_results: Resultats de la cerca
|
||||
close: Tanca
|
||||
|
@ -2132,7 +2172,7 @@ ca:
|
|||
to: A
|
||||
where_am_i: On és això?
|
||||
where_am_i_title: Descriu la localització actual fent servir el motor de cerca
|
||||
submit_text: Vés-hi
|
||||
submit_text: Ves-hi
|
||||
reverse_directions_text: Inverteix la direcció
|
||||
key:
|
||||
table:
|
||||
|
@ -2233,9 +2273,9 @@ ca:
|
|||
o una via, com ara el nom d'un restaurant o la velocitat màxima d'una carretera.
|
||||
rules:
|
||||
title: Normes
|
||||
paragraph_1_html: "L'OpenStreetMap té poques les regles formals però esperem
|
||||
paragraph_1_html: "L'OpenStreetMap té poques les regles formals, però esperem
|
||||
que tots els participants col·laborin i es comuniquin amb la comunitat.
|
||||
Si voler dur a terme\naltres activitats que no siguin l'edició manual, llegiu
|
||||
Si voleu dur a terme\naltres activitats que no siguin l'edició manual, llegiu
|
||||
i seguiu les directrius d' \n<a href=\"http://wiki.openstreetmap.org/wiki/Import/Guidelines\">Importació</a>
|
||||
i \n<a href=\"http://wiki.openstreetmap.org/wiki/Automated_Edits_code_of_conduct\">Edició
|
||||
Automàtica</a>."
|
||||
|
@ -2244,12 +2284,12 @@ ca:
|
|||
paragraph_1_html: "OpenStreetMap té diversos recursos per a conèixer aquest
|
||||
projecte, per a plantejar i respondre preguntes, i per a debatre i documentar
|
||||
de forma col·laborativa qüestions de cartografia. \n<a href='%{help_url}'>Ajuda</a>.
|
||||
Ets amb una organització que vol usar OpenStreetMap?<a href='https://welcome.openstreetmap.org/'>Fes
|
||||
un cop d'ull a la nostra estoreta de benviguda."
|
||||
Ets amb una organització que vol usar OpenStreetMap?<a href='https://welcome.openstreetmap.org/'>Doneu
|
||||
un cop d'ull a la nostra zona de benvinguda."
|
||||
start_mapping: Comença a editar el mapa
|
||||
add_a_note:
|
||||
title: No tens temps per editar? Escriu una nota
|
||||
paragraph_1_html: Si només voleu fer una petita modificació però no disposeu
|
||||
paragraph_1_html: Si només voleu fer una petita modificació, però no disposeu
|
||||
del temps per registrar-vos i aprendre a editar, deixeu una nota al mapa.
|
||||
paragraph_2_html: 'Només cal que us dirigiu al<a href=''%{map_url}''>mapa</a>
|
||||
i cliqueu la icona de la nota: <span class=''icon note''></span>. Això afegirà
|
||||
|
@ -2261,7 +2301,7 @@ ca:
|
|||
public: Públic (mostrat a la llista de traces i com a punts anònims no ordenats)
|
||||
trackable: Traçable (només compartit com a punts anònims ordenats segons marques
|
||||
temporals)
|
||||
identifiable: Identificable (mostrat a la llista de traes i com a punts identificables
|
||||
identifiable: Identificable (mostrat a la llista de traces i com a punts identificables
|
||||
ordenats segons marques temporals)
|
||||
new:
|
||||
upload_trace: Pujar traça GPS
|
||||
|
@ -2278,10 +2318,10 @@ ca:
|
|||
upload_failed: No s'ha pogut carregar el GPX. Un administrador ha estat alertat
|
||||
de l'error. Proveu-ho de nou
|
||||
traces_waiting:
|
||||
one: Teniu %{count} traça esperant en cua per a pujar. Espereu a que aquesta
|
||||
one: Teniu %{count} traça esperant en cua per a pujar. Espereu que aquesta
|
||||
traça acabi abans de pujar-ne més, per tal de no blocar la cua per a altres
|
||||
usuaris.
|
||||
other: Teniu %{count} traces esperant en cua per a pujar. Espereu a que aquestes
|
||||
other: Teniu %{count} traces esperant en cua per a pujar. Espereu que aquestes
|
||||
traces acabin abans de pujar-ne més, per tal de no blocar la cua per a altres
|
||||
usuaris.
|
||||
edit:
|
||||
|
@ -2377,7 +2417,12 @@ ca:
|
|||
web per obtenir més informació.
|
||||
need_to_see_terms: El vostre accés a l'API està suspès temporalment. Inicieu
|
||||
sessió a la interfície web per veure les condicions de col·laboració. No cal
|
||||
cal que les accepteu, però sí que les llegiu.
|
||||
que les accepteu, però sí que les llegiu.
|
||||
settings_menu:
|
||||
account_settings: Paràmetres del compte
|
||||
oauth1_settings: Paràmetres OAuth 1
|
||||
oauth2_applications: Aplicacions OAuth 2
|
||||
oauth2_authorizations: Autoritzacions OAuth 2
|
||||
oauth:
|
||||
authorize:
|
||||
title: Autoritzeu l'accés al vostre compte
|
||||
|
@ -2421,7 +2466,7 @@ ca:
|
|||
show:
|
||||
title: Detalls OAuth per %{app_name}
|
||||
key: 'Clau de consumidor:'
|
||||
secret: 'Pregunta secret del consumidor:'
|
||||
secret: 'Pregunta secreta del consumidor:'
|
||||
url: 'URL del testimoni de sol·licitud:'
|
||||
access_url: 'URL del testimoni d''accés:'
|
||||
authorize_url: 'Autoritzeu URL:'
|
||||
|
@ -2458,22 +2503,53 @@ ca:
|
|||
flash: S'ha destruït el registre de l'aplicació client
|
||||
oauth2_applications:
|
||||
index:
|
||||
title: Les meves aplicacions client
|
||||
no_applications_html: Teniu cap aplicació que voldríeu registrar per usar amb
|
||||
nosaltres utilitzant l'estàndard %{oauth2}? Heu de registrar la vostra aplicació
|
||||
abans que pugui fer peticions OAuth a aquest servei.
|
||||
new: Registra una nova aplicació
|
||||
name: Nom
|
||||
permissions: Permisos
|
||||
application:
|
||||
edit: Edita
|
||||
delete: Esborra
|
||||
confirm_delete: Vols eliminar aquesta aplicació?
|
||||
new:
|
||||
title: Registra una aplicació nova
|
||||
edit:
|
||||
title: Editeu la vostra aplicació
|
||||
show:
|
||||
edit: Edita
|
||||
delete: Esborra
|
||||
confirm_delete: Voleu eliminar aquesta aplicació?
|
||||
client_id: ID del client
|
||||
client_secret: Secret del client
|
||||
client_secret_warning: Assegureu-vos de desar aquest secret - no s'hi podrà
|
||||
tornar a accedir
|
||||
permissions: Permisos
|
||||
redirect_uris: Redirigeix URIs
|
||||
not_found:
|
||||
sorry: No es pot trobar l'aplicació.
|
||||
oauth2_authorizations:
|
||||
new:
|
||||
title: Cal autorització
|
||||
introduction: Voleu autoritzar %{application} a accedir al vostre compte amb
|
||||
els permisos següents?
|
||||
authorize: Autoritza
|
||||
deny: Refusa
|
||||
error:
|
||||
title: S’ha produït un error.
|
||||
show:
|
||||
title: Codi d'autorització
|
||||
oauth2_authorized_applications:
|
||||
index:
|
||||
title: Les meves aplicacions autoritzades
|
||||
application: Aplicació
|
||||
permissions: Permisos
|
||||
no_applications_html: Encara no heu autoritzat cap aplicació %{oauth2}.
|
||||
application:
|
||||
revoke: Revoca l'accés
|
||||
confirm_revoke: Voleu revocar l'accés per aquesta aplicació?
|
||||
users:
|
||||
new:
|
||||
title: Registreu-vos-hi
|
||||
|
@ -2485,7 +2561,7 @@ ca:
|
|||
header: Lliure i editable
|
||||
html: |-
|
||||
<p>A diferència d'altres mapes, OpenStreetMap el crea gent com vós i qualsevol persona el pot modificar, actualitzar, descarregar i usar.</p>
|
||||
<p>Registreu-vos i comenceu a col·laborar. Us enviarem un e-mail per confirmar el vostre compte.</p>
|
||||
<p>Registreu-vos i comenceu a col·laborar. Us enviarem un e-mail per a confirmar el vostre compte.</p>
|
||||
email address: 'Adreça de correu:'
|
||||
confirm email address: 'Confirmeu l''adreça de correu electrònic:'
|
||||
display name: 'Nom que es mostrarà:'
|
||||
|
@ -2506,8 +2582,8 @@ ca:
|
|||
contributor_terms_explain: Aquest acord regula els termes de les vostres contribucions
|
||||
actuals i futures.
|
||||
read_ct: He llegit les condicions de col·laboració anteriors i hi estic d'acord
|
||||
tou_explain_html: Aquestes %{tou_link} regulen l'us del lloc web i altres infraestructures
|
||||
propocionades per l'OSFM. Cliqueu l'enllaç, llegiu el text i accpteu-lo.
|
||||
tou_explain_html: Aquestes %{tou_link} regulen l'ús del lloc web i altres infraestructures
|
||||
proporcionades per l'OSFM. Cliqueu l'enllaç, llegiu el text i accepteu-lo.
|
||||
read_tou: He llegit i accepto les condicions d'us
|
||||
consider_pd: A més de tot l'anterior, accepto que les meves contribucions siguin
|
||||
de domini públic
|
||||
|
@ -2526,6 +2602,9 @@ ca:
|
|||
italy: Itàlia
|
||||
rest_of_world: Resta del món
|
||||
terms_declined_flash:
|
||||
terms_declined_html: Ens sap greu que hàgiu decidit no acceptar els nous termes
|
||||
de les contribucions. Per més informació, vegeu %{terms_declined_link}.
|
||||
terms_declined_link: aquesta pàgina wiki
|
||||
terms_declined_url: https://wiki.openstreetmap.org/wiki/Contributor_Terms_Declined
|
||||
no_such_user:
|
||||
title: Aquest usuari no existeix
|
||||
|
@ -2543,8 +2622,10 @@ ca:
|
|||
my profile: El meu perfil
|
||||
my settings: Les meves preferències
|
||||
my comments: Els meus comentaris
|
||||
my_preferences: Les meves preferències
|
||||
blocks on me: Blocs sobre mi
|
||||
blocks by me: Blocs fets per mi
|
||||
edit_profile: Edita el perfil
|
||||
send message: Envia un missatge
|
||||
diary: Diari
|
||||
edits: Edicions
|
||||
|
@ -2556,19 +2637,13 @@ ca:
|
|||
ct status: 'Termes de col·laboració:'
|
||||
ct undecided: No decidit
|
||||
ct declined: Rebutjat
|
||||
latest edit: 'Darrer edició fa (%{ago}):'
|
||||
latest edit: 'Darrera edició fa (%{ago}):'
|
||||
email address: 'Adreça de correu:'
|
||||
created from: 'Creat a partir de:'
|
||||
status: 'Estat:'
|
||||
spam score: 'Puntuació Spam:'
|
||||
spam score: 'Puntuació de contingut brossa:'
|
||||
description: Descripció
|
||||
user location: Ubicació de l'usuari
|
||||
my friends: Les meves amistats
|
||||
no friends: Encara no has afegit cap amic.
|
||||
km away: '%{count}km de distància'
|
||||
m away: '%{count}m de distància'
|
||||
nearby users: Altres usuaris propers
|
||||
no nearby users: Cap usuari manifesta cartografiar a prop.
|
||||
role:
|
||||
administrator: Aquest usuari és administrador
|
||||
moderator: Aquest usuari és moderador
|
||||
|
@ -2589,15 +2664,7 @@ ca:
|
|||
unhide_user: No amaguis aquest usuari
|
||||
delete_user: Suprimeix aquest usuari
|
||||
confirm: Confirma
|
||||
friends_changesets: conjunts de canvis dels vostres amics
|
||||
friends_diaries: entrades de diari dels vostres amics
|
||||
nearby_changesets: conjunts de canvis d'usuaris propers
|
||||
nearby_diaries: entrades de diari d'usuaris propers
|
||||
report: Denuncieu aquest usuari
|
||||
popup:
|
||||
your location: La vostra ubicació
|
||||
nearby mapper: Cartògraf proper
|
||||
friend: Amic
|
||||
account:
|
||||
title: Edita el compte
|
||||
my settings: Preferències
|
||||
|
@ -2636,9 +2703,8 @@ ca:
|
|||
link text: què és això?
|
||||
save changes button: Desa els canvis
|
||||
make edits public button: Fes totes les meves modificacions públiques
|
||||
return to profile: Torna al perfil
|
||||
flash update success confirm needed: Informació de l'usuari ha actualitzat correctament.
|
||||
Comproveu el vostre correu per confirmar la vostra adreça de correu electrònic
|
||||
Comproveu el vostre correu per a confirmar la vostra adreça de correu electrònic
|
||||
nova.
|
||||
flash update success: Informació de l'usuari ha actualitzat correctament.
|
||||
set_home:
|
||||
|
@ -2660,6 +2726,7 @@ ca:
|
|||
suspended:
|
||||
title: Compte suspès
|
||||
heading: Compte suspès
|
||||
support: assistència
|
||||
body_html: |-
|
||||
<p>
|
||||
El vostre compte ha estat suspès automàticament a causa
|
||||
|
@ -2682,7 +2749,7 @@ ca:
|
|||
Utilitzant el formulari de sota.
|
||||
option_2: |-
|
||||
Si ja teniu un compte, podeu iniciar sessió al vostre compte
|
||||
utilitzant el vostre nom d'usuari i contrasenya i, a continuació associar el compte amb el ID a la configuració d'usuari.
|
||||
utilitzant el vostre nom d'usuari i contrasenya i, a continuació associar el compte amb l'ID a la configuració d'usuari.
|
||||
user_role:
|
||||
filter:
|
||||
not_a_role: La cadena `%{role}' no és un rol vàlid.
|
||||
|
@ -2695,8 +2762,8 @@ ca:
|
|||
heading: Confirmi la concessió de rol
|
||||
are_you_sure: Esteu segur que voleu concedir el paper "%{role}" a l'usuari "%{name}"?
|
||||
confirm: Confirma
|
||||
fail: Podria concedeix paper "%{role}" a l'usuari "%{name}". Si us plau, comproveu
|
||||
que l'usuari i el paper són vàlids.
|
||||
fail: No s'ha pogut concedir el rol "%{role}" a l'usuari "%{name}". Comproveu
|
||||
que l'usuari i el rol són vàlids.
|
||||
revoke:
|
||||
title: Confirmar revocació de rol
|
||||
heading: Confirmar revocació de rol
|
||||
|
@ -2733,8 +2800,8 @@ ca:
|
|||
create:
|
||||
try_contacting: Si us plau, intentar contactar-se amb l'usuari abans de blocatge
|
||||
d'ells i donar-los un termini raonable per respondre.
|
||||
try_waiting: Si us plau tracti de donar l'usuari d'un termini raonable per respondre
|
||||
abans de blocatge d'ells.
|
||||
try_waiting: Mireu de donar a l'usuari un termini raonable per respondre abans
|
||||
de bloquejar-lo.
|
||||
flash: Crear un bloc a l'usuari %{name}.
|
||||
update:
|
||||
only_creator_can_edit: Només el moderador que ha creat aquest bloc pot editar-lo.
|
||||
|
@ -2742,11 +2809,11 @@ ca:
|
|||
index:
|
||||
title: Blocs de l'usuari
|
||||
heading: Llista de quadres de l'usuari
|
||||
empty: No hi ha blocs s'han fet encara.
|
||||
empty: Encara no s'ha fet cap bloc.
|
||||
revoke:
|
||||
title: Revocació de bloc en %{block_on}
|
||||
heading_html: Revocació de bloc en %{block_on} %{block_by}
|
||||
time_future: Aquest bloc va a acabar en %{time}.
|
||||
time_future: Aquest blocatge acabarà en %{time}.
|
||||
past: Aquest blocatge va acabar a %{time} i ara no es pot revocar.
|
||||
confirm: Esteu segur que voleu revocar aquest bloc?
|
||||
revoke: Revoca!
|
||||
|
@ -2780,7 +2847,7 @@ ca:
|
|||
blocks_by:
|
||||
title: Blocs %{name}
|
||||
heading_html: Llista de blocs %{name}
|
||||
empty: '%{name} no ha fet cap blocs encara.'
|
||||
empty: '%{name} no ha fet cap bloc encara.'
|
||||
show:
|
||||
title: '%{block_on} blocat per %{block_by}'
|
||||
heading_html: '%{block_on} blocat per %{block_by}'
|
||||
|
@ -2807,8 +2874,8 @@ ca:
|
|||
status: Estat
|
||||
revoker_name: Revocat per
|
||||
showing_page: Pàgina %{page}
|
||||
next: Endavant »
|
||||
previous: « Enrere
|
||||
next: Següent »
|
||||
previous: « Anterior
|
||||
notes:
|
||||
index:
|
||||
title: Notes enviades o comentades per %{user}
|
||||
|
@ -2834,11 +2901,12 @@ ca:
|
|||
custom_dimensions: Estableix dimensions personalitzades
|
||||
format: 'Format:'
|
||||
scale: 'Escala:'
|
||||
image_dimensions: La imatge mostrarà la capa estàndard a %{width} x %{height}
|
||||
download: Descàrrega
|
||||
short_url: URL curta
|
||||
short_url: URL curt
|
||||
include_marker: Inclou el marcador
|
||||
center_marker: Centra el mapa al marcador
|
||||
paste_html: Engnaxa l'HTML per inserir-ho a un lloc web
|
||||
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
|
||||
embed:
|
||||
|
@ -2876,12 +2944,14 @@ ca:
|
|||
copyright: © <a href='%{copyright_url}'>Col·laboradors d'OpenStreetMap</a>
|
||||
donate_link_text: <a class='donate-attr' href='%{donate_url}'>Feu un donatiu</a>
|
||||
terms: <a href='%{terms_url}' target='_blank'>Termes del lloc web i l'API</a>
|
||||
cyclosm: Estil de les tessel·les fet per <a href='%{cyclosm_url}' target='_blank'>CyclOSM</a>
|
||||
hostatjat per <a href='%{osmfrance_url}' target='_blank'>OpenStreetMap França</a>
|
||||
thunderforest: Tessel·les cortesia d' <a href='%{thunderforest_url}' target='_blank'>Andy
|
||||
Allan</a>
|
||||
opnvkarte: Tessel·les cortesia de <a href='%{memomaps_url}' target='_blank'>MeMoMaps</a>
|
||||
hotosm: L'estil de les tessel·les fet per <a href='%{hotosm_url}' target='_blank'>Humanitarian
|
||||
OpenStreetMap Team</a> hostatjat per <a href='%{osmfrance_url}' target='_blank'>OpenStreetMap
|
||||
France</a>
|
||||
França</a>
|
||||
site:
|
||||
edit_tooltip: Modifica el mapa
|
||||
edit_disabled_tooltip: Augmenteu el zoom per modificar el mapa
|
||||
|
@ -2890,7 +2960,7 @@ ca:
|
|||
map_notes_zoom_in_tooltip: Feu zoom per veure les notes del mapa
|
||||
map_data_zoom_in_tooltip: Feu zoom per veure les dades del mapa
|
||||
queryfeature_tooltip: Consulta característiques
|
||||
queryfeature_disabled_tooltip: Apropeu-vos per consultar característiques
|
||||
queryfeature_disabled_tooltip: Apropeu-vos per a consultar característiques
|
||||
changesets:
|
||||
show:
|
||||
comment: Comentari
|
||||
|
@ -2900,7 +2970,7 @@ ca:
|
|||
unhide_comment: mostrar
|
||||
notes:
|
||||
new:
|
||||
intro: Heu trobat un error o bé hi falta res? Informeu-ne a d'altres col·laboradors
|
||||
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.
|
||||
advice: La vostra nota és pública i pot utilitzar-se per actualitzar el mapa,
|
||||
|
@ -2990,7 +3060,7 @@ ca:
|
|||
stay_roundabout_without_exit: Segueix a la rotonda - %{name}
|
||||
start_without_exit: Comença a %{name}
|
||||
destination_without_exit: Arriba a la destinació.
|
||||
against_oneway_without_exit: Anar en contra-direcció a %{name}
|
||||
against_oneway_without_exit: Anar contra direcció a %{name}
|
||||
end_oneway_without_exit: Fi del sentit únic a %{name}
|
||||
roundabout_with_exit: A la rotonda, agafar la sortida %{exit} a %{name}
|
||||
roundabout_with_exit_ordinal: A la rotonda agafeu la sortida %{exit} cap a
|
||||
|
@ -3051,7 +3121,7 @@ ca:
|
|||
not_empty: La redacció no és buida. Si us plau, desfeu totes les versions que
|
||||
pertanyen a aquesta redacció abans de destruir-la.
|
||||
flash: Redacció suprimida
|
||||
error: Ha hagut un error en suprimir aquesta redacció.
|
||||
error: Hi ha hagut un error en suprimir aquesta redacció.
|
||||
validations:
|
||||
leading_whitespace: té un espai en blanc davant
|
||||
trailing_whitespace: té un espai en blanc al final
|
||||
|
|
|
@ -341,6 +341,11 @@ ce:
|
|||
index:
|
||||
title_all: OpenStreetMap тӀехь дина нисдарийн дийцар
|
||||
title_particular: 'OpenStreetMap #%{changeset_id} тӀехь дина нисдарийн дийцар'
|
||||
dashboards:
|
||||
popup:
|
||||
friend: ДоттагӀ
|
||||
show:
|
||||
my friends: ДоттагӀий
|
||||
diary_entries:
|
||||
new:
|
||||
title: Керла дӀайаздар дневник чохь
|
||||
|
@ -955,10 +960,7 @@ ce:
|
|||
spam score: 'Спаман маххадор:'
|
||||
description: Цуьнах лаьцна
|
||||
user location: Декъашхо волу/йолу меттиг
|
||||
my friends: ДоттагӀий
|
||||
report: Хаамбе хӀокху декъашхох
|
||||
popup:
|
||||
friend: ДоттагӀ
|
||||
account:
|
||||
current email address: 'Карара электронан поштан адрес:'
|
||||
openid:
|
||||
|
|
|
@ -1,7 +1,9 @@
|
|||
# Messages for Czech (čeština)
|
||||
# Exported from translatewiki.net
|
||||
# Export driver: phpyaml
|
||||
# Author: AlesFiala2002
|
||||
# Author: Bilbo
|
||||
# Author: Bilykralik16
|
||||
# Author: Chmee2
|
||||
# Author: Cvanca
|
||||
# Author: DemonioCZ
|
||||
|
@ -478,6 +480,28 @@ cs:
|
|||
timeout:
|
||||
sorry: Omlouváme se, ale vámi požadované komentáře k sadě změn se načítaly příliš
|
||||
dlouho.
|
||||
dashboards:
|
||||
contact:
|
||||
km away: '%{count} km'
|
||||
m away: '%{count} m'
|
||||
popup:
|
||||
your location: Vaše poloha
|
||||
nearby mapper: Nedaleký uživatel
|
||||
friend: Přítel
|
||||
show:
|
||||
title: Moje nástěnka
|
||||
no_home_location_html: '%{edit_profile_link} a nastavte si domovskou lokaci,
|
||||
abyste viděli uživatele ve vašem okolí.'
|
||||
edit_your_profile: Upravte si profil
|
||||
my friends: Moji přátelé
|
||||
no friends: Zatím jste nepřidali žádné přátele.
|
||||
nearby users: Další uživatelé poblíž
|
||||
no nearby users: Nejsou známi žádní uživatelé, kteří by uvedli domov blízko
|
||||
vás.
|
||||
friends_changesets: sady změn přátel
|
||||
friends_diaries: záznamy v denících přátel
|
||||
nearby_changesets: sady změn uživatelů poblíž
|
||||
nearby_diaries: záznamy v denících uživatelů poblíž
|
||||
diary_entries:
|
||||
new:
|
||||
title: Nový záznam do deníku
|
||||
|
@ -813,6 +837,7 @@ cs:
|
|||
window_construction: Konstrukce oken
|
||||
winery: Vinařství
|
||||
"yes": Řemeslná dílna
|
||||
crossing: Přechod
|
||||
emergency:
|
||||
access_point: Přístupový bod
|
||||
ambulance_station: Stanoviště záchranné služby
|
||||
|
@ -1068,6 +1093,7 @@ cs:
|
|||
hill: Kopec
|
||||
hot_spring: Horké prameny
|
||||
island: Ostrov
|
||||
isthmus: Pevninská šíje
|
||||
land: Země
|
||||
marsh: Mokřina
|
||||
moor: Vřesoviště
|
||||
|
@ -1082,10 +1108,13 @@ cs:
|
|||
sand: Písčiny
|
||||
scree: Osyp
|
||||
scrub: Rumiště
|
||||
shingle: Oblázky
|
||||
spring: Pramen
|
||||
stone: Kámen
|
||||
strait: Úžina
|
||||
tree: Strom
|
||||
tree_row: Alej
|
||||
tundra: Tundra
|
||||
valley: Údolí
|
||||
volcano: Sopka
|
||||
water: Vodní plocha
|
||||
|
@ -1482,8 +1511,10 @@ cs:
|
|||
intro_text: OpenStreetMap je mapa světa, vytvořená lidmi jako vy a volně využitelná
|
||||
pod otevřenou licencí.
|
||||
intro_2_create_account: Vytvořit uživatelský účet
|
||||
hosting_partners_html: Hosting podporují %{ucl}, %{bytemark}, a další %{partners}.
|
||||
hosting_partners_html: Hosting podporují %{ucl}, %{fastly}, %{bytemark} a další
|
||||
%{partners}.
|
||||
partners_ucl: UCL
|
||||
partners_fastly: Fastly
|
||||
partners_bytemark: Bytemark Hosting
|
||||
partners_partners: partneři
|
||||
tou: Podmínky užití
|
||||
|
@ -1970,8 +2001,11 @@ cs:
|
|||
BY</a>), <a href="https://www.vorarlberg.at/vorarlberg/bauen_wohnen/bauen/vermessung_geoinformation/weitereinformationen/services/wmsdienste.htm">země
|
||||
Vorarlbersko</a> a země Tyrolsko (pod <a href="https://www.tirol.gv.at/applikationen/e-government/data/nutzungsbedingungen/">CC
|
||||
BY AT s dodatky</a>).'
|
||||
contributors_au_html: '<strong>Austrálie</strong>: Obsahuje data předměstí
|
||||
založená na datech Australského statistického úřadu.'
|
||||
contributors_au_html: '<strong>Austrálie</strong>: Zahrnuje nebo využívá Administrative
|
||||
Boundaries © <a href="https://geoscape.com.au/legal/data-copyright-and-disclaimer/">Geoscape
|
||||
Australia</a>, které Commonwealth of Australia poskytuje za podmínek <a
|
||||
href="https://creativecommons.org/licenses/by/4.0/deed.cs">licence Creative
|
||||
Commons Uveďte původ 4.0 Mezinárodní (CC BY 4.0)</a>.'
|
||||
contributors_ca_html: '<strong>Kanada</strong>: Obsahuje data z GeoBase®,
|
||||
GeoGratis (© Department of Natural Resources Canada), CanVec (©
|
||||
Department of Natural Resources Canada) a StatCan (Geography Division, Statistics
|
||||
|
@ -2152,7 +2186,7 @@ cs:
|
|||
desktop_html: Potlatch můžete stále používat <a href="https://www.systemed.net/potlatch/">stažením
|
||||
desktopové aplikace pro Mac a Windows</a>.
|
||||
id_html: Nebo si můžete jako preferovaný editor nastavit iD, které běží ve webovém
|
||||
prohlížeči tak, jak dříve fungoval Potlatch. <a href="%{settings_url}">Nastavení
|
||||
prohlížeči tak, jak dříve fungoval Potlatch. <a href="%{settings_url}">Preference
|
||||
můžete změnit zde</a>.
|
||||
sidebar:
|
||||
search_results: Výsledky hledání
|
||||
|
@ -2367,13 +2401,16 @@ cs:
|
|||
in: v
|
||||
index:
|
||||
public_traces: Veřejné GPS stopy
|
||||
my_traces: Moje GPS stopy
|
||||
my_traces: Moje stopy
|
||||
public_traces_from: Veřejné GPS stopy uživatele %{user}
|
||||
description: Procházení nedávno nahraných GPS stop
|
||||
tagged_with: se štítky %{tags}
|
||||
empty_html: Nic tu ještě není. <a href='%{upload_link}'>Nahrajte novou stopu</a>
|
||||
nebo si něco o GPS stopách přečtěte na <a href='https://wiki.openstreetmap.org/wiki/Cs:Beginners_Guide_1.2?uselang=cs'>wiki</a>.
|
||||
upload_trace: Nahrát stopu
|
||||
all_traces: Všechny stopy
|
||||
traces_from: Veřejné stopy uživatele %{user}
|
||||
remove_tag_filter: Vymazat filtr tagů
|
||||
destroy:
|
||||
scheduled_for_deletion: Stopa označena ke smazání
|
||||
make_public:
|
||||
|
@ -2405,6 +2442,11 @@ cs:
|
|||
need_to_see_terms: Váš přístup k API byl dočasně zablokován. Přihlašte se prosím
|
||||
do webového rozhraní a přečtěte si Podmínky pro přispěvatele. Nemusíte je
|
||||
odsouhlasit, musíte si je ale zobrazit.
|
||||
settings_menu:
|
||||
account_settings: Nastavení účtu
|
||||
oauth1_settings: Nastavení OAuth 1
|
||||
oauth2_applications: Aplikace OAuth 2
|
||||
oauth2_authorizations: Autorizace OAuth 2
|
||||
oauth:
|
||||
authorize:
|
||||
title: Autorizovat přístup k vašemu účtu
|
||||
|
@ -2604,6 +2646,7 @@ cs:
|
|||
my settings: Moje nastavení
|
||||
my comments: Moje komentáře
|
||||
my_preferences: Moje preference
|
||||
my_dashboard: Moje nástěnka
|
||||
blocks on me: Moje zablokování
|
||||
blocks by me: Zablokování mnou
|
||||
edit_profile: Upravit profil
|
||||
|
@ -2625,15 +2668,6 @@ cs:
|
|||
spam score: 'Spam skóre:'
|
||||
description: Popis
|
||||
user location: Poloha uživatele
|
||||
set_location_html: <a href="%{edit_profile_url}">Upravte svůj profil</a> a nastavte
|
||||
si polohu domova, abyste viděli uživatele poblíž.
|
||||
my friends: Moji přátelé
|
||||
no friends: Zatím jste nepřidali žádné přátele.
|
||||
km away: '%{count} km'
|
||||
m away: '%{count} m'
|
||||
nearby users: Další uživatelé poblíž
|
||||
no nearby users: Nejsou známi žádní uživatelé, kteří by uvedli domov blízko
|
||||
vás.
|
||||
role:
|
||||
administrator: Tento uživatel je správce
|
||||
moderator: Tento uživatel je moderátor
|
||||
|
@ -2654,15 +2688,7 @@ cs:
|
|||
unhide_user: Zobrazit tohoto uživatele
|
||||
delete_user: Odstranit tohoto uživatele
|
||||
confirm: Potvrdit
|
||||
friends_changesets: sady změn přátel
|
||||
friends_diaries: záznamy v denících přátel
|
||||
nearby_changesets: sady změn uživatelů poblíž
|
||||
nearby_diaries: záznamy v denících uživatelů poblíž
|
||||
report: Nahlásit tohoto uživatele
|
||||
popup:
|
||||
your location: Vaše poloha
|
||||
nearby mapper: Nedaleký uživatel
|
||||
friend: Přítel
|
||||
account:
|
||||
title: Upravit účet
|
||||
my settings: Moje nastavení
|
||||
|
@ -2700,10 +2726,6 @@ cs:
|
|||
link text: co to znamená?
|
||||
save changes button: Uložit změny
|
||||
make edits public button: Zvěřejnit všechny moje úpravy
|
||||
return to profile: Zpět na profil
|
||||
oauth1 settings: Nastavení OAuth 1
|
||||
oauth2 applications: Aplikace OAuth 2
|
||||
oauth2 authorizations: Autorizace OAuth 2
|
||||
flash update success confirm needed: Uživatelské údaje byly úspěšně aktualizovány.
|
||||
Zkontrolujte si e-mail, měla by vám přijít výzva k potvrzení nové e-mailové
|
||||
adresy.
|
||||
|
|
|
@ -308,6 +308,22 @@ cy:
|
|||
index:
|
||||
title_all: Trafodaeth OpenStreetMa o'r setiau-newid
|
||||
title_particular: 'Trafodaeth OpenStreetMap set-newid #%{changeset_id}'
|
||||
dashboards:
|
||||
contact:
|
||||
km away: '%{count}km i ffwrdd'
|
||||
m away: '%{count}m i ffwrdd'
|
||||
popup:
|
||||
your location: Eich lleoliad
|
||||
nearby mapper: Mapiwr gerllaw
|
||||
friend: Cyfaill
|
||||
show:
|
||||
no friends: Nid ydych wedi ychwanegu cyfaill eto.
|
||||
nearby users: Defnyddwyr eraill gerllaw
|
||||
no nearby users: Nid oes defnyddwyr gerllaw sy'n datgelu eu bod yn mapio eto.
|
||||
friends_changesets: setiau-newid eich cyfeillion
|
||||
friends_diaries: cofnodion dyddiaduron cyfeillion
|
||||
nearby_changesets: setiau-newid gerllaw
|
||||
nearby_diaries: cofnodion dyddiaduron defnyddwyr gerllaw
|
||||
diary_entries:
|
||||
new:
|
||||
title: Cofnod Dyddiadur Newydd
|
||||
|
@ -1455,11 +1471,6 @@ cy:
|
|||
status: 'Statws:'
|
||||
description: Disgrifiad
|
||||
user location: Lleoliad defnyddiwr
|
||||
no friends: Nid ydych wedi ychwanegu cyfaill eto.
|
||||
km away: '%{count}km i ffwrdd'
|
||||
m away: '%{count}m i ffwrdd'
|
||||
nearby users: Defnyddwyr eraill gerllaw
|
||||
no nearby users: Nid oes defnyddwyr gerllaw sy'n datgelu eu bod yn mapio eto.
|
||||
role:
|
||||
administrator: Mae'r defnyddiwr hwn yn weinyddwr.
|
||||
moderator: Mae'r defnyddiwr hwn yn gymedrolwr.
|
||||
|
@ -1472,14 +1483,6 @@ cy:
|
|||
unhide_user: Datguddio'r Defnyddiwr
|
||||
delete_user: Dileu'r Defnyddiwr
|
||||
confirm: Cadarnhau
|
||||
friends_changesets: setiau-newid eich cyfeillion
|
||||
friends_diaries: cofnodion dyddiaduron cyfeillion
|
||||
nearby_changesets: setiau-newid gerllaw
|
||||
nearby_diaries: cofnodion dyddiaduron defnyddwyr gerllaw
|
||||
popup:
|
||||
your location: Eich lleoliad
|
||||
nearby mapper: Mapiwr gerllaw
|
||||
friend: Cyfaill
|
||||
account:
|
||||
title: Golygu'r cyfrif
|
||||
my settings: Fy ngosodiadau
|
||||
|
@ -1502,7 +1505,6 @@ cy:
|
|||
link text: beth yw hwn?
|
||||
save changes button: Cadw'r Newidiadau
|
||||
make edits public button: Gwneud fy holl olygiadau yn gyhoeddus
|
||||
return to profile: Dychwelyd i'r proffil
|
||||
set_home:
|
||||
flash success: Wedi cadw'r lleoliad cartref
|
||||
go_public:
|
||||
|
|
|
@ -446,6 +446,24 @@ da:
|
|||
timeout:
|
||||
sorry: Desværre tog det for lang tid at indlæse kommentarerne til ændringssættet
|
||||
du har bedt om.
|
||||
dashboards:
|
||||
contact:
|
||||
km away: '%{count}km væk'
|
||||
m away: '%{count}m væk'
|
||||
popup:
|
||||
your location: Din position
|
||||
nearby mapper: Bruger i nærheden
|
||||
friend: Ven
|
||||
show:
|
||||
my friends: Mine venner
|
||||
no friends: Du har ikke tilføjet nogle venner endnu.
|
||||
nearby users: 'Andre brugere i nærheden:'
|
||||
no nearby users: Der er ingen andre brugere der har angivet at de kortlægger
|
||||
i nærheden.
|
||||
friends_changesets: venners ændringssæt
|
||||
friends_diaries: venners blogindlæg
|
||||
nearby_changesets: ændringssæt af brugere i nærheden
|
||||
nearby_diaries: blogindlæg af brugere i nærheden
|
||||
diary_entries:
|
||||
new:
|
||||
title: Nyt blogindlæg
|
||||
|
@ -990,12 +1008,12 @@ da:
|
|||
telescope: Teleskop
|
||||
tower: Tårn
|
||||
utility_pole: Elmast
|
||||
wastewater_plant: Affaldsfabrik
|
||||
wastewater_plant: Vandrensningsanlæg
|
||||
watermill: Vandmølle
|
||||
water_tap: Vandaftapning
|
||||
water_tower: Vandtårn
|
||||
water_well: Brønd
|
||||
water_works: Vandanlæg
|
||||
water_works: Vandværk
|
||||
windmill: Vindmølle
|
||||
works: Fabrik
|
||||
"yes": Menneskeskabt
|
||||
|
@ -2539,13 +2557,6 @@ da:
|
|||
spam score: 'Spambedømmelse:'
|
||||
description: Beskrivelse
|
||||
user location: Brugerposition
|
||||
my friends: Mine venner
|
||||
no friends: Du har ikke tilføjet nogle venner endnu.
|
||||
km away: '%{count}km væk'
|
||||
m away: '%{count}m væk'
|
||||
nearby users: 'Andre brugere i nærheden:'
|
||||
no nearby users: Der er ingen andre brugere der har angivet at de kortlægger
|
||||
i nærheden.
|
||||
role:
|
||||
administrator: Denne bruger er en administrator
|
||||
moderator: Denne bruger er en moderator
|
||||
|
@ -2566,15 +2577,7 @@ da:
|
|||
unhide_user: Skjul ikke længere denne bruger
|
||||
delete_user: Slet denne bruger
|
||||
confirm: Bekræft
|
||||
friends_changesets: venners ændringssæt
|
||||
friends_diaries: venners blogindlæg
|
||||
nearby_changesets: ændringssæt af brugere i nærheden
|
||||
nearby_diaries: blogindlæg af brugere i nærheden
|
||||
report: Rapporter denne bruger
|
||||
popup:
|
||||
your location: Din position
|
||||
nearby mapper: Bruger i nærheden
|
||||
friend: Ven
|
||||
account:
|
||||
title: Rediger konto
|
||||
my settings: Mine indstillinger
|
||||
|
@ -2612,7 +2615,6 @@ da:
|
|||
link text: hvad er dette?
|
||||
save changes button: Gem ændringer
|
||||
make edits public button: Gør alle mine rettelser offentlige
|
||||
return to profile: Tilbage til profil
|
||||
flash update success confirm needed: Brugeroplysningerne blev opdateret. Tjek
|
||||
din e-mail for en besked om at bekræfte din nye e-mailadresse.
|
||||
flash update success: Brugerinformation opdateret.
|
||||
|
|
|
@ -509,6 +509,28 @@ de:
|
|||
timeout:
|
||||
sorry: Leider ist die Liste der Kommentare der Änderungssätze, die du angefordert
|
||||
hast, für den Abruf zu lang.
|
||||
dashboards:
|
||||
contact:
|
||||
km away: '%{count} km entfernt'
|
||||
m away: '%{count} m entfernt'
|
||||
popup:
|
||||
your location: Standort
|
||||
nearby mapper: Mapper in der Nähe
|
||||
friend: Freund
|
||||
show:
|
||||
title: Meine Übersichtsseite
|
||||
no_home_location_html: '%{edit_profile_link} und leg deine Heimatort fest, um
|
||||
Benutzer in der Nähe zu sehen.'
|
||||
edit_your_profile: Bearbeite dein Profil
|
||||
my friends: Meine Freunde
|
||||
no friends: Du hast noch keine Freunde hinzugefügt.
|
||||
nearby users: Mapper in der Nähe
|
||||
no nearby users: Es gibt bisher keine Benutzer, die einen Standort in deiner
|
||||
Nähe angegeben haben.
|
||||
friends_changesets: Änderungssätze deiner Freunde
|
||||
friends_diaries: Blogs deiner Freunde
|
||||
nearby_changesets: Änderungssätze von Benutzern in der Nähe
|
||||
nearby_diaries: Blogs von Benutzern in der Nähe
|
||||
diary_entries:
|
||||
new:
|
||||
title: Neuer Blogeintrag
|
||||
|
@ -843,6 +865,7 @@ de:
|
|||
window_construction: Fensterbauer
|
||||
winery: Weingut
|
||||
"yes": Handwerksgeschäft
|
||||
crossing: Überquerung
|
||||
emergency:
|
||||
access_point: Zugangspunkt
|
||||
ambulance_station: Rettungswache
|
||||
|
@ -1098,6 +1121,7 @@ de:
|
|||
hill: Hügel
|
||||
hot_spring: Heiße Quelle
|
||||
island: Insel
|
||||
isthmus: Isthmus
|
||||
land: Land
|
||||
marsh: Marsch
|
||||
moor: Moor
|
||||
|
@ -1112,10 +1136,13 @@ de:
|
|||
sand: Sand
|
||||
scree: Geröll
|
||||
scrub: Buschland
|
||||
shingle: Geröll
|
||||
spring: Quelle
|
||||
stone: Findling
|
||||
strait: Meerenge
|
||||
tree: Baum
|
||||
tree_row: Baumreihe
|
||||
tundra: Tundra
|
||||
valley: Tal
|
||||
volcano: Vulkan
|
||||
water: Wasser
|
||||
|
@ -1518,9 +1545,10 @@ de:
|
|||
intro_text: OpenStreetMap ist eine Karte der Welt, erstellt von Menschen wie dir
|
||||
und frei verwendbar unter einer offenen Lizenz.
|
||||
intro_2_create_account: Erstelle ein Benutzerkonto
|
||||
hosting_partners_html: Das Hosting wird von %{ucl}, %{bytemark} und anderen %{partners}
|
||||
unterstützt.
|
||||
hosting_partners_html: Das Hosting wird von %{ucl}, %{fastly}, %{bytemark} und
|
||||
anderen %{partners} unterstützt.
|
||||
partners_ucl: UCL
|
||||
partners_fastly: Fastly
|
||||
partners_bytemark: Bytemark Hosting
|
||||
partners_partners: Partnern
|
||||
tou: Nutzungsbedingungen
|
||||
|
@ -2043,8 +2071,11 @@ de:
|
|||
BY AT</a>), des <a href="https://www.vorarlberg.at/vorarlberg/bauen_wohnen/bauen/vermessung_geoinformation/weitereinformationen/services/wmsdienste.htm">Landes
|
||||
Vorarlberg</a> und des Landes Tirol (<a href="https://www.tirol.gv.at/applikationen/e-government/data/nutzungsbedingungen/">lizenziert
|
||||
gemäß CC BY AT samt Erweiterungen zur Lizenz</a>).'
|
||||
contributors_au_html: '<strong>Australien</strong>: Enthält Daten zu Siedlungen,
|
||||
die auf Daten des <i>Australian Bureau of Statistics</i> basieren.'
|
||||
contributors_au_html: |-
|
||||
<strong>Australien</strong>: Eingebunden oder entwickelt unter Verwendung von administrativen Grenzen ©
|
||||
<a href="https://geoscape.com.au/legal/data-copyright-and-disclaimer/">Geoscape Australia</a>
|
||||
lizenziert durch den Commonwealth of Australia unter
|
||||
<a href="https://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International Lizenz (CC BY 4.0)</a>.
|
||||
contributors_ca_html: '<strong>Kanada</strong>: Enthält Daten von GeoBase®,
|
||||
GeoGratis (© <i>Department of Natural Resources Canada</i>), CanVec
|
||||
(© <i>Department of Natural Resources Canada</i>) und StatCan (<i>Geography
|
||||
|
@ -2234,9 +2265,9 @@ de:
|
|||
Nutzung im Browser verfügbar.
|
||||
desktop_html: Wenn du Potlatch weiternutzen möchtest kannst du die Desktopanwendung
|
||||
für Mac und Windows <a href="https://www.systemed.net/potlatch/">hier Herunterladen</a>.
|
||||
id_html: Alternativ können Sie Ihren Standardeditor auf iD einstellen, der in
|
||||
Ihrem Webbrowser wie zuvor Potlatch ausgeführt wird. <a href="%{settings_url}">Änderen
|
||||
Sie hier Ihre Benutzereinstellungen</a>.
|
||||
id_html: Alternativ kannst du deinen Standardeditor auf iD einstellen, der in
|
||||
deinem Webbrowser wie zuvor Potlatch ausgeführt wird. <a href="%{settings_url}">Änder
|
||||
hier deine Benutzereinstellungen</a>.
|
||||
sidebar:
|
||||
search_results: Suchergebnisse
|
||||
close: Schließen
|
||||
|
@ -2495,6 +2526,11 @@ de:
|
|||
need_to_see_terms: Dein Zugriff auf die API wurde vorübergehend ausgesetzt.
|
||||
Bitte melde dich mit deinem Benutzerkonto an, um die „Bedingungen für Mitwirkende“
|
||||
einzusehen. Du musst nicht einverstanden sein, aber du musst sie gesehen haben.
|
||||
settings_menu:
|
||||
account_settings: Kontoeinstellungen
|
||||
oauth1_settings: OAuth 1-Einstellungen
|
||||
oauth2_applications: OAuth 2-Anwendungen
|
||||
oauth2_authorizations: OAuth 2-Berechtigungen
|
||||
oauth:
|
||||
authorize:
|
||||
title: Zugriff auf dein Benutzerkonto autorisieren
|
||||
|
@ -2703,6 +2739,7 @@ de:
|
|||
my settings: Einstellungen
|
||||
my comments: Meine Kommentare
|
||||
my_preferences: Meine Benutzereinstellungen
|
||||
my_dashboard: Meine Übersichtsseite
|
||||
blocks on me: Erhaltene Sperren
|
||||
blocks by me: Vergebene Sperren
|
||||
edit_profile: Profil bearbeiten
|
||||
|
@ -2724,15 +2761,6 @@ de:
|
|||
spam score: 'Spam-Bewertung:'
|
||||
description: Beschreibung
|
||||
user location: Standort des Benutzers
|
||||
set_location_html: <a href="%{edit_profile_url}">Bearbeite dein Profil</a> und
|
||||
lege deinen Heimatort fest, um Nutzer in der Nähe zu sehen.
|
||||
my friends: Meine Freunde
|
||||
no friends: Du hast noch keine Freunde hinzugefügt.
|
||||
km away: '%{count} km entfernt'
|
||||
m away: '%{count} m entfernt'
|
||||
nearby users: Mapper in der Nähe
|
||||
no nearby users: Es gibt bisher keine Benutzer, die einen Standort in deiner
|
||||
Nähe angegeben haben.
|
||||
role:
|
||||
administrator: Dieser Benutzer ist ein Administrator
|
||||
moderator: Dieser Benutzer ist ein Moderator
|
||||
|
@ -2753,15 +2781,7 @@ de:
|
|||
unhide_user: Benutzer nicht mehr verstecken
|
||||
delete_user: Benutzer löschen
|
||||
confirm: Bestätigen
|
||||
friends_changesets: Änderungssätze deiner Freunde
|
||||
friends_diaries: Blogs deiner Freunde
|
||||
nearby_changesets: Änderungssätze von Benutzern in der Nähe
|
||||
nearby_diaries: Blogs von Benutzern in der Nähe
|
||||
report: Diesen Benutzer melden
|
||||
popup:
|
||||
your location: Standort
|
||||
nearby mapper: Mapper in der Nähe
|
||||
friend: Freund
|
||||
account:
|
||||
title: Benutzerkonto bearbeiten
|
||||
my settings: Einstellungen
|
||||
|
@ -2801,10 +2821,6 @@ de:
|
|||
link text: Worum handelt es sich?
|
||||
save changes button: Änderungen speichern
|
||||
make edits public button: Alle meine Bearbeitungen öffentlich machen
|
||||
return to profile: Zurück zum Profil
|
||||
oauth1 settings: OAuth 1-Einstellungen
|
||||
oauth2 applications: OAuth 2-Anwendungen
|
||||
oauth2 authorizations: OAuth 2-Berechtigungen
|
||||
flash update success confirm needed: Deine Änderungen wurden gespeichert. Du
|
||||
erhältst nun eine E-Mail, um deine neue E-Mail-Adresse zu bestätigen.
|
||||
flash update success: Benutzerinformationen erfolgreich aktualisiert.
|
||||
|
|
|
@ -288,6 +288,14 @@ diq:
|
|||
title_friend: Qeydê vurnayışê embazan
|
||||
title_nearby: Nezdıra vurriyayışê setê karberi
|
||||
load_more: Tayêna bar ke
|
||||
dashboards:
|
||||
contact:
|
||||
km away: '%{count} km duriyo'
|
||||
m away: '%{count} metre nezdiyo'
|
||||
popup:
|
||||
your location: Heruna mı
|
||||
nearby mapper: Xeritoğo emıryan
|
||||
friend: Embaz
|
||||
diary_entries:
|
||||
new:
|
||||
title: Roceko newe definayış
|
||||
|
@ -1023,8 +1031,6 @@ diq:
|
|||
status: 'Weziyet:'
|
||||
description: Şınasnayış
|
||||
user location: Heruna karberi
|
||||
km away: '%{count} km duriyo'
|
||||
m away: '%{count} metre nezdiyo'
|
||||
role:
|
||||
administrator: |-
|
||||
Na karber administratora<br>
|
||||
|
@ -1049,10 +1055,6 @@ diq:
|
|||
unhide_user: nê karberi menımnê
|
||||
delete_user: nê karberi esternê
|
||||
confirm: Tesdiq ke
|
||||
popup:
|
||||
your location: Heruna mı
|
||||
nearby mapper: Xeritoğo emıryan
|
||||
friend: Embaz
|
||||
account:
|
||||
title: Hesabi bıvurne
|
||||
my settings: Eyarê mı
|
||||
|
@ -1070,7 +1072,6 @@ diq:
|
|||
contributor terms:
|
||||
link text: no çıko?
|
||||
save changes button: Vurnayışan qeyd ke
|
||||
return to profile: Peyser şo profil
|
||||
index:
|
||||
title: Karberi
|
||||
heading: Karberi
|
||||
|
|
|
@ -288,6 +288,22 @@ dsb:
|
|||
load_more: Wěcej zacytaś
|
||||
timeout:
|
||||
sorry: Bóžko jo pśedłujko trało, kupki změnow, kótarež sy póžedał, wótwołaś.
|
||||
dashboards:
|
||||
contact:
|
||||
km away: '%{count} km zdalony'
|
||||
m away: '%{count} m zdalony'
|
||||
popup:
|
||||
your location: Twójo městno
|
||||
nearby mapper: Kartěrowaŕ w bliskosći
|
||||
friend: Pśijaśel
|
||||
show:
|
||||
no friends: Hyšći njejsy žednych pśijaśelow pśidał.
|
||||
nearby users: Druge wužywarje w bliskosći
|
||||
no nearby users: Hyšći njejsu žedne wužywarje, kótarež kartěruju w bliskosći.
|
||||
friends_changesets: Sajźby změnow twójich pśijaśelow
|
||||
friends_diaries: dnjownikowe zapiski pśijaśelow
|
||||
nearby_changesets: sajźby změnow wužywarjow w bliskosći
|
||||
nearby_diaries: dnjownikowe zapiski wužywarjow w bliskosći
|
||||
diary_entries:
|
||||
new:
|
||||
title: Nowy zapisk dnjownika
|
||||
|
@ -404,6 +420,7 @@ dsb:
|
|||
bench: Ławka
|
||||
bicycle_parking: Zmakanišćo za kólasa
|
||||
bicycle_rental: Pśepóžycarnja kólasow
|
||||
bicycle_repair_station: Kólaso pórěźaŕnja
|
||||
biergarten: Piwowa zagroda
|
||||
brothel: Bordel
|
||||
bureau_de_change: Zaměnjarnja
|
||||
|
@ -496,10 +513,13 @@ dsb:
|
|||
residential: Bydleńske twarjenje
|
||||
retail: Twarjenje drobnego wikowanja
|
||||
school: Šulske twarjenje
|
||||
static_caravan: bydleński wóz
|
||||
terrace: Terasa
|
||||
train_station: Dwórnišćo
|
||||
university: Uniwersitne twarjenje
|
||||
"yes": Twarjenje
|
||||
craft:
|
||||
carpenter: twaŕć
|
||||
emergency:
|
||||
phone: Słup za nuzowe zawołanje
|
||||
highway:
|
||||
|
@ -721,7 +741,7 @@ dsb:
|
|||
bakery: Pjakarnja
|
||||
beauty: Parfimerija
|
||||
beverages: Piśowy mark
|
||||
bicycle: Wobchod za kólasa
|
||||
bicycle: Kólasaŕnja
|
||||
books: Knigłarnja
|
||||
boutique: Butika
|
||||
butcher: Rěznik
|
||||
|
@ -1416,6 +1436,7 @@ dsb:
|
|||
private: Priwatny pśistup
|
||||
destination: Jano za pśigranicujucych
|
||||
construction: Drogi w twari
|
||||
bicycle_shop: Kólasaŕnja
|
||||
welcome:
|
||||
title: Witaj!
|
||||
introduction_html: Witaj k OpenstreetMap, lichej a wobźěłujobnej kórśe swěta.
|
||||
|
@ -1688,11 +1709,6 @@ dsb:
|
|||
spam score: 'Spamowe gódnośenje:'
|
||||
description: Wopisanje
|
||||
user location: Wužywarske městno
|
||||
no friends: Hyšći njejsy žednych pśijaśelow pśidał.
|
||||
km away: '%{count} km zdalony'
|
||||
m away: '%{count} m zdalony'
|
||||
nearby users: Druge wužywarje w bliskosći
|
||||
no nearby users: Hyšći njejsu žedne wužywarje, kótarež kartěruju w bliskosći.
|
||||
role:
|
||||
administrator: Toś ten wužywaŕ jo administrator
|
||||
moderator: Toś ten wužywaŕ jo moderator
|
||||
|
@ -1713,14 +1729,6 @@ dsb:
|
|||
unhide_user: toś togo wužiwarja pokazaś
|
||||
delete_user: toś togo wužywarja lašowaś
|
||||
confirm: Wobkšuśiś
|
||||
friends_changesets: Sajźby změnow twójich pśijaśelow
|
||||
friends_diaries: dnjownikowe zapiski pśijaśelow
|
||||
nearby_changesets: sajźby změnow wužywarjow w bliskosći
|
||||
nearby_diaries: dnjownikowe zapiski wužywarjow w bliskosći
|
||||
popup:
|
||||
your location: Twójo městno
|
||||
nearby mapper: Kartěrowaŕ w bliskosći
|
||||
friend: Pśijaśel
|
||||
account:
|
||||
title: Konto wobźěłaś
|
||||
my settings: Móje nastajenja
|
||||
|
@ -1755,7 +1763,6 @@ dsb:
|
|||
link text: Co to jo?
|
||||
save changes button: Změny składowaś
|
||||
make edits public button: Wše móje změny wózjawiś
|
||||
return to profile: Slědk k profiloju
|
||||
flash update success confirm needed: Wužywarske informacije wuspěšnje zaktualizěrowane.
|
||||
Dostanjoš e-mail z napominanim, twóju e-mailowu adresu wobkšuśiś.
|
||||
flash update success: Wužywarske informacije wuspěšnje zaktualizěrowane.
|
||||
|
@ -1968,6 +1975,13 @@ dsb:
|
|||
comment: Komentar
|
||||
edit_help: Pśesuń kórtu do městna, kótarež coš wobźěłaś, powětš tam a klikni pótom
|
||||
how.
|
||||
directions:
|
||||
engines:
|
||||
fossgis_osrm_bike: Kólaso (OSRM)
|
||||
fossgis_osrm_car: Awto (OSRM)
|
||||
fossgis_osrm_foot: Pěšy (OSRM)
|
||||
graphhopper_bicycle: Kólaso (GraphHopper)
|
||||
graphhopper_foot: Pěšy (GraphHopper)
|
||||
redactions:
|
||||
edit:
|
||||
heading: Redakciju wobźěłaś
|
||||
|
|
|
@ -55,6 +55,9 @@ el:
|
|||
client_application:
|
||||
create: Εγγραφή
|
||||
update: Ενημέρωση
|
||||
doorkeeper_application:
|
||||
create: Εγγραφή
|
||||
update: Ενημέρωση
|
||||
redaction:
|
||||
create: Δημιουργία παράλειψης
|
||||
update: Αποθήκευση παράλειψης
|
||||
|
@ -68,7 +71,7 @@ el:
|
|||
errors:
|
||||
messages:
|
||||
invalid_email_address: δεν φαίνεται να είναι έγκυρη διεύθυνση ηλ. ταχυδρομείου
|
||||
email_address_not_routable: Δεν είναι δρομολογητέο
|
||||
email_address_not_routable: δεν είναι δρομολογητέο
|
||||
models:
|
||||
acl: Λίστα ελέγχου πρόσβασης
|
||||
changeset: Ομάδα αλλαγών
|
||||
|
@ -107,9 +110,18 @@ el:
|
|||
way_tag: Ετικέτα διαδρομής
|
||||
attributes:
|
||||
client_application:
|
||||
name: Όνομα (Υποχρεωτικό)
|
||||
name: Όνομα (απαιτείται)
|
||||
url: URL κύριας εφαρμογής (απαιτείται)
|
||||
callback_url: URL Επανάκλησης
|
||||
support_url: URL Υποστήριξης
|
||||
allow_read_prefs: ανάγνωση των προτιμήσεων χρήστη
|
||||
allow_write_prefs: τροποποίηση των προτιμήσεων χρήστη
|
||||
allow_write_diary: δημιουργία καταχωρήσεων ημερολογίου, σχόλια και δημιουργία
|
||||
φίλων
|
||||
allow_write_api: τροποποίηση του χάρτη
|
||||
allow_read_gpx: ανάγνωση των προσωπικών ιχνών GPS
|
||||
allow_write_gpx: μεταφόρτωση ιχνών GPS
|
||||
allow_write_notes: τροποποίηση σημειώσεων
|
||||
diary_comment:
|
||||
body: Κύριο μέρος
|
||||
diary_entry:
|
||||
|
@ -118,6 +130,11 @@ el:
|
|||
latitude: Γεωγραφικό πλάτος
|
||||
longitude: Γεωγραφικό μήκος
|
||||
language: Γλώσσα
|
||||
doorkeeper/application:
|
||||
name: Όνομα
|
||||
redirect_uri: Ανακατεύθυνση URIs
|
||||
confidential: Έμπιστη εφαρμογή;
|
||||
scopes: Άδειες
|
||||
friend:
|
||||
user: Χρήστης
|
||||
friend: Φίλος
|
||||
|
@ -136,27 +153,36 @@ el:
|
|||
message:
|
||||
sender: Αποστολέας
|
||||
title: Θέμα
|
||||
body: Κύριο μέρος
|
||||
body: Κύριο σώμα
|
||||
recipient: Παραλήπτης
|
||||
redaction:
|
||||
title: Τίτλος
|
||||
description: Περιγραφή
|
||||
report:
|
||||
category: Επιλέξτε μια αιτία για την αναφορά σας
|
||||
details: Παρακαλούμε παράσχετε περισσότερες λεπτομέρειες σχετικά με το πρόβλημα
|
||||
(απαιτείται).
|
||||
user:
|
||||
auth_provider: Πάροχος αυθεντικοποίησης
|
||||
auth_uid: UID αυθεντικοποίησης
|
||||
email: Ηλεκτρονικό ταχυδρομείο
|
||||
email_confirmation: Επιβεβαίωση διεύθυνσης ηλεκτρονικού ταχυδρομείου
|
||||
new_email: Νέα διεύθυνση ηλεκτρονικού ταχυδρομείου
|
||||
email_confirmation: Επιβεβαίωση διεύθυνσης email
|
||||
new_email: Νέα διεύθυνση email
|
||||
active: Ενεργό
|
||||
display_name: Εμφάνιση ονόματος
|
||||
description: Περιγραφή προφίλ
|
||||
home_lat: Γεωγραφικό πλάτος
|
||||
home_lon: Γεωγραφικό μήκος
|
||||
languages: Προτιμώμενες γλώσσες
|
||||
preferred_editor: Προτιμώμενο πρόγραμμα επεξεργασίας
|
||||
preferred_editor: Προτιμώμενος επεξεργαστής
|
||||
pass_crypt: Κωδικός
|
||||
pass_crypt_confirmation: Επιβεβαίωση κωδικού
|
||||
help:
|
||||
doorkeeper/application:
|
||||
confidential: Η εφαρμογή θα χρησιμοποιηθεί όπου το μυστικό πελάτη μπορεί να
|
||||
κρατηθεί έμπιστο (οι εγγενείς εφαρμογές κινητών και οι εφαρμογές μονής σελίδας
|
||||
δεν είναι έμπιστες)
|
||||
redirect_uri: Χρήση μίας σειράς ανά URI
|
||||
trace:
|
||||
tagstring: διαχωρισμένο με κόμμα
|
||||
user_block:
|
||||
|
@ -167,6 +193,10 @@ el:
|
|||
γι' αυτό προσπαθήστε να χρησιμοποιήσετε απλούς και κατανοητούς όρους.
|
||||
needs_view: Πρέπει ο χρήστης να συνδεθεί προτού εκκαθαριστεί αυτή η φραγή;
|
||||
user:
|
||||
email_confirmation: Η διεύθυνση σας δεν προβάλλεται δημόσια, για περισσότερες
|
||||
πληροφορίες δείτε την <a href="https://wiki.osmfoundation.org/wiki/Privacy_Policy"
|
||||
title="OSMF privacy policy including section on email addresses">πολιτική
|
||||
ιδιωτικότητας</a> μας.
|
||||
new_email: (να μην εμφανίζεται ποτέ δημόσια)
|
||||
datetime:
|
||||
distance_in_words_ago:
|
||||
|
@ -182,7 +212,7 @@ el:
|
|||
almost_x_years:
|
||||
one: σχεδόν ένα χρόνο πριν
|
||||
other: σχεδόν %{count} χρόνια πριν
|
||||
half_a_minute: μισό λεπτό πριν
|
||||
half_a_minute: πριν μισό λεπτό
|
||||
less_than_x_seconds:
|
||||
one: λιγότερο από ένα δευτερόλεπτο πριν
|
||||
other: λιγότερο από %{count} δευτερόλεπτα πριν
|
||||
|
@ -213,7 +243,7 @@ el:
|
|||
default: Προεπιλογή (τώρα είναι %{name})
|
||||
id:
|
||||
name: iD
|
||||
description: iD (επεξεργαστής εντός του περιηγητή)
|
||||
description: iD (επεξεργαστής εντός περιηγητή)
|
||||
remote:
|
||||
name: Απομακρυσμένος έλεγχος
|
||||
description: Απομακρυσμένος έλεγχος (JOSM, Potlatch, Merkaartor)
|
||||
|
@ -301,6 +331,9 @@ el:
|
|||
title_html: 'Διαδρομή: %{name}'
|
||||
history_title_html: 'Ιστορικό διαδρομής: %{name}'
|
||||
nodes: Κόμβοι
|
||||
nodes_count:
|
||||
one: '%{count} κόμβος'
|
||||
other: '%{count} κόμβοι'
|
||||
also_part_of_html:
|
||||
one: τμήμα της διαδρομής %{related_ways}
|
||||
other: τμήμα των διαδρομών %{related_ways}
|
||||
|
@ -331,6 +364,7 @@ el:
|
|||
changeset: ομάδα αλλαγών
|
||||
note: σημείωση
|
||||
timeout:
|
||||
title: Σφάλμα λήξης χρόνου
|
||||
sorry: Λυπάμαι, τα δεδομένα για το %{type} με αναγνωριστικό %{id}, χρειάστηκαν
|
||||
πολύ χρόνο για να ανακτηθούν.
|
||||
type:
|
||||
|
@ -395,7 +429,7 @@ el:
|
|||
no_edits: (χωρίς επεξεργασίες)
|
||||
view_changeset_details: Προβολή λεπτομερειών αλλαγών
|
||||
changesets:
|
||||
id: Αναγνωριστικό
|
||||
id: ID
|
||||
saved_at: Αποθηκεύτηκε στις
|
||||
user: Χρήστης
|
||||
comment: Σχόλιο
|
||||
|
@ -406,8 +440,8 @@ el:
|
|||
title_friend: Αλλαγές από τους φίλους μου
|
||||
title_nearby: Αλλαγές από κοντινούς χρήστες
|
||||
empty: Δε βρέθηκαν αλλαγές.
|
||||
empty_area: Δε βρέθηκαν αλλαγές σε αυτήν την περιοχή.
|
||||
empty_user: Δεν υπάρχουν αλλαγές από αυτόν τον χρήστη.
|
||||
empty_area: Χωρίς αλλαγές σε αυτήν την περιοχή.
|
||||
empty_user: Χωρίς αλλαγές από αυτόν τον χρήστη.
|
||||
no_more: Δεν βρέθηκαν άλλες αλλαγές.
|
||||
no_more_area: Δεν υπάρχουν άλλες αλλαγές για αυτήν την περιοχή.
|
||||
no_more_user: Δεν υπάρχουν άλλες αλλαγές από αυτόν τον χρήστη.
|
||||
|
@ -427,6 +461,28 @@ el:
|
|||
timeout:
|
||||
sorry: Μας συγχωρείτε, η λίστα των σχολίων της ομάδας αλλαγών που ζητήσατε,
|
||||
χρειάστηκε πολύ χρόνο για να ανακτηθεί.
|
||||
dashboards:
|
||||
contact:
|
||||
km away: '%{count}km μακριά'
|
||||
m away: '%{count}m μακριά'
|
||||
popup:
|
||||
your location: Η τοποθεσία σας
|
||||
nearby mapper: Κοντινός χαρτογράφος
|
||||
friend: Φίλος
|
||||
show:
|
||||
title: Το ταμπλό μου
|
||||
no_home_location_html: '%{edit_profile_link} και βάλτε την τοποθεσία σας για
|
||||
να δείτε κοντινούς χρήστες.'
|
||||
edit_your_profile: Επεξεργαστείτε το προφίλ σας
|
||||
my friends: Οι φίλοι μου
|
||||
no friends: Δεν έχετε προσθέσει φίλους ακόμα.
|
||||
nearby users: Άλλοι κοντινοί χρήστες
|
||||
no nearby users: Δεν υπάρχουν άλλοι χρήστες που δήλωσαν ότι χαρτογραφούν κοντά
|
||||
σας προς το παρόν.
|
||||
friends_changesets: ομάδες αλλαγών φίλων
|
||||
friends_diaries: καταχωρήσεις ημερολογίου φίλων
|
||||
nearby_changesets: ομάδες αλλαγών από κοντινούς χρήστες
|
||||
nearby_diaries: καταχωρήσεις ημερολογίου από κοντινούς χρήστες
|
||||
diary_entries:
|
||||
new:
|
||||
title: Νέα καταχώρηση ημερολογίου
|
||||
|
@ -442,7 +498,7 @@ el:
|
|||
new: Νέα καταχώρηση ημερολογίου
|
||||
new_title: Σύνταξη νέας καταχώρησης στο ημερολόγιό μου
|
||||
my_diary: Το ημερολόγιό μου
|
||||
no_entries: Δε βρέθηκαν καταχωρήσεις στο ημερολόγιο
|
||||
no_entries: Χωρίς καταχωρήσεις ημερολογίου
|
||||
recent_entries: Πρόσφατες καταχωρήσεις ημερολογίου
|
||||
older_entries: Παλιότερες καταχωρήσεις
|
||||
newer_entries: Νεότερες καταχωρήσεις
|
||||
|
@ -499,11 +555,17 @@ el:
|
|||
comments:
|
||||
has_commented_on: Ο %{display_name} έχει σχολιάσει στις ακόλουθες καταχωρήσεις
|
||||
ημερολογίου
|
||||
no_comments: Χωρίς σχόλια ημερολογίου
|
||||
post: Καταχώρηση
|
||||
when: Πότε
|
||||
comment: Σχόλιο
|
||||
newer_comments: Νεότερα σχόλια
|
||||
older_comments: Παλαιότερα σχόλια
|
||||
doorkeeper:
|
||||
flash:
|
||||
applications:
|
||||
create:
|
||||
notice: Η εφαρμογή καταχωρήθηκε.
|
||||
friendships:
|
||||
make_friend:
|
||||
heading: Προσθήκη του %{user} ως φίλου;
|
||||
|
@ -511,6 +573,8 @@ el:
|
|||
success: Ο %{name} είναι τώρα φίλος σου!
|
||||
failed: Λυπούμαστε, απέτυχε η προσθήκη του χρήστη %{name} ως φίλου.
|
||||
already_a_friend: Είστε ήδη φίλοι με τον χρήστη %{name}.
|
||||
limit_exceeded: Έκανες πολλούς φίλους τελευταία. Παρακαλώ περίμενε λίγο πριν
|
||||
προσπαθήσεις να κάνεις περισσότερους φίλους.
|
||||
remove_friend:
|
||||
heading: Αφαίρεση φίλου %{user};
|
||||
button: Αφαίρεση φίλου
|
||||
|
@ -563,6 +627,7 @@ el:
|
|||
bench: Πάγκος
|
||||
bicycle_parking: Στάθμευση ποδηλάτων
|
||||
bicycle_rental: Ενοικίαση ποδηλάτων
|
||||
bicycle_repair_station: Σταθμός επισκευής ποδηλάτου
|
||||
biergarten: Υπαίθρια μπυραρία
|
||||
blood_bank: Τράπεζα αίματος
|
||||
boat_rental: Ενοικίαση σκαφών
|
||||
|
@ -581,6 +646,7 @@ el:
|
|||
clock: Ρολόι
|
||||
college: Κολέγιο
|
||||
community_centre: Κοινοτικό κέντρο
|
||||
conference_centre: Συνεδριακό κέντρο
|
||||
courthouse: Δικαστήριο
|
||||
crematorium: Κρεματόριο
|
||||
dentist: Οδοντίατρος
|
||||
|
@ -600,11 +666,13 @@ el:
|
|||
hospital: Νοσοκομείο
|
||||
hunting_stand: Κυνηγητικό κιόσκι
|
||||
ice_cream: Παγωτό
|
||||
internet_cafe: Ίντερνετ καφέ
|
||||
kindergarten: Νηπιαγωγείο
|
||||
language_school: Φροντιστήριο ξένων γλωσσών
|
||||
library: Βιβλιοθήκη
|
||||
marketplace: Αγορά
|
||||
monastery: Μοναστήρι
|
||||
money_transfer: Μεταφορά χρημάτων
|
||||
motorcycle_parking: Χώρος στάθμευσης μοτοσικλετών
|
||||
music_school: Ωδείο
|
||||
nightclub: Νυχτερινό κέντρο
|
||||
|
@ -612,6 +680,7 @@ el:
|
|||
parking: Χώρος στάθμευσης
|
||||
parking_entrance: Είσοδος χώρου στάθμευσης
|
||||
parking_space: Χώρος στάθμευσης
|
||||
payment_terminal: Τερματικό πληρωμών
|
||||
pharmacy: Φαρμακείο
|
||||
place_of_worship: Τόπος λατρείας
|
||||
police: Αστυνομία
|
||||
|
@ -620,6 +689,7 @@ el:
|
|||
prison: Φυλακή
|
||||
pub: Παμπ
|
||||
public_bath: Δημόσιο λουτρό
|
||||
public_bookcase: Δημόσια βιβλιοθήκη
|
||||
public_building: Δημόσιο κτίριο
|
||||
recycling: Σημείο ανακύκλωσης
|
||||
restaurant: Εστιατόριο
|
||||
|
@ -636,11 +706,13 @@ el:
|
|||
toilets: Τουαλέτες
|
||||
townhall: Δημαρχείο
|
||||
university: Πανεπιστήμιο
|
||||
vehicle_inspection: Επιθεώρηση οχήματος
|
||||
vending_machine: Μηχάνημα αυτόματης πώλησης
|
||||
veterinary: Κτηνιατρική Χειρουργική
|
||||
village_hall: Αίθουσα χωριού
|
||||
waste_basket: Καλάθι απορριμμάτων
|
||||
waste_disposal: Διάθεση αποβλήτων
|
||||
waste_dump_site: Χώρος απόρριψης απορριμάτων
|
||||
water_point: Σημείο ανεφοδιασμού νερού
|
||||
boundary:
|
||||
administrative: Διοικητικό όριο
|
||||
|
@ -655,35 +727,50 @@ el:
|
|||
viaduct: Κοιλαδογέφυρα
|
||||
"yes": Γέφυρα
|
||||
building:
|
||||
apartment: Διαμέρισμα
|
||||
apartments: Διαμερίσματα
|
||||
barn: Σταύλος
|
||||
bungalow: Μπάνγκαλοου
|
||||
cabin: Καμπίνα
|
||||
chapel: Παρεκκλήσι
|
||||
church: Εκκλησία
|
||||
civic: Πολιτικό κτήριο
|
||||
college: Πανεπιστημιακό κτήριο
|
||||
commercial: Εμπορικό κτίριο
|
||||
construction: Κτίριο υπό κατασκευή
|
||||
dormitory: Κοιτώνας
|
||||
farm: Αγροικία
|
||||
farm_auxiliary: Βοηθητική αγροικία
|
||||
garage: Γκαράζ
|
||||
garages: Γκαράζ
|
||||
greenhouse: Θερμοκήπιο
|
||||
hangar: Υπόστεγο αεροσκαφών
|
||||
hospital: Κτήριο Νοσοκομείου
|
||||
hotel: Ξενοδοχείο
|
||||
house: Σπίτι
|
||||
hut: Καλύβα
|
||||
industrial: Βιομηχανικό Κτήριο
|
||||
kindergarten: Κτίριο νηπιαγωγείου
|
||||
office: Κτήριο Γραφείων
|
||||
public: Δημόσιο κτήριο
|
||||
residential: Πολυκατοικία
|
||||
retail: Κτήριο λιανικής
|
||||
school: Σχολικό Κτήριο
|
||||
static_caravan: Τροχόσπιτο
|
||||
temple: Κτήριο ναού
|
||||
train_station: Κτίριο Σιδηροδρομικού Σταθμού
|
||||
university: Κτήριο Πανεπιστημίου
|
||||
warehouse: Αποθήκη
|
||||
"yes": Κτίριο
|
||||
club:
|
||||
sport: Αθλητικός σύλλογος
|
||||
craft:
|
||||
beekeeper: Μελισσοκόμος
|
||||
blacksmith: Σιδηρουργός
|
||||
brewery: Ζυθοποιείο
|
||||
carpenter: Ξυλουργός
|
||||
electrician: Ηλεκτρολόγος
|
||||
electronics_repair: Επισκευή ηλεκτρονικών
|
||||
gardener: Κηπουρός
|
||||
handicraft: Χειροκατασκευές
|
||||
painter: Ζωγράφος
|
||||
|
@ -691,8 +778,10 @@ el:
|
|||
plumber: Υδραυλικός
|
||||
shoemaker: Τσαγκάρης
|
||||
tailor: Ράφτης
|
||||
winery: Οινοποιείο
|
||||
"yes": Κατάστημα τεχνών
|
||||
emergency:
|
||||
access_point: Σημείο Πρόσβασης
|
||||
ambulance_station: Σταθμός ασθενοφόρων
|
||||
assembly_point: Σημείο συγκέντρωσης
|
||||
defibrillator: Απινιδωτής
|
||||
|
@ -741,6 +830,7 @@ el:
|
|||
tertiary: Τριτεύων δρόμος
|
||||
tertiary_link: Τριτεύων δρόμος
|
||||
track: Χωματόδρομος
|
||||
traffic_mirror: Καθρέφτης κυκλοφορίας
|
||||
traffic_signals: Σήματα κυκλοφορίας
|
||||
trunk: Εθνική οδός
|
||||
trunk_link: Εθνική οδός
|
||||
|
@ -748,11 +838,14 @@ el:
|
|||
unclassified: Αταξινόμητη οδός
|
||||
"yes": Δρόμος
|
||||
historic:
|
||||
aircraft: Ιστορικό αεροσκάφος
|
||||
archaeological_site: Αρχαιολογικός χώρος
|
||||
bomb_crater: Ιστορικός κρατήρας βόμβας
|
||||
battlefield: Πεδίο μάχης
|
||||
boundary_stone: Συνοριακή στήλη
|
||||
building: Ιστορικό κτίριο
|
||||
bunker: Οχυρό
|
||||
cannon: Ιστορικό κανόνι
|
||||
castle: Κάστρο
|
||||
church: Εκκλησία
|
||||
city_gate: Είσοδος της πόλης
|
||||
|
@ -800,6 +893,7 @@ el:
|
|||
quarry: Λατομείο
|
||||
railway: Σιδηρόδρομος
|
||||
recreation_ground: Χώρος αναψυχής
|
||||
religious: Θρησκευτικό έδαφος
|
||||
reservoir: Ταμιευτήρας
|
||||
reservoir_watershed: Δεξαμενή απορροής υδάτων
|
||||
residential: Κατοικημένη περιοχή
|
||||
|
@ -811,6 +905,7 @@ el:
|
|||
beach_resort: Παραθαλάσσιο θέρετρο
|
||||
bird_hide: Καταφύγιο πουλιών
|
||||
common: Κοινόχρηστη γη
|
||||
dance: Αίθουσα χωρού
|
||||
dog_park: Πάρκο σκύλων
|
||||
firepit: Λάκκος Φωτιάς
|
||||
fishing: Αλιευτική περιοχή
|
||||
|
@ -824,6 +919,7 @@ el:
|
|||
miniature_golf: Μίνι γκολφ
|
||||
nature_reserve: Καταφύγιο της φύσης
|
||||
park: Πάρκο
|
||||
picnic_table: Τραπέζι πικνικ
|
||||
pitch: Γήπεδο αθλητισμού
|
||||
playground: Παιδική χαρά
|
||||
recreation_ground: Χώρος αναψυχής
|
||||
|
@ -838,7 +934,9 @@ el:
|
|||
"yes": Ψυχαγωγία
|
||||
man_made:
|
||||
adit: Οριζόντια είσοδος σε ορυχείο
|
||||
advertising: Διαφήμιση
|
||||
antenna: Κεραία
|
||||
avalanche_protection: Προστασία χιονοστιβάδας
|
||||
beacon: φάρος
|
||||
beehive: Κυψέλη
|
||||
breakwater: Κυματοθραύστης
|
||||
|
@ -854,6 +952,7 @@ el:
|
|||
groyne: Φράγμα
|
||||
kiln: Καμίνι
|
||||
lighthouse: Φάρος
|
||||
manhole: Ανθρωποθυρίδα
|
||||
mast: Κατάρτι
|
||||
mine: Ορυχείο
|
||||
mineshaft: Φρεάτιο ορυχείου
|
||||
|
@ -861,13 +960,17 @@ el:
|
|||
petroleum_well: Γεώτρηση Πετρελαίου
|
||||
pier: Αποβάθρα
|
||||
pipeline: Αγωγός
|
||||
pumping_station: Αντλιοστάσιο
|
||||
silo: Σιλό
|
||||
snow_cannon: Κανόνι χιονιού
|
||||
snow_fence: Χιονοφράχτης
|
||||
storage_tank: Δεξαμενή αποθήκευσης
|
||||
surveillance: Επιτήρηση
|
||||
telescope: Τηλεσκόπιο
|
||||
tower: Πύργος
|
||||
wastewater_plant: Μονάδα επεξεργασίας λυμάτων
|
||||
watermill: Νερόμυλος
|
||||
water_tap: Βρύση
|
||||
water_tower: Πύργος νερού
|
||||
water_well: Πηγάδι
|
||||
water_works: Έργα Υδάτων
|
||||
|
@ -900,6 +1003,7 @@ el:
|
|||
heath: Ακαλλιέργητη γη
|
||||
hill: Λόφος
|
||||
island: Νησί
|
||||
isthmus: Ισθμός
|
||||
land: Ξηρά
|
||||
marsh: Βάλτος
|
||||
moor: Δέστρα
|
||||
|
@ -918,6 +1022,8 @@ el:
|
|||
stone: Πέτρα
|
||||
strait: Πορθμός
|
||||
tree: Δέντρο
|
||||
tree_row: Σειρά δέντρων
|
||||
tundra: Τούνδρα
|
||||
valley: Κοιλάδα
|
||||
volcano: Ηφαίστειο
|
||||
water: Νερό
|
||||
|
@ -941,6 +1047,10 @@ el:
|
|||
lawyer: Δικηγόρος
|
||||
logistics: Λογιστικό γραφείο
|
||||
ngo: Γραφείο ΜΚΟ
|
||||
notary: Συμβολαιογράφος
|
||||
religion: Θρησκευτικό γραφείο
|
||||
research: Ερευνητικό γραφείο
|
||||
tax_advisor: Φορολογικός σύμβουλος
|
||||
telecommunication: Γραφείο τηλεπικοινωνιών
|
||||
travel_agent: Ταξιδιωτικό πρακτορείο
|
||||
"yes": Γραφείο
|
||||
|
@ -1024,6 +1134,8 @@ el:
|
|||
convenience: Παντοπωλείο
|
||||
copyshop: Κατάστημα φωτοαντιγράφων
|
||||
cosmetics: Κατάστημα καλλυντικών
|
||||
curtain: Κατάστημα κουρτίνων
|
||||
dairy: Κατάστημα γαλακτοκομικών
|
||||
deli: Ντελικατέσεν
|
||||
department_store: Πολυκατάστημα
|
||||
discount: Εκπτωτικό κατάστημα
|
||||
|
@ -1031,7 +1143,9 @@ el:
|
|||
dry_cleaning: Στεγνό καθάρισμα
|
||||
e-cigarette: Κατάστημα ηλεκτρονικών τσιγάρων
|
||||
electronics: Κατάστημα ηλεκτρονικών
|
||||
erotic: Κατάστημα ερωτικών ειδών
|
||||
estate_agent: Κτηματομεσίτης
|
||||
fabric: Κατάστημα υφασμάτων
|
||||
farm: Γεωργικά εφόδια
|
||||
fashion: Κατάστημα μόδας
|
||||
fishing: Κατάστημα ειδών αλιείας
|
||||
|
@ -1059,14 +1173,19 @@ el:
|
|||
lottery: Λοταρία
|
||||
mall: Εμπορικό κέντρο
|
||||
massage: Μασάζ
|
||||
medical_supply: Κατάστημα ιατρικών προμηθειών
|
||||
mobile_phone: Κατάστημα κινητής τηλεφωνίας
|
||||
motorcycle: Κατάστημα μοτοσικλετών
|
||||
motorcycle_repair: Κατάστημα επισκευής μοτοσυκλετών
|
||||
music: Κατάστημα μουσικής
|
||||
musical_instrument: Μουσικά όργανα
|
||||
newsagent: Πρακτορείο εφημερίδων
|
||||
nutrition_supplements: Συμπληρώματα διατροφής
|
||||
optician: Οπτικός
|
||||
organic: Κατάστημα οργανικών τροφίμων
|
||||
outdoor: Υπαίθριο κατάστημα
|
||||
paint: Χρωματοπωλείο
|
||||
pastry: Ζαχαροπλαστείο
|
||||
pawnbroker: Ενεχυροδανειστής
|
||||
perfumery: Αρωματοπωλείο
|
||||
pet: Κατάστημα κατοικίδιων
|
||||
|
@ -1086,6 +1205,7 @@ el:
|
|||
vacant: Κενό κατάστημα
|
||||
variety_store: Κατάστημα ποικιλιών
|
||||
video: Κατάστημα βίντεο
|
||||
wholesale: Κατάστημα χονδρικής
|
||||
wine: Κατάστημα κρασιών
|
||||
"yes": Κατάστημα
|
||||
tourism:
|
||||
|
@ -1134,12 +1254,15 @@ el:
|
|||
"yes": Κανάλι
|
||||
admin_levels:
|
||||
level2: Σύνορα χώρας
|
||||
level3: Σύνορο περιοχής
|
||||
level4: Σύνορο πολιτείας
|
||||
level5: Σύνορο περιοχής
|
||||
level6: Σύνορο κομητείας
|
||||
level7: Σύνορο δήμου
|
||||
level8: Σύνορο πόλης
|
||||
level9: Σύνορο χωριού
|
||||
level10: Σύνορο προαστίου
|
||||
level11: Σύνορο γειτονιάς
|
||||
types:
|
||||
cities: Πόλεις
|
||||
towns: Κωμοπόλεις
|
||||
|
@ -1279,9 +1402,10 @@ el:
|
|||
intro_text: Το OpenStreetMap είναι χάρτης του κόσμου, που δημιουργήθηκε από ανθρώπους
|
||||
σαν κι εσάς και είναι δωρεάν, υπό άδεια ελεύθερης χρήσης.
|
||||
intro_2_create_account: Δημιουργήστε ένα λογαριασμό χρήστη
|
||||
hosting_partners_html: Η λειτουργία υποστηρίζεται από %{ucl}, %{bytemark}, και
|
||||
άλλους %{partners}.
|
||||
hosting_partners_html: Η φιλοξενία υποστηρίζεται από %{ucl}, %{fastly}, %{bytemark},
|
||||
και άλλους %{partners}.
|
||||
partners_ucl: UCL
|
||||
partners_fastly: Fastly
|
||||
partners_bytemark: Bytemark Hosting
|
||||
partners_partners: συνεργάτες
|
||||
tou: Όροι χρήσης
|
||||
|
@ -1309,12 +1433,21 @@ el:
|
|||
hi: Γεια σας %{to_user},
|
||||
header: 'Ο %{from_user} έχει σχολιάσει την καταχώριση ημερολογίου στο OpenStreetMap
|
||||
με θέμα %{subject}:'
|
||||
header_html: 'Ο %{from_user} έχει σχολιάσει την καταχώριση ημερολογίου στο OpenStreetMap
|
||||
με θέμα %{subject}:'
|
||||
footer: Μπορείτε επίσης να διαβάσετε το σχόλιο στο %{readurl} και μπορείτε να
|
||||
σχολιάσετε στο %{commenturl} ή να στείλετε μήνυμα στον συγγραφέα στο %{replyurl}
|
||||
footer_html: Μπορείτε επίσης να διαβάσετε το σχόλιο στο %{readurl} και μπορείτε
|
||||
να σχολιάσετε στο %{commenturl} ή να στείλετε μήνυμα στον συγγραφέα στο %{replyurl}
|
||||
message_notification:
|
||||
subject: '[OpenStreetMap] %{message_title}'
|
||||
hi: Γεια σας %{to_user},
|
||||
header: 'Ο χρήστης %{from_user} σάς έχει στείλει ένα μήνυμα μέσω του OpenStreetMap
|
||||
με θέμα %{subject}:'
|
||||
header_html: 'Ο χρήστης %{from_user} σάς έχει στείλει ένα μήνυμα μέσω του OpenStreetMap
|
||||
με θέμα %{subject}:'
|
||||
footer: Μπορείτε επίσης να διαβάσετε το μήνυμα στο %{readurl} και να στείλετε
|
||||
μήνυμα στον συγγραφέα στο %{replyurl}
|
||||
footer_html: Μπορείτε επίσης να διαβάσετε το μήνυμα στο %{readurl} και να στείλετε
|
||||
μήνυμα στον συγγραφέα στο %{replyurl}
|
||||
friendship_notification:
|
||||
|
@ -1322,7 +1455,9 @@ el:
|
|||
subject: '[OpenStreetMap] Ο χρήστης %{user} σας πρόσθεσε ως φίλο'
|
||||
had_added_you: Ο χρήστης %{user} σας πρόσθεσε ως φίλο στο OpenStreetMap.
|
||||
see_their_profile: Μπορείτε να δείτε το προφίλ του στο %{userurl}.
|
||||
see_their_profile_html: Μπορείτε να δείτε το προφίλ του στο %{userurl}.
|
||||
befriend_them: Μπορείτε επίσης να τους προσθέσετε ως φίλους στο %{befriendurl}.
|
||||
befriend_them_html: Μπορείτε επίσης να τους προσθέσετε ως φίλους στο %{befriendurl}.
|
||||
gpx_failure:
|
||||
hi: Γεια σας %{to_user},
|
||||
failed_to_import: 'Απέτυχε η εισαγωγή. Το σφάλμα είναι:'
|
||||
|
@ -1435,6 +1570,7 @@ el:
|
|||
inbox:
|
||||
title: Εισερχόμενα
|
||||
my_inbox: Τα εισερχόμενα μου
|
||||
my_outbox: Τα εξερχόμενα μου
|
||||
messages: Έχετε %{new_messages} και %{old_messages}
|
||||
new_messages:
|
||||
one: '%{count} νέο μήνυμα'
|
||||
|
@ -1469,6 +1605,8 @@ el:
|
|||
body: Λυπάμαι δεν υπάρχει μήνυμα με αυτό το αναγνωριστικό.
|
||||
outbox:
|
||||
title: Εξερχόμενα
|
||||
my_inbox: Τα εισερχόμενα μου
|
||||
my_outbox: Τα εξερχόμενα μου
|
||||
messages:
|
||||
one: Έχετε %{count} απεσταλμένο μήνυμα
|
||||
other: Έχετε %{count} απεσταλμένα μηνύματα
|
||||
|
@ -1521,12 +1659,30 @@ el:
|
|||
reset: Επαναφορά συνθηματικού
|
||||
flash changed: Το συνθηματικό σας άλλαξε!
|
||||
flash token bad: Δεν βρήκατε αυτό το κομμάτι, μήπως πρέπει να ελέγξετε το URL;
|
||||
preferences:
|
||||
show:
|
||||
title: Οι προτιμήσεις μου
|
||||
preferred_editor: Προτιμώμενος επεξεργαστής
|
||||
preferred_languages: Προτιμώμενες γλώσσες
|
||||
edit_preferences: Επεξεργασία προτιμήσεων
|
||||
edit:
|
||||
title: Επεξεργασία προτιμίσεων
|
||||
save: Ενημέρωση προτιμήσεων
|
||||
cancel: Ακύρωση
|
||||
update:
|
||||
failure: Δεν μπόρεσαν να ενημερωθούν οι προτιμήσεις.
|
||||
update_success_flash:
|
||||
message: Οι προτιμήσεις ενημερώθηκαν.
|
||||
profiles:
|
||||
edit:
|
||||
title: Επεξεργασία προφίλ
|
||||
save: Ενημέρωση προφίλ
|
||||
cancel: Ακύρωση
|
||||
image: Εικόνα
|
||||
gravatar:
|
||||
gravatar: Χρήση Gravatar
|
||||
link: https://wiki.openstreetmap.org/wiki/Gravatar
|
||||
what_is_gravatar: Τί είναι το Gravatar;
|
||||
disabled: 'Το Gravatar έχει απενεργοποιηθεί:'
|
||||
enabled: Έχει ενεργοποιηθεί η εμφάνιση του Gravatar σας.
|
||||
new image: Προσθήκη εικόνας
|
||||
|
@ -1538,6 +1694,9 @@ el:
|
|||
no home location: Δεν έχετε εισάγει την τοποθεσία του σπιτιού σας.
|
||||
update home location on click: Ενημέρωση τοποθεσίας σπιτιού όταν κάνω κλικ στον
|
||||
χάρτη;
|
||||
update:
|
||||
success: Το προφίλ ενημερώθηκε.
|
||||
failure: Δεν μπόρεσε να ενημερωθεί το προφίλ.
|
||||
sessions:
|
||||
new:
|
||||
title: Είσοδος
|
||||
|
@ -1594,6 +1753,20 @@ el:
|
|||
title: Αποσύνδεση
|
||||
heading: Αποσύνδεση από το OpenStreetMap
|
||||
logout_button: Αποσύνδεση
|
||||
shared:
|
||||
markdown_help:
|
||||
unordered: Αταξινόμητη λίστα
|
||||
ordered: Ταξινομημένη λίστα
|
||||
first: Πρώτο στοιχείο
|
||||
second: Δεύτερο στοιχείο
|
||||
link: Σύνδεσμος
|
||||
text: Κείμενο
|
||||
image: Εικόνα
|
||||
alt: Εναλ. κείμενο
|
||||
url: URL
|
||||
richtext_field:
|
||||
edit: Επεξεργασία
|
||||
preview: Προεπισκόπηση
|
||||
site:
|
||||
about:
|
||||
next: Επόμενη
|
||||
|
@ -2116,6 +2289,7 @@ el:
|
|||
ή μάθετε περισσότερα για την καταγραφή ιχνών με GPS στη <a href='https://wiki.openstreetmap.org/wiki/El:Beginners_Guide_1.2'>σελίδα
|
||||
wiki</a>.
|
||||
upload_trace: Αποστολή ίχνους
|
||||
all_traces: Όλα τα ίχνη
|
||||
destroy:
|
||||
scheduled_for_deletion: Το ίχνος προγραμματίστηκε για διαγραφή
|
||||
make_public:
|
||||
|
@ -2180,6 +2354,11 @@ el:
|
|||
flash: Ανακαλέσατε την αδειοδότηση για το %{application}.
|
||||
permissions:
|
||||
missing: Δεν έχετε επιτρέψει την πρόσβαση εφαρμογής σε αυτήν την λειτουργία
|
||||
scopes:
|
||||
write_api: Τροποποίηση του χάρτη
|
||||
read_gpx: Ανάγνωση προσωπικών ιχνών GPS
|
||||
write_gpx: Μεταφόρτωση ιχνών GPS
|
||||
write_notes: Τροποποίηση σημειώσεων
|
||||
oauth_clients:
|
||||
new:
|
||||
title: Καταχώρηση νέας εφαρμογής
|
||||
|
@ -2221,6 +2400,28 @@ el:
|
|||
flash: Οι πληροφορίες του πελάτη ενημερώθηκαν με επιτυχία
|
||||
destroy:
|
||||
flash: Η εγγραφή της εφαρμογής πελάτη καταστράφηκε
|
||||
oauth2_applications:
|
||||
index:
|
||||
new: Καταχώρηση νέας εφαρμογής
|
||||
name: Όνομα
|
||||
permissions: Άδειες
|
||||
application:
|
||||
edit: Επεξεργασία
|
||||
delete: Διαγραφή
|
||||
confirm_delete: Διαγραφή αυτής της εφαρμογής;
|
||||
new:
|
||||
title: Καταχώρηση νέας εφαρμογής
|
||||
edit:
|
||||
title: Επεξεργασία της εφαρμογής σας
|
||||
show:
|
||||
edit: Επεξεργασία
|
||||
delete: Διαγραφή
|
||||
confirm_delete: Διαγραφή αυτής της εφαρμογής;
|
||||
client_id: ID πελάτη
|
||||
client_secret: Μυστικό πελάτη
|
||||
client_secret_warning: Σιγουρευτείτε ότι θα αποθηκεύσετε αυτό το μυστικό - δεν
|
||||
θα είναι προσβάσιμο ξανά
|
||||
permissions: Άδειες
|
||||
users:
|
||||
new:
|
||||
title: Εγγραφή
|
||||
|
@ -2296,8 +2497,11 @@ el:
|
|||
my profile: Το Προφίλ Μου
|
||||
my settings: Οι Ρυθμίσεις Μου
|
||||
my comments: Τα Σχόλιά Μου
|
||||
my_preferences: Οι προτιμήσεις μου
|
||||
my_dashboard: Το ταμπλό μου
|
||||
blocks on me: Φραγές σε Εμένα
|
||||
blocks by me: Φραγές από Εμένα
|
||||
edit_profile: Επεξεργασία προφίλ
|
||||
send message: Αποστολή Μηνύματος
|
||||
diary: Ημερολόγιο
|
||||
edits: Επεξεργασίες
|
||||
|
@ -2316,13 +2520,6 @@ el:
|
|||
spam score: 'Σκορ Spam:'
|
||||
description: Περιγραφή
|
||||
user location: Τοποθεσία χρήστη
|
||||
my friends: Οι φίλοι μου
|
||||
no friends: Δεν έχετε προσθέσει φίλους ακόμα.
|
||||
km away: '%{count}χλμ μακριά'
|
||||
m away: '%{count}μ μακριά'
|
||||
nearby users: Άλλοι κοντινοί χρήστες
|
||||
no nearby users: Δεν υπάρχουν άλλοι χρήστες που δήλωσαν ότι χαρτογραφούν κοντά
|
||||
σας προς το παρόν.
|
||||
role:
|
||||
administrator: Αυτός ο χρήστης είναι διαχειριστής
|
||||
moderator: Αυτός ο χρήστης είναι συντονιστής
|
||||
|
@ -2343,15 +2540,7 @@ el:
|
|||
unhide_user: Επανεμφάνιση αυτού του λογαριασμού Χρήστη
|
||||
delete_user: Διαγραφή αυτού του Χρήστη
|
||||
confirm: Επιβεβαίωση
|
||||
friends_changesets: ομάδες αλλαγών φίλων
|
||||
friends_diaries: καταχωρήσεις ημερολογίου φίλων
|
||||
nearby_changesets: ομάδες αλλαγών από κοντινούς χρήστες
|
||||
nearby_diaries: καταχωρήσεις ημερολογίου από κοντινούς χρήστες
|
||||
report: Αναφορά αυτού του χρήστη
|
||||
popup:
|
||||
your location: Η τοποθεσία σας
|
||||
nearby mapper: Κοντινός χαρτογράφος
|
||||
friend: Φίλος
|
||||
account:
|
||||
title: Επεξεργασία λογαριασμού
|
||||
my settings: Οι ρυθμίσεις μου
|
||||
|
@ -2392,7 +2581,6 @@ el:
|
|||
link text: τι είναι αυτό;
|
||||
save changes button: Αποθήκευση αλλαγών
|
||||
make edits public button: Να γίνουν όλες οι επεξεργασίες μου δημόσιες
|
||||
return to profile: Επιστροφή στο προφίλ
|
||||
flash update success confirm needed: Οι πληροφορίες του χρήστη ενημερώθηκαν
|
||||
επιτυχώς. Ελέγξτε το ηλεκτρονικό ταχυδρομείο σας για μια ειδοποίηση επιβεβαίωσης
|
||||
της νέας σας διεύθυνση ηλεκτρονικού ταχυδρομείου.
|
||||
|
@ -2417,6 +2605,7 @@ el:
|
|||
suspended:
|
||||
title: Ο Λογαριασμός έχει Ανασταλεί
|
||||
heading: Ο Λογαριασμός έχει Ανασταλεί
|
||||
support: υποστήριξη
|
||||
body_html: |-
|
||||
<p>
|
||||
Λυπάμαι, ο λογαριασμός σας έχει αυτόματα ανασταλεί λόγω
|
||||
|
@ -2573,6 +2762,7 @@ el:
|
|||
title: Σημειώσεις που υποβλήθηκαν ή σχολιάστηκαν από τον %{user}
|
||||
heading: σημειώσεις του %{user}
|
||||
subheading_html: Σημειώσεις που υποβλήθηκαν ή σχολιάστηκαν από τον %{user}
|
||||
no_notes: Χωρίς σημειώσεις
|
||||
id: Αναγνωριστικό
|
||||
creator: Δημιουργός
|
||||
description: Περιγραφή
|
||||
|
@ -2679,12 +2869,12 @@ el:
|
|||
directions:
|
||||
ascend: Ανάβαση
|
||||
engines:
|
||||
fossgis_osrm_bike: Με ποδήλατο (OSRM)
|
||||
fossgis_osrm_bike: Ποδήλατο (OSRM)
|
||||
fossgis_osrm_car: Αυτοκίνητο (OSRM)
|
||||
fossgis_osrm_foot: Με τα πόδια (OSRM)
|
||||
fossgis_osrm_foot: Πόδια (OSRM)
|
||||
graphhopper_bicycle: Ποδήλατο (GraphHopper)
|
||||
graphhopper_car: Με τα πόδια (GraphHopper)
|
||||
graphhopper_foot: Με τα πόδια (GraphHopper)
|
||||
graphhopper_car: Αυτοκίνητο (GraphHopper)
|
||||
graphhopper_foot: Πόδια (GraphHopper)
|
||||
descend: Κατάβαση
|
||||
directions: Οδηγίες
|
||||
distance: Απόσταση
|
||||
|
|
|
@ -422,6 +422,22 @@ en-GB:
|
|||
timeout:
|
||||
sorry: Sorry, the list of changeset comments you requested took too long to
|
||||
retrieve.
|
||||
dashboards:
|
||||
contact:
|
||||
km away: '%{count}km away'
|
||||
m away: '%{count}m away'
|
||||
popup:
|
||||
your location: Your location
|
||||
nearby mapper: Nearby mapper
|
||||
friend: Friend
|
||||
show:
|
||||
no friends: You have not added any friends yet.
|
||||
nearby users: Other nearby users
|
||||
no nearby users: There are no other users who admit to mapping nearby yet.
|
||||
friends_changesets: friends' changesets
|
||||
friends_diaries: friends' diary entries
|
||||
nearby_changesets: nearby user changesets
|
||||
nearby_diaries: nearby user diary entries
|
||||
diary_entries:
|
||||
new:
|
||||
title: New Diary Entry
|
||||
|
@ -2112,11 +2128,6 @@ en-GB:
|
|||
spam score: 'Spam Score:'
|
||||
description: Description
|
||||
user location: User location
|
||||
no friends: You have not added any friends yet.
|
||||
km away: '%{count}km away'
|
||||
m away: '%{count}m away'
|
||||
nearby users: Other nearby users
|
||||
no nearby users: There are no other users who admit to mapping nearby yet.
|
||||
role:
|
||||
administrator: This user is an administrator
|
||||
moderator: This user is a moderator
|
||||
|
@ -2137,14 +2148,6 @@ en-GB:
|
|||
unhide_user: Unhide this User
|
||||
delete_user: Delete this User
|
||||
confirm: Confirm
|
||||
friends_changesets: friends' changesets
|
||||
friends_diaries: friends' diary entries
|
||||
nearby_changesets: nearby user changesets
|
||||
nearby_diaries: nearby user diary entries
|
||||
popup:
|
||||
your location: Your location
|
||||
nearby mapper: Nearby mapper
|
||||
friend: Friend
|
||||
account:
|
||||
title: Edit account
|
||||
my settings: My settings
|
||||
|
@ -2181,7 +2184,6 @@ en-GB:
|
|||
link text: what is this?
|
||||
save changes button: Save Changes
|
||||
make edits public button: Make all my edits public
|
||||
return to profile: Return to profile
|
||||
flash update success confirm needed: User information updated successfully.
|
||||
Check your email for a note to confirm your new email address.
|
||||
flash update success: User information updated successfully.
|
||||
|
|
|
@ -416,6 +416,26 @@ en:
|
|||
title_particular: "OpenStreetMap changeset #%{changeset_id} discussion"
|
||||
timeout:
|
||||
sorry: "Sorry, the list of changeset comments you requested took too long to retrieve."
|
||||
dashboards:
|
||||
contact:
|
||||
km away: "%{count}km away"
|
||||
m away: "%{count}m away"
|
||||
popup:
|
||||
your location: "Your location"
|
||||
nearby mapper: "Nearby mapper"
|
||||
friend: "Friend"
|
||||
show:
|
||||
title: My Dashboard
|
||||
no_home_location_html: "%{edit_profile_link} and set your home location to see nearby users."
|
||||
edit_your_profile: Edit your profile
|
||||
my friends: My friends
|
||||
no friends: You have not added any friends yet.
|
||||
nearby users: "Other nearby users"
|
||||
no nearby users: "There are no other users who admit to mapping nearby yet."
|
||||
friends_changesets: "friends' changesets"
|
||||
friends_diaries: "friends' diary entries"
|
||||
nearby_changesets: "nearby user changesets"
|
||||
nearby_diaries: "nearby user diary entries"
|
||||
diary_entries:
|
||||
new:
|
||||
title: New Diary Entry
|
||||
|
@ -747,6 +767,7 @@ en:
|
|||
window_construction: "Window Construction"
|
||||
winery: "Winery"
|
||||
"yes": "Craft Shop"
|
||||
crossing: "Crossing"
|
||||
emergency:
|
||||
access_point: "Access Point"
|
||||
ambulance_station: "Ambulance Station"
|
||||
|
@ -1002,6 +1023,7 @@ en:
|
|||
hill: "Hill"
|
||||
hot_spring: "Hot Spring"
|
||||
island: "Island"
|
||||
isthmus: "Isthmus"
|
||||
land: "Land"
|
||||
marsh: "Marsh"
|
||||
moor: "Moor"
|
||||
|
@ -1016,10 +1038,13 @@ en:
|
|||
sand: "Sand"
|
||||
scree: "Scree"
|
||||
scrub: "Scrub"
|
||||
shingle: "Shingle"
|
||||
spring: "Spring"
|
||||
stone: "Stone"
|
||||
strait: "Strait"
|
||||
tree: "Tree"
|
||||
tree_row: "Tree Row"
|
||||
tundra: "Tundra"
|
||||
valley: "Valley"
|
||||
volcano: "Volcano"
|
||||
water: "Water"
|
||||
|
@ -1420,8 +1445,9 @@ en:
|
|||
intro_header: Welcome to OpenStreetMap!
|
||||
intro_text: OpenStreetMap is a map of the world, created by people like you and free to use under an open license.
|
||||
intro_2_create_account: "Create a user account"
|
||||
hosting_partners_html: "Hosting is supported by %{ucl}, %{bytemark}, and other %{partners}."
|
||||
hosting_partners_html: "Hosting is supported by %{ucl}, %{fastly}, %{bytemark}, and other %{partners}."
|
||||
partners_ucl: "UCL"
|
||||
partners_fastly: "Fastly"
|
||||
partners_bytemark: "Bytemark Hosting"
|
||||
partners_partners: "partners"
|
||||
tou: "Terms of Use"
|
||||
|
@ -1870,10 +1896,10 @@ en:
|
|||
<a href="https://www.vorarlberg.at/vorarlberg/bauen_wohnen/bauen/vermessung_geoinformation/weitereinformationen/services/wmsdienste.htm">Land Vorarlberg</a> and
|
||||
Land Tirol (under <a href="https://www.tirol.gv.at/applikationen/e-government/data/nutzungsbedingungen/">CC BY AT with amendments</a>).
|
||||
contributors_au_html: |
|
||||
<strong>Australia</strong>: Contains data sourced from
|
||||
<a href="https://www.psma.com.au/psma-data-copyright-and-disclaimer">PSMA Australia Limited</a>
|
||||
<strong>Australia</strong>: Incorporates or developed using Administrative Boundaries ©
|
||||
<a href="https://geoscape.com.au/legal/data-copyright-and-disclaimer/">Geoscape Australia</a>
|
||||
licensed by the Commonwealth of Australia under
|
||||
<a href="https://creativecommons.org/licenses/by/4.0/">CC BY 4.0</a>.
|
||||
<a href="https://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International licence (CC BY 4.0)</a>.
|
||||
contributors_ca_html: |
|
||||
<strong>Canada</strong>: Contains data from
|
||||
GeoBase®, GeoGratis (© Department of Natural
|
||||
|
@ -2329,6 +2355,11 @@ en:
|
|||
blocked_zero_hour: "You have an urgent message on the OpenStreetMap web site. You need to read the message before you will be able to save your edits."
|
||||
blocked: "Your access to the API has been blocked. Please log-in to the web interface to find out more."
|
||||
need_to_see_terms: "Your access to the API is temporarily suspended. Please log-in to the web interface to view the Contributor Terms. You do not need to agree, but you must view them."
|
||||
settings_menu:
|
||||
account_settings: Account Settings
|
||||
oauth1_settings: OAuth 1 settings
|
||||
oauth2_applications: OAuth 2 applications
|
||||
oauth2_authorizations: OAuth 2 authorizations
|
||||
oauth:
|
||||
authorize:
|
||||
title: "Authorize access to your account"
|
||||
|
@ -2509,6 +2540,7 @@ en:
|
|||
my settings: My Settings
|
||||
my comments: My Comments
|
||||
my_preferences: My Preferences
|
||||
my_dashboard: My Dashboard
|
||||
blocks on me: Blocks on Me
|
||||
blocks by me: Blocks by Me
|
||||
edit_profile: Edit Profile
|
||||
|
@ -2530,14 +2562,6 @@ en:
|
|||
spam score: "Spam Score:"
|
||||
description: Description
|
||||
user location: User location
|
||||
no_home_location_html: "%{edit_profile_link} and set your home location to see nearby users."
|
||||
edit_your_profile: Edit your profile
|
||||
my friends: My friends
|
||||
no friends: You have not added any friends yet.
|
||||
km away: "%{count}km away"
|
||||
m away: "%{count}m away"
|
||||
nearby users: "Other nearby users"
|
||||
no nearby users: "There are no other users who admit to mapping nearby yet."
|
||||
role:
|
||||
administrator: "This user is an administrator"
|
||||
moderator: "This user is a moderator"
|
||||
|
@ -2558,15 +2582,7 @@ en:
|
|||
unhide_user: "Unhide this User"
|
||||
delete_user: "Delete this User"
|
||||
confirm: "Confirm"
|
||||
friends_changesets: "friends' changesets"
|
||||
friends_diaries: "friends' diary entries"
|
||||
nearby_changesets: "nearby user changesets"
|
||||
nearby_diaries: "nearby user diary entries"
|
||||
report: Report this User
|
||||
popup:
|
||||
your location: "Your location"
|
||||
nearby mapper: "Nearby mapper"
|
||||
friend: "Friend"
|
||||
account:
|
||||
title: "Edit account"
|
||||
my settings: My Settings
|
||||
|
@ -2595,10 +2611,6 @@ en:
|
|||
link text: "what is this?"
|
||||
save changes button: Save Changes
|
||||
make edits public button: Make all my edits public
|
||||
return to profile: Return to profile
|
||||
oauth1 settings: OAuth 1 settings
|
||||
oauth2 applications: OAuth 2 applications
|
||||
oauth2 authorizations: OAuth 2 authorizations
|
||||
flash update success confirm needed: "User information updated successfully. Check your email for a note to confirm your new email address."
|
||||
flash update success: "User information updated successfully."
|
||||
set_home:
|
||||
|
|
|
@ -444,6 +444,27 @@ eo:
|
|||
timeout:
|
||||
sorry: Bedaŭrinde daŭris tro longe por akiri la petitan liston de komentoj pri
|
||||
ŝanĝaro.
|
||||
dashboards:
|
||||
contact:
|
||||
km away: '%{count} km for'
|
||||
m away: '%{count} m for'
|
||||
popup:
|
||||
your location: Via loko
|
||||
nearby mapper: Proksima uzanto
|
||||
friend: Amiko
|
||||
show:
|
||||
title: Mia panelo
|
||||
no_home_location_html: '%{edit_profile_link} kaj agordu vian hejmlokon por vidi
|
||||
proksimajn uzantojn.'
|
||||
edit_your_profile: Redaktu vian profilon
|
||||
my friends: Miaj amikoj
|
||||
no friends: Vi ne aldonis iun amikon ankoraŭ.
|
||||
nearby users: Plej proksimaj uzantoj
|
||||
no nearby users: Neniu alia uzanto, kiu deklaris mapigadon en tiu ĉi areo.
|
||||
friends_changesets: ŝanĝaroj de amikoj
|
||||
friends_diaries: afiŝoj en taglibroj de amikoj
|
||||
nearby_changesets: ŝanĝaroj de proksimuloj
|
||||
nearby_diaries: afiŝoj en taglibroj de proksimuloj
|
||||
diary_entries:
|
||||
new:
|
||||
title: Nova taglibra afiŝo
|
||||
|
@ -778,6 +799,7 @@ eo:
|
|||
window_construction: Laborejo de fenestr-faristo
|
||||
winery: Vinejo
|
||||
"yes": Metiejo
|
||||
crossing: Trapasejo
|
||||
emergency:
|
||||
access_point: Vivsava rekonebla signo
|
||||
ambulance_station: Ambulanca stacio
|
||||
|
@ -1033,6 +1055,7 @@ eo:
|
|||
hill: Monteto
|
||||
hot_spring: Tervarma akvofonto
|
||||
island: Insulo
|
||||
isthmus: Istmo
|
||||
land: Tero
|
||||
marsh: Aluvia grundo
|
||||
moor: Arbustetaro
|
||||
|
@ -1047,10 +1070,13 @@ eo:
|
|||
sand: Sabla tereno
|
||||
scree: Rokfalaĵo
|
||||
scrub: Arbustaro
|
||||
shingle: Sablega tereno
|
||||
spring: Akvofonto
|
||||
stone: Roko
|
||||
strait: Markolo
|
||||
tree: Arbo
|
||||
tree_row: Arb-vico
|
||||
tundra: Tundro
|
||||
valley: Valo
|
||||
volcano: Vulkano
|
||||
water: Akvejo
|
||||
|
@ -1445,9 +1471,10 @@ eo:
|
|||
intro_text: OpenStreetMap estas mapo de la mondo, kreata de homoj kiel vi, kaj
|
||||
libere uzebla laŭ malferma permesilo.
|
||||
intro_2_create_account: Krei konton
|
||||
hosting_partners_html: Retgastigo estas subtenata de %{ucl}, %{bytemark} kaj aliaj
|
||||
%{partners}.
|
||||
hosting_partners_html: Retgastigo estas subtenata de %{ucl}, %{fastly}, %{bytemark}
|
||||
kaj aliaj %{partners}.
|
||||
partners_ucl: University College London
|
||||
partners_fastly: Fastly
|
||||
partners_bytemark: Bytemark Hosting
|
||||
partners_partners: kunlaborantoj
|
||||
tou: Uzkondiĉoj
|
||||
|
@ -1923,10 +1950,11 @@ eo:
|
|||
<strong>Aŭstrujo</strong>: enhavas datumojn el <a href="https://data.wien.gv.at/">Stadt Wien</a> (laŭ <a href="https://creativecommons.org/licenses/by/3.0/at/deed.eo">CC BY</a>),
|
||||
<a href="https://www.vorarlberg.at/vorarlberg/bauen_wohnen/bauen/vermessung_geoinformation/weitereinformationen/services/wmsdienste.htm">Land Vorarlberg</a> kaj
|
||||
Land Tirol (laŭ <a href="https://www.tirol.gv.at/applikationen/e-government/data/nutzungsbedingungen/">CC BY AT kun postaj ŝanĝoj</a>).
|
||||
contributors_au_html: '<strong>Aŭstralio</strong>: enhavas datumojn el <a
|
||||
href="https://www.psma.com.au/psma-data-copyright-and-disclaimer">PSMA Australia
|
||||
Limited</a> kunhavigataj de Komunejo de Aŭstralio laŭ la permesilo <a href="https://creativecommons.org/licenses/by/4.0/deed.eo">CC
|
||||
BY 4.0</a>.'
|
||||
contributors_au_html: '<strong>Aŭstralio</strong>: enhavas datumojn pri administraj
|
||||
limoj liveritaj de <a href="https://geoscape.com.au/legal/data-copyright-and-disclaimer/">Geoscape
|
||||
Australia</a> rajtigitaj de la Komunejo de Aŭstralio laŭ la permesilo <a
|
||||
href="https://creativecommons.org/licenses/by/4.0/deed.eo">Krea Komunaĵo
|
||||
Atribuite 4.0 Tutmonda (CC BY 4.0)</a>.'
|
||||
contributors_ca_html: |-
|
||||
<strong>Kanado</strong>: enhavas datumojn el
|
||||
GeoBase®, GeoGratis (© Department of Natural
|
||||
|
@ -2113,7 +2141,7 @@ eo:
|
|||
aplikaĵo por Mac kaj Windows</a>.
|
||||
id_html: Aliokaze, vi povas ŝanĝi vian implicitan redaktilon al iD, kiu laboras
|
||||
ene via retfoliumilo (kiel Potlatch antaŭe). <a href="%{settings_url}">Alklaku
|
||||
tien ĉi por ŝanĝi agordojn.</a>
|
||||
tien ĉi por ŝanĝi preferojn.</a>
|
||||
sidebar:
|
||||
search_results: Serĉrezultoj
|
||||
close: Fermi
|
||||
|
@ -2364,6 +2392,11 @@ eo:
|
|||
need_to_see_terms: Via aliro al API estas dumtempe provizore haltigita. Bonvolu
|
||||
ensaluti al reta fasado por legi interkonsenton pri kontribuado. Vi ne devas
|
||||
akcepti ĝin, sed vi devas legi ĝin.
|
||||
settings_menu:
|
||||
account_settings: Agordoj pri konto
|
||||
oauth1_settings: Agordoj OAuth 1
|
||||
oauth2_applications: Aplikaĵoj OAuth 2
|
||||
oauth2_authorizations: Rajtigoj OAuth 2
|
||||
oauth:
|
||||
authorize:
|
||||
title: Rajtigi aliron al via konto
|
||||
|
@ -2564,7 +2597,8 @@ eo:
|
|||
my profile: Profilo
|
||||
my settings: Agordoj
|
||||
my comments: Miaj komentoj
|
||||
my_preferences: Miaj preferoj
|
||||
my_preferences: Preferoj
|
||||
my_dashboard: Panelo
|
||||
blocks on me: Blokas min
|
||||
blocks by me: Blokitaj de mi
|
||||
edit_profile: Redakti profilon
|
||||
|
@ -2586,14 +2620,6 @@ eo:
|
|||
spam score: 'Trudmesaĝa poentaro:'
|
||||
description: Priskribo
|
||||
user location: Loko de uzanto
|
||||
set_location_html: <a href="%{edit_profile_url}">Redaktu vian profilon</a> kaj
|
||||
agordu hejmlokon por vidi proksimajn uzantojn.
|
||||
my friends: Miaj amikoj
|
||||
no friends: Vi ne aldonis iun amikon ankoraŭ.
|
||||
km away: '%{count} km for'
|
||||
m away: '%{count} m for'
|
||||
nearby users: Plej proksimaj uzantoj
|
||||
no nearby users: Neniu alia uzanto, kiu deklaris mapigadon en tiu ĉi areo.
|
||||
role:
|
||||
administrator: Ĉi tiu uzanto estas administranto
|
||||
moderator: Ĉi tiu uzanto estas kontrolanto
|
||||
|
@ -2614,18 +2640,10 @@ eo:
|
|||
unhide_user: Malkaŝi ĉi tiun uzanton
|
||||
delete_user: Forigi ĉi tiun uzanton
|
||||
confirm: Konfirmi
|
||||
friends_changesets: ŝanĝaroj de amikoj
|
||||
friends_diaries: afiŝoj en taglibroj de amikoj
|
||||
nearby_changesets: ŝanĝaroj de proksimuloj
|
||||
nearby_diaries: afiŝoj en taglibroj de proksimuloj
|
||||
report: Raporti tiun ĉi uzanton
|
||||
popup:
|
||||
your location: Via loko
|
||||
nearby mapper: Proksima uzanto
|
||||
friend: Amiko
|
||||
account:
|
||||
title: Redakti konton
|
||||
my settings: Agordoj
|
||||
my settings: Miaj agordoj
|
||||
current email address: Aktuala retpoŝta adreso
|
||||
external auth: Ekstera aŭtentigo
|
||||
openid:
|
||||
|
@ -2659,10 +2677,6 @@ eo:
|
|||
link text: kio estas tio?
|
||||
save changes button: Konservi ŝanĝojn
|
||||
make edits public button: Publikigu ĉiujn miajn redaktojn.
|
||||
return to profile: Reen al profilo
|
||||
oauth1 settings: Agordoj OAuth 1
|
||||
oauth2 applications: Aplikaĵoj OAuth 2
|
||||
oauth2 authorizations: Rajtigoj OAuth 2
|
||||
flash update success confirm needed: Uzantinformoj sukcese freŝigitaj. Kontrolu
|
||||
vian retpoŝtilon por iu mesaĝo kiu konfirmos vian novan retadreso.
|
||||
flash update success: Uzantinformoj sukcese freŝigitaj.
|
||||
|
|
|
@ -15,6 +15,7 @@
|
|||
# Author: Csbotero
|
||||
# Author: DannyS712
|
||||
# Author: Dcapillae
|
||||
# Author: Destinid10 2
|
||||
# Author: Dgstranz
|
||||
# Author: Egofer
|
||||
# Author: Ejegg
|
||||
|
@ -60,6 +61,7 @@
|
|||
# Author: Peter17
|
||||
# Author: Pompilos
|
||||
# Author: Remux
|
||||
# Author: Reverse88
|
||||
# Author: Rodhos
|
||||
# Author: Rodm23
|
||||
# Author: Rodney Araujo
|
||||
|
@ -501,6 +503,27 @@ es:
|
|||
timeout:
|
||||
sorry: Lo sentimos, la lista de comentarios del conjunto de cambios que solicitó
|
||||
tardó demasiado en recuperarse.
|
||||
dashboards:
|
||||
contact:
|
||||
km away: '%{count} km de distancia'
|
||||
m away: '%{count} m de distancia'
|
||||
popup:
|
||||
your location: Su ubicación
|
||||
nearby mapper: Mapeadores cercanos
|
||||
friend: Amigo
|
||||
show:
|
||||
title: Mi tablero
|
||||
no_home_location_html: '%{edit_profile_link} y establece tu ubicación de origen
|
||||
para ver los usuarios cercanos.'
|
||||
edit_your_profile: Edita tu perfil
|
||||
my friends: Mis amigos
|
||||
no friends: No has añadido ningún amigo aún.
|
||||
nearby users: Otros usuarios cercanos
|
||||
no nearby users: Todavía no hay usuarios que se hayan ubicado en su proximidad.
|
||||
friends_changesets: conjuntos de cambios realizados por amigos
|
||||
friends_diaries: entradas de diarios de amigos
|
||||
nearby_changesets: conjuntos de cambios de los usuarios cercanos
|
||||
nearby_diaries: entradas de diarios de usuarios cercanos
|
||||
diary_entries:
|
||||
new:
|
||||
title: Nueva entrada en el diario
|
||||
|
@ -1052,7 +1075,7 @@ es:
|
|||
telescope: Telescopio
|
||||
tower: Torre
|
||||
utility_pole: Poste de servicios públicos
|
||||
wastewater_plant: Planta de tratamiento de aguas
|
||||
wastewater_plant: Depuradora de aguas residuales
|
||||
watermill: Molino hidráulico
|
||||
water_tap: Llave de agua
|
||||
water_tower: Torre de agua
|
||||
|
@ -2206,9 +2229,9 @@ es:
|
|||
para su uso en un navegador web.
|
||||
desktop_html: Aún puede utilizarse Potlatch mediante la <a href="https://www.systemed.net/potlatch/">descarga
|
||||
de la aplicación de escritorio para Mac y Windows</a>.
|
||||
id_html: Alternativamente, puede poner su editor predeterminado a iD, el que
|
||||
id_html: Alternativamente, puede poner su editor predeterminado a iD, el que
|
||||
se ejecuta en su navegador como hizo Potlatch anteriormente. <a href="%{settings_url}">Cambie
|
||||
la configuración de usuario aquí</a>.
|
||||
sus preferencias aquí</a>.
|
||||
sidebar:
|
||||
search_results: Resultados de la búsqueda
|
||||
close: Cerrar
|
||||
|
@ -2464,6 +2487,11 @@ es:
|
|||
need_to_see_terms: Su acceso a la API está temporalmente suspendido. Inicie
|
||||
sesión en la web para ver los Términos de colaborador. No es necesario aceptarlos,
|
||||
pero debe conocerlos.
|
||||
settings_menu:
|
||||
account_settings: Configuración de la cuenta
|
||||
oauth1_settings: Otras configuraciones
|
||||
oauth2_applications: Aplicaciones de OAuth 2
|
||||
oauth2_authorizations: Autorizaciones de OAuth 2
|
||||
oauth:
|
||||
authorize:
|
||||
title: Autorizar el acceso a su cuenta
|
||||
|
@ -2664,6 +2692,7 @@ es:
|
|||
my settings: Mi configuración
|
||||
my comments: Mis comentarios
|
||||
my_preferences: Mis preferencias
|
||||
my_dashboard: Mi tablero
|
||||
blocks on me: Bloqueos sobre mí
|
||||
blocks by me: Bloqueados por mí
|
||||
edit_profile: Editar perfil
|
||||
|
@ -2685,12 +2714,6 @@ es:
|
|||
spam score: 'Puntuación de spam:'
|
||||
description: Descripción
|
||||
user location: Ubicación del usuario
|
||||
my friends: Mis amigos
|
||||
no friends: No has añadido ningún amigo aún.
|
||||
km away: '%{count} km de distancia'
|
||||
m away: '%{count} m de distancia'
|
||||
nearby users: Otros usuarios cercanos
|
||||
no nearby users: Todavía no hay usuarios que se hayan ubicado en su proximidad.
|
||||
role:
|
||||
administrator: Este usuario es un administrador
|
||||
moderator: Este usuario es un moderador
|
||||
|
@ -2711,15 +2734,7 @@ es:
|
|||
unhide_user: Mostrar este usuario
|
||||
delete_user: Eliminar este usuario
|
||||
confirm: Confirmar
|
||||
friends_changesets: conjuntos de cambios realizados por amigos
|
||||
friends_diaries: entradas de diarios de amigos
|
||||
nearby_changesets: conjuntos de cambios de los usuarios cercanos
|
||||
nearby_diaries: entradas de diarios de usuarios cercanos
|
||||
report: Denunciar a este usuario
|
||||
popup:
|
||||
your location: Su ubicación
|
||||
nearby mapper: Mapeadores cercanos
|
||||
friend: Amigo
|
||||
account:
|
||||
title: Editar cuenta
|
||||
my settings: Mis preferencias
|
||||
|
@ -2758,10 +2773,6 @@ es:
|
|||
link text: ¿Qué es esto?
|
||||
save changes button: Guardar cambios
|
||||
make edits public button: Hacer que todas mis ediciones sean públicas
|
||||
return to profile: Regresar al perfil
|
||||
oauth1 settings: Otras configuraciones
|
||||
oauth2 applications: Aplicaciones de OAuth 2
|
||||
oauth2 authorizations: Autorizaciones de OAuth 2
|
||||
flash update success confirm needed: La información del usuario se ha actualizado
|
||||
correctamente. Compruebe su correo electrónico para ver una nota sobre cómo
|
||||
confirmar su nueva dirección de correo electrónico.
|
||||
|
|
|
@ -97,7 +97,7 @@ et:
|
|||
language: Keel
|
||||
doorkeeper/application:
|
||||
name: Nimi
|
||||
redirect_uri: Ümber suunatud URI-d
|
||||
redirect_uri: Ümbersuunamise URI-d
|
||||
confidential: Konfidentsiaalne rakendus?
|
||||
scopes: Õigused
|
||||
friend:
|
||||
|
@ -398,6 +398,27 @@ et:
|
|||
index:
|
||||
title_all: OpenStreetMapi muudatuskogumi arutelu
|
||||
title_particular: 'OpenStreetMapi muudatuskogumi #%{changeset_id} arutelu'
|
||||
dashboards:
|
||||
contact:
|
||||
km away: '%{count} kilomeetri kaugusel'
|
||||
m away: '%{count} meetri kaugusel'
|
||||
popup:
|
||||
your location: Sinu asukoht
|
||||
nearby mapper: Lähedaloevad kaardistajad
|
||||
friend: Sõber
|
||||
show:
|
||||
no_home_location_html: '%{edit_profile_link} ja määra enda asukoht, et näha
|
||||
ümberkaudseid kasutajaid.'
|
||||
edit_your_profile: Muuda profiili
|
||||
my friends: Minu sõbrad
|
||||
no friends: Sa ei ole lisanud veel ühtegi sõpra.
|
||||
nearby users: Teised lähedal asuvad kasutajad
|
||||
no nearby users: Puuduvad teised kasutajad, kes tunnistavad, et kaardistavad
|
||||
läheduses.
|
||||
friends_changesets: sõprade muudatuskogumid
|
||||
friends_diaries: sõprade päevikusissekanded
|
||||
nearby_changesets: lähedalasuvate kasutajate muudatuskogumid
|
||||
nearby_diaries: lähedalasuvate kasutajate päevikusissekanded
|
||||
diary_entries:
|
||||
new:
|
||||
title: Uus päeviku sissekanne
|
||||
|
@ -538,6 +559,7 @@ et:
|
|||
hospital: Haigla
|
||||
hunting_stand: Jahikantsel
|
||||
ice_cream: Jäätis
|
||||
internet_cafe: Internetikohvik
|
||||
kindergarten: Lasteaed
|
||||
language_school: Keeltekool
|
||||
library: Raamatukogu
|
||||
|
@ -547,6 +569,7 @@ et:
|
|||
nightclub: Ööklubi
|
||||
nursing_home: Hooldekodu
|
||||
parking: Parkimisplats
|
||||
parking_space: Parkimiskoht
|
||||
pharmacy: Apteek
|
||||
place_of_worship: Pühapaik
|
||||
police: Politsei
|
||||
|
@ -573,6 +596,7 @@ et:
|
|||
national_park: Rahvuspark
|
||||
bridge:
|
||||
aqueduct: Akvedukt
|
||||
boardwalk: Laudtee
|
||||
suspension: Rippsild
|
||||
swing: Pöördsild
|
||||
viaduct: Viadukt
|
||||
|
@ -1212,8 +1236,25 @@ et:
|
|||
reset: Lähtesta parool
|
||||
flash changed: Sinu parool on muudetud.
|
||||
flash token bad: Ei leitud sellist kinnituskoodi. Kontrolli URL-i.
|
||||
preferences:
|
||||
show:
|
||||
title: Minu eelistused
|
||||
preferred_editor: Eelistatav redaktor
|
||||
preferred_languages: Eelistatavad keeled
|
||||
edit_preferences: Muuda eelistusi
|
||||
edit:
|
||||
title: Eelistuste muutmine
|
||||
save: Uuenda eelistusi
|
||||
cancel: Loobu
|
||||
update:
|
||||
failure: Eelistusi ei õnnestunud uuendada.
|
||||
update_success_flash:
|
||||
message: Eelistused uuendatud.
|
||||
profiles:
|
||||
edit:
|
||||
title: Profiili muutmine
|
||||
save: Uuenda profiili
|
||||
cancel: Loobu
|
||||
image: Pilt
|
||||
gravatar:
|
||||
gravatar: Kasuta Gravatari
|
||||
|
@ -1226,6 +1267,9 @@ et:
|
|||
home location: Kodu asukoht
|
||||
no home location: Sa pole oma kodu asukohta märkinud.
|
||||
update home location on click: Kas uuendan kodu asukohta, kui klõpsan kaardil?
|
||||
update:
|
||||
success: Profiil uuendatud.
|
||||
failure: Profiili ei õnnestunud uuendada.
|
||||
sessions:
|
||||
new:
|
||||
title: Sisselogimine
|
||||
|
@ -1810,6 +1854,11 @@ et:
|
|||
need_to_see_terms: Sinu juurdepääs API-le on ajutiselt peatatud. Palun logi
|
||||
sisse veebiliidese kaudu, et näha kaastöötingimusi. Sa ei pea nendega nõustuma,
|
||||
kuid sa pead neid vaatama.
|
||||
settings_menu:
|
||||
account_settings: Konto sätted
|
||||
oauth1_settings: OAuth 1 sätted
|
||||
oauth2_applications: OAuth 2 rakendused
|
||||
oauth2_authorizations: OAuth 2 volitused
|
||||
oauth:
|
||||
authorize:
|
||||
title: Lubada juurdepääs sinu kontole
|
||||
|
@ -1905,7 +1954,7 @@ et:
|
|||
delete: Kustuta
|
||||
confirm_delete: Kas kustutad selle rakenduse?
|
||||
permissions: Õigused
|
||||
redirect_uris: Ümber suunatud URI-d
|
||||
redirect_uris: Ümbersuunamise URI-d
|
||||
oauth2_authorized_applications:
|
||||
index:
|
||||
title: Minu volitatud rakendused
|
||||
|
@ -1972,10 +2021,12 @@ et:
|
|||
my notes: Minu märkused
|
||||
my messages: Minu sõnumid
|
||||
my profile: Minu profiil
|
||||
my settings: Minu seadistused
|
||||
my settings: Minu sätted
|
||||
my comments: Minu kommentaarid
|
||||
my_preferences: Minu eelistused
|
||||
blocks on me: Saadud blokeeringud
|
||||
blocks by me: Minu seatud blokeeringud
|
||||
edit_profile: Muuda profiili
|
||||
send message: Saada sõnum
|
||||
diary: Päevik
|
||||
edits: Muudatused
|
||||
|
@ -1994,13 +2045,6 @@ et:
|
|||
spam score: 'Rämpsposti tulemus:'
|
||||
description: Kirjeldus
|
||||
user location: Kasutaja asukoht
|
||||
my friends: Minu sõbrad
|
||||
no friends: Sa ei ole lisanud veel ühtegi sõpra.
|
||||
km away: '%{count} kilomeetri kaugusel'
|
||||
m away: '%{count} meetri kaugusel'
|
||||
nearby users: Teised lähedal asuvad kasutajad
|
||||
no nearby users: Puuduvad teised kasutajad, kes tunnistavad, et kaardistavad
|
||||
läheduses.
|
||||
role:
|
||||
administrator: See kasutaja on administraator
|
||||
moderator: See kasutaja on moderaator
|
||||
|
@ -2021,18 +2065,10 @@ et:
|
|||
unhide_user: Muuda see kasutaja nähtavaks
|
||||
delete_user: Kustuta see kasutaja
|
||||
confirm: Kinnita
|
||||
friends_changesets: sõprade muudatuskogumid
|
||||
friends_diaries: sõprade päevikusissekanded
|
||||
nearby_changesets: lähedalasuvate kasutajate muudatuskogumid
|
||||
nearby_diaries: lähedalasuvate kasutajate päevikusissekanded
|
||||
report: Teata sellest kasutajast
|
||||
popup:
|
||||
your location: Sinu asukoht
|
||||
nearby mapper: Lähedaloevad kaardistajad
|
||||
friend: Sõber
|
||||
account:
|
||||
title: Konto muutmine
|
||||
my settings: Minu seaded
|
||||
my settings: Minu sätted
|
||||
current email address: Praegune e-posti aadress
|
||||
external auth: Väline autentimine
|
||||
openid:
|
||||
|
@ -2066,10 +2102,6 @@ et:
|
|||
link text: mis see on?
|
||||
save changes button: Salvesta muudatused
|
||||
make edits public button: Tee kõik minu muudatused avalikuks
|
||||
return to profile: Tagasi profiili juurde
|
||||
oauth1 settings: OAuth 1 sätted
|
||||
oauth2 applications: OAuth 2 rakendused
|
||||
oauth2 authorizations: OAuth 2 volitused
|
||||
flash update success confirm needed: Kasutajateabe värskendamine õnnestus. Kontrolli
|
||||
e-kirju, et kinnitada uus e-posti aadress.
|
||||
flash update success: Kasutaja informatsioon uuendatud edukalt.
|
||||
|
@ -2110,9 +2142,8 @@ et:
|
|||
option_1: |-
|
||||
Kui oled esimest korda OpenStreetMapis, siis loo palun uus kasutajakonto,
|
||||
täites allpool oleva vormi.
|
||||
option_2: Kui sul juba on kasutajakonto, saad enda kontole siseneda, kasutades
|
||||
oma kasutajatunnust ja parooli ning seejärel siduda kasutaja seadetes konto
|
||||
oma ID-ga.
|
||||
option_2: Kui sul juba on kasutajakonto, saad sisse logida, kasutades oma kasutajanime
|
||||
ja parooli ning siduda seejärel kasutajasätetes konto oma ID-ga.
|
||||
user_role:
|
||||
filter:
|
||||
not_a_role: String `%{role}' ei ole kehtiv roll.
|
||||
|
|
|
@ -387,6 +387,23 @@ eu:
|
|||
timeout:
|
||||
sorry: Barkatu, zuk eskatutako aldaketen zerrenda berreskuratzeko denbora gehiegi
|
||||
behar izan da.
|
||||
dashboards:
|
||||
contact:
|
||||
km away: '%{count} km-tara'
|
||||
m away: '%{count} m-tara'
|
||||
popup:
|
||||
your location: Zure kokapena
|
||||
nearby mapper: Hurbileko mapeatzaileak
|
||||
friend: Laguna
|
||||
show:
|
||||
my friends: Nire lagunak
|
||||
no friends: Oraindik ez duzu lagunik gehitu.
|
||||
nearby users: Gertuko beste erabiltzaile batzuk
|
||||
no nearby users: Ez dago oraindik hurbileko mapa editatzea onartzen duen erabiltzailerik.
|
||||
friends_changesets: Lagunen aldaketak
|
||||
friends_diaries: Lagunen eguneroko sarrerak
|
||||
nearby_changesets: inguruko erabiltzaileen aldaketak
|
||||
nearby_diaries: inguruko erabiltzaileen eguneroko sarrerak
|
||||
diary_entries:
|
||||
new:
|
||||
title: Eguneroko Sarrera Berria
|
||||
|
@ -2277,12 +2294,6 @@ eu:
|
|||
spam score: 'Spam Puntuazioa:'
|
||||
description: Deskribapen
|
||||
user location: Lankidearen kokapena
|
||||
my friends: Nire lagunak
|
||||
no friends: Oraindik ez duzu lagunik gehitu.
|
||||
km away: '%{count} km-tara'
|
||||
m away: '%{count} m-tara'
|
||||
nearby users: Gertuko beste erabiltzaile batzuk
|
||||
no nearby users: Ez dago oraindik hurbileko mapa editatzea onartzen duen erabiltzailerik.
|
||||
role:
|
||||
administrator: Lankide hau administratzailea da
|
||||
moderator: Lankide hau moderatzailea da
|
||||
|
@ -2303,15 +2314,7 @@ eu:
|
|||
unhide_user: Erabiltzaile honen ezkutaketa kendu
|
||||
delete_user: Erabiltzaile hau ezabatu
|
||||
confirm: Berretsi
|
||||
friends_changesets: Lagunen aldaketak
|
||||
friends_diaries: Lagunen eguneroko sarrerak
|
||||
nearby_changesets: inguruko erabiltzaileen aldaketak
|
||||
nearby_diaries: inguruko erabiltzaileen eguneroko sarrerak
|
||||
report: Salatu erabiltzaile hau
|
||||
popup:
|
||||
your location: Zure kokapena
|
||||
nearby mapper: Hurbileko mapeatzaileak
|
||||
friend: Laguna
|
||||
account:
|
||||
title: Kontua aldatu
|
||||
my settings: Nire aukerak
|
||||
|
@ -2349,7 +2352,6 @@ eu:
|
|||
link text: zer da hau?
|
||||
save changes button: Aldaketak gorde
|
||||
make edits public button: Nire aldaketa guztiak publikoak egin
|
||||
return to profile: Profilera itzuli
|
||||
flash update success confirm needed: Erabiltzaile informazio igoera arrakastatsua.
|
||||
Zure email-a begiratu posta elektroniko berria egiaztatzeko oharra ikusteko.
|
||||
flash update success: Erabiltzailearen informazioa behar bezala eguneratu da.
|
||||
|
|
|
@ -11,6 +11,7 @@
|
|||
# Author: Baqeri
|
||||
# Author: Dalba
|
||||
# Author: Danialbehzadi
|
||||
# Author: Darafsh
|
||||
# Author: Dr jackie
|
||||
# Author: Ebraminio
|
||||
# Author: FarsiNevis
|
||||
|
@ -192,7 +193,7 @@ fa:
|
|||
user_block:
|
||||
reason: |-
|
||||
این دلیل مسدودشدن کاربر است. لطفاً خونسرد و منطقی باشید و هرچه میتوانید بهشکل جزئیتر اوضاع را شرح دهید. همچنین توجه داشته باشید که پیام شما بهطور عمومی قابل مشاهده است.
|
||||
در نظر داشته باشید که همهٔ کاربران اصطلاحات تخصصی جامعه را نمیفهمند، لطفاً سعی کنید واژههایی که استفاده میکنید غیرتخصصی باشد.
|
||||
در نظر داشته باشید که همهٔ کاربران اصطلاحات تخصصی جامعه را نمیفهمند، لطفاً سعی کنید واژههایی که استفاده میکنید غیرتخصصی باشند.
|
||||
needs_view: آیا قبل از پاکشدن این مسدودی، کاربر باید وارد حساب کاربری شود؟
|
||||
user:
|
||||
email_confirmation: آدرس شما به صورت عمومی نمایش داده نمی شود ، برای اطلاعات
|
||||
|
@ -463,6 +464,27 @@ fa:
|
|||
timeout:
|
||||
sorry: شوربختانه بازیابی نظرات بستهٔ تغییر که درخواست نمودهاید، خیلی طولانی
|
||||
شد.
|
||||
dashboards:
|
||||
contact:
|
||||
km away: %{count} کیلومتر فاصله
|
||||
m away: %{count} متر فاصله
|
||||
popup:
|
||||
your location: مکان شما
|
||||
nearby mapper: نقشهکش نزدیک
|
||||
friend: دوست
|
||||
show:
|
||||
title: پیشخوان من
|
||||
no_home_location_html: '%{edit_profile_link} و موقعیت خانهٔ خود را تنظیم کنید
|
||||
تا کاربران نزدیک را ببینید.'
|
||||
edit_your_profile: ویرایش پروفایل
|
||||
my friends: دوستان من
|
||||
no friends: هنوز هیچ دوستی اضافه نکردهاید
|
||||
nearby users: دیگر کاربران نزدیک
|
||||
no nearby users: در این حوالی هیچ کاربری نقشه ترسیم نکرده است
|
||||
friends_changesets: بستههای تغییر دوستان
|
||||
friends_diaries: روزنوشتهای دوستان
|
||||
nearby_changesets: ویرایشهای کاربران نزدیک
|
||||
nearby_diaries: روزنوشتهای کاربران نزدیک
|
||||
diary_entries:
|
||||
new:
|
||||
title: روزنوشت تازه
|
||||
|
@ -632,6 +654,7 @@ fa:
|
|||
drinking_water: آب آشامیدنی
|
||||
driving_school: آموزشگاه رانندگی
|
||||
embassy: سفارت
|
||||
events_venue: تالار رویدادها
|
||||
fast_food: غذای آماده
|
||||
ferry_terminal: پایانه کشتی
|
||||
fire_station: آتشنشانی
|
||||
|
@ -686,7 +709,7 @@ fa:
|
|||
taxi: تاکسی
|
||||
telephone: تلفن عمومی
|
||||
theatre: تئاتر
|
||||
toilets: سرویس های بهداشتی
|
||||
toilets: سرویسهای بهداشتی
|
||||
townhall: شهرداری
|
||||
training: امکانات آموزش
|
||||
university: دانشگاه
|
||||
|
@ -917,7 +940,7 @@ fa:
|
|||
leisure:
|
||||
adult_gaming_centre: مرکز بازی بزرگسالان
|
||||
beach_resort: تفریحگاه ساحلی
|
||||
bird_hide: محل مشاهده ی پرندگان
|
||||
bird_hide: محل مشاهدهٔ پرندگان
|
||||
common: سرزمین مشترک
|
||||
dog_park: پارک سگ
|
||||
firepit: مشعل آتش
|
||||
|
@ -1083,7 +1106,7 @@ fa:
|
|||
quarter: چهارک
|
||||
region: منطقه
|
||||
sea: دریا
|
||||
square: مربع
|
||||
square: میدان
|
||||
state: استان
|
||||
subdivision: زیربخش
|
||||
suburb: منطقه شهری
|
||||
|
@ -1101,7 +1124,7 @@ fa:
|
|||
light_rail: ریل سبک
|
||||
miniature: راه آهن کوچک
|
||||
monorail: مونوریل
|
||||
narrow_gauge: زاهآهن تبادلگر باریک
|
||||
narrow_gauge: راهآهن تبادلگر باریک
|
||||
platform: بستر راهآهن
|
||||
preserved: راه آهن محفوظ شده
|
||||
proposed: راه آهن پیشنهادی
|
||||
|
@ -1116,7 +1139,7 @@ fa:
|
|||
yard: محوطه راه آهن
|
||||
shop:
|
||||
alcohol: Off License
|
||||
antiques: عتیقه جات
|
||||
antiques: عتیقهجات
|
||||
art: فروشگاه لوازم هنری
|
||||
bakery: نانوایی
|
||||
beauty: فروشگاه زیبایی
|
||||
|
@ -1132,7 +1155,7 @@ fa:
|
|||
carpet: فروشگاه فرش
|
||||
charity: فروشگاه خیریه
|
||||
cheese: پنیر فروشی
|
||||
chemist: شیمیدان
|
||||
chemist: داروساز
|
||||
clothes: فروشگاه پوشاک
|
||||
computer: فروشگاه رایانه
|
||||
confectionery: فروشگاه قنادی
|
||||
|
@ -1222,7 +1245,7 @@ fa:
|
|||
chalet: کلبه ییلاقی
|
||||
gallery: گالری
|
||||
guest_house: مهمانخانه
|
||||
hostel: شبانه روزی
|
||||
hostel: هاستل
|
||||
hotel: هتل
|
||||
information: اطلاعات
|
||||
motel: متل
|
||||
|
@ -1260,9 +1283,9 @@ fa:
|
|||
level5: مرز شهرستان
|
||||
level6: مرز بخش
|
||||
level7: مرز دهستان/شهر
|
||||
level8: مرز روستا
|
||||
level8: مرز شهر
|
||||
level9: مرز منطقه شهری
|
||||
level10: مرز ناحیه شهری
|
||||
level10: مرز دهستان/شهر
|
||||
level11: محدوده محله
|
||||
types:
|
||||
cities: شهرها
|
||||
|
@ -1403,8 +1426,8 @@ fa:
|
|||
intro_text: OpenStreetMap نقشهای از جهان است که افرادی مانند شما آن را ساختهاند
|
||||
و آزادید آن را تحت پروانهای آزاد استفاده کنید.
|
||||
intro_2_create_account: ساخت حساب کاربری
|
||||
hosting_partners_html: میزبانی وب را %{ucl}، %{bytemark} و سایر %{partners} پشتیبانی
|
||||
میکنند.
|
||||
hosting_partners_html: میزبانی وب را %{ucl}، %{fastly}، %{bytemark} و سایر %{partners}
|
||||
پشتیبانی میکنند.
|
||||
partners_ucl: UCL
|
||||
partners_bytemark: Bytemark Hosting
|
||||
partners_partners: شرکای تجاری
|
||||
|
@ -2174,8 +2197,8 @@ fa:
|
|||
summit:
|
||||
- چکاد
|
||||
- قله
|
||||
tunnel: پوشش خطچین = تونل
|
||||
bridge: پوشش سیاه = پل
|
||||
tunnel: لبهٔ خطچیندار = تونل
|
||||
bridge: لبهٔ سیاه = پل
|
||||
private: دسترسی شخصی
|
||||
destination: دسترسی مقصد
|
||||
construction: جاده در دست ساخت
|
||||
|
@ -2352,6 +2375,10 @@ fa:
|
|||
need_to_see_terms: دسترسی شما به API بهطور موقت معلق شدهاست. لطفاً در رابط
|
||||
کاربری وب وارد شوید تا شرایط مشارکتکننده را ببینید. لازم نیست آن را بپذیرید،
|
||||
ولی حتماً باید آن را ببینید.
|
||||
settings_menu:
|
||||
oauth1_settings: تنظیمات OAuth 1
|
||||
oauth2_applications: اپلیکیشنهای OAuth 2
|
||||
oauth2_authorizations: مجوزهای OAuth 2
|
||||
oauth:
|
||||
authorize:
|
||||
title: اجازهٔ دسترسی به حسابتان را صادر کنید
|
||||
|
@ -2541,6 +2568,7 @@ fa:
|
|||
my settings: تنظیمات من
|
||||
my comments: نظرات من
|
||||
my_preferences: ترجیحات من
|
||||
my_dashboard: پیشخوان من
|
||||
blocks on me: مسدودیهای من
|
||||
blocks by me: مسدودیهای به دست من
|
||||
edit_profile: ویرایش نمایه
|
||||
|
@ -2562,12 +2590,6 @@ fa:
|
|||
spam score: 'رتبهٔ هرزنگاری:'
|
||||
description: شرح
|
||||
user location: موقعبت کاربر
|
||||
my friends: دوستان من
|
||||
no friends: هنوز هیچ دوستی اضافه نکردهاید
|
||||
km away: %{count} کیلومتر فاصله
|
||||
m away: %{count} متر فاصله
|
||||
nearby users: دیگر کاربران نزدیک
|
||||
no nearby users: در این حوالی هیچ کاربری نقشه ترسیم نکرده است
|
||||
role:
|
||||
administrator: این کاربر مدیر است
|
||||
moderator: این کاربر ناظم است
|
||||
|
@ -2588,15 +2610,7 @@ fa:
|
|||
unhide_user: آشکارکردن این کاربر
|
||||
delete_user: حذف این کاربر
|
||||
confirm: تأیید
|
||||
friends_changesets: ویرایشهای دوستان
|
||||
friends_diaries: روزنوشتهای دوستان
|
||||
nearby_changesets: ویرایشهای کاربران نزدیک
|
||||
nearby_diaries: روزنوشتهای کاربران نزدیک
|
||||
report: گزارش این کاربر
|
||||
popup:
|
||||
your location: مکان شما
|
||||
nearby mapper: نقشهکش نزدیک
|
||||
friend: دوست
|
||||
account:
|
||||
title: ویرایش حساب
|
||||
my settings: تنظیمات من
|
||||
|
@ -2634,10 +2648,6 @@ fa:
|
|||
link text: این چیست؟
|
||||
save changes button: ذخیرهکردن تغییرات
|
||||
make edits public button: همهٔ ویرایشهای من را عمومی کن
|
||||
return to profile: بازگشت به نمایه
|
||||
oauth1 settings: تنظیمات OAuth 1
|
||||
oauth2 applications: اپلیکیشنهای OAuth 2
|
||||
oauth2 authorizations: مجوزهای OAuth 2
|
||||
flash update success confirm needed: اطلاعات کاربر با موفقیت روزآمد شد. برای
|
||||
تأیید نشانی ایمیل جدید، یادداشت ارسالشده به ایمیلتان را بررسی کنید.
|
||||
flash update success: اطلاعات کاربر با موفقیت روزآمد شد.
|
||||
|
|
|
@ -454,6 +454,25 @@ fi:
|
|||
timeout:
|
||||
sorry: Valitettavasti pyytämäsi muutoskokoelmien kommenttien hakeminen kesti
|
||||
liian kauan.
|
||||
dashboards:
|
||||
contact:
|
||||
km away: '%{count} kilometrin päässä'
|
||||
m away: '%{count} metrin päässä'
|
||||
popup:
|
||||
your location: Oma sijaintisi
|
||||
nearby mapper: Lähellä oleva kartoittaja
|
||||
friend: Kaveri
|
||||
show:
|
||||
title: Minun kojelauta
|
||||
edit_your_profile: Muokkaa profiiliasi
|
||||
my friends: Kaverit
|
||||
no friends: Sinulla ei ole vielä kavereita.
|
||||
nearby users: Muut lähialueen käyttäjät
|
||||
no nearby users: Valitun sijainnin lähellä ei ole tiedossa muita käyttäjiä.
|
||||
friends_changesets: kaverien muutoskokoelmat
|
||||
friends_diaries: kaverien päiväkirjamerkinnät
|
||||
nearby_changesets: lähialueen käyttäjien muutoskokoelmat
|
||||
nearby_diaries: lähialueen käyttäjien päiväkirjamerkinnät
|
||||
diary_entries:
|
||||
new:
|
||||
title: Uusi päiväkirjamerkintä
|
||||
|
@ -1366,6 +1385,7 @@ fi:
|
|||
hosting_partners_html: Palvelinkapasiteettia meille tarjoaa %{ucl}, %{bytemark},
|
||||
ja muut %{partners}.
|
||||
partners_ucl: UCL
|
||||
partners_fastly: Nopeasti
|
||||
partners_bytemark: Bytemark Hosting
|
||||
partners_partners: kumppanimme
|
||||
tou: Käyttöehdot
|
||||
|
@ -2264,6 +2284,8 @@ fi:
|
|||
need_to_see_terms: API:n käyttöoikeutesi on tilapäisesti hyllytetty. Kirjaudu
|
||||
sisään verkkokäyttöliittymään nähdäksesi osallistujien ehdot. Niihin ei tarvitse
|
||||
suostua, mutta ne täytyy lukea.
|
||||
settings_menu:
|
||||
account_settings: Käyttäjäasetukset
|
||||
oauth:
|
||||
authorize:
|
||||
title: Salli tilisi käyttö
|
||||
|
@ -2428,6 +2450,7 @@ fi:
|
|||
my settings: Asetukset
|
||||
my comments: Omat kommentit
|
||||
my_preferences: Asetukseni
|
||||
my_dashboard: Minun kojelauta
|
||||
blocks on me: Saadut estot
|
||||
blocks by me: Tekemäni estot
|
||||
edit_profile: Muokkaa profiilia
|
||||
|
@ -2449,12 +2472,6 @@ fi:
|
|||
spam score: 'Spam-pisteet:'
|
||||
description: Kuvaus
|
||||
user location: Käyttäjän sijainti
|
||||
my friends: Kaverit
|
||||
no friends: Sinulla ei ole vielä kavereita.
|
||||
km away: '%{count} kilometrin päässä'
|
||||
m away: '%{count} metrin päässä'
|
||||
nearby users: Muut lähialueen käyttäjät
|
||||
no nearby users: Valitun sijainnin lähellä ei ole tiedossa muita käyttäjiä.
|
||||
role:
|
||||
administrator: Tämä käyttäjä on ylläpitäjä.
|
||||
moderator: Tämä käyttäjä on moderaattori.
|
||||
|
@ -2475,15 +2492,7 @@ fi:
|
|||
unhide_user: Poista käyttäjän piilottaminen
|
||||
delete_user: Poista tämä käyttäjä
|
||||
confirm: Vahvista
|
||||
friends_changesets: kaverien muutoskokoelmat
|
||||
friends_diaries: kaverien päiväkirjamerkinnät
|
||||
nearby_changesets: lähialueen käyttäjien muutoskokoelmat
|
||||
nearby_diaries: lähialueen käyttäjien päiväkirjamerkinnät
|
||||
report: Ilmianna käyttäjä
|
||||
popup:
|
||||
your location: Oma sijaintisi
|
||||
nearby mapper: Lähellä oleva kartoittaja
|
||||
friend: Kaveri
|
||||
account:
|
||||
title: Asetusten muokkaus
|
||||
my settings: Käyttäjäasetukset
|
||||
|
@ -2521,7 +2530,6 @@ fi:
|
|||
link text: Mitä tämä tarkoittaa?
|
||||
save changes button: Tallenna muutokset
|
||||
make edits public button: Tee muokkauksistani julkisia
|
||||
return to profile: Palaa käyttäjäsivulle
|
||||
flash update success confirm needed: Käyttäjätietojen muutokset on tallennettu.
|
||||
Vahvista uusi sähköpostiosoite siihen lähetettyjen ohjeiden mukaisesti.
|
||||
flash update success: Käyttäjätietojen muutokset on tallennettu.
|
||||
|
|
|
@ -353,6 +353,14 @@ fit:
|
|||
timeout:
|
||||
sorry: Valitettavasti pyytämäsi muutoskokoelmien kommenttien hakeminen kesti
|
||||
liian kauan.
|
||||
dashboards:
|
||||
contact:
|
||||
km away: '%{count} kilometrin päässä'
|
||||
popup:
|
||||
your location: Sinun paikka
|
||||
friend: Kaveri
|
||||
show:
|
||||
my friends: Minun ystävät
|
||||
diary_entries:
|
||||
new:
|
||||
title: Uusi päiväkirjamerkintä
|
||||
|
@ -974,11 +982,6 @@ fit:
|
|||
add as friend: Lissää ystäväksi
|
||||
latest edit: 'Viimeisin muutos (%{ago}):'
|
||||
email address: 'E-postiatressi:'
|
||||
my friends: Minun ystävät
|
||||
km away: '%{count} kilometrin päässä'
|
||||
popup:
|
||||
your location: Sinun paikka
|
||||
friend: Kaveri
|
||||
account:
|
||||
title: Mookkaa konttua
|
||||
my settings: Minun inställninkit
|
||||
|
|
|
@ -516,6 +516,28 @@ fr:
|
|||
timeout:
|
||||
sorry: Désolé, la liste des commentaires d’ensembles de modifications que vous
|
||||
avez demandée est trop longue à récupérer.
|
||||
dashboards:
|
||||
contact:
|
||||
km away: à %{count} km
|
||||
m away: à %{count} m
|
||||
popup:
|
||||
your location: Votre emplacement
|
||||
nearby mapper: Cartographe à proximité
|
||||
friend: Ami(e)
|
||||
show:
|
||||
title: Mon tableau de bord
|
||||
no_home_location_html: '%{edit_profile_link} et définissez l’emplacement de
|
||||
votre domicile pour voir les utilisateurs à proximité.'
|
||||
edit_your_profile: Modifier votre profil
|
||||
my friends: Mes amis
|
||||
no friends: Vous n’avez pas encore ajouté d’ami.
|
||||
nearby users: Autres utilisateurs à proximité
|
||||
no nearby users: Aucun utilisateur n’a encore signalé qu’il cartographiait à
|
||||
proximité.
|
||||
friends_changesets: groupes de modifications des amis
|
||||
friends_diaries: entrées de journal des amis
|
||||
nearby_changesets: groupes de modifications des utilisateurs à proximité
|
||||
nearby_diaries: entrées de journal des utilisateurs à proximité
|
||||
diary_entries:
|
||||
new:
|
||||
title: Nouvelle entrée du journal
|
||||
|
@ -853,6 +875,7 @@ fr:
|
|||
window_construction: Construction de fenêtre
|
||||
winery: Domaine viticole
|
||||
"yes": Boutique d’artisanat
|
||||
crossing: Croisement
|
||||
emergency:
|
||||
access_point: Point d’accès
|
||||
ambulance_station: Dépôt d’ambulances
|
||||
|
@ -1108,6 +1131,7 @@ fr:
|
|||
hill: Colline
|
||||
hot_spring: Source thermale
|
||||
island: Île
|
||||
isthmus: Isthme
|
||||
land: Terre
|
||||
marsh: Marécage
|
||||
moor: Brande
|
||||
|
@ -1122,10 +1146,13 @@ fr:
|
|||
sand: Sable
|
||||
scree: Éboulis
|
||||
scrub: Broussailles
|
||||
shingle: Galet
|
||||
spring: Source
|
||||
stone: Pierre
|
||||
strait: Détroit
|
||||
tree: Arbre
|
||||
tree_row: Ligne d’arbres
|
||||
tundra: Toundra
|
||||
valley: Vallée
|
||||
volcano: Volcan
|
||||
water: Eau
|
||||
|
@ -1528,9 +1555,10 @@ fr:
|
|||
intro_text: OpenStreetMap est une carte du monde, créée par des gens comme vous
|
||||
et libre d’utilisation sous licence libre.
|
||||
intro_2_create_account: Créez un compte d’utilisateur
|
||||
hosting_partners_html: L’hébergement est pris en charge par %{ucl}, %{bytemark},
|
||||
et d’autres %{partners}.
|
||||
hosting_partners_html: L’hébergement est pris en charge par %{ucl}, %{fastly},
|
||||
%{bytemark}, et d’autres %{partners}.
|
||||
partners_ucl: l’University College de Londres
|
||||
partners_fastly: Fastly
|
||||
partners_bytemark: l'Hébergeur Bytemark
|
||||
partners_partners: partenaires
|
||||
tou: Conditions d’utilisation
|
||||
|
@ -1581,9 +1609,9 @@ fr:
|
|||
subject: '[OpenStreetMap] %{user} vous a ajouté comme ami'
|
||||
had_added_you: '%{user} vous a ajouté comme ami dans OpenStreetMap.'
|
||||
see_their_profile: 'Vous pouvez voir son profil ici : %{userurl}.'
|
||||
see_their_profile_html: Vous pouvez voir leur profil sur %{userurl}.
|
||||
see_their_profile_html: Vous pouvez voir son profil sur %{userurl}.
|
||||
befriend_them: 'Vous pouvez également l’ajouter comme ami(e) ici : %{befriendurl}.'
|
||||
befriend_them_html: Vous pouvez aussi les ajouter comme amis sur %{befriendurl}.
|
||||
befriend_them_html: Vous pouvez aussi l’ajouter comme ami à l’adresse %{befriendurl}.
|
||||
gpx_description:
|
||||
description_with_tags_html: 'Il semblerait que votre fichier GPX %{trace_name}
|
||||
avec la description %{trace_description} et les balises suivantes : %{tags}'
|
||||
|
@ -2036,9 +2064,9 @@ fr:
|
|||
<a href="https://www.vorarlberg.at/vorarlberg/bauen_wohnen/bauen/vermessung_geoinformation/weitereinformationen/services/wmsdienste.htm">région du Vorarlberg</a> et la
|
||||
région du Tyrol (sous licence <a href="https://www.tirol.gv.at/applikationen/e-government/data/nutzungsbedingungen/">CC BY AT avec amendements</a>).
|
||||
contributors_au_html: |-
|
||||
<strong>Australie</strong> : contient des données sourcées de
|
||||
<a href="https://www.psma.com.au/psma-data-copyright-and-disclaimer">PSMA Australia Limited</a> publiées sous la licence
|
||||
<a href="https://creativecommons.org/licenses/by/4.0/">CC BY 4.0</a> accordée par le Commonwealth d’Australie.
|
||||
<strong>Australie</strong> : incorpore ou développé en utilissant Limites administratives ©
|
||||
<a href="https://geoscape.com.au/legal/data-copyright-and-disclaimer/">Geoscape Australia</a> publiées sous la licence
|
||||
<a href="https://creativecommons.org/licenses/by/4.0/">Creative licence internationale Commons Attribution 4.0 (CC BY 4.0)</a>.
|
||||
contributors_ca_html: '<strong>Canada</strong> : contient des données de <em>GeoBase</em>®,
|
||||
<em>GeoGratis</em> (© Département des Ressources naturelles du Canada),
|
||||
<em>CanVec</em> (© Département des Ressources naturelles du Canada) et <em>StatCan</em>
|
||||
|
@ -2499,6 +2527,11 @@ fr:
|
|||
need_to_see_terms: Votre accès à l’API est temporairement suspendu. Veuillez
|
||||
vous connecter à l’interface web pour afficher les conditions de contributions.
|
||||
Vous n’avez pas besoin de les accepter, mais vous devez les visualiser.
|
||||
settings_menu:
|
||||
account_settings: Paramètres du compte
|
||||
oauth1_settings: Paramètres OAuth 1
|
||||
oauth2_applications: Applications OAuth 2
|
||||
oauth2_authorizations: Droits OAuth 2
|
||||
oauth:
|
||||
authorize:
|
||||
title: Autoriser l’accès à votre compte
|
||||
|
@ -2710,6 +2743,7 @@ fr:
|
|||
my settings: Mes options
|
||||
my comments: Mes commentaires
|
||||
my_preferences: Mes préférences
|
||||
my_dashboard: Mon tableau de bord
|
||||
blocks on me: Blocages me concernant
|
||||
blocks by me: Blocages de ma part
|
||||
edit_profile: Modifier le profil
|
||||
|
@ -2731,15 +2765,6 @@ fr:
|
|||
spam score: 'Indice de pollution :'
|
||||
description: Description
|
||||
user location: Emplacement de l’utilisateur
|
||||
set_location_html: <a href="%{edit_profile_url}">Modifier votre profil</a> et
|
||||
définissez votre domicile pour voir les utilisateurs à proximité.
|
||||
my friends: Mes amis
|
||||
no friends: Vous n’avez pas encore ajouté d’ami.
|
||||
km away: à %{count} km
|
||||
m away: à %{count} m
|
||||
nearby users: Autres utilisateurs à proximité
|
||||
no nearby users: Aucun utilisateur n’a encore signalé qu’il cartographiait à
|
||||
proximité.
|
||||
role:
|
||||
administrator: C’est un administrateur ou une administratrice
|
||||
moderator: C’est un modérateur ou une modératrice
|
||||
|
@ -2760,15 +2785,7 @@ fr:
|
|||
unhide_user: Réafficher cet utilisateur ou cette utilisatrice
|
||||
delete_user: Supprimer cet utilisateur ou cette utilisatrice
|
||||
confirm: Confirmer
|
||||
friends_changesets: groupes de modifications des amis
|
||||
friends_diaries: entrées de journal des amis
|
||||
nearby_changesets: groupes de modifications des utilisateurs à proximité
|
||||
nearby_diaries: entrées de journal des utilisateurs à proximité
|
||||
report: Signaler cet utilisateur ou cette utilisatrice
|
||||
popup:
|
||||
your location: Votre emplacement
|
||||
nearby mapper: Cartographe à proximité
|
||||
friend: Ami(e)
|
||||
account:
|
||||
title: Modifier le compte
|
||||
my settings: Mes options
|
||||
|
@ -2810,10 +2827,6 @@ fr:
|
|||
link text: qu’est-ce que ceci ?
|
||||
save changes button: Enregistrer les modifications
|
||||
make edits public button: Rendre toutes mes modifications publiques
|
||||
return to profile: Retour au profil
|
||||
oauth1 settings: Paramètres OAuth 1
|
||||
oauth2 applications: Applications OAuth 2
|
||||
oauth2 authorizations: Droits OAuth 2
|
||||
flash update success confirm needed: Informations sur l’utilisateur mises à
|
||||
jour avec succès. Consultez la boîte de réception de votre messagerie pour
|
||||
confirmer votre nouvelle adresse de courriel.
|
||||
|
|
|
@ -377,6 +377,24 @@ fur:
|
|||
index:
|
||||
title_all: Discussion sul grup di cambiaments di OpenStreetMap
|
||||
title_particular: 'Discussion sul grup di cambiaments #%{changeset_id} di OpenStreetMap'
|
||||
dashboards:
|
||||
contact:
|
||||
km away: '%{count}km di distance'
|
||||
m away: '%{count}m di distance'
|
||||
popup:
|
||||
your location: La tô posizion
|
||||
nearby mapper: Mapadôr dongje
|
||||
friend: Amì
|
||||
show:
|
||||
my friends: I miei amîs
|
||||
no friends: No tu âs ancjemò nissun amì.
|
||||
nearby users: Altris utents dongje
|
||||
no nearby users: Nol è ancjemò nissun utent che al declare di mapâ dongje di
|
||||
te.
|
||||
friends_changesets: grups di cambiaments dai amîs
|
||||
friends_diaries: vôs di diari dai amîs
|
||||
nearby_changesets: grups di cambiaments dai utents dongje
|
||||
nearby_diaries: vôs di diari dai utents dongje
|
||||
diary_entries:
|
||||
new:
|
||||
title: Gnove vôs dal diari
|
||||
|
@ -1340,13 +1358,6 @@ fur:
|
|||
spam score: 'Ponts di spam:'
|
||||
description: Descrizion
|
||||
user location: Lûc dal utent
|
||||
my friends: I miei amîs
|
||||
no friends: No tu âs ancjemò nissun amì.
|
||||
km away: '%{count}km di distance'
|
||||
m away: '%{count}m di distance'
|
||||
nearby users: Altris utents dongje
|
||||
no nearby users: Nol è ancjemò nissun utent che al declare di mapâ dongje di
|
||||
te.
|
||||
role:
|
||||
administrator: Chest utent al è un aministradôr
|
||||
moderator: Chest utent al è un moderatôr
|
||||
|
@ -1361,15 +1372,7 @@ fur:
|
|||
unhide_user: mostre chest utent
|
||||
delete_user: elimine chest utent
|
||||
confirm: Conferme
|
||||
friends_changesets: grups di cambiaments dai amîs
|
||||
friends_diaries: vôs di diari dai amîs
|
||||
nearby_changesets: grups di cambiaments dai utents dongje
|
||||
nearby_diaries: vôs di diari dai utents dongje
|
||||
report: Segnale chest utent
|
||||
popup:
|
||||
your location: La tô posizion
|
||||
nearby mapper: Mapadôr dongje
|
||||
friend: Amì
|
||||
account:
|
||||
title: Modifiche profîl
|
||||
my settings: Mês impostazions
|
||||
|
@ -1399,7 +1402,6 @@ fur:
|
|||
link text: ce isal chest?
|
||||
save changes button: Salve cambiaments
|
||||
make edits public button: Rint publics ducj i miei cambiaments
|
||||
return to profile: Torne al profîl
|
||||
flash update success confirm needed: Informazions dal utent inzornadis cun sucès.
|
||||
Controle la tô pueste par confermâ la tô gnove direzion di pueste eletroniche.
|
||||
flash update success: Informazions dal utent inzornadis cun sucès.
|
||||
|
|
|
@ -118,6 +118,9 @@ fy:
|
|||
area: Gebiet
|
||||
index:
|
||||
load_more: Mear laden
|
||||
dashboards:
|
||||
popup:
|
||||
friend: Freon
|
||||
diary_entries:
|
||||
form:
|
||||
location: 'Lokaasje:'
|
||||
|
@ -537,8 +540,6 @@ fy:
|
|||
email address: 'E-mailadres:'
|
||||
status: 'Status:'
|
||||
description: Beskriuwing
|
||||
popup:
|
||||
friend: Freon
|
||||
account:
|
||||
openid:
|
||||
link: http://wiki.openstreetmap.org/wiki/OpenID
|
||||
|
|
|
@ -356,6 +356,16 @@ ga:
|
|||
timeout:
|
||||
sorry: Ár leithscéil, thóg sé rófhada an liosta de na tacair athruithe a d'iarr
|
||||
tú a aisghabháil.
|
||||
dashboards:
|
||||
contact:
|
||||
km away: '%{count} km uait'
|
||||
m away: '%{count} m uait'
|
||||
popup:
|
||||
nearby mapper: Léarscálaí in aice láimhe
|
||||
friend: Cara
|
||||
show:
|
||||
nearby users: Úsáideoirí eile in aice láimhe
|
||||
friends_diaries: iontrálacha dialainne do chairde
|
||||
diary_entries:
|
||||
new:
|
||||
title: Iontráil Nua Dialainne
|
||||
|
@ -1970,9 +1980,6 @@ ga:
|
|||
spam score: 'Scór Turscair:'
|
||||
description: Cur síos
|
||||
user location: Suíomh an úsáideora
|
||||
km away: '%{count} km uait'
|
||||
m away: '%{count} m uait'
|
||||
nearby users: Úsáideoirí eile in aice láimhe
|
||||
role:
|
||||
administrator: Is riarthóir é an t-úsáideoir seo
|
||||
moderator: Is áisitheoir é an t-úsáideoir seo
|
||||
|
@ -1984,10 +1991,6 @@ ga:
|
|||
unhide_user: Taispeáin an tÚsáideoir seo
|
||||
delete_user: Scrios an tÚsáideoir seo
|
||||
confirm: Deimhnigh
|
||||
friends_diaries: iontrálacha dialainne do chairde
|
||||
popup:
|
||||
nearby mapper: Léarscálaí in aice láimhe
|
||||
friend: Cara
|
||||
account:
|
||||
title: Cuir an cuntas in eagar
|
||||
my settings: Mo chuid socruithe
|
||||
|
|
|
@ -24,6 +24,16 @@ gcf:
|
|||
start_rjs:
|
||||
load_data: Chajé sé doné la
|
||||
loading: Y ka chajé...
|
||||
dashboards:
|
||||
contact:
|
||||
km away: '%{count} km'
|
||||
popup:
|
||||
your location: Koté ou yé
|
||||
nearby mapper: Arpantè owa aw
|
||||
show:
|
||||
no friends: Ou poko ni pon zanmi
|
||||
nearby users: 'Itilizatè owa aw :'
|
||||
no nearby users: Ou poko ni itilizatè owa aw.
|
||||
diary_entries:
|
||||
new:
|
||||
title: Nouvel nèf an jounal la
|
||||
|
@ -144,13 +154,6 @@ gcf:
|
|||
mapper since: 'Arpantè dèpi:'
|
||||
description: Deskription
|
||||
user location: Ola itilizatè yé
|
||||
no friends: Ou poko ni pon zanmi
|
||||
km away: '%{count} km'
|
||||
nearby users: 'Itilizatè owa aw :'
|
||||
no nearby users: Ou poko ni itilizatè owa aw.
|
||||
popup:
|
||||
your location: Koté ou yé
|
||||
nearby mapper: Arpantè owa aw
|
||||
account:
|
||||
my settings: Mes options
|
||||
public editing:
|
||||
|
@ -162,7 +165,6 @@ gcf:
|
|||
disabled link text: Poukwa an pé pa édité?
|
||||
save changes button: Enrèjisré tout chanjman
|
||||
make edits public button: Mèt tou sa an fè piblik
|
||||
return to profile: Rouvin' asi pwofil la
|
||||
flash update success confirm needed: Enfowmasion asi itilisatè la bien anrèjistré.
|
||||
Gadé bwet imél aw pou konfirmé adres nouvo imél aw
|
||||
flash update success: Efowmasion asi itilisatè la bien anrejistré.
|
||||
|
|
|
@ -325,6 +325,23 @@ gd:
|
|||
index:
|
||||
title_all: Deasbaireachd air seataichean atharraichean OpenStreetMap
|
||||
title_particular: Deasbaireachd air seata atharraichean OpenStreetMap %{changeset_id}
|
||||
dashboards:
|
||||
contact:
|
||||
km away: '%{count}km air falbh'
|
||||
m away: '%{count}m air falbh'
|
||||
popup:
|
||||
your location: Far a bheil thu
|
||||
nearby mapper: Neach-mapachaidh am fagas
|
||||
friend: Caraid
|
||||
show:
|
||||
no friends: Cha do chuir thu caraid ris fhathast.
|
||||
nearby users: Cleachdaichean am fagas eile
|
||||
no nearby users: Chan eil cleachdaiche sam bith eile ann a dh'innis gu bheil
|
||||
iad ris an obair-mhapa am fagas.
|
||||
friends_changesets: seata atharraichean nan caraidean
|
||||
friends_diaries: clàran leabhair-latha nan caraidean
|
||||
nearby_changesets: seata atharraichean nan cleachdaichean am fagas
|
||||
nearby_diaries: clàran leabhair-latha am fagas
|
||||
diary_entries:
|
||||
new:
|
||||
title: Clàr ùr an leabhair-latha
|
||||
|
@ -1901,12 +1918,6 @@ gd:
|
|||
spam score: 'Sgòr spama:'
|
||||
description: Tuairisgeul
|
||||
user location: Far a bheil an cleachdaiche
|
||||
no friends: Cha do chuir thu caraid ris fhathast.
|
||||
km away: '%{count}km air falbh'
|
||||
m away: '%{count}m air falbh'
|
||||
nearby users: Cleachdaichean am fagas eile
|
||||
no nearby users: Chan eil cleachdaiche sam bith eile ann a dh'innis gu bheil
|
||||
iad ris an obair-mhapa am fagas.
|
||||
role:
|
||||
administrator: '''S e rianaire a tha sa chleachdaiche seo'
|
||||
moderator: '''S e maor a tha sa chleachdaiche seo'
|
||||
|
@ -1927,14 +1938,6 @@ gd:
|
|||
unhide_user: Neo-fhalaich an cleachdaiche seo
|
||||
delete_user: Sguab às an cleachdaiche seo
|
||||
confirm: Dearbhaich
|
||||
friends_changesets: seata atharraichean nan caraidean
|
||||
friends_diaries: clàran leabhair-latha nan caraidean
|
||||
nearby_changesets: seata atharraichean nan cleachdaichean am fagas
|
||||
nearby_diaries: clàran leabhair-latha am fagas
|
||||
popup:
|
||||
your location: Far a bheil thu
|
||||
nearby mapper: Neach-mapachaidh am fagas
|
||||
friend: Caraid
|
||||
account:
|
||||
title: Deasaich an cunntas
|
||||
my settings: Na roghainnean agam
|
||||
|
@ -1975,7 +1978,6 @@ gd:
|
|||
link text: Dè th`ann?
|
||||
save changes button: Sàbhail na dh'atharraich thu
|
||||
make edits public button: Dèan fear poblach de gach deasachadh a rinn mi
|
||||
return to profile: Till dhan phròifil
|
||||
flash update success confirm needed: Chaidh fiosrachadh a' chleachdaiche ùrachadh
|
||||
gu soirbheachail. Thoir sùil air a' phost-d agad gus an seòladh puist-d ùr
|
||||
agad a dhearbhadh.
|
||||
|
|
|
@ -444,6 +444,28 @@ gl:
|
|||
timeout:
|
||||
sorry: Sentímolo, a listaxe dos comentarios do conxuntos de modificacións que
|
||||
solicitaches tardou moito en obterse.
|
||||
dashboards:
|
||||
contact:
|
||||
km away: a %{count}km de distancia
|
||||
m away: a %{count}m de distancia
|
||||
popup:
|
||||
your location: A súa localización
|
||||
nearby mapper: Cartógrafo preto de ti
|
||||
friend: Amizade
|
||||
show:
|
||||
title: O meu panel de control
|
||||
no_home_location_html: '%{edit_profile_link} e define a localización da túa
|
||||
casa para ver usuarios preto de ti.'
|
||||
edit_your_profile: Editar o teu perfil
|
||||
my friends: As miñas amizades
|
||||
no friends: Aínda non engadiu ningunha amizade.
|
||||
nearby users: Outros usuarios preto de ti
|
||||
no nearby users: Aínda non hai usuarios que estean situados preto de ti.
|
||||
friends_changesets: conxuntos de modificacións das amizades
|
||||
friends_diaries: entradas de diario das amizades
|
||||
nearby_changesets: conxuntos de modificacións dos usuarios de lugares preto
|
||||
de ti
|
||||
nearby_diaries: entradas de diario dos usuarios de lugares preto de ti
|
||||
diary_entries:
|
||||
new:
|
||||
title: Nova entrada no diario
|
||||
|
@ -779,6 +801,7 @@ gl:
|
|||
window_construction: Construtor de xanelas
|
||||
winery: Adega
|
||||
"yes": Tenda de artesanía
|
||||
crossing: Paso
|
||||
emergency:
|
||||
access_point: Punto de acceso
|
||||
ambulance_station: Base de ambulancias
|
||||
|
@ -869,6 +892,7 @@ gl:
|
|||
railway: Vía férrea histórica
|
||||
roman_road: Estrada romana
|
||||
ruins: Ruínas
|
||||
rune_stone: Pedra rúnica
|
||||
stone: Pedra
|
||||
tomb: Sepulcro
|
||||
tower: Torre
|
||||
|
@ -1033,6 +1057,7 @@ gl:
|
|||
hill: Outeiro
|
||||
hot_spring: Manancial quente
|
||||
island: Illa
|
||||
isthmus: Istmo
|
||||
land: Terra
|
||||
marsh: Marisma
|
||||
moor: Páramo
|
||||
|
@ -1047,10 +1072,13 @@ gl:
|
|||
sand: Area
|
||||
scree: Pedregal
|
||||
scrub: Matogueira
|
||||
shingle: Seixos
|
||||
spring: Manancial
|
||||
stone: Pedra
|
||||
strait: Estreito
|
||||
tree: Árbore
|
||||
tree_row: Ringleira de árbores
|
||||
tundra: Tundra
|
||||
valley: Val
|
||||
volcano: Volcán
|
||||
water: Auga
|
||||
|
@ -1453,6 +1481,7 @@ gl:
|
|||
hosting_partners_html: O aloxamento é fornecido por %{ucl}, %{bytemark} e outros
|
||||
%{partners}.
|
||||
partners_ucl: UCL
|
||||
partners_fastly: Fastly
|
||||
partners_bytemark: Bytemark Hosting
|
||||
partners_partners: socios
|
||||
tou: Termos de uso
|
||||
|
@ -2413,6 +2442,11 @@ gl:
|
|||
need_to_see_terms: O teu acceso á API está suspendido de xeito temporal. Accede
|
||||
ó sistema para ollar os termos do contribuínte. Non tes que aceptalos, pero
|
||||
debes coñecelos.
|
||||
settings_menu:
|
||||
account_settings: Axustes da conta
|
||||
oauth1_settings: Axustes OAuth 1
|
||||
oauth2_applications: Aplicacións OAuth 2
|
||||
oauth2_authorizations: Autorizacións OAuth 2
|
||||
oauth:
|
||||
authorize:
|
||||
title: Autorizar o acceso á túa conta
|
||||
|
@ -2611,6 +2645,7 @@ gl:
|
|||
my settings: Os meus axustes
|
||||
my comments: Os meus comentarios
|
||||
my_preferences: As miñas preferencias
|
||||
my_dashboard: O meu panel de control
|
||||
blocks on me: Os meus bloqueos
|
||||
blocks by me: Bloqueos efectuados
|
||||
edit_profile: Editar perfil
|
||||
|
@ -2632,12 +2667,6 @@ gl:
|
|||
spam score: 'Puntuación do spam:'
|
||||
description: Descrición
|
||||
user location: Localización do usuario
|
||||
my friends: As miñas amizades
|
||||
no friends: Aínda non engadiu ningunha amizade.
|
||||
km away: a %{count}km de distancia
|
||||
m away: a %{count}m de distancia
|
||||
nearby users: Outros usuarios preto de ti
|
||||
no nearby users: Aínda non hai usuarios que estean situados preto de ti.
|
||||
role:
|
||||
administrator: Este usuario é administrador
|
||||
moderator: Este usuario é moderador
|
||||
|
@ -2658,16 +2687,7 @@ gl:
|
|||
unhide_user: Descobrir este usuario
|
||||
delete_user: Eliminar este usuario
|
||||
confirm: Confirmar
|
||||
friends_changesets: conxuntos de modificacións das amizades
|
||||
friends_diaries: entradas de diario das amizades
|
||||
nearby_changesets: conxuntos de modificacións dos usuarios de lugares preto
|
||||
de ti
|
||||
nearby_diaries: entradas de diario dos usuarios de lugares preto de ti
|
||||
report: Denunciar este usuario
|
||||
popup:
|
||||
your location: A súa localización
|
||||
nearby mapper: Cartógrafo preto de ti
|
||||
friend: Amizade
|
||||
account:
|
||||
title: Editar a conta
|
||||
my settings: Os meus axustes
|
||||
|
@ -2706,10 +2726,6 @@ gl:
|
|||
link text: que é isto?
|
||||
save changes button: Gardar as modificacións
|
||||
make edits public button: Facer públicas tódalas miñas edicións
|
||||
return to profile: Voltar ó perfil
|
||||
oauth1 settings: Axustes OAuth 1
|
||||
oauth2 applications: Aplicacións OAuth 2
|
||||
oauth2 authorizations: Autorizacións OAuth 2
|
||||
flash update success confirm needed: Información de usuario actualizada de xeito
|
||||
correcto. Procura no teu correo electrónico unha mensaxe para confirmar o
|
||||
teu novo enderezo.
|
||||
|
|
|
@ -178,6 +178,10 @@ gsw:
|
|||
loading: Am Lade ...
|
||||
tag_details:
|
||||
tags: 'Tags:'
|
||||
dashboards:
|
||||
popup:
|
||||
your location: Dyy Standort
|
||||
nearby mapper: Mapper in dr Nechi
|
||||
friendships:
|
||||
make_friend:
|
||||
success: '%{name} isch jetz Dyy Frynd.'
|
||||
|
@ -262,9 +266,6 @@ gsw:
|
|||
make_public:
|
||||
made_public: Track, wu vereffetligt isch
|
||||
users:
|
||||
popup:
|
||||
your location: Dyy Standort
|
||||
nearby mapper: Mapper in dr Nechi
|
||||
go_public:
|
||||
flash success: Alli Dyyni Bearbeitige sion jetz effetlig, un Du derfsch jetz
|
||||
Bearbeitige mache.
|
||||
|
|
|
@ -485,6 +485,26 @@ he:
|
|||
timeout:
|
||||
sorry: הזמן שלקח לרשימת ההערות על ערכת השינויים שביקשת להתקבל ארוך מדי, עמך
|
||||
הסליחה.
|
||||
dashboards:
|
||||
contact:
|
||||
km away: במרחק %{count} ק״מ
|
||||
m away: במרחק %{count} מ׳
|
||||
popup:
|
||||
your location: מיקומך
|
||||
nearby mapper: ממפה סמוך
|
||||
friend: חבר
|
||||
show:
|
||||
no_home_location_html: '%{edit_profile_link} והגדרת מיקום הבית שלך לצפייה במשתמשים
|
||||
קרובים.'
|
||||
edit_your_profile: עריכת הפרופיל שלך
|
||||
my friends: החברים שלי
|
||||
no friends: עדיין לא הוספת חברים.
|
||||
nearby users: עוד משתמשים בסביבה
|
||||
no nearby users: אין עדיין עוד משתמשים שמודים שהם מיפו בסביבה.
|
||||
friends_changesets: ערכות שינויים של חברים
|
||||
friends_diaries: רשומות יומן של חברים
|
||||
nearby_changesets: ערכות השינויים של משתמשים בסביבה
|
||||
nearby_diaries: רשומות יומן של משתמשים בסביבה
|
||||
diary_entries:
|
||||
new:
|
||||
title: רשומת יומן חדשה
|
||||
|
@ -908,6 +928,7 @@ he:
|
|||
railway: מסילת רכבת היסטורית
|
||||
roman_road: דרך רומית
|
||||
ruins: חורבה
|
||||
rune_stone: אבן רונות
|
||||
stone: אבן היסטורית
|
||||
tomb: קבר
|
||||
tower: מגדל היסטורי
|
||||
|
@ -1745,8 +1766,25 @@ he:
|
|||
reset: איפוס הסיסמה
|
||||
flash changed: סיסמתך שונתה.
|
||||
flash token bad: לא מצאנו את האסימון ההוא, אולי בדיקת הכתובת תעזור?
|
||||
preferences:
|
||||
show:
|
||||
title: ההעדפות שלי
|
||||
preferred_editor: עורך מועדף
|
||||
preferred_languages: שפות מועדפות
|
||||
edit_preferences: עריכת העדפות
|
||||
edit:
|
||||
title: עריכת העדפות
|
||||
save: עדכון העדפות
|
||||
cancel: ביטול
|
||||
update:
|
||||
failure: לא ניתן לעדכן העדפות.
|
||||
update_success_flash:
|
||||
message: ההעדפות עודכנו.
|
||||
profiles:
|
||||
edit:
|
||||
title: עריכת פרופיל
|
||||
save: עדכון פרופיל
|
||||
cancel: ביטול
|
||||
image: תמונה
|
||||
gravatar:
|
||||
gravatar: להשתמש ב־Gravatar
|
||||
|
@ -1762,6 +1800,9 @@ he:
|
|||
home location: מיקום ראשי
|
||||
no home location: לא הזנת את מיקומך הראשי.
|
||||
update home location on click: עדכון המיקום הראשי שלך בעת לחיצה על המפה?
|
||||
update:
|
||||
success: הפרופיל עודכן.
|
||||
failure: לא ניתן לעדכן פרופיל.
|
||||
sessions:
|
||||
new:
|
||||
title: כניסה
|
||||
|
@ -2131,8 +2172,8 @@ he:
|
|||
של אדובי כבר לא נתמך, Potlatch כבר לא זמין בדפדפן.
|
||||
desktop_html: ניתן עדיין להשתמש בPotlatch על ידי <a href="https://www.systemed.net/potlatch/">הורדת
|
||||
יישום שולחן העבודה ל-Windows או ל-Mac</a>.
|
||||
id_html: לחלופין, ניתן להגדיר את עורך ברירת המחדל ל-iD, שפועל בדפדפן שלך כפי
|
||||
שPotlatch פעל בעבר. <a href="%{settings_url}">שינוי הגדרות המשתמש כאן</a>.
|
||||
id_html: לחלופין, ניתן להגדיר את עורך בררת המחדל שלך ל־iD, שמופעל בדפדפן כמו
|
||||
ש־Potlach עשה בעבר. <a href="%{settings_url}">ניתן לשנות את ההעדפות שלך כאן</a>.
|
||||
sidebar:
|
||||
search_results: תוצאות החיפוש
|
||||
close: לסגירה
|
||||
|
@ -2373,6 +2414,11 @@ he:
|
|||
blocked: גישתך ל־API נחסמה. נא להיכנס לממשק הווב למידע נוסף.
|
||||
need_to_see_terms: גישתך ל־API מושעית זמנית. נא להיכנס לאתר כדי לצפות בתנאי
|
||||
התרומה. אין צורך לקבל אותם, אבל חובה להציג אותם.
|
||||
settings_menu:
|
||||
account_settings: הגדרות חשבון
|
||||
oauth1_settings: הגדרות OAuth 1
|
||||
oauth2_applications: יישומי OAuth 2
|
||||
oauth2_authorizations: אישורי OAuth 2
|
||||
oauth:
|
||||
authorize:
|
||||
title: אישור הגישה לחשבון שלך
|
||||
|
@ -2564,8 +2610,10 @@ he:
|
|||
my profile: הפרופיל שלי
|
||||
my settings: ההגדרות שלי
|
||||
my comments: ההערות שלי
|
||||
my_preferences: ההעדפות שלי
|
||||
blocks on me: מתי חסמו אותי
|
||||
blocks by me: מתי חסמתי
|
||||
edit_profile: עריכת פרופיל
|
||||
send message: שליחת הודעה
|
||||
diary: יומן
|
||||
edits: עריכות
|
||||
|
@ -2584,12 +2632,6 @@ he:
|
|||
spam score: 'דירוג זיבול:'
|
||||
description: תיאור
|
||||
user location: מיקום המשתמש
|
||||
my friends: החברים שלי
|
||||
no friends: עדיין לא הוספת חברים.
|
||||
km away: במרחק %{count} ק״מ
|
||||
m away: במרחק %{count} מ׳
|
||||
nearby users: עוד משתמשים בסביבה
|
||||
no nearby users: אין עדיין עוד משתמשים שמודים שהם מיפו בסביבה.
|
||||
role:
|
||||
administrator: לחשבון הזה יש הרשאות מפעיל
|
||||
moderator: זהו חשבון מנהל
|
||||
|
@ -2610,15 +2652,7 @@ he:
|
|||
unhide_user: ביטול הסתרת משתמש זה
|
||||
delete_user: מחיקת משתמש זה
|
||||
confirm: אישור
|
||||
friends_changesets: ערכות שינויים של חברים
|
||||
friends_diaries: רשומות יומן של חברים
|
||||
nearby_changesets: ערכות השינויים של משתמשים בסביבה
|
||||
nearby_diaries: רשומות יומן של משתמשים בסביבה
|
||||
report: דיווח על המשתמש
|
||||
popup:
|
||||
your location: מיקומך
|
||||
nearby mapper: ממפה סמוך
|
||||
friend: חבר
|
||||
account:
|
||||
title: עריכת חשבון
|
||||
my settings: ההגדרות שלי
|
||||
|
@ -2654,10 +2688,6 @@ he:
|
|||
link text: מה זה?
|
||||
save changes button: שמירת השינויים
|
||||
make edits public button: להפוך את כל עריכותיי לציבוריות
|
||||
return to profile: חזרה לפרופיל
|
||||
oauth1 settings: הגדרות OAuth 1
|
||||
oauth2 applications: יישומי OAuth 2
|
||||
oauth2 authorizations: אישורי OAuth 2
|
||||
flash update success confirm needed: מידע על המשתמש עודכן בהצלחה. נא לבדוק את
|
||||
תיבת הדוא"ל כדי לאמת את הדוא"ל החדש.
|
||||
flash update success: פרטי המשתמש עודכנו בהצלחה.
|
||||
|
|
|
@ -422,6 +422,9 @@ hi:
|
|||
timeout:
|
||||
sorry: माफ़ कीजिए, जिन चेंजसेट कमेंटों की आपने अनुरोध की थी उन्हें लाने में
|
||||
कुछ ज़्यादा ही वक्त लग गया।
|
||||
dashboards:
|
||||
show:
|
||||
my friends: मेरे मित्र
|
||||
diary_entries:
|
||||
new:
|
||||
title: नई डायरी प्रवेश
|
||||
|
@ -1010,8 +1013,6 @@ hi:
|
|||
new:
|
||||
deny: मना
|
||||
users:
|
||||
show:
|
||||
my friends: मेरे मित्र
|
||||
account:
|
||||
public editing:
|
||||
enabled link: http://wiki.openstreetmap.org/wiki/Disabling_anonymous_edits
|
||||
|
|
|
@ -413,6 +413,21 @@ hr:
|
|||
index:
|
||||
title_all: Rasprava o OpenStreetMap setu promjena
|
||||
title_particular: 'Rasprava o OpenStreetMap setu promjena #%{changeset_id}'
|
||||
dashboards:
|
||||
contact:
|
||||
km away: udaljen %{count}km
|
||||
m away: '%{count}m daleko'
|
||||
popup:
|
||||
your location: Vaša lokacija
|
||||
nearby mapper: Obližnji maper
|
||||
friend: Prijatelj
|
||||
show:
|
||||
my friends: Moji prijatelji
|
||||
no friends: Nisi dodao niti jednog prijatelja.
|
||||
nearby users: Drugi korisnici u blizini
|
||||
no nearby users: Još uvijek nema drugih korisnika koji kartiraju-mapiraju u
|
||||
blizini.
|
||||
friends_changesets: changesetovi prijatelja
|
||||
diary_entries:
|
||||
new:
|
||||
title: Novi zapis u dnevnik
|
||||
|
@ -1770,13 +1785,6 @@ hr:
|
|||
spam score: 'Spam ocjena:'
|
||||
description: Opis
|
||||
user location: Lokacija boravišta korisnika
|
||||
my friends: Moji prijatelji
|
||||
no friends: Nisi dodao niti jednog prijatelja.
|
||||
km away: udaljen %{count}km
|
||||
m away: '%{count}m daleko'
|
||||
nearby users: Drugi korisnici u blizini
|
||||
no nearby users: Još uvijek nema drugih korisnika koji kartiraju-mapiraju u
|
||||
blizini.
|
||||
role:
|
||||
administrator: Ovaj korisnik je administrator
|
||||
moderator: Ovaj korisnik je moderator
|
||||
|
@ -1797,12 +1805,7 @@ hr:
|
|||
unhide_user: Otkrij ovog korisnika
|
||||
delete_user: Obriši ovog korisnika
|
||||
confirm: Potvrdi
|
||||
friends_changesets: changesetovi prijatelja
|
||||
report: Prijavi ovog korisnika
|
||||
popup:
|
||||
your location: Vaša lokacija
|
||||
nearby mapper: Obližnji maper
|
||||
friend: Prijatelj
|
||||
account:
|
||||
title: Uredi korisnički račun
|
||||
my settings: Moje postavke
|
||||
|
@ -1837,7 +1840,6 @@ hr:
|
|||
link text: što je ovo?
|
||||
save changes button: Snimi promjene
|
||||
make edits public button: Napravi sve moje promjene javnim
|
||||
return to profile: Vrati se na profil
|
||||
flash update success confirm needed: Korisničke informacije su uspješno ažurirane.
|
||||
Provjeri email za poruku potvrde nove email adrese.
|
||||
flash update success: Korisničke informacije su uspješno ažurirane.
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -428,7 +428,7 @@ hu:
|
|||
index:
|
||||
title: Módosításcsomagok
|
||||
title_user: '%{user} módosításcsomagjai'
|
||||
title_friend: Ismerőseim módosításcsomagjai
|
||||
title_friend: Ismerősök módosításcsomagjai
|
||||
title_nearby: Közeli felhasználók módosításcsomagjai
|
||||
empty: Nem található módosításcsomag
|
||||
empty_area: Nincs módosításcsomag erre a területre.
|
||||
|
@ -453,6 +453,28 @@ hu:
|
|||
timeout:
|
||||
sorry: Sajnáljuk, túl sokáig tartott az általad kért módosításcsomag-hozzászólások
|
||||
listájának lekérése.
|
||||
dashboards:
|
||||
contact:
|
||||
km away: '%{count} km távolságra'
|
||||
m away: '%{count} m távolságra'
|
||||
popup:
|
||||
your location: Helyed
|
||||
nearby mapper: Közeli térképszerkesztő
|
||||
friend: Ismerős
|
||||
show:
|
||||
title: Irányítópult
|
||||
no_home_location_html: '%{edit_profile_link}, és add meg az otthoni tartózkodási
|
||||
helyed, hogy lásd a közeli felhasználókat.'
|
||||
edit_your_profile: Szerkeszd a profilodat
|
||||
my friends: Ismerősök
|
||||
no friends: Még nem adtál meg egyetlen ismerőst sem.
|
||||
nearby users: További közeli felhasználók
|
||||
no nearby users: Még nincsenek más felhasználók, akik megadták, hogy a közelben
|
||||
szerkesztenek.
|
||||
friends_changesets: ismerősök módosításcsomagjai
|
||||
friends_diaries: ismerősök naplóbejegyzései
|
||||
nearby_changesets: közeli felhasználók módosításcsomagjai
|
||||
nearby_diaries: közeli felhasználók naplóbejegyzései
|
||||
diary_entries:
|
||||
new:
|
||||
title: Új naplóbejegyzés
|
||||
|
@ -788,6 +810,7 @@ hu:
|
|||
window_construction: Ablakkészítő
|
||||
winery: Borászat
|
||||
"yes": Kézműves bolt
|
||||
crossing: Gyalogosátkelő
|
||||
emergency:
|
||||
access_point: Mentési pont
|
||||
ambulance_station: Mentőállomás
|
||||
|
@ -1043,6 +1066,7 @@ hu:
|
|||
hill: Domb
|
||||
hot_spring: Hőforrás
|
||||
island: Sziget
|
||||
isthmus: Földszoros
|
||||
land: Szárazföld
|
||||
marsh: Mocsár
|
||||
moor: Mocsár
|
||||
|
@ -1057,10 +1081,13 @@ hu:
|
|||
sand: Homok
|
||||
scree: Törmeléklejtő
|
||||
scrub: Bozót
|
||||
shingle: Kavicsos tengerpart vagy folyómeder
|
||||
spring: Forrás
|
||||
stone: Kő
|
||||
strait: Tengerszoros
|
||||
tree: Fa
|
||||
tree_row: Fasor
|
||||
tundra: Tundra
|
||||
valley: Völgy
|
||||
volcano: Vulkán
|
||||
water: Víz
|
||||
|
@ -1457,9 +1484,10 @@ hu:
|
|||
intro_text: Az OpenStreetMap egy világtérkép, amelyet hozzád hasonló emberek készítenek
|
||||
és szabad licenc alatt elérhető.
|
||||
intro_2_create_account: Felhasználói fiók létrehozása
|
||||
hosting_partners_html: 'Az üzemeltetés támogatói: %{ucl}, %{bytemark}, és további
|
||||
%{partners}.'
|
||||
hosting_partners_html: 'Az üzemeltetés támogatói: %{ucl}, %{fastly}, %{bytemark},
|
||||
és további %{partners}.'
|
||||
partners_ucl: UCL
|
||||
partners_fastly: Fastly
|
||||
partners_bytemark: Bytemark Hosting
|
||||
partners_partners: partnerek
|
||||
tou: Felhasználási feltételek
|
||||
|
@ -1646,8 +1674,8 @@ hu:
|
|||
messages:
|
||||
inbox:
|
||||
title: Beérkezett üzenetek
|
||||
my_inbox: Beérkezett üzeneteim
|
||||
my_outbox: Elküldött üzeneteim
|
||||
my_inbox: Beérkezett üzenetek
|
||||
my_outbox: Elküldött üzenetek
|
||||
messages: '%{new_messages} és %{old_messages} van'
|
||||
new_messages:
|
||||
one: 1 új üzeneted
|
||||
|
@ -1682,8 +1710,8 @@ hu:
|
|||
body: Sajnáljuk, nincs ilyen azonosítójú üzenet.
|
||||
outbox:
|
||||
title: Elküldött üzenetek
|
||||
my_inbox: Beérkezett üzeneteim
|
||||
my_outbox: Elküldött üzeneteim
|
||||
my_inbox: Beérkezett üzenetek
|
||||
my_outbox: Elküldött üzenetek
|
||||
messages:
|
||||
one: Egy elküldött üzeneted van
|
||||
other: '%{count} elküldött üzeneted van'
|
||||
|
@ -1736,7 +1764,7 @@ hu:
|
|||
flash token bad: Nem találtad meg a tokent? Esetleg ellenőrizd az URL-t.
|
||||
preferences:
|
||||
show:
|
||||
title: Beállításaim
|
||||
title: Megjelenési beállítások
|
||||
preferred_editor: Előnyben részesített szerkesztő
|
||||
preferred_languages: Előnyben részesített nyelvek
|
||||
edit_preferences: Beállítások szerkesztése
|
||||
|
@ -1953,9 +1981,11 @@ hu:
|
|||
<strong>Ausztria</strong>: adatokat tartalmaz a következő forrásból:
|
||||
<a href="https://data.wien.gv.at/">Bécs városa</a>
|
||||
<a href="https://creativecommons.org/licenses/by/3.0/at/deed.de">CC BY</a> licenc alatt.
|
||||
contributors_au_html: |-
|
||||
<strong>Ausztrália</strong>: tartalmaz külvárosi adatokat az
|
||||
Ausztrál Statisztikai Hivatal adatain alapulva.
|
||||
contributors_au_html: 'Ausztrália: A Commonwealth of Australia által a <a
|
||||
href="https://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution
|
||||
4.0 International licenc (CC BY 4.0)</a> alapján engedélyezett <a href="https://geoscape.com.au/legal/data-copyright-and-disclaimer/">Geoscape
|
||||
Australia</a> Administrative Boundaries © (közigazgatási határok) felhasználásával
|
||||
készült vagy azt tartalmazza.'
|
||||
contributors_ca_html: |-
|
||||
<strong>Kanada</strong>: adatokat tartalmaz a következő forrásokból:
|
||||
GeoBase®, GeoGratis (© Department of Natural
|
||||
|
@ -2145,8 +2175,8 @@ hu:
|
|||
desktop_html: A Potlatchot azonban továbbra is hasznáhatod, ha <a href="https://www.systemed.net/potlatch/">letöltöd
|
||||
a Windowsos vagy Maces asztali alkalmazást</a>.
|
||||
id_html: Alternatív megoldásként beállíthatod alapértelmezett szerkesztőként
|
||||
az iD-t, amely a webböngészőben fut, mint korábban a Potlatch. <a href="%{settings_url}">Felhasználói
|
||||
beállításaidat itt módosíthatod</a>.
|
||||
az iD-t, amely a webböngészőben fut, mint hajdanán a Potlatch. <a href="%{settings_url}">Beállításaidat
|
||||
itt módosíthatod</a>.
|
||||
sidebar:
|
||||
search_results: Keresés eredményei
|
||||
close: Bezár
|
||||
|
@ -2394,6 +2424,11 @@ hu:
|
|||
need_to_see_terms: Az API-hoz való hozzáférésed ideiglenesen felfüggesztésre
|
||||
került. Jelentkezz be a webes felületen a közreműködési feltételek megtekintéséhez.
|
||||
Ezt nem kell elfogadnod, de meg kell tekintened.
|
||||
settings_menu:
|
||||
account_settings: Fiók beállításai
|
||||
oauth1_settings: OAuth 1 beállítások
|
||||
oauth2_applications: OAuth 2 alkalmazások
|
||||
oauth2_authorizations: OAuth 2 engedélyek
|
||||
oauth:
|
||||
authorize:
|
||||
title: A fiókodhoz való hozzáférés engedélyezése
|
||||
|
@ -2587,16 +2622,17 @@ hu:
|
|||
is lehet, hogy rossz linkre kattintottál.
|
||||
deleted: törölve
|
||||
show:
|
||||
my diary: Naplóm
|
||||
my diary: Saját napló
|
||||
new diary entry: új naplóbejegyzés
|
||||
my edits: Szerkesztéseim
|
||||
my edits: Saját szerkesztések
|
||||
my traces: Nyomvonalaim
|
||||
my notes: Jegyzeteim
|
||||
my messages: Üzeneteim
|
||||
my profile: Profilom
|
||||
my settings: Beállításaim
|
||||
my comments: Hozzászólásaim
|
||||
my_preferences: Beállításaim
|
||||
my notes: Saját jegyzetek
|
||||
my messages: Üzenetek
|
||||
my profile: Profil
|
||||
my settings: Személyes beállítások
|
||||
my comments: Saját hozzászólások
|
||||
my_preferences: Megjelenési beállítások
|
||||
my_dashboard: Irányítópult
|
||||
blocks on me: Engem sújtó blokkolások
|
||||
blocks by me: Általam kiosztott blokkolások
|
||||
edit_profile: Profil szerkesztése
|
||||
|
@ -2618,13 +2654,6 @@ hu:
|
|||
spam score: 'Spam pontszám:'
|
||||
description: Leírás
|
||||
user location: Felhasználó helye
|
||||
my friends: Ismerőseim
|
||||
no friends: Még nem adtál meg egyetlen ismerőst sem.
|
||||
km away: '%{count} km távolságra'
|
||||
m away: '%{count} m távolságra'
|
||||
nearby users: További közeli felhasználók
|
||||
no nearby users: Még nincsenek más felhasználók, akik megadták, hogy a közelben
|
||||
szerkesztenek.
|
||||
role:
|
||||
administrator: Ez a felhasználó adminisztrátor
|
||||
moderator: Ez a felhasználó moderátor
|
||||
|
@ -2645,18 +2674,10 @@ hu:
|
|||
unhide_user: felhasználó elrejtésének megszüntetése
|
||||
delete_user: felhasználó törlése
|
||||
confirm: Megerősítés
|
||||
friends_changesets: ismerősök módosításcsomagjai
|
||||
friends_diaries: ismerősök naplóbejegyzései
|
||||
nearby_changesets: közeli felhasználók módosításcsomagjai
|
||||
nearby_diaries: közeli felhasználók naplóbejegyzései
|
||||
report: Felhasználó bejelentése
|
||||
popup:
|
||||
your location: Helyed
|
||||
nearby mapper: Közeli térképszerkesztő
|
||||
friend: Ismerős
|
||||
account:
|
||||
title: Fiók szerkesztése
|
||||
my settings: Beállításaim
|
||||
my settings: Személyes beállítások
|
||||
current email address: Jelenlegi e-mail-cím
|
||||
external auth: Külső hitelesítés
|
||||
openid:
|
||||
|
@ -2691,11 +2712,7 @@ hu:
|
|||
link: https://www.osmfoundation.org/wiki/License/Contributor_Terms
|
||||
link text: mi ez?
|
||||
save changes button: Módosítások mentése
|
||||
make edits public button: Szerkesztéseim nyilvánossá tétele
|
||||
return to profile: Vissza a profilhoz
|
||||
oauth1 settings: OAuth 1 beállítások
|
||||
oauth2 applications: OAuth 2 alkalmazások
|
||||
oauth2 authorizations: OAuth 2 engedélyek
|
||||
make edits public button: Az összes szerkesztésem nyilvánossá tétele
|
||||
flash update success confirm needed: Felhasználói információk sikeresen frissítve.
|
||||
Nézd meg az e-mailjeidet az új e-mail címedet megerősítő levélhez.
|
||||
flash update success: Felhasználói információk sikeresen frissítve.
|
||||
|
|
|
@ -431,6 +431,27 @@ ia:
|
|||
timeout:
|
||||
sorry: Le lista de commentos sur gruppos de modificationes que tu requestava
|
||||
tardava troppo de tempore pro esser recuperate.
|
||||
dashboards:
|
||||
contact:
|
||||
km away: a %{count} km de distantia
|
||||
m away: a %{count} m de distantia
|
||||
popup:
|
||||
your location: Tu position
|
||||
nearby mapper: Cartographo vicin
|
||||
friend: Amico
|
||||
show:
|
||||
title: Mi pannello
|
||||
no_home_location_html: '%{edit_profile_link} e defini tu loco de domicilio pro
|
||||
vider le usatores a proximitate.'
|
||||
edit_your_profile: Modifica tu profilo
|
||||
my friends: Mi amicos
|
||||
no friends: Tu non ha ancora addite alcun amico.
|
||||
nearby users: Altere usatores vicin
|
||||
no nearby users: Il non ha ancora altere cartographos in le vicinitate.
|
||||
friends_changesets: gruppos de modificationes de tu amicos
|
||||
friends_diaries: articulos de diario de tu amicos
|
||||
nearby_changesets: gruppos de modificationes de usatores a proximitate
|
||||
nearby_diaries: articulos de diario per usatores a proximitate
|
||||
diary_entries:
|
||||
new:
|
||||
title: Nove entrata de diario
|
||||
|
@ -764,6 +785,7 @@ ia:
|
|||
window_construction: Construction de fenestras
|
||||
winery: Vinia
|
||||
"yes": Boteca de artisanato
|
||||
crossing: Transversamento
|
||||
emergency:
|
||||
access_point: Puncto de accesso
|
||||
ambulance_station: Station de ambulantias
|
||||
|
@ -1019,6 +1041,7 @@ ia:
|
|||
hill: Collina
|
||||
hot_spring: Fonte thermal
|
||||
island: Insula
|
||||
isthmus: Isthmo
|
||||
land: Terra
|
||||
marsh: Palude
|
||||
moor: Landa
|
||||
|
@ -1033,10 +1056,13 @@ ia:
|
|||
sand: Sablo
|
||||
scree: Detrito cadite
|
||||
scrub: Arbusto
|
||||
shingle: Silice
|
||||
spring: Fontana
|
||||
stone: Petra
|
||||
strait: Stricto
|
||||
tree: Arbore
|
||||
tree_row: Fila de arbores
|
||||
tundra: Tundra
|
||||
valley: Vallea
|
||||
volcano: Vulcano
|
||||
water: Aqua
|
||||
|
@ -1435,9 +1461,10 @@ ia:
|
|||
intro_text: OpenStreetMap es un carta del mundo, create per gente como tu e libere
|
||||
de usar sub un licentia aperte.
|
||||
intro_2_create_account: Crea un conto de usator
|
||||
hosting_partners_html: Le allogiamento web es supportate per %{ucl}, %{bytemark}
|
||||
e altere %{partners}.
|
||||
hosting_partners_html: Le allogiamento web es supportate per %{ucl}, %{fastly},
|
||||
%{bytemark} e altere %{partners}.
|
||||
partners_ucl: UCL
|
||||
partners_fastly: Fastly
|
||||
partners_bytemark: Bytemark Hosting
|
||||
partners_partners: partners
|
||||
tou: Conditiones de uso
|
||||
|
@ -1930,10 +1957,11 @@ ia:
|
|||
BY</a>, <a href="https://www.vorarlberg.at/vorarlberg/bauen_wohnen/bauen/vermessung_geoinformation/weitereinformationen/services/wmsdienste.htm">Land
|
||||
Vorarlberg</a> e Land Tirol (sub <a href="https://www.tirol.gv.at/applikationen/e-government/data/nutzungsbedingungen/">CC
|
||||
BY AT con emendamentos</a>).'
|
||||
contributors_au_html: '<strong>Australia</strong>: Contine datos obtenite
|
||||
ab <a href="https://www.psma.com.au/psma-data-copyright-and-disclaimer">PSMA
|
||||
Australia Limited</a> licentiate per le Commonwealth de Australia sub <a
|
||||
href="https://creativecommons.org/licenses/by/4.0/">CC BY 4.0</a>.'
|
||||
contributors_au_html: '<strong>Australia</strong>: Incorpora o disveloppate
|
||||
usante Limites Administrative © <a href="https://geoscape.com.au/legal/data-copyright-and-disclaimer/">Geoscape
|
||||
Australia</a> publicate per le Commonwealth de Australia sub licentia <a
|
||||
href="https://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution
|
||||
4.0 International (CC BY 4.0)</a>.'
|
||||
contributors_ca_html: |-
|
||||
<strong>Canada</strong>: Contine datos ab
|
||||
GeoBase®, GeoGratis (© Department of Natural
|
||||
|
@ -2132,8 +2160,8 @@ ia:
|
|||
desktop_html: Tu pote totevia usar Potlatch si tu <a href="https://www.systemed.net/potlatch/">discarga
|
||||
le application scriptorio pro Mac o Windows</a>.
|
||||
id_html: Alternativemente, tu pote fixar le editor predefinite a iD, le qual
|
||||
functiona in tu navigator web como Potlatch faceva antea. <a href="%{settings_url}">Cambia
|
||||
hic tu parametros de usator</a>.
|
||||
functiona in tu navigator web como Potlatch lo faceva antea. <a href="%{settings_url}">Cambia
|
||||
hic tu preferentias</a>.
|
||||
sidebar:
|
||||
search_results: Resultatos del recerca
|
||||
close: Clauder
|
||||
|
@ -2387,6 +2415,11 @@ ia:
|
|||
need_to_see_terms: Vostre accesso al API ha essite temporarimente suspendite.
|
||||
Per favor aperi session in le interfacie web pro vider le Conditiones de contributor.
|
||||
Non es necessari declarar se de accordo, ma es obligatori haber legite los.
|
||||
settings_menu:
|
||||
account_settings: Configuration del conto
|
||||
oauth1_settings: Configuration OAuth 1
|
||||
oauth2_applications: Applicationes OAuth 2
|
||||
oauth2_authorizations: Autorisationes OAuth 2
|
||||
oauth:
|
||||
authorize:
|
||||
title: Autorisar accesso a tu conto
|
||||
|
@ -2590,6 +2623,7 @@ ia:
|
|||
my settings: Mi preferentias
|
||||
my comments: Mi commentos
|
||||
my_preferences: Mi preferentias
|
||||
my_dashboard: Mi pannello
|
||||
blocks on me: Blocadas concernente me
|
||||
blocks by me: Blocadas facite per me
|
||||
edit_profile: Modificar profilo
|
||||
|
@ -2611,14 +2645,6 @@ ia:
|
|||
spam score: 'Punctos de spam:'
|
||||
description: Description
|
||||
user location: Position del usator
|
||||
set_location_html: <a href="%{edit_profile_url}">Modifica tu profilo</a> e indica
|
||||
tu position geographic pro vider le usatores a proximitate.
|
||||
my friends: Mi amicos
|
||||
no friends: Tu non ha ancora addite alcun amico.
|
||||
km away: a %{count} km de distantia
|
||||
m away: a %{count} m de distantia
|
||||
nearby users: Altere usatores vicin
|
||||
no nearby users: Il non ha ancora altere cartographos in le vicinitate.
|
||||
role:
|
||||
administrator: Iste usator es un administrator
|
||||
moderator: Iste usator es un moderator
|
||||
|
@ -2639,15 +2665,7 @@ ia:
|
|||
unhide_user: Revelar iste usator
|
||||
delete_user: Deler iste usator
|
||||
confirm: Confirmar
|
||||
friends_changesets: gruppos de modificationes de tu amicos
|
||||
friends_diaries: articulos de diario de tu amicos
|
||||
nearby_changesets: gruppos de modificationes de usatores a proximitate
|
||||
nearby_diaries: articulos de diario per usatores a proximitate
|
||||
report: Signalar iste usator
|
||||
popup:
|
||||
your location: Tu position
|
||||
nearby mapper: Cartographo vicin
|
||||
friend: Amico
|
||||
account:
|
||||
title: Modificar conto
|
||||
my settings: Mi configurationes
|
||||
|
@ -2686,10 +2704,6 @@ ia:
|
|||
link text: que es isto?
|
||||
save changes button: Salveguardar modificationes
|
||||
make edits public button: Render tote mi modificationes public
|
||||
return to profile: Retornar al profilo
|
||||
oauth1 settings: Configuration OAuth 1
|
||||
oauth2 applications: Applicationes OAuth 2
|
||||
oauth2 authorizations: Autorisationes OAuth 2
|
||||
flash update success confirm needed: Informationes del usator actualisate con
|
||||
successo. Tu recipera in e-mail un nota pro confirmar tu nove adresse de e-mail.
|
||||
flash update success: Informationes del usator actualisate con successo.
|
||||
|
|
|
@ -12,6 +12,7 @@
|
|||
# Author: Dewisulistio
|
||||
# Author: Emirhartato
|
||||
# Author: Farras
|
||||
# Author: Han4299
|
||||
# Author: Hanif Al Husaini
|
||||
# Author: HarryMahar
|
||||
# Author: Hidayatsrf
|
||||
|
@ -128,6 +129,7 @@ id:
|
|||
language: Bahasa
|
||||
doorkeeper/application:
|
||||
name: Nama
|
||||
scopes: Izin
|
||||
friend:
|
||||
user: Pengguna
|
||||
friend: Teman
|
||||
|
@ -444,6 +446,24 @@ id:
|
|||
timeout:
|
||||
sorry: Maaf, daftar komentar set perubahan yang Anda minta butuh waktu lama
|
||||
untuk ditampilkan.
|
||||
dashboards:
|
||||
contact:
|
||||
km away: sejauh %{count}km
|
||||
m away: sejauh %{count} meter
|
||||
popup:
|
||||
your location: Lokasi Anda
|
||||
nearby mapper: Pembuat peta disekitar Anda
|
||||
friend: Teman
|
||||
show:
|
||||
my friends: Teman saya
|
||||
no friends: Anda belum menambahkan teman.
|
||||
nearby users: Pengguna lain terdekat
|
||||
no nearby users: Tidak ada pengguna lain yang mengaku untuk melakukan pemetaan
|
||||
terdekat.
|
||||
friends_changesets: Telusuri semua set perubahan yang dibuat oleh teman-teman
|
||||
friends_diaries: Telusuri seluruh entri catatan harian oleh teman-teman
|
||||
nearby_changesets: Telusuri seluruh set perubahan oleh pengguna terdekat
|
||||
nearby_diaries: Telurusi seluruh entri catatan harian oleh pengguna terdekat
|
||||
diary_entries:
|
||||
new:
|
||||
title: Entri Baru Catatan Harian
|
||||
|
@ -2391,13 +2411,6 @@ id:
|
|||
spam score: 'Jumlah Spam:'
|
||||
description: Deskripsi
|
||||
user location: Lokasi pengguna
|
||||
my friends: Teman saya
|
||||
no friends: Anda belum menambahkan teman.
|
||||
km away: sejauh %{count}km
|
||||
m away: sejauh %{count} meter
|
||||
nearby users: Pengguna lain terdekat
|
||||
no nearby users: Tidak ada pengguna lain yang mengaku untuk melakukan pemetaan
|
||||
terdekat.
|
||||
role:
|
||||
administrator: Pengguna ini merupakan administrator
|
||||
moderator: Pengguna ini adalah moderator
|
||||
|
@ -2418,15 +2431,7 @@ id:
|
|||
unhide_user: Munculkan Kembali Pengguna Ini
|
||||
delete_user: Hapus Pengguna Ini
|
||||
confirm: Konfirmasi
|
||||
friends_changesets: Telusuri semua set perubahan yang dibuat oleh teman-teman
|
||||
friends_diaries: Telusuri seluruh entri catatan harian oleh teman-teman
|
||||
nearby_changesets: Telusuri seluruh set perubahan oleh pengguna terdekat
|
||||
nearby_diaries: Telurusi seluruh entri catatan harian oleh pengguna terdekat
|
||||
report: Laporkan Pengguna Ini
|
||||
popup:
|
||||
your location: Lokasi Anda
|
||||
nearby mapper: Pembuat peta disekitar Anda
|
||||
friend: Teman
|
||||
account:
|
||||
title: Edit akun
|
||||
my settings: Pengaturan saya
|
||||
|
@ -2465,7 +2470,6 @@ id:
|
|||
link text: Apa ini?
|
||||
save changes button: Simpan Perubahan
|
||||
make edits public button: Membuat seluruh suntingan saya menjadi publik
|
||||
return to profile: Kembali ke profil
|
||||
flash update success confirm needed: Informasi pengguna telah berhasil diperbarui.
|
||||
Periksa email untuk melakukan konfirmasi alamat email.
|
||||
flash update success: Informasi mengenai pengguna sudah berhasil diperbarui.
|
||||
|
|
|
@ -421,6 +421,24 @@ is:
|
|||
timeout:
|
||||
sorry: Því miður, það tók of langan tíma að ná í listann yfir þær athugasemdir
|
||||
við breytingasett sem þú baðst um.
|
||||
dashboards:
|
||||
contact:
|
||||
km away: í %{count} km fjarlægð
|
||||
m away: í %{count} m fjarlægð
|
||||
popup:
|
||||
your location: Staðsetning þín
|
||||
nearby mapper: Nálægur notandi
|
||||
friend: Vinur
|
||||
show:
|
||||
my friends: Vinir mínir
|
||||
no friends: Þú átt enga vini
|
||||
nearby users: Aðrir nálægir notendur
|
||||
no nearby users: Engir notendur hafa stillt staðsetningu sína á korti nálægt
|
||||
þér.
|
||||
friends_changesets: breytingasett vina
|
||||
friends_diaries: bloggfærslur vina
|
||||
nearby_changesets: breytingasett vina í næsta nágrenni
|
||||
nearby_diaries: bloggfærslur vina í næsta nágrenni
|
||||
diary_entries:
|
||||
new:
|
||||
title: Ný bloggfærsla
|
||||
|
@ -2477,13 +2495,6 @@ is:
|
|||
spam score: 'Ruslpóst-einkunn:'
|
||||
description: Lýsing
|
||||
user location: Staðsetning
|
||||
my friends: Vinir mínir
|
||||
no friends: Þú átt enga vini
|
||||
km away: í %{count} km fjarlægð
|
||||
m away: í %{count} m fjarlægð
|
||||
nearby users: Aðrir nálægir notendur
|
||||
no nearby users: Engir notendur hafa stillt staðsetningu sína á korti nálægt
|
||||
þér.
|
||||
role:
|
||||
administrator: Þessi notandi er möppudýr
|
||||
moderator: Þessi notandi er prófarkalesari
|
||||
|
@ -2504,15 +2515,7 @@ is:
|
|||
unhide_user: Af-fela þennan notanda
|
||||
delete_user: Eyða þessum notanda
|
||||
confirm: Staðfesta
|
||||
friends_changesets: breytingasett vina
|
||||
friends_diaries: bloggfærslur vina
|
||||
nearby_changesets: breytingasett vina í næsta nágrenni
|
||||
nearby_diaries: bloggfærslur vina í næsta nágrenni
|
||||
report: Tilkynna þennan notanda
|
||||
popup:
|
||||
your location: Staðsetning þín
|
||||
nearby mapper: Nálægur notandi
|
||||
friend: Vinur
|
||||
account:
|
||||
title: Stillingar
|
||||
my settings: Mínar stillingar
|
||||
|
@ -2553,7 +2556,6 @@ is:
|
|||
link text: Hvað er þetta?
|
||||
save changes button: Vista breytingar
|
||||
make edits public button: Gera allar breytingarnar mínar opinberar
|
||||
return to profile: Aftur á mína síðu
|
||||
flash update success confirm needed: Stillingarnar þínar voru uppfærðar. Póstur
|
||||
var sendur á netfangið þitt sem þú þarft að bregðast við til að netfangið
|
||||
þitt verði staðfest.
|
||||
|
|
|
@ -35,6 +35,7 @@
|
|||
# Author: Massimo itaca
|
||||
# Author: McDutchie
|
||||
# Author: Nemo bis
|
||||
# Author: Noretta93
|
||||
# Author: Od1n
|
||||
# Author: Ontsed
|
||||
# Author: Paolopoz
|
||||
|
@ -481,6 +482,28 @@ it:
|
|||
timeout:
|
||||
sorry: Spiacenti, l'elenco richiesto di commenti al changeset ha impiegato troppo
|
||||
tempo per poter essere recuperato.
|
||||
dashboards:
|
||||
contact:
|
||||
km away: distante %{count} km
|
||||
m away: '%{count}m di distanza'
|
||||
popup:
|
||||
your location: Propria posizione
|
||||
nearby mapper: Mappatore vicino
|
||||
friend: Amico
|
||||
show:
|
||||
title: La mia dashboard
|
||||
no_home_location_html: '%{edit_profile_link} e imposta la posizione di casa
|
||||
per vedere gli utenti vicini.'
|
||||
edit_your_profile: Modifica il tuo profilo
|
||||
my friends: I miei amici
|
||||
no friends: Non ci sono ancora amici.
|
||||
nearby users: Altri utenti nelle vicinanze
|
||||
no nearby users: Non ci sono ancora altri utenti che ammettono di mappare nelle
|
||||
vicinanze.
|
||||
friends_changesets: gruppi di modifiche degli amici
|
||||
friends_diaries: note dei diari degli amici
|
||||
nearby_changesets: gruppi di modifiche da parte degli utenti nelle vicinanze
|
||||
nearby_diaries: note dei diari degli utenti nelle vicinanze
|
||||
diary_entries:
|
||||
new:
|
||||
title: Nuova voce del diario
|
||||
|
@ -816,6 +839,7 @@ it:
|
|||
window_construction: Costruttore di finestre
|
||||
winery: Cantina vinicola
|
||||
"yes": Negozio di Artigianato
|
||||
crossing: Attraversamento
|
||||
emergency:
|
||||
access_point: Punto d'accesso
|
||||
ambulance_station: Stazione delle ambulanze
|
||||
|
@ -1071,6 +1095,7 @@ it:
|
|||
hill: Collina
|
||||
hot_spring: Sorgente termale
|
||||
island: Isola
|
||||
isthmus: Istmo
|
||||
land: Terra
|
||||
marsh: Palude alluvionale
|
||||
moor: Molo
|
||||
|
@ -1085,10 +1110,13 @@ it:
|
|||
sand: Sabbia
|
||||
scree: Ghiaione
|
||||
scrub: Boscaglia
|
||||
shingle: Greto
|
||||
spring: Sorgente
|
||||
stone: Pietra
|
||||
strait: Stretto
|
||||
tree: Albero
|
||||
tree_row: Filare di alberi
|
||||
tundra: Tundra
|
||||
valley: Valle
|
||||
volcano: Vulcano
|
||||
water: Acqua
|
||||
|
@ -1487,9 +1515,10 @@ it:
|
|||
intro_text: OpenStreetMap è una mappa del mondo, creata da persone come te e libera
|
||||
da utilizzare secondo una licenza aperta.
|
||||
intro_2_create_account: Crea un account utente
|
||||
hosting_partners_html: L'hosting è supportato da %{ucl}, %{bytemark}, e da altri
|
||||
%{partners}.
|
||||
hosting_partners_html: L'hosting è supportato da %{ucl}, %{fastly}, %{bytemark},
|
||||
e da altri %{partners}.
|
||||
partners_ucl: UCL
|
||||
partners_fastly: Fastly
|
||||
partners_bytemark: Bytemark Hosting
|
||||
partners_partners: partner
|
||||
tou: Condizioni d'uso
|
||||
|
@ -1988,9 +2017,11 @@ it:
|
|||
<a href="https://creativecommons.org/licenses/by/3.0/at/deed.de">CC BY</a>),
|
||||
<a href="https://www.vorarlberg.at/vorarlberg/bauen_wohnen/bauen/vermessung_geoinformation/weitereinformationen/services/wmsdienste.htm">Land Vorarlberg</a> e
|
||||
Land Tirol (sotto <a href="https://www.tirol.gv.at/applikationen/e-government/data/nutzungsbedingungen/">CC-BY AT con emendamenti</a>).
|
||||
contributors_au_html: |-
|
||||
<strong>Australia</strong>: contiene i dati della periferia basati
|
||||
sui dati dell'Australian Bureau of Statistics.
|
||||
contributors_au_html: '<strong>Australia</strong>: contiene o è sviluppato
|
||||
sfruttando i confini amministrativi © <a href="https://geoscape.com.au/legal/data-copyright-and-disclaimer/">Geoscape
|
||||
Australia</a> rilasciati dal Commonwealth dell''Australia con licenza <a
|
||||
href="https://creativecommons.org/licenses/by/4.0/">Creative Commons Attribuzione
|
||||
4.0 Internazionale (CC BY 4.0)</a>.'
|
||||
contributors_ca_html: |-
|
||||
<strong>Canada</strong>: contiene i dati della
|
||||
GeoBase®, GeoGratis (© Department of Natural
|
||||
|
@ -2191,7 +2222,7 @@ it:
|
|||
l'applicazione desktop per Mac e Windows</a>.
|
||||
id_html: In alternativa, puoi impostare l'editor predefinito su iD che funziona
|
||||
in un browser web come un tempo faceva Potlatch. <a href="%{settings_url}">Modifica
|
||||
le tue impostazioni utente qui</a>.
|
||||
le tue preferenze qui</a>.
|
||||
sidebar:
|
||||
search_results: Risultati della ricerca
|
||||
close: Chiudi
|
||||
|
@ -2407,7 +2438,7 @@ it:
|
|||
in: in
|
||||
index:
|
||||
public_traces: Tracciati GPS pubblici
|
||||
my_traces: Miei tracciati
|
||||
my_traces: I miei tracciati
|
||||
public_traces_from: Tracciati GPS pubblici di %{user}
|
||||
description: Naviga fra i tracciati GPS caricati recentemente
|
||||
tagged_with: ' etichettati con %{tags}'
|
||||
|
@ -2450,6 +2481,11 @@ it:
|
|||
need_to_see_terms: Il tuo accesso alle API è temporaneamente sospeso. Si prega
|
||||
di accedere all'interfaccia web per visualizzare i termini di contribuzione.
|
||||
Non c'è bisogno che tu aderisca, però è necessario che tu li legga.
|
||||
settings_menu:
|
||||
account_settings: Impostazioni account
|
||||
oauth1_settings: Impostazioni OAuth
|
||||
oauth2_applications: Applicazioni OAuth 2
|
||||
oauth2_authorizations: Autorizzazioni OAuth 2
|
||||
oauth:
|
||||
authorize:
|
||||
title: Autorizzare l'accesso al tuo account
|
||||
|
@ -2528,7 +2564,7 @@ it:
|
|||
flash: Distrutta la registrazione dell'applicazione client
|
||||
oauth2_applications:
|
||||
index:
|
||||
title: Mie applicazioni client
|
||||
title: Le mie applicazioni client
|
||||
no_applications_html: Possiedi un’applicazione che vorresti registrare per poterla
|
||||
usare con noi mediante lo standard %{oauth2}? Devi registrare la tua applicazione
|
||||
prima che essa possa effettuare richieste OAuth a questo servizio.
|
||||
|
@ -2644,14 +2680,15 @@ it:
|
|||
show:
|
||||
my diary: Il mio diario
|
||||
new diary entry: nuova voce del diario
|
||||
my edits: Mie modifiche
|
||||
my traces: Miei tracciati
|
||||
my notes: Mie note
|
||||
my messages: Miei messaggi
|
||||
my edits: Le mie modifiche
|
||||
my traces: I miei tracciati
|
||||
my notes: Le mie note
|
||||
my messages: I miei messaggi
|
||||
my profile: Il mio profilo
|
||||
my settings: Impostazioni
|
||||
my comments: Miei commenti
|
||||
my comments: I miei commenti
|
||||
my_preferences: Preferenze
|
||||
my_dashboard: La mia dashboard
|
||||
blocks on me: Blocchi su di me
|
||||
blocks by me: Blocchi applicati da me
|
||||
edit_profile: Modifica profilo
|
||||
|
@ -2673,13 +2710,6 @@ it:
|
|||
spam score: 'Punteggio Spam:'
|
||||
description: Descrizione
|
||||
user location: Luogo dell'utente
|
||||
my friends: I miei amici
|
||||
no friends: Non ci sono ancora amici.
|
||||
km away: distante %{count} km
|
||||
m away: '%{count}m di distanza'
|
||||
nearby users: Altri utenti nelle vicinanze
|
||||
no nearby users: Non ci sono ancora altri utenti che ammettono di mappare nelle
|
||||
vicinanze.
|
||||
role:
|
||||
administrator: Questo utente è un amministratore
|
||||
moderator: Questo utente è un moderatore
|
||||
|
@ -2700,15 +2730,7 @@ it:
|
|||
unhide_user: Mostra questo utente
|
||||
delete_user: Cancella questo utente
|
||||
confirm: Conferma
|
||||
friends_changesets: gruppi di modifiche degli amici
|
||||
friends_diaries: note dei diari degli amici
|
||||
nearby_changesets: gruppi di modifiche da parte degli utenti nelle vicinanze
|
||||
nearby_diaries: note dei diari degli utenti nelle vicinanze
|
||||
report: Segnala questo utente
|
||||
popup:
|
||||
your location: Propria posizione
|
||||
nearby mapper: Mappatore vicino
|
||||
friend: Amico
|
||||
account:
|
||||
title: Modifica profilo
|
||||
my settings: Impostazioni
|
||||
|
@ -2747,10 +2769,6 @@ it:
|
|||
link text: che cos'è questo?
|
||||
save changes button: Salva modifiche
|
||||
make edits public button: Rendi pubbliche tutte le mie modifiche
|
||||
return to profile: Ritorna al profilo
|
||||
oauth1 settings: Impostazioni OAuth
|
||||
oauth2 applications: Applicazioni OAuth 2
|
||||
oauth2 authorizations: Autorizzazioni OAuth 2
|
||||
flash update success confirm needed: Informazioni sull'utente aggiornate con
|
||||
successo. Controllare la propria email per la conferma del nuovo indirizzo
|
||||
di posta elettronica.
|
||||
|
|
|
@ -28,6 +28,7 @@
|
|||
# Author: Oinary
|
||||
# Author: Omotecho
|
||||
# Author: Otokoume
|
||||
# Author: RYOUMA1117
|
||||
# Author: Ruila
|
||||
# Author: Rxy
|
||||
# Author: Schu
|
||||
|
@ -461,6 +462,25 @@ ja:
|
|||
title_particular: OpenStreetMap変更セット#%{changeset_id}の議論
|
||||
timeout:
|
||||
sorry: 申し訳ありませんが、要求した変更セットのコメントの一覧は時間がかかりすぎたため取得できませんでした。
|
||||
dashboards:
|
||||
contact:
|
||||
km away: 距離 %{count} km
|
||||
m away: 距離 %{count} m
|
||||
popup:
|
||||
your location: 自分の位置
|
||||
nearby mapper: 周辺のマッパー
|
||||
friend: 友達
|
||||
show:
|
||||
no_home_location_html: '%{edit_profile_link}そして、近くのユーザーが表示されるように自宅の場所を設定します。'
|
||||
edit_your_profile: プロフィールの編集
|
||||
my friends: 友だち
|
||||
no friends: あなたはまだ誰も友達として登録していません。
|
||||
nearby users: 周辺にいるその他の利用者
|
||||
no nearby users: あなたの活動地域周辺に他のマッパーはいないようです。
|
||||
friends_changesets: 友達による変更セット
|
||||
friends_diaries: 友達の日記エントリ
|
||||
nearby_changesets: 周辺の利用者のメモ
|
||||
nearby_diaries: 周辺のユーザーの日記エントリ
|
||||
diary_entries:
|
||||
new:
|
||||
title: 日記エントリの新規作成
|
||||
|
@ -792,6 +812,7 @@ ja:
|
|||
window_construction: サッシ施工業
|
||||
winery: ワイン醸造所
|
||||
"yes": 手芸店
|
||||
crossing: 交差点
|
||||
emergency:
|
||||
access_point: アクセスポイント
|
||||
ambulance_station: 消防署
|
||||
|
@ -882,6 +903,7 @@ ja:
|
|||
railway: 廃線
|
||||
roman_road: ローマ街道
|
||||
ruins: 廃墟
|
||||
rune_stone: ルーン石碑
|
||||
stone: 岩石
|
||||
tomb: 墓地
|
||||
tower: 塔
|
||||
|
@ -1046,6 +1068,7 @@ ja:
|
|||
hill: 丘陵
|
||||
hot_spring: 温泉
|
||||
island: 島
|
||||
isthmus: 地峡
|
||||
land: 陸地
|
||||
marsh: 沼地
|
||||
moor: 沼地
|
||||
|
@ -1060,10 +1083,13 @@ ja:
|
|||
sand: 砂
|
||||
scree: がれ場
|
||||
scrub: 低木林
|
||||
shingle: 帯状疱疹
|
||||
spring: 泉
|
||||
stone: 岩石
|
||||
strait: 海峡
|
||||
tree: 木
|
||||
tree_row: 並木
|
||||
tundra: ツンドラ
|
||||
valley: 谷
|
||||
volcano: 噴火口
|
||||
water: 湖水
|
||||
|
@ -1460,8 +1486,9 @@ ja:
|
|||
intro_header: OpenStreetMap へようこそ!
|
||||
intro_text: OpenStreetMap は、あなたのような人々が作成した世界地図であり、オープン ライセンスの下で自由に利用できます。
|
||||
intro_2_create_account: 新しい利用者アカウントを作成
|
||||
hosting_partners_html: 'ホスティング支援者: %{ucl}、%{bytemark}及びその他の%{partners}'
|
||||
hosting_partners_html: ホスティングは、%{ucl}、%{fastly}、%{bytemark}、およびその他の%{partners}によってサポートされています。
|
||||
partners_ucl: UCL
|
||||
partners_fastly: すばやく
|
||||
partners_bytemark: バイトマーク ホスティング
|
||||
partners_partners: パートナー
|
||||
tou: 利用規約
|
||||
|
@ -1682,6 +1709,7 @@ ja:
|
|||
preferences:
|
||||
show:
|
||||
title: 個人設定
|
||||
preferred_editor: 優先エディター
|
||||
preferred_languages: 優先言語
|
||||
edit_preferences: 設定の編集
|
||||
edit:
|
||||
|
@ -2233,6 +2261,11 @@ ja:
|
|||
blocked_zero_hour: OpenStreetMapウィブサイトにて緊急のお知らせがあります。編集を保存するにはお知らせを読んでください。
|
||||
blocked: APIへのアクセスがブロックされました。Web インターフェイスからログインし直して詳細を確認してください。
|
||||
need_to_see_terms: あなたは一時的にAPIの利用を停止されています。ウェブインターフェイスにログインして協力者規約をご覧ください。同意しなくてもかまいませんが、必ずご覧ください。
|
||||
settings_menu:
|
||||
account_settings: アカウント設定
|
||||
oauth1_settings: OAuth 1 設定
|
||||
oauth2_applications: OAuth 2 アプリケーション
|
||||
oauth2_authorizations: OAuth 2 認証
|
||||
oauth:
|
||||
authorize:
|
||||
title: あなたのアカウントへのアクセスの認証
|
||||
|
@ -2435,12 +2468,6 @@ ja:
|
|||
spam score: 'スパム評価:'
|
||||
description: 説明
|
||||
user location: 利用者の位置
|
||||
my friends: 友だち
|
||||
no friends: あなたはまだ誰も友達として登録していません。
|
||||
km away: 距離 %{count} km
|
||||
m away: 距離 %{count} m
|
||||
nearby users: 周辺にいるその他の利用者
|
||||
no nearby users: あなたの活動地域周辺に他のマッパーはいないようです。
|
||||
role:
|
||||
administrator: このユーザーは管理者です
|
||||
moderator: このユーザーはモデレーターです
|
||||
|
@ -2461,15 +2488,7 @@ ja:
|
|||
unhide_user: このユーザーを再表示
|
||||
delete_user: この利用者を削除
|
||||
confirm: 確認
|
||||
friends_changesets: 友達による変更セット
|
||||
friends_diaries: 友達の日記エントリ
|
||||
nearby_changesets: 周辺の利用者のメモ
|
||||
nearby_diaries: 周辺のユーザーの日記エントリ
|
||||
report: この利用者を通報
|
||||
popup:
|
||||
your location: 自分の位置
|
||||
nearby mapper: 周辺のマッパー
|
||||
friend: 友達
|
||||
account:
|
||||
title: アカウントの編集
|
||||
my settings: 設定
|
||||
|
@ -2500,10 +2519,6 @@ ja:
|
|||
link text: これは何ですか?
|
||||
save changes button: 変更を保存
|
||||
make edits public button: 自分の編集をすべて公開する
|
||||
return to profile: プロフィールに戻る
|
||||
oauth1 settings: OAuth 1 設定
|
||||
oauth2 applications: OAuth 2 アプリケーション
|
||||
oauth2 authorizations: OAuth 2 認証
|
||||
flash update success confirm needed: 利用者情報を更新しました。新着メールを確認して新しいメール アドレスを検証してください。
|
||||
flash update success: ユーザー情報を更新しました。
|
||||
set_home:
|
||||
|
|
|
@ -236,6 +236,13 @@ ka:
|
|||
changeset_comments:
|
||||
comment:
|
||||
commented_at_by_html: განაახლა %{when} წინ მომხმარებელმა %{user}
|
||||
dashboards:
|
||||
contact:
|
||||
km away: '%{count}კმ თქვენგან'
|
||||
m away: '%{count}მ თქვენგან'
|
||||
popup:
|
||||
your location: თქვენი ადგილმდებარეობა
|
||||
friend: მეგობარი
|
||||
diary_entries:
|
||||
new:
|
||||
title: დღიურში ახალი ჩანაწერის გაკეთება
|
||||
|
@ -1064,8 +1071,6 @@ ka:
|
|||
spam score: 'სპამის შეფასება:'
|
||||
description: აღწერა
|
||||
user location: მომხმარებლის ადგილმდებარეობა
|
||||
km away: '%{count}კმ თქვენგან'
|
||||
m away: '%{count}მ თქვენგან'
|
||||
role:
|
||||
administrator: ეს მომხმარებელი ადმინისტრატორია
|
||||
comments: კომენტარები
|
||||
|
@ -1077,9 +1082,6 @@ ka:
|
|||
unhide_user: ამ მომხმარებლის გამოჩენა
|
||||
delete_user: ამ მომხმარებლის წაშლა
|
||||
confirm: დადასტურება
|
||||
popup:
|
||||
your location: თქვენი ადგილმდებარეობა
|
||||
friend: მეგობარი
|
||||
account:
|
||||
title: ანგარიშის რედაქტირება
|
||||
my settings: ჩემი პარამეტრები
|
||||
|
@ -1093,7 +1095,6 @@ ka:
|
|||
contributor terms:
|
||||
link text: რა არის ეს?
|
||||
save changes button: ცვლილებების შენახვა
|
||||
return to profile: პროფილში დაბრუნება
|
||||
index:
|
||||
title: მომხმარებლები
|
||||
heading: მომხმარებლები
|
||||
|
|
|
@ -375,6 +375,19 @@ kab:
|
|||
timeout:
|
||||
sorry: Suref-aɣ, tabdart n iygrawen n usnifel i d-tessutreḍ tettawi ddeqs n
|
||||
wakud akken ad d-tali.
|
||||
dashboards:
|
||||
contact:
|
||||
km away: '%{count} km'
|
||||
m away: yebɛed s %{count} m
|
||||
popup:
|
||||
your location: Adig-ik
|
||||
friend: Amdakkel
|
||||
show:
|
||||
nearby users: Iseqdacen-nniḍen iqeṛben
|
||||
friends_changesets: Igrawen n usnifel n yidukkal
|
||||
friends_diaries: Inekcam n uɣmis n yimdukkal
|
||||
nearby_changesets: Ihrawen n usnifel n iseqdacen iqeṛben
|
||||
nearby_diaries: Inekcam n uɣmis n iseqdacen iqeṛben
|
||||
diary_entries:
|
||||
new:
|
||||
title: Anekcam amaynut n uɣmis
|
||||
|
@ -1336,9 +1349,6 @@ kab:
|
|||
spam score: 'Amatar n uspam:'
|
||||
description: Aglam
|
||||
user location: Adig n useqdac
|
||||
km away: '%{count} km'
|
||||
m away: yebɛed s %{count} m
|
||||
nearby users: Iseqdacen-nniḍen iqeṛben
|
||||
role:
|
||||
administrator: Aseqdac-agi d anedbal
|
||||
grant:
|
||||
|
@ -1356,13 +1366,6 @@ kab:
|
|||
unhide_user: Sken aseqdac-agi
|
||||
delete_user: Kkes aseqdac-agi
|
||||
confirm: Sentem
|
||||
friends_changesets: Igrawen n usnifel n yidukkal
|
||||
friends_diaries: Inekcam n uɣmis n yimdukkal
|
||||
nearby_changesets: Ihrawen n usnifel n iseqdacen iqeṛben
|
||||
nearby_diaries: Inekcam n uɣmis n iseqdacen iqeṛben
|
||||
popup:
|
||||
your location: Adig-ik
|
||||
friend: Amdakkel
|
||||
account:
|
||||
title: Ẓreg amiḍan
|
||||
my settings: Iɣewwaṛen-iw
|
||||
|
@ -1382,7 +1385,6 @@ kab:
|
|||
link text: what is this?
|
||||
save changes button: Sekles asnifel
|
||||
make edits public button: Err akk tiẓrigin-iw s tizuyaz
|
||||
return to profile: Uɣal ar umaɣnu
|
||||
flash update success: Talɣut n useqdac tettwasnifel akken iwata
|
||||
set_home:
|
||||
flash success: Adig n uxxam yettwasekles akken iwata
|
||||
|
|
|
@ -198,6 +198,12 @@ km:
|
|||
no_more_area: គ្មានសំណុំបន្លាស់ប្ដូរថែមទៀតទេក្នុងតំបន់នេះ។
|
||||
no_more_user: គ្មានសំណុំបន្លាស់ប្ដូរដោយអ្នកប្រើប្រាស់នេះថែមទៀតទេ។
|
||||
load_more: ផ្ទុកបន្ថែម
|
||||
dashboards:
|
||||
contact:
|
||||
km away: ចម្ងាយ %{count} គ.ម.
|
||||
m away: ចម្ងាយ %{count} ម.
|
||||
show:
|
||||
no friends: អ្នកមិនទាន់បានបន្ថែមមិត្តណាមួយនៅឡើយទេ។
|
||||
diary_entries:
|
||||
new:
|
||||
title: ប្រកាសកំណត់ហេតុថ្មី
|
||||
|
@ -787,9 +793,6 @@ km:
|
|||
remove as friend: ដកចេញជាមិត្ត
|
||||
add as friend: បន្ថែមជាមិត្ត
|
||||
description: បរិយាយ
|
||||
no friends: អ្នកមិនទាន់បានបន្ថែមមិត្តណាមួយនៅឡើយទេ។
|
||||
km away: ចម្ងាយ %{count} គ.ម.
|
||||
m away: ចម្ងាយ %{count} ម.
|
||||
account:
|
||||
title: កែប្រែគណនី
|
||||
public editing:
|
||||
|
|
|
@ -182,6 +182,8 @@ ko:
|
|||
pass_crypt: 비밀번호
|
||||
pass_crypt_confirmation: 비밀번호 확인
|
||||
help:
|
||||
doorkeeper/application:
|
||||
redirect_uri: URI마다 1줄 사용
|
||||
trace:
|
||||
tagstring: 쉼표로 구분
|
||||
user_block:
|
||||
|
@ -422,6 +424,25 @@ ko:
|
|||
title_particular: 'OpenStreetMap 변경 집합 #%{changeset_id} 토론'
|
||||
timeout:
|
||||
sorry: 죄송합니다, 요청하는 변경 집합 댓글을 불러오는데 너무 오래 걸렸습니다.
|
||||
dashboards:
|
||||
contact:
|
||||
km away: '%{count}km 거리'
|
||||
m away: '%{count}m 거리'
|
||||
popup:
|
||||
your location: 내 위치
|
||||
nearby mapper: 근처 매퍼
|
||||
friend: 친구
|
||||
show:
|
||||
title: 내 대시보드
|
||||
edit_your_profile: 내 프로파일 편집
|
||||
my friends: 내 친구
|
||||
no friends: 아직 어떠한 친구도 추가하지 않았습니다.
|
||||
nearby users: 기타 근처 사용자
|
||||
no nearby users: 아직 근처에 매핑을 인정하는 다른 사용자가 없습니다.
|
||||
friends_changesets: 친구의 바뀜집합
|
||||
friends_diaries: 친구의 일기 항목
|
||||
nearby_changesets: 근처 사용자의 바뀜집합
|
||||
nearby_diaries: 근처 사용자의 일기 항목
|
||||
diary_entries:
|
||||
new:
|
||||
title: 새 일기 항목
|
||||
|
@ -495,6 +516,11 @@ ko:
|
|||
comment: 의견
|
||||
newer_comments: 새 의견
|
||||
older_comments: 이전 의견
|
||||
doorkeeper:
|
||||
flash:
|
||||
applications:
|
||||
create:
|
||||
notice: 애플리케이션을 등록했습니다.
|
||||
friendships:
|
||||
make_friend:
|
||||
heading: '%{user} 님을 친구로 추가할까요?'
|
||||
|
@ -963,6 +989,7 @@ ko:
|
|||
stone: 돌
|
||||
strait: 해협
|
||||
tree: 나무
|
||||
tundra: 툰드라
|
||||
valley: 골짜기
|
||||
volcano: 화산
|
||||
water: 물
|
||||
|
@ -2098,6 +2125,7 @@ ko:
|
|||
uploaded: '올린 날짜:'
|
||||
points: '점:'
|
||||
start_coordinates: '시작 좌표:'
|
||||
coordinates_html: '%{latitude}; %{longitude}'
|
||||
map: 지도
|
||||
edit: 편집
|
||||
owner: '소유자:'
|
||||
|
@ -2138,6 +2166,7 @@ ko:
|
|||
<a href='https://wiki.openstreetmap.org/wiki/Beginners_Guide_1.2'>위키 문서</a>에서
|
||||
GPS 궤적에 대해 더 알아보세요.
|
||||
upload_trace: 궤적 올리기
|
||||
remove_tag_filter: 태그 필터 제거
|
||||
destroy:
|
||||
scheduled_for_deletion: 삭제 계획중인 궤적
|
||||
make_public:
|
||||
|
@ -2166,6 +2195,11 @@ ko:
|
|||
blocked: API에 대한 접근을 차단했습니다. 자세한 내용을 알아보려면 웹 인터페이스에 로그인하세요.
|
||||
need_to_see_terms: API에 대한 접근을 일시적으로 중지했습니다. 기여자 약관을 보려면 웹 인터페이스에 로그인하세요. 기여자
|
||||
약관에 동의할 필요는 없습니다만 기여자 약관을 보아야 합니다.
|
||||
settings_menu:
|
||||
account_settings: 계정 설정
|
||||
oauth1_settings: OAuth 1 설정
|
||||
oauth2_applications: OAuth 2 애플리케이션
|
||||
oauth2_authorizations: OAuth 2 인가
|
||||
oauth:
|
||||
authorize:
|
||||
title: 내 계정에 접근 인증
|
||||
|
@ -2194,6 +2228,9 @@ ko:
|
|||
missing: 이 애플리케이션이 이 기능을 사용할 수 있도록 승인하지 않았습니다
|
||||
scopes:
|
||||
write_prefs: 사용자 환경 설정 수정
|
||||
write_api: 지도 수정
|
||||
read_gpx: 비공개 GPS 궤적 읽기
|
||||
write_gpx: GPS 궤적 업로드
|
||||
oauth_clients:
|
||||
new:
|
||||
title: 새 애플리케이션 등록
|
||||
|
@ -2237,10 +2274,13 @@ ko:
|
|||
oauth2_applications:
|
||||
index:
|
||||
title: 내 클라이언트 애플리케이션
|
||||
new: 새 애플리케이션 등록
|
||||
name: 이름
|
||||
permissions: 권한
|
||||
application:
|
||||
edit: 편집
|
||||
delete: 삭제
|
||||
confirm_delete: 이 애플리케이션을 삭제하시겠습니까?
|
||||
new:
|
||||
title: 새 애플리케이션 등록
|
||||
edit:
|
||||
|
@ -2252,10 +2292,16 @@ ko:
|
|||
client_id: 클라이언트 ID
|
||||
permissions: 권한
|
||||
oauth2_authorizations:
|
||||
new:
|
||||
authorize: 인가
|
||||
deny: 거부
|
||||
error:
|
||||
title: 오류가 발생했습니다
|
||||
show:
|
||||
title: 인증 코드
|
||||
oauth2_authorized_applications:
|
||||
index:
|
||||
title: 내 인증한 애플리케이션
|
||||
application: 애플리케이션
|
||||
permissions: 권한
|
||||
users:
|
||||
|
@ -2302,6 +2348,7 @@ ko:
|
|||
italy: 이탈리아
|
||||
rest_of_world: 나머지 국가
|
||||
terms_declined_flash:
|
||||
terms_declined_link: 이 위키 문서
|
||||
terms_declined_url: https://wiki.openstreetmap.org/wiki/Contributor_Terms_Declined
|
||||
no_such_user:
|
||||
title: 이러한 사용자는 없습니다
|
||||
|
@ -2319,6 +2366,7 @@ ko:
|
|||
my settings: 프로필 설정
|
||||
my comments: 내 의견
|
||||
my_preferences: 내 환경 설정
|
||||
my_dashboard: 내 대시보드
|
||||
blocks on me: 나를 차단
|
||||
blocks by me: 나한테 차단
|
||||
edit_profile: 프로필 수정
|
||||
|
@ -2340,12 +2388,6 @@ ko:
|
|||
spam score: '스팸 점수:'
|
||||
description: 설명
|
||||
user location: 사용자 위치
|
||||
my friends: 내 친구
|
||||
no friends: 아직 어떠한 친구도 추가하지 않았습니다.
|
||||
km away: '%{count}km 거리'
|
||||
m away: '%{count}m 거리'
|
||||
nearby users: 기타 근처 사용자
|
||||
no nearby users: 아직 근처에 매핑을 인정하는 다른 사용자가 없습니다.
|
||||
role:
|
||||
administrator: 이 사용자는 관리자입니다
|
||||
moderator: 이 사용자는 운영자입니다
|
||||
|
@ -2366,15 +2408,7 @@ ko:
|
|||
unhide_user: 이 사용자를 숨기기 취소
|
||||
delete_user: 이 사용자를 삭제
|
||||
confirm: 확인
|
||||
friends_changesets: 친구의 바뀜집합
|
||||
friends_diaries: 친구의 일기 항목
|
||||
nearby_changesets: 근처 사용자의 바뀜집합
|
||||
nearby_diaries: 근처 사용자의 일기 항목
|
||||
report: 이 사용자 보고
|
||||
popup:
|
||||
your location: 내 위치
|
||||
nearby mapper: 근처 매퍼
|
||||
friend: 친구
|
||||
account:
|
||||
title: 계정 편집
|
||||
my settings: 프로필 설정
|
||||
|
@ -2407,10 +2441,6 @@ ko:
|
|||
link text: 무엇인가요?
|
||||
save changes button: 변경사항 저장
|
||||
make edits public button: 내 편집을 공개하기
|
||||
return to profile: 프로필로 돌아가기
|
||||
oauth1 settings: OAuth 1 설정
|
||||
oauth2 applications: OAuth 2 애플리케이션
|
||||
oauth2 authorizations: OAuth 2 인가
|
||||
flash update success confirm needed: 사용자 정보를 성공적으로 업데이트했습니다. 새 이메일 주소를 확인하기
|
||||
위해 이메일을 확인하세요.
|
||||
flash update success: 사용자 정보를 성공적으로 업데이트했습니다.
|
||||
|
|
|
@ -442,6 +442,24 @@ ku-Latn:
|
|||
timeout:
|
||||
sorry: Bibore, bidestxistina lîsteya şîroveyên desteya guhertinan ê ku te xwest
|
||||
demeke dirêj girt.
|
||||
dashboards:
|
||||
contact:
|
||||
km away: '%{count} km dûr e'
|
||||
m away: '%{count} m dûr e'
|
||||
popup:
|
||||
your location: Cihê te
|
||||
nearby mapper: Nexşesazên nêz
|
||||
friend: Heval
|
||||
show:
|
||||
my friends: Hevalên min
|
||||
no friends: Te hêj ji xwe re hevalek çênekiriye.
|
||||
nearby users: Bikarhênerên din ên nêz
|
||||
no nearby users: Li nêzî te bikarhênerekî din yê ku cihê xwe diyar kiribe tine
|
||||
ye.
|
||||
friends_changesets: desteyên guhertinan yên hevalan
|
||||
friends_diaries: nivîsên rojane yên hevalan
|
||||
nearby_changesets: desteyên guhertinan yên bikarhênerên nêz
|
||||
nearby_diaries: nivîsên rojane yên bikarhênerên nêz
|
||||
diary_entries:
|
||||
new:
|
||||
title: Nivîsa nû yê rojane
|
||||
|
@ -2588,13 +2606,6 @@ ku-Latn:
|
|||
spam score: Skora spamêː
|
||||
description: Danasîn
|
||||
user location: Cihê bikarhênerê
|
||||
my friends: Hevalên min
|
||||
no friends: Te hêj ji xwe re hevalek çênekiriye.
|
||||
km away: '%{count} km dûr e'
|
||||
m away: '%{count} m dûr e'
|
||||
nearby users: Bikarhênerên din ên nêz
|
||||
no nearby users: Li nêzî te bikarhênerekî din yê ku cihê xwe diyar kiribe tine
|
||||
ye.
|
||||
role:
|
||||
administrator: Ev bikarhêner rêvebirek e
|
||||
moderator: Ev bikarhêner moderatorek e
|
||||
|
@ -2615,15 +2626,7 @@ ku-Latn:
|
|||
unhide_user: Vi bikarhênerî nîşan bide
|
||||
delete_user: Vî/ê bikarhênerî/ê jê bibe
|
||||
confirm: Pesend bike
|
||||
friends_changesets: desteyên guhertinan yên hevalan
|
||||
friends_diaries: nivîsên rojane yên hevalan
|
||||
nearby_changesets: desteyên guhertinan yên bikarhênerên nêz
|
||||
nearby_diaries: nivîsên rojane yên bikarhênerên nêz
|
||||
report: Vî/Vê bikarhênerî/ê gilî bike
|
||||
popup:
|
||||
your location: Cihê te
|
||||
nearby mapper: Nexşesazên nêz
|
||||
friend: Heval
|
||||
account:
|
||||
title: Hesabê biguherîne
|
||||
my settings: Hevyazên min
|
||||
|
@ -2663,7 +2666,6 @@ ku-Latn:
|
|||
link text: Ev çi ye?
|
||||
save changes button: Guherandinan qeyd bike
|
||||
make edits public button: Hemû guherandinên min bila ji her kesê re vekirî be
|
||||
return to profile: Vegere profîlê
|
||||
flash update success confirm needed: Agahiyên bikarhêner bi awayekî serkeftî
|
||||
hate nûkirin. Ji bo pejirandina navnîşana e-nameya xwe ya nû e-nameya xwe
|
||||
kontrol bike.
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue